diff --git a/mapping_geojson_to_osm_tags/build_departments.ts b/mapping_geojson_to_osm_tags/build_departments.ts index 32e52428..085c4739 100644 --- a/mapping_geojson_to_osm_tags/build_departments.ts +++ b/mapping_geojson_to_osm_tags/build_departments.ts @@ -3,59 +3,78 @@ **/ const {exec} = require('child_process'); +const execSync = require("child_process").execSync; -const max_departement = 95 +let min_department = 1; +const max_departement = 1 +let enable_domtom = true; + +// const max_departement = 95 function exec_command(command: string) { - let yourscript = exec(command, - (error: any, stdout: any, stderr: any) => { - console.log(stdout); - console.log(stderr); - if (error !== null) { - console.log(`exec error: ${error}`); - } - }); + + + console.log('=> command', + command + ) + const result = execSync(command); + +// convert and show the output. + console.log(result.toString("utf8")); } -async function build_department_geojson(department: string) { +function build_department_geojson(department: string) { let command = `ts-node convert_to_osm_tags.ts --department=${department}`; console.log('command', command) - await exec_command(command) + exec_command(command) } -async function convert_geojson_to_osm_for_department(department: string) { +function convert_geojson_to_osm_for_department(department: string) { let command = `geojsontoosm output/my_converted_data_set_filtered_zipcode_${department}.json > osm_output/bornes-irve-filetered-from-etalab-opendata_dep_${department}.osm`; console.log('command', command) - await exec_command(command) + exec_command(command) } -for (let ii = 1; ii <= max_departement; ii++) { +for (let ii = min_department; ii <= max_departement; ii++) { let departement = '' + ii build_department_geojson(departement) +} +for (let ii = min_department; ii <= max_departement; ii++) { + let departement = '' + ii convert_geojson_to_osm_for_department(departement) } + +// build_department_geojson('2A') +// convert_geojson_to_osm_for_department('2A') +// build_department_geojson('2B') +// convert_geojson_to_osm_for_department('2B') + +if (enable_domtom) { // départements corse et dom tom -let more_departements = ['2A', '2B' - , '971' - , '972' - , '973' - , '974' - , '975' - , '976'] + let more_departements = ['2A', '2B' + , '971' + , '972' + , '973' + , '974' + , '975' + , '976'] -more_departements.forEach((department => { - let departement_string = '' + department - build_department_geojson(departement_string).then(r => { - console.log('build_department_geojson', departement_string, r) - }) - convert_geojson_to_osm_for_department(departement_string).then(r => { - console.log('convert_geojson_to_osm_for_department', departement_string, r) - }) -})) + more_departements.forEach((department => { + console.log(' mapping data for department ' + department) + let departement_string = '' + department + build_department_geojson(departement_string) + })) + more_departements.forEach((department => { + console.log('convert to osm ' + department) + let departement_string = '' + department + convert_geojson_to_osm_for_department(departement_string) + })) + +} /** Numéro Départements Chef-lieu diff --git a/mapping_geojson_to_osm_tags/convert_to_osm_tags.ts b/mapping_geojson_to_osm_tags/convert_to_osm_tags.ts index d48afa35..cb3723f3 100644 --- a/mapping_geojson_to_osm_tags/convert_to_osm_tags.ts +++ b/mapping_geojson_to_osm_tags/convert_to_osm_tags.ts @@ -223,13 +223,14 @@ function convertDataForIRVE(sourceFilePath: string, mapping: any, pointCounterMa if (converted_geo_json.features.length) { let fileNameToWrite = 'my_converted_data_set' + filteredName + '.json' + console.log('features: ', converted_geo_json.features.length) debugLog('convert : write file ', fileNameToWrite) writeFile(fileNameToWrite, JSON.stringify(converted_geo_json, null, 2)) } else { - debugLog('convert : no writing of file, because there is no converted feature') + console.log('convert : no writing of file, because there is no converted feature') } - console.log('convert : converted_geo_json output:', converted_geo_json.features) + // console.log('convert : converted_geo_json output:', converted_geo_json.features) return converted_geo_json } diff --git a/mapping_geojson_to_osm_tags/etalab_data/.~lock.all.csv# b/mapping_geojson_to_osm_tags/etalab_data/.~lock.all.csv# deleted file mode 100644 index 38e23aad..00000000 --- a/mapping_geojson_to_osm_tags/etalab_data/.~lock.all.csv# +++ /dev/null @@ -1 +0,0 @@ -,tykayn,spaceship,07.08.2023 15:16,file:///home/tykayn/.config/libreoffice/4; \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/etalab_data/.~lock.small.csv# b/mapping_geojson_to_osm_tags/etalab_data/.~lock.small.csv# deleted file mode 100644 index 71893b9b..00000000 --- a/mapping_geojson_to_osm_tags/etalab_data/.~lock.small.csv# +++ /dev/null @@ -1 +0,0 @@ -,tykayn,spaceship,07.08.2023 15:20,file:///home/tykayn/.config/libreoffice/4; \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/make_variance_from_csv.ts b/mapping_geojson_to_osm_tags/make_variance_from_csv.ts index 254d2173..46f306fd 100644 --- a/mapping_geojson_to_osm_tags/make_variance_from_csv.ts +++ b/mapping_geojson_to_osm_tags/make_variance_from_csv.ts @@ -19,7 +19,8 @@ let separator = ';'; // let columns_headings = []; let data_variance: VarianceType = {}; -const inputPath = './etalab_data/small.csv' +const inputPath = './etalab_data/all.csv' +// const inputPath = './etalab_data/small.csv' let columns_headings: Array = []; let lines_count = 0; let longest_variance_count = 0; @@ -37,7 +38,6 @@ fs.readFile(inputPath, function (err: any, fileData: any) { rows.forEach((row: Array) => { - console.log('ajout de données de la ligne ', lines_count) if (lines_count === 0) { // console.log('elem', row) @@ -46,6 +46,7 @@ fs.readFile(inputPath, function (err: any, fileData: any) { columns_headings.push(value) data_variance[value] = [] }) + console.log('columns_headings.length', columns_headings.length) lines_count++ } else { // lignes suivantes @@ -54,6 +55,7 @@ fs.readFile(inputPath, function (err: any, fileData: any) { row.forEach((value: string) => { + value = value.trim() // dans chaque colonne, vérifier que la valeur n'est pas déjà présente dans les index de variance // si la valeur est nouvelle, l'ajouter if (data_variance[columns_headings[column_index]].indexOf(value) < 0) { @@ -88,13 +90,22 @@ fs.readFile(inputPath, function (err: any, fileData: any) { */ function writeCSVVariance() { - let csv_content = 'variance de ' + inputPath + '\n' + let csv_content = ';variance de ' + inputPath + ';' + new Date() + '\n' let columns = Object.keys(data_variance); // add headings - columns_headings.forEach((heading:string)=>{ + columns_headings.forEach((heading: string) => { csv_content = csv_content + separator + heading }) + csv_content = csv_content + '\n' + // add max length of variance for each column + let ii = 0 + columns.forEach((column: string) => { + // console.log('column', column, data_variance[column].length) + csv_content = csv_content + separator + data_variance[column].length + ii++ + }) + csv_content = csv_content + '\n\n' // add content of values for (let ii = 0; ii < longest_variance_count; ii++) { @@ -110,6 +121,6 @@ function writeCSVVariance() { }) } - console.log('csv_content', csv_content) + // console.log('csv_content', csv_content) return csv_content; } diff --git a/mapping_geojson_to_osm_tags/mappings/engine.ts b/mapping_geojson_to_osm_tags/mappings/engine.ts index 6ba4b789..b05b218d 100644 --- a/mapping_geojson_to_osm_tags/mappings/engine.ts +++ b/mapping_geojson_to_osm_tags/mappings/engine.ts @@ -251,8 +251,8 @@ export default class { let keysConditionnalValues: any = Object.keys(configObject.conditional_values) let isFoundValue = keysConditionnalValues.indexOf(originalValue) - console.log('isFoundValue', isFoundValue, originalValue) - console.log('keysConditionnalValues', keysConditionnalValues) + debugLog('isFoundValue', isFoundValue, originalValue) + debugLog('keysConditionnalValues', keysConditionnalValues) if (isFoundValue > -1) { @@ -260,10 +260,10 @@ export default class { /** ---------------------- * gestion des valeurs conditionnelles * ---------------------- */ - console.log('conditionnalConfig', conditionnalConfig) + debugLog('conditionnalConfig', conditionnalConfig) if (conditionnalConfig.ignore_this_data) { - console.log(`on ignore cette clé car sa valeur "${originalValue}" est à exclure: `, pointKeyName, '=>', newKey) + debugLog(`on ignore cette clé car sa valeur "${originalValue}" est à exclure: `, pointKeyName, '=>', newKey) remove_original_key = true; } if (conditionnalConfig.tags_to_add) { @@ -311,7 +311,7 @@ export default class { } debugLog('convertProperty: convertedValue ==========> {', newKey, ':', convertedValue, '}') - console.log(' =============== remove_original_key',newKey, remove_original_key) + debugLog(' =============== remove_original_key',newKey, remove_original_key) if (!remove_original_key && newKey && convertedValue && !configObject.ignore_this_data) { debugLog('convertProperty: added') diff --git a/mapping_geojson_to_osm_tags/mappings/infer_domain_from_csv.ts b/mapping_geojson_to_osm_tags/mappings/infer_domain_from_csv.ts deleted file mode 100644 index ab51bb95..00000000 --- a/mapping_geojson_to_osm_tags/mappings/infer_domain_from_csv.ts +++ /dev/null @@ -1,31 +0,0 @@ -let show_debug = 0 - -/** - * faire un log - * @param message - */ -function debugLog (message) { - if (!show_debug) { - return - } - console.log('debug: ', ...message) -} - -/** - * TODO - * find the domain of all columns in a csv, - * take the header and the values, return only the unique values for each column, save a new csv, - and build a config for the mapping engine listing all the possible values. - * @param pointKeyName - * @returns {boolean} - */ -function openCSV (filePath) { - - console.log('open csv filePath') - return -} - -export default { - debugLog, - isBooleanKey -} diff --git a/mapping_geojson_to_osm_tags/mappings/utils.ts b/mapping_geojson_to_osm_tags/mappings/utils.ts index dd8ca4cf..2fd973c5 100644 --- a/mapping_geojson_to_osm_tags/mappings/utils.ts +++ b/mapping_geojson_to_osm_tags/mappings/utils.ts @@ -4,7 +4,7 @@ let show_debug = 0 // show_debug = 1 let output_folder = 'output'; -console.log('----------------------show_debug', show_debug) +// console.log('----------------------show_debug', show_debug) /** * wrapper de log qui se montre uniquemnt si show_debug a été activé diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_1.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_1.osm index eb226a91..85222602 100644 --- a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_1.osm +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_1.osm @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_2.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_2.osm index e69de29b..a821b03a 100644 --- a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_2.osm +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_2.osm @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_90.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_90.osm index e69de29b..4527005d 100644 --- a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_90.osm +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_90.osm @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_91.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_91.osm index c796512a..76608ea4 100644 --- a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_91.osm +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_91.osm @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_92.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_92.osm index e69de29b..b3ac5680 100644 --- a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_92.osm +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_92.osm @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_93.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_93.osm index e69de29b..e757aab8 100644 --- a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_93.osm +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_93.osm @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_94.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_94.osm index ee0dea9c..6827c58e 100644 --- a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_94.osm +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_94.osm @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_95.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_95.osm index e69de29b..4804c3c3 100644 --- a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_95.osm +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_95.osm @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_971.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_971.osm index e69de29b..42845b16 100644 --- a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_971.osm +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_971.osm @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_972.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_972.osm index e69de29b..de23679b 100644 --- a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_972.osm +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_972.osm @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_973.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_973.osm index e69de29b..ffabd572 100644 --- a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_973.osm +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_973.osm @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_974.osm b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_974.osm index 378789fe..b10a375d 100644 --- a/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_974.osm +++ b/mapping_geojson_to_osm_tags/osm_output/bornes-irve-filetered-from-etalab-opendata_dep_974.osm @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/.~lock.variance.csv# b/mapping_geojson_to_osm_tags/output/.~lock.variance.csv# deleted file mode 100644 index bced8cb2..00000000 --- a/mapping_geojson_to_osm_tags/output/.~lock.variance.csv# +++ /dev/null @@ -1 +0,0 @@ -,tykayn,spaceship,07.08.2023 16:06,file:///home/tykayn/.config/libreoffice/4; \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_1.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_1.json index 63a17305..d18c37b4 100644 --- a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_1.json +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_1.json @@ -23,6 +23,131198 @@ "opening_hours": "24/7", "start_date": "2022-10-27" } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356319, + 43.379383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356319, + 43.379383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356319, + 43.379383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356319, + 43.379383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.822159, + 45.635079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.356176, + 48.979566 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.356176, + 48.979566 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.356176, + 48.979566 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.356176, + 48.979566 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43628, + 43.512207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43628, + 43.512207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43628, + 43.512207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43628, + 43.512207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251933, + 43.425474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251933, + 43.425474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251933, + 43.425474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251933, + 43.425474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220567, + 43.217186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243111, + 43.446899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.256257, + 43.392152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.474908, + 45.146041 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.474908, + 45.146041 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.474908, + 45.146041 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.474908, + 45.146041 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216763, + 43.219984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*6*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*6*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*6*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*6*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*6*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.056675, + 45.014774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*124*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.056675, + 45.014774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*124*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.042146, + 44.85408 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.042146, + 44.85408 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260849, + 44.55788 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*149*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.265181, + 44.734566 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*148*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.265181, + 44.734566 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*148*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260849, + 44.55788 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*149*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.351954, + 45.972849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*16*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.060593, + 45.64539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*18*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.060593, + 45.64539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*18*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.392039, + 46.183592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*19*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.060593, + 45.64539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*18*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568038, + 45.480921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*17*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568038, + 45.480921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*17*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568038, + 45.480921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*17*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064226, + 46.188736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*15*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.351954, + 45.972849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*16*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.351954, + 45.972849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*16*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064226, + 46.188736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*15*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064226, + 46.188736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*15*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.367359, + 46.200984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*14*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.367359, + 46.200984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*14*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.392039, + 46.183592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*19*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.392039, + 46.183592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*19*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303649, + 45.527902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*25*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.050769, + 45.62793 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*20*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.050769, + 45.62793 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*20*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.569505, + 45.373002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*13*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303649, + 45.527902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*25*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678903, + 45.568583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*24*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678903, + 45.568583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*24*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678903, + 45.568583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*24*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.013245, + 45.157408 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*23*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.013245, + 45.157408 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*23*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.013245, + 45.157408 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*23*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30677, + 45.941801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*22*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30677, + 45.941801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*22*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.30677, + 45.941801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*22*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31735, + 45.869989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*21*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31735, + 45.869989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*21*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31735, + 45.869989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*21*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.050769, + 45.62793 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*20*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.367359, + 46.200984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*14*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.925464, + 45.676244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*1*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.569505, + 45.373002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*13*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.276077, + 46.159822 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*6*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.276077, + 46.159822 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*6*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548559, + 45.577977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*5*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548559, + 45.577977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*5*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548559, + 45.577977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*5*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.663373, + 45.747971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.961041, + 45.870702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*3*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.961041, + 45.870702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*3*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.961041, + 45.870702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*3*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.752427, + 46.104744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*2*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.752427, + 46.104744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*2*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.752427, + 46.104744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*2*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.838119, + 45.8611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*26*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.925464, + 45.676244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*1*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.925464, + 45.676244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*1*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.276077, + 46.159822 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*6*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.569505, + 45.373002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*13*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.892793, + 45.943879 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*12*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.892793, + 45.943879 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*12*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.892793, + 45.943879 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*12*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.029349, + 45.624614 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*11*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.029349, + 45.624614 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*11*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.029349, + 45.624614 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*11*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.094403, + 46.152379 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*10*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.094403, + 46.152379 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*10*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.094403, + 46.152379 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*10*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.265068, + 45.91099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*9*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.265068, + 45.91099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*9*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.265068, + 45.91099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*9*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.517812, + 45.94568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*8*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.517812, + 45.94568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*8*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.517812, + 45.94568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*8*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.838119, + 45.8611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*26*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303649, + 45.527902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*25*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.838119, + 45.8611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*26*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.378539, + 46.027521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*60*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.929732, + 45.666839 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*58*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.929732, + 45.666839 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*58*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01114, + 45.67263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*56*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01114, + 45.67263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*56*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.01114, + 45.67263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*56*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33143, + 46.19102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*55*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33143, + 46.19102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*55*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.33143, + 46.19102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*55*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.06977, + 46.14952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*54*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.06977, + 46.14952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*54*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.06977, + 46.14952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*54*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.018217, + 45.62523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*53*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.018217, + 45.62523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*53*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.018217, + 45.62523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*53*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.033112, + 45.620421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*52*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.033112, + 45.620421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*52*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.033112, + 45.620421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*52*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.955017, + 45.898288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*27*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.779485, + 45.700818 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*51*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.779485, + 45.700818 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*51*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.779485, + 45.700818 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*51*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.505448, + 45.817534 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*50*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.505448, + 45.817534 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*50*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.505448, + 45.817534 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*50*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.496067, + 45.764361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*49*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.496067, + 45.764361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*49*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422257, + 45.774072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*48*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.378539, + 46.027521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*60*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.991936, + 45.603029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*61*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422257, + 45.774072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*48*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.991936, + 45.603029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*61*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.272743, + 45.243324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*74*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.272743, + 45.243324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*74*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.272743, + 45.243324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*74*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.906058, + 45.536148 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*73*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.906058, + 45.536148 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*73*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.834953, + 45.582125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*72*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.834953, + 45.582125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*72*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.008851, + 46.128313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*71*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.008851, + 46.128313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*71*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.004244, + 46.127379 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*70*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.004244, + 46.127379 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*70*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.403964, + 45.312323 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*69*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.403964, + 45.312323 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*69*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238763, + 45.294596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*68*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238763, + 45.294596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*68*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.422367, + 46.195531 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*67*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.422367, + 46.195531 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*67*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.542199, + 46.22903 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*66*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.542199, + 46.22903 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*66*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.944979, + 45.726395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*65*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.944979, + 45.726395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*65*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.209274, + 45.844284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*64*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.209274, + 45.844284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*64*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.187188, + 45.216866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*63*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.187188, + 45.216866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*63*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.001935, + 45.60287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*62*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.001935, + 45.60287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*62*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422257, + 45.774072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*48*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.496067, + 45.764361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*49*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.962153, + 45.94209 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*47*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345935, + 46.019559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*33*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.096399, + 46.300894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*37*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.096399, + 46.300894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*37*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.962153, + 45.94209 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*47*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.079027, + 46.08067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*36*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.079027, + 46.08067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*36*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.813299, + 45.740856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*35*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.813299, + 45.740856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*35*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.813299, + 45.740856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*35*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.142896, + 45.768927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*34*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.142896, + 45.768927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*34*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.142896, + 45.768927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*34*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345935, + 46.019559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*33*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345935, + 46.019559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*33*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678354, + 45.876197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*32*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432498, + 46.224022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*38*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678354, + 45.876197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*32*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678354, + 45.876197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*32*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.188403, + 46.193318 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*31*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.188403, + 46.193318 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*31*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.188403, + 46.193318 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*31*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.194709, + 45.886536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*30*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.194709, + 45.886536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*30*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.194709, + 45.886536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*30*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.178706, + 45.691602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*28*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.178706, + 45.691602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*28*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.178706, + 45.691602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*28*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.955017, + 45.898288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*27*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.955017, + 45.898288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*27*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.096399, + 46.300894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*37*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.079027, + 46.08067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*36*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432498, + 46.224022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*38*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.406388, + 45.284856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*43*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.962153, + 45.94209 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*47*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.529733, + 45.948627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*46*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.529733, + 45.948627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*46*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.529733, + 45.948627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*46*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510211, + 45.940547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*45*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510211, + 45.940547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*45*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510211, + 45.940547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*45*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.556037, + 45.717543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*44*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.556037, + 45.717543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*44*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432498, + 46.224022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*38*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.556037, + 45.717543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*44*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.406388, + 45.284856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*43*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.406388, + 45.284856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*43*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96002, + 45.944355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*42*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.958623, + 45.934373 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*41*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.317532, + 46.155851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*39*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.317532, + 46.155851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*39*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.317532, + 46.155851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*39*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.936192, + 46.114931 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*40*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.936192, + 46.114931 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*40*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.936192, + 46.114931 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*40*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.958623, + 45.934373 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*41*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.958623, + 45.934373 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*41*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96002, + 45.944355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*42*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96002, + 45.944355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251702197", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEER 17", + "ref": "FR*SOD*S*MB17*42*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288179, + 49.003723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*174*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288179, + 49.003723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*174*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247911, + 48.940484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*216*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247911, + 48.940484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*216*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321968, + 48.999316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*244*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321968, + 48.999316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*244*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1658, + 48.99 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*367*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1658, + 48.99 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*367*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25776, + 48.9895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*354*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25776, + 48.9895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*354*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.044941, + 48.811271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*254*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.044941, + 48.811271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*254*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163333, + 44.503887 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659898, + 44.132675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659898, + 44.132675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163333, + 44.503887 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.890833, + 44.38361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*99*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.890833, + 44.38361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*99*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20761, + 48.73402 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20761, + 48.73402 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*252*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*252*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*252*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*252*2*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*252*2*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08237, + 49.35703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*232*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08258, + 49.36224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*235*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0724, + 49.35691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*234*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0724, + 49.35691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*234*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.082, + 49.36005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*233*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.082, + 49.36005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*233*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08237, + 49.35703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*232*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07346, + 49.3443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*231*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06664, + 49.3547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*237*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07346, + 49.3443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*231*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07042, + 49.35469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*230*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07042, + 49.35469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*230*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08303, + 49.36278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*229*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08303, + 49.36278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*229*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07665, + 49.36376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*228*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08258, + 49.36224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*235*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.06664, + 49.3547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*237*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07448, + 49.362896 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*238*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07285, + 49.36195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*240*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07285, + 49.36195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*240*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07285, + 49.36195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*240*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08352, + 49.36012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*239*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08352, + 49.36012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*239*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07448, + 49.362896 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*238*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07665, + 49.36376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*228*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.976783, + 45.954433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*192*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.976783, + 45.954433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*192*2*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.976783, + 45.954433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*192*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5076, + 45.16407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*215*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5076, + 45.16407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*215*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65243, + 46.673271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref": "FR*SOD*S*SORE*32*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65243, + 46.673271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref": "FR*SOD*S*SORE*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41207, + 46.37738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref": "FR*SOD*S*SORE*82*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41207, + 46.37738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref": "FR*SOD*S*SORE*82*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32491, + 46.31971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref": "FR*SOD*S*SORE*96*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32491, + 46.31971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref": "FR*SOD*S*SORE*96*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873976, + 45.77919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*133*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873976, + 45.77919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*133*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873976, + 45.77919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*133*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873976, + 45.77919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*133*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888936, + 45.760216 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*158*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888936, + 45.760216 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*158*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888936, + 45.760216 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*158*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888936, + 45.760216 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*158*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.794226, + 45.692455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*155*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.794226, + 45.692455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*155*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.794226, + 45.692455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*155*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.794226, + 45.692455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*155*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755318, + 45.765054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*41*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755318, + 45.765054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*41*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755318, + 45.765054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*41*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755318, + 45.765054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*41*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957743, + 45.664807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*18*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957743, + 45.664807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*18*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957743, + 45.664807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*18*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957743, + 45.664807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*18*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.949094, + 45.69125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*57*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.949094, + 45.69125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*57*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.949094, + 45.69125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*57*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.949094, + 45.69125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*57*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.346176, + 48.861996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*29*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.346176, + 48.861996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*29*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.346176, + 48.861996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.346176, + 48.861996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*29*4*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.494731, + 45.615384 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref": "FR*SOD*S*MB87*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.046631, + 45.991007 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref": "FR*SOD*S*MB87*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.494731, + 45.615384 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref": "FR*SOD*S*MB87*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.480057, + 46.048822 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref": "FR*SOD*S*MB87*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.480057, + 46.048822 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref": "FR*SOD*S*MB87*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.400478, + 45.95831 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref": "FR*SOD*S*MB87*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.400478, + 45.95831 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref": "FR*SOD*S*MB87*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.605933, + 45.713124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref": "FR*SOD*S*MB87*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.605933, + 45.713124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref": "FR*SOD*S*MB87*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12429, + 43.589499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref": "FR*SOD*S*WIIZ*151*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.12429, + 43.589499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref": "FR*SOD*S*WIIZ*151*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.725537, + 43.848226 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref": "FR*SOD*S*WIIZ*153*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.725537, + 43.848226 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref": "FR*SOD*S*WIIZ*153*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.775273, + 43.429654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref": "FR*SOD*S*WIIZ*225*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.775273, + 43.429654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref": "FR*SOD*S*WIIZ*225*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.520462, + 45.541127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.534797, + 45.162929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*53*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.542987, + 45.164994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*50*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.542987, + 45.164994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*50*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.544331, + 45.164748 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*51*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.544331, + 45.164748 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*51*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.478655, + 45.148654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*52*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.478655, + 45.148654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*52*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.534797, + 45.162929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*53*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.533704, + 45.159655 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*56*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.533348, + 45.156801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.533704, + 45.159655 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*56*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.670771, + 45.17567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.563502, + 45.424296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.570625, + 45.442994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.570625, + 45.442994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.562014, + 45.426246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.562014, + 45.426246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.770483, + 45.264992 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*29*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.770483, + 45.264992 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*29*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.670771, + 45.17567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.489849, + 45.0419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.770483, + 45.264992 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*29*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.475894, + 45.257628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.563502, + 45.424296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.872822, + 45.367584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.872822, + 45.367584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.520462, + 45.541127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.495816, + 45.051969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*35*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.495816, + 45.051969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*35*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.523637, + 45.10095 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*36*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.523637, + 45.10095 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*36*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.581699, + 45.22832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.581699, + 45.22832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.475894, + 45.257628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.941229, + 45.405899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.489849, + 45.0419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.941229, + 45.405899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.851616, + 45.302048 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*40*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.851616, + 45.302048 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*40*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580087, + 45.053508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580087, + 45.053508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.507493, + 45.187074 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*42*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.507493, + 45.187074 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*42*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.457247, + 45.181659 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.457247, + 45.181659 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545809, + 45.222671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545809, + 45.222671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.770483, + 45.264992 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.533348, + 45.156801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.770483, + 45.264992 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*29*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.595673, + 45.177941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*18*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.414614, + 45.121961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.563527, + 45.170076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.563527, + 45.170076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.724899, + 45.125055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*14*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.724899, + 45.125055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*14*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.713402, + 45.366442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.713402, + 45.366442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.566751, + 45.427326 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*16*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.566751, + 45.427326 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*16*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.767277, + 45.313928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*17*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.767277, + 45.313928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*17*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.595673, + 45.177941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*18*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046184, + 45.405044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*11*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.770483, + 45.264992 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*29*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.381578, + 45.397149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114273, + 45.392636 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.114273, + 45.392636 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.98696, + 44.983314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.98696, + 44.983314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.52392, + 45.227944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.52392, + 45.227944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.635647, + 45.273307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*21*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.635647, + 45.273307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*21*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.759414, + 45.257594 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.414614, + 45.121961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.759414, + 45.257594 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046184, + 45.405044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*11*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.409911, + 45.264425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*5*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.72254, + 45.581782 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.381578, + 45.397149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.489812, + 45.041874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*1*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.489812, + 45.041874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*1*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.325366, + 45.248766 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*2*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8365, + 44.9785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*3*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8365, + 44.9785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*3*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.794784, + 45.535733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*4*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.794784, + 45.535733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*4*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.325366, + 45.248766 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*2*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.671406, + 45.056961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.409911, + 45.264425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*5*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.402562, + 45.442391 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.402562, + 45.442391 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.671406, + 45.056961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.72254, + 45.581782 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.032484, + 45.272957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.032484, + 45.272957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200087955", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - FDEE 19", + "ref": "FR*SOD*S*MB19*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.674923, + 45.88549 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*18*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.782702, + 45.894882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*17*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.443896, + 45.611801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.782702, + 45.894882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*17*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.109904, + 45.887856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.277132, + 45.557682 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.674923, + 45.88549 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*18*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.178614, + 45.875145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*21*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.109904, + 45.887856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.177472, + 45.852036 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.177472, + 45.852036 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.178614, + 45.875145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*21*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.443896, + 45.611801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.277132, + 45.557682 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.116474, + 45.953819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.668719, + 46.019272 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*14*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.668719, + 46.019272 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*14*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.673548, + 46.015385 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.673548, + 46.015385 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.452225, + 45.824615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.452225, + 45.824615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.448823, + 45.824127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.448823, + 45.824127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.455497, + 45.822887 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.455497, + 45.822887 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.116474, + 45.953819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71928, + 45.874187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.044549, + 45.331318 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.652945, + 45.779949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.652945, + 45.779949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71928, + 45.874187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.082316, + 45.69619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.142347, + 45.644203 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*63*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.673057, + 46.004187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*69*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.673057, + 46.004187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*69*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.673057, + 46.004187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*69*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.049567, + 45.624888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*68*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.049567, + 45.624888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*68*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.174088, + 45.681636 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*67*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.174088, + 45.681636 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*67*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.250935, + 45.622856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*66*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.250935, + 45.622856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*66*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.093416, + 45.736952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*65*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.093416, + 45.736952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*65*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.158672, + 45.737022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*64*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.158672, + 45.737022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*64*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.142347, + 45.644203 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*63*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.447453, + 45.820853 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*70*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197387, + 45.662282 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*62*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197387, + 45.662282 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*62*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.053886, + 45.599658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.053886, + 45.599658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.057746, + 45.600461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*60*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.057746, + 45.600461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*60*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.389289, + 45.739451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*59*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.389289, + 45.739451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*59*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.035488, + 45.272907 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*58*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.035488, + 45.272907 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*58*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.500211, + 45.665909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*57*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.500211, + 45.665909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*57*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.276775, + 45.48212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*56*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.673057, + 46.004187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*69*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.447453, + 45.820853 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*70*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22732, + 45.982833 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*55*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.050373, + 45.599652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*76*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.044549, + 45.331318 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.158139, + 45.470455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.158139, + 45.470455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.153031, + 45.473186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.153031, + 45.473186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.158627, + 45.472511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.158627, + 45.472511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.512917, + 46.026398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.512917, + 46.026398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.028132, + 45.894077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.028132, + 45.894077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.010372, + 45.893837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.010372, + 45.893837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.050373, + 45.599652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*76*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.447453, + 45.820853 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*70*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.228827, + 45.678441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*75*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.228827, + 45.678441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*75*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.154645, + 45.585627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*74*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.154645, + 45.585627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*74*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.082316, + 45.69619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.153052, + 45.470035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*73*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.153052, + 45.470035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*73*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.153052, + 45.470035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*73*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.850099, + 46.003008 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*72*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.850099, + 46.003008 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*72*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197685, + 46.028155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*71*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197685, + 46.028155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*71*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.447453, + 45.820853 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*70*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.276775, + 45.48212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*56*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.153052, + 45.470035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*73*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22732, + 45.982833 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*55*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.742937, + 45.828297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.250624, + 45.312988 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.250624, + 45.312988 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.007294, + 45.953514 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.007294, + 45.953514 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.466107, + 45.894127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.466107, + 45.894127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.140125, + 45.804214 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*35*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.140125, + 45.804214 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*35*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.065062, + 45.775581 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.065062, + 45.775581 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.064496, + 45.774048 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.064496, + 45.774048 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.742937, + 45.828297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.784798, + 46.121174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.162199, + 45.959202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.784798, + 46.121174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123815, + 45.553669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123815, + 45.553669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.897107, + 45.983635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13251, + 45.398552 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13251, + 45.398552 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.142127, + 45.450443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.142127, + 45.450443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130669, + 45.397438 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130669, + 45.397438 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.551885, + 45.777496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.551885, + 45.777496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.074098, + 45.814956 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.162199, + 45.959202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.897107, + 45.983635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.582232, + 45.886162 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*40*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.169304, + 45.271808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.074098, + 45.814956 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.582232, + 45.886162 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*40*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.411413, + 45.992661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*53*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.411413, + 45.992661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*53*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.124428, + 45.782601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*52*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.124428, + 45.782601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*52*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.360679, + 45.737043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*51*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.174193, + 45.678883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*50*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.174193, + 45.678883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*50*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.043452, + 45.271091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*49*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.043452, + 45.271091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*49*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23647, + 45.383097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*48*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23647, + 45.383097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*48*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.360679, + 45.737043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*51*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.169304, + 45.271808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.122785, + 45.762363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.307256, + 45.887142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.646388, + 45.993485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.307256, + 45.887142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.127878, + 45.760067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*42*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.122785, + 45.762363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.127878, + 45.760067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*42*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.106897, + 45.882244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.106897, + 45.882244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.033299, + 45.476361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.033299, + 45.476361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.646388, + 45.993485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "251600060", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEG 16", + "ref": "FR*SOD*S*MB16*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260889, + 43.178398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref": "FR*SOD*S*MB64*88*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366184, + 43.332508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref": "FR*SOD*S*MB64*97*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260889, + 43.178398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref": "FR*SOD*S*MB64*88*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366184, + 43.332508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref": "FR*SOD*S*MB64*97*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.752542, + 46.108371 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref": "FR*SOD*S*SYDR*49*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.752542, + 46.108371 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref": "FR*SOD*S*SYDR*49*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.752542, + 46.108371 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref": "FR*SOD*S*SYDR*49*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.935313, + 45.627002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref": "FR*SOD*S*SYDR*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.935313, + 45.627002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref": "FR*SOD*S*SYDR*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.400406, + 44.854721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*89*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.400406, + 44.854721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*89*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.918521, + 45.275173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*122*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.918521, + 45.275173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*122*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.715628, + 45.121777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*76*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526451, + 45.146795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*151*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526451, + 45.146795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*151*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526451, + 45.146795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*151*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526451, + 45.146795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*151*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.55972, + 45.56986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*161*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.55972, + 45.56986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*161*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.715628, + 45.121777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*76*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.937528, + 45.222622 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.937528, + 45.222622 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.400101, + 44.666527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.400101, + 44.666527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19051, + 43.431608 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*13*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19051, + 43.431608 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.477612, + 43.351743 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.477612, + 43.351743 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*15*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.46368, + 43.344786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*9*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.46368, + 43.344786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*9*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.629119, + 43.294115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*7*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.629119, + 43.294115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*7*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465206, + 43.345215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*5*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465206, + 43.345215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*5*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.631226, + 43.213632 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*3*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.631226, + 43.213632 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*3*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.200007, + 43.35579 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*52*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.200007, + 43.35579 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*52*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.466939, + 43.360151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*34*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.466939, + 43.360151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.369238, + 43.401226 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*30*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.369238, + 43.401226 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.145565, + 45.535069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref": "FR*SOD*S*MBDG*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.290458, + 45.387565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref": "FR*SOD*S*MBDG*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.290458, + 45.387565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref": "FR*SOD*S*MBDG*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.145565, + 45.535069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref": "FR*SOD*S*MBDG*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.926255, + 45.598333 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref": "FR*SOD*S*MBDG*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.451322, + 45.66523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref": "FR*SOD*S*MBDG*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.451322, + 45.66523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref": "FR*SOD*S*MBDG*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.926255, + 45.598333 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref": "FR*SOD*S*MBDG*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.312163, + 45.549453 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref": "FR*SOD*S*MBDG*7*3*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.312163, + 45.549453 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200078947", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE LA DIEGE", + "ref": "FR*SOD*S*MBDG*7*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.937306, + 45.359277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref": "FR*SOD*S*SHEL*3*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39074, + 49.160318 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 VERDUN - Rue du 8 mai 1945 - 66603", + "ref": "FRS55E6660", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.610285, + 43.466186 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT ROUSSET", + "ref": "FRCPIE6604545", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39074, + 49.160318 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "55 VERDUN - Rue du 8 mai 1945 - 66603", + "ref": "FRS55E6660", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.022989, + 47.601445 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMOTTE BEUVRON 4493 - Place du 11 Novembre", + "ref": "FRS41E449", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.022989, + 47.601445 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMOTTE BEUVRON 4493 - Place du 11 Novembre", + "ref": "FRS41E449", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.490553, + 47.23129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MENETOU-SALON - Place de la Mairie - 205372", + "ref": "FRS18E20537", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.334115, + 47.589412 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4430 - Square du 11 Novembre 1918", + "ref": "FRS41E443", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.334115, + 47.589412 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4430 - Square du 11 Novembre 1918", + "ref": "FRS41E443", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.582503, + 48.596041 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNES SAVIGNY LE MILLENAIRE 2", + "ref": "FRCPIE6633745", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.582503, + 48.596041 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNES SAVIGNY LE MILLENAIRE 2", + "ref": "FRCPIE6633755", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77145, + 49.346833 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING CAMPING BORNE 3", + "ref": "FRCPIE6717765", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77145, + 49.346833 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING CAMPING BORNE 3", + "ref": "FRCPIE6717765", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77145, + 49.346833 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING CAMPING BORNE 3", + "ref": "FRCPIE6719675", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77145, + 49.346833 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING CAMPING BORNE 3", + "ref": "FRCPIE6719675", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77145, + 49.346833 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING CAMPING BORNE 3", + "ref": "FRCPIE6719695", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.77145, + 49.346833 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING CAMPING BORNE 3", + "ref": "FRCPIE6719695", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417606, + 46.751623 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France Sud", + "ref": "FRIONE4318", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417606, + 46.751623 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France Sud", + "ref": "FRIONE43180", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417606, + 46.751623 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France Sud", + "ref": "FRIONE43180", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417606, + 46.751623 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France Sud", + "ref": "FRIONE43180", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref": "FRIONE41710", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref": "FRIONE4171", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref": "FRIONE41710", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref": "FRIONE41710", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref": "FRIONE41710", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417606, + 46.751623 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France Sud", + "ref": "FRIONE43180", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18727, + 45.69493 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Champniers", + "ref": "FRIENE001801", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.144648, + 45.250465 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Molompize", + "ref": "FRIENE001502", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.144648, + 45.250465 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Molompize", + "ref": "FRIENE001502", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.144648, + 45.250465 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Molompize", + "ref": "FRIENE001501", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.144648, + 45.250465 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Molompize", + "ref": "FRIENE001501", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18727, + 45.69493 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Champniers", + "ref": "FRIENE001802", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18727, + 45.69493 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Champniers", + "ref": "FRIENE001802", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18727, + 45.69493 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Champniers", + "ref": "FRIENE001801", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332664, + 49.17908 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR MONDEVILLE 2", + "ref": "FRCPIE6752245", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332664, + 49.17908 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR MONDEVILLE 2", + "ref": "FRCPIE6752245", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332664, + 49.17908 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR MONDEVILLE 2", + "ref": "FRCPIE6752235", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332664, + 49.17908 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR MONDEVILLE 2", + "ref": "FRCPIE6752235", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07560301, + 49.0617463 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mézidon Vallée d'Auge", + "ref": "FRIENE003102", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07560301, + 49.0617463 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mézidon Vallée d'Auge", + "ref": "FRIENE003102", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07560301, + 49.0617463 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mézidon Vallée d'Auge", + "ref": "FRIENE003101", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07560301, + 49.0617463 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Mézidon Vallée d'Auge", + "ref": "FRIENE003101", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.356077, + 48.7207 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOUILLET - Place du 8 mai 1945 - 139037", + "ref": "FRS28E13903", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21783034, + 45.2046048 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orignolles", + "ref": "FRIENE001702", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21783034, + 45.2046048 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orignolles", + "ref": "FRIENE001702", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21783034, + 45.2046048 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orignolles", + "ref": "FRIENE001701", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21783034, + 45.2046048 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orignolles", + "ref": "FRIENE001701", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.445236, + 47.451294 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AMBILLOU 1444", + "ref": "FRS37E144", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.445236, + 47.451294 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AMBILLOU 1444", + "ref": "FRS37E144", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.319486, + 46.857443 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUNEUF-sur-Cher - Parking La Poste - 202094", + "ref": "FRS18E20209", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.319486, + 46.857443 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUNEUF-sur-Cher - Parking La Poste - 202094", + "ref": "FRS18E20209", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.429779, + 44.901007 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT AURILLAC", + "ref": "FRCPIE6609045", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.405298, + 43.275477 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED PHOCEA", + "ref": "FRCPIE6604555", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.405298, + 43.275477 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED PHOCEA", + "ref": "FRCPIE6604555", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.610285, + 43.466186 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT ROUSSET", + "ref": "FRCPIE6604545", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.105773, + 46.159016 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT LA ROCHELLE 2", + "ref": "FRCPIE6606795", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.105773, + 46.159016 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT LA ROCHELLE 2", + "ref": "FRCPIE6606795", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.105773, + 46.159016 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT LA ROCHELLE 2", + "ref": "FRCPIE6606835", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.105773, + 46.159016 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT LA ROCHELLE 2", + "ref": "FRCPIE6606835", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.429779, + 44.901007 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT AURILLAC", + "ref": "FRCPIE6609045", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40950", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE4095", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40952", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40952", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40952", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40951", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40951", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40951", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40951", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40950", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40950", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40950", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40950", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40950", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40950", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40950", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.642773, + 43.471439 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rousset", + "ref": "FRIONE40950", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.379129, + 43.488465 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED AIX", + "ref": "FRCPIE6608085", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.379129, + 43.488465 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED AIX", + "ref": "FRCPIE6608085", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.366567, + 49.372476 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT SOISSONS", + "ref": "FRCPIE6607265", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.366567, + 49.372476 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT SOISSONS", + "ref": "FRCPIE6607265", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.557893, + 44.311724 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "AJM ENERGIE BUROCLUB", + "ref": "FRCPIE6660505", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.557893, + 44.311724 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "AJM ENERGIE BUROCLUB", + "ref": "FRCPIE6660505", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref": "FRIONE41490", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref": "FRIONE41490", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref": "FRIONE41490", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref": "FRIONE41490", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref": "FRIONE4149", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.865448, + 47.268447 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MENNETOU SUR CHER 2924 - Place du 11 Novembre", + "ref": "FRS41E292", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.865448, + 47.268447 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MENNETOU SUR CHER 2924 - Place du 11 Novembre", + "ref": "FRS41E292", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77246, + 47.38737 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX DAMES 2698 - Place du 8 mai 1945", + "ref": "FRS37E269", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396948, + 49.20068 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUSAINTCONTEST BORNE 2", + "ref": "FRCPIE6681485", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396948, + 49.20068 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUSAINTCONTEST BORNE 2", + "ref": "FRCPIE6681485", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396948, + 49.20068 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUSAINTCONTEST BORNE 2", + "ref": "FRCPIE6681505", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396948, + 49.20068 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUSAINTCONTEST BORNE 2", + "ref": "FRCPIE6681505", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66912, + 47.42307 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 16781 - rue Maurice Genevoix", + "ref": "FRS37E1678", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66912, + 47.42307 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 16781 - rue Maurice Genevoix", + "ref": "FRS37E1678", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.985279, + 46.913225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARNIZAY 1690", + "ref": "FRS37E169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.985279, + 46.913225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARNIZAY 1690", + "ref": "FRS37E170", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.357446, + 46.198169 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR ST-MARTIN-DE-RE", + "ref": "FRCPIE6620005", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.357446, + 46.198169 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR ST-MARTIN-DE-RE", + "ref": "FRCPIE6620005", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77246, + 47.38737 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX DAMES 2698 - Place du 8 mai 1945", + "ref": "FRS37E269", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.777857, + 47.585916 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT EN GATINES 1581", + "ref": "FRS37E158", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.777857, + 47.585916 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT EN GATINES 1581", + "ref": "FRS37E158", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65359, + 47.03591 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVORD - Bibliothèque -112685", + "ref": "FRS18E20635", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65359, + 47.03591 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVORD - Bibliothèque -112685", + "ref": "FRS18E20636", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.205198, + 46.152422 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SAG CHARGEPOINT BORNE 1", + "ref": "FRCPIE6741805", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.205198, + 46.152422 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SAG CHARGEPOINT BORNE 1", + "ref": "FRCPIE6741805", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.205198, + 46.152422 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SAG CHARGEPOINT BORNE 1", + "ref": "FRCPIE6741835", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.205198, + 46.152422 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SAG CHARGEPOINT BORNE 1", + "ref": "FRCPIE6741835", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089531, + 43.216129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Narbonne-Vinassan Nord", + "ref": "FRIONE43890", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089531, + 43.216129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Narbonne-Vinassan Nord", + "ref": "FRIONE43890", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089531, + 43.216129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Narbonne-Vinassan Nord", + "ref": "FRIONE43890", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089531, + 43.216129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Narbonne-Vinassan Nord", + "ref": "FRIONE43890", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089531, + 43.216129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Narbonne-Vinassan Nord", + "ref": "FRIONE43890", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089531, + 43.216129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Narbonne-Vinassan Nord", + "ref": "FRIONE43890", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089531, + 43.216129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Narbonne-Vinassan Nord", + "ref": "FRIONE4389", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48274, + 47.10015 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St GERMAIN-DU-PUY - Eglise - 112986", + "ref": "FRS18E11298", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48274, + 47.10015 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St GERMAIN-DU-PUY - Eglise - 112986", + "ref": "FRS18E11298", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01733, + 47.68865 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AMAND LONGPRE 4911 - Place du 11 Out 1944", + "ref": "FRS41E491", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01733, + 47.68865 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AMAND LONGPRE 4911 - Place du 11 Out 1944", + "ref": "FRS41E491", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68782, + 47.75244 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COUTURE SUR LOIR 4929-4930", + "ref": "FRS41E492", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68782, + 47.75244 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COUTURE SUR LOIR 4929-4930", + "ref": "FRS41E493", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423609, + 43.29269 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR MARSEILLE", + "ref": "FRCPIE6676265", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423609, + 43.29269 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR MARSEILLE", + "ref": "FRCPIE6676265", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39293, + 47.09662 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parc Comitec - 93955", + "ref": "FRS18E9395", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39293, + 47.09662 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parc Comitec - 93955", + "ref": "FRS18E9395", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.415632, + 47.08144 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - LAHITOLLE - 96889", + "ref": "FRS18E9688", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.415632, + 47.08144 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - LAHITOLLE - 96889", + "ref": "FRS18E9689", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.638367, + 46.731131 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARENTON-du-Cher - Rue Nationale - 214305", + "ref": "FRS18E21430", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18557399, + 46.79318772 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CELLE-CONDE - Mairie - 148843", + "ref": "FRS18E14884", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18557399, + 46.79318772 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CELLE-CONDE - Mairie - 148843", + "ref": "FRS18E14884", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32158, + 47.06273 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE ST URSIN - Mairie - 108359", + "ref": "FRS18E10835", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32158, + 47.06273 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE ST URSIN - Mairie - 108359", + "ref": "FRS18E10836", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25506, + 47.31485 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUVY S/ BARANGEON - Mairie - 109655", + "ref": "FRS18E10965", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25506, + 47.31485 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUVY S/ BARANGEON - Mairie - 109655", + "ref": "FRS18E10965", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19572406, + 47.35043589 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NANCAY - Mairie - 109617", + "ref": "FRS18E10961", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.638367, + 46.731131 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARENTON-du-Cher - Rue Nationale - 214305", + "ref": "FRS18E21430", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390459, + 47.077214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Plateau d'Auron - 98368", + "ref": "FRS18E9836", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05005, + 47.16264 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MEREAU - Place de la Mairie - 112328", + "ref": "FRS18E20136", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390459, + 47.077214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Plateau d'Auron - 98368", + "ref": "FRS18E9836", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19572406, + 47.35043589 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NANCAY - Mairie - 109617", + "ref": "FRS18E10961", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05005, + 47.16264 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MEREAU - Place de la Mairie - 112328", + "ref": "FRS18E20136", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42903752, + 47.14505949 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FUSSY - La poste - 207176", + "ref": "FRS18E20717", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.42903752, + 47.14505949 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FUSSY - La poste - 207176", + "ref": "FRS18E20717", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65022261, + 47.07331786 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FARGES EN SEPTAINE - Mairie - 188336", + "ref": "FRS18E18833", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65022261, + 47.07331786 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FARGES EN SEPTAINE - Mairie - 188336", + "ref": "FRS18E18833", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.446997, + 47.559254 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ARGENT-sur-Sauldre - Place du Marché - 207811", + "ref": "FRS18E20781", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.446997, + 47.559254 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ARGENT-sur-Sauldre - Place du Marché - 207811", + "ref": "FRS18E20781", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03166, + 47.025656 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURS-LES*BARRES - Grande Rue - 181472", + "ref": "FRS18E18147", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03166, + 47.025656 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURS-LES*BARRES - Grande Rue - 181472", + "ref": "FRS18E18147", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20101, + 46.56209 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUMEILLANT - Place de l'église - 182394", + "ref": "FRS18E18239", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20101, + 46.56209 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUMEILLANT - Place de l'église - 182394", + "ref": "FRS18E18239", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84443388, + 47.14286071 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GRACAY - Place Gapion - 206002", + "ref": "FRS18E20600", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40725547, + 46.92545849 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LEVET - Mairie - 150932", + "ref": "FRS18E15093", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307908, + 47.447922 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MÉNÉTRÉOL-SUR-SAULDRE - Place de l'Eglise - 147512", + "ref": "FRS18E14751", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307908, + 47.447922 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MÉNÉTRÉOL-SUR-SAULDRE - Place de l'Eglise - 147512", + "ref": "FRS18E14751", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.49023, + 47.23177 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MENETOU-SALON - Place de la Mairie - 205372", + "ref": "FRS18E20537", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28396022, + 47.10178143 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARMAGNE - Place de la mairie - 109050", + "ref": "FRS18E10905", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28396022, + 47.10178143 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARMAGNE - Place de la mairie - 109050", + "ref": "FRS18E10905", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40725547, + 46.92545849 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LEVET - Mairie - 150932", + "ref": "FRS18E15093", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84443388, + 47.14286071 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GRACAY - Place Gapion - 206002", + "ref": "FRS18E20600", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265967, + 47.00417 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St FLORENT SUR CHER - La Vigonnière - 179307", + "ref": "FRS18E17930", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265967, + 47.00417 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St FLORENT SUR CHER - La Vigonnière - 179307", + "ref": "FRS18E17930", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5261468, + 47.30317135 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HENRICHEMONT - Eglise - 113070", + "ref": "FRS18E11307", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5261468, + 47.30317135 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HENRICHEMONT - Eglise - 113070", + "ref": "FRS18E11307", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.948825, + 46.951868 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA GUERCHE - Place Auguste FOURNIER - 151547", + "ref": "FRS18E20309", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.948825, + 46.951868 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA GUERCHE - Place Auguste FOURNIER - 151547", + "ref": "FRS18E20309", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref": "FRIONE45160", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref": "FRIONE45160", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref": "FRIONE45160", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133247, + 48.225489 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Troyes Sud", + "ref": "FRIONE4380", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133247, + 48.225489 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Troyes Sud", + "ref": "FRIONE43800", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133247, + 48.225489 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Troyes Sud", + "ref": "FRIONE43800", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133247, + 48.225489 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Troyes Sud", + "ref": "FRIONE43800", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133247, + 48.225489 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Troyes Sud", + "ref": "FRIONE43800", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133247, + 48.225489 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Troyes Sud", + "ref": "FRIONE43800", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133247, + 48.225489 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Troyes Sud", + "ref": "FRIONE43800", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref": "FRIONE45160", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref": "FRIONE45160", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref": "FRIONE45160", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56562948, + 47.19505287 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Les Aix d'Angillon - Rte de Bourges - 205346", + "ref": "FRS18E20534", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3184578, + 47.22576477 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ALLOGNY - Rue de l'abreuvoir - 186205", + "ref": "FRS18E18620", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3184578, + 47.22576477 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ALLOGNY - Rue de l'abreuvoir - 186205", + "ref": "FRS18E18620", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046277, + 46.907568 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "APREMONT - Parking de l'église - 201975", + "ref": "FRS18E20197", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.046277, + 46.907568 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "APREMONT - Parking de l'église - 201975", + "ref": "FRS18E20197", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.437891, + 47.491274 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUBIGNY-SUR-NERE - Gymnase - 147205", + "ref": "FRS18E14720", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.437891, + 47.491274 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUBIGNY-SUR-NERE - Gymnase - 147205", + "ref": "FRS18E14720", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.651837, + 47.032703 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVORD - Alouettes - 206381", + "ref": "FRS18E20638", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.651837, + 47.032703 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVORD - Alouettes - 206381", + "ref": "FRS18E20638", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09289, + 49.34888 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED DEAUVILLE", + "ref": "FRCPIE6695555", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09289, + 49.34888 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED DEAUVILLE", + "ref": "FRCPIE6695555", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref": "FRIONE45160", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.729526, + 47.082201 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BAUGY - Rue de la Halle - 206419", + "ref": "FRS18E20641", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.729526, + 47.082201 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BAUGY - Rue de la Halle - 206419", + "ref": "FRS18E20641", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528385, + 47.532264 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLANCAFORT-Place de la Mairie-150331", + "ref": "FRS18E15033", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528385, + 47.532264 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLANCAFORT-Place de la Mairie-150331", + "ref": "FRS18E15033", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.730751, + 46.895598 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLET - Château - 186579", + "ref": "FRS18E18657", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.730751, + 46.895598 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLET - Château - 186579", + "ref": "FRS18E18658", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56562948, + 47.19505287 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Les Aix d'Angillon - Rte de Bourges - 205346", + "ref": "FRS18E20534", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586006, + 44.369325 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rodez", + "ref": "FRIONE4594", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586006, + 44.369325 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rodez", + "ref": "FRIONE45940", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586006, + 44.369325 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rodez", + "ref": "FRIONE45940", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref": "FRIONE45160", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref": "FRIONE45160", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref": "FRIONE45161", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref": "FRIONE45161", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref": "FRIONE45161", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493841, + 43.632368 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Meyrargues", + "ref": "FRIONE4516", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586006, + 44.369325 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rodez", + "ref": "FRIONE45940", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586006, + 44.369325 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Rodez", + "ref": "FRIONE45940", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.823047, + 49.088602 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Caumont-sur-Aure", + "ref": "FRIENE003302", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.823047, + 49.088602 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Caumont-sur-Aure", + "ref": "FRIENE003302", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.823047, + 49.088602 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Caumont-sur-Aure", + "ref": "FRIENE003301", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.823047, + 49.088602 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Caumont-sur-Aure", + "ref": "FRIENE003301", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.981914, + 49.26254 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St Brice Courcelles - 93668 - 4 août 1789", + "ref": "FRS51E9366", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.981914, + 49.26254 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St Brice Courcelles - 93668 - 4 août 1789", + "ref": "FRS51E9366", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317688, + 43.202944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carcassonne", + "ref": "FRIENE007802", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317688, + 43.202944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carcassonne", + "ref": "FRIENE007802", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317688, + 43.202944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carcassonne", + "ref": "FRIENE007801", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317688, + 43.202944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carcassonne", + "ref": "FRIENE007801", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.344638, + 49.213219 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED CAEN", + "ref": "FRCPIE6706575", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.344638, + 49.213219 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED CAEN", + "ref": "FRCPIE6706575", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.161148, + 47.177667 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FOECY - Rue Gaston Cornavin - 143319", + "ref": "FRS18E14331", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.161148, + 47.177667 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FOECY - Rue Gaston Cornavin - 143319", + "ref": "FRS18E14332", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.586678, + 45.400288 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LE GAULIAT BORNE 1", + "ref": "FRCPIE6648515", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.586678, + 45.400288 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LE GAULIAT BORNE 1", + "ref": "FRCPIE6648515", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.88865, + 47.04476 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St Hilaire de Gondilly - Le Golf - 126241", + "ref": "FRS18E12624", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292711, + 47.010678 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE SUBDRAY - Salle des Fêtes - 212076", + "ref": "FRS18E21207", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292711, + 47.010678 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE SUBDRAY - Salle des Fêtes - 212076", + "ref": "FRS18E21207", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.460635, + 46.812997 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "UZAY-LE-VENON - Eglise - 212026", + "ref": "FRS18E21202", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.460635, + 46.812997 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "UZAY-LE-VENON - Eglise - 212026", + "ref": "FRS18E21202", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61345925, + 47.18535428 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RIANS - Place de l'Eglise - 205324", + "ref": "FRS18E20532", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61345925, + 47.18535428 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RIANS - Place de l'Eglise - 205324", + "ref": "FRS18E20532", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.68531, + 46.96955 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RAYMOND -Le Far West -117401", + "ref": "FRS18E11740", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.68531, + 46.96955 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RAYMOND -Le Far West -117401", + "ref": "FRS18E11740", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.987481, + 47.045568 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUET-sur-L'Aubois - Mairie - 205672", + "ref": "FRS18E20567", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.987481, + 47.045568 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUET-sur-L'Aubois - Mairie - 205672", + "ref": "FRS18E20567", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05053, + 47.42555 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SALBRIS 4717 - Place du 11 Novembre", + "ref": "FRS41E471", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05053, + 47.42555 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SALBRIS 4717 - Place du 11 Novembre", + "ref": "FRS41E471", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.88865, + 47.04476 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St Hilaire de Gondilly - Le Golf - 126241", + "ref": "FRS18E12624", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.06009837, + 47.22609066 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Gare - 148664", + "ref": "FRS18E14866", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.06009837, + 47.22609066 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Gare - 148664", + "ref": "FRS18E14866", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.09868, + 47.21801 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Rue Eugène Pottier - 112365", + "ref": "FRS18E11236", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.09868, + 47.21801 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Rue Eugène Pottier - 112365", + "ref": "FRS18E11236", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0649617, + 47.22265878 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Parking Gaucherie - 109669", + "ref": "FRS18E10967", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0649617, + 47.22265878 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Parking Gaucherie - 109669", + "ref": "FRS18E10966", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03213549, + 47.54070211 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DAME MARIE DES BOIS 1238", + "ref": "FRS37E123", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03213549, + 47.54070211 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DAME MARIE DES BOIS 1238", + "ref": "FRS37E123", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3580831, + 47.01014909 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TROUY - Place du Marché - 188401", + "ref": "FRS18E18840", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.92143963, + 46.82955189 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SANCOINS - Place du champ de Foire - 117712", + "ref": "FRS18E11771", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.92143963, + 46.82955189 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SANCOINS - Place du champ de Foire - 117712", + "ref": "FRS18E11771", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83647572, + 47.33148416 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SANCERRE - Rempart des Abreuvoirs - 151321", + "ref": "FRS18E15132", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.83647572, + 47.33148416 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SANCERRE - Rempart des Abreuvoirs - 151321", + "ref": "FRS18E15132", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51002394, + 46.99228393 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT-JUST - Mairie - 150513", + "ref": "FRS18E15051", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51002394, + 46.99228393 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT-JUST - Mairie - 150513", + "ref": "FRS18E15051", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3580831, + 47.01014909 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TROUY - Place du Marché - 188401", + "ref": "FRS18E18840", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.75716, + 47.257608 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEAUGUES - Eglise - 200482", + "ref": "FRS18E20048", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.75716, + 47.257608 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEAUGUES - Eglise - 200482", + "ref": "FRS18E20048", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37077109, + 46.8011169 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLENAY - Place Bascoulard - 117415", + "ref": "FRS18E11741", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37077109, + 46.8011169 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLENAY - Place Bascoulard - 117415", + "ref": "FRS18E11741", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65083, + 47.45830163 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLY SUR SAULDRE-Mairie-150315", + "ref": "FRS18E15031", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.65083, + 47.45830163 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLY SUR SAULDRE-Mairie-150315", + "ref": "FRS18E15031", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.939804, + 46.940088 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA GUERCHE - Parking NETTO - 146807", + "ref": "FRS18E14680", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.939804, + 46.940088 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA GUERCHE - Parking NETTO - 146807", + "ref": "FRS18E14680", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref": "FRIONE45210", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref": "FRIONE4521", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref": "FRIONE45210", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref": "FRIONE45210", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref": "FRIONE45210", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref": "FRIONE45210", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref": "FRIONE45210", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref": "FRIONE45210", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440923, + 45.160721 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Sud", + "ref": "FRIONE45210", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref": "FRIONE4520", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref": "FRIONE45201", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref": "FRIONE45200", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref": "FRIONE45200", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref": "FRIONE45200", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref": "FRIONE45200", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref": "FRIONE45200", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref": "FRIONE45200", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440653, + 45.161043 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pays de Brives Nord", + "ref": "FRIONE45200", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241201, + 47.094379 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bourges Sainte Thorette", + "ref": "FRIONE41610", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241201, + 47.094379 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bourges Sainte Thorette", + "ref": "FRIONE41610", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241201, + 47.094379 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bourges Sainte Thorette", + "ref": "FRIONE4161", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.379958, + 49.301268 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE HYPER U STATION 2", + "ref": "FRCPIE6590315", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.379958, + 49.301268 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE HYPER U STATION 2", + "ref": "FRCPIE6590315", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.379958, + 49.301268 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE HYPER U STATION 2", + "ref": "FRCPIE6583555", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.379958, + 49.301268 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE HYPER U STATION 2", + "ref": "FRCPIE6583555", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.507029, + 46.720829 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St AMAND-MONTROND - Cours Manuel 2 - 171693", + "ref": "FRS18E17169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.748407, + 47.002756 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BENGY-sur-Craon - Rte de Bourges - 186608", + "ref": "FRS18E18660", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.748407, + 47.002756 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BENGY-sur-Craon - Rte de Bourges - 186608", + "ref": "FRS18E18660", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.507029, + 46.720829 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St AMAND-MONTROND - Cours Manuel 2 - 171693", + "ref": "FRS18E17169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.995222, + 47.155156 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MASSAY - Avenue Marechal Foch - 205973", + "ref": "FRS18E20597", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25417363, + 46.4339625 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PREVERANGES - Mairie - 148778", + "ref": "FRS18E14877", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25417363, + 46.4339625 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PREVERANGES - Mairie - 148778", + "ref": "FRS18E14877", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.995222, + 47.155156 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MASSAY - Avenue Marechal Foch - 205973", + "ref": "FRS18E20597", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2005877, + 46.0008547 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire des Eglantiers - Ruffec", + "ref": "FRSHEE72", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2005877, + 46.0008547 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire des Eglantiers - Ruffec", + "ref": "FRSHEE72", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2005877, + 46.0008547 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire des Eglantiers - Ruffec", + "ref": "FRSHEE72", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2005877, + 46.0008547 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire des Eglantiers - Ruffec", + "ref": "FRSHEE71", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2005877, + 46.0008547 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire des Eglantiers - Ruffec", + "ref": "FRSHEE71", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635956, + 48.825393 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR 3CCLIM CROISSY", + "ref": "FRCPIE6759675", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.635956, + 48.825393 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR 3CCLIM CROISSY", + "ref": "FRCPIE6759675", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418074, + 47.204422 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St MARTIN D'AUXIGNY - Place de la Mairie - 188179", + "ref": "FRS18E18818", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418074, + 47.204422 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St MARTIN D'AUXIGNY - Place de la Mairie - 188179", + "ref": "FRS18E18817", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765788, + 48.554601 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GUIFFAUMONT CHAMPAUBERT - 48890 - Casino", + "ref": "FRS51E4889", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.765788, + 48.554601 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GUIFFAUMONT CHAMPAUBERT - 48890 - Casino", + "ref": "FRS51E4888", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.183078, + 43.985279 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Larzac", + "ref": "FRIONE43250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.183078, + 43.985279 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Larzac", + "ref": "FRIONE43250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.183078, + 43.985279 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Larzac", + "ref": "FRIONE43250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383523, + 47.082805 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - PRADO - 109619", + "ref": "FRS18E10962", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383523, + 47.082805 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - PRADO - 109619", + "ref": "FRS18E10961", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.183078, + 43.985279 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Larzac", + "ref": "FRIONE43250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.183078, + 43.985279 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Larzac", + "ref": "FRIONE4325", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431989, + 47.096046 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Esprit 1 - 97832", + "ref": "FRS18E9783", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431989, + 47.096046 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Esprit 1 - 97832", + "ref": "FRS18E9783", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.333831, + 45.173218 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Ouest", + "ref": "FRIONE4473", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.333831, + 45.173218 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Ouest", + "ref": "FRIONE44730", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.333831, + 45.173218 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Ouest", + "ref": "FRIONE44730", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.333831, + 45.173218 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Ouest", + "ref": "FRIONE44730", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.333831, + 45.173218 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Ouest", + "ref": "FRIONE44730", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.333831, + 45.173218 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Ouest", + "ref": "FRIONE44730", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.333831, + 45.173218 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Ouest", + "ref": "FRIONE44730", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.389028, + 49.017264 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orbec", + "ref": "FRIENE003601", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.389028, + 49.017264 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orbec", + "ref": "FRIENE003601", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.389028, + 49.017264 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orbec", + "ref": "FRIENE003602", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.680558, + 43.452155 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "Centre Médical de la Burlière", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.680558, + 43.452155 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "Centre Médical de la Burlière", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.389028, + 49.017264 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Orbec", + "ref": "FRIENE003602", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.039059, + 49.232653 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U DOZULE BORNE 1", + "ref": "FRCPIE6709175", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.039059, + 49.232653 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U DOZULE BORNE 1", + "ref": "FRCPIE6709175", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.039059, + 49.232653 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U DOZULE BORNE 1", + "ref": "FRCPIE6709155", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.039059, + 49.232653 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U DOZULE BORNE 1", + "ref": "FRCPIE6709155", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.684894, + 43.447921 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "Trets | Rue Clerion 1", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.60124, + 43.287488 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CCF AUBAGNE", + "ref": "FRCPIE6724145", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.60124, + 43.287488 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CCF AUBAGNE", + "ref": "FRCPIE6724145", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.684894, + 43.447921 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "Trets | Rue Clerion 1", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.299493, + 49.189088 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SU COLOMBELLES BORNE 1", + "ref": "FRCPIE6608205", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.299493, + 49.189088 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SU COLOMBELLES BORNE 1", + "ref": "FRCPIE6608205", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.358236, + 49.318152 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LA CAPRICIEUSE GOLD", + "ref": "FRCPIE6735855", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.358236, + 49.318152 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LA CAPRICIEUSE GOLD", + "ref": "FRCPIE6735855", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99582, + 47.15519 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MASSAY - Place de l'église - 112319", + "ref": "FRS18E11231", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99582, + 47.15519 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MASSAY - Place de l'église - 112319", + "ref": "FRS18E11232", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.911604, + 47.157244 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SANCERGUES - La Chicane - 181993", + "ref": "FRS18E18199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.911604, + 47.157244 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SANCERGUES - La Chicane - 181993", + "ref": "FRS18E18199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252767, + 47.567883 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRINON-sur-Sauldre - Maire - 186370", + "ref": "FRS18E18637", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252767, + 47.567883 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRINON-sur-Sauldre - Maire - 186370", + "ref": "FRS18E18637", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61971, + 47.12379 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRECY - Mairie - 112944", + "ref": "FRS18E20401", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.61971, + 47.12379 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRECY - Mairie - 112944", + "ref": "FRS18E20401", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.57943, + 47.285643 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HENRICHEMONT - La Borne - 186354", + "ref": "FRS18E18635", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418853, + 47.076978 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parking Pyrotechnie - 96970", + "ref": "FRS18E9697", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11646, + 46.82673 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEZAL-BENOIT - Poste - 112663", + "ref": "FRS18E11266", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11646, + 46.82673 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEZAL-BENOIT - Poste - 112663", + "ref": "FRS18E11266", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56521, + 46.88286 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DUN-SUR-AURON - Piscine - 115406", + "ref": "FRS18E11540", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56521, + 46.88286 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DUN-SUR-AURON - Piscine - 115406", + "ref": "FRS18E11566", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.57943, + 47.285643 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HENRICHEMONT - La Borne - 186354", + "ref": "FRS18E18635", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.874999, + 47.473644 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LERE - Port - 204137", + "ref": "FRS18E20413", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.874999, + 47.473644 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LERE - Port - 204137", + "ref": "FRS18E20413", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.45226, + 46.99799 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PLAIMPIED GIVAUDINS - Gobbiers - 112214", + "ref": "FRS18E11221", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.45226, + 46.99799 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PLAIMPIED GIVAUDINS - Gobbiers - 112214", + "ref": "FRS18E11221", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.857829, + 47.336965 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT-SATUR - Résistance - 200419", + "ref": "FRS18E20041", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.857829, + 47.336965 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT-SATUR - Résistance - 200419", + "ref": "FRS18E20042", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.544709, + 47.304761 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Henrichemont", + "ref": "FRIENE009302", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43186, + 47.36434 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE D'ANGILLON - Pl. du Monument - 112719", + "ref": "FRS18E11272", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.373375, + 47.101366 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St DOULCHARD - Gal De Gaulle - 140155", + "ref": "FRS18E14015", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.373375, + 47.101366 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St DOULCHARD - Gal De Gaulle - 140155", + "ref": "FRS18E14015", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43252, + 46.53885 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VESDUN - Rte de St VITTE - 182380", + "ref": "FRS18E18238", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43252, + 46.53885 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VESDUN - Rte de St VITTE - 182380", + "ref": "FRS18E18238", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283484, + 46.642269 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE CHATELET - Place de la Mairie - 143927", + "ref": "FRS18E14392", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283484, + 46.642269 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE CHATELET - Place de la Mairie - 143927", + "ref": "FRS18E14392", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43186, + 47.36434 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE D'ANGILLON - Pl. du Monument - 112719", + "ref": "FRS18E11271", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.544709, + 47.304761 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Henrichemont", + "ref": "FRIENE009302", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.544709, + 47.304761 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Henrichemont", + "ref": "FRIENE009301", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.544709, + 47.304761 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Henrichemont", + "ref": "FRIENE009301", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.71346, + 46.80106 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BANNEGON - Place saint Georges -117205", + "ref": "FRS18E19642", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35150861, + 46.57702787 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIGNY - Le Bourg - 148756", + "ref": "FRS18E14875", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35150861, + 46.57702787 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIGNY - Le Bourg - 148756", + "ref": "FRS18E14875", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.414504, + 47.081654 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - SDE18 - 186239", + "ref": "FRS18E18623", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37298052, + 47.10104724 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St DOULCHARD - Clos Chaperon - 98613", + "ref": "FRS18E9861", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37298052, + 47.10104724 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St DOULCHARD - Clos Chaperon - 98613", + "ref": "FRS18E9861", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40000606, + 47.09136482 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Coubertin - 153420", + "ref": "FRS18E15342", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40000606, + 47.09136482 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Coubertin - 153420", + "ref": "FRS18E15342", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398691, + 47.078991 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Séraucourt - 214519", + "ref": "FRS18E21451", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81153005, + 46.99737769 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NERONDES - Route de Bourges - 146793", + "ref": "FRS18E14679", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81153005, + 46.99737769 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NERONDES - Route de Bourges - 146793", + "ref": "FRS18E14679", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.818359, + 48.322194 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOGENT-LE-ROTROU - Place du 11 août - 139024", + "ref": "FRS28E13902", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398691, + 47.078991 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Séraucourt - 214519", + "ref": "FRS18E21452", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279899, + 44.524191 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNHDP BORNE 1", + "ref": "FRCPIE6676785", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279899, + 44.524191 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNHDP BORNE 1", + "ref": "FRCPIE6676785", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40283817, + 47.12422876 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Asnieres - 104686", + "ref": "FRS18E10468", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40283817, + 47.12422876 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Asnieres - 104686", + "ref": "FRS18E10468", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44161714, + 47.48927488 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUBIGNY - Place Résistance - 95964", + "ref": "FRS18E9596", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44161714, + 47.48927488 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUBIGNY - Place Résistance - 95964", + "ref": "FRS18E9596", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40458209, + 47.10553756 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Place Cothenet - 104721", + "ref": "FRS18E10472", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40458209, + 47.10553756 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Place Cothenet - 104721", + "ref": "FRS18E10472", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.06768176, + 47.24563167 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Pôle d'activités - 112534", + "ref": "FRS18E11253", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.06768176, + 47.24563167 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VIERZON - Pôle d'activités - 112534", + "ref": "FRS18E11253", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.06775, + 46.94724 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CUFFY - Le Pont Canal - 117885", + "ref": "FRS18E11788", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.06775, + 46.94724 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CUFFY - Le Pont Canal - 117885", + "ref": "FRS18E11788", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.334795, + 45.169865 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Est", + "ref": "FRIONE43230", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38806432, + 47.08333836 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Juranville - 97770", + "ref": "FRS18E9777", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38806432, + 47.08333836 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Juranville - 97770", + "ref": "FRS18E9777", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.117433, + 46.99243 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAROST - Place François Chapus - 200950", + "ref": "FRS18E20095", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.117433, + 46.99243 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAROST - Place François Chapus - 200950", + "ref": "FRS18E20095", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.334795, + 45.169865 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Est", + "ref": "FRIONE43230", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.334795, + 45.169865 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Est", + "ref": "FRIONE43230", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.334795, + 45.169865 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Est", + "ref": "FRIONE43230", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.334795, + 45.169865 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac Est", + "ref": "FRIONE4323", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40308834, + 47.08186564 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parking Anatole France - 98496", + "ref": "FRS18E9849", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40308834, + 47.08186564 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parking Anatole France - 98496", + "ref": "FRS18E9849", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418853, + 47.076978 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parking Pyrotechnie - 96970", + "ref": "FRS18E9697", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.71346, + 46.80106 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BANNEGON - Place saint Georges -117205", + "ref": "FRS18E19642", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39871737, + 47.0807 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parking Hôtel de Ville - 95968", + "ref": "FRS18E9596", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39871737, + 47.0807 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Parking Hôtel de Ville - 95968", + "ref": "FRS18E9596", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.205307, + 44.70102 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maurs", + "ref": "FRIENE004802", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.205307, + 44.70102 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maurs", + "ref": "FRIENE004802", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.205307, + 44.70102 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maurs", + "ref": "FRIENE004801", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.205307, + 44.70102 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maurs", + "ref": "FRIENE004801", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR VITROLLES 4", + "ref": "FRCPIE6642605", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR VITROLLES 4", + "ref": "FRCPIE6642625", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR VITROLLES 4", + "ref": "FRCPIE6642625", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR VITROLLES 4", + "ref": "FRCPIE6642615", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR VITROLLES 4", + "ref": "FRCPIE6642615", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR VITROLLES 4", + "ref": "FRCPIE6642605", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR VITROLLES 4", + "ref": "FRCPIE6642565", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.241716, + 43.43521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR VITROLLES 4", + "ref": "FRCPIE6642565", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.392879, + 49.203458 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CCI CAEN STATION 1", + "ref": "FRCPIE6600375", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.219219, + 47.146574 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MEHUN-sur-Yèvre - Square 8 Mai 1945 - 184331", + "ref": "FRS18E18433", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.219219, + 47.146574 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MEHUN-sur-Yèvre - Square 8 Mai 1945 - 184331", + "ref": "FRS18E18433", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36893, + 47.063792 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Daurat - 178309", + "ref": "FRS18E17831", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36893, + 47.063792 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Daurat - 178309", + "ref": "FRS18E17830", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.392879, + 49.203458 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CCI CAEN STATION 1", + "ref": "FRCPIE6600375", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87324, + 47.42393 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOULLERET - Eglise - 117188", + "ref": "FRS18E11718", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322924, + 43.214493 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED CARCASSONNE CGE", + "ref": "FRCPIE6641115", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322924, + 43.214493 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED CARCASSONNE CGE", + "ref": "FRCPIE6641115", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.142684, + 48.410725 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Charmont-sous-Barbuise HW", + "ref": "FRSHEE25", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.142684, + 48.410725 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell- France Aire de Charmont-sous-Barbuise HW", + "ref": "FRSHEE25", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.87324, + 47.42393 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOULLERET - Eglise - 117188", + "ref": "FRS18E11718", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.435292, + 47.411919 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ENNORDRES - La Surprise - 147553", + "ref": "FRS18E14755", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.435292, + 47.411919 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ENNORDRES - La Surprise - 147553", + "ref": "FRS18E14755", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48209, + 46.72506 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ORVAL - Route de Lignières - 142815", + "ref": "FRS18E14281", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48209, + 46.72506 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ORVAL - Route de Lignières - 142815", + "ref": "FRS18E14281", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772478, + 46.54389 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U OLONNE OLONNE SUR MER", + "ref": "FRCPIE6579955", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772478, + 46.54389 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U OLONNE OLONNE SUR MER", + "ref": "FRCPIE6579955", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772478, + 46.54389 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U OLONNE OLONNE SUR MER", + "ref": "FRCPIE6579965", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772478, + 46.54389 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U OLONNE OLONNE SUR MER", + "ref": "FRCPIE6579965", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77859839, + 47.36839944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LARCAY 1264", + "ref": "FRS37E126", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77859839, + 47.36839944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LARCAY 1264", + "ref": "FRS37E126", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359933, + 49.317803 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LA CAPRICIEUSE BORNE OMAHA", + "ref": "FRCPIE6733705", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.261484, + 44.557674 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED DECAZEVILLE", + "ref": "FRCPIE6582395", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.261484, + 44.557674 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED DECAZEVILLE", + "ref": "FRCPIE6582395", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359933, + 49.317803 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LA CAPRICIEUSE BORNE OMAHA", + "ref": "FRCPIE6733705", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.024265, + 48.309339 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT TROYES", + "ref": "FRCPIE6567525", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.024265, + 48.309339 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT TROYES", + "ref": "FRCPIE6567525", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.332159, + 43.70836 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SU BEAULIEU SUPER U", + "ref": "FRCPIE6642475", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.332159, + 43.70836 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SU BEAULIEU SUPER U", + "ref": "FRCPIE6642475", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.332159, + 43.70836 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SU BEAULIEU SUPER U", + "ref": "FRCPIE6567205", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.332159, + 43.70836 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SU BEAULIEU SUPER U", + "ref": "FRCPIE6567205", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204112, + 43.373619 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPERU FLASSANS SUPER U 2", + "ref": "FRCPIE6570455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204112, + 43.373619 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPERU FLASSANS SUPER U 2", + "ref": "FRCPIE6570455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204112, + 43.373619 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPERU FLASSANS SUPER U 2", + "ref": "FRCPIE6570445", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.204112, + 43.373619 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPERU FLASSANS SUPER U 2", + "ref": "FRCPIE6570445", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398609, + 47.063632 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Val d'Auron - 98422", + "ref": "FRS18E9842", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398609, + 47.063632 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Val d'Auron - 98422", + "ref": "FRS18E9842", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref": "FRSHEE77", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref": "FRSHEE77", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref": "FRSHEE77", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref": "FRSHEE76", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref": "FRSHEE76", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref": "FRSHEE75", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref": "FRSHEE75", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref": "FRSHEE75", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref": "FRSHEE74", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref": "FRSHEE74", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref": "FRSHEE74", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref": "FRSHEE73", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65567564, + 43.46925139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de l'Arc Sud HW", + "ref": "FRSHEE73", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.494957, + 46.725501 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St AMAND-MONTROND - Hôpital - 179113", + "ref": "FRS18E17911", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.494957, + 46.725501 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St AMAND-MONTROND - Hôpital - 179113", + "ref": "FRS18E17911", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.392652, + 49.20378 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CCI CAEN STATION 2", + "ref": "FRCPIE6600385", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.392652, + 49.20378 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CCI CAEN STATION 2", + "ref": "FRCPIE6600385", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69715172, + 47.24320891 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SORIGNY 1319 - 11 Novembre", + "ref": "FRS37E132", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69715172, + 47.24320891 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SORIGNY 1319 - 11 Novembre", + "ref": "FRS37E131", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.934966, + 47.254709 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THENIOUX - Route de Tours - 170419", + "ref": "FRS18E17041", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.934966, + 47.254709 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THENIOUX - Route de Tours - 170419", + "ref": "FRS18E17041", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.633864, + 43.707552 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR ARLES", + "ref": "FRCPIE6649455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-03-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.633864, + 43.707552 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR ARLES", + "ref": "FRCPIE6649455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-03-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64893365, + 47.51457851 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROUZIERS DE TOURAINE 1300", + "ref": "FRS37E130", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64893365, + 47.51457851 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROUZIERS DE TOURAINE 1300", + "ref": "FRS37E130", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50502, + 46.72097 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St AMAND-MONTROND - Cours Manuel - 112836", + "ref": "FRS18E11283", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50502, + 46.72097 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St AMAND-MONTROND - Cours Manuel - 112836", + "ref": "FRS18E11283", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.182904, + 43.549941 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LFO BORNE 2", + "ref": "FRCPIE6546025", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.328964, + 48.070716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUDUN - Place du 18 Octobre - 127476", + "ref": "FRS28E12747", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.328964, + 48.070716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUDUN - Place du 18 Octobre - 127476", + "ref": "FRS28E12747", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.182904, + 43.549941 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LFO BORNE 2", + "ref": "FRCPIE6546025", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.182904, + 43.549941 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LFO BORNE 2", + "ref": "FRCPIE6528605", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.182904, + 43.549941 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LFO BORNE 2", + "ref": "FRCPIE6528605", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.182904, + 43.549941 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LFO BORNE 2", + "ref": "FRCPIE6527915", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.182904, + 43.549941 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LFO BORNE 2", + "ref": "FRCPIE6527915", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref": "FRIONE41480", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref": "FRIONE41480", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref": "FRIONE41480", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref": "FRIONE41480", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref": "FRIONE41480", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref": "FRIONE41480", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref": "FRIONE41481", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref": "FRIONE41481", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5437517, + 43.1782826 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Corbières Nord", + "ref": "FRIONE4148", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598651, + 45.610095 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Léger Est", + "ref": "FRIONE43170", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598651, + 45.610095 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Léger Est", + "ref": "FRIONE43170", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598651, + 45.610095 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Léger Est", + "ref": "FRIONE43170", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.346737, + 46.547078 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CULAN - Champ de foire - 148765", + "ref": "FRS18E14876", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.346737, + 46.547078 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CULAN - Champ de foire - 148765", + "ref": "FRS18E14876", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.375201, + 47.069203 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Lautier - 107000", + "ref": "FRS18E10700", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.375201, + 47.069203 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Lautier - 107000", + "ref": "FRS18E10700", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598651, + 45.610095 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Léger Est", + "ref": "FRIONE43170", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598651, + 45.610095 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint Léger Est", + "ref": "FRIONE4317", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35969, + 49.209799 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE ICEP STATION 01", + "ref": "FRCPIE6601985", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35969, + 49.209799 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE ICEP STATION 01", + "ref": "FRCPIE6601985", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref": "FRSHEE95", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref": "FRSHEE95", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref": "FRSHEE95", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref": "FRSHEE95", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref": "FRSHEE94", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref": "FRSHEE94", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref": "FRSHEE94", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.60405, + 45.8923 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Fenioux Est", + "ref": "FRSHEE94", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417075, + 46.751937 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France", + "ref": "FRIONE4101", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417075, + 46.751937 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France", + "ref": "FRIONE41010", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417075, + 46.751937 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France", + "ref": "FRIONE41010", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417075, + 46.751937 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France", + "ref": "FRIONE41010", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417075, + 46.751937 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Centre de la France", + "ref": "FRIONE41010", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.599154, + 43.285628 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT AUBAGNE", + "ref": "FRCPIE6517155", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.599154, + 43.285628 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT AUBAGNE", + "ref": "FRCPIE6517155", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390318, + 47.084091 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Place de la Nation - 140281", + "ref": "FRS18E14028", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390318, + 47.084091 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGES - Place de la Nation - 140281", + "ref": "FRS18E14028", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.996295, + 43.593944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PROVENCE 09", + "ref": "FRCPIE6770395", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.996295, + 43.593944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PROVENCE 09", + "ref": "FRCPIE6770395", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.201718, + 47.081187 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Ste THORETTE - Route de Bourges - 148714", + "ref": "FRS18E14871", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.201718, + 47.081187 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Ste THORETTE - Route de Bourges - 148714", + "ref": "FRS18E14871", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.996295, + 43.593944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PROVENCE 09", + "ref": "FRCPIE6770345", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.996295, + 43.593944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PROVENCE 09", + "ref": "FRCPIE6770385", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.996295, + 43.593944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PROVENCE 09", + "ref": "FRCPIE6770385", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.996295, + 43.593944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PROVENCE 09", + "ref": "FRCPIE6770375", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.996295, + 43.593944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PROVENCE 09", + "ref": "FRCPIE6770375", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.996295, + 43.593944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PROVENCE 09", + "ref": "FRCPIE6770355", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.996295, + 43.593944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PROVENCE 09", + "ref": "FRCPIE6770355", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.996295, + 43.593944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PROVENCE 09", + "ref": "FRCPIE6770345", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.996295, + 43.593944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PROVENCE 09", + "ref": "FRCPIE6770325", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.996295, + 43.593944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PROVENCE 09", + "ref": "FRCPIE6770325", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315192, + 43.209029 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT CARCASSONNE", + "ref": "FRCPIE6561965", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315192, + 43.209029 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT CARCASSONNE", + "ref": "FRCPIE6561965", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.335403, + 45.169464 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac | N10, Aire de Bedenac Est", + "ref": "FRIONE43235", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.335403, + 45.169464 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac | N10, Aire de Bedenac Est", + "ref": "FRIONE43235", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.335403, + 45.169464 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bedenac | N10, Aire de Bedenac Est", + "ref": "FRIONE43235", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39821, + 43.440935 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U BBA BORNE 2", + "ref": "FRCPIE6564835", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39821, + 43.440935 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U BBA BORNE 2", + "ref": "FRCPIE6564835", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39821, + 43.440935 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U BBA BORNE 2", + "ref": "FRCPIE6535705", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39821, + 43.440935 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U BBA BORNE 2", + "ref": "FRCPIE6535705", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39821, + 43.440935 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U BBA BORNE 2", + "ref": "FRCPIE6535375", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39821, + 43.440935 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U BBA BORNE 2", + "ref": "FRCPIE6535375", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.485549, + 45.161604 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR BRIVE", + "ref": "FRCPIE6725925", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.485549, + 45.161604 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR BRIVE", + "ref": "FRCPIE6725925", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24461, + 46.99259 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St FLORENT SUR CHER - République - 113095", + "ref": "FRS18E11309", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24461, + 46.99259 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "St FLORENT SUR CHER - République - 113095", + "ref": "FRS18E11309", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41992, + 46.7149 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ORCENAIS - Route de Marçais - 112821", + "ref": "FRS18E11282", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41992, + 46.7149 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ORCENAIS - Route de Marçais - 112821", + "ref": "FRS18E11282", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83, + 43.78 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref": "c5352ae8-5a8f-4917-99cb-ad795fd45e27", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.62, + 43.67 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref": "6b682e0d-7227-4979-b08c-66740b2c7e61", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.2, + 43.77 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref": "4f3433e4-aeb8-4c48-9301-097b84cefc73", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4307718, + 43.4535293 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref": "e6c1f396-0451-4d51-8190-96321d815134", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4149303, + 47.1112893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "812806461", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda - Bourges", + "ref": "49606", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", + "start_date": "2020-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4936366, + 43.2910961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "451609978", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SNS SOLUTIONS MARSEILLE", + "ref": "128989", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-18:00", + "start_date": "2022-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83675553, + 43.83706131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FCF3ZP09ZM", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83675553, + 43.83706131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FCF3ZP09ZM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83675553, + 43.83706131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FCF3ZP09ZM", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95892, + 43.30517 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BVLDH0AW95", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95892, + 43.30517 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BVLDH0AW95", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95892, + 43.30517 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BVLDH0AW95", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95892, + 43.30517 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BVLDH0AW95", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95892, + 43.30517 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BVLDH0AW95", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95892, + 43.30517 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BVLDH0AW95", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.44710048, + -21.3238889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EPSOXWJL5C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.44710048, + -21.3238889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EPSOXWJL5C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.44710048, + -21.3238889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EPSOXWJL5C", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.44710048, + -21.3238889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EPSOXWJL5C", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.44710048, + -21.3238889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EPSOXWJL5C", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.44710048, + -21.3238889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EPSOXWJL5C", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.508629, + 46.00356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MDMC6YBZXB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.508629, + 46.00356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MDMC6YBZXB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.052203, + 48.271031 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQG36TGCXO", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.57130327, + 50.41575798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MSPSTZ6J2B", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856136, + 44.9478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PRMTMC6S3N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856136, + 44.9478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PRMTMC6S3N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856136, + 44.9478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PRMTMC6S3N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856136, + 44.9478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PRMTMC6S3N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856194, + 44.948029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U335H3JLYA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856194, + 44.948029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U335H3JLYA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.04512, + 47.2309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NKM6A0PYWP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.04512, + 47.2309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NKM6A0PYWP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.57130327, + 50.41575798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MSPSTZ6J2B", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.31865954, + 42.50669575 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SFNDWUV1R9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.31865954, + 42.50669575 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SFNDWUV1R9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6225, + 50.51542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O19SAEMHWV", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6225, + 50.51542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O19SAEMHWV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6225, + 50.51542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O19SAEMHWV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.402562, + 49.199265 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ESA4E2FUK6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.402562, + 49.199265 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ESA4E2FUK6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4044, + 43.2905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IEDDDF0Q0L", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36746, + 43.3109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PDC6ZL4PFH", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36746, + 43.3109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PDC6ZL4PFH", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36746, + 43.3109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PDC6ZL4PFH", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36746, + 43.3109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PDC6ZL4PFH", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36746, + 43.3109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PDC6ZL4PFH", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36746, + 43.3109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PDC6ZL4PFH", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9325, + 45.0932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SGEMRSLVN3", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9325, + 45.0932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SGEMRSLVN3", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9325, + 45.0932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SGEMRSLVN3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-23", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9325, + 45.0932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SGEMRSLVN3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-23", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805, + 45.6899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FQPWPW", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805, + 45.6899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FQPWPW", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805, + 45.6899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FQPWPW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805, + 45.6899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FQPWPW", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-08", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805, + 45.6899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FQPWPW", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.456722, + 43.321568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJCTDVDU3YIRJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805, + 45.6899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FQPWPW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247558, + 43.365852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC4ZL3O1T1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247558, + 43.365852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC4ZL3O1T1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247558, + 43.365852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC4ZL3O1T1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247558, + 43.365852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC4ZL3O1T1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48075151, + 48.87181854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X42UOLEHM3", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48075151, + 48.87181854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X42UOLEHM3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48075151, + 48.87181854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X42UOLEHM3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-22", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.48075151, + 48.87181854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X42UOLEHM3", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17805, + 45.6899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FQPWPW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59336481, + 45.17755777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AYP7STRGYF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59336481, + 45.17755777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AYP7STRGYF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59336481, + 45.17755777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AYP7STRGYF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59336481, + 45.17755777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AYP7STRGYF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20183059, + 49.29012164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKFOCWHZH9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07607, + 45.9914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RJ9YJ5MPTD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6647, + 45.2798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RFHEYE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6647, + 45.2798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RFHEYE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07607, + 45.9914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RJ9YJ5MPTD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7385053, + 45.8815474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EYTZ38P6RI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7385053, + 45.8815474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EYTZ38P6RI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89554, + 47.5837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HMRLQZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89554, + 47.5837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HMRLQZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89564, + 47.5838 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HMRLQZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89564, + 47.5838 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HMRLQZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33244097, + 43.22653036 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HCRKSYJVIC", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33244097, + 43.22653036 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HCRKSYJVIC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78282894, + 43.73555372 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZVIJULYZOR", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78282894, + 43.73555372 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZVIJULYZOR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37070273, + 43.30887101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NRQVYBAGVU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.100221, + 46.179444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KUW5BRYJM8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37070273, + 43.30887101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NRQVYBAGVU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37070273, + 43.30887101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NRQVYBAGVU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37070273, + 43.30887101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NRQVYBAGVU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37070273, + 43.30887101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NRQVYBAGVU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5921201, + 44.8554383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JHHZIKO6YD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5921201, + 44.8554383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JHHZIKO6YD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5921201, + 44.8554383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JHHZIKO6YD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5693503, + 44.8139114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AQDLTY7DRW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5693503, + 44.8139114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AQDLTY7DRW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5693503, + 44.8139114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AQDLTY7DRW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.667447, + 47.10687 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DSYBZMZ2OJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.564, + 47.0266 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XU0FKMJHGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.667447, + 47.10687 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DSYBZMZ2OJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.564, + 47.0266 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XU0FKMJHGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8466, + 46.7826 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MEKQGP7IH8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7762, + 46.6206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HZCA5QOHFO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8466, + 46.7826 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MEKQGP7IH8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7762, + 46.6206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HZCA5QOHFO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.142463, + 46.991657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PUBVDXONKL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.142463, + 46.991657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PUBVDXONKL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.40889536, + 43.58035329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLKQZKII6258TW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.40889536, + 43.58035329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLKQZKII6258TW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.40889536, + 43.58035329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLKQZKII6258TW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.40889536, + 43.58035329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLKQZKII6258TW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81603256, + 49.53538899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JA7BNPMKOY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81603256, + 49.53538899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JA7BNPMKOY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81603256, + 49.53538899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JA7BNPMKOY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81603256, + 49.53538899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JA7BNPMKOY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LYDSRQVHDQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LYDSRQVHDQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LYDSRQVHDQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LYDSRQVHDQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LYDSRQVHDQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LYDSRQVHDQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LYDSRQVHDQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.08890496, + 46.13001802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LYDSRQVHDQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388285, + 47.107203 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QVV3WJXNY7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 00:00-07:00,Mo-Fr 18:00-23:45,Sa-Su 00:00-23:45", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3746474, + 46.03818528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MP20MASWWU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388285, + 47.107203 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QVV3WJXNY7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 00:00-07:00,Mo-Fr 18:00-23:45,Sa-Su 00:00-23:45", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.26173312, + 50.89170991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VDRSZH3ZTA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4001393, + 44.89506938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CORSVFNDDL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4001393, + 44.89506938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CORSVFNDDL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4001393, + 44.89506938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CORSVFNDDL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4001393, + 44.89506938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CORSVFNDDL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4001393, + 44.89506938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CORSVFNDDL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4001393, + 44.89506938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CORSVFNDDL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459013, + 44.92637035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QALUCBHTJR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459013, + 44.92637035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QALUCBHTJR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459013, + 44.92637035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QALUCBHTJR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459013, + 44.92637035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QALUCBHTJR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459013, + 44.92637035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QALUCBHTJR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459013, + 44.92637035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QALUCBHTJR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43459013, + 44.92637035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QALUCBHTJR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3746474, + 46.03818528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MP20MASWWU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3460571, + 47.61749033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DLMH5PS9PO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9467356, + 47.6989973 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LYKHGRPY0K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3460571, + 47.61749033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DLMH5PS9PO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9467356, + 47.6989973 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LYKHGRPY0K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3746474, + 46.03818528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MP20MASWWU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3746474, + 46.03818528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MP20MASWWU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90783, + 49.4732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DYCYSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90783, + 49.4732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DYCYSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.798435, + 41.955503 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HXUBZE62BL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.798435, + 41.955503 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HXUBZE62BL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.43748, + 42.60419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHM6D0U5CK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.43748, + 42.60419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHM6D0U5CK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38346433, + 47.70708673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N41JBEJUX0", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38346433, + 47.70708673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N41JBEJUX0", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3746474, + 46.03818528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MP20MASWWU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3746474, + 46.03818528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MP20MASWWU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3746474, + 46.03818528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MP20MASWWU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08668388, + 44.11561019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IC5M8LGAEP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.08668388, + 44.11561019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IC5M8LGAEP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84532543, + 43.78925551 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YZIPETWE26", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84532543, + 43.78925551 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YZIPETWE26", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.254323, + 43.438624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QGXXGHMZW9", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.254323, + 43.438624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QGXXGHMZW9", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.254323, + 43.438624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QGXXGHMZW9", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.254323, + 43.438624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QGXXGHMZW9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.254323, + 43.438624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QGXXGHMZW9", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.89186964, + 43.16295103 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T7R6DBLAOK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3602, + 47.98452 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O0XRO0D25I", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3602, + 47.98452 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O0XRO0D25I", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.62493827, + 43.99756898 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QUVPSIP9F5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.85101422, + 47.50811353 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PC8GDNJARZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.85101422, + 47.50811353 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PC8GDNJARZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.394188, + 47.092914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DZLXJEZHBZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.84741, + 44.684185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DTYZ0PBUZR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.84741, + 44.684185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DTYZ0PBUZR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.394188, + 47.092914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DZLXJEZHBZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.43459848, + 45.44025668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BPFMD6OOQ0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44077822, + 45.4388527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F1BQQZEED1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.43459848, + 45.44025668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BPFMD6OOQ0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42500159, + 45.4382768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y39L9HN88E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42500159, + 45.4382768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y39L9HN88E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42500159, + 45.4382768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y39L9HN88E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42500159, + 45.4382768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y39L9HN88E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44077822, + 45.4388527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F1BQQZEED1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.21959, + 46.2047 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZGGYCJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.21959, + 46.2047 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZGGYCJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.35698, + 43.4206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NHHVSV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.35698, + 43.4206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NHHVSV", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.35698, + 43.4206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NHHVSV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.35698, + 43.4206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NHHVSV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.35698, + 43.4206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NHHVSV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.712552, + 48.509481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EWMJNJSRJF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.712552, + 48.509481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EWMJNJSRJF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.140941, + 48.955565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VU5BILOYOJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.140941, + 48.955565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VU5BILOYOJ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.140941, + 48.955565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VU5BILOYOJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56939099, + 46.89240915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXQ5H9G1WX", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383981, + 47.084605 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T1MDRTWN1F", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383981, + 47.084605 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T1MDRTWN1F", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.140941, + 48.955565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VU5BILOYOJ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56939099, + 46.89240915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXQ5H9G1WX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56939099, + 46.89240915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXQ5H9G1WX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56939099, + 46.89240915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXQ5H9G1WX", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56939099, + 46.89240915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXQ5H9G1WX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.56939099, + 46.89240915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXQ5H9G1WX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.877493, + 48.85731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WBTHYDIUJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67457696, + 46.00301708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RX0SUMTB6R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WXBEGJKS4B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WXBEGJKS4B", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WXBEGJKS4B", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67457696, + 46.00301708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RX0SUMTB6R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13671516, + 45.64408191 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ULZI7QNTXU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67457696, + 46.00301708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RX0SUMTB6R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13671516, + 45.64408191 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ULZI7QNTXU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WXBEGJKS4B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WXBEGJKS4B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13335366, + 45.83682032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P47AQWL4FJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13335366, + 45.83682032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P47AQWL4FJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13335366, + 45.83682032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P47AQWL4FJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WXBEGJKS4B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13335366, + 45.83682032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P47AQWL4FJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13671516, + 45.64408191 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ULZI7QNTXU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13671516, + 45.64408191 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ULZI7QNTXU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WXBEGJKS4B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00531356, + 46.26329433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WXBEGJKS4B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67457696, + 46.00301708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RX0SUMTB6R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.877493, + 48.85731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WBTHYDIUJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.366808, + 45.269494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KUPFNDHYBP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.366808, + 45.269494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KUPFNDHYBP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.186472, + 49.285782 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRSXXFSM8G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073741, + 48.924759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DKNJSCFR5M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.167836, + 49.116592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QE0UDZRZSN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.357187, + 49.19585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRFJICA7UF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.768018, + 48.920078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XJGG1BX1BV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.224748, + 49.182022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OW2ZNJNSGE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.317765, + 49.178341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MRZST8CYGX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.318416, + 49.172173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GTOZBG9FBP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.207578, + 49.136806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MTZJ9GHEC9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.314508, + 49.302155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QRFJYJHILI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.789644, + 49.219543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RLM6CEWDCK", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.185999, + 49.348248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EUQ9MLUPEK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568107, + 49.277843 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VYHQHHZGSX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.297287, + 49.053543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIKF1QJBPH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.202366, + 49.137093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QEINKRD3YH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.207578, + 49.136806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MTZJ9GHEC9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.257186, + 49.277668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SWIRJOHWIU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753076, + 49.34211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ES3CPUZTN9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.098968, + 49.287991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HUK16Y2VIO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.242004, + 48.96925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RH6ES7OMSP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.242383, + 49.198738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJAYNI3IS5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.009537, + 49.14109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QETEMVQZCG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.258216, + 49.288376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ULAU7GGFK3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.009537, + 49.14109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QETEMVQZCG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.242004, + 48.96925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RH6ES7OMSP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.259154, + 49.23476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GHMUTKEBFR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753076, + 49.34211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ES3CPUZTN9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.250781, + 49.278812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RKAVXVKURO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.411662, + 48.872952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EKPWNBEKEL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.186472, + 49.285782 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRSXXFSM8G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405064, + 49.020981 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q7PXNU5TGT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.250781, + 49.278812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RKAVXVKURO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073146, + 49.071609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNMLPFSE3R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.258216, + 49.288376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ULAU7GGFK3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.411662, + 48.872952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EKPWNBEKEL", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.830717, + 48.965939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TKVDATEIGS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.545198, + 49.195198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LJYDD69MZG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29001, + 49.108196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GH4NB90TR9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.84048, + 48.937435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QM29QD00GP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.765131, + 49.108475 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LXEN3QKGGW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149838, + 49.004524 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HYNZH5Z54R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369945, + 49.325378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L7FSMQ3K4U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.673939, + 49.266899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AEY2CFNUTF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576396, + 48.920029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DI3I8QNHXO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030718, + 49.02076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OUXSBPXK6V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.845168, + 49.011806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TPQYPCO3UW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332626, + 49.202087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G1IUADBW5Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342878, + 49.213123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VK9H0DVFDH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.313085, + 49.286636 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C8PSNTNXXV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457769, + 49.142525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QADLCK0CXV", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.268632, + 49.014362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XMBUXALML9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.185999, + 49.348248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EUQ9MLUPEK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568107, + 49.277843 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VYHQHHZGSX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.526418, + 49.135658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X48FPHUJQU", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.838209, + 48.83251 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O0GXWLZLG0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15161, + 49.005394 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TDEMGY1AN7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TUU49NLCLV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.649742, + 49.292091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z454AWT7LX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.869728, + 49.242004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CTHD3M2P9Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.900723, + 48.800545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "INJBEBIMWZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.606036, + 48.857273 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KIWGD0YPCW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303315, + 49.000648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CTQR1SV2HQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YGKZQ5NRRM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.395594, + 49.332512 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KTL39IK8IX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.220241, + 49.178085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZUIJICJJYI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJ44TQLKVR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.281319, + 49.262711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WX6KIL9ED5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298521, + 49.073658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RTYRGHNJ1K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09212, + 49.338612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W0OVAVEOX2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391624, + 49.327827 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DTBNNOB9WY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269729, + 49.317024 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IVMBTJCG7K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.221156, + 49.143112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZJXRR5YPFP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567159, + 49.121574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X76NRT9OK4", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567159, + 49.121574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X76NRT9OK4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.257186, + 49.277668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SWIRJOHWIU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.346611, + 49.181694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R8RWH8HXZS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359741, + 49.203658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ATTXYEMZSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355928, + 49.180374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XLR3DJICQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.116762, + 49.28772 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGX3GVGGGP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718632, + 49.27946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BSWUMHG7ZY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718632, + 49.27946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BSWUMHG7ZY", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512477, + 49.203705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GI08L1LAZG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.514652, + 49.212273 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W3FDKK3Y4Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.417781, + 49.16581 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BJLVQM5TAS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.326488, + 49.044224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T6CP8IZJCW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369844, + 49.176125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BXFKK77EJT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.364503, + 49.184155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAKCOZYZCV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.402715, + 49.182137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NPPA9S0IZH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360565, + 49.161114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KPSZKEMHNF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380138, + 49.199852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A1BDJHEJBW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34179, + 49.190582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PISAGDEROT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.767352, + 49.066422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y6SL8CGLG1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.761437, + 49.158428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WDURE5OIIU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360357, + 49.187054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TTGYEWCD4D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365959, + 49.180958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JERHB0BEAB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339124, + 49.27467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGOVR7LE8Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366633, + 49.18668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CKEU2AXBPX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34267, + 49.160675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G4DK6RTQ3D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365122, + 49.199177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RJ5B3FAJRM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.348103, + 49.178352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FLQCEIECNA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.347497, + 49.197529 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L9PDURSKHV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371259, + 49.180359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XOUSTRWIIJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.254735, + 49.146415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MEUKZBWL9R", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355559, + 49.184055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ANOW48R3FC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380302, + 49.204082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DELR9H5LME", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924642, + 48.889202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OIXFQFMHLO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.046794, + 49.149574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J2CAXWCJQ2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.806385, + 49.090714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z7TCFV54RM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44147, + 49.185043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YBCAAXHFBE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.401482, + 49.175629 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BJGJFYAMMJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396299, + 49.191658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KARW5YQ2G0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.224748, + 49.182022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OW2ZNJNSGE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624253, + 49.176746 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LA2MHNO1J0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.281319, + 49.262711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WX6KIL9ED5", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.395594, + 49.332512 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KTL39IK8IX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.202366, + 49.137093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QEINKRD3YH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.297287, + 49.053543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIKF1QJBPH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269729, + 49.317024 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IVMBTJCG7K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391624, + 49.327827 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DTBNNOB9WY", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJ44TQLKVR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.221156, + 49.143112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZJXRR5YPFP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15161, + 49.005394 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TDEMGY1AN7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TUU49NLCLV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.104626, + 48.823738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFSQFDC7FS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.276981, + 49.124573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BKLEA4YHK3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303596, + 49.034939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CLLQAPXJGQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.259154, + 49.23476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GHMUTKEBFR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405064, + 49.020981 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q7PXNU5TGT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.458241, + 49.276985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CPSHDAIWXX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.452932, + 49.274509 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DATGNHU3DP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149838, + 49.004524 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HYNZH5Z54R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.351417, + 49.318889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q7EG4SVFR8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371768, + 49.138321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UW8EXZVJSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.373516, + 49.254955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QTJUNHZSQB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09212, + 49.338612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W0OVAVEOX2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422221, + 49.128597 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RJC5UJDFHM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.765131, + 49.108475 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LXEN3QKGGW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.399309, + 49.160816 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q8JNTUN4KO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298521, + 49.073658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RTYRGHNJ1K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.838209, + 48.83251 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O0GXWLZLG0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20465, + 49.279522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PMGS18OQBS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.082768, + 49.136223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EINYNUPISK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.471729, + 49.199406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BKNQO1ST1J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.476986, + 49.205502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRHCX96IT0", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.649742, + 49.292091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z454AWT7LX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.220241, + 49.178085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZUIJICJJYI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30163, + 49.2966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WNPDHQMXEF", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.288273, + 49.149944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NZAMOLTFQS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041252, + 49.387611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C7MVLEKOXT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369945, + 49.325378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L7FSMQ3K4U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.288273, + 49.149944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NZAMOLTFQS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041252, + 49.387611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C7MVLEKOXT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.104626, + 48.823738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFSQFDC7FS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30163, + 49.2966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WNPDHQMXEF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303596, + 49.034939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CLLQAPXJGQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.276981, + 49.124573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BKLEA4YHK3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.526418, + 49.135658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X48FPHUJQU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.268632, + 49.014362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XMBUXALML9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342878, + 49.213123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VK9H0DVFDH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.167836, + 49.116592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QE0UDZRZSN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707928, + 49.283667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EP02VR6FM7", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332626, + 49.202087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G1IUADBW5Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.242383, + 49.198738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJAYNI3IS5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.313085, + 49.286636 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C8PSNTNXXV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.357187, + 49.19585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRFJICA7UF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.079796, + 48.975983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MQRZ3VP5TF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.739149, + 49.02071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KWSB5QN7ZK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355094, + 49.140018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NWNXQPH8TD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.452932, + 49.274509 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DATGNHU3DP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.220548, + 49.251003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCXRAXISUD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371682, + 49.152481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUSPLHMJTM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.316764, + 49.127815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CSMXC6RE5P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07457, + 49.30206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AU5QM7JWO3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.349523, + 49.137749 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LJ98RD5Z2B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.350859, + 49.150547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7U2LCCD4Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707928, + 49.283667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EP02VR6FM7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.101562, + 49.320122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NBKCJUXTTW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.237649, + 49.418694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZUGT4ZAI25", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345371, + 49.2024 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EO8WQHNMPB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.883248, + 48.893047 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OIGASENV23", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753121, + 49.002502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S0QPPXPGJG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.419354, + 49.024189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H9D6ILYVTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269149, + 49.408573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E4PPW00CLV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.458241, + 49.276985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CPSHDAIWXX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.266243, + 49.177143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FH2Y5F6VYX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.657508, + 49.07996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y6V0AW4AW2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.098968, + 49.287991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HUK16Y2VIO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.318416, + 49.172173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GTOZBG9FBP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.317765, + 49.178341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MRZST8CYGX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.830717, + 48.965939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TKVDATEIGS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.545198, + 49.195198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LJYDD69MZG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29001, + 49.108196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GH4NB90TR9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.84048, + 48.937435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QM29QD00GP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045078, + 49.230087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TJTE9E9IPY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073146, + 49.071609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNMLPFSE3R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.789644, + 49.219543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RLM6CEWDCK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.314508, + 49.302155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QRFJYJHILI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YGKZQ5NRRM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371768, + 49.138321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UW8EXZVJSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20465, + 49.279522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PMGS18OQBS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.476986, + 49.205502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRHCX96IT0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.869728, + 49.242004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CTHD3M2P9Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.082768, + 49.136223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EINYNUPISK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457769, + 49.142525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QADLCK0CXV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.373516, + 49.254955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QTJUNHZSQB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073741, + 48.924759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DKNJSCFR5M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.768018, + 48.920078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XJGG1BX1BV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.376339, + 49.29459 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N46VHJDQAK", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.403748, + 49.113762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "APLE3YWA6J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.364503, + 49.184155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAKCOZYZCV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345371, + 49.2024 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EO8WQHNMPB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030718, + 49.02076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OUXSBPXK6V", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.900723, + 48.800545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "INJBEBIMWZ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.977295, + 48.825451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZYDLQMDET", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.201822, + 48.892605 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNBVCEOPZC", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207155, + 48.908218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E7G17KGQS8", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.200854, + 48.895374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FJDPVYD3VM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478406, + 48.9856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M5E6SNDFBJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048561, + 48.840977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UTPIDLSOX7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038759, + 48.832748 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HHQQUNK71G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.028522, + 49.016411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZNQHP1WWZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8074, + 49.347195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KMIYT7TETI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44972, + 49.258343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GVMAEKKID2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212339, + 49.299999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L1KGSJOGST", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.750126, + 49.240765 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E2RRBXWBWF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576396, + 48.920029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DI3I8QNHXO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.673939, + 49.266899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AEY2CFNUTF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.606036, + 48.857273 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KIWGD0YPCW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303315, + 49.000648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CTQR1SV2HQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.471729, + 49.199406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BKNQO1ST1J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.883248, + 48.893047 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OIGASENV23", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.739149, + 49.02071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KWSB5QN7ZK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.977295, + 48.825451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZYDLQMDET", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497137, + 49.180573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VVKHTT0N8X", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753121, + 49.002502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S0QPPXPGJG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.419354, + 49.024189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H9D6ILYVTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269149, + 49.408573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E4PPW00CLV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.079796, + 48.975983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MQRZ3VP5TF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.349523, + 49.137749 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LJ98RD5Z2B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.316764, + 49.127815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CSMXC6RE5P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07457, + 49.30206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AU5QM7JWO3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.237649, + 49.418694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZUGT4ZAI25", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.350859, + 49.150547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7U2LCCD4Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.101562, + 49.320122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NBKCJUXTTW", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355094, + 49.140018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NWNXQPH8TD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.845168, + 49.011806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TPQYPCO3UW", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422221, + 49.128597 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RJC5UJDFHM", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.402715, + 49.182137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NPPA9S0IZH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.351417, + 49.318889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q7EG4SVFR8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.905397, + 49.308865 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MEXJIN27J7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.103004, + 49.34425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GNV9UFSQLR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.477086, + 49.049606 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IZJM7OHIWO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359741, + 49.203658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ATTXYEMZSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365959, + 49.180958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JERHB0BEAB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.080297, + 49.36565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IHLSGMESO6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8849, + 48.84539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NUVRR1EADB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566371, + 49.290745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GWNCBEVKLC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.126629, + 49.399658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LWXGXZ6NVG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.888584, + 48.84039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GLD9JG2RUT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.885866, + 48.837307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FZE0IT59TV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.901956, + 48.844872 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHIZSXG2KA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.882365, + 48.849442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X76ERWSQBX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.196851, + 48.896561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GXNIEP4LJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.346611, + 49.181694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R8RWH8HXZS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.902956, + 49.3088 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "V4TIQY3EGA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360565, + 49.161114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KPSZKEMHNF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.516991, + 49.343346 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VAT5RXQZXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.042063, + 49.232769 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZVO2GVYMJ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.399309, + 49.160816 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q8JNTUN4KO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497137, + 49.180573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VVKHTT0N8X", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.206739, + 49.391857 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SHNTRB88GR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502256, + 49.098824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QVMV4MMGBF", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.504844, + 49.101223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JRO5XUKNVX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.203363, + 49.383171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A3XTEFNVP7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677874, + 49.220016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LHXITWLNL8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.450656, + 49.1567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MDE2V8GM3H", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37422, + 49.220695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQX8TOZGDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.672848, + 48.853397 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WRQX6K3RY5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.292248, + 49.024796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UTD4TMRIWV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380138, + 49.199852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A1BDJHEJBW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.854415, + 48.840118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S3XSSU87WY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.904563, + 49.374043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HS5GOHL3FX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.266243, + 49.177143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FH2Y5F6VYX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.101527, + 49.121693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IGM47RQUIV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.027659, + 49.33881 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BM0HFP9CGY", + "socket:typee": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369844, + 49.176125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BXFKK77EJT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355928, + 49.180374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XLR3DJICQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34179, + 49.190582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PISAGDEROT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.401482, + 49.175629 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BJGJFYAMMJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.116762, + 49.28772 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGX3GVGGGP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512477, + 49.203705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GI08L1LAZG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.514652, + 49.212273 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W3FDKK3Y4Y", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.417781, + 49.16581 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BJLVQM5TAS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.326488, + 49.044224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T6CP8IZJCW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.657508, + 49.07996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y6V0AW4AW2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.126629, + 49.399658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LWXGXZ6NVG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.275651, + 49.24791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YDK2B0ERXB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207299, + 49.124958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TYPWUQ7IGF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566371, + 49.290745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GWNCBEVKLC", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.882365, + 48.849442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X76ERWSQBX", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.273392, + 49.245373 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JDWZ4GKGLJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303067, + 49.226357 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NU7TML0PLL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.263063, + 49.192703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WOGY4YK72D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298162, + 49.228291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D9MFWXE3BX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.059013, + 49.252686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RM3XAKQMTG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.165716, + 49.127666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J69U6QU8AD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.633224, + 49.021641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RQ8FFLKBGH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00949802, + 49.141176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CBX7KUYBYW", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51847393, + 48.86885129 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O5K3TST9TA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.029128, + 49.306469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GDUIKKNQ0H", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80973, + 48.929178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LSL7IGJCKA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80973, + 48.929178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LSL7IGJCKA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00949802, + 49.141176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CBX7KUYBYW", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.885866, + 48.837307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FZE0IT59TV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83958454, + 49.20576297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JXVJI1COJF", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83958454, + 49.20576297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JXVJI1COJF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339124, + 49.27467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGOVR7LE8Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83958454, + 49.20576297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JXVJI1COJF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.079897, + 49.204884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MSSZCNYGB6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.901956, + 48.844872 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHIZSXG2KA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8849, + 48.84539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NUVRR1EADB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.888584, + 48.84039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GLD9JG2RUT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.672848, + 48.853397 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WRQX6K3RY5", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.296286, + 49.204266 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNJRPSZUVR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478406, + 48.9856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M5E6SNDFBJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44972, + 49.258343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GVMAEKKID2", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30948, + 49.18362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AVHMBVDDEL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424286, + 49.085377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DZWIKE3NEN", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48176, + 48.917553 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VIVCM51QGG", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.283343, + 49.292938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H1P1PYTVJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.840685, + 49.359657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "REGMVHBLYO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366633, + 49.18668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CKEU2AXBPX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34267, + 49.160675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G4DK6RTQ3D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365122, + 49.199177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RJ5B3FAJRM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.348103, + 49.178352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FLQCEIECNA", + "socket:typee": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.347497, + 49.197529 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L9PDURSKHV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.472951, + 48.986382 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PFMKY61J2Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371259, + 49.180359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XOUSTRWIIJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.007925, + 48.792999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WDC8V4ORJE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624253, + 49.176746 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LA2MHNO1J0", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.472951, + 48.986382 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PFMKY61J2Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.450656, + 49.1567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MDE2V8GM3H", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.854415, + 48.840118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S3XSSU87WY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.327253, + 49.24025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VUHVSPUVEE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.047522, + 49.187656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SYA3HIFJSJ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.516991, + 49.343346 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VAT5RXQZXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.418581, + 49.334774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FN2ROX2AOD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.432045, + 49.290691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QNVE1QVN1M", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.904563, + 49.374043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HS5GOHL3FX", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.905397, + 49.308865 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MEXJIN27J7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.268813, + 49.146912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NNOGALD1MD", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924642, + 48.889202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OIXFQFMHLO", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.046794, + 49.149574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J2CAXWCJQ2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.806385, + 49.090714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z7TCFV54RM", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44147, + 49.185043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YBCAAXHFBE", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.103004, + 49.34425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GNV9UFSQLR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.406258, + 49.265347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AWSCCFXPIZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42327, + 49.164383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HKI3EEJ2VG", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05630619, + 49.25483875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B5J7TXK8V7", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05630619, + 49.25483875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B5J7TXK8V7", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706692, + 49.270863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JLGGHEVQB8", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707942, + 49.280796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZABVAJT7UQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303376, + 49.171944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JIQBOVFEMZ", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.190402, + 49.23114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KTAWLU4IZC", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.834075, + 49.182762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CIQQYCDPTL", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51847393, + 48.86885129 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O5K3TST9TA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05630619, + 49.25483875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B5J7TXK8V7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51847393, + 48.86885129 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O5K3TST9TA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00949802, + 49.141176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CBX7KUYBYW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80973, + 48.929178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LSL7IGJCKA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.623846, + 49.338478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TL6QWRNSBJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355559, + 49.184055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ANOW48R3FC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380302, + 49.204082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DELR9H5LME", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.080297, + 49.36565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IHLSGMESO6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11542093, + 49.28792082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVD33KIR4U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.114171, + 49.292559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU0VC43UH3BJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12437493, + 49.29202059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU0JLHQ2NV4U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11679, + 49.287709 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WEXJ08SAGD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624846, + 49.175013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JZIMSLSNZI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624846, + 49.175013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JZIMSLSNZI", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.295243, + 49.134693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU23ZA9182RT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.295243, + 49.134693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU23ZA9182RT", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49475503, + 49.07643468 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TRYMDJ3CBV", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49475503, + 49.07643468 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TRYMDJ3CBV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624846, + 49.175013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JZIMSLSNZI", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49475503, + 49.07643468 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TRYMDJ3CBV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42273, + 49.329438 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C0I5HNSCPF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303376, + 49.171944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JIQBOVFEMZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-29", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11542093, + 49.28792082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVD33KIR4U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11679, + 49.287709 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WEXJ08SAGD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197402, + 49.287834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JX4EPALWZ9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08856957, + 49.01214577 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "V8ZXCF8KLK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.651174, + 49.080152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CPFJ1PSP4H", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35496471, + 49.32043809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UX6T6V86EB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.151468, + 49.10059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QQ9ULMFY9S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212054, + 49.2001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PPAT8F1AHP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05713, + 49.35398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LMAJAU9VM3", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12437493, + 49.29202059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU0JLHQ2NV4U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35496471, + 49.32043809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UX6T6V86EB", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08856957, + 49.01214577 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "V8ZXCF8KLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11563, + 49.29363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XZTAT4QNOV", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.651174, + 49.080152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CPFJ1PSP4H", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-04", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11563, + 49.29363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XZTAT4QNOV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35496471, + 49.32043809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UX6T6V86EB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11563, + 49.29363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XZTAT4QNOV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-30", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08856957, + 49.01214577 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "V8ZXCF8KLK", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12437493, + 49.29202059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU0JLHQ2NV4U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12437493, + 49.29202059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU0JLHQ2NV4U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42327, + 49.164383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HKI3EEJ2VG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-29", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42273, + 49.329438 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C0I5HNSCPF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.553656, + 48.850952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IS3DWADVWS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11542093, + 49.28792082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVD33KIR4U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.327253, + 49.24025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VUHVSPUVEE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37422, + 49.220695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQX8TOZGDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457717, + 49.334377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RTTMEX22VQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045529, + 48.972824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9E72TSRLI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130294, + 49.381866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IHJ5AEHHQC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130306, + 49.381893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JVJN0XRMBD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332007, + 49.155018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BENXV427ED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396299, + 49.191658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KARW5YQ2G0", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.913899, + 48.872356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YTDEL15IL4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.856212, + 49.129959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RFATER8YU3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.138757, + 49.402374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UEPCJ1ONBV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045078, + 49.230087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TJTE9E9IPY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.376339, + 49.29459 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N46VHJDQAK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677874, + 49.220016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LHXITWLNL8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.042063, + 49.232769 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZVO2GVYMJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303067, + 49.226357 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NU7TML0PLL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.220548, + 49.251003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCXRAXISUD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.047522, + 49.187656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SYA3HIFJSJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.206739, + 49.391857 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SHNTRB88GR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11542093, + 49.28792082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVD33KIR4U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.007925, + 48.792999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WDC8V4ORJE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207155, + 48.908218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E7G17KGQS8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.201822, + 48.892605 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNBVCEOPZC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.196851, + 48.896561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GXNIEP4LJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.200854, + 48.895374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FJDPVYD3VM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.203363, + 49.383171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A3XTEFNVP7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.027659, + 49.33881 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BM0HFP9CGY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.504844, + 49.101223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JRO5XUKNVX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502256, + 49.098824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QVMV4MMGBF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.403748, + 49.113762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "APLE3YWA6J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.273392, + 49.245373 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JDWZ4GKGLJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298162, + 49.228291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D9MFWXE3BX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.079897, + 49.204884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MSSZCNYGB6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.308223, + 49.18866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XZV5YXNZQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.059013, + 49.252686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RM3XAKQMTG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.292248, + 49.024796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UTD4TMRIWV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130306, + 49.381893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JVJN0XRMBD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405121, + 49.023678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TTTLWP8ERC", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197402, + 49.287834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JX4EPALWZ9", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303376, + 49.171944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JIQBOVFEMZ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.268813, + 49.146912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NNOGALD1MD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.890959, + 48.840595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CPTGDV5IRH", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42327, + 49.164383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HKI3EEJ2VG", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8074, + 49.347195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KMIYT7TETI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332007, + 49.155018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BENXV427ED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.856212, + 49.129959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RFATER8YU3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048561, + 48.840977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UTPIDLSOX7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.308223, + 49.18866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XZV5YXNZQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.750126, + 49.240765 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E2RRBXWBWF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212054, + 49.2001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PPAT8F1AHP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.553656, + 48.850952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IS3DWADVWS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.913899, + 48.872356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YTDEL15IL4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.481821, + 48.989704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WIO5B4HAFQ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21517, + 49.057525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MACRGC0HBC", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.439307, + 49.08564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "K9DQ5BOGXT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212339, + 49.299999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L1KGSJOGST", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.902956, + 49.3088 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "V4TIQY3EGA", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.477086, + 49.049606 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IZJM7OHIWO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.254735, + 49.146415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MEUKZBWL9R", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360357, + 49.187054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TTGYEWCD4D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.761437, + 49.158428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WDURE5OIIU", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.767352, + 49.066422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y6SL8CGLG1", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.263063, + 49.192703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WOGY4YK72D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130294, + 49.381866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IHJ5AEHHQC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.101527, + 49.121693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IGM47RQUIV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.151468, + 49.10059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QQ9ULMFY9S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371682, + 49.152481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUSPLHMJTM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405121, + 49.023678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TTTLWP8ERC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197402, + 49.287834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JX4EPALWZ9", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.138757, + 49.402374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UEPCJ1ONBV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.890959, + 48.840595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CPTGDV5IRH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21517, + 49.057525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MACRGC0HBC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.165716, + 49.127666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J69U6QU8AD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.481821, + 48.989704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WIO5B4HAFQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.418581, + 49.334774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FN2ROX2AOD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.114171, + 49.292559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU0VC43UH3BJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.288768, + 49.13478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PEMGBREIMZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.623846, + 49.338478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TL6QWRNSBJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.840685, + 49.359657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "REGMVHBLYO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424286, + 49.085377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DZWIKE3NEN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.296286, + 49.204266 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNJRPSZUVR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.283343, + 49.292938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H1P1PYTVJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.114171, + 49.292559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU0VC43UH3BJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48176, + 48.917553 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VIVCM51QGG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03761395, + 49.01914912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZZNFVRZSHY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-28", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.114171, + 49.292559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU0VC43UH3BJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30948, + 49.18362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AVHMBVDDEL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.406258, + 49.265347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AWSCCFXPIZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.439307, + 49.08564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "K9DQ5BOGXT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.288768, + 49.13478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PEMGBREIMZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05713, + 49.35398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LMAJAU9VM3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-15", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05713, + 49.35398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LMAJAU9VM3", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.275651, + 49.24791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YDK2B0ERXB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457717, + 49.334377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RTTMEX22VQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045529, + 48.972824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9E72TSRLI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.028522, + 49.016411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZNQHP1WWZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038759, + 48.832748 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HHQQUNK71G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707942, + 49.280796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZABVAJT7UQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706692, + 49.270863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JLGGHEVQB8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207299, + 49.124958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TYPWUQ7IGF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03761395, + 49.01914912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZZNFVRZSHY", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.633224, + 49.021641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RQ8FFLKBGH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.029128, + 49.306469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GDUIKKNQ0H", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.190402, + 49.23114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KTAWLU4IZC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.834075, + 49.182762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CIQQYCDPTL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.432045, + 49.290691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QNVE1QVN1M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03761395, + 49.01914912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZZNFVRZSHY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3706712, + 49.184013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YVE4QCBHBZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3706712, + 49.184013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YVE4QCBHBZ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43439125, + 43.56209266 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S5JH7VHBMO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30036707, + 49.18885149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X39YEQWXEA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30036707, + 49.18885149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X39YEQWXEA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43439125, + 43.56209266 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S5JH7VHBMO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OYDVXOV7P5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OYDVXOV7P5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OYDVXOV7P5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OYDVXOV7P5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OYDVXOV7P5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OYDVXOV7P5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OYDVXOV7P5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OYDVXOV7P5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OYDVXOV7P5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.45040266, + 50.85124067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OYDVXOV7P5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09309044, + 48.26196268 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIDCQ4E41W16R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09309044, + 48.26196268 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIDCQ4E41W16R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43499931, + 43.28402011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7D91ZNMHR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43499931, + 43.28402011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7D91ZNMHR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43499931, + 43.28402011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7D91ZNMHR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43499931, + 43.28402011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7D91ZNMHR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42649482, + 43.29657762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GDFCGE3FAO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42649482, + 43.29657762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GDFCGE3FAO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410487, + 43.263906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GFBWLWVA0T", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410487, + 43.263906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GFBWLWVA0T", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410487, + 43.263906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GFBWLWVA0T", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410487, + 43.263906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GFBWLWVA0T", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410487, + 43.263906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GFBWLWVA0T", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410487, + 43.263906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GFBWLWVA0T", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZUUVO0OEOL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZUUVO0OEOL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZUUVO0OEOL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZUUVO0OEOL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZUUVO0OEOL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZUUVO0OEOL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZUUVO0OEOL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41211721, + 49.18669642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZUUVO0OEOL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.513644, + 43.651538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DZVOZRKVZZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03493, + 43.325232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DZVOZRKVZZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.020872, + 43.822381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CJXNDZ3C6G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.271728, + 49.145336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQSAIA8LGL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.075671, + 43.637548 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQUDPLPZYE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035905, + 43.41160261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQUDPLPZYE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035905, + 43.41160261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQUDPLPZYE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035905, + 43.41160261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQUDPLPZYE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035905, + 43.41160261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQUDPLPZYE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.651096, + 43.369226 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J0FQWYCSH1", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.651096, + 43.369226 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J0FQWYCSH1", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.672947, + 44.859769 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D0AIJIWGHD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423285, + 43.281584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ENUDY0G4GZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423285, + 43.281584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ENUDY0G4GZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.082335, + 43.243236 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D0AIJIWGHD", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978897, + 43.499238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UWGNCGZ3CU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978897, + 43.499238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UWGNCGZ3CU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.177948, + 44.069971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D0AIJIWGHD", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978897, + 43.499238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UWGNCGZ3CU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15518, + 44.6395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D0AIJIWGHD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.020872, + 43.822381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CJXNDZ3C6G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978897, + 43.499238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UWGNCGZ3CU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.827943, + 46.602341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZRCZZOSUOR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.827943, + 46.602341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZRCZZOSUOR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978897, + 43.499238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UWGNCGZ3CU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.075671, + 43.637548 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQUDPLPZYE", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423452, + 43.281753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ENUDY0G4GZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43914, + 43.326358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EEXWDVZFWO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.075671, + 43.637548 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQUDPLPZYE", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978897, + 43.499238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UWGNCGZ3CU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63247, + 43.666494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D8WHXLJJOC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035905, + 43.41160261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQUDPLPZYE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.037544, + 49.019432 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQSAIA8LGL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501223, + 43.508707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQSAIA8LGL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63247, + 43.666494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D8WHXLJJOC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423285, + 43.281584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ENUDY0G4GZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423285, + 43.281584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ENUDY0G4GZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423452, + 43.281753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ENUDY0G4GZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501223, + 43.508707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQSAIA8LGL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43914, + 43.326358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EEXWDVZFWO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43914, + 43.326358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EEXWDVZFWO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43914, + 43.326358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EEXWDVZFWO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32237, + 46.19182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBDZ4WIOAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30936042, + 49.18389491 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZTXNJV4UMI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.062039, + 45.57593 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GKA7W3JCGW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.062039, + 45.57593 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GKA7W3JCGW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31249851, + 49.18210664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZACLSUBH9M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30936042, + 49.18389491 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZTXNJV4UMI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30936042, + 49.18389491 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZTXNJV4UMI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23367, + 43.5136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BIJOFRFG1E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23367, + 43.5136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BIJOFRFG1E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.006119, + 46.137144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UFKNQYMEB6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.006119, + 46.137144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UFKNQYMEB6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.078972, + 43.63446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SI6AYMQRSF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30936042, + 49.18389491 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZTXNJV4UMI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.001487, + 43.514118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NWS9EZWLMB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.001487, + 43.514118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NWS9EZWLMB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.078972, + 43.63446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SI6AYMQRSF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34416, + 44.0238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "montaubandr", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24075, + 44.0886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "mauza", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24075, + 44.0886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "mauza", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34416, + 44.0238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "montaubandr", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47746, + 44.2403 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NUMQRW", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47746, + 44.2403 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NUMQRW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39307777, + 43.26494069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SLCGOXFVYX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39307777, + 43.26494069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SLCGOXFVYX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39307777, + 43.26494069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SLCGOXFVYX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39307777, + 43.26494069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SLCGOXFVYX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39307777, + 43.26494069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SLCGOXFVYX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39307777, + 43.26494069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SLCGOXFVYX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34122195, + 49.20863663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JFVT9N4ES5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-19:00,Sa 08:30-18:00", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.58479675, + 43.28824919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ILZU0QWCER", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34122195, + 49.20863663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JFVT9N4ES5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-19:00,Sa 08:30-18:00", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34122195, + 49.20863663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JFVT9N4ES5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-19:00,Sa 08:30-18:00", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34122195, + 49.20863663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JFVT9N4ES5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-19:00,Sa 08:30-18:00", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34122195, + 49.20863663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JFVT9N4ES5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-19:00,Sa 08:30-18:00", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48255792, + 43.29013381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XPD0Y4AZML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48255792, + 43.29013381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XPD0Y4AZML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48255792, + 43.29013381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XPD0Y4AZML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48255792, + 43.29013381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XPD0Y4AZML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48255792, + 43.29013381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XPD0Y4AZML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48255792, + 43.29013381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XPD0Y4AZML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44541826, + 43.44886874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S6ZRQZX1D5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44541826, + 43.44886874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S6ZRQZX1D5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.498079, + 47.978213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HFIJQKRTJJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.443498, + 48.108046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DVULJFPHTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.611208, + 48.451171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MPLFZRRCH2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.101195, + 48.329628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SGAGDZM0DN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.031631, + 48.311025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F6SJHLNDHA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.104369, + 48.31798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FYOCOK9B3F", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.101094, + 48.329641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VLN2PSDDZH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4033642, + 48.0404528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NWRWARYFKP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7392818, + 48.3318444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LX4TJ9LIGD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.332113, + 48.364012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AW2Y62ZANM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0665713, + 48.5411282 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P0XP87AAJ7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2163563, + 48.1705744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LOQVFXXZ4U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0284165, + 48.2861626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJGA8L3JV7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0980575, + 48.3143585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q60WEBZNBK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.968203, + 48.568551 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P4F3QRFJ1V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8726956, + 48.2785931 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NLRCCHATCF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.922544, + 48.493274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M1F8WRHMWF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.395872, + 48.053815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VPNHU2ZDUT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.502292, + 48.064159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OFTFKLBGGV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.364188, + 47.992499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YGET3T8P8P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.017202, + 48.142109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UCV3A9QN03", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.194289, + 48.531443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNUS0N5LCV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.52755, + 48.391572 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ICAF2FYXD8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06958, + 48.312045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FT7GQAID6I", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.577552, + 48.550965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F3LFNNOE3M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3851649, + 48.5015677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RIG9LCTQGX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386689, + 48.238867 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UATAXSIP73", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.42743, + 48.028544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J2HGHKHSLJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.908456, + 48.042697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R2QWWUUNL1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5111747, + 48.4935616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S5GFRFHWSW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2988, + 48.238953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NZLM3MS4GS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.246403, + 48.166854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NCLUISOFLF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702219, + 48.236231 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BCIKXNCWR9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.035952, + 48.129995 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FZQRL62BMY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.302821, + 48.142869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WX2E9X4IMC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43476989, + 48.5110323 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FIFWQ1FUV1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.110207, + 48.235708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E3LX6DF0I4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069758, + 48.276579 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FHNPHFUR1P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.706075, + 48.233498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LRX5I5HMT3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06433811, + 48.25635205 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GTF6ZJQHLQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.04579, + 48.278961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T9MXJNYNEM", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37313472, + 48.11517825 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZXY6YXQKL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1623023, + 48.2884229 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MN2IP3OV9A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12797109, + 48.22545366 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TYTYI3MTEH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1623023, + 48.2884229 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MN2IP3OV9A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37313472, + 48.11517825 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZXY6YXQKL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.068873, + 48.298083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CI80EV2QJJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37420322, + 48.11391691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DZTTFA557P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37420322, + 48.11391691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DZTTFA557P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.01989401, + 48.32645419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EGU6AL9UI6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.01989401, + 48.32645419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EGU6AL9UI6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.89093336, + 48.509824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WCGDKEJF4J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07617181, + 48.3027356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P5KHA01Q5Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.022728, + 48.333103 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OKPUUNPHL4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.708077, + 48.233992 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CXZBMR0ZO1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.776899, + 48.198718 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AIFFRKY5XV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.125956, + 48.332553 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O8L0SVN1YZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.372186, + 48.121911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IGEEE64TSJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.668466, + 48.23801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RYCA2CSWBP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07617181, + 48.3027356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P5KHA01Q5Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.89093336, + 48.509824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WCGDKEJF4J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.21452042, + 48.29891165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MWJ3AW8XB5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.068873, + 48.298083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CI80EV2QJJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0761, + 48.302682 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JX3WYHQ0GZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0761, + 48.302682 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JX3WYHQ0GZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.21452042, + 48.29891165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MWJ3AW8XB5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06433811, + 48.25635205 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GTF6ZJQHLQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.526286, + 48.348072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O67PC5Z8LO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.535224, + 48.348173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L3BRA1Y7LX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.335461, + 48.301693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X98XY5WWHQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.626185, + 48.548185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PZWWQPXHOM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05667, + 48.29276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2FWMEF7HF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.50281, + 48.493278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBVMTPZMH6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.180425, + 48.311709 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJEVUUE5V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.103553, + 48.016814 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TAI6K956YE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.101094, + 48.329641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VLN2PSDDZH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.101195, + 48.329628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SGAGDZM0DN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.611208, + 48.451171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MPLFZRRCH2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.104369, + 48.31798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FYOCOK9B3F", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.031631, + 48.311025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F6SJHLNDHA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5111747, + 48.4935616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S5GFRFHWSW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386689, + 48.238867 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UATAXSIP73", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.364188, + 47.992499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YGET3T8P8P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.908456, + 48.042697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R2QWWUUNL1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.498079, + 47.978213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HFIJQKRTJJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.673175, + 48.484073 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HAKGNH2QU1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.620832, + 48.380433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FHE4S0TLNK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069551, + 48.31203 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M8VPGPD5FN", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.030422, + 48.335985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLKGXP4CHU0PTM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.730059, + 48.513979 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SOLRFLNSDQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.730059, + 48.513979 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SOLRFLNSDQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.729993, + 48.514019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H6MGEHRH8L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.42743, + 48.028544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J2HGHKHSLJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.729993, + 48.514019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H6MGEHRH8L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.502292, + 48.064159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OFTFKLBGGV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.730125, + 48.513939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ATGU49BCSH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.665006, + 48.177289 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AIKEDRMXBL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.444622, + 48.020072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CIGMXJMDAM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.534964, + 48.060667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M90FZ6RVEV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.968666, + 47.951248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T9T4YNRQ8T", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07005, + 48.279567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KAI86XVIQL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.518964, + 48.129514 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NHQEEP3OJC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.051992, + 48.283534 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SMUUIBGAX6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73673, + 48.403725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ERKIMUKWMI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.502756, + 48.357641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DPY7WNXRYD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.926727, + 48.445215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RCTBEA2JQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.073498, + 48.269322 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z8YVZWSQIE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.969593, + 48.422127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZKK7RLCGHF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.727224, + 48.257447 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C16DS3V7VF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9504, + 48.407601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HCL9EMOH18", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.557904, + 48.589523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MMCTUADDCP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.483034, + 47.994615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITYFK2QUQW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.226495, + 48.179291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NU0UK8KQ1U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.068311, + 48.29443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UYDC6UXCXN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.078809, + 48.294342 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WOWEZM3YVL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.52974, + 48.392695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NWLLC5Y9PI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.067838, + 48.294424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W5FI5XLP32", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.075898, + 48.293296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SPHOAP76VH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08103, + 48.294271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UMJPQGG6NH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.337234, + 48.256026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FI7LYGYWRE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.080508, + 48.293681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TAP2EUA8MR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.070461, + 48.292115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B6PXRPIOV4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.516982, + 48.399932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J4HVLFJXYB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.201564, + 48.669258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ENKBOA6MC5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.310657, + 48.493503 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P4GE5YC7JS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.920259, + 48.099248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QUNCIFCCI8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.891382, + 48.207971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GO3LHWGD06", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.443498, + 48.108046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DVULJFPHTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.395872, + 48.053815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VPNHU2ZDUT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400423, + 48.358925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TQAAFAZ1RT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.922544, + 48.493274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M1F8WRHMWF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7603, + 48.5033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MEPTJ9OWEG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.006239, + 48.360819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QJ1CPN7JU7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.785801, + 48.509162 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SM903GKE9B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.19691, + 48.671467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NYOAPHU4JI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17291, + 48.408332 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C2C0H3ORFE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.137337, + 48.207034 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UIDOGADTJG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085865, + 48.325312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XW3KNONHEE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.46641, + 48.239466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AL6PSPCLF8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.647877, + 48.267637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITQ6ULMJ59", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.682106, + 48.440882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VDP80ZN7FA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43131, + 44.899617 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUC4FMQOJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43131, + 44.899617 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUC4FMQOJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43131, + 44.899617 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUC4FMQOJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43131, + 44.899617 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUC4FMQOJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43131, + 44.899617 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUC4FMQOJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43131, + 44.899617 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUC4FMQOJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.665006, + 48.177289 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AIKEDRMXBL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.730125, + 48.513939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ATGU49BCSH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.078485, + 48.23566 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBKH2LGDHV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.045015, + 48.307569 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VLM91FGX8V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-09-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08079663, + 48.29366661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJYAMZXUCU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424326, + 48.027595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OI2ALZD0UQ", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.045015, + 48.307569 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VLM91FGX8V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-09-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.149279, + 48.534902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LY7DK5AD7N", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.531585, + 48.396975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YV9WPIXPRX", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62488, + 48.23362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UOMK81HGEB", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.142932, + 48.059765 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XB2FPTW6L6", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424326, + 48.027595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OI2ALZD0UQ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.097222, + 48.308883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SGEMIBGXBY", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.920259, + 48.099248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QUNCIFCCI8", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.097222, + 48.308883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SGEMIBGXBY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.097222, + 48.308883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SGEMIBGXBY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12797109, + 48.22545366 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TYTYI3MTEH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.708251, + 48.288087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WQKIXJ3XWI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.110326, + 48.235741 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IA7F7BLY0N", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.781652, + 48.501213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U45NFW8DLO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05667, + 48.29276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2FWMEF7HF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.142932, + 48.059765 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XB2FPTW6L6", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.781652, + 48.501213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U45NFW8DLO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.109849, + 48.299744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X7LH2QZYGH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466387, + 48.23941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ROHSARMMTL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.110326, + 48.235741 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IA7F7BLY0N", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.04579, + 48.278961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T9MXJNYNEM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33627881, + 48.36390886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MGSFFZIVNT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33627881, + 48.36390886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MGSFFZIVNT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.920259, + 48.099248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QUNCIFCCI8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-24", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.920259, + 48.099248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QUNCIFCCI8", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466387, + 48.23941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ROHSARMMTL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.149279, + 48.534902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LY7DK5AD7N", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96937277, + 48.28691395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IXWB4EBYDV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.531585, + 48.396975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YV9WPIXPRX", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.109849, + 48.299744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X7LH2QZYGH", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.078485, + 48.23566 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IBKH2LGDHV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.731123, + 48.221726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RSAKTATWHB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.337234, + 48.256026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FI7LYGYWRE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65457, + 48.388611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AMRW3PLL2G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.232003, + 48.592374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RSDAVBFCEE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.726184, + 48.520456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SX6GEG8ZZ9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.577514, + 48.29715 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VQEXLSVRD6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99599, + 47.988229 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F2OPBGTHZ6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.721178, + 48.505446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SWGZXGSK7K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.727069, + 48.51718 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HNYSCUGFWO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.663522, + 48.51467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C3XIBVJXZ3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.997767, + 48.194045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PCG9MT1EER", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789855, + 48.264099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R2KKTURY5F", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.658171, + 48.418127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PWW4OVOZ6V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.26242, + 48.345479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJ4BNTOLRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.854229, + 48.225196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MMYWYPTXJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.572433, + 48.508902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VTLPHAV5IB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.675846, + 48.140091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JSBX7JXEXQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.623987, + 48.202677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BWBZ2WP2CP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.733153, + 48.375387 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JMNDZF5K60", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.138651, + 48.059752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XPVDAUWIUL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.975597, + 48.274322 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TUOBRCUPX7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.716259, + 48.515358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHQHGUNUJO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.067838, + 48.294424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W5FI5XLP32", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.268967, + 48.254884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KPYZDARPHY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.26666, + 48.252997 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWCZOVJJDA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.51705, + 48.297775 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XYVVZLUAV4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.274361, + 48.503592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DEGQM5QJVX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08103, + 48.294271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UMJPQGG6NH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.52974, + 48.392695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NWLLC5Y9PI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.52755, + 48.391572 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ICAF2FYXD8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.727739, + 48.524444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E2RZPOTRBD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.516982, + 48.399932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J4HVLFJXYB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.068311, + 48.29443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UYDC6UXCXN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.080508, + 48.293681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TAP2EUA8MR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.070461, + 48.292115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B6PXRPIOV4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.078809, + 48.294342 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WOWEZM3YVL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.075898, + 48.293296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SPHOAP76VH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96937277, + 48.28691395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IXWB4EBYDV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96937277, + 48.28691395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IXWB4EBYDV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.781652, + 48.501213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U45NFW8DLO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06601, + 43.9777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CGXFXH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06601, + 43.9777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CGXFXH", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96937277, + 48.28691395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IXWB4EBYDV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424326, + 48.027595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OI2ALZD0UQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.531585, + 48.396975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YV9WPIXPRX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.149279, + 48.534902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LY7DK5AD7N", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.60696477, + 48.2349464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YDITYHBJKS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.60696477, + 48.2349464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YDITYHBJKS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.731269, + 48.484877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LXINTQKPIH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.030422, + 48.335985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLKGXP4CHU0PTM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.142932, + 48.059765 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XB2FPTW6L6", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.04579, + 48.278961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T9MXJNYNEM", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.110326, + 48.235741 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IA7F7BLY0N", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38777907, + 48.07744194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ENFWY3FHBW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.109849, + 48.299744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X7LH2QZYGH", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62488, + 48.23362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UOMK81HGEB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466387, + 48.23941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ROHSARMMTL", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.62488, + 48.23362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UOMK81HGEB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08079663, + 48.29366661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C16QZJT72Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.435283, + 48.18069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N4MBOOZ97B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38777907, + 48.07744194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ENFWY3FHBW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08079663, + 48.29366661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C16QZJT72Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.731269, + 48.484877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LXINTQKPIH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08079663, + 48.29366661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJYAMZXUCU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.435283, + 48.18069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N4MBOOZ97B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.111696, + 48.624835 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JT57QTOIAB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.854229, + 48.225196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MMYWYPTXJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.623987, + 48.202677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BWBZ2WP2CP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.297369, + 48.084844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GCLIDDLXMP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.477906, + 48.069531 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HQBEJCHF0S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.039225, + 48.292272 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XLCIFNNICB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.975211, + 48.382891 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NO3UTM7ESA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.290049, + 48.519764 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HIUZKM0QXB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05944, + 48.295128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W0DDDMUY3L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.914111, + 48.026042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FTPT9EVHHC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.852836, + 48.501457 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MHAS1DBV2O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.297369, + 48.084844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GCLIDDLXMP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.829991, + 48.311377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VE3I1SNXAY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.624693, + 48.233623 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UZHYYMLXNA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.500127, + 48.540725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EOSAEXVXOL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3851649, + 48.5015677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RIG9LCTQGX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.310657, + 48.493503 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P4GE5YC7JS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0284165, + 48.2861626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJGA8L3JV7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0980575, + 48.3143585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q60WEBZNBK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9976, + 48.119941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HC39F8XCC0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.157508, + 48.533428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PNTCUBAVK3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.473429, + 48.071427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QQCJJBHN5V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8726956, + 48.2785931 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NLRCCHATCF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.332113, + 48.364012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AW2Y62ZANM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0665713, + 48.5411282 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P0XP87AAJ7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.112504, + 48.635996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ML8ZQJOCDL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.111696, + 48.624835 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JT57QTOIAB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4033642, + 48.0404528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NWRWARYFKP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.968203, + 48.568551 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P4F3QRFJ1V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7392818, + 48.3318444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LX4TJ9LIGD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.130872, + 47.957248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KICUPJFZY5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2163563, + 48.1705744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LOQVFXXZ4U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.129385, + 48.535128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q2NDRSYOYC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.498121, + 48.492224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HSYIJGUBSD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.502358, + 48.495221 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SK1TRPWVYS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.059989, + 48.346367 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OA0RW4NYDI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.016524, + 48.465158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XKFIUVLHYL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.201564, + 48.669258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ENKBOA6MC5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.935592, + 48.477265 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CVPP0IT0WU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.526286, + 48.348072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O67PC5Z8LO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.19691, + 48.671467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NYOAPHU4JI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.706075, + 48.233498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LRX5I5HMT3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.022728, + 48.333103 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OKPUUNPHL4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.968666, + 47.951248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T9T4YNRQ8T", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.626185, + 48.548185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PZWWQPXHOM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.518964, + 48.129514 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NHQEEP3OJC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.534964, + 48.060667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M90FZ6RVEV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.926727, + 48.445215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RCTBEA2JQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.969593, + 48.422127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZKK7RLCGHF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400423, + 48.358925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TQAAFAZ1RT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.673175, + 48.484073 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HAKGNH2QU1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.502756, + 48.357641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DPY7WNXRYD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07005, + 48.279567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KAI86XVIQL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.50281, + 48.493278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBVMTPZMH6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.051992, + 48.283534 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SMUUIBGAX6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.103553, + 48.016814 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TAI6K956YE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069758, + 48.276579 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FHNPHFUR1P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.110207, + 48.235708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E3LX6DF0I4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702219, + 48.236231 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BCIKXNCWR9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.620832, + 48.380433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FHE4S0TLNK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.852836, + 48.501457 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MHAS1DBV2O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.776899, + 48.198718 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AIFFRKY5XV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.125956, + 48.332553 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O8L0SVN1YZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.372186, + 48.121911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IGEEE64TSJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.668466, + 48.23801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RYCA2CSWBP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43476989, + 48.5110323 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FIFWQ1FUV1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.180425, + 48.311709 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJEVUUE5V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.035952, + 48.129995 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FZQRL62BMY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.73673, + 48.403725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ERKIMUKWMI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.444622, + 48.020072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CIGMXJMDAM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.708077, + 48.233992 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CXZBMR0ZO1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.302821, + 48.142869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WX2E9X4IMC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.246403, + 48.166854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NCLUISOFLF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2988, + 48.238953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NZLM3MS4GS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.935592, + 48.477265 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CVPP0IT0WU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.535224, + 48.348173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L3BRA1Y7LX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.997767, + 48.194045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PCG9MT1EER", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.577514, + 48.29715 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VQEXLSVRD6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.498121, + 48.492224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HSYIJGUBSD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.502358, + 48.495221 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SK1TRPWVYS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.477906, + 48.069531 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HQBEJCHF0S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.129385, + 48.535128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q2NDRSYOYC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.112504, + 48.635996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ML8ZQJOCDL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.473429, + 48.071427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QQCJJBHN5V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.157508, + 48.533428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PNTCUBAVK3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.016524, + 48.465158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XKFIUVLHYL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.716259, + 48.515358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHQHGUNUJO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.726184, + 48.520456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SX6GEG8ZZ9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.138651, + 48.059752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XPVDAUWIUL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.727739, + 48.524444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E2RZPOTRBD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.721178, + 48.505446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SWGZXGSK7K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99599, + 47.988229 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F2OPBGTHZ6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.059989, + 48.346367 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OA0RW4NYDI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9976, + 48.119941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HC39F8XCC0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.130872, + 47.957248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KICUPJFZY5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.268967, + 48.254884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KPYZDARPHY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.26242, + 48.345479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJ4BNTOLRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.789855, + 48.264099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R2KKTURY5F", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.733153, + 48.375387 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JMNDZF5K60", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.663522, + 48.51467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C3XIBVJXZ3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.975597, + 48.274322 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TUOBRCUPX7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.572433, + 48.508902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VTLPHAV5IB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.675846, + 48.140091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JSBX7JXEXQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.731123, + 48.221726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RSAKTATWHB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.274361, + 48.503592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DEGQM5QJVX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.232003, + 48.592374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RSDAVBFCEE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65457, + 48.388611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AMRW3PLL2G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.708251, + 48.288087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WQKIXJ3XWI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.51705, + 48.297775 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XYVVZLUAV4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.26666, + 48.252997 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWCZOVJJDA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.658171, + 48.418127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PWW4OVOZ6V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.727069, + 48.51718 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HNYSCUGFWO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9504, + 48.407601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HCL9EMOH18", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.335461, + 48.301693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X98XY5WWHQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.557904, + 48.589523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MMCTUADDCP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069551, + 48.31203 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M8VPGPD5FN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06958, + 48.312045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FT7GQAID6I", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.577552, + 48.550965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F3LFNNOE3M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069551, + 48.31203 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M8VPGPD5FN", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.122666, + 48.455884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MJJBMETL1P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.122666, + 48.455884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MJJBMETL1P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.029734, + 48.368461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O1EWBAVT2R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.029734, + 48.368461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O1EWBAVT2R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.017202, + 48.142109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UCV3A9QN03", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.647877, + 48.267637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITQ6ULMJ59", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.137337, + 48.207034 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UIDOGADTJG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17291, + 48.408332 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C2C0H3ORFE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.46641, + 48.239466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AL6PSPCLF8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085865, + 48.325312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XW3KNONHEE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.073498, + 48.269322 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z8YVZWSQIE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.194289, + 48.531443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNUS0N5LCV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.829991, + 48.311377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VE3I1SNXAY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.914111, + 48.026042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FTPT9EVHHC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.785801, + 48.509162 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SM903GKE9B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.483034, + 47.994615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITYFK2QUQW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.226495, + 48.179291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NU0UK8KQ1U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.682106, + 48.440882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VDP80ZN7FA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.7603, + 48.5033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MEPTJ9OWEG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.006239, + 48.360819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QJ1CPN7JU7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.891382, + 48.207971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GO3LHWGD06", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.727224, + 48.257447 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C16DS3V7VF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.920259, + 48.099248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QUNCIFCCI8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05944, + 48.295128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W0DDDMUY3L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.039225, + 48.292272 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XLCIFNNICB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.500127, + 48.540725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EOSAEXVXOL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.290049, + 48.519764 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HIUZKM0QXB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.975211, + 48.382891 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NO3UTM7ESA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.624693, + 48.233623 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UZHYYMLXNA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73722, + 47.6903 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HGDFBF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73722, + 47.6903 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HGDFBF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28274, + 48.0824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PMKMGS", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28274, + 48.0824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PMKMGS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.135993, + 45.642895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BII1ZEOITL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.135993, + 45.642895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BII1ZEOITL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34557791, + 47.04787699 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PDGJQAA0FT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34557791, + 47.04787699 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PDGJQAA0FT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.993125, + 50.470262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YJRJT8ZFIK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.993125, + 50.470262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YJRJT8ZFIK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.03207657, + 48.28769415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QBFZECLLXJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VZL9GPAYNT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.369991039, + 48.94491689 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B6VI5YO8DJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.369991039, + 48.94491689 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B6VI5YO8DJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.369991039, + 48.94491689 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B6VI5YO8DJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.369991039, + 48.94491689 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B6VI5YO8DJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BC9AMA977O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BC9AMA977O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BC9AMA977O", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BC9AMA977O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BC9AMA977O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BC9AMA977O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BC9AMA977O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BC9AMA977O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BC9AMA977O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.09934109, + 43.10751972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BC9AMA977O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VZL9GPAYNT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VZL9GPAYNT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VZL9GPAYNT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VZL9GPAYNT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VZL9GPAYNT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VZL9GPAYNT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VZL9GPAYNT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VZL9GPAYNT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VZL9GPAYNT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VZL9GPAYNT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.428157, + 43.205176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VZL9GPAYNT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9109, + 47.93292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GI557RXISG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.095098, + 49.254606 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "USZMAL05ZQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.095098, + 49.254606 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZNBCSN6ZPT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.095098, + 49.254606 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "USZMAL05ZQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.095098, + 49.254606 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZNBCSN6ZPT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9109, + 47.93292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GI557RXISG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65052128, + 45.75208481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KSYDHOQJJU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65052128, + 45.75208481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KSYDHOQJJU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65052128, + 45.75208481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KSYDHOQJJU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65052128, + 45.75208481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KSYDHOQJJU", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YOTRGWFRUD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YOTRGWFRUD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YOTRGWFRUD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YOTRGWFRUD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YOTRGWFRUD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YOTRGWFRUD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YOTRGWFRUD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42826847, + 50.12985016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YOTRGWFRUD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VE2SNJRWXL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMSVTLL4KF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMSVTLL4KF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMSVTLL4KF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMSVTLL4KF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMSVTLL4KF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMSVTLL4KF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VE2SNJRWXL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VE2SNJRWXL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VE2SNJRWXL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VE2SNJRWXL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VE2SNJRWXL", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VE2SNJRWXL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13143985, + 45.83580508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VE2SNJRWXL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38717162, + 47.08218504 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GHA5BJRBDD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NVFD81PSSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NVFD81PSSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NVFD81PSSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NVFD81PSSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NVFD81PSSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NVFD81PSSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NVFD81PSSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NVFD81PSSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NVFD81PSSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NVFD81PSSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.38717162, + 47.08218504 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GHA5BJRBDD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33390795, + 48.95405795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "APIQOKQASS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", + "start_date": "2021-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33390795, + 48.95405795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "APIQOKQASS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", + "start_date": "2021-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33390795, + 48.95405795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "APIQOKQASS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", + "start_date": "2021-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33390795, + 48.95405795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "APIQOKQASS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", + "start_date": "2021-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5057343, + 42.44829656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CUECDGTUQW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5057343, + 42.44829656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CUECDGTUQW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70271636, + 48.23802276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU1YABC2MHX2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70271636, + 48.23802276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU1YABC2MHX2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70271636, + 48.23802276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU1YABC2MHX2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70271636, + 48.23802276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU1YABC2MHX2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70271636, + 48.23802276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU1YABC2MHX2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70271636, + 48.23802276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU1YABC2MHX2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10322397, + 45.82316068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9REMMMQYE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58967133, + 49.6477769 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YHEYYGZWWB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-19:30", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.58967133, + 49.6477769 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YHEYYGZWWB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-19:30", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.20923656, + 43.41121455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTSTFI6AAL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10322397, + 45.82316068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9REMMMQYE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-05", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.20923656, + 43.41121455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTSTFI6AAL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.20923656, + 43.41121455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTSTFI6AAL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.20923656, + 43.41121455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTSTFI6AAL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10322397, + 45.82316068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9REMMMQYE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10322397, + 45.82316068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9REMMMQYE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10322397, + 45.82316068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9REMMMQYE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4388861, + 45.45249078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XGDLZYXS0Z", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4388861, + 45.45249078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XGDLZYXS0Z", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4388861, + 45.45249078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XGDLZYXS0Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4388861, + 45.45249078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XGDLZYXS0Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22248369, + 43.07297112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "STGP4YXUIC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26550488, + 49.14339336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ESUZWRLXFC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26550488, + 49.14339336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ESUZWRLXFC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.10322397, + 45.82316068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9REMMMQYE", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22248369, + 43.07297112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "STGP4YXUIC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92415692, + 45.28977905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QSN0XM5KUX", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92415692, + 45.28977905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QSN0XM5KUX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92415692, + 45.28977905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QSN0XM5KUX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92415692, + 45.28977905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QSN0XM5KUX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGK8IODLYI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGK8IODLYI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGK8IODLYI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGK8IODLYI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGK8IODLYI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGK8IODLYI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGK8IODLYI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716476, + 46.17291786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGK8IODLYI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39553, + 49.3902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UGWUQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39553, + 49.3902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UGWUQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30527, + 49.3807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ACFGRT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30527, + 49.3807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ACFGRT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52996847, + 43.49045736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GY3ENDUNAL", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52996847, + 43.49045736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GY3ENDUNAL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52996847, + 43.49045736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GY3ENDUNAL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52996847, + 43.49045736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GY3ENDUNAL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52996847, + 43.49045736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GY3ENDUNAL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.541409, + 43.477967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QHOHHOBGVO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:30-19:00", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.541409, + 43.477967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QHOHHOBGVO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:30-19:00", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.541409, + 43.477967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QHOHHOBGVO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:30-19:00", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.541409, + 43.477967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QHOHHOBGVO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:30-19:00", + "start_date": "2022-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.541409, + 43.477967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QHOHHOBGVO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:30-19:00", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35470347, + 48.98087537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZQJI8TT2HQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35470347, + 48.98087537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZQJI8TT2HQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35470347, + 48.98087537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZQJI8TT2HQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35470347, + 48.98087537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZQJI8TT2HQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35470347, + 48.98087537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZQJI8TT2HQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35470347, + 48.98087537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZQJI8TT2HQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35517581, + 48.98067116 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AVIZJCCHFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35517581, + 48.98067116 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AVIZJCCHFM", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462643, + 44.917315 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WJAIJ1IBFG", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462643, + 44.917315 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WJAIJ1IBFG", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462643, + 44.917315 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WJAIJ1IBFG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44218628, + 44.92366478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FKCYGTVQZZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44218628, + 44.92366478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FKCYGTVQZZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44218628, + 44.92366478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FKCYGTVQZZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44218628, + 44.92366478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FKCYGTVQZZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.98143719, + 43.18566882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q6MEVWHEHS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.98143719, + 43.18566882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q6MEVWHEHS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.98143719, + 43.18566882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q6MEVWHEHS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.98143719, + 43.18566882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q6MEVWHEHS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BGJEL6OX17", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BGJEL6OX17", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BGJEL6OX17", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BGJEL6OX17", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BGJEL6OX17", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LBBOWNBKO6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LBBOWNBKO6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LBBOWNBKO6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LBBOWNBKO6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LBBOWNBKO6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LBBOWNBKO6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LBBOWNBKO6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36738503, + 47.12095734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LBBOWNBKO6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.38832658, + 45.75150525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G07NKV2IV3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.38832658, + 45.75150525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G07NKV2IV3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.38698647, + 45.75260553 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XZ5BGZA7KF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.38698647, + 45.75260553 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XZ5BGZA7KF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BGJEL6OX17", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BGJEL6OX17", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BGJEL6OX17", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BGJEL6OX17", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18479771, + 46.03362873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BGJEL6OX17", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35140609, + 46.19570678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WQV2RNZM6H", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35140609, + 46.19570678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WQV2RNZM6H", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35140609, + 46.19570678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WQV2RNZM6H", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35140609, + 46.19570678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WQV2RNZM6H", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52300746, + 43.49607369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MAIBZUMHHF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-20:00", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52300746, + 43.49607369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MAIBZUMHHF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-20:00", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52300746, + 43.49607369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MAIBZUMHHF", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-20:00", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52300746, + 43.49607369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MAIBZUMHHF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-20:00", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52300746, + 43.49607369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MAIBZUMHHF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-20:00", + "start_date": "2022-10-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.412251, + 43.477805 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XGGXMZDHIA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.412251, + 43.477805 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XGGXMZDHIA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66865, + 44.0031 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UCAAKJ", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-01-14", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53880496, + 49.26570602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BNRBDCEV7P", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53880496, + 49.26570602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BNRBDCEV7P", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53880496, + 49.26570602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BNRBDCEV7P", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.53424, + 47.9172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XPBHMS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.53424, + 47.9172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XPBHMS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0312769, + 43.1758711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PUMXEJQLLD", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0312769, + 43.1758711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PUMXEJQLLD", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88738, + 47.7118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Combeau15juin", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88738, + 47.7118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Combeau15juin", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63035209, + 47.69877138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "romchamp14uil", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.63035209, + 47.69877138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "romchamp14uil", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.179008, + 45.6934 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YXBALB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.179008, + 45.6934 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YXBALB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31707683, + 46.18655661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N7CMCZKXED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80192, + 45.5369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "K9AVBWZHUY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80192, + 45.5369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "K9AVBWZHUY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.63991607, + 45.72249332 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CJYWF7AUNG", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.63991607, + 45.72249332 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CJYWF7AUNG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.027515, + 48.326696 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E95FKFHLMJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-18:00", + "start_date": "2021-08-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.027515, + 48.326696 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E95FKFHLMJ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-18:00", + "start_date": "2021-08-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9855801, + 45.63093544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BQZ44DT842", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28527514, + 49.14325703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PHETZJE3DT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.28527514, + 49.14325703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PHETZJE3DT", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.9855801, + 45.63093544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BQZ44DT842", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391097, + 49.203711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RMDZXYQQKA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391097, + 49.203711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RMDZXYQQKA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391097, + 49.203711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RMDZXYQQKA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31707683, + 46.18655661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N7CMCZKXED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31707683, + 46.18655661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N7CMCZKXED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31707683, + 46.18655661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N7CMCZKXED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31707683, + 46.18655661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N7CMCZKXED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.77615, + 45.46779 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YIQW3O95EW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.77615, + 45.46779 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YIQW3O95EW", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.77615, + 45.46779 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YIQW3O95EW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.31707683, + 46.18655661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N7CMCZKXED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16641258, + 45.65972238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FZSOUDQLT1", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42744, + 43.8057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LALSSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42744, + 43.8057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LALSSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TA2FAXN8SN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TA2FAXN8SN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TA2FAXN8SN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TA2FAXN8SN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TA2FAXN8SN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TA2FAXN8SN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TA2FAXN8SN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29651028, + 49.14390071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TA2FAXN8SN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16641258, + 45.65972238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FZSOUDQLT1", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16641258, + 45.65972238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FZSOUDQLT1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16641258, + 45.65972238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FZSOUDQLT1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3083, + 48.9545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SCLWYD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08837, + 49.3624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVYKCQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3083, + 48.9545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SCLWYD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-01-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.368334, + 49.228624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VKVLRRWSU5", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.368334, + 49.228624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VKVLRRWSU5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18227025, + 45.68803044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OOFJAHVKOS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18227025, + 45.68803044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OOFJAHVKOS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31019479, + 45.68013251 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OB8ETW7HKF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.31019479, + 45.68013251 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OB8ETW7HKF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68789218, + 49.28357489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VLVQIHN4G6", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.68789218, + 49.28357489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VLVQIHN4G6", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.644976, + 43.665405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WNIBH3CHGH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.644976, + 43.665405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WNIBH3CHGH", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16641258, + 45.65972238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FZSOUDQLT1", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.481858, + 45.147704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L1DBJXVP6P", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.481858, + 45.147704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L1DBJXVP6P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.13137, + 43.652371 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CA9CCNHNBW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.13137, + 43.652371 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CA9CCNHNBW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QKJMLF9CKH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QKJMLF9CKH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QKJMLF9CKH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QKJMLF9CKH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QKJMLF9CKH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QKJMLF9CKH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QKJMLF9CKH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QKJMLF9CKH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6642695, + 45.74606184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QJ5GYSMHHX", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QKJMLF9CKH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11715548, + 46.1551693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QKJMLF9CKH", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6642695, + 45.74606184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QJ5GYSMHHX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6642695, + 45.74606184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QJ5GYSMHHX", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6642695, + 45.74606184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QJ5GYSMHHX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6642695, + 45.74606184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QJ5GYSMHHX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04838712, + 44.08577017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WULLAX36A5", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04838712, + 44.08577017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WULLAX36A5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.204654, + 46.152179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KQ9R7VJ1CG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.204654, + 46.152179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KQ9R7VJ1CG", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZ5LMBLQWL", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZ5LMBLQWL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZ5LMBLQWL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZ5LMBLQWL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZ5LMBLQWL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZ5LMBLQWL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZ5LMBLQWL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZ5LMBLQWL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-06", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZ5LMBLQWL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.73995757, + 46.11121481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZ5LMBLQWL", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.44358433, + 50.30178494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AQAS4AR37L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.44358433, + 50.30178494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AQAS4AR37L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.44358433, + 50.30178494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AQAS4AR37L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.44358433, + 50.30178494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AQAS4AR37L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12717392, + 46.16908758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZERYWQHLC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87841511, + 47.6791211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FPVIHBM6KU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87841511, + 47.6791211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FPVIHBM6KU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87841511, + 47.6791211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FPVIHBM6KU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87841511, + 47.6791211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FPVIHBM6KU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3010889, + 45.53600566 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BBNL2YXVNI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3010889, + 45.53600566 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BBNL2YXVNI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29830986, + 45.54410263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G3CWYWKLKX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29830986, + 45.54410263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G3CWYWKLKX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29830986, + 45.54410263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G3CWYWKLKX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29830986, + 45.54410263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G3CWYWKLKX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29830986, + 45.54410263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G3CWYWKLKX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29830986, + 45.54410263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G3CWYWKLKX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99635721, + 44.36058652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJR8Z3PDHQEH0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99635721, + 44.36058652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJR8Z3PDHQEH0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65781418, + 49.07382725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XF6G40NMKY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65781418, + 49.07382725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XF6G40NMKY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.798617, + 50.54055576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O3TJBYM5LC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.798617, + 50.54055576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O3TJBYM5LC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.798617, + 50.54055576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O3TJBYM5LC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.798617, + 50.54055576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O3TJBYM5LC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99635721, + 44.36058652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJR8Z3PDHQEH0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99635721, + 44.36058652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJR8Z3PDHQEH0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99635721, + 44.36058652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJR8Z3PDHQEH0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99635721, + 44.36058652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJR8Z3PDHQEH0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54661705, + 46.72399705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KAHQKZVTML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54661705, + 46.72399705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KAHQKZVTML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54661705, + 46.72399705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KAHQKZVTML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54661705, + 46.72399705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KAHQKZVTML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62493383, + 45.741693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ST9EIX80RW", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62493383, + 45.741693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ST9EIX80RW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-06", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62493383, + 45.741693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ST9EIX80RW", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62493383, + 45.741693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ST9EIX80RW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00316, + 50.0094 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZROITA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00316, + 50.0094 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZROITA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51509, + 49.9121 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "corbie11nov", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51509, + 49.9121 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "corbie11nov", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.44889318, + 50.10042512 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ault11nov1918", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4552586, + 50.11000381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ault11nov1918", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30565142, + 46.55255239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A46LM1G17J", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30565142, + 46.55255239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A46LM1G17J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30565142, + 46.55255239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A46LM1G17J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09245, + 43.619574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WQLJIEOSPD", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64034267, + 43.66406096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MCN2TV5DLV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.402546, + 43.507929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TQFRQ15WCK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.402546, + 43.507929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TQFRQ15WCK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64034267, + 43.66406096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MCN2TV5DLV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64034267, + 43.66406096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MCN2TV5DLV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64034267, + 43.66406096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MCN2TV5DLV", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23002847, + 43.42249234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TQ4MET9QHH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.402546, + 43.507929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TQFRQ15WCK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95629924, + 43.30156711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KA6HPW7M1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95629924, + 43.30156711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KA6HPW7M1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.402546, + 43.507929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TQFRQ15WCK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.402546, + 43.507929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TQFRQ15WCK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31052875, + 43.2043724 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LAMORX8BZO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-12:00,Mo-Fr 14:00-19:00,Sa 14:00-18:00", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31052875, + 43.2043724 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LAMORX8BZO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-12:00,Mo-Fr 14:00-19:00,Sa 14:00-18:00", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVIF7DKLUF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVIF7DKLUF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVIF7DKLUF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVIF7DKLUF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVIF7DKLUF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVIF7DKLUF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVIF7DKLUF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVIF7DKLUF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVIF7DKLUF", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVIF7DKLUF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVIF7DKLUF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVIF7DKLUF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3598, + 43.41407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVIF7DKLUF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3438463, + 50.84746188 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIC8ALLHQN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3438463, + 50.84746188 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIC8ALLHQN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1963, + 45.6705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTDFPZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1963, + 45.6705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTDFPZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.19667332, + 45.25360433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H7UOMYFMJX", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.19667332, + 45.25360433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H7UOMYFMJX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.19667332, + 45.25360433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H7UOMYFMJX", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.68968931, + 48.35605654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ULRXO0HBQH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.68968931, + 48.35605654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ULRXO0HBQH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.68968931, + 48.35605654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ULRXO0HBQH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.68968931, + 48.35605654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ULRXO0HBQH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1669286, + 44.3974258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "909177295", + "email": "a.tarridec@maborneauto.com", + "phone": "361626161", + "network": "RENAULT BISCAROSSE", + "ref": "31f4a65e-bbd2-4e46-a5cf-5714f0143e2a", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0239871, + 48.3302804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "443171558", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA TROYES - Groupe Amplitude", + "ref": "90066", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-sat 08:00-19:00", + "start_date": "2021-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0239871, + 48.3302804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "443171558", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA TROYES - Groupe Amplitude", + "ref": "90067", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-sat 08:00-19:00", + "start_date": "2021-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9057774, + 43.660005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "879486520", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ROADY SERVICE", + "ref": "50490", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Sun 08:30-20:00", + "start_date": "2020-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9057774, + 43.660005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "879486520", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ROADY SERVICE", + "ref": "50491", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Sun 08:30-20:00", + "start_date": "2020-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15, + 48.53 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Bornevo Connect", + "owner:ref:FR:SIREN": "812267318", + "email": "contact@bornevo.com", + "phone": "0184604870", + "network": "Bornevo Connect", + "ref": "EVC 11750373", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.347742, + 49.214436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "538798570", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA - Hérouville-Saint-Clair", + "ref": "37831", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:30-12:30,Mo-Fr 14:00-19:00,Sat 09:00-18:00", + "start_date": "2020-08-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.347742, + 49.214436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "538798570", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA - Hérouville-Saint-Clair", + "ref": "37830", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:30-12:30,Mo-Fr 14:00-19:00,Sat 09:00-18:00", + "start_date": "2020-08-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6073542, + 45.5257463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "531669737", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Bricomarché Rive de Gier", + "ref": "77754", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6073542, + 45.5257463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "531669737", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Bricomarché Rive de Gier ", + "ref": "77752", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.155058, + 48.995907 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "351440078", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA Evreux GHV", + "ref": "109624", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 08:30-19:00", + "start_date": "2022-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-10-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-10-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-10-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-10-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-10-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-10-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-10-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-10-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-10-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-10-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.969035, + 42.9494317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395574, + 43.441127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.476711409891, + 43.476583984941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "803719277", + "email": "oscar@electromaps.com", + "phone": "34 931.574.967", + "network": "1PACTE", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "socket:type2": "yes", + "fee": "TRUE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-04-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4883644, + 45.147515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "349214825", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "PAROT AUTOMOTIVE - MAZDA BRIVE ", + "ref": "50719", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1391855, + 48.534072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "424095370", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Villa Primerose", + "ref": "89771", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-sat 08:00-22:00,Sun 08:00-21:00", + "start_date": "2021-11-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1391855, + 48.534072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "424095370", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Villa Primerose", + "ref": "89772", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-sat 08:00-22:00,Sun 08:00-21:00", + "start_date": "2021-11-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.323404, + 49.17014 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "448310771", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA CAEN", + "ref": "128615", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00–12:00,Mo-Fr 14:00–19:00,Sat 09:00-18:00", + "start_date": "2022-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.323404, + 49.17014 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "448310771", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA CAEN", + "ref": "128616", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", + "start_date": "2022-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4191715, + 43.2791824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "309004331", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "AUTO SPRINTER - MARSEILLE", + "ref": "56428", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00–12:30,Mo-Fr 13:30–19:00,Sat 09:00-19:00", + "start_date": "2021-03-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4191715, + 43.2791824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "309004331", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "AUTO SPRINTER - MARSEILLE", + "ref": "56427", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00–12:30,Mo-Fr 13:30–19:00,Sat 09:00-19:00", + "start_date": "2021-03-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59939, + 43.336796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "534056148", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MELLONE CONSTRUCTION", + "ref": "129868", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59939, + 43.336796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "534056148", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MELLONE CONSTRUCTION", + "ref": "129846", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59939, + 43.336796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "534056148", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MELLONE CONSTRUCTION", + "ref": "71708", + "fee": "false", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59939, + 43.336796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "534056148", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MELLONE CONSTRUCTION", + "ref": "71707", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1393838, + 49.2819168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "429354541", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "CAMPING LA POMMERAIE", + "ref": "57510", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1393838, + 49.2819168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "429354541", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "CAMPING LA POMMERAIE", + "ref": "57509", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8501, + 44.97406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "349429472", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "INTERMARCHE ALTILLAC", + "ref": "126136", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-sat 08:30-19:00, Sun 09:00-12:30", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8501, + 44.97406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "349429472", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "INTERMARCHE ALTILLAC ", + "ref": "81447", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-sat 08:30-19:00, Sun 09:00-12:30", + "start_date": "2021-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3372150061411605, + 49.22868351448894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVERON", + "owner:ref:FR:SIREN": "848595880", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "EVBOX", + "ref": "EVB-P1941007", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4612672413424779, + 49.33620273281156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVERON", + "owner:ref:FR:SIREN": "440967651", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "EVBOX", + "ref": "EVB-P2003727", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Su 10:00-17:00", + "start_date": "2022-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.494583, + 49.105377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "M. Yannick PIERRE", + "owner:ref:FR:SIREN": "903227221", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "EVERON ", + "ref": "EVB-P2011337", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Sa 06:00-20:00", + "start_date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4612672413424779, + 49.33620273281156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVERON", + "owner:ref:FR:SIREN": "440967651", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "CENTRE JUNO BEACH", + "ref": "EVB-P2003727", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Su 10:00-17:00", + "start_date": "2022-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.325962, + 46.1798642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "390599611", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "BRICOMARCHE RHEALYS - LA FLOTTE EN RE", + "ref": "129087", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.325962, + 46.1798642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "390599611", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "BRICOMARCHE RHEALYS - LA FLOTTE EN RE", + "ref": "129086", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.282737, + 48.082356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.282737, + 48.082356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.737215, + 47.690303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.737215, + 47.690303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.38, + 49.29 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SARL BEAUDRE BAUDOT", + "owner:ref:FR:SIREN": "485169692", + "email": "gohel.stephane@orange.fr", + "phone": "0231360606", + "network": "SECURITEST", + "ref": "fr*map*e000014961534", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:45-18:30", + "start_date": "2022-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12813301, + 45.759645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "398027235", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché La Tremblade", + "ref": "70278", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Sat 09:00-20:00,Sun 09:00-13:00", + "start_date": "2021-08-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12813301, + 45.759645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "398027235", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché La Tremblade", + "ref": "70279", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Sat 09:00-20:00,Sun 09:00-13:00", + "start_date": "2021-08-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12813301, + 45.759645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "398027235", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché La Tremblade", + "ref": "89539", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sat 09:00-20:00,Sun 09:00-13:00", + "start_date": "2021-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.12813301, + 45.759645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "398027235", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché La Tremblade", + "ref": "89540", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Sat 09:00-20:00,Sun 09:00-13:00", + "start_date": "2021-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22, + 44.55 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SNAM GROUPE", + "owner:ref:FR:SIREN": "843277609", + "email": "yoan.ramos@snam.com", + "phone": "0565437730", + "network": "Réseau de recharge Viviez", + "socket:typee": "yes", + "socket:type2": "yes", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "MO-FR 08:00-12:00" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.094773232378359, + 45.827466656256114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ITM MARENNES", + "owner:ref:FR:SIREN": "341545531", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ITM MARENNES", + "ref": "172817", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Sa 08:30-19:30, Di 09:00-12:30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.094773232378359, + 45.827466656256114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "341545531", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ITM MARENNES", + "ref": "172819", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Sa 08:30-19:30, Di 09:00-12:30", + "start_date": "2022-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.094773232378359, + 45.827466656256114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "341545531", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ITM MARENNES", + "ref": "164421", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Sa 08:30-19:30, Di 09:00-12:30", + "start_date": "2023-01-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.094773232378359, + 45.827466656256114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "341545531", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ITM MARENNES", + "ref": "164418", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Sa 08:30-19:30, Di 09:00-12:30", + "start_date": "2022-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.346448, + 41.697254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "0103fcc1-2f21-4416-82f0-1abd3e740d7f", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7585, + 42.568042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "881bd651-f45d-469c-bc3b-b19978a31617", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.408167, + 42.897789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "1bac8abd-42cd-4df5-9c4e-966bd9f70657", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.609770199999, + 45.7115857 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "909177297", + "email": "a.tarridec@maborneauto.com", + "phone": "0556372993", + "network": "SCI HORUS", + "ref": "bc840a90-12c1-4963-b396-75837d9ed5cf", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32491, + 46.31971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref": "B016", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32491, + 46.31971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref": "B016", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18175, + 46.64537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref": "B109", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18175, + 46.64537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref": "B109", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41207, + 46.37738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref": "B090", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.41207, + 46.37738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref": "B090", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 46.64537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref": "B146", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65243, + 46.67327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref": "B004", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65243, + 46.67327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref": "B004", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34213, + 46.54957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref": "B120", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34213, + 46.54957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "service-recharge@soregies.fr", + "phone": "05 49 44 79 00", + "network": "ALTERBASE86", + "ref": "B120", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3043377, + 49.1915441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "PTBG et associés", + "owner:ref:FR:SIREN": "336450051", + "email": "f.dineur@groupeptbg.fr", + "phone": "0231291931", + "network": "PTBG", + "ref": "RCG0C210D9", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.03, + 43.18 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "BH RESTAURATION", + "owner:ref:FR:SIREN": "478236318", + "email": "restaurantlasource@wanadoo.fr", + "phone": "0613510848", + "network": "BORNES LA SOURCE", + "ref": "FR*MAP*P000000007472", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0558528, + 43.12799930000001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref": "e274e464-c94c-11ed-afa1-0242ac120002", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0558528, + 43.12799930000001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref": "ddaaa09a-c94c-11ed-afa1-0242ac120002", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.251979, + 49.410967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09623, + 49.347188 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09623, + 49.347188 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09623, + 49.347188 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09623, + 49.347188 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.251979, + 49.410967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.251979, + 49.410967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65557, + 49.568055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65557, + 49.568055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65557, + 49.568055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.65557, + 49.568055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.323656, + 49.209081 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.323656, + 49.209081 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.323656, + 49.209081 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.323656, + 49.209081 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34201, + 47.046528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34201, + 47.046528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34201, + 47.046528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34201, + 47.046528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44438, + 44.913949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44438, + 44.913949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44438, + 44.913949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44438, + 44.913949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.251979, + 49.410967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.094046, + 49.477319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.094046, + 49.477319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.094046, + 49.477319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.094046, + 49.477319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4524017, + 48.2368506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Gamba et Rota", + "owner:ref:FR:SIREN": "301213476", + "email": "stephane.bussiere@varennespie.fr", + "phone": "0689771003", + "network": "Gamba et Rota", + "ref": "FRWBCERCG0C21148", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855131", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-18:04", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855134", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-18:07", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855133", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-18:06", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855132", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-18:05", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855130", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-18:03", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-18:00", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855129", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-18:02", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-18:00", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-18:00", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-18:00", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-18:00", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-18:00", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855127", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-18:00", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.39091984844480976, + 49.20079970020356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAP LABS FRANCE", + "owner:ref:FR:SIREN": "419855128", + "email": "e-mobility@sap.com", + "phone": "0492286200", + "network": "SAP LABS FRANCE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-18:01", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576905, + 46.633177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576905, + 46.633177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232689, + 46.888542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232689, + 46.888542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.143766265497639, + 43.3292004491334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Electromaps", + "owner:ref:FR:SIREN": "320342975", + "email": "ismael@electromaps.com", + "phone": "34 931 574 967 ", + "network": "SAS La Tuiliere", + "ref": "9d048374-0445-11ee-be56-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4524017, + 48.2368506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Gamba et Rota", + "owner:ref:FR:SIREN": "301213476", + "email": "stephane.bussiere@varennespie.fr", + "phone": "0689771003", + "network": "Gamba et Rota", + "ref": "FRWBCERCG0C2115C", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1348357, + 48.3005817 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Festilight", + "owner:ref:FR:SIREN": "301213476", + "email": "didier.maroilley@festilight.fr", + "phone": "0325832300", + "network": "Festilight", + "ref": "FRWBCERJG0C23026", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1348357, + 48.3005817 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Festilight", + "owner:ref:FR:SIREN": "301213476", + "email": "didier.maroilley@festilight.fr", + "phone": "0325832300", + "network": "Festilight", + "ref": "FRWBCERJG0C2303B", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1348357, + 48.3005817 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Festilight", + "owner:ref:FR:SIREN": "301213476", + "email": "didier.maroilley@festilight.fr", + "phone": "0325832300", + "network": "Festilight", + "ref": "FRWBCERCG0C210E4", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1348357, + 48.3005817 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Festilight", + "owner:ref:FR:SIREN": "301213476", + "email": "didier.maroilley@festilight.fr", + "phone": "0325832300", + "network": "Festilight", + "ref": "FRWBCERCG0C2115F", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1348357, + 48.3005817 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Festilight", + "owner:ref:FR:SIREN": "301213476", + "email": "didier.maroilley@festilight.fr", + "phone": "0325832300", + "network": "Festilight", + "ref": "FRWBCERCG0C2117D", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.95, + 43.47 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RONALEV", + "owner:ref:FR:SIREN": "417948882", + "email": "leclercq.ronalev@orange.fr", + "phone": "0610013878", + "network": "Borne de recharge RONALEV", + "ref": "589ab6df-40f9-4200-84ec-301b6c4e1faa", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3670389, + 46.10760080000001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RechargerMonAuto", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref": "64807c069c07be00ded6ea12", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3670389, + 46.10760080000001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RechargerMonAuto", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref": "64807c069c07be00ded6ea12", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3670389, + 46.10760080000001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RechargerMonAuto", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref": "64807c069c07be00ded6ea12", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5955586, + 45.2732968 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RechargerMonAuto", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref": "64807c309c07be00ded6ea14", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.79973, + 43.2076102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RechargerMonAuto", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref": "6486b0e79c07be00ded73672", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.79973, + 43.2076102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RechargerMonAuto", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref": "6486b0e79c07be00ded73672", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1178263, + 45.6494913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Camping le Puits de l'Auture", + "email": "tech@eoliberty.com", + "network": "Réseau de recharge Charge-in", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1178263, + 45.6494913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Camping le Puits de l'Auture", + "email": "tech@eoliberty.com", + "network": "Réseau de recharge Charge-in", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.853408088061449, + 43.954525553229516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "480169119", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SUD AVEYRON AUTOMOBILES - FORD SAINT AFFRIQUE", + "ref": "E175271", + "socket:type2": "yes", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", + "start_date": "2023-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.853408088061449, + 43.954525553229516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "480169119", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SUD AVEYRON AUTOMOBILES - FORD SAINT AFFRIQUE", + "ref": "E175270", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", + "start_date": "2023-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.16, + 45.8 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ART DECO FINITION", + "owner:ref:FR:SIREN": "478846231", + "email": "silva.adf@orange.fr", + "network": "ART DECO FINITION", + "ref": "7ffd26f8-4030-45ea-be1b-8b9322e17e2d", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2585815, + 45.90524019999999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "332944032", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Dolus-d'Oléron", + "ref": "E174559", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Di 08:30-19:30", + "start_date": "2023-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2585815, + 45.90524019999999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "332944032", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Dolus-d'Oléron", + "ref": "E153280", + "socket:typee": "yes", + "socket:type2": "yes", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Di 08:30-19:30", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2585815, + 45.90524019999999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "332944032", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Dolus-d'Oléron ", + "ref": "E153279", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Di 08:30-19:30", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2585815, + 45.90524019999999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "332944032", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Dolus-d'Oléron ", + "ref": "E174558", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Di 08:30-19:30", + "start_date": "2023-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3670389, + 46.10760080000001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RechargerMonAuto", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref": "64807c069c07be00ded6ea12", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5955586, + 45.2732968 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RechargerMonAuto", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref": "64807c309c07be00ded6ea14", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3670389, + 46.10760080000001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RechargerMonAuto", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref": "64807c069c07be00ded6ea12", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3670389, + 46.10760080000001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RechargerMonAuto", + "email": "contact@rechargermonauto.com", + "phone": "0665050816", + "network": "RechargerMonAuto", + "ref": "64807c069c07be00ded6ea12", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.426173, + 50.129276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-24", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.426173, + 50.129276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-24", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.426173, + 50.129276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-24", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.605048, + 49.644253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVERON", + "owner:ref:FR:SIREN": "903227221", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "EVERON", + "ref": "EVB-P2011337", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Sa 06:00-20:00", + "start_date": "2022-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18157, + 45.692753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424006, + 45.44038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417452, + 43.532883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065306, + 44.116006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "electromaps", + "owner:ref:FR:SIREN": "897811865", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "electromaps", + "ref": "FR*MAP*P000000006985", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Su 00:00-23:59", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065306, + 44.116006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "electromaps", + "owner:ref:FR:SIREN": "897811865", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "electromaps", + "ref": "FR*MAP*P000000006985", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Su 00:00-23:59", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065306, + 44.116006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "electromaps", + "owner:ref:FR:SIREN": "897811865", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "electromaps", + "ref": "FR*MAP*P000000006985", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "Mo-Su 00:00-23:59", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065306, + 44.116006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "electromaps", + "owner:ref:FR:SIREN": "897811865", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "electromaps", + "ref": "FR*MAP*P000000006985", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "Mo-Su 00:00-23:59", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.04, + 44.08 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Leclerc Millau", + "owner:ref:FR:SIREN": "341760148", + "email": "thomas.millerand@millau.leclerc", + "phone": "0565590103", + "network": "Leclerc Millau", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.876855607462602, + 48.07256195733498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref": "FRCPIE66386351", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.876855607462602, + 48.07256195733498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ChargePoint", + "owner:ref:FR:SIREN": "200096824", + "email": "support.eu@chargepoint.com", + "phone": "0185650449", + "network": "HOPITAUX MASSIF DES VOSGES", + "ref": "FRCPIE66386351", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.212029, + 44.196621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "electromaps", + "owner:ref:FR:SIREN": "312707391", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "electromaps", + "ref": "f588e6140fcfab03", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 00:00-23:59", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.212029, + 44.196621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "electromaps", + "owner:ref:FR:SIREN": "312707391", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "electromaps", + "ref": "c45b7fe23fd6020a", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 00:00-23:59", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2943536, + 49.1928486 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Guerin", + "owner:ref:FR:SIREN": "512913518", + "email": "yannick@2ed.fr", + "phone": "0643099223", + "network": "2ED", + "ref": "48db1801-1114-4055-a221-75d0e5262a2e", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "mo-fr 08:00-12:00,mo-fr 13:30-18:00", + "start_date": "2022-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1169209, + 45.6281317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "909177297", + "email": "e.barre@maborneauto.com", + "phone": "0361626161", + "network": "AUTO SERVICE PLUS", + "ref": "4227d79c-7a5a-4ca1-8853-486d8a91c665", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4457879, + 44.5894889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref": "acc38e38-be6b-11ed-afa1-0242ac120002", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.432864, + 48.181061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39751, + 48.046967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39751, + 48.046967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.398973, + 48.256221 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.432864, + 48.181061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.429412, + 48.253061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.429412, + 48.253061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.368293, + 48.189981 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.398973, + 48.256221 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.368293, + 48.189981 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43536, + 48.172168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43536, + 48.172168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.307515, + 48.175353 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.305172, + 48.161522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.307515, + 48.175353 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.305172, + 48.161522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0631174, + 43.629227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EGE NOEL BERANGER", + "owner:ref:FR:SIREN": "402682991", + "email": "b.rochefort@noelberanger.fr", + "phone": "0491432450", + "network": "FULGURA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0631174, + 43.629227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EGE NOEL BERANGER", + "owner:ref:FR:SIREN": "402682991", + "email": "b.rochefort@noelberanger.fr", + "phone": "0491432450", + "network": "FULGURA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.370315499999999, + 43.421597 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref": "5c0bb6f0-a629-11ed-afa1-0242ac120002", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6451248, + 48.2690475 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref": "30893f16-8cc1-4c38-ac64-f258d2f9bdd1", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2436855, + 49.1000191 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.624323, + 49.63612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-08-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2436855, + 49.1000191 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "255002883", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.624323, + 49.63612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Total marketing france", + "owner:ref:FR:SIREN": "200056844", + "email": "e-charge50@sdem50.fr", + "phone": "0809107584", + "network": "e-charge50", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-08-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9736927577629495, + 44.33852129529498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "539500546", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LE PLO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref": "FRC2P003902", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref": "FRC2P003902", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref": "FRC2P003901", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref": "FRC2P003901", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9736927577629495, + 44.33852129529498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "539500546", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LE PLO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.960545459507173, + 43.30223171200826 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SARL CASTEL CONTROLE", + "ref": "FRC2P004701", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.960545459507173, + 43.30223171200826 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SARL CASTEL CONTROLE", + "ref": "FRC2P004702", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref": "FRC2P003901", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref": "FRC2P003901", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref": "FRC2P003902", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.115732, + 49.2805603 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "412235319", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "AGAPHONE", + "ref": "FRC2P003902", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.9736927577629495, + 44.33852129529498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "539500546", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LE PLO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.780463, + 43.84705599999999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "340379932", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL DU MOULIN DAURE", + "ref": "FRC2P006001", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.780463, + 43.84705599999999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "340379932", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL DU MOULIN DAURE", + "ref": "FRC2P006001", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4783344, + 43.3190604 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "MC HOTELLERIE", + "ref": "FRC2P006401", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4783344, + 43.3190604 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "MC HOTELLERIE", + "ref": "FRC2P006401", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.406844, + 46.187012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "440863561", + "email": "support@virta.global", + "phone": "0186472693", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.377925, + 46.17418428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "329554851", + "email": "support@virta.global", + "phone": "0186472724", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.377925, + 46.17418428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "329554851", + "email": "support@virta.global", + "phone": "0186472723", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.430500000000005, + 43.57690340000002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVBOX", + "owner:ref:FR:SIREN": "453406365", + "email": "psasupport@evbox.com", + "phone": "0986877186", + "network": "EVBOX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.496258, + 45.052079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080123", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.496258, + 45.052079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080123", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.97228, + 42.951091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080363", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.97228, + 42.951091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080363", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.97228, + 42.951091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080363", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080362", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.97228, + 42.951091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080363", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.97228, + 42.951091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080363", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080362", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080362", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080362", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080362", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080362", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080362", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080362", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080362", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080362", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080362", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.604571, + 45.894616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080362", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.354652, + 43.346007 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P01789", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.362246, + 43.235483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P01788", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.362246, + 43.235483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P01788", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.354652, + 43.346007 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P01789", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3953496, + 43.2674985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P00954", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.474731, + 43.30344 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P01734", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.474731, + 43.30344 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P01734", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.591773, + 43.246902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P01489", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.591773, + 43.246902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P01489", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3953496, + 43.2674985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P00954", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3953496, + 43.2674985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P00954", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3953496, + 43.2674985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P00954", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.369344884371708, + 43.31506007724927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P00802", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.369344884371708, + 43.31506007724927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "La Recharge - Aix Marseille Provence", + "ref": "FR*TCB*P00802", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.186405, + 43.589684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059189", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.186405, + 43.589684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059189", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.186405, + 43.589684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059189", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.186405, + 43.589684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059189", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.186405, + 43.589684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059189", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241364539907534, + 48.21135002599696 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042236", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241364539907534, + 48.21135002599696 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042236", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241364539907534, + 48.21135002599696 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042236", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241364539907534, + 48.21135002599696 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042236", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.383225, + 43.316251 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF058543", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.383225, + 43.316251 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF058543", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389485, + 49.173149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF051024", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389485, + 49.173149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF051024", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389485, + 49.173149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF051024", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389485, + 49.173149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF051024", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389485, + 49.173149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF051024", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389485, + 49.173149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF051024", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389485, + 49.173149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF051024", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.112511, + 48.550222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF050462", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.112511, + 48.550222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF050462", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098026, + 48.089376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059994", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098026, + 48.089376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059994", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098026, + 48.089376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059994", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.092478, + 43.216189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059472", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.092478, + 43.216189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059472", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.092478, + 43.216189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059472", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.092478, + 43.216189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059472", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.092478, + 43.216189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059472", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.092478, + 43.216189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059472", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.259203, + 43.391046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059602", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241010412111203, + 48.214366530490125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078386", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241010412111203, + 48.214366530490125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078386", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241010412111203, + 48.214366530490125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078386", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.241010412111203, + 48.214366530490125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078386", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078387", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078387", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078387", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078387", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078387", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078387", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078387", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.493363, + 46.114344 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078387", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3735, + 48.9003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078062", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.375428, + 48.900638 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078061", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26627, + 48.835002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078037", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098026, + 48.089376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059994", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.193534, + 43.589351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007052", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.193534, + 43.589351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007052", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.193534, + 43.589351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007052", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.193534, + 43.589351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007052", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.193534, + 43.589351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007052", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.453912, + 43.291896 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF067705", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.453912, + 43.291896 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF067705", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070002", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098658, + 48.090032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069303", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098658, + 48.090032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069303", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098658, + 48.090032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069303", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098658, + 48.090032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069303", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070002", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070002", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070002", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070002", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070002", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070002", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.07982, + 44.329297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070002", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070003", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070003", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070003", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070003", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070003", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070003", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070003", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509803, + 45.541115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF070003", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3084191, + 48.8657733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref": "FR*V75*PPX08*09", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3084191, + 48.8657733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref": "FR*V75*PPX08*09", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3046348, + 48.8682112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref": "FR*V75*PPX08*13", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3046348, + 48.8682112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref": "FR*V75*PPX08*13", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3046348, + 48.8682112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref": "FR*V75*PPX08*13", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3046348, + 48.8682112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref": "FR*V75*PPX08*13", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3046348, + 48.8682112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref": "FR*V75*PPX08*13", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3046348, + 48.8682112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref": "FR*V75*PPX08*13", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3084191, + 48.8657733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref": "FR*V75*PPX08*09", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3084191, + 48.8657733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref": "FR*V75*PPX08*09", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3084191, + 48.8657733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref": "FR*V75*PPX08*09", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3084191, + 48.8657733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref": "FR*V75*PPX08*09", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3084191, + 48.8657733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 85 16 94 02", + "network": "Belib'", + "ref": "FR*V75*PPX08*09", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2463627684080526, + 49.41412118399849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "452873193", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", + "ref": "FRTCBP01006", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2463627684080526, + 49.41412118399849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "452873193", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", + "ref": "FRTCBP01006", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2463627684080526, + 49.41412118399849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "452873193", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", + "ref": "FRTCBP01006", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2463627684080526, + 49.41412118399849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "452873193", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", + "ref": "FRTCBP01006", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2463627684080526, + 49.41412118399849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "452873193", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", + "ref": "FRTCBP01006", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2463627684080526, + 49.41412118399849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "452873193", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS ROUGE HONFLEUR", + "ref": "FRTCBP01006", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24642427703547448, + 49.414548090909335 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "812941052", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO B&B LA RIVIERE ST SAUVEUR", + "ref": "FRTCBP01003", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24642427703547448, + 49.414548090909335 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "812941052", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO B&B LA RIVIERE ST SAUVEUR", + "ref": "FRTCBP01003", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24642427703547448, + 49.414548090909335 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "812941052", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO B&B LA RIVIERE ST SAUVEUR", + "ref": "FRTCBP01003", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24642427703547448, + 49.414548090909335 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "812941052", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO B&B LA RIVIERE ST SAUVEUR", + "ref": "FRTCBP01003", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24642427703547448, + 49.414548090909335 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "812941052", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO B&B LA RIVIERE ST SAUVEUR", + "ref": "FRTCBP01003", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24642427703547448, + 49.414548090909335 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "812941052", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO B&B LA RIVIERE ST SAUVEUR", + "ref": "FRTCBP01003", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30588, + 48.86761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref": "FRIPKPFRA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30588, + 48.86761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref": "FRIPKPFRA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20869700610637665, + 48.90683364868164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "393397435", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS ROUGE FALAISE", + "ref": "FRTCBP01002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20869700610637665, + 48.90683364868164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "393397435", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS ROUGE FALAISE", + "ref": "FRTCBP01002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20869700610637665, + 48.90683364868164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "393397435", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS ROUGE FALAISE", + "ref": "FRTCBP01002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20869700610637665, + 48.90683364868164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "393397435", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS ROUGE FALAISE", + "ref": "FRTCBP01002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20869700610637665, + 48.90683364868164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "393397435", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS ROUGE FALAISE", + "ref": "FRTCBP01002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20869700610637665, + 48.90683364868164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "393397435", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS ROUGE FALAISE", + "ref": "FRTCBP01002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3010955846585653, + 49.16246233244864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "414111310", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", + "ref": "FRTCBP00999", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3010955846585653, + 49.16246233244864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "414111310", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", + "ref": "FRTCBP00999", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3010955846585653, + 49.16246233244864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "414111310", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", + "ref": "FRTCBP00999", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3010955846585653, + 49.16246233244864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "414111310", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", + "ref": "FRTCBP00999", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3010955846585653, + 49.16246233244864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "414111310", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", + "ref": "FRTCBP00999", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3010955846585653, + 49.16246233244864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "414111310", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " VIKINGS CASINO IBIS BUDGET MONDEVILLE", + "ref": "FRTCBP00999", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30588, + 48.86761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref": "FRIPKPFRA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30588, + 48.86761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING", + "ref": "FRIPKPFRA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2385127991437912, + 49.41841125488281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "343123766", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "VIKINGS CASINO MERCURE HONFLEUR", + "ref": "FRTCBP01001", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2385127991437912, + 49.41841125488281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "343123766", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "VIKINGS CASINO MERCURE HONFLEUR", + "ref": "FRTCBP01001", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2385127991437912, + 49.41841125488281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "343123766", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "VIKINGS CASINO MERCURE HONFLEUR", + "ref": "FRTCBP01001", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2385127991437912, + 49.41841125488281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "343123766", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "VIKINGS CASINO MERCURE HONFLEUR", + "ref": "FRTCBP01001", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2385127991437912, + 49.41841125488281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "343123766", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "VIKINGS CASINO MERCURE HONFLEUR", + "ref": "FRTCBP01001", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2385127991437912, + 49.41841125488281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "343123766", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "VIKINGS CASINO MERCURE HONFLEUR", + "ref": "FRTCBP01001", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09441, + 43.63799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPPPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0343797063079334, + 45.396309000661006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "753105006", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Renault Agents France", + "ref": "FRTCBP00726", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,14:00-18:00,Sa 08:00-12:00", + "start_date": "2022-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.369344884371708, + 43.31506007724927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "200054807", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "METROPOLE D'AIX-MARSEILLE-PROVENCE", + "ref": "FRTCBP00802", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.369344884371708, + 43.31506007724927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "200054807", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "METROPOLE D'AIX-MARSEILLE-PROVENCE", + "ref": "FRTCBP00802", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.036040724644734, + 45.39793430999813 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "332574540", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "PSA Agents France", + "ref": "FRTCBP00694", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,14:00-18:00,Sa 09:00-12:00,14:00-19:00", + "start_date": "2022-08-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.601978976728186, + 43.20610905711502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "441568748", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00475", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.601978976728186, + 43.20610905711502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "441568748", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00475", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.601978976728186, + 43.20610905711502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "441568748", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00475", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465756, + 43.512302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "800994055", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00528", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465756, + 43.512302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "800994055", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00528", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465756, + 43.512302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "800994055", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00528", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465756, + 43.512302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "800994055", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00528", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.601978976728186, + 43.20610905711502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "441568748", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00475", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.117295, + 49.282126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "433528734", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00427", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.117295, + 49.282126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "433528734", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00427", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.117295, + 49.282126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "433528734", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00427", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251248, + 43.434434 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref": "FRTCBP00415", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-17:30", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251248, + 43.434434 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref": "FRTCBP00415", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-17:30", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251248, + 43.434434 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref": "FRTCBP00415", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-17:30", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.251248, + 43.434434 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref": "FRTCBP00415", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-17:30", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.329051, + 48.070643 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "237840785", + "network": "FR*S28", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-16:30", + "start_date": "2021-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-16:30", + "start_date": "2021-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-16:30", + "start_date": "2021-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-16:30", + "start_date": "2021-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-16:30", + "start_date": "2021-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-16:30", + "start_date": "2021-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-16:30", + "start_date": "2021-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-16:30", + "start_date": "2021-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-16:30", + "start_date": "2021-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.937887, + 43.267998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-16:00", + "start_date": "2022-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.937887, + 43.267998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-16:00", + "start_date": "2022-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.937887, + 43.267998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-16:00", + "start_date": "2022-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-16:30", + "start_date": "2021-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-16:30", + "start_date": "2021-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298185, + 43.212574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SGA Industries", + "owner:ref:FR:SIREN": "507500775", + "email": "contact@sga-industries.com", + "phone": "0232103853", + "network": "Réseau de recharge DEBELEC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-16:30", + "start_date": "2021-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.414278, + 43.268556 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431066, + 43.282781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43951, + 43.28123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43951, + 43.28123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.421824, + 43.269773 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.421824, + 43.269773 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.414278, + 43.268556 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.213539, + 43.417033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4082, + 43.280252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4082, + 43.280252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.213539, + 43.417033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.481858, + 43.298393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.217351, + 43.418544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.217351, + 43.418544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.177512, + 43.728394 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431066, + 43.282781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.51211, + 43.31196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.481858, + 43.298393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.459582, + 43.288847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.459582, + 43.288847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.51211, + 43.31196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.340986, + 43.393554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.50964, + 43.30106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.50964, + 43.30106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.464186, + 43.312781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.464186, + 43.312781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.449793, + 43.312251 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.449793, + 43.312251 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42204, + 43.318421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42204, + 43.318421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.450343, + 43.303279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.450343, + 43.303279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.177512, + 43.728394 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.309629, + 43.410797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.340986, + 43.393554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.990593, + 43.513977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.194176, + 43.551585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.60471, + 43.376505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.60471, + 43.376505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.176413, + 43.629899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.176413, + 43.629899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.990593, + 43.513977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.983332, + 43.494334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.348994, + 43.380874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.983332, + 43.494334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988932, + 43.502474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988932, + 43.502474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.980599, + 43.515583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.980599, + 43.515583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.992584, + 43.476179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.194176, + 43.551585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.517073, + 43.281395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.517073, + 43.281395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.309295, + 43.714044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.309295, + 43.714044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.08596, + 43.699042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.08596, + 43.699042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.264653, + 43.654859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.264653, + 43.654859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.124454, + 43.59286 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.124454, + 43.59286 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.487714, + 43.510783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.487714, + 43.510783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.309629, + 43.410797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387306, + 43.295444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43225, + 43.32013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.348994, + 43.380874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43225, + 43.32013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.413793, + 43.326733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.446643, + 43.342856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.367851, + 43.308184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.389845, + 43.309831 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.371379, + 43.309042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.371379, + 43.309042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.366179, + 43.298904 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.366179, + 43.298904 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.367851, + 43.308184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.368833, + 43.301462 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.446643, + 43.342856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.368833, + 43.301462 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381055, + 43.301561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381055, + 43.301561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.38179, + 43.299055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.38179, + 43.299055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39319, + 43.304651 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.389845, + 43.309831 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.400517, + 43.302721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.400517, + 43.302721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.400736, + 43.310012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.400736, + 43.310012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.397974, + 43.315138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.397974, + 43.315138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.396799, + 43.303235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.396799, + 43.303235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.992965, + 43.50076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.399566, + 43.300388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.399566, + 43.300388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.396151, + 43.289353 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.396151, + 43.289353 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.400273, + 43.289235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.400273, + 43.289235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387306, + 43.295444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39319, + 43.304651 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329846, + 43.361274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329846, + 43.361274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.436152, + 43.342681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409596, + 43.320297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409596, + 43.320297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.413793, + 43.326733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.418971, + 43.329629 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.418971, + 43.329629 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.437851, + 43.352498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.437851, + 43.352498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404849, + 43.317055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404849, + 43.317055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.455123, + 43.32522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.455123, + 43.32522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42744, + 43.32901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42744, + 43.32901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.436152, + 43.342681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.382365, + 43.32494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.337002, + 43.357724 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.382365, + 43.32494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.374552, + 43.332198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.374552, + 43.332198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5, + 43.34564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5, + 43.34564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356946, + 43.339505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356946, + 43.339505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.361972, + 43.379781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.361972, + 43.379781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.363271, + 43.324349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.363271, + 43.324349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.309551, + 43.362236 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.309551, + 43.362236 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.337002, + 43.357724 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.992584, + 43.476179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755862, + 43.788423 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.992965, + 43.50076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.419379, + 43.556706 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.443726, + 43.528782 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.453065, + 43.529819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.453065, + 43.529819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387851, + 43.50363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387851, + 43.50363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.419379, + 43.556706 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.450732, + 43.524099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.422441, + 43.580561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.450732, + 43.524099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.419438, + 43.536986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.419438, + 43.536986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.418336, + 43.484952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.418336, + 43.484952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.449734, + 43.519155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.443726, + 43.528782 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.420083, + 43.522361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.420083, + 43.522361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.460704, + 43.526456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.460704, + 43.526456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.438274, + 43.509298 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.438274, + 43.509298 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.459641, + 43.556239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.459641, + 43.556239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.435907, + 43.515683 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.435907, + 43.515683 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.347074, + 43.485668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.347074, + 43.485668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.488317, + 43.357858 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.488317, + 43.357858 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.483673, + 43.336789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.483673, + 43.336789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.449734, + 43.519155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.422441, + 43.580561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.992965, + 43.50076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.755862, + 43.788423 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.870647, + 43.691626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.870647, + 43.691626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80578, + 43.721516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80578, + 43.721516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.805189, + 43.722592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.805189, + 43.722592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.709475, + 43.724666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.461132, + 43.534036 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.709475, + 43.724666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94716, + 43.761237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94716, + 43.761237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.948532, + 43.706298 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.948532, + 43.706298 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39792, + 43.295949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.782551, + 43.719317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.782551, + 43.719317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.726419, + 43.781708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.726419, + 43.781708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834699, + 43.788743 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834699, + 43.788743 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.829994, + 43.790756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.829994, + 43.790756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.831202, + 43.786244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.831202, + 43.786244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.829711, + 43.792941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.829711, + 43.792941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "241300375", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431899, + 43.524809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431899, + 43.524809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.354437, + 43.491323 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.354437, + 43.491323 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.461132, + 43.534036 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.468472, + 43.334722 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.468472, + 43.334722 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1569112, + 43.704091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.193556, + 43.356012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44866, + 43.450954 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44866, + 43.450954 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.944231, + 43.454421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.944231, + 43.454421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.026815, + 43.69299 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.026815, + 43.69299 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.193556, + 43.356012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1569112, + 43.704091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.353442, + 43.571542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.353442, + 43.571542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.700573, + 43.274927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.700573, + 43.274927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071913, + 43.565413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.071913, + 43.565413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.47019, + 43.451656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.47019, + 43.451656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.464812, + 43.434866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.464812, + 43.434866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.474463, + 43.4563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.474463, + 43.4563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.627451, + 43.293444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.627451, + 43.293444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23536, + 43.39324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23536, + 43.39324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.063095, + 43.605489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.063095, + 43.605489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.995847, + 43.499057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.995847, + 43.499057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.995847, + 43.499057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.995847, + 43.499057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.992965, + 43.50076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.162934, + 43.382782 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.162934, + 43.382782 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.246711, + 43.719609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.168224, + 43.472999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.545049, + 43.284336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.545049, + 43.284336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57308, + 43.288849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57308, + 43.288849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56348, + 43.29134 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56348, + 43.29134 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.603132, + 43.287061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.603132, + 43.287061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.632679, + 43.368648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.632679, + 43.368648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.156308, + 43.663796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.156308, + 43.663796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.168563, + 43.477008 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.168563, + 43.477008 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.168224, + 43.472999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.246711, + 43.719609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423155, + 43.44122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.423155, + 43.44122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41303, + 43.459768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41303, + 43.459768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.352806, + 43.459944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.352806, + 43.459944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.566859, + 43.255951 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.566859, + 43.255951 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.151676, + 43.33248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.151676, + 43.33248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.536259, + 43.218608 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.536259, + 43.218608 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.624754, + 43.210398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.624754, + 43.210398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39792, + 43.295949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41021, + 43.33595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.388323, + 43.284704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395063, + 43.266244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057812, + 43.40283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057812, + 43.40283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.053184, + 43.339068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.053184, + 43.339068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39766, + 43.24166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39766, + 43.24166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.395063, + 43.266244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.363658, + 43.333326 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.351102, + 43.286276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.351102, + 43.286276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.366079, + 43.290685 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.366079, + 43.290685 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.373858, + 43.29145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.373858, + 43.29145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.50502, + 43.417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.50502, + 43.417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.639103, + 43.447876 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.639103, + 43.447876 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57785, + 43.38458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57785, + 43.38458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.227451, + 43.487976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.227451, + 43.487976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62431, + 43.4809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62431, + 43.4809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.03184, + 43.54726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.03184, + 43.54726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.040562, + 43.550837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.040562, + 43.550837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.403016, + 43.680347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.403016, + 43.680347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404101, + 43.679402 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.363658, + 43.333326 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.360216, + 43.341629 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988923, + 43.516083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986984, + 43.504714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9899, + 43.51302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9899, + 43.51302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.994777, + 43.502734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.994777, + 43.502734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986984, + 43.504714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986984, + 43.504714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986984, + 43.504714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.360216, + 43.341629 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986984, + 43.504714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986984, + 43.504714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988923, + 43.516083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988923, + 43.516083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988923, + 43.516083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988923, + 43.516083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.636482, + 43.635899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.636482, + 43.635899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.435216, + 43.663894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.435216, + 43.663894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035, + 43.36924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25035, + 43.36924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.416769, + 43.279139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.416769, + 43.279139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.439112, + 43.290268 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.439112, + 43.290268 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.49404, + 43.30195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.49404, + 43.30195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417336, + 43.304228 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.417336, + 43.304228 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41021, + 43.33595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.393556, + 43.330417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.393556, + 43.330417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404101, + 43.679402 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.076277, + 43.746832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.076277, + 43.746832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00374, + 43.608018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.998991, + 43.809447 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.903217, + 43.87559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.903217, + 43.87559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.949075, + 43.807491 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.949075, + 43.807491 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00374, + 43.608018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.775139, + 43.850038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.388323, + 43.284704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.775139, + 43.850038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.841645, + 43.839761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.841645, + 43.839761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857174, + 43.883885 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.857174, + 43.883885 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852998, + 43.881935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.998991, + 43.809447 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.805896282196045, + 43.89907521461469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.805896282196045, + 43.89907521461469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.944956, + 43.834723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.944956, + 43.834723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.813026, + 43.638466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.813026, + 43.638466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.42714, + 43.457535 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.42714, + 43.457535 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.427083, + 43.457513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.427083, + 43.457513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.648661, + 43.859012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.648661, + 43.859012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.918112, + 43.839632 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.918112, + 43.839632 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.783836, + 43.832303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.783836, + 43.832303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852998, + 43.881935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.948373, + 43.860836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.948373, + 43.860836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.448569, + 43.345406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.257975, + 43.436392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53811, + 43.213528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53811, + 43.213528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53811, + 43.213528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53811, + 43.213528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53811, + 43.213528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53811, + 43.213528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62862, + 43.297151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.21803, + 43.416931 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.438303, + 43.231932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.438303, + 43.231932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.438303, + 43.231932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.438303, + 43.231932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.484191, + 43.285678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.448569, + 43.345406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.69093, + 43.863427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431385, + 43.344402 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431385, + 43.344402 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431385, + 43.344402 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.431385, + 43.344402 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.443135, + 43.297307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.443135, + 43.297307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.412199, + 43.245262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.412199, + 43.245262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62862, + 43.297151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.21803, + 43.416931 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.484191, + 43.285678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.754017, + 43.90181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.754017, + 43.90181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.69093, + 43.863427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988923, + 43.516083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.257975, + 43.436392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.990593, + 43.513977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.584868, + 43.645533 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.981837, + 43.404731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.981837, + 43.404731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.46472, + 43.347677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.46472, + 43.347677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.463668, + 43.343455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.463668, + 43.343455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.584868, + 43.645533 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.525681, + 43.40751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.152651, + 43.631195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.152651, + 43.631195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.003616, + 43.582842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.003616, + 43.582842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80192, + 43.389722 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80192, + 43.389722 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.673313, + 43.524756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.673313, + 43.524756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23283, + 43.48956 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23283, + 43.48956 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588032, + 43.248829 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588032, + 43.248829 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.604201, + 43.348577 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.604201, + 43.348577 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.299185, + 43.623065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.299185, + 43.623065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.030772, + 43.549935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.030772, + 43.549935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.011772, + 43.453829 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.011772, + 43.453829 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.710252, + 43.686469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.49543, + 43.473074 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.527233, + 43.637349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.527233, + 43.637349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.38785, + 43.27915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.990593, + 43.513977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.373637, + 43.287646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.373637, + 43.287646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.384417, + 43.288361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.384417, + 43.288361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356014, + 43.289968 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356014, + 43.289968 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.370056, + 43.286242 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.370056, + 43.286242 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.358481, + 43.291969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.358481, + 43.291969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381914, + 43.247392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381914, + 43.247392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.38785, + 43.27915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.390105, + 43.272778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.039669, + 43.329723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.390105, + 43.272778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.399622, + 43.24787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.399622, + 43.24787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.421871, + 43.253283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.421871, + 43.253283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404021, + 43.238356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404021, + 43.238356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409066, + 43.258666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409066, + 43.258666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056633, + 43.408601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056633, + 43.408601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.048822, + 43.406476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.048822, + 43.406476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.039669, + 43.329723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.710252, + 43.686469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.49543, + 43.473074 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.525681, + 43.40751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.933619, + 43.59184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.557972, + 43.452861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94352, + 43.42977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94352, + 43.42977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.939013, + 43.593007 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.939013, + 43.593007 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.933619, + 43.59184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253117, + 43.558456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25032, + 43.459262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253117, + 43.558456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.574552, + 43.292736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.574552, + 43.292736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.370653, + 43.490568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.370653, + 43.490568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.446349, + 43.519237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.223084, + 43.386888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.223084, + 43.386888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.540469, + 43.434712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.540469, + 43.434712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.955317, + 43.526777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.955317, + 43.526777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.987945, + 43.493681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.987945, + 43.493681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986419, + 43.51365 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986419, + 43.51365 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988791, + 43.507643 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988791, + 43.507643 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988791, + 43.507643 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.988791, + 43.507643 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.974134, + 43.494049 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24102, + 43.415533 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.974134, + 43.494049 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.446349, + 43.519237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.557972, + 43.452861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.107927, + 43.639222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.090649, + 43.635131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109004, + 43.332432 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.093004, + 43.638665 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.093004, + 43.638665 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.107927, + 43.639222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.099081, + 43.65232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.099081, + 43.65232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.090649, + 43.635131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.366413, + 43.398629 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056872, + 43.638515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056872, + 43.638515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.235656, + 43.420631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25032, + 43.459262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.235656, + 43.420631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24102, + 43.415533 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.366413, + 43.398629 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109004, + 43.332432 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.486176, + 43.600001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.255214, + 43.523198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.293237, + 43.54659 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.205005, + 43.689299 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.293237, + 43.54659 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.486176, + 43.600001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.436711, + 43.429731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.255214, + 43.523198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.598967, + 43.555415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.598967, + 43.555415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.688023, + 43.448682 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.688023, + 43.448682 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.436711, + 43.429731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.205005, + 43.689299 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-20:00", + "start_date": "2022-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-20:00", + "start_date": "2021-10-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-20:00", + "start_date": "2021-10-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-20:00", + "start_date": "2021-10-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-20:00", + "start_date": "2021-10-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-20:00", + "start_date": "2022-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-20:00", + "start_date": "2022-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-20:00", + "start_date": "2022-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-20:00", + "start_date": "2022-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-20:00", + "start_date": "2022-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-20:00", + "start_date": "2022-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-20:00", + "start_date": "2022-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.329331, + 43.49131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARGEPOLY", + "owner:ref:FR:SIREN": "850854993", + "email": "operator@chargepoly.com", + "phone": "0788984775", + "network": "CHARGEPOLY", + "ref": "ckuifu8qa0000jhpfd4kmpf72", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-20:00", + "start_date": "2021-10-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828324822319736, + 43.78639927025314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83, + 43.79 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "cpo@lumi-in.fr", + "phone": "04 82 79 82 82", + "network": "LUMI'IN", + "ref": "a0a9bb0e-4199-11ec-81d3-0242ac130003", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-09-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872427, + 45.001602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ONVAVTDPJC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.960062, + 45.530767 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IOJV93PGDX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.960062, + 45.530767 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IOJV93PGDX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.000266, + 45.499247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "L8FMQOSKS4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.000266, + 45.499247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "L8FMQOSKS4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.117952, + 45.458288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KQBUJVHM6Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.971748, + 45.545721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "C4QMLCCH2R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.873377, + 45.640928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OH9QA6KXPK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872427, + 45.001602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ONVAVTDPJC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.97910139, + 44.4428751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZZEIEVWEMC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.97910139, + 44.4428751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZZEIEVWEMC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.544305, + 45.173596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FDY5ILTA9I", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25441, + 45.759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ELRFKZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25441, + 45.759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ELRFKZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34407, + 45.3407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QNXYMD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.544305, + 45.173596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FDY5ILTA9I", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29093, + 45.4559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DNLKCM", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29093, + 45.4559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DNLKCM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.6381, + 44.7888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QP0YIL8IFI", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.6381, + 44.7888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QP0YIL8IFI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34407, + 45.3407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QNXYMD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24647, + 45.7252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GRPQDU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24647, + 45.7252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GRPQDU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.971748, + 45.545721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "C4QMLCCH2R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.737686, + 45.390089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JYPPQA0TJQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.752153, + 45.433729 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PGI7OZI3HX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630496, + 45.170753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AEOHHR2DTT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.30582, + 45.557352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TJJ9KFP8UM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.01665, + 45.6128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OE2C6C8Q1R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.01665, + 45.6128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OE2C6C8Q1R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.117952, + 45.458288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KQBUJVHM6Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.873377, + 45.640928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OH9QA6KXPK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41652, + 45.581692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GBOCPUKOTD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.737686, + 45.390089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JYPPQA0TJQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.752153, + 45.433729 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PGI7OZI3HX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.30582, + 45.557352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TJJ9KFP8UM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630496, + 45.170753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AEOHHR2DTT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41652, + 45.581692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GBOCPUKOTD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.95552, + 46.3171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "montmaraulth", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.95552, + 46.3171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "montmaraulth", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.97075, + 44.8031 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KAKUUL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.97075, + 44.8031 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KAKUUL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17089, + 45.2951 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JDWQT9CAE8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17089, + 45.2951 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JDWQT9CAE8", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.361105, + 43.490803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WLVMFDV1MU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.610836, + 43.2172196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "F0HLVDBZUM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.342794, + 43.390503 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MGSHTS9WRC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.613159, + 44.415394 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HD9NVGOEYE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.613159, + 44.415394 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HD9NVGOEYE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.304044, + 43.450901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RRK1AVPNIS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.644595, + 43.501255 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XXGOJ7R8NU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708931, + 43.181444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HBB3TYFJFW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.361105, + 43.490803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WLVMFDV1MU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.304044, + 43.450901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RRK1AVPNIS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17285285, + 45.29281583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IBSXDFRIST", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.13972955, + 44.35821959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LLIIIO2L613NJN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.13972955, + 44.35821959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LLIIIO2L613NJN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17285285, + 45.29281583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IBSXDFRIST", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.357859, + 45.852431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VEVO6DOUKL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.357859, + 45.852431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VEVO6DOUKL", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23269785, + 45.62297234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NLEDVFEXF7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23269785, + 45.62297234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NLEDVFEXF7", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.610836, + 43.2172196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "F0HLVDBZUM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.342794, + 43.390503 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MGSHTS9WRC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.644595, + 43.501255 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XXGOJ7R8NU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.943407, + 43.1085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "C4DAJBRGSS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.952178, + 43.107303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PBVWLY88ID", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.943407, + 43.1085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "C4DAJBRGSS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708931, + 43.181444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HBB3TYFJFW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9324, + 43.1306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ICPTZYI5F3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9324, + 43.1306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ICPTZYI5F3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.952178, + 43.107303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PBVWLY88ID", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1677001, + 45.4980481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KODGS1EZY2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.164, + 45.97767 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BH9RGRYWWL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.164, + 45.97767 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BH9RGRYWWL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5491808, + 46.0568649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "B92IX0BMR1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.925942, + 46.051708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GZW7760W41", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.925942, + 46.051708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GZW7760W41", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1677001, + 45.4980481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KODGS1EZY2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1377729, + 46.1421246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GA7MONBEKP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1377729, + 46.1421246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GA7MONBEKP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.5491808, + 46.0568649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "B92IX0BMR1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.613454, + 45.527692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42186AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.613454, + 45.527692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42186AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401687, + 45.45052 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401687, + 45.45052 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0949882021896373, + 46.13314849171384 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "ETOTEM Aytré", + "ref": "FRG10P17028A", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0949882021896373, + 46.13314849171384 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "ETOTEM Aytré", + "ref": "FRG10P17028A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0949882021896373, + 46.13314849171384 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "ETOTEM Aytré", + "ref": "FRG10P17028A", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.154298, + 46.162964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "VILLE DE LA ROCHELLE - PLACE VERDUN", + "ref": "FRG10P17300A", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.154298, + 46.162964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "VILLE DE LA ROCHELLE - PLACE VERDUN", + "ref": "FRG10P17300A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14858, + 46.1598 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "VILLE DE LA ROCHELLE - PLACE JB MARCET", + "ref": "FRG10P17300B", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14858, + 46.1598 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "VILLE DE LA ROCHELLE - PLACE JB MARCET", + "ref": "FRG10P17300B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15676, + 46.15701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "VILLE DE LA ROCHELLE - PARKING PREFECTURE", + "ref": "FRG10P17300D", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15676, + 46.15701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "VILLE DE LA ROCHELLE - PARKING PREFECTURE", + "ref": "FRG10P17300D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.151072, + 46.16634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "VILLE DE LA ROCHELLE - PARKING CHASSELOUP LAUBAT", + "ref": "FRG10P17300C", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.151072, + 46.16634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "VILLE DE LA ROCHELLE - PARKING CHASSELOUP LAUBAT", + "ref": "FRG10P17300C", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1924, + 48.868154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1924, + 48.868154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1924, + 48.868154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1924, + 48.868154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202896, + 48.871499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202896, + 48.871499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202896, + 48.871499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202896, + 48.871499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202896, + 48.871499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202896, + 48.871499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.180334, + 48.880227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.180334, + 48.880227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.180334, + 48.880227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.180334, + 48.880227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.180334, + 48.880227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.180334, + 48.880227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.180334, + 48.880227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54646, + 48.910391 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54646, + 48.910391 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54646, + 48.910391 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54646, + 48.910391 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596527, + 48.8142151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596527, + 48.8142151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596527, + 48.8142151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596527, + 48.8142151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596527, + 48.8142151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596527, + 48.8142151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4596527, + 48.8142151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466818, + 48.816785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P94340*JVL*PLACE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466818, + 48.816785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P94340*JVL*PLACE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466818, + 48.816785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P94340*JVL*PLACE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466818, + 48.816785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P94340*JVL*PLACE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466818, + 48.816785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P94340*JVL*PLACE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466818, + 48.816785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P94340*JVL*PLACE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5217, + 43.5468 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P13100*SMJ*MA1R1E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18412, + 48.84965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*4VENTS", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18412, + 48.84965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*4VENTS", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18412, + 48.84965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*4VENTS", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18412, + 48.84965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*4VENTS", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.200763, + 48.849002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*JAUNE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.200763, + 48.849002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*JAUNE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.200763, + 48.849002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*JAUNE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5217, + 43.5468 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P13100*SMJ*MA1R1E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5217, + 43.5468 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P13100*SMJ*MA1R1E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48649, + 46.24693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P17880*PER*PHARE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48649, + 46.24693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P17880*PER*PHARE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48649, + 46.24693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P17880*PER*PHARE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48649, + 46.24693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P17880*PER*PHARE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5217, + 43.5468 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P13100*SMJ*MA1R1E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603186, + 45.612292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*PBP*17800*LEGER0UEST", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603186, + 45.612292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*PBP*17800*LEGER0UEST", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603186, + 45.612292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*PBP*17800*LEGER0UEST", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.294772, + 43.535968 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P13122*VTB*PLATEAU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.302399, + 43.538529 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P13122*VTB*EC0LE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.302399, + 43.538529 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P13122*VTB*EC0LE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7537332, + 46.5169739 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7537332, + 46.5169739 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7537332, + 46.5169739 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7537332, + 46.5169739 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7537332, + 46.5169739 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7537332, + 46.5169739 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06249, + 46.79406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.06249, + 46.79406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05713, + 49.35398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LMAJAU9VM3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-15", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05713, + 49.35398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LMAJAU9VM3", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.538061, + 49.286358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BCNP9TW96E", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.538061, + 49.286358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BCNP9TW96E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457717, + 49.334377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RTTMEX22VQ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05713, + 49.35398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LMAJAU9VM3", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.376339, + 49.29459 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "N46VHJDQAK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457717, + 49.334377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RTTMEX22VQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045529, + 48.972824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "J9E72TSRLI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045529, + 48.972824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "J9E72TSRLI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.913899, + 48.872356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "YTDEL15IL4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.913899, + 48.872356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "YTDEL15IL4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.856212, + 49.129959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RFATER8YU3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130306, + 49.381893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JVJN0XRMBD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.098968, + 49.287991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "HUK16Y2VIO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130306, + 49.381893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JVJN0XRMBD", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130294, + 49.381866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "IHJ5AEHHQC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130294, + 49.381866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "IHJ5AEHHQC", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.138757, + 49.402374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "UEPCJ1ONBV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.138757, + 49.402374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "UEPCJ1ONBV", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.101527, + 49.121693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "IGM47RQUIV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.101527, + 49.121693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "IGM47RQUIV", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.263063, + 49.192703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WOGY4YK72D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.263063, + 49.192703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WOGY4YK72D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.266243, + 49.177143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "FH2Y5F6VYX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.266243, + 49.177143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "FH2Y5F6VYX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.098968, + 49.287991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "HUK16Y2VIO", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332007, + 49.155018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BENXV427ED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.856212, + 49.129959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RFATER8YU3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.806385, + 49.090714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "Z7TCFV54RM", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332007, + 49.155018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BENXV427ED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.283343, + 49.292938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "H1P1PYTVJZ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045078, + 49.230087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TJTE9E9IPY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44147, + 49.185043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "YBCAAXHFBE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44147, + 49.185043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "YBCAAXHFBE", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.806385, + 49.090714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "Z7TCFV54RM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.007925, + 48.792999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WDC8V4ORJE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.007925, + 48.792999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WDC8V4ORJE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48176, + 48.917553 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VIVCM51QGG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48176, + 48.917553 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VIVCM51QGG", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424286, + 49.085377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "DZWIKE3NEN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424286, + 49.085377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "DZWIKE3NEN", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.840685, + 49.359657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "REGMVHBLYO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.840685, + 49.359657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "REGMVHBLYO", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.283343, + 49.292938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "H1P1PYTVJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.296286, + 49.204266 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MNJRPSZUVR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212054, + 49.2001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "PPAT8F1AHP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.296286, + 49.204266 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MNJRPSZUVR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30948, + 49.18362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "AVHMBVDDEL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30948, + 49.18362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "AVHMBVDDEL", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.308223, + 49.18866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "XZV5YXNZQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.308223, + 49.18866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "XZV5YXNZQK", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.554104, + 48.844807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "YEVQXYXMMI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.554104, + 48.844807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "YEVQXYXMMI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303376, + 49.171944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JIQBOVFEMZ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303376, + 49.171944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JIQBOVFEMZ", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303376, + 49.171944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JIQBOVFEMZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.553656, + 48.850952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "IS3DWADVWS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.553656, + 48.850952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "IS3DWADVWS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212054, + 49.2001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "PPAT8F1AHP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.376339, + 49.29459 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "N46VHJDQAK", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332626, + 49.202087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "G1IUADBW5Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-07-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.045078, + 49.230087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TJTE9E9IPY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.288273, + 49.149944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NZAMOLTFQS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.458241, + 49.276985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CPSHDAIWXX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.104626, + 48.823738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VFSQFDC7FS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.104626, + 48.823738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VFSQFDC7FS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.276981, + 49.124573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BKLEA4YHK3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.276981, + 49.124573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BKLEA4YHK3", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303596, + 49.034939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CLLQAPXJGQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303596, + 49.034939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CLLQAPXJGQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.268632, + 49.014362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "XMBUXALML9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.268632, + 49.014362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "XMBUXALML9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.526418, + 49.135658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "X48FPHUJQU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.526418, + 49.135658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "X48FPHUJQU", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041252, + 49.387611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "C7MVLEKOXT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041252, + 49.387611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "C7MVLEKOXT", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.288273, + 49.149944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NZAMOLTFQS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.452932, + 49.274509 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "DATGNHU3DP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30163, + 49.2966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WNPDHQMXEF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.30163, + 49.2966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WNPDHQMXEF", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.313085, + 49.286636 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "C8PSNTNXXV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.313085, + 49.286636 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "C8PSNTNXXV", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342878, + 49.213123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VK9H0DVFDH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342878, + 49.213123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VK9H0DVFDH", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924642, + 48.889202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "OIXFQFMHLO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.332626, + 49.202087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "G1IUADBW5Q", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-07-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345371, + 49.2024 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EO8WQHNMPB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-07-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345371, + 49.2024 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EO8WQHNMPB", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-07-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.237649, + 49.418694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ZUGT4ZAI25", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-05-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.237649, + 49.418694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ZUGT4ZAI25", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-05-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07457, + 49.30206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "AU5QM7JWO3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.458241, + 49.276985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CPSHDAIWXX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.452932, + 49.274509 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "DATGNHU3DP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.042063, + 49.232769 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WZVO2GVYMJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.201822, + 48.892605 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LNBVCEOPZC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.042063, + 49.232769 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WZVO2GVYMJ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677874, + 49.220016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LHXITWLNL8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.677874, + 49.220016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LHXITWLNL8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37422, + 49.220695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GQX8TOZGDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.37422, + 49.220695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GQX8TOZGDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.203363, + 49.383171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "A3XTEFNVP7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.203363, + 49.383171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "A3XTEFNVP7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.206739, + 49.391857 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "SHNTRB88GR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.206739, + 49.391857 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "SHNTRB88GR", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502256, + 49.098824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QVMV4MMGBF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502256, + 49.098824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QVMV4MMGBF", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.504844, + 49.101223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JRO5XUKNVX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.504844, + 49.101223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JRO5XUKNVX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.201822, + 48.892605 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LNBVCEOPZC", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457769, + 49.142525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QADLCK0CXV", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207155, + 48.908218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "E7G17KGQS8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207155, + 48.908218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "E7G17KGQS8", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.200854, + 48.895374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "FJDPVYD3VM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.200854, + 48.895374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "FJDPVYD3VM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.196851, + 48.896561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GXNIEP4LJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.196851, + 48.896561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GXNIEP4LJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.403748, + 49.113762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "APLE3YWA6J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.403748, + 49.113762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "APLE3YWA6J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.220548, + 49.251003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JCXRAXISUD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.220548, + 49.251003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JCXRAXISUD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371682, + 49.152481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LUSPLHMJTM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371682, + 49.152481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LUSPLHMJTM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.457769, + 49.142525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QADLCK0CXV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924642, + 48.889202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "OIXFQFMHLO", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.116762, + 49.28772 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "AGX3GVGGGP", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.046794, + 49.149574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "J2CAXWCJQ2", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298162, + 49.228291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "D9MFWXE3BX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.432045, + 49.290691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QNVE1QVN1M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.432045, + 49.290691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QNVE1QVN1M", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.418581, + 49.334774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "FN2ROX2AOD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.418581, + 49.334774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "FN2ROX2AOD", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.047522, + 49.187656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "SYA3HIFJSJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.047522, + 49.187656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "SYA3HIFJSJ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.327253, + 49.24025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VUHVSPUVEE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.327253, + 49.24025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VUHVSPUVEE", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42327, + 49.164383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "HKI3EEJ2VG", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42327, + 49.164383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "HKI3EEJ2VG", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42327, + 49.164383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "HKI3EEJ2VG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303067, + 49.226357 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NU7TML0PLL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303067, + 49.226357 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NU7TML0PLL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298162, + 49.228291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "D9MFWXE3BX", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.514652, + 49.212273 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "W3FDKK3Y4Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11563, + 49.29363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "XZTAT4QNOV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11563, + 49.29363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "XZTAT4QNOV", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.11563, + 49.29363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "XZTAT4QNOV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-30", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.273392, + 49.245373 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JDWZ4GKGLJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.273392, + 49.245373 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JDWZ4GKGLJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.027659, + 49.33881 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BM0HFP9CGY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.027659, + 49.33881 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BM0HFP9CGY", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83958454, + 49.20576297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JXVJI1COJF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83958454, + 49.20576297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JXVJI1COJF", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83958454, + 49.20576297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JXVJI1COJF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.079897, + 49.204884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MSSZCNYGB6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.079897, + 49.204884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MSSZCNYGB6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339124, + 49.27467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "PGOVR7LE8Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.275651, + 49.24791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "YDK2B0ERXB", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.275651, + 49.24791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "YDK2B0ERXB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207299, + 49.124958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TYPWUQ7IGF", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.207299, + 49.124958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TYPWUQ7IGF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.151468, + 49.10059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QQ9ULMFY9S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.151468, + 49.10059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QQ9ULMFY9S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.439307, + 49.08564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "K9DQ5BOGXT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.439307, + 49.08564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "K9DQ5BOGXT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.406258, + 49.265347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "AWSCCFXPIZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.406258, + 49.265347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "AWSCCFXPIZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.059013, + 49.252686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RM3XAKQMTG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.059013, + 49.252686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RM3XAKQMTG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03761395, + 49.01914912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ZZNFVRZSHY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03761395, + 49.01914912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ZZNFVRZSHY", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03761395, + 49.01914912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ZZNFVRZSHY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-28", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.165716, + 49.127666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "J69U6QU8AD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.165716, + 49.127666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "J69U6QU8AD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.623846, + 49.338478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TL6QWRNSBJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.623846, + 49.338478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TL6QWRNSBJ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.029128, + 49.306469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GDUIKKNQ0H", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.029128, + 49.306469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GDUIKKNQ0H", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.633224, + 49.021641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RQ8FFLKBGH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.633224, + 49.021641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RQ8FFLKBGH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.834075, + 49.182762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CIQQYCDPTL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.834075, + 49.182762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CIQQYCDPTL", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.190402, + 49.23114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "KTAWLU4IZC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.190402, + 49.23114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "KTAWLU4IZC", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706692, + 49.270863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JLGGHEVQB8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-19", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706692, + 49.270863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JLGGHEVQB8", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707942, + 49.280796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ZABVAJT7UQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707942, + 49.280796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ZABVAJT7UQ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339124, + 49.27467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "PGOVR7LE8Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.514652, + 49.212273 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "W3FDKK3Y4Y", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.046794, + 49.149574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "J2CAXWCJQ2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366633, + 49.18668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CKEU2AXBPX", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365959, + 49.180958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JERHB0BEAB", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.347497, + 49.197529 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "L9PDURSKHV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.347497, + 49.197529 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "L9PDURSKHV", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612158, + 49.177962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JZIMSLSNZI", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612158, + 49.177962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JZIMSLSNZI", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612158, + 49.177962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JZIMSLSNZI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355559, + 49.184055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ANOW48R3FC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355559, + 49.184055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ANOW48R3FC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371259, + 49.180359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "XOUSTRWIIJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.371259, + 49.180359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "XOUSTRWIIJ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34267, + 49.160675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "G4DK6RTQ3D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34267, + 49.160675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "G4DK6RTQ3D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366633, + 49.18668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CKEU2AXBPX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.348103, + 49.178352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "FLQCEIECNA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512477, + 49.203705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GI08L1LAZG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.348103, + 49.178352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "FLQCEIECNA", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365122, + 49.199177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RJ5B3FAJRM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365122, + 49.199177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RJ5B3FAJRM", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380302, + 49.204082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "DELR9H5LME", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380302, + 49.204082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "DELR9H5LME", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360357, + 49.187054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TTGYEWCD4D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360357, + 49.187054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TTGYEWCD4D", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.254735, + 49.146415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MEUKZBWL9R", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.254735, + 49.146415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MEUKZBWL9R", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.767352, + 49.066422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "Y6SL8CGLG1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.767352, + 49.066422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "Y6SL8CGLG1", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.761437, + 49.158428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WDURE5OIIU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.761437, + 49.158428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WDURE5OIIU", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.365959, + 49.180958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JERHB0BEAB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359741, + 49.203658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ATTXYEMZSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359741, + 49.203658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ATTXYEMZSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360565, + 49.161114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "KPSZKEMHNF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512477, + 49.203705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GI08L1LAZG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.326488, + 49.044224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "T6CP8IZJCW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.326488, + 49.044224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "T6CP8IZJCW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.417781, + 49.16581 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BJLVQM5TAS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.417781, + 49.16581 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BJLVQM5TAS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.116762, + 49.28772 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "AGX3GVGGGP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.316764, + 49.127815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CSMXC6RE5P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355928, + 49.180374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "XLR3DJICQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355928, + 49.180374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "XLR3DJICQY", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369844, + 49.176125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BXFKK77EJT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369844, + 49.176125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BXFKK77EJT", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.401482, + 49.175629 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BJGJFYAMMJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.401482, + 49.175629 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BJGJFYAMMJ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34179, + 49.190582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "PISAGDEROT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.34179, + 49.190582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "PISAGDEROT", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396299, + 49.191658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "KARW5YQ2G0", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.346506, + 49.183704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EYSLWKWYZR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.346506, + 49.183704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EYSLWKWYZR", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.346611, + 49.181694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "R8RWH8HXZS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.346611, + 49.181694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "R8RWH8HXZS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.402715, + 49.182137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NPPA9S0IZH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.402715, + 49.182137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NPPA9S0IZH", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.364503, + 49.184155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "SAKCOZYZCV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.364503, + 49.184155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "SAKCOZYZCV", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380138, + 49.199852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "A1BDJHEJBW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380138, + 49.199852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "A1BDJHEJBW", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.360565, + 49.161114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "KPSZKEMHNF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07457, + 49.30206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "AU5QM7JWO3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396299, + 49.191658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "KARW5YQ2G0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.316764, + 49.127815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CSMXC6RE5P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576396, + 48.920029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "DI3I8QNHXO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303315, + 49.000648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CTQR1SV2HQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.303315, + 49.000648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CTQR1SV2HQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.977295, + 48.825451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EZYDLQMDET", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.977295, + 48.825451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EZYDLQMDET", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497137, + 49.180573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VVKHTT0N8X", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497137, + 49.180573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VVKHTT0N8X", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707928, + 49.283667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EP02VR6FM7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707928, + 49.283667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EP02VR6FM7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.845168, + 49.011806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TPQYPCO3UW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.845168, + 49.011806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TPQYPCO3UW", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.673939, + 49.266899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "AEY2CFNUTF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.673939, + 49.266899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "AEY2CFNUTF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576396, + 48.920029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "DI3I8QNHXO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030718, + 49.02076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "OUXSBPXK6V", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.606036, + 48.857273 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "KIWGD0YPCW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.028522, + 49.016411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EZNQHP1WWZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.028522, + 49.016411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EZNQHP1WWZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038759, + 48.832748 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "HHQQUNK71G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038759, + 48.832748 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "HHQQUNK71G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048561, + 48.840977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "UTPIDLSOX7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.048561, + 48.840977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "UTPIDLSOX7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21517, + 49.057525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MACRGC0HBC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.21517, + 49.057525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MACRGC0HBC", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8074, + 49.347195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "KMIYT7TETI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8074, + 49.347195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "KMIYT7TETI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.750126, + 49.240765 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "E2RRBXWBWF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.750126, + 49.240765 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "E2RRBXWBWF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212339, + 49.299999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "L1KGSJOGST", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.606036, + 48.857273 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "KIWGD0YPCW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718632, + 49.27946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BSWUMHG7ZY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.220241, + 49.178085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ZUIJICJJYI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.297287, + 49.053543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EIKF1QJBPH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.649742, + 49.292091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "Z454AWT7LX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298521, + 49.073658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RTYRGHNJ1K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298521, + 49.073658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RTYRGHNJ1K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09212, + 49.338612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "W0OVAVEOX2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-06-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.09212, + 49.338612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "W0OVAVEOX2", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-06-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391624, + 49.327827 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "DTBNNOB9WY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.391624, + 49.327827 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "DTBNNOB9WY", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.281319, + 49.262711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WX6KIL9ED5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.281319, + 49.262711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WX6KIL9ED5", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.395594, + 49.332512 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "KTL39IK8IX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.395594, + 49.332512 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "KTL39IK8IX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269729, + 49.317024 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "IVMBTJCG7K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269729, + 49.317024 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "IVMBTJCG7K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.297287, + 49.053543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EIKF1QJBPH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718632, + 49.27946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BSWUMHG7ZY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.202366, + 49.137093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QEINKRD3YH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.202366, + 49.137093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QEINKRD3YH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.207578, + 49.136806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MTZJ9GHEC9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.207578, + 49.136806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MTZJ9GHEC9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568107, + 49.277843 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VYHQHHZGSX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568107, + 49.277843 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VYHQHHZGSX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.185999, + 49.348248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EUQ9MLUPEK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.185999, + 49.348248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EUQ9MLUPEK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00949802, + 49.141176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CBX7KUYBYW", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00949802, + 49.141176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CBX7KUYBYW", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.00949802, + 49.141176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CBX7KUYBYW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.900723, + 48.800545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "INJBEBIMWZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.900723, + 48.800545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "INJBEBIMWZ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.212339, + 49.299999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "L1KGSJOGST", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44972, + 49.258343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GVMAEKKID2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44972, + 49.258343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GVMAEKKID2", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8849, + 48.84539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NUVRR1EADB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.854415, + 48.840118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "S3XSSU87WY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.516991, + 49.343346 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VAT5RXQZXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.516991, + 49.343346 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VAT5RXQZXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.450656, + 49.1567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MDE2V8GM3H", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.450656, + 49.1567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MDE2V8GM3H", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.904563, + 49.374043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "HS5GOHL3FX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.904563, + 49.374043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "HS5GOHL3FX", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.657508, + 49.07996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "Y6V0AW4AW2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.657508, + 49.07996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "Y6V0AW4AW2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.126629, + 49.399658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LWXGXZ6NVG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.126629, + 49.399658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LWXGXZ6NVG", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566371, + 49.290745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GWNCBEVKLC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566371, + 49.290745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GWNCBEVKLC", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8849, + 48.84539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NUVRR1EADB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478406, + 48.9856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "M5E6SNDFBJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.888584, + 48.84039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GLD9JG2RUT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.888584, + 48.84039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GLD9JG2RUT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.882365, + 48.849442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "X76ERWSQBX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.882365, + 48.849442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "X76ERWSQBX", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.890959, + 48.840595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CPTGDV5IRH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-05-14", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.890959, + 48.840595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CPTGDV5IRH", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.901956, + 48.844872 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RHIZSXG2KA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.901956, + 48.844872 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RHIZSXG2KA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.885866, + 48.837307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "FZE0IT59TV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.885866, + 48.837307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "FZE0IT59TV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.651174, + 49.080152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CPFJ1PSP4H", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-04", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.651174, + 49.080152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CPFJ1PSP4H", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.350859, + 49.150547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "G7U2LCCD4Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.854415, + 48.840118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "S3XSSU87WY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.672848, + 48.853397 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WRQX6K3RY5", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.672848, + 48.853397 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WRQX6K3RY5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.292248, + 49.024796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "UTD4TMRIWV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478406, + 48.9856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "M5E6SNDFBJ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.472951, + 48.986382 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "PFMKY61J2Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.472951, + 48.986382 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "PFMKY61J2Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.481821, + 48.989704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WIO5B4HAFQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.481821, + 48.989704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "WIO5B4HAFQ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624253, + 49.176746 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LA2MHNO1J0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624253, + 49.176746 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LA2MHNO1J0", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.103004, + 49.34425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GNV9UFSQLR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.103004, + 49.34425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GNV9UFSQLR", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.905397, + 49.308865 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MEXJIN27J7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.905397, + 49.308865 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MEXJIN27J7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.902956, + 49.3088 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "V4TIQY3EGA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.902956, + 49.3088 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "V4TIQY3EGA", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08856957, + 49.01214577 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "V8ZXCF8KLK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08856957, + 49.01214577 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "V8ZXCF8KLK", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.08856957, + 49.01214577 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "V8ZXCF8KLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.477086, + 49.049606 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "IZJM7OHIWO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.477086, + 49.049606 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "IZJM7OHIWO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.080297, + 49.36565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "IHLSGMESO6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.080297, + 49.36565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "IHLSGMESO6", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05630619, + 49.25483875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "B5J7TXK8V7", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05630619, + 49.25483875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "B5J7TXK8V7", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.05630619, + 49.25483875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "B5J7TXK8V7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.493794, + 49.077198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TRYMDJ3CBV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.493794, + 49.077198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TRYMDJ3CBV", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.493794, + 49.077198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TRYMDJ3CBV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.292248, + 49.024796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "UTD4TMRIWV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.649742, + 49.292091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "Z454AWT7LX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030718, + 49.02076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "OUXSBPXK6V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.220241, + 49.178085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ZUIJICJJYI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.268813, + 49.146912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NNOGALD1MD", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.830717, + 48.965939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TKVDATEIGS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.830717, + 48.965939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TKVDATEIGS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.789644, + 49.219543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RLM6CEWDCK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.789644, + 49.219543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RLM6CEWDCK", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.314508, + 49.302155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QRFJYJHILI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.314508, + 49.302155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QRFJYJHILI", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "YGKZQ5NRRM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "YGKZQ5NRRM", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TUU49NLCLV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TUU49NLCLV", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JJ44TQLKVR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.229788, + 49.138123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JJ44TQLKVR", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.268813, + 49.146912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NNOGALD1MD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.221156, + 49.143112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ZJXRR5YPFP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.869728, + 49.242004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CTHD3M2P9Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.221156, + 49.143112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ZJXRR5YPFP", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15161, + 49.005394 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TDEMGY1AN7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15161, + 49.005394 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TDEMGY1AN7", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80973, + 48.929178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LSL7IGJCKA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80973, + 48.929178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LSL7IGJCKA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.80973, + 48.929178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LSL7IGJCKA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149838, + 49.004524 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "HYNZH5Z54R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149838, + 49.004524 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "HYNZH5Z54R", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.765131, + 49.108475 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LXEN3QKGGW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.765131, + 49.108475 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LXEN3QKGGW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.399309, + 49.160816 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "Q8JNTUN4KO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.399309, + 49.160816 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "Q8JNTUN4KO", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.351417, + 49.318889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "Q7EG4SVFR8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.869728, + 49.242004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "CTHD3M2P9Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.545198, + 49.195198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LJYDD69MZG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-11-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422221, + 49.128597 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RJC5UJDFHM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.838209, + 48.83251 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "O0GXWLZLG0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.350859, + 49.150547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "G7U2LCCD4Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.349523, + 49.137749 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LJ98RD5Z2B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.349523, + 49.137749 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LJ98RD5Z2B", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355094, + 49.140018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NWNXQPH8TD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.355094, + 49.140018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NWNXQPH8TD", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.101562, + 49.320122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NBKCJUXTTW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-02-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.101562, + 49.320122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NBKCJUXTTW", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-02-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.079796, + 48.975983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MQRZ3VP5TF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.079796, + 48.975983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MQRZ3VP5TF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.739149, + 49.02071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "KWSB5QN7ZK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.739149, + 49.02071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "KWSB5QN7ZK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753121, + 49.002502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "S0QPPXPGJG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753121, + 49.002502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "S0QPPXPGJG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35496471, + 49.32043809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "UX6T6V86EB", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.545198, + 49.195198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "LJYDD69MZG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-11-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35496471, + 49.32043809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "UX6T6V86EB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.883248, + 48.893047 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "OIGASENV23", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.883248, + 48.893047 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "OIGASENV23", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269149, + 49.408573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "E4PPW00CLV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.269149, + 49.408573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "E4PPW00CLV", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.419354, + 49.024189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "H9D6ILYVTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.419354, + 49.024189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "H9D6ILYVTS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369945, + 49.325378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "L7FSMQ3K4U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369945, + 49.325378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "L7FSMQ3K4U", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.84048, + 48.937435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QM29QD00GP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.84048, + 48.937435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QM29QD00GP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29001, + 49.108196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GH4NB90TR9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.29001, + 49.108196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GH4NB90TR9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.351417, + 49.318889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "Q7EG4SVFR8", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35496471, + 49.32043809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "UX6T6V86EB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.422221, + 49.128597 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RJC5UJDFHM", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197402, + 49.287834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JX4EPALWZ9", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.224748, + 49.182022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "OW2ZNJNSGE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.224748, + 49.182022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "OW2ZNJNSGE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.257186, + 49.277668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "SWIRJOHWIU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.257186, + 49.277668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "SWIRJOHWIU", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.258216, + 49.288376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ULAU7GGFK3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.258216, + 49.288376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ULAU7GGFK3", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.250781, + 49.278812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RKAVXVKURO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.250781, + 49.278812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RKAVXVKURO", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.411662, + 48.872952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EKPWNBEKEL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.411662, + 48.872952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EKPWNBEKEL", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.186472, + 49.285782 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VRSXXFSM8G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.186472, + 49.285782 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VRSXXFSM8G", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.197402, + 49.287834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "JX4EPALWZ9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753076, + 49.34211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ES3CPUZTN9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405064, + 49.020981 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "Q7PXNU5TGT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753076, + 49.34211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "ES3CPUZTN9", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51847393, + 48.86885129 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "O5K3TST9TA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51847393, + 48.86885129 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "O5K3TST9TA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51847393, + 48.86885129 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "O5K3TST9TA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.242004, + 48.96925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RH6ES7OMSP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.259154, + 49.23476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GHMUTKEBFR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.259154, + 49.23476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GHMUTKEBFR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.471729, + 49.199406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BKNQO1ST1J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.471729, + 49.199406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "BKNQO1ST1J", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.476986, + 49.205502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VRHCX96IT0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.476986, + 49.205502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "VRHCX96IT0", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.838209, + 48.83251 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "O0GXWLZLG0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371768, + 49.138321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "UW8EXZVJSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-11-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405064, + 49.020981 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "Q7PXNU5TGT", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.242004, + 48.96925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "RH6ES7OMSP", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-09-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405121, + 49.023678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TTTLWP8ERC", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.768018, + 48.920078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "XJGG1BX1BV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.371768, + 49.138321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "UW8EXZVJSE", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-11-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.405121, + 49.023678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "TTTLWP8ERC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-04", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.373516, + 49.254955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QTJUNHZSQB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.373516, + 49.254955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QTJUNHZSQB", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20465, + 49.279522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "PMGS18OQBS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.082768, + 49.136223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EINYNUPISK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.082768, + 49.136223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "EINYNUPISK", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073146, + 49.071609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MNMLPFSE3R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073146, + 49.071609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MNMLPFSE3R", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.317765, + 49.178341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MRZST8CYGX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.317765, + 49.178341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "MRZST8CYGX", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.318416, + 49.172173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GTOZBG9FBP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.318416, + 49.172173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "GTOZBG9FBP", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.20465, + 49.279522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "PMGS18OQBS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.009537, + 49.14109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QETEMVQZCG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.357187, + 49.19585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "SRFJICA7UF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567159, + 49.121574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "X76NRT9OK4", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.009537, + 49.14109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QETEMVQZCG", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.242383, + 49.198738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NJAYNI3IS5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.242383, + 49.198738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "NJAYNI3IS5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.357187, + 49.19585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "SRFJICA7UF", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567159, + 49.121574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "X76NRT9OK4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.167836, + 49.116592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QE0UDZRZSN", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.167836, + 49.116592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "QE0UDZRZSN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073741, + 48.924759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "DKNJSCFR5M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.073741, + 48.924759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "DKNJSCFR5M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.768018, + 48.920078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200045938", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Mobisdec", + "ref": "XJGG1BX1BV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14543, + 43.5284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "XPUVZU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14543, + 43.5284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "XPUVZU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06589, + 43.2811 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "TWTEDH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06589, + 43.2811 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "TWTEDH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46728, + 43.7054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SSDAJP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46728, + 43.7054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SSDAJP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.728566, + 43.846939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref": "FR*SOD*S*WIIZ*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.728566, + 43.846939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref": "FR*SOD*S*WIIZ*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.274148, + 49.167886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE414900", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.222737, + 47.815173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE432500", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-06", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.542194, + 43.176909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE414700", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-10", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.334795, + 45.169865 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE432300", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-08", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240714, + 47.094675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE416100", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-10", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417075, + 46.751937 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE410100", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-29", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.417606, + 46.751623 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE431800", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-29", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.543044, + 43.178103 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE414800", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.277238, + 49.166932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE417100", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-18", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776985, + 47.475422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE423400", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-03", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.089269, + 43.21589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE438900", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-15", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.585323, + 50.826461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE431700", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-25", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.586605, + 44.369754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE459400", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.419905, + 49.062843 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE98", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.419905, + 49.062843 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE97", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.804458, + 49.321175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref": "FR*SOD*S*CUGN*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.804458, + 49.321175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref": "FR*SOD*S*CUGN*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.655137, + 48.497517 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref": "FR*SOD*S*CUGN*87*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.655137, + 48.497517 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref": "FR*SOD*S*CUGN*87*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1783557363561291, + 45.66573707254592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "352001069", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "I2b54Cy8vKqo9WEj", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3987681673214218, + 45.81890347412459 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "343865937", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "fi7vdCwDjFxo33hy", + "socket:typee": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4212213179604373, + 45.77393371624896 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211700729", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "xGfWIPAZlN7u8UJo", + "socket:typee": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8102565057215653, + 45.649438783139665 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211702329", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "0DVclECBKGtnYiS6", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7065045195933709, + 46.215996601383644 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "902039528", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "XyY44xK0AHa1J7UY", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1783557363561291, + 45.66573707254592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "352001069", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "I2b54Cy8vKqo9WEj", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6519199081168063, + 45.63648835730188 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211704416", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "vJFchjZUzBsZL49F", + "socket:typee": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.65387764005573, + 45.630872003921496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211704416", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "5qLx81vZcVOGEK2t", + "socket:typee": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62630408112066, + 45.747334026242 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "833922693", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "VAgkznsuvjrdxV0O", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5041785690753205, + 45.82190628951172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211701479", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "6mZpoAbF5sDDkgX3", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.275995989093295, + 45.911275008898585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "381032770", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "SH5hm2ErazrPtOSE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62630694441728, + 45.74751971845 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "833922693", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "VAgkznsuvjrdxV0O", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62625527113986, + 45.747376507523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "833922693", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "VAgkznsuvjrdxV0O", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2790864928722, + 45.913211767345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "520236522", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "cy4MFwyC09BkgYyU", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2774393191812, + 45.914137353729 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "520236522", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "lsMbBg9W69bdLlqE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6153411820000854, + 45.71501882195449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211701792", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "8c0GQLN1K6qkMWE1", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6153411820000854, + 45.71501882195449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211701792", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "8c0GQLN1K6qkMWE1", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5041850689776732, + 45.821925401611395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211701479", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "6mZpoAbF5sDDkgX3", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.300627496124425, + 45.90195661936574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "828245407", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "pfm6SBqsE3WmWTx8", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.300627496124425, + 45.90195661936574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "828245407", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "pfm6SBqsE3WmWTx8", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7085456582039972, + 45.766535193830144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211703368", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "fBNB5cBnAGB5nFxY", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5025035630102878, + 45.64778425286908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "e-nergyze", + "owner:ref:FR:SIREN": "211702428", + "email": "service.client@e-nergyze.com", + "phone": "186476800", + "network": "e-nergyze", + "ref": "4N63AAlnrEhcABRu", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8, + 43.71 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SCI Lounapiou", + "owner:ref:FR:SIREN": "844956771", + "email": "isa.pluta@orange.fr", + "phone": "0661485975", + "network": "SCI Lounapiou", + "ref": "8d950c44-4813-44df-bbf8-ecb35ffc2859", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-06-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2414326, + 43.4359393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM VITROLLES", + "ref": "30de7846-e85b-419c-b0cf-66ac32882c76", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5835336, + 43.307852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Bastide beaudinard & tours (BBT)", + "owner:ref:FR:SIREN": "908822836", + "email": "contact@bastidebeaudinard.fr", + "phone": "0611342795", + "network": "Bastide beaudinard", + "ref": "e8f85317-d544-4bff-b9ab-04bb6c6cbc13", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70058, + 43.4805 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Vegetalis", + "owner:ref:FR:SIREN": "753765957", + "email": "d.genre@groupegenre.com", + "network": "VEGETALIS", + "ref": "11056a14-b43f-4cd2-9122-069014db6366", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-12:00, Mo-Sa 14:00-18:00, Su 09:00-13:00", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14164, + 29.29117 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "803540210", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "HYUNDAI", + "ref": "FRFR1ETSEA1", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2549, + 49.1296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "849244645", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "HYUNDAI", + "ref": "FRFR1EDDVK1", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8283, + 43.7872 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref": "e5981b93-4ae8-4595-9b8c-f7582b59c5fe", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.476711409891, + 43.476583984941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "803719277", + "email": "oscar@electromaps.com", + "phone": "34 931.574.967", + "network": "1PACTE", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "socket:type2": "yes", + "fee": "TRUE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-04-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.32731, + 4.9351181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "793418542", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Agence 973", + "ref": "FR*EZD*E45629", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.57, + 48.36 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Sud Hotel", + "owner:ref:FR:SIREN": "490020765", + "email": "sud-hotel-alsace@orange.fr", + "phone": "0388743065", + "network": "Sud Hotel", + "ref": "f8fd8ac0-e00a-49ff-be60-0f8e71aa039a", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2877885, + 43.4227369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "332009471", + "email": "advenir@zeborne.com", + "phone": "02 52 07 25 97", + "network": "FORD VITROLLES", + "ref": "35840", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2020-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2589209, + 49.2692571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "adcda78d-e497-4203-b3fb-2523c6c1a318", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1096503, + 49.2859075 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "c30424e7-d903-4ac3-911d-591e97f68a90", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.370679, + 49.182863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "f5df4001-c9b8-4e62-908d-ba944e3e0668", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.370679, + 49.182863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "f5df4001-c9b8-4e62-908d-ba944e3e0668", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2589209, + 49.2692571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "adcda78d-e497-4203-b3fb-2523c6c1a318", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6863119, + 49.2746651 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "b054404e-eafd-4c89-b189-da392f1483ed", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0373753, + 49.020012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "b06856d0-0348-452d-a5d7-69125802d0fe", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0373753, + 49.020012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "b06856d0-0348-452d-a5d7-69125802d0fe", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.271643, + 49.145128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "d490d47e-bb30-4796-bc2a-42adc1a6eb2a", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.271643, + 49.145128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "d490d47e-bb30-4796-bc2a-42adc1a6eb2a", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1096503, + 49.2859075 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "c30424e7-d903-4ac3-911d-591e97f68a90", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6863119, + 49.2746651 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "b054404e-eafd-4c89-b189-da392f1483ed", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1096503, + 49.2859075 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "c30424e7-d903-4ac3-911d-591e97f68a90", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1096503, + 49.2859075 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "c30424e7-d903-4ac3-911d-591e97f68a90", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.455859, + 49.3210887 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "14ec007e-3ebd-4ded-8691-b92b88f1e503", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.455859, + 49.3210887 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "14ec007e-3ebd-4ded-8691-b92b88f1e503", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3017575, + 49.1910497 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "47097357-e25b-46c3-92a3-37fb7e88d7e6", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3017575, + 49.1910497 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "47097357-e25b-46c3-92a3-37fb7e88d7e6", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78275924122744, + 43.795898154156454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LA CONCIERGERIE D'ISA.", + "owner:ref:FR:SIREN": "879276491", + "email": "laconciergeriedisa@gmail.com", + "phone": "0698807582", + "network": "LA CONCIERGERIE D'ISA.", + "ref": "45fa4771-7ea9-4254-bb98-b5137ab884ff", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44753, + 43.5069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge CROUS Pauliane", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44753, + 43.5069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge CROUS Pauliane", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95241, + 43.2928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge ACCOR Castelnaudary", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0865, + 43.1076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "425127685", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "CAPITAINERIE PORT DE GRUISSAN", + "ref": "FRFR1EEZUX FRFR1EFKMT FRFR1ELWTM", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7584632000000058, + 46.135216299999996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SARL RUITER", + "owner:ref:FR:SIREN": "494457062", + "email": "contact@porte90.fr", + "network": "PORTE 90", + "ref": "EVB-P21251821", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-17:00", + "start_date": "2021-11-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7584632000000058, + 46.135216299999996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SARL RUITER", + "owner:ref:FR:SIREN": "494457062", + "email": "contact@porte90.fr", + "network": "PORTE 90", + "ref": "EVB-P21251821", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-17:00", + "start_date": "2021-11-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24, + 43.51 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "JAV INVESTISSEMENT", + "owner:ref:FR:SIREN": "479774051", + "email": "peggy.orssaud@jav.fr", + "phone": "0486687630", + "network": "RESEAU DE RECHARGE JAV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4, + 43.44 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIPECC", + "owner:ref:FR:SIREN": "095720314", + "email": "contact@sipecc.fr", + "phone": "0442786952", + "network": "Borne de recharge HEXAOM Bouc bel air", + "ref": "d536b72d-7329-4ad7-8702-c600af302627", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24, + 43.4 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SARL VAHE", + "owner:ref:FR:SIREN": "509530572", + "email": "eknacat@hotmail.fr", + "phone": "0612666006", + "network": "Réseau de recharge VAHE EKNADISSIAN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24, + 43.42 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "FITP SARL", + "owner:ref:FR:SIREN": "384614921", + "email": "sas.fitp@yahoo.com", + "phone": "0465059822", + "network": "FITP Bureau", + "ref": "f67a4223-e24c-4cab-b49d-70e256e44c44", + "socket:typee": "yes", + "socket:type2": "yes", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2023-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.305036, + 48.777443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.305036, + 48.777443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.583354, + 48.102253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.583354, + 48.102253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.028889, + 48.455833 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.028889, + 48.455833 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.63257, + 48.654836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*179*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.650071, + 48.048437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "OUEST CHARGE - 29", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*213*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.650071, + 48.048437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "OUEST CHARGE - 29", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*213*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.153028, + 47.935135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*112*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.153028, + 47.935135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*112*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.424026, + 47.985855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*147*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.424026, + 47.985855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*147*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99, + 45.63 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "409596244", + "email": "emilio@electromaps.com", + "phone": "+34 931.574.967", + "network": "Royan Ravalement Services", + "ref": "ebb78fda-b81d-441a-a97f-c0931664110e", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.96, + 45.955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "823893938", + "email": "emilio@electromaps.com", + "phone": "+34 931 190 242 ", + "network": "SAP", + "ref": "FR*MAP*E000016296852", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-17:00", + "start_date": "2022-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1, + 45.63 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SARL LES BAINS DE ROYAN", + "owner:ref:FR:SIREN": "534148804", + "email": "svp.maroquinerie@hotmail.fr", + "phone": "06 60 44 30 37", + "network": "Réseau de recharge Monsieur Boissier", + "ref": "d67cd02c-2a23-4dc1-9b4d-7d90d795df3b", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Sa 10:00-19:00", + "start_date": "2022-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.51344, + 43.28654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "VIRTA", + "owner:ref:FR:SIREN": "072802689", + "email": "philippe.voisin@virta.global", + "phone": "0612912997", + "network": "FULGURA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-18:00", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.51344, + 43.28654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "VIRTA", + "owner:ref:FR:SIREN": "072802689", + "email": "philippe.voisin@virta.global", + "phone": "0612912997", + "network": "FULGURA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-18:00", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4017290030274534, + 49.18274284714659 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U CAEN", + "ref": "FRSUAP14201A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4017290030274534, + 49.18274284714659 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U CAEN", + "ref": "FRSUAP14201A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4017290030274534, + 49.18274284714659 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U CAEN", + "ref": "FRSUAP14201A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4017290030274534, + 49.18274284714659 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U CAEN", + "ref": "FRSUAP14201A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6595715141555814, + 45.749626602859486 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "4M RETAIL", + "owner:ref:FR:SIREN": "879220374", + "email": "contact@mambhome.com", + "network": "4M RETAIL", + "ref": "EVB-DC422600001B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 9:00-17:00", + "start_date": "2022-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6595715141555814, + 45.749626602859486 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "4M RETAIL", + "owner:ref:FR:SIREN": "879220374", + "email": "contact@mambhome.com", + "network": "4M RETAIL", + "ref": "EVB-DC422600001", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 9:00-17:00", + "start_date": "2022-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3617357269911046, + 43.20905731878834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Securecharge", + "owner:ref:FR:SIREN": "802704445", + "email": "contact@securecharge.com", + "network": "Hôtel du Pont Vieux - Securecharge", + "ref": "Securecharge-PONCAR-HBS-1", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.86, + 43.96 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Thibal Distribution", + "owner:ref:FR:SIREN": "509605184", + "email": "sdavid@thibal-distribution.fr", + "phone": "0565490240", + "network": "Borne de recharge gratuite", + "ref": "868b9791-607e-4ba5-be0a-612b37168a56", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 07:30-12:00,Mo-Fr 13:30-18:00,Th 07:30-12:00", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.972928, + 48.474519 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.972928, + 48.474519 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.047154, + 47.18119 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.047154, + 47.18119 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.231524, + 47.341862 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.231524, + 47.341862 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.464037, + 47.211582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.464037, + 47.211582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.911004, + 47.092248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.911004, + 47.092248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32078, + 47.410707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32078, + 47.410707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.404951, + 47.365936 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.404951, + 47.365936 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.340087, + 47.259812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8531, + 48.8413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Daltoner Vire", + "owner:ref:FR:SIREN": "452522204", + "email": "denis.lot@daltoner.fr", + "phone": "0608471175", + "network": "Daltoner", + "ref": "78219588-3e13-4afd-9f82-4941dc515e80", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "mo-fr09:00-12:30,mo-fr14:00-18:00", + "start_date": "2022-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501248, + 43.300038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LEGA", + "owner:ref:FR:SIREN": "881418917", + "email": "contact@greenhomeimmobilier.fr", + "network": "Securecharge", + "ref": "Securecharge-GrHoMar-CC-1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-19:00", + "start_date": "2022-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501248, + 43.300038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LEGA", + "owner:ref:FR:SIREN": "881418917", + "email": "contact@greenhomeimmobilier.fr", + "network": "Securecharge", + "ref": "Securecharge-GrHoMar-CC-1", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-19:00", + "start_date": "2022-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.595174, + 44.388486 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Autel Netherlands B.V. | FR*AUT", + "email": "evsupport.eu@autel.com", + "network": "AUTEL EUROPE GmbH", + "ref": "863355", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065185, + 44.318093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805308", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.065185, + 44.318093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805308", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70061, + 48.239107 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "882357", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70061, + 48.239107 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "882357", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.630492, + 43.314747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815406", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588763, + 43.188354 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815403", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588763, + 43.188354 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815403", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.630492, + 43.314747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815406", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.630492, + 43.314747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815406", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.630492, + 43.314747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815406", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.235914, + 43.414287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815409", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.235914, + 43.414287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815409", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.235914, + 43.414287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815409", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.235914, + 43.414287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815409", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81362, + 49.4212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805233", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81362, + 49.4212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805233", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.921623, + 45.902621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "767184", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.921623, + 45.902621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "767184", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.921623, + 45.902621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "767184", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.921623, + 45.902621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "767184", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81362, + 49.4212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805233", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.698316, + 43.449905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828288", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845881, + 44.947093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741657", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845881, + 44.947093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741657", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845881, + 44.947093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741657", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845881, + 44.947093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741657", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.698316, + 43.449905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828288", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.698316, + 43.449905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828288", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.698316, + 43.449905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828288", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045402, + 43.430777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "754329", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045402, + 43.430777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "754329", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.81362, + 49.4212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805233", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466205, + 48.233331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828279", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.112658, + 48.301832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880203", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466205, + 48.233331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828279", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.509592, + 46.209011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805296", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.509592, + 46.209011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805296", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.661547, + 45.054029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805284", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466205, + 48.233331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828279", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.466205, + 48.233331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828279", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.661547, + 45.054029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805284", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.46174, + 45.653935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805257", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.112718, + 48.301248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880206", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.112718, + 48.301248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880206", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.112718, + 48.301248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880206", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.46174, + 45.653935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805257", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.46174, + 45.653935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805257", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.46174, + 45.653935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805257", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.661547, + 45.054029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805284", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.330752, + 46.151508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805263", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.330752, + 46.151508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805263", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.661495, + 45.054285 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805272", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05556, + 43.423029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "613465", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05556, + 43.423029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "613465", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05556, + 43.423029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "613465", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.107782, + 45.62177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "590822", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.107782, + 45.62177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "590822", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.107782, + 45.62177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "590822", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37817, + 47.110352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "779304", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37817, + 47.110352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "779304", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37817, + 47.110352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "779304", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.44416, + 43.88006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "CARF - Bornes Publiques", + "ref": "626567", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.44416, + 43.88006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "CARF - Bornes Publiques", + "ref": "626567", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.59311, + 44.089897 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "CARF - Bornes Publiques", + "ref": "674633", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.147713, + 43.328661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "EVzen", + "ref": "771717", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.147713, + 43.328661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "EVzen", + "ref": "771717", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.59311, + 44.089897 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "CARF - Bornes Publiques", + "ref": "674633", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409014, + 43.307994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "678953", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.380148, + 43.304954 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836985", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.195572, + 43.409384 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613330", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.195572, + 43.409384 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613330", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.540796, + 43.214406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836988", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.540796, + 43.214406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836988", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.540796, + 43.214406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836988", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.376228, + 43.253932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836994", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.376228, + 43.253932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836994", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409014, + 43.307994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "678953", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.45921, + 43.345324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613333", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.45921, + 43.345324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613333", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "799176", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.599606, + 45.60921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "881103", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.599606, + 45.60921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "881103", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.599606, + 45.60921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "881103", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.599606, + 45.60921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "881103", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "799176", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "799176", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "799176", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "799176", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "799176", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "799176", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "799176", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13031, + 45.66341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "799176", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.380148, + 43.304954 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836985", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409094, + 43.264841 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613327", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.409094, + 43.264841 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613327", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "SOMIMAR - Bornes publiques", + "ref": "590825", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "SOMIMAR - Bornes publiques", + "ref": "590825", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "SOMIMAR - Bornes publiques", + "ref": "590825", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "SOMIMAR - Bornes publiques", + "ref": "590825", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "SOMIMAR - Bornes publiques", + "ref": "590825", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "SOMIMAR - Bornes publiques", + "ref": "590825", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "SOMIMAR - Bornes publiques", + "ref": "590825", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "SOMIMAR - Bornes publiques", + "ref": "590825", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "SOMIMAR - Bornes publiques", + "ref": "590825", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "SOMIMAR - Bornes publiques", + "ref": "590825", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "SOMIMAR - Bornes publiques", + "ref": "590825", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381775, + 43.338291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "SOMIMAR - Bornes publiques", + "ref": "590825", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr 08:00-17:00", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.389461, + 43.280847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613273", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.389461, + 43.280847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613273", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.480306, + 43.335877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613276", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.480306, + 43.335877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613276", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22183, + 43.41657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613279", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.362979, + 43.288972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "678950", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22183, + 43.41657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613279", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387781, + 43.299928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613282", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387781, + 43.299928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613282", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37587, + 43.284198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613315", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62989, + 43.211412 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613306", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25172, + 43.411612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613309", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25172, + 43.411612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613309", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.389277, + 43.290449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613312", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.389277, + 43.290449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613312", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387068, + 43.260804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836976", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387068, + 43.260804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836976", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387068, + 43.260804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836976", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37587, + 43.284198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613315", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.393886, + 43.255794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613318", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.367613, + 43.315171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613285", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.393886, + 43.255794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613318", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.398803, + 43.299757 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613321", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.398803, + 43.299757 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613321", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.468984, + 43.354728 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613324", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.468984, + 43.354728 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613324", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.363203, + 43.270909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836982", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.363203, + 43.270909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836982", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.363203, + 43.270909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836982", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.362979, + 43.288972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "678950", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62989, + 43.211412 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613306", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.364434, + 43.298149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836973", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.364434, + 43.298149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836973", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.390399, + 43.339001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613303", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.367613, + 43.315171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613285", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31756, + 43.359392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "816522", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31756, + 43.359392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "816522", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43888, + 43.309691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613288", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43888, + 43.309691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613288", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.433546, + 43.294651 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613291", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.433546, + 43.294651 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613291", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.628622, + 43.297149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613294", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.628622, + 43.297149 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613294", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501411, + 43.295673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836970", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501411, + 43.295673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836970", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.501411, + 43.295673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "836970", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387834, + 43.288587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "678947", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.387834, + 43.288587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "678947", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.397543, + 43.260987 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613297", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.397543, + 43.260987 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613297", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4014, + 43.319046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613300", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4014, + 43.319046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613300", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.390399, + 43.339001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "ENGIE MAMP - Bornes publiques", + "ref": "613303", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.595174, + 44.388486 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Autel Netherlands B.V. | FR*AUT", + "email": "evsupport.eu@autel.com", + "network": "AUTEL EUROPE GmbH", + "ref": "863355", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.099712, + 43.635144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "544751", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.099712, + 43.635144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "544751", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.002737, + 43.186433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "590840", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.002737, + 43.186433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "590840", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.041879, + 43.400714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706280", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.041879, + 43.400714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706280", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.373755, + 43.335637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706268", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.373755, + 43.335637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706268", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75022, + 45.250192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Autel Netherlands B.V. | FR*AUT", + "email": "evsupport.eu@autel.com", + "network": "AUTEL EUROPE GmbH", + "ref": "815082", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75022, + 45.250192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Autel Netherlands B.V. | FR*AUT", + "email": "evsupport.eu@autel.com", + "network": "AUTEL EUROPE GmbH", + "ref": "815082", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.595174, + 44.388486 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Autel Netherlands B.V. | FR*AUT", + "email": "evsupport.eu@autel.com", + "network": "AUTEL EUROPE GmbH", + "ref": "863355", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.595174, + 44.388486 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Autel Netherlands B.V. | FR*AUT", + "email": "evsupport.eu@autel.com", + "network": "AUTEL EUROPE GmbH", + "ref": "863355", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.135457, + 43.395675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "759999", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.135457, + 43.395675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "759999", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.135457, + 43.395675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "759999", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "370046", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.802572, + 43.627679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "704399", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.802572, + 43.627679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "704399", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.802572, + 43.627679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "704399", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "370046", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "370046", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "370046", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "370046", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "370046", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "370046", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.016488, + 43.823233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "370046", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.982252, + 43.15277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "767730", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.982252, + 43.15277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "767730", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.982252, + 43.15277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "767730", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.982252, + 43.15277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "767730", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.982252, + 43.15277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "767730", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.982252, + 43.15277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Proviridis | FR*PVD", + "email": "data.gouv@proviridis.fr", + "network": "Proviridis", + "ref": "767730", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.036066, + 42.907836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741678", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.036066, + 42.907836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741678", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.036066, + 42.907836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741678", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.036066, + 42.907836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741678", + "socket:typee": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588766, + 43.18835 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815421", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588766, + 43.18835 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815421", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.575711, + 45.897844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741669", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.575711, + 45.897844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741669", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA8", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "771702", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.724571, + 43.782834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741726", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.724571, + 43.782834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741726", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA8", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "771702", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA8", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "771702", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA8", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "771702", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA8", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "771702", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA8", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "771702", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA8", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "771702", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA8", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "771702", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA8", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "771702", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.724571, + 43.782834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741726", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.300644, + 47.04819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA8", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "771702", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.724571, + 43.782834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741726", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.803755, + 43.710421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741714", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.803755, + 43.710421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741714", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.803755, + 43.710421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741714", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.803755, + 43.710421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741714", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.575756, + 45.897811 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741720", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329456, + 43.227057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "697028", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329456, + 43.227057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "697028", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.244794, + 43.423478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880230", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.244794, + 43.423478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880230", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.40506, + 43.293342 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "528125", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.40506, + 43.293342 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "528125", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.165448, + 45.652871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880236", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.165448, + 45.652871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880236", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432522, + 47.096065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706202", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432522, + 47.096065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706202", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.327724, + 43.228472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "747288", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.327724, + 43.228472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "747288", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381492, + 43.301458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828300", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381492, + 43.301458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828300", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381492, + 43.301458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828300", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381492, + 43.301458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828300", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329445, + 43.227068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "697025", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329445, + 43.227068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "697025", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } } ] } \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_2.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_2.json new file mode 100644 index 00000000..8ea76b27 --- /dev/null +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_2.json @@ -0,0 +1,110650 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774386, + 45.184057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.851826, + 47.009538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774386, + 45.184057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774386, + 45.184057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.774386, + 45.184057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865497, + 45.068712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865497, + 45.068712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865497, + 45.068712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865497, + 45.068712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0694, + 44.640648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0694, + 44.640648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888315, + 44.966278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "FLEX-E", + "ref": "FR*SOD*S*OAZS*223*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888315, + 44.966278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "FLEX-E", + "ref": "FR*SOD*S*OAZS*223*3*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888315, + 44.966278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "FLEX-E", + "ref": "FR*SOD*S*OAZS*223*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.888315, + 44.966278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "FLEX-E", + "ref": "FR*SOD*S*OAZS*223*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.466318, + 49.095829 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*245*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.466318, + 49.095829 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*245*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.466318, + 49.095829 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*245*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*252*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*252*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*252*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*252*2*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.298284, + 49.163926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*252*2*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.566611, + 47.251353 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*164*2*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.566611, + 47.251353 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*164*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.566611, + 47.251353 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*164*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.469031, + 48.427316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*258*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.528937, + 48.388316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*257*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.528937, + 48.388316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*257*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.469031, + 48.427316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*258*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.469031, + 48.427316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*258*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.528937, + 48.388316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*257*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.052789, + 47.322222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref": "FR*SOD*S*AVTD*16*6*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.052789, + 47.322222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref": "FR*SOD*S*AVTD*16*6*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145897, + 47.295589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref": "FR*SOD*S*AVTD*15*4*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145897, + 47.295589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref": "FR*SOD*S*AVTD*15*4*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876818, + 45.019791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref": "FR*SOD*S*AVTD*4*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876818, + 45.019791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref": "FR*SOD*S*AVTD*4*1*_*_", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.865158, + 44.865884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref": "FR*SOD*S*AVTD*3*2*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.567375, + 47.244513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref": "FR*SOD*S*AVTD*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.567375, + 47.244513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref": "FR*SOD*S*AVTD*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986585, + 45.771356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*59*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.986585, + 45.771356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND LYON", + "ref": "FR*SOD*S*LYON*59*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*24*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*24*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*25*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*25*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.050151, + 47.35747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.049248, + 47.355949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.049248, + 47.355949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*26*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.049248, + 47.355949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.049248, + 47.355949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*26*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.957497, + 45.77086 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref": "FR*SOD*S*MB87*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.957497, + 45.77086 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "258708585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SEHV87", + "ref": "FR*SOD*S*MB87*34*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.400544, + 43.360828 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref": "FR*SOD*S*MB64*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.400544, + 43.360828 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref": "FR*SOD*S*MB64*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366184, + 43.332508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref": "FR*SOD*S*MB64*98*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.366184, + 43.332508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "256402041", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEPA 64", + "ref": "FR*SOD*S*MB64*98*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.463119, + 45.739716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref": "FR*SOD*S*SYDR*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.463119, + 45.739716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref": "FR*SOD*S*SYDR*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319254, + 49.320532 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref": "FR*SOD*S*AVPT*5*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.337888, + 45.249092 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*93*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.722759, + 45.187054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*78*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.042477, + 44.865112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*103*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.042477, + 44.865112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*103*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217378, + 45.400749 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*77*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.722759, + 45.187054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*78*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.724807, + 45.179817 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*79*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.337888, + 45.249092 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*93*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.724807, + 45.179817 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*79*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.730312, + 45.192043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*81*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.730312, + 45.192043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*81*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.711979, + 45.180084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*82*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.711979, + 45.180084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*82*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.715532, + 45.184345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*84*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.044134, + 44.868401 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*104*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.044134, + 44.868401 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*104*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.253506, + 44.993977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*106*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.253506, + 44.993977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*106*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.840611, + 45.419838 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*107*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.840611, + 45.419838 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*107*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.363911, + 44.860176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*108*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.363911, + 44.860176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*108*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.089969, + 45.011402 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*111*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.089969, + 45.011402 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*111*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.262063, + 44.745258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*112*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.262063, + 44.745258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*112*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.748864, + 45.492863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*113*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.715532, + 45.184345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*84*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.058212, + 44.995899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*85*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.058212, + 44.995899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*85*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86671, + 44.943237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*100*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.977736, + 45.047359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*94*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.977736, + 45.047359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*94*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.012185, + 44.786625 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*95*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.012185, + 44.786625 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*95*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.154022, + 44.845245 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*97*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.154022, + 44.845245 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*97*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.392442, + 45.201721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*114*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.527508, + 45.144791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*98*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.527508, + 45.144791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*98*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.135192, + 45.20187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*99*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.652252, + 44.842113 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*101*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.135192, + 45.20187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*99*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86671, + 44.943237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*100*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68793, + 45.624321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*86*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339009, + 45.248264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*92*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339009, + 45.248264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*92*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.652252, + 44.842113 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*101*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68793, + 45.624321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*86*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.600758, + 45.164207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*91*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.600758, + 45.164207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*91*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.285507, + 44.803474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*90*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.285507, + 44.803474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*90*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.400406, + 44.854721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*89*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.417831, + 44.779984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*87*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.400406, + 44.854721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*89*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.417831, + 44.779984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*87*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.748864, + 45.492863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*113*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06972, + 45.140911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*131*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.392442, + 45.201721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*114*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.165397, + 44.834118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*141*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.165397, + 44.834118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*141*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.539875, + 45.021866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*142*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.539875, + 45.021866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*142*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.756159, + 45.420197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*143*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.756159, + 45.420197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*143*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.057228, + 44.946789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*144*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.057228, + 44.946789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*144*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.080201, + 44.629173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*145*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.080201, + 44.629173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*145*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.503334, + 44.870893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*146*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.503334, + 44.870893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*146*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.503334, + 44.870893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*146*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.503334, + 44.870893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*146*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.688412, + 45.157291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*147*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.688412, + 45.157291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*147*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.688412, + 45.157291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*147*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.688412, + 45.157291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*147*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.380141, + 45.481873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*149*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.380141, + 45.481873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*149*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.380141, + 45.481873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*149*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.380141, + 45.481873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*149*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.924316, + 45.420927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*150*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.365045, + 45.346584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*140*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.365045, + 45.346584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*140*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.101924, + 44.850285 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*138*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919114, + 45.41589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*132*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.297951, + 45.132473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*130*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.297951, + 45.132473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*130*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.298838, + 45.129875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*129*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.298838, + 45.129875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*129*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.302298, + 45.126183 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*128*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.302298, + 45.126183 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*128*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15009, + 44.966335 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*127*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15009, + 44.966335 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*127*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.391331, + 45.050846 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*126*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.391331, + 45.050846 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*126*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919114, + 45.41589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*132*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.101924, + 44.850285 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*138*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.920901, + 45.413513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*133*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.920901, + 45.413513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*133*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.496523, + 45.253567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*134*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.496523, + 45.253567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*134*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.056962, + 45.270565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*135*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.056962, + 45.270565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*135*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.779958, + 45.195217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*137*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.779958, + 45.195217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*137*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.924316, + 45.420927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*150*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.924316, + 45.420927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*150*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.924316, + 45.420927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*150*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.873653, + 45.235855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*121*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06972, + 45.140911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*131*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.987989, + 44.823059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*124*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.987989, + 44.823059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*124*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.408764, + 44.75695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*123*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.408764, + 44.75695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*123*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.918521, + 45.275173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*122*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.918521, + 45.275173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*122*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.873653, + 45.235855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*121*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21282, + 44.892532 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*120*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.46317, + 44.73729 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*162*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21282, + 44.892532 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*120*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217389, + 44.892673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*119*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217389, + 44.892673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*119*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.214353, + 44.883865 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*118*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.214353, + 44.883865 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*118*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217427, + 44.880421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*117*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217427, + 44.880421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*117*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.323247, + 44.974308 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*116*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.323247, + 44.974308 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*116*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.46317, + 44.73729 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*162*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526451, + 45.146795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*151*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74053, + 44.83758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*155*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526451, + 45.146795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*151*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526451, + 45.146795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*151*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526451, + 45.146795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*151*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.708895, + 45.186926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*152*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.708895, + 45.186926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*152*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68774, + 45.24278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*153*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68774, + 45.24278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*153*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.12589, + 45.29469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*154*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.12589, + 45.29469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*154*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74053, + 44.83758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*155*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81836, + 45.54399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*156*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.55972, + 45.56986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*161*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81836, + 45.54399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*156*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71839, + 45.02641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*157*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71839, + 45.02641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*157*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27914, + 45.16059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*158*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27914, + 45.16059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*158*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67401, + 45.58997 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*159*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67401, + 45.58997 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*159*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88787, + 44.88431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*160*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88787, + 44.88431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*160*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.55972, + 45.56986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*161*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217378, + 45.400749 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*77*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.768692, + 44.767879 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.689566, + 45.19173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.727561, + 45.216908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.727561, + 45.216908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666067, + 45.205341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666067, + 45.205341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.704716, + 45.364296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.704716, + 45.364296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.703903, + 45.36301 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.703903, + 45.36301 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.232004, + 45.118351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.232004, + 45.118351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.689566, + 45.19173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.568117, + 44.8554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.743226, + 45.204578 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.568117, + 44.8554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.937528, + 45.222622 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.937528, + 45.222622 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21471, + 44.803703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21471, + 44.803703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.051004, + 45.336727 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*35*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.051004, + 45.336727 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*35*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.400101, + 44.666527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.400101, + 44.666527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.642597, + 44.790836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.642597, + 44.790836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.743226, + 45.204578 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.698037, + 45.392223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.331995, + 44.836281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.870593, + 44.630783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.870593, + 44.630783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526162, + 44.75946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.526162, + 44.75946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589328, + 45.321854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589328, + 45.321854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.698037, + 45.392223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.563419, + 44.935707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.563419, + 44.935707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.075685, + 44.939213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.075685, + 44.939213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.152277, + 44.813114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*21*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.152277, + 44.813114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*21*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.433106, + 44.882481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.433106, + 44.882481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.203975, + 44.798595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.203975, + 44.798595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.331995, + 44.836281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2907, + 44.820824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.150119, + 44.839417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659777, + 45.184494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*60*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.228201, + 45.129517 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.228201, + 45.129517 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.451196, + 45.451656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*58*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.451196, + 45.451656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*58*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.661303, + 45.187424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*59*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.661303, + 45.187424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*59*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659777, + 45.184494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*60*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.909665, + 44.992535 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.912535, + 44.845737 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*53*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.909665, + 44.992535 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.490578, + 44.793633 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*62*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.490578, + 44.793633 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*62*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.895054, + 44.682358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*63*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.895054, + 44.682358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*63*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.065287, + 44.852802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*64*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.065287, + 44.852802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*64*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.151401, + 45.055424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*65*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.151401, + 45.055424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*65*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.165569, + 45.060806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*66*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.165569, + 45.060806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*66*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.912535, + 44.845737 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*53*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.926937, + 44.916542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*52*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2907, + 44.820824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.375426, + 44.868919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.145795, + 45.258835 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*40*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.145795, + 45.258835 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*40*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608055, + 44.730904 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608055, + 44.730904 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.060931, + 45.493061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*42*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.060931, + 45.493061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*42*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.976027, + 45.539673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.976027, + 45.539673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.375686, + 44.867256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.375686, + 44.867256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.375426, + 44.868919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.011073, + 45.150936 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.926937, + 44.916542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*52*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.011073, + 45.150936 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18357, + 44.825272 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18357, + 44.825272 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.724749, + 44.835953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*48*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.724749, + 44.835953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*48*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.382402, + 44.842258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*49*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.382402, + 44.842258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*49*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.140332, + 45.392262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*50*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.140332, + 45.392262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*50*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.926065, + 44.922066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*51*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.926065, + 44.922066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*51*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.150119, + 44.839417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48543, + 44.849667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.167167, + 45.412544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48543, + 44.849667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.165742, + 45.009018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*68*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163076, + 45.009335 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*69*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163076, + 45.009335 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*69*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.352734, + 45.033329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*70*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.352734, + 45.033329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*70*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.470814, + 45.09845 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*71*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.470814, + 45.09845 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*71*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.468953, + 45.101334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*72*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.468953, + 45.101334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*72*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.662087, + 45.532616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*73*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.662087, + 45.532616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*73*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.664768, + 45.528957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*74*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.664768, + 45.528957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*74*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.165742, + 45.009018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*68*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.167167, + 45.412544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.006493, + 44.777496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.482518, + 44.853123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.482518, + 44.853123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.487476, + 44.85006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.487476, + 44.85006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.488127, + 44.857044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.488127, + 44.857044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.006493, + 44.777496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.768692, + 44.767879 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.947273, + 44.879646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.947273, + 44.879646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.876806, + 48.462891 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref": "FR*SOD*S*RMBT*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.876806, + 48.462891 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "247800600", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "RT78", + "ref": "FR*SOD*S*RMBT*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.855781, + 48.270983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref": "FR*SOD*S*SHEL*7*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.855139, + 48.275634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref": "FR*SOD*S*SHEL*13*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.011539, + 48.474088 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA LOUPE - Place de la gare - 134202", + "ref": "FRS28E13420", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.011539, + 48.474088 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA LOUPE - Place de la gare - 134202", + "ref": "FRS28E13420", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.355194, + 48.720645 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOUILLET - Rue du Moulin Rouge - 139334", + "ref": "FRS28E13933", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.355194, + 48.720645 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOUILLET - Rue du Moulin Rouge - 139334", + "ref": "FRS28E13933", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856182, + 48.271147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Neuvy", + "ref": "FRIONE45920", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.394261, + 48.718342 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LURAY - Rue Emile Zola - 130756", + "ref": "FRS28E13075", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856182, + 48.271147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Neuvy", + "ref": "FRIONE45920", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856182, + 48.271147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Neuvy", + "ref": "FRIONE45920", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856182, + 48.271147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Neuvy", + "ref": "FRIONE45920", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856182, + 48.271147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Neuvy", + "ref": "FRIONE45920", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856182, + 48.271147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val Neuvy", + "ref": "FRIONE45920", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.664424, + 45.198312 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED CGED MARSAC", + "ref": "FRCPIE6637615", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.664424, + 45.198312 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED CGED MARSAC", + "ref": "FRCPIE6637615", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.778858, + 45.183035 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR BOULAZAC", + "ref": "FRCPIE6638005", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.778858, + 45.183035 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR BOULAZAC", + "ref": "FRCPIE6638005", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39177715, + 48.18831452 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BONNEVAL - Rue de Chartres - 129245", + "ref": "FRS28E12924", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.775121, + 48.463146 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUNEAU - Rue Pasteur - 186530", + "ref": "FRS28E18653", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.340464, + 48.703578 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GARNAY - Parking mairie - 137368", + "ref": "FRS28E13736", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.340464, + 48.703578 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GARNAY - Parking mairie - 137368", + "ref": "FRS28E13736", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38237017, + 48.7101955 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vernouillet", + "ref": "FRIENE008501", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38237017, + 48.7101955 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vernouillet", + "ref": "FRIENE008501", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38237017, + 48.7101955 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vernouillet", + "ref": "FRIENE008502", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38237017, + 48.7101955 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vernouillet", + "ref": "FRIENE008502", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.058091, + 48.503769 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BELHOMERT-GUEHOUVILLE - De Gaulle - 137374", + "ref": "FRS28E13737", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.058091, + 48.503769 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BELHOMERT-GUEHOUVILLE - De Gaulle - 137374", + "ref": "FRS28E13737", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.467517, + 48.451561 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAINVILLIERS - Rue des acacias - 137397", + "ref": "FRS28E13739", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref": "FRIONE41710", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.591473, + 48.535052 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guerlesquin", + "ref": "FRIENE000402", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.591473, + 48.535052 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guerlesquin", + "ref": "FRIENE000402", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.591473, + 48.535052 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guerlesquin", + "ref": "FRIENE000401", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.591473, + 48.535052 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guerlesquin", + "ref": "FRIENE000401", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref": "FRIONE4171", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref": "FRIONE41710", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref": "FRIONE41710", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276864, + 49.166746 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Sud", + "ref": "FRIONE41710", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.882995, + 44.898702 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED VALENCE", + "ref": "FRCPIE6679575", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-01-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.882995, + 44.898702 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED VALENCE", + "ref": "FRCPIE6679575", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-01-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.463518, + 48.450539 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAINVILLIERS - Place du marché - 137401", + "ref": "FRS28E13740", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.642571, + 48.4357 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Rénan", + "ref": "FRIENE000302", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.642571, + 48.4357 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Rénan", + "ref": "FRIENE000302", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.642571, + 48.4357 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Rénan", + "ref": "FRIENE000301", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.642571, + 48.4357 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Rénan", + "ref": "FRIENE000301", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0577, + 48.4911 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Taden", + "ref": "FRIENE000902", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0577, + 48.4911 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Taden", + "ref": "FRIENE000902", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0577, + 48.4911 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Taden", + "ref": "FRIENE000901", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0577, + 48.4911 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Taden", + "ref": "FRIENE000901", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.760127, + 48.462029 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUNEAU - Complexe Sportif - 139678", + "ref": "FRS28E13967", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.760127, + 48.462029 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUNEAU - Complexe Sportif - 139678", + "ref": "FRS28E13967", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.481391, + 48.443547 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Rue du grand faubourg - 134789", + "ref": "FRS28E13478", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.392673, + 48.220971 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTBOISSIER - Les Rues Neuves - 129294", + "ref": "FRS28E12929", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.240505, + 48.760843 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST-REMY-SUR-AVRE - Place des Dodots - 139435", + "ref": "FRS28E13943", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.356077, + 48.7207 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOUILLET - Place du 8 mai 1945 - 139037", + "ref": "FRS28E13903", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.322385, + 48.676224 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TREON - Rue Jean Michel Herault - 134347", + "ref": "FRS28E13434", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186173, + 48.044019 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMUNE NOUVELLE - Eglise Langey - 137316", + "ref": "FRS28E13731", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186173, + 48.044019 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMUNE NOUVELLE - Eglise Langey - 137316", + "ref": "FRS28E13731", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.770931, + 48.330962 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HPSM BORNE 1 ET 2", + "ref": "FRCPIE6613045", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.770931, + 48.330962 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HPSM BORNE 1 ET 2", + "ref": "FRCPIE6613045", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.770931, + 48.330962 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HPSM BORNE 1 ET 2", + "ref": "FRCPIE6665345", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.770931, + 48.330962 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HPSM BORNE 1 ET 2", + "ref": "FRCPIE6665345", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.135338, + 48.079532 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMUNE NOUVELLE D'ARROU - Place Rillé - 137295", + "ref": "FRS28E13729", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.135338, + 48.079532 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMMUNE NOUVELLE D'ARROU - Place Rillé - 137295", + "ref": "FRS28E13729", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.356001, + 48.752678 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT DREUX", + "ref": "FRCPIE6612085", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.356001, + 48.752678 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT DREUX", + "ref": "FRCPIE6612085", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646, + 44.51378472 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Est", + "ref": "FRIONE4035", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646, + 44.51378472 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Est", + "ref": "FRIONE40350", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646, + 44.51378472 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Est", + "ref": "FRIONE40350", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646, + 44.51378472 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Est", + "ref": "FRIONE40350", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646, + 44.51378472 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Est", + "ref": "FRIONE40350", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646, + 44.51378472 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Est", + "ref": "FRIONE40350", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78140646, + 44.51378472 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Est", + "ref": "FRIONE40350", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.821276, + 48.321282 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Nogent-le-Rotrou - Place St Pol -128531", + "ref": "FRS28E17649", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.916358, + 48.627291 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMBLORE - Le Plessis -176251", + "ref": "FRS28E17625", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.717106, + 48.432041 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPERU PLOUARZE BORNE 2", + "ref": "FRCPIE6608795", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.717106, + 48.432041 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPERU PLOUARZE BORNE 2", + "ref": "FRCPIE6608795", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.717106, + 48.432041 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPERU PLOUARZE BORNE 2", + "ref": "FRCPIE6608805", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.717106, + 48.432041 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPERU PLOUARZE BORNE 2", + "ref": "FRCPIE6608805", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.916358, + 48.627291 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMBLORE - Le Plessis -176251", + "ref": "FRS28E17625", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.244193, + 48.579345 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUNEUF EN THYMERAIS - Jean Moulin - 134302", + "ref": "FRS28E13430", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.583614, + 48.547241 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST PIAT - Place Vauvillers - 130523", + "ref": "FRS28E13052", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03217, + 48.560768 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SENONCHES - Rue de Verdun - 134278", + "ref": "FRS28E13427", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.465216, + 48.417688 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUISANT - Avenue de la république - 137351", + "ref": "FRS28E13735", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref": "FRIONE41490", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref": "FRIONE41490", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref": "FRIONE41490", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref": "FRIONE41490", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273798, + 49.167909 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Giberville Nord", + "ref": "FRIONE4149", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 19", + "ref": "FRCPIE6601055", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 19", + "ref": "FRCPIE6601055", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 19", + "ref": "FRCPIE6601065", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 19", + "ref": "FRCPIE6601065", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 19", + "ref": "FRCPIE6601075", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 19", + "ref": "FRCPIE6601075", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 19", + "ref": "FRCPIE6605975", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 19", + "ref": "FRCPIE6605975", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 9", + "ref": "FRCPIE6601025", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 9", + "ref": "FRCPIE6601025", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 9", + "ref": "FRCPIE6601035", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 9", + "ref": "FRCPIE6601035", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 9", + "ref": "FRCPIE6601045", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 9", + "ref": "FRCPIE6601045", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 9", + "ref": "FRCPIE6605985", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 9", + "ref": "FRCPIE6605985", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 9", + "ref": "FRCPIE6606025", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.461937, + 48.968225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 9", + "ref": "FRCPIE6606025", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24028784, + 48.44961266 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURVILLE SUR EURE - 1 Rue Des Planches - 137731", + "ref": "FRS28E20057", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.514194, + 48.095883 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VARIZE - Rue du Châteaux - 130758", + "ref": "FRS28E13075", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47347, + 48.447741 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAINVILLIERS - Rue de la république - 137395", + "ref": "FRS28E13739", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.337841, + 46.916074 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR PONTARLIER", + "ref": "FRCPIE6621925", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.337841, + 46.916074 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR PONTARLIER", + "ref": "FRCPIE6621925", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.756788, + 44.512308 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANOIR LE ROURE BORNE 2", + "ref": "FRCPIE6621065", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.756788, + 44.512308 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANOIR LE ROURE BORNE 2", + "ref": "FRCPIE6621065", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.756788, + 44.512308 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANOIR LE ROURE BORNE 2", + "ref": "FRCPIE6621055", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.756788, + 44.512308 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANOIR LE ROURE BORNE 2", + "ref": "FRCPIE6621055", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 15", + "ref": "FRCPIE6738105", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.242347, + 48.58155 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUNEUF EN THYMERAIS - Halles - 134333", + "ref": "FRS28E13433", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.69377, + 48.32822 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOISVILLE LA SAINT PERE - Pl République - 129052", + "ref": "FRS28E12905", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46055656, + 48.67393864 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEMEUX SUR EURE - Rue de la libération - 134403", + "ref": "FRS28E13440", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856042, + 48.274978 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plaines de Beauce", + "ref": "FRIONE45930", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856042, + 48.274978 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plaines de Beauce", + "ref": "FRIONE45930", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856042, + 48.274978 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plaines de Beauce", + "ref": "FRIONE45930", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856042, + 48.274978 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plaines de Beauce", + "ref": "FRIONE45930", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856042, + 48.274978 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plaines de Beauce", + "ref": "FRIONE45930", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.856042, + 48.274978 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plaines de Beauce", + "ref": "FRIONE45930", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87900427, + 48.4162747 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINVILLE - Place Farcot - 130159", + "ref": "FRS28E13015", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95679523, + 48.25514781 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT-LES-AUTELS - Rue du Gal. de Gaulle-139133", + "ref": "FRS28E13933", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3338292, + 47.1862674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Val de Saône", + "ref": "FRFASE330290", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3338292, + 47.1862674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Val de Saône", + "ref": "FRFASE330290", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3338292, + 47.1862674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Val de Saône", + "ref": "FRFASE330290", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3338292, + 47.1862674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Val de Saône", + "ref": "FRFASE330290", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48407805, + 48.44726082 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Place Chatelet - 134784", + "ref": "FRS28E13478", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.578366, + 48.589346 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAINTENON - Parking rue D'Harleville - 128960", + "ref": "FRS28E12896", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.330665, + 48.112966 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARBOUE - Avenue Aristide Briand - 134835", + "ref": "FRS28E13483", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8280004, + 45.27639194 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Est", + "ref": "FRIONE41290", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8280004, + 45.27639194 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Est", + "ref": "FRIONE41290", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8280004, + 45.27639194 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Est", + "ref": "FRIONE41290", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8280004, + 45.27639194 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Est", + "ref": "FRIONE41290", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8280004, + 45.27639194 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Est", + "ref": "FRIONE41290", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8280004, + 45.27639194 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Est", + "ref": "FRIONE41290", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8280004, + 45.27639194 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Est", + "ref": "FRIONE4129", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.644529, + 48.599459 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HANCHES - Rue de la barre - 134752", + "ref": "FRS28E13475", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431281, + 49.06124 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 10", + "ref": "FRCPIE6726655", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431281, + 49.06124 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 10", + "ref": "FRCPIE6726655", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.385027, + 48.182481 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BONNEVAL - Promenade du Mail - 129287", + "ref": "FRS28E12928", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51529213, + 48.45013673 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Avenue Des Sablons - 129928", + "ref": "FRS28E12992", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 63", + "ref": "FRCPIE6737415", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 15", + "ref": "FRCPIE6738105", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431669, + 49.061392 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 21", + "ref": "FRCPIE6726665", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431669, + 49.061392 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 21", + "ref": "FRCPIE6726665", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.481157, + 48.013685 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEMAURY - Place Saint Martin - 134823", + "ref": "FRS28E13482", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 63", + "ref": "FRCPIE6737325", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 63", + "ref": "FRCPIE6737325", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 63", + "ref": "FRCPIE6737345", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 63", + "ref": "FRCPIE6737345", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 63", + "ref": "FRCPIE6737375", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 63", + "ref": "FRCPIE6737375", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432073, + 49.061104 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 63", + "ref": "FRCPIE6737415", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430694, + 49.061634 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 22", + "ref": "FRCPIE6726605", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430694, + 49.061634 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 22", + "ref": "FRCPIE6726605", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430694, + 49.061634 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 22", + "ref": "FRCPIE6736125", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430694, + 49.061634 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 22", + "ref": "FRCPIE6736125", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430694, + 49.061634 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 22", + "ref": "FRCPIE6736215", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430694, + 49.061634 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 22", + "ref": "FRCPIE6736215", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.501811, + 47.30968 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lochères", + "ref": "FRIONE41030", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431084, + 49.061551 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 23", + "ref": "FRCPIE6736705", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431084, + 49.061551 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 23", + "ref": "FRCPIE6736705", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431084, + 49.061551 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 23", + "ref": "FRCPIE6736485", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431084, + 49.061551 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 23", + "ref": "FRCPIE6736485", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.501811, + 47.30968 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lochères", + "ref": "FRIONE4103", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.501811, + 47.30968 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lochères", + "ref": "FRIONE41030", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.501811, + 47.30968 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lochères", + "ref": "FRIONE41030", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431084, + 49.061551 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 23", + "ref": "FRCPIE6736785", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.501811, + 47.30968 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Lochères", + "ref": "FRIONE41030", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431084, + 49.061551 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 23", + "ref": "FRCPIE6736785", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99115189, + 48.31185045 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THIRON-GARDAIS - Place du Marché - 130987", + "ref": "FRS28E13098", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431005, + 49.061255 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 13", + "ref": "FRCPIE6736395", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431005, + 49.061255 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 13", + "ref": "FRCPIE6736395", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431005, + 49.061255 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 13", + "ref": "FRCPIE6736355", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431005, + 49.061255 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 13", + "ref": "FRCPIE6736355", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431005, + 49.061255 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 13", + "ref": "FRCPIE6736325", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431005, + 49.061255 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 13", + "ref": "FRCPIE6736325", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62672506, + 48.27051423 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOVES - Bd Maurice Violette - 134417", + "ref": "FRS28E13441", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 15", + "ref": "FRCPIE6736765", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 15", + "ref": "FRCPIE6736765", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 15", + "ref": "FRCPIE6736465", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13248609, + 48.40772761 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE THIEULIN - Rue de la mairie - 134175", + "ref": "FRS28E13417", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.184395, + 48.115521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATILLON EN DUNOIS - rue de Courtalain - 134208", + "ref": "FRS28E13420", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.68742, + 48.52747 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GALLARDON - Résidence de la tour - 129289", + "ref": "FRS28E12928", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.494161, + 48.343955 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DAMMARIE - Place de l'église - 137348", + "ref": "FRS28E13734", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37289291, + 49.3797657 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Charleval", + "ref": "FRIENE005601", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37289291, + 49.3797657 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Charleval", + "ref": "FRIENE005601", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37289291, + 49.3797657 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Charleval", + "ref": "FRIENE005602", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37289291, + 49.3797657 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Charleval", + "ref": "FRIENE005602", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 15", + "ref": "FRCPIE6736465", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.332896, + 47.179275 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Chêne d'Argent", + "ref": "FRFASE330280", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7737244, + 49.2429735 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire du Domaine d'Harcourt HW", + "ref": "FRSHEE79", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7737244, + 49.2429735 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire du Domaine d'Harcourt HW", + "ref": "FRSHEE79", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7737244, + 49.2429735 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire du Domaine d'Harcourt HW", + "ref": "FRSHEE80", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7737244, + 49.2429735 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire du Domaine d'Harcourt HW", + "ref": "FRSHEE80", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7737244, + 49.2429735 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire du Domaine d'Harcourt HW", + "ref": "FRSHEE80", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7737244, + 49.2429735 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire du Domaine d'Harcourt HW", + "ref": "FRSHEE80", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.332896, + 47.179275 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Chêne d'Argent", + "ref": "FRFASE330280", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.332896, + 47.179275 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Chêne d'Argent", + "ref": "FRFASE330280", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.332896, + 47.179275 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Pont Chêne d'Argent", + "ref": "FRFASE330280", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.382251, + 48.600134 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TREMBLAY LES VILLAGES - Rue Taugourdeau - 130903", + "ref": "FRS28E13090", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.533494, + 48.647444 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOGENT-LE-ROI -Pkg du Marché aux Chevaux - 139383", + "ref": "FRS28E13938", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.533494, + 48.647444 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOGENT-LE-ROI -Pkg du Marché aux Chevaux - 139383", + "ref": "FRS28E13969", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 15", + "ref": "FRCPIE6736415", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.430869, + 49.060816 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 15", + "ref": "FRCPIE6736415", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48426, + 48.24397 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE GAULT SAINT DENIS - Place de l'église - 134509", + "ref": "FRS28E13450", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.491615, + 48.450232 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Bd Foch - 129905", + "ref": "FRS28E12990", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.010984, + 47.223166 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gevrey-Chambertin Est", + "ref": "FRIONE4102", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.010984, + 47.223166 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gevrey-Chambertin Est", + "ref": "FRIONE41020", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.010984, + 47.223166 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gevrey-Chambertin Est", + "ref": "FRIONE41020", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.010984, + 47.223166 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gevrey-Chambertin Est", + "ref": "FRIONE41020", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.010984, + 47.223166 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gevrey-Chambertin Est", + "ref": "FRIONE41020", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.160305, + 48.48067742 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PONTGOUIN - Place des halles - 137387", + "ref": "FRS28E13738", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.674677, + 48.610027 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Epernon - Rue du Général Leclerc", + "ref": "FRS28E20381", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.674677, + 48.610027 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Epernon - Rue du Général Leclerc", + "ref": "FRS28E20380", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47865754, + 48.88282251 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAUSSEE-D'IVRY - Place de l'Eglise - 139414", + "ref": "FRS28E13941", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.567431, + 48.591197 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PIERRES - Place Marcel Rouleau - 128891", + "ref": "FRS28E12889", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.244511, + 48.298942 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ILLIERS-COMBRAY - place Maunoury - 134925", + "ref": "FRS28E13492", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.189542, + 48.208833 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "YEVRES - Rue du pont - 134257", + "ref": "FRS28E13425", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432082, + 49.061843 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 01", + "ref": "FRCPIE6726825", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.80373021, + 48.32166905 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOGENT-LE-ROTROU - Rue Maison Maraine - 139030", + "ref": "FRS28E13903", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8226861, + 48.31978104 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOGENT-LE-ROTROU - Rue du château - 139015", + "ref": "FRS28E13901", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432082, + 49.061843 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 01", + "ref": "FRCPIE6726825", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432082, + 49.061843 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 01", + "ref": "FRCPIE6720145", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432082, + 49.061843 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 01", + "ref": "FRCPIE6720145", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.064474, + 48.325104 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COMBRES - Place de l'Église - 139348", + "ref": "FRS28E13934", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16588111, + 48.21094659 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BROU - place de l'hôtel de ville - 134921", + "ref": "FRS28E13492", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.470224, + 48.040627 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEMAURY - Rue de Murgers - 134810", + "ref": "FRS28E13481", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440394, + 48.857906 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ANET - 1 Rue LENOTRE - 139423", + "ref": "FRS28E13942", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.440394, + 48.857906 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ANET - 1 Rue LENOTRE - 139423", + "ref": "FRS28E13942", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.123919, + 48.098514 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ARROU - rue du docteur Vaisbuch - 134214", + "ref": "FRS28E13421", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.495829, + 48.445765 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Place Morard - 130744", + "ref": "FRS28E13074", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.493938, + 48.442585 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Rue Pierre Mendes France - 130752", + "ref": "FRS28E13075", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.414958, + 48.737629 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINTE GEMME MORONVAL - Rte de Moronval - 130561", + "ref": "FRS28E13056", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.073028, + 48.689084 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BREZOLLES - Rue de la Ferté - 128792", + "ref": "FRS28E12879", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.752446, + 48.264249 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "YMONVILLE - Rue du Haut C hemin - 134341", + "ref": "FRS28E13434", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9805, + 48.138462 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA BAZOCHE-GOUET - Rue des fossés - 134878", + "ref": "FRS28E13487", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.243168, + 48.299421 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ILLIERS-COMBRAY - Rue des trois mariés - 137321", + "ref": "FRS28E13732", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.836236, + 48.333791 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARGON - Rue de la Cloche - 139073", + "ref": "FRS28E13907", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.679155, + 48.605856 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPERNON - Avenue de la Prairie - 130906", + "ref": "FRS28E13090", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763, + 44.51506617 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Ouest", + "ref": "FRIONE40360", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763, + 44.51506617 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Ouest", + "ref": "FRIONE40360", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.369631, + 48.717581 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOUILLET - Rue de ROME - 139351", + "ref": "FRS28E13935", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763, + 44.51506617 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Ouest", + "ref": "FRIONE4036", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763, + 44.51506617 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Ouest", + "ref": "FRIONE40360", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763, + 44.51506617 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Ouest", + "ref": "FRIONE40360", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763, + 44.51506617 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Ouest", + "ref": "FRIONE40360", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78081763, + 44.51506617 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montélimar Ouest", + "ref": "FRIONE40360", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.831243, + 48.313407 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOGENT-LE-ROTOU - Rue du Commandant Charcot-138014", + "ref": "FRS28E13801", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99526099, + 48.468156 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vaupillon", + "ref": "FRIENE002501", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.289339, + 48.06675 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT DENIS LANNERAY - Rue Jean Moulin - 134842", + "ref": "FRS28E13484", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99526099, + 48.468156 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vaupillon", + "ref": "FRIENE002501", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67909863, + 48.60777195 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPERNON - Rue Nouvelle du Sycomore - 130887", + "ref": "FRS28E13088", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99526099, + 48.468156 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vaupillon", + "ref": "FRIENE002502", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99526099, + 48.468156 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vaupillon", + "ref": "FRIENE002502", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.885469, + 48.201157 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JANVILLE-EN-BEAUCE - Parking Bretonnerie - 130534", + "ref": "FRS28E13053", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.038915, + 48.560028 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SENONCHES - Rue du four banal - 134263", + "ref": "FRS28E13426", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.901331, + 48.611702 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA FERTE-VIDAME - Place de la Mairie - 128756", + "ref": "FRS28E12875", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.456518, + 42.742776 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MAIRIE SMDL HOTEL DE VILLE", + "ref": "FRCPIE6664415", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.456518, + 42.742776 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MAIRIE SMDL HOTEL DE VILLE", + "ref": "FRCPIE6664415", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17964854, + 48.21525836 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BROU - route de Chartres (intermarché) - 134902", + "ref": "FRS28E13490", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.285056, + 48.20839 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DANGEAU - Rue de Brou - 129205", + "ref": "FRS28E12920", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6737175", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.167616, + 48.211401 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BROU - place de la matrassière - 134890", + "ref": "FRS28E13489", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59944811, + 48.41284129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SOURS - Place du docteur Bouclet - 127349", + "ref": "FRS28E13734", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.375991, + 48.741367 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DREUX - Rue de la fontaine - 134368", + "ref": "FRS28E13436", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6737175", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6737065", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6737065", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6736735", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.57491568, + 48.1923956 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SANCHEVILLE - Place du Pâtis - 134359", + "ref": "FRS28E13435", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6736825", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6736825", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6736755", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6736755", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6736745", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6736745", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6736735", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6736495", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6736945", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6736495", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6736255", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6736255", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6726685", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6726685", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6726675", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431778, + 49.061212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 45", + "ref": "FRCPIE6726675", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.77138871, + 48.35464382 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "OUARVILLE - Rue de le République - 129076", + "ref": "FRS28E12907", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6736945", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6736935", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6736935", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6736885", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6736885", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6736845", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6736845", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6736275", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6736275", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6726695", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431413, + 49.060984 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 31", + "ref": "FRCPIE6726695", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 67", + "ref": "FRCPIE6736515", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 67", + "ref": "FRCPIE6737525", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 67", + "ref": "FRCPIE6736995", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 67", + "ref": "FRCPIE6736995", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 67", + "ref": "FRCPIE6736975", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 67", + "ref": "FRCPIE6736975", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 67", + "ref": "FRCPIE6736525", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 67", + "ref": "FRCPIE6736525", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 67", + "ref": "FRCPIE6736515", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.163118, + 48.221297 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Brou", + "ref": "FRIENE006702", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.163118, + 48.221297 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Brou", + "ref": "FRIENE006702", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.163118, + 48.221297 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Brou", + "ref": "FRIENE006701", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.163118, + 48.221297 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Brou", + "ref": "FRIENE006701", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431222, + 49.060762 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 67", + "ref": "FRCPIE6737525", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6737655", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6737665", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6737665", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 41", + "ref": "FRCPIE6726615", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 41", + "ref": "FRCPIE6720155", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 41", + "ref": "FRCPIE6720155", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6737655", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6737625", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6737625", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6737035", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6737565", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6737565", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6737255", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6737255", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6737185", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6737185", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6737035", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6736625", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6736625", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6736575", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6736575", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6736235", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43087, + 49.060529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 72", + "ref": "FRCPIE6736235", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 41", + "ref": "FRCPIE6736615", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187398, + 48.273996 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Kergoët", + "ref": "FRIONE43600", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187398, + 48.273996 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Kergoët", + "ref": "FRIONE43600", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187398, + 48.273996 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Kergoët", + "ref": "FRIONE43600", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187398, + 48.273996 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Kergoët", + "ref": "FRIONE43600", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Ouest", + "ref": "FRIONE4130", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Ouest", + "ref": "FRIONE41300", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Ouest", + "ref": "FRIONE41300", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Ouest", + "ref": "FRIONE41300", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Ouest", + "ref": "FRIONE41300", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Ouest", + "ref": "FRIONE41300", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.825571, + 45.275563 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Rambert Ouest", + "ref": "FRIONE41300", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.529178, + 48.480158 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Andel", + "ref": "FRIENE005802", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.529178, + 48.480158 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Andel", + "ref": "FRIENE005802", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.529178, + 48.480158 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Andel", + "ref": "FRIENE005801", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.529178, + 48.480158 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Andel", + "ref": "FRIENE005801", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912983, + 44.236495 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sisteron", + "ref": "FRIONE4490", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912983, + 44.236495 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sisteron", + "ref": "FRIONE44900", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912983, + 44.236495 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sisteron", + "ref": "FRIONE44900", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912983, + 44.236495 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sisteron", + "ref": "FRIONE44900", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912983, + 44.236495 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Sisteron", + "ref": "FRIONE44900", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 41", + "ref": "FRCPIE6726615", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 41", + "ref": "FRCPIE6736615", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.925021, + 44.734301 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "UTILE GRANE BORNE 1", + "ref": "FRCPIE6618725", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.925021, + 44.734301 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "UTILE GRANE BORNE 1", + "ref": "FRCPIE6618725", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05837, + 48.326772 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Plouasne", + "ref": "FRIENE008802", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05837, + 48.326772 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Plouasne", + "ref": "FRIENE008802", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05837, + 48.326772 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Plouasne", + "ref": "FRIENE008801", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05837, + 48.326772 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Plouasne", + "ref": "FRIENE008801", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 41", + "ref": "FRCPIE6736725", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431517, + 49.061577 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 41", + "ref": "FRCPIE6736725", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.490503, + 48.417013 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "09910787", + "ref": "FRTNME09910787", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.490503, + 48.417013 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "09910787", + "ref": "FRTNME09910787", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.188615, + 49.24801 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val de Reuil", + "ref": "FRIONE4377", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.188615, + 49.24801 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val de Reuil", + "ref": "FRIONE43770", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref": "FRFASE330490", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref": "FRFASE330490", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref": "FRFASE330490", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref": "FRFASE330490", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref": "FRFASE330490", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref": "FRFASE330490", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref": "FRFASE330490", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8003045, + 45.14952753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire du Manoire", + "ref": "FRFASE330490", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.232587, + 44.877413 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED SARLAT", + "ref": "FRCPIE6724055", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.232587, + 44.877413 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED SARLAT", + "ref": "FRCPIE6724055", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.188615, + 49.24801 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val de Reuil", + "ref": "FRIONE43770", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.188615, + 49.24801 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val de Reuil", + "ref": "FRIONE43770", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.188615, + 49.24801 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val de Reuil", + "ref": "FRIONE43770", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.188615, + 49.24801 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val de Reuil", + "ref": "FRIONE43770", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.188615, + 49.24801 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Val de Reuil", + "ref": "FRIONE43770", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.760154, + 48.515332 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUNEAU BLEURY ST SYMPHORIEN-Guy Vasselais-175635", + "ref": "FRS28E17563", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.233912, + 47.997089 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CLOYES-SUR-LE-LOIR - Place Gambetta - 127147", + "ref": "FRS28E12714", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.012166, + 48.470684 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA LOUPE - Rue Pasteur - 134213", + "ref": "FRS28E13421", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.577741, + 48.586706 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAINTENON - Place Aristide Briand - 128898", + "ref": "FRS28E12889", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.339952, + 48.730179 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOUILLET - 16 Avenue Marc CHAPPEY - 139069", + "ref": "FRS28E13906", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.381954, + 48.840804 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SOREL-MOUSSEL - Place De La Mairie - 139436", + "ref": "FRS28E13943", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.709964, + 48.435547 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEVILLE LE COMTE - Rue Pinceloup - 130145", + "ref": "FRS28E13014", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.624898, + 48.271745 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOVES - Rue de Châteaudun - 141761", + "ref": "FRS28E14176", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387454, + 48.17977 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BONNEVAL - Rue de la grève - 134496", + "ref": "FRS28E13449", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.252578, + 48.449077 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURVILLE SUR EUR - Beauce - 137388", + "ref": "FRS28E13738", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.682819, + 48.146012 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ORGERES-EN-BEAUCE - Rue de l'Arsenal - 130014", + "ref": "FRS28E13001", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.392723, + 48.113672 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MOLEANS - Rue du moulin - 134801", + "ref": "FRS28E13480", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.543013, + 48.651644 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COULOMBS - Rue des Remparts - 139389", + "ref": "FRS28E13938", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.818359, + 48.322194 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOGENT-LE-ROTROU - Place du 11 août - 139024", + "ref": "FRS28E13902", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.884251, + 48.200212 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JANVILLE-EN-BEAUCE - Rue Sœur Saint-Henri - 130244", + "ref": "FRS28E13024", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.391091, + 48.727654 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINTE GEMME MORONVAL - Rte Nogent le Roi - 130548", + "ref": "FRS28E13054", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.515931, + 48.563374 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LANNILIS SIEGE BORNE 2", + "ref": "FRCPIE6699895", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 08:30-17:00,Tu 08:30-17:00,We 08:30-17:00,Th 08:30-17:00,Fr 08:30-17:00", + "start_date": "2023-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.515931, + 48.563374 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LANNILIS SIEGE BORNE 2", + "ref": "FRCPIE6699895", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 08:30-17:00,Tu 08:30-17:00,We 08:30-17:00,Th 08:30-17:00,Fr 08:30-17:00", + "start_date": "2023-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.762427, + 48.506516 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUNEAU-BLEURY ST SYMPHORIEN - Rue Patton -137338", + "ref": "FRS28E13733", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.515931, + 48.563374 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LANNILIS SIEGE BORNE 2", + "ref": "FRCPIE6699285", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 08:30-17:00,Tu 08:30-17:00,We 08:30-17:00,Th 08:30-17:00,Fr 08:30-17:00", + "start_date": "2023-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.515931, + 48.563374 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LANNILIS SIEGE BORNE 2", + "ref": "FRCPIE6699285", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 08:30-17:00,Tu 08:30-17:00,We 08:30-17:00,Th 08:30-17:00,Fr 08:30-17:00", + "start_date": "2023-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.482988, + 48.449832 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Place Saint Jean - 134777", + "ref": "FRS28E13477", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.014208, + 48.471682 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA LOUPE - Place de l'hôtel de ville - 134195", + "ref": "FRS28E13419", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.198119, + 48.766006 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST-LUBIN-DES-JONCHERETS- Rue de la Baronie -139441", + "ref": "FRS28E13944", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.198119, + 48.766006 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST-LUBIN-DES-JONCHERETS- Rue de la Baronie -139441", + "ref": "FRS28E13944", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.290792, + 48.76059 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERT-EN-DROUAIS - Rue de l'Eglise - 139425", + "ref": "FRS28E13942", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref": "FRFASE331030", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref": "FRFASE331030", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref": "FRFASE331030", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref": "FRFASE331030", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref": "FRFASE331030", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref": "FRFASE331030", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref": "FRFASE331030", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861169, + 49.360989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Bosgouet Sud", + "ref": "FRFASE331030", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48205299, + 45.119945 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Léon-sur-l'Isle", + "ref": "FRIENE003802", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48205299, + 45.119945 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Léon-sur-l'Isle", + "ref": "FRIENE003802", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48205299, + 45.119945 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Léon-sur-l'Isle", + "ref": "FRIENE003801", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.48205299, + 45.119945 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Léon-sur-l'Isle", + "ref": "FRIENE003801", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.237583, + 48.005493 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CROYES-SUR-LE-LOIR - Piscine - 127485", + "ref": "FRS28E13080", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.348317, + 48.079206 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUDUN - Place de Schweinfurt - 127481", + "ref": "FRS28E12748", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.348317, + 48.079206 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUDUN - Place de Schweinfurt - 127481", + "ref": "FRS28E12748", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.353508, + 48.418167 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GEORGES SUR EURE - Eglise - 137362", + "ref": "FRS28E13736", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.772468, + 48.461236 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUNEAU - Rue Emile Labiche - 134756", + "ref": "FRS28E13475", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48852, + 48.45289 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARTRES - Place Drouaise - 126231", + "ref": "FRS28E12623", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45819, + 48.417249 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUISANT - Rue Jean Perrin - 137353", + "ref": "FRS28E13735", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.689164, + 48.522625 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GALLARDON - Rue Guy Pouillé - 178731", + "ref": "FRS28E17873", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.857445, + 50.25722 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PERFORMANCE_PRO BORNE 1", + "ref": "FRCPIE6708045", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.857445, + 50.25722 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PERFORMANCE_PRO BORNE 1", + "ref": "FRCPIE6708045", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701123, + 45.137638 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Périgueux Sud", + "ref": "FRIONE43910", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701123, + 45.137638 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Périgueux Sud", + "ref": "FRIONE43910", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701123, + 45.137638 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Périgueux Sud", + "ref": "FRIONE43910", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701123, + 45.137638 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Périgueux Sud", + "ref": "FRIONE43910", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701123, + 45.137638 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Périgueux Sud", + "ref": "FRIONE43910", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701123, + 45.137638 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Périgueux Sud", + "ref": "FRIONE43910", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.701123, + 45.137638 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Périgueux Sud", + "ref": "FRIONE4391", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5202, + 44.855926 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED CGED BERGERAC", + "ref": "FRCPIE6668835", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-12-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5202, + 44.855926 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED CGED BERGERAC", + "ref": "FRCPIE6668835", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-12-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.052668, + 48.14336 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAPELLE ROYALE - Rue jean moulin - 134851", + "ref": "FRS28E13485", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.364287, + 48.229263 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ALLUYES - Av Chevallier Debeausse - 129291", + "ref": "FRS28E12929", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.944203, + 48.347049 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GOMMERVILLE - 50 Route de Voves - 129084", + "ref": "FRS28E12908", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.742543, + 48.082374 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TERMINIER - Rue de charette - 141733", + "ref": "FRS28E14173", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431708, + 49.060851 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 65", + "ref": "FRCPIE6737475", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.85591286, + 48.27086799 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire de Val Neuvy", + "ref": "FRSPSESHEL71", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431708, + 49.060851 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 65", + "ref": "FRCPIE6737475", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431708, + 49.060851 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 65", + "ref": "FRCPIE6737455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431708, + 49.060851 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 65", + "ref": "FRCPIE6737455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.719126, + 44.361721 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED CGED PIERRELATT", + "ref": "FRCPIE6589465", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.719126, + 44.361721 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED CGED PIERRELATT", + "ref": "FRCPIE6589465", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.488107, + 49.091958 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR VERNON", + "ref": "FRCPIE6605525", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.453566, + 42.742843 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MAIRIE SMDL GROUPE SCOLAIRE", + "ref": "FRCPIE6737755", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.453566, + 42.742843 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MAIRIE SMDL GROUPE SCOLAIRE", + "ref": "FRCPIE6737755", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.488107, + 49.091958 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR VERNON", + "ref": "FRCPIE6605525", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.029245, + 48.629593 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA SAUCELLE - Place de l'Eglise - 128795", + "ref": "FRS28E12879", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.460777, + 42.740571 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MAIRIE SMDL PARKING RDC", + "ref": "FRCPIE6699585", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.460777, + 42.740571 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MAIRIE SMDL PARKING RDC", + "ref": "FRCPIE6699585", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.460777, + 42.740571 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MAIRIE SMDL PARKING RDC", + "ref": "FRCPIE6699575", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.460777, + 42.740571 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MAIRIE SMDL PARKING RDC", + "ref": "FRCPIE6699575", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 59", + "ref": "FRCPIE6737215", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 59", + "ref": "FRCPIE6737215", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.877382, + 46.186811 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED GUERET", + "ref": "FRCPIE6570275", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.877382, + 46.186811 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED GUERET", + "ref": "FRCPIE6570275", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 59", + "ref": "FRCPIE6737275", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 59", + "ref": "FRCPIE6737305", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 59", + "ref": "FRCPIE6737305", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 59", + "ref": "FRCPIE6737295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 59", + "ref": "FRCPIE6737295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432419, + 49.061372 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 59", + "ref": "FRCPIE6737275", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.632987, + 48.657458 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U PLESTIN SUPER U PLESTIN", + "ref": "FRCPIE6575785", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.632987, + 48.657458 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U PLESTIN SUPER U PLESTIN", + "ref": "FRCPIE6575785", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.578674, + 48.467261 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Bois Paris", + "ref": "FRIONE12650", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.578674, + 48.467261 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Bois Paris", + "ref": "FRIONE1265", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.578674, + 48.467261 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Bois Paris", + "ref": "FRIONE12650", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.578674, + 48.467261 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Bois Paris", + "ref": "FRIONE12650", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.578674, + 48.467261 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Bois Paris", + "ref": "FRIONE12650", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.431382, + 48.425499 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ASNF BORNE 1", + "ref": "FRCPIE6660255", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.431382, + 48.425499 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ASNF BORNE 1", + "ref": "FRCPIE6660255", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.431382, + 48.425499 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ASNF BORNE 1", + "ref": "FRCPIE6660165", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.431382, + 48.425499 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ASNF BORNE 1", + "ref": "FRCPIE6660165", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.760154, + 48.515332 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUNEAU BLEURY ST SYMPHORIEN-Guy Vasselais-175635", + "ref": "FRS28E17563", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.438596, + 48.422931 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT CHARTRES", + "ref": "FRCPIE6603595", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.438596, + 48.422931 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT CHARTRES", + "ref": "FRCPIE6603595", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10745, + 47.030768 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bois Guillerot", + "ref": "FRIONE4123", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431325, + 49.061436 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 09", + "ref": "FRCPIE6726645", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431325, + 49.061436 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 09", + "ref": "FRCPIE6726645", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431325, + 49.061436 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 09", + "ref": "FRCPIE6726635", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431325, + 49.061436 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 09", + "ref": "FRCPIE6726635", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431325, + 49.061436 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 09", + "ref": "FRCPIE6726625", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.431325, + 49.061436 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 09", + "ref": "FRCPIE6726625", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10745, + 47.030768 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bois Guillerot", + "ref": "FRIONE41230", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10745, + 47.030768 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bois Guillerot", + "ref": "FRIONE41230", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10745, + 47.030768 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bois Guillerot", + "ref": "FRIONE41230", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10745, + 47.030768 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Bois Guillerot", + "ref": "FRIONE41230", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045629, + 47.271963 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Dijon Sud", + "ref": "FRIONE4538", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045629, + 47.271963 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Dijon Sud", + "ref": "FRIONE45380", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045629, + 47.271963 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Dijon Sud", + "ref": "FRIONE45380", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045629, + 47.271963 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Dijon Sud", + "ref": "FRIONE45380", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045629, + 47.271963 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Dijon Sud", + "ref": "FRIONE45380", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045629, + 47.271963 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Dijon Sud", + "ref": "FRIONE45380", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045629, + 47.271963 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Dijon Sud", + "ref": "FRIONE45380", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109707, + 47.032073 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Glanon", + "ref": "FRIONE4124", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109707, + 47.032073 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Glanon", + "ref": "FRIONE41240", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109707, + 47.032073 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Glanon", + "ref": "FRIONE41240", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109707, + 47.032073 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Glanon", + "ref": "FRIONE41240", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109707, + 47.032073 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Glanon", + "ref": "FRIONE41240", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580008, + 48.468782 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Gasville", + "ref": "FRIONE12640", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580008, + 48.468782 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Gasville", + "ref": "FRIONE12640", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580008, + 48.468782 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Gasville", + "ref": "FRIONE12640", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580008, + 48.468782 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Gasville", + "ref": "FRIONE12640", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580008, + 48.468782 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Chartres Gasville", + "ref": "FRIONE1264", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.978652, + 43.639705 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SUPER U 1", + "ref": "FRCPIE6566105", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 55", + "ref": "FRCPIE6736555", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 55", + "ref": "FRCPIE6736185", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 55", + "ref": "FRCPIE6736185", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 55", + "ref": "FRCPIE6726845", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 55", + "ref": "FRCPIE6726845", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.328964, + 48.070716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUDUN - Place du 18 Octobre - 127476", + "ref": "FRS28E12747", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.328964, + 48.070716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATEAUDUN - Place du 18 Octobre - 127476", + "ref": "FRS28E12747", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 55", + "ref": "FRCPIE6736555", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 55", + "ref": "FRCPIE6736905", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 55", + "ref": "FRCPIE6736905", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 55", + "ref": "FRCPIE6737115", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.632298, + 48.2765 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOVES - Piscine - 126260", + "ref": "FRS28E12626", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.632298, + 48.2765 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOVES - Piscine - 126260", + "ref": "FRS28E12625", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432414, + 49.061637 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "RAW PARISGIVERNY 55", + "ref": "FRCPIE6737115", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.677737, + 48.594147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hanches", + "ref": "FRIONE4627", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.677737, + 48.594147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hanches", + "ref": "FRIONE46270", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.677737, + 48.594147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hanches", + "ref": "FRIONE46270", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.677737, + 48.594147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hanches", + "ref": "FRIONE46270", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.677737, + 48.594147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hanches", + "ref": "FRIONE46270", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.677737, + 48.594147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hanches", + "ref": "FRIONE46270", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.677737, + 48.594147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hanches", + "ref": "FRIONE46270", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.676055, + 48.591983 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HYPER U HANCHES RETAIL 5", + "ref": "FRCPIE6530575", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.676055, + 48.591983 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HYPER U HANCHES RETAIL 5", + "ref": "FRCPIE6530575", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.676055, + 48.591983 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HYPER U HANCHES RETAIL 5", + "ref": "FRCPIE6530555", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.676055, + 48.591983 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HYPER U HANCHES RETAIL 5", + "ref": "FRCPIE6530555", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.676055, + 48.591983 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HYPER U HANCHES RETAIL 5", + "ref": "FRCPIE6530465", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.676055, + 48.591983 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HYPER U HANCHES RETAIL 5", + "ref": "FRCPIE6530465", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.978652, + 43.639705 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SUPER U 1", + "ref": "FRCPIE6566105", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.012698, + 48.530831 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plouer sur Rance", + "ref": "FRIONE47350", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.012698, + 48.530831 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plouer sur Rance", + "ref": "FRIONE47350", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.012698, + 48.530831 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plouer sur Rance", + "ref": "FRIONE47350", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.012698, + 48.530831 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plouer sur Rance", + "ref": "FRIONE47350", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.012698, + 48.530831 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plouer sur Rance", + "ref": "FRIONE47350", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.012698, + 48.530831 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plouer sur Rance", + "ref": "FRIONE47350", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.012698, + 48.530831 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Plouer sur Rance", + "ref": "FRIONE4735", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.001847, + 47.216809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Gevrey - Chambertin Ouest", + "ref": "FRFASE330260", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.001847, + 47.216809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Gevrey - Chambertin Ouest", + "ref": "FRFASE330260", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.001847, + 47.216809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Gevrey - Chambertin Ouest", + "ref": "FRFASE330260", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.001847, + 47.216809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Gevrey - Chambertin Ouest", + "ref": "FRFASE330260", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15479, + 48.536616 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DIGNY - Rue de Marechal Leclerc - 171587", + "ref": "FRS28E17158", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15479, + 48.536616 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DIGNY - Rue de Marechal Leclerc - 171587", + "ref": "FRS28E17158", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.939949, + 44.86543 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "POUSSY BORNE SUPERU BEAUMONT", + "ref": "FRCPIE6565565", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.978652, + 43.639705 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SUPER U 1", + "ref": "FRCPIE6566095", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.978652, + 43.639705 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SUPER U 1", + "ref": "FRCPIE6566095", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.939949, + 44.86543 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "POUSSY BORNE SUPERU BEAUMONT", + "ref": "FRCPIE6565565", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.866943, + 47.024413 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR BEAUNE", + "ref": "FRCPIE6622335", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.866943, + 47.024413 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR BEAUNE", + "ref": "FRCPIE6622335", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.93, + 47.24 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "garage Henry herve", + "owner:ref:FR:SIREN": "898168273", + "email": "garage.henry25@orange.fr", + "phone": "0381590075", + "network": "eurorepar", + "ref": "bcc51ef9-4e1e-42e9-a6cf-67a98b589dce", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4253467530332162, + 49.06520319135481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Kallista BDR", + "owner:ref:FR:SIREN": "820491314", + "email": "exploitation@yaway-recharge.eu", + "phone": "+33 0 800 96 00 80", + "network": "YAWAY Recharge", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": " 24/7", + "start_date": "2022-08-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4253467530332162, + 49.06520319135481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Kallista BDR", + "owner:ref:FR:SIREN": "820491314", + "email": "exploitation@yaway-recharge.eu", + "phone": "+33 0 800 96 00 80", + "network": "YAWAY Recharge", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": " 24/7", + "start_date": "2022-08-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4253467530332162, + 49.06520319135481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Kallista BDR", + "owner:ref:FR:SIREN": "820491314", + "email": "exploitation@yaway-recharge.eu", + "phone": "+33 0 800 96 00 80", + "network": "YAWAY Recharge", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": " 24/7", + "start_date": "2022-08-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4253467530332162, + 49.06520319135481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Kallista BDR", + "owner:ref:FR:SIREN": "820491314", + "email": "exploitation@yaway-recharge.eu", + "phone": "+33 0 800 96 00 80", + "network": "YAWAY Recharge", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": " 24/7", + "start_date": "2022-08-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4253467530332162, + 49.06520319135481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Kallista BDR", + "owner:ref:FR:SIREN": "820491314", + "email": "exploitation@yaway-recharge.eu", + "phone": "+33 0 800 96 00 80", + "network": "YAWAY Recharge", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": " 24/7", + "start_date": "2022-08-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.676455, + 48.478447 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "517502365", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Kia Yffiniac - AUTO DESIGN", + "ref": "50451", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-sat 08:30-19:00", + "start_date": "2020-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.676455, + 48.478447 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "517502365", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Kia Yffiniac - AUTO DESIGN", + "ref": "50452", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-sat 08:30-19:00", + "start_date": "2020-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.763026, + 41.947088 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "323838110", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "AJACCIO NORD AUTOMOBILES - MAZDA AJACCIO ", + "ref": "59911", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.6151818, + 48.8161972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "349214825", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA PERIGUEUX", + "ref": "50784", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fri 08:00-19:00,Sat 09:00-18:00", + "start_date": "2021-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37956223, + 49.24620227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EQCDH9J1JP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-23:00,Sa-Su 08:00-23:00", + "start_date": "2022-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.37956223, + 49.24620227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EQCDH9J1JP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-23:00,Sa-Su 08:00-23:00", + "start_date": "2022-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978, + 47.2137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEAFCWDTLI", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978, + 47.2137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEAFCWDTLI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978, + 47.2137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEAFCWDTLI", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978, + 47.2137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEAFCWDTLI", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978, + 47.2137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEAFCWDTLI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978, + 47.2137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEAFCWDTLI", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.94978, + 47.2137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEAFCWDTLI", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.452093, + 48.417253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JZ543QKP9R", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.452093, + 48.417253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JZ543QKP9R", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.452093, + 48.417253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JZ543QKP9R", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.453555, + 42.719918 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BCNPMZIP3X", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.31865954, + 42.50669575 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SFNDWUV1R9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.31865954, + 42.50669575 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SFNDWUV1R9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.20069, + 42.477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KEZTK8O7PQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.20069, + 42.477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KEZTK8O7PQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.937185, + 47.23002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ANFTOPYB1P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.937185, + 47.23002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ANFTOPYB1P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9743661, + 47.27715089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ISHILDOGFQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2022-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.064793, + 47.31288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJYET1MT29ZIY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43988136, + 49.37899343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IPYVK0DJ6C", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2023-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43988136, + 49.37899343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IPYVK0DJ6C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2023-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06919251, + 47.31530824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJYEQ3G7O5R6V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06919251, + 47.31530824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJYEQ3G7O5R6V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.64261895, + -20.9385849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THLHDS2GGN", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.64261895, + -20.9385849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THLHDS2GGN", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.064793, + 47.31288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJYET1MT29ZIY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873812, + 47.021884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZSHZFIZDN", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873812, + 47.021884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZSHZFIZDN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873812, + 47.021884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZSHZFIZDN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873812, + 47.021884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZSHZFIZDN", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873812, + 47.021884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZSHZFIZDN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873812, + 47.021884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KZSHZFIZDN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.377489, + 48.381631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZGTKMH9RNZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.377489, + 48.381631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZGTKMH9RNZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15731791, + 49.31773016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBSMDYN6DU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408285, + 48.436954 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DXVCIGXZXW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408285, + 48.436954 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DXVCIGXZXW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408285, + 48.436954 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DXVCIGXZXW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408285, + 48.436954 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DXVCIGXZXW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15731791, + 49.31773016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBSMDYN6DU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15731791, + 49.31773016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBSMDYN6DU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15731791, + 49.31773016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBSMDYN6DU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15731791, + 49.31773016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBSMDYN6DU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15731791, + 49.31773016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBSMDYN6DU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.377489, + 48.381631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZGTKMH9RNZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.377489, + 48.381631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZGTKMH9RNZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.377489, + 48.381631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZGTKMH9RNZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISKVAE12QGET", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJ2IG4DK1XFQ8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.972122, + 45.118791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISKTTRBAZEKD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISKVAE12QGET", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJ2IG4DK1XFQ8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISKVAE12QGET", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISKVAE12QGET", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.972122, + 45.118791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISKTTRBAZEKD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.972122, + 45.118791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISKTTRBAZEKD", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISKVAE12QGET", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.377489, + 48.381631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZGTKMH9RNZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.972122, + 45.118791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISKTTRBAZEKD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.972122, + 45.118791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISKTTRBAZEKD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.972122, + 45.118791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISKTTRBAZEKD", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.973404, + 45.118511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISKVAE12QGET", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82799104, + 48.61325703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S4WKO92WF7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82799104, + 48.61325703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S4WKO92WF7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82799104, + 48.61325703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S4WKO92WF7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82799104, + 48.61325703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S4WKO92WF7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82799104, + 48.61325703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S4WKO92WF7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.82799104, + 48.61325703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S4WKO92WF7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EYFAUZGMKE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EYFAUZGMKE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EYFAUZGMKE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1576805, + 49.0259613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CAVUWXJOAT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EYFAUZGMKE", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1576805, + 49.0259613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CAVUWXJOAT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1576805, + 49.0259613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CAVUWXJOAT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EYFAUZGMKE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EYFAUZGMKE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EYFAUZGMKE", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15869225, + 49.0263993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EYFAUZGMKE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1576805, + 49.0259613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CAVUWXJOAT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85240031, + 47.00590714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLHYP2D9MOFJAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85240031, + 47.00590714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLHYP2D9MOFJAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85383794, + 47.00445851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIA2BS71158VL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85383794, + 47.00445851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIA2BS71158VL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85383794, + 47.00445851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIA2BS71158VL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545617, + 48.454124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GK6DXMJKPU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-19:00,Sa 08:00-12:00,Sa 14:00-18:00", + "start_date": "2022-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545617, + 48.454124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GK6DXMJKPU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-19:00,Sa 08:00-12:00,Sa 14:00-18:00", + "start_date": "2022-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85240031, + 47.00590714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLHYP2D9MOFJAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37078, + 48.719848 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YZPNMKUCFN", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45320379, + 49.10410314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S4ZHGIJPO6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45320379, + 49.10410314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S4ZHGIJPO6", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85240031, + 47.00590714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLHYP2D9MOFJAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85383794, + 47.00445851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIA2BS71158VL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37078, + 48.719848 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YZPNMKUCFN", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5596091, + 44.80663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TUT6GF98YM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5596091, + 44.80663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TUT6GF98YM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5596091, + 44.80663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TUT6GF98YM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.055057, + 47.35246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QHXB6BHOGC", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.219405, + 47.241996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "K7BSJNLZAP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.335454, + 47.490227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XL48MPS8G5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.788198, + 47.440595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JLD6VKWKG7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.710612, + 47.313509 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QDAWUSC5CV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.17472886, + 47.51473703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "USYS88RTB5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.134624, + 47.216845 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ECMQKU9KNJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.149525, + 46.997105 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKODBJFESG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33941, + 47.626874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XEEABPN1MQ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.53628868, + 47.39856979 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQHHPTTJWY", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.459429, + 47.542961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BJNOG4MWPW", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.416139, + 47.304456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QKREGUWHSS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.794804, + 47.00871788 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "INJVTNTI9G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.416139, + 47.304456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QKREGUWHSS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.142181, + 47.237854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YWPQYYSS4K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.55660909, + 47.26238609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FCJXTFL0DV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33899, + 47.622256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z5PTFXJNAF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.771158, + 46.978156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SPHUA5RFWJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.962356, + 47.198513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYG035N2OW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94829543, + 47.13451056 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I1KBZZA5DT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63063337, + 46.95115721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XHDBE7OY3W", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.794804, + 47.00871788 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "INJVTNTI9G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.142181, + 47.237854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YWPQYYSS4K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.647839, + 47.60017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DEBHL6PHPC", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8164268, + 47.0628197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y0IJDZQJPJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.55660909, + 47.26238609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FCJXTFL0DV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.53628868, + 47.39856979 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQHHPTTJWY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.38383655, + 47.19284387 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XSP3WMHTEF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4896383, + 47.1309424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "USNRCK1VXI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.219405, + 47.241996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "K7BSJNLZAP", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.055057, + 47.35246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QHXB6BHOGC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.459429, + 47.542961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BJNOG4MWPW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33941, + 47.626874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XEEABPN1MQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.269768, + 47.467201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZLYXEDHOC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978646, + 47.260206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BB7YAA9QQZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5721201, + 47.86279449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H1NN2OESGW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.174551, + 47.505772 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RZHA0AVXQL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.055057, + 47.35246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNV4EMC85I", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8236791, + 46.9858866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GHX1O8M83O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.667447, + 47.10687 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DSYBZMZ2OJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.640472, + 47.220194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QABKCSRLPV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.730724, + 46.938293 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDKZLSMFE1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.647839, + 47.60017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DEBHL6PHPC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.23079647, + 47.28151538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U0NYWWAOQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2623935, + 47.10452985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IIQJYUNGSH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.186601, + 47.586744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UUXQDJWN4P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.879176, + 47.073573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q5A81CXZQW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.771158, + 46.978156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SPHUA5RFWJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10898773, + 47.52014855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEXHH2DZUE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2623935, + 47.10452985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IIQJYUNGSH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36558, + 47.525011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LFYDOOHFLJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.94829543, + 47.13451056 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I1KBZZA5DT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22118136, + 47.2413133 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D4GDWKU6P4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63063337, + 46.95115721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XHDBE7OY3W", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.962356, + 47.198513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYG035N2OW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33899, + 47.622256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z5PTFXJNAF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.978646, + 47.260206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BB7YAA9QQZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.134624, + 47.216845 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ECMQKU9KNJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.640472, + 47.220194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QABKCSRLPV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.788198, + 47.440595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JLD6VKWKG7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.335454, + 47.490227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XL48MPS8G5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.186601, + 47.586744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UUXQDJWN4P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.149525, + 46.997105 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKODBJFESG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.879176, + 47.073573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q5A81CXZQW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36558, + 47.525011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LFYDOOHFLJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.23079647, + 47.28151538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U0NYWWAOQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10898773, + 47.52014855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEXHH2DZUE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8164268, + 47.0628197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y0IJDZQJPJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5721201, + 47.86279449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H1NN2OESGW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22118136, + 47.2413133 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D4GDWKU6P4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.710612, + 47.313509 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QDAWUSC5CV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.667447, + 47.10687 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DSYBZMZ2OJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8236791, + 46.9858866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GHX1O8M83O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.730724, + 46.938293 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDKZLSMFE1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4896383, + 47.1309424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "USNRCK1VXI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.38383655, + 47.19284387 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XSP3WMHTEF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.269768, + 47.467201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZLYXEDHOC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.17472886, + 47.51473703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "USYS88RTB5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.055057, + 47.35246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNV4EMC85I", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.174551, + 47.505772 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RZHA0AVXQL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30749631, + 48.28968586 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BAUQWL2XZK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.30749631, + 48.28968586 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BAUQWL2XZK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4QQQCYB7O", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4QQQCYB7O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4QQQCYB7O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WVK9HMQCCS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q0ZSMFKDDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L6GDDDH42A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L6GDDDH42A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4QQQCYB7O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4QQQCYB7O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WVK9HMQCCS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L6GDDDH42A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4QQQCYB7O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q0ZSMFKDDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4QQQCYB7O", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WVK9HMQCCS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WVK9HMQCCS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q0ZSMFKDDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q0ZSMFKDDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4QQQCYB7O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q0ZSMFKDDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q0ZSMFKDDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WVK9HMQCCS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q0ZSMFKDDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q0ZSMFKDDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L6GDDDH42A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1864568, + 49.24856253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TEEOXBC8Q5", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L6GDDDH42A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4QQQCYB7O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WVK9HMQCCS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q0ZSMFKDDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53899911, + 48.44751307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q0ZSMFKDDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L6GDDDH42A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L6GDDDH42A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4QQQCYB7O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53889648, + 48.44756489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4QQQCYB7O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L6GDDDH42A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WVK9HMQCCS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53884125, + 48.44748692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WVK9HMQCCS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L6GDDDH42A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53897766, + 48.44749172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L6GDDDH42A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.798435, + 41.955503 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HXUBZE62BL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.798435, + 41.955503 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HXUBZE62BL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.43748, + 42.60419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHM6D0U5CK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.43748, + 42.60419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHM6D0U5CK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.33588, + 41.6932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLSVKH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.33588, + 41.6932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLSVKH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.048031, + 48.000971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PWR6BZZQGG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.048031, + 48.000971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PWR6BZZQGG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.0513394, + 48.51453622 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UZHVKOIULL", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.0513394, + 48.51453622 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UZHVKOIULL", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.90760516, + 47.90089427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YA46XKXKNV", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.90760516, + 47.90089427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YA46XKXKNV", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.35350427, + 44.75737344 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y2JPVALCYB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.35350427, + 44.75737344 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y2JPVALCYB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.880052, + 47.840631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SJOBQ9REOE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.880052, + 47.840631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SJOBQ9REOE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.131665, + 44.708957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GID9KTPSHB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.131665, + 44.708957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GID9KTPSHB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.75524852, + 42.55176041 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M8NQCQQXMD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.75524852, + 42.55176041 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M8NQCQQXMD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18668478, + 46.34909012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MD5OPC7NA3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18668478, + 46.34909012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MD5OPC7NA3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18668478, + 46.34909012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MD5OPC7NA3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18668478, + 46.34909012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MD5OPC7NA3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.042848, + 48.452547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TMZQBK19CJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06276, + 44.86083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CJWNPZGMIC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8908, + 47.9577 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A5L76J0IDO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.042848, + 48.452547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TMZQBK19CJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.023416, + 47.247204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DLUIDNHJUL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-17:00", + "start_date": "2022-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.18732993, + 44.83721199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NAR10DSPNM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.023416, + 47.247204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DLUIDNHJUL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-17:00", + "start_date": "2022-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.023416, + 47.247204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DLUIDNHJUL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-17:00", + "start_date": "2022-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.023416, + 47.247204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DLUIDNHJUL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-17:00", + "start_date": "2022-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06276, + 44.86083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CJWNPZGMIC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.837897, + 48.642373 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P54MDIWUGK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38173979, + 49.3700959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UCNXMWQKXU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38173979, + 49.3700959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UCNXMWQKXU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.687556, + 46.907309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MPFMVAYMZL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.687556, + 46.907309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MPFMVAYMZL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.546899, + 48.454037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YA93PLA1NX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.546899, + 48.454037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YA93PLA1NX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.546899, + 48.454037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YA93PLA1NX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.546899, + 48.454037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YA93PLA1NX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.21945835, + 47.93281674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XHLANB0NZX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.21945835, + 47.93281674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XHLANB0NZX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333352, + 48.062142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNUIB2KDQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.475283, + 48.415155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SORRN2XLAU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.056725, + 48.211137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z9THPO26DL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.837897, + 48.642373 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P54MDIWUGK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.555006, + 48.026902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R13OWRMEIG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333352, + 48.062142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNUIB2KDQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333352, + 48.062142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNUIB2KDQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333352, + 48.062142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNUIB2KDQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333352, + 48.062142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNUIB2KDQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333352, + 48.062142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNUIB2KDQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3266343, + 45.12885668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IXUXAPMXY4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3266343, + 45.12885668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IXUXAPMXY4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3266343, + 45.12885668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IXUXAPMXY4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3266343, + 45.12885668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IXUXAPMXY4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13335366, + 45.83682032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P47AQWL4FJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13335366, + 45.83682032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P47AQWL4FJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13335366, + 45.83682032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P47AQWL4FJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13335366, + 45.83682032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P47AQWL4FJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.081907, + 45.051415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WHWZWYFYDB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.081907, + 45.051415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WHWZWYFYDB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884542, + 44.961164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MV8MFFBHDJ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884542, + 44.961164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MV8MFFBHDJ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.081907, + 45.051415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WHWZWYFYDB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884542, + 44.961164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MV8MFFBHDJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.081907, + 45.051415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WHWZWYFYDB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.009508, + 44.902444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U4TXWRCMP1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.884542, + 44.961164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MV8MFFBHDJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.009508, + 44.902444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U4TXWRCMP1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.66997785, + 41.99213631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIBEU92G1H0V7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.66997785, + 41.99213631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIBEU92G1H0V7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73394, + 48.5073 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BCLQK08V8L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73394, + 48.5073 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BCLQK08V8L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73394, + 48.5073 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BCLQK08V8L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73394, + 48.5073 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BCLQK08V8L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.056725, + 48.211137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z9THPO26DL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9879523, + 48.6675565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BFNM5FW7HS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55017662, + 42.11461946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RBUT3DZJBH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55017662, + 42.11461946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RBUT3DZJBH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55017662, + 42.11461946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RBUT3DZJBH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55017662, + 42.11461946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RBUT3DZJBH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55017662, + 42.11461946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RBUT3DZJBH", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.546796, + 48.467465 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CX85FFNWSA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.29887, + 48.6106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFRBGTHDDU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.29887, + 48.6106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFRBGTHDDU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6461922, + 42.406751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XR1ACRARZZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32832409, + 48.0584202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LM09XMN1JX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.6461922, + 42.406751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XR1ACRARZZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32832409, + 48.0584202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LM09XMN1JX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89605592, + 44.42091556 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SBKBL8DGO5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Su 08:00-22:00", + "start_date": "2023-02-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89605592, + 44.42091556 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SBKBL8DGO5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Su 08:00-22:00", + "start_date": "2023-02-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05903764, + 48.4648759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YTZVC6LZLM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05903764, + 48.4648759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YTZVC6LZLM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05903764, + 48.4648759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YTZVC6LZLM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05903764, + 48.4648759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YTZVC6LZLM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56617758, + 48.58069919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EAREAOIQCM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56617758, + 48.58069919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EAREAOIQCM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56617758, + 48.58069919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EAREAOIQCM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.805107, + 48.513507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JPZIUHAPOR", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.07700755, + 47.35132365 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FAONUN3BFI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-18:00", + "start_date": "2021-12-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.07700755, + 47.35132365 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FAONUN3BFI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-18:00", + "start_date": "2021-12-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.29586834, + 48.62320433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TEKGN2NYYP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8488895, + 47.0251425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PIY0KLXO2X", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43806053, + 49.2490948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCZEGSP1N1", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43806053, + 49.2490948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCZEGSP1N1", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43806053, + 49.2490948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCZEGSP1N1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43806053, + 49.2490948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCZEGSP1N1", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43806053, + 49.2490948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCZEGSP1N1", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.43806053, + 49.2490948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCZEGSP1N1", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITBF0WI799", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITBF0WI799", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITBF0WI799", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITBF0WI799", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITBF0WI799", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITBF0WI799", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8488895, + 47.0251425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PIY0KLXO2X", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8488895, + 47.0251425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PIY0KLXO2X", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8488895, + 47.0251425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PIY0KLXO2X", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITBF0WI799", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITBF0WI799", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITBF0WI799", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.87236, + 48.18615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITBF0WI799", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022531, + 47.299516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMWA3KE6RA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022531, + 47.299516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMWA3KE6RA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIIHBFT9VM", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022531, + 47.299516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMWA3KE6RA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022531, + 47.299516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMWA3KE6RA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.322374, + 46.912927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EK78LCBFCD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X64IY5FMOZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.828736, + 47.187291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T1YNAOAES4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X64IY5FMOZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X64IY5FMOZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X64IY5FMOZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X64IY5FMOZ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X64IY5FMOZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X64IY5FMOZ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21906119, + 49.32456957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X64IY5FMOZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.322374, + 46.912927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EK78LCBFCD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIIHBFT9VM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.828736, + 47.187291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T1YNAOAES4", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.828736, + 47.187291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T1YNAOAES4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.828736, + 47.187291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T1YNAOAES4", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIIHBFT9VM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIIHBFT9VM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIIHBFT9VM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIIHBFT9VM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83122491, + 47.02271191 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLI1FZ6R1VYO98", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIIHBFT9VM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9879523, + 48.6675565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BFNM5FW7HS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.56233, + 48.284034 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DW28ZLLDTL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.530413, + 47.862077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MARTXJJ3YQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.530413, + 47.862077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MARTXJJ3YQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.350408, + 48.384312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JKC4QHAXRL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.805107, + 48.513507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JPZIUHAPOR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.555006, + 48.026902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R13OWRMEIG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.805107, + 48.513507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JPZIUHAPOR", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.764105, + 48.192361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RMKFDTC3M4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.244457, + 48.777484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CXWQCAZPW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9879523, + 48.6675565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BFNM5FW7HS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9879523, + 48.6675565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BFNM5FW7HS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9879523, + 48.6675565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BFNM5FW7HS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.475283, + 48.415155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SORRN2XLAU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.764105, + 48.192361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RMKFDTC3M4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.237425, + 47.871485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QFZHBEZJDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.56233, + 48.284034 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DW28ZLLDTL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.805107, + 48.513507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JPZIUHAPOR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.532413, + 48.386104 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EHGQLKGHD4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.287279, + 47.819499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VAQY64MMFC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.244457, + 48.777484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CXWQCAZPW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.625437, + 48.66224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A818R6G62Y", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9879523, + 48.6675565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BFNM5FW7HS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.287279, + 47.819499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VAQY64MMFC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.532413, + 48.386104 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EHGQLKGHD4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.532413, + 48.386104 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EHGQLKGHD4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.287279, + 47.819499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VAQY64MMFC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.287279, + 47.819499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VAQY64MMFC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.532413, + 48.386104 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EHGQLKGHD4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.625437, + 48.66224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A818R6G62Y", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.350408, + 48.384312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JKC4QHAXRL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.237425, + 47.871485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QFZHBEZJDZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83122491, + 47.02271191 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLI1FZ6R1VYO98", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.253051, + 47.110213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIIHBFT9VM", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513621, + 48.911787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BXEZOXEAUK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513621, + 48.911787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BXEZOXEAUK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.561378, + 48.957485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J01CFCFFW4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.561378, + 48.957485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J01CFCFFW4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.820695, + 45.279697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S1EZVRWU5Q", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.820695, + 45.279697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S1EZVRWU5Q", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46760856, + 49.09464425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PDDDCJBIC9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.437717, + 42.623928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HELMIXFOE8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.437717, + 42.623928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HELMIXFOE8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.437717, + 42.623928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HELMIXFOE8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.437717, + 42.623928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HELMIXFOE8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46760856, + 49.09464425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PDDDCJBIC9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46760856, + 49.09464425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PDDDCJBIC9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46760856, + 49.09464425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PDDDCJBIC9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589431, + 49.0887 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VSWHWM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589431, + 49.0887 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VSWHWM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.169949, + 49.216964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WJPBSARJUV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.169949, + 49.216964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WJPBSARJUV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.82486, + 41.9234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B2HE7Y57KD", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.82486, + 41.9234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B2HE7Y57KD", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1586584, + 42.3161558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WIUMZLWTQX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1586584, + 42.3161558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WIUMZLWTQX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.078972, + 43.63446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SI6AYMQRSF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.79055845, + 41.93261788 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NR1CEVICM8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.79055845, + 41.93261788 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NR1CEVICM8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.078972, + 43.63446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SI6AYMQRSF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.88983494, + 42.61057734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H1FDA2VWZ8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.88983494, + 42.61057734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H1FDA2VWZ8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.441054, + 42.595654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J7HVU7TKDJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.441054, + 42.595654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J7HVU7TKDJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46807, + 48.4143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NTGG7P8XLF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46807, + 48.4143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NTGG7P8XLF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.439726, + 42.599199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MCARLUQ2VL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.657465, + 41.908496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N0JPXHXQ78", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.657465, + 41.908496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N0JPXHXQ78", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.657465, + 41.908496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N0JPXHXQ78", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.657465, + 41.908496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N0JPXHXQ78", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10311, + 47.2713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AKLPHK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.10311, + 47.2713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AKLPHK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85479, + 47.5179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KGVDHE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85479, + 47.5179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KGVDHE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85479, + 47.5179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KGVDHE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85479, + 47.5179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KGVDHE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9976, + 48.119941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HC39F8XCC0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9976, + 48.119941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HC39F8XCC0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.439726, + 42.599199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MCARLUQ2VL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.80911, + 47.5099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X9UCRG8ZDU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.80911, + 47.5099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X9UCRG8ZDU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05189, + 47.3612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EY9BGCXHTS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05049997, + 48.9043635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NMFEQ90JG9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.05049997, + 48.9043635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NMFEQ90JG9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.369991039, + 48.94491689 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B6VI5YO8DJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.369991039, + 48.94491689 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B6VI5YO8DJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.369991039, + 48.94491689 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B6VI5YO8DJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.369991039, + 48.94491689 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B6VI5YO8DJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19265547, + 45.96356828 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HQNSJ8DLJY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19265547, + 45.96356828 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HQNSJ8DLJY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19265547, + 45.96356828 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HQNSJ8DLJY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08726284, + 48.2001145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IFYOQREIHG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08726284, + 48.2001145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IFYOQREIHG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08726284, + 48.2001145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IFYOQREIHG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08726284, + 48.2001145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IFYOQREIHG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88157, + 44.9596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTM9WEDT93", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5057343, + 42.44829656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CUECDGTUQW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5057343, + 42.44829656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CUECDGTUQW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.8195264, + 48.19529571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PPUUMBSESC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.8195264, + 48.19529571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PPUUMBSESC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.8195264, + 48.19529571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PPUUMBSESC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.8195264, + 48.19529571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PPUUMBSESC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S1YCYKCLFA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S1YCYKCLFA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S1YCYKCLFA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S1YCYKCLFA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S1YCYKCLFA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S1YCYKCLFA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S1YCYKCLFA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S1YCYKCLFA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S1YCYKCLFA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S1YCYKCLFA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S1YCYKCLFA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47203872, + 48.25104791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S1YCYKCLFA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45767958, + 48.86253975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZFEKUTTULE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45767958, + 48.86253975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZFEKUTTULE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45767958, + 48.86253975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZFEKUTTULE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45767958, + 48.86253975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZFEKUTTULE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.44111853, + 42.66602431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TXBSNOD426", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4461115, + 44.83617327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OXHA7QGZKR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4461115, + 44.83617327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OXHA7QGZKR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4461115, + 44.83617327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OXHA7QGZKR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4461115, + 44.83617327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OXHA7QGZKR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4461115, + 44.83617327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OXHA7QGZKR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.4461115, + 44.83617327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OXHA7QGZKR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.44111853, + 42.66602431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TXBSNOD426", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.44111853, + 42.66602431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TXBSNOD426", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.44111853, + 42.66602431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TXBSNOD426", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46312491, + 48.41155645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CYEDSCSTTC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KDPI0FF7U9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KDPI0FF7U9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KDPI0FF7U9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KDPI0FF7U9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KDPI0FF7U9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KDPI0FF7U9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KDPI0FF7U9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83145571, + 48.3298175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KDPI0FF7U9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02025, + 47.2802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G2MLRX4ZEK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02025, + 47.2802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G2MLRX4ZEK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02025, + 47.2802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G2MLRX4ZEK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02025, + 47.2802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G2MLRX4ZEK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GIAIHIV8XR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02973957, + 47.90055518 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AQQEZYTWL4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02938061, + 47.9004567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QNCX1RC4JP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02284172, + 47.89907447 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IRPP8IVUJA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02284172, + 47.89907447 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IRPP8IVUJA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77855612, + 48.49861058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YBRK29KKAC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77855612, + 48.49861058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YBRK29KKAC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77855612, + 48.49861058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YBRK29KKAC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.77855612, + 48.49861058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YBRK29KKAC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GIAIHIV8XR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GIAIHIV8XR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GIAIHIV8XR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GIAIHIV8XR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GIAIHIV8XR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02973957, + 47.90055518 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AQQEZYTWL4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02973957, + 47.90055518 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AQQEZYTWL4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02938061, + 47.9004567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QNCX1RC4JP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5346073, + 48.58220745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YCCDL67FO4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5346073, + 48.58220745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YCCDL67FO4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02973957, + 47.90055518 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AQQEZYTWL4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5346073, + 48.58220745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YCCDL67FO4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.5346073, + 48.58220745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YCCDL67FO4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GIAIHIV8XR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34803255, + 48.38331171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GIAIHIV8XR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.7611361, + 48.53579815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IKQI33EAGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17138856, + 49.06052439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSMOIFZBLP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15082552, + 48.55487429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQJ0OJAZ1J", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46967649, + 48.43008916 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TADFEWONYG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46967649, + 48.43008916 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TADFEWONYG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46994658, + 48.43078542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BL46XIQUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-20:15,Sa 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.46992334, + 48.43073859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNRKQHLAFM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408368, + 48.399504 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZZB9I4EIY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408368, + 48.399504 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZZB9I4EIY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408368, + 48.399504 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZZB9I4EIY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408368, + 48.399504 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZZB9I4EIY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408368, + 48.399504 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZZB9I4EIY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.408368, + 48.399504 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SZZB9I4EIY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.514001, + 48.459639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LGDRVNGNWU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39553, + 49.3902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UGWUQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.39553, + 49.3902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UGWUQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55516881, + 42.21474029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X1F885A2LS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55516881, + 42.21474029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X1F885A2LS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55516881, + 42.21474029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X1F885A2LS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55516881, + 42.21474029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X1F885A2LS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55516881, + 42.21474029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X1F885A2LS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.553523, + 42.157101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DS2ZKBGWPN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.552278, + 42.160753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UGFTMLOCNC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.552278, + 42.160753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UGFTMLOCNC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.552278, + 42.160753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UGFTMLOCNC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.552278, + 42.160753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UGFTMLOCNC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.553523, + 42.157101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DS2ZKBGWPN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.55516881, + 42.21474029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X1F885A2LS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.744058, + 44.468806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QAFCVFAWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.744058, + 44.468806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QAFCVFAWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.744058, + 44.468806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QAFCVFAWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.744058, + 44.468806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QAFCVFAWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3183, + -20.9455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RLWJHC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3183, + -20.9455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RLWJHC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11726363, + 46.95470032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XXHDK2JIDV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11726363, + 46.95470032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XXHDK2JIDV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75787184, + 44.56716292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QS6DHJXSDF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:45-20:00,Su 09:00-12:30", + "start_date": "2022-02-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75787184, + 44.56716292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QS6DHJXSDF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:45-20:00,Su 09:00-12:30", + "start_date": "2022-02-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75787184, + 44.56716292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QS6DHJXSDF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:45-20:00,Su 09:00-12:30", + "start_date": "2022-02-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75787184, + 44.56716292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QS6DHJXSDF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:45-20:00,Su 09:00-12:30", + "start_date": "2022-02-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.295977, + 48.242535 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQ31SB4676", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.295977, + 48.242535 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQ31SB4676", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EM1XTBUMGN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.45815291, + 48.75110645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ACCWKSNKDG", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.45815291, + 48.75110645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ACCWKSNKDG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91933021, + 49.14865044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J3N1KOHIJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.45815291, + 48.75110645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ACCWKSNKDG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.45815291, + 48.75110645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ACCWKSNKDG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EM1XTBUMGN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EM1XTBUMGN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EM1XTBUMGN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EM1XTBUMGN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EM1XTBUMGN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EM1XTBUMGN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18306671, + 49.23610163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EM1XTBUMGN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88181591, + 44.90926121 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YCDY4DXWFE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88181591, + 44.90926121 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YCDY4DXWFE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88181591, + 44.90926121 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YCDY4DXWFE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88181591, + 44.90926121 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YCDY4DXWFE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SOUICAHQGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SOUICAHQGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SOUICAHQGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SOUICAHQGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SOUICAHQGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SOUICAHQGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SOUICAHQGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SOUICAHQGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SOUICAHQGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22350978, + 44.87554985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SOUICAHQGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFHQDF7H5S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFHQDF7H5S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFHQDF7H5S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFHQDF7H5S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85478746, + 46.99932607 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y4W4XRLU0W", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84283778, + 47.04146327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T1K60S6LOO", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84283778, + 47.04146327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T1K60S6LOO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84283778, + 47.04146327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T1K60S6LOO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84283778, + 47.04146327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T1K60S6LOO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFHQDF7H5S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFHQDF7H5S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.55986421, + 48.28278413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WCCOPA7FR3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.55986421, + 48.28278413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WCCOPA7FR3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.55986421, + 48.28278413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WCCOPA7FR3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.55986421, + 48.28278413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WCCOPA7FR3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.55986421, + 48.28278413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WCCOPA7FR3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.55986421, + 48.28278413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WCCOPA7FR3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85478746, + 46.99932607 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y4W4XRLU0W", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84283778, + 47.04146327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T1K60S6LOO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84283778, + 47.04146327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T1K60S6LOO", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37487, + 48.718814 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G3DXGKYHRM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37487, + 48.718814 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G3DXGKYHRM", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37487, + 48.718814 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G3DXGKYHRM", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85478746, + 46.99932607 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y4W4XRLU0W", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85478746, + 46.99932607 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y4W4XRLU0W", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8766102, + 46.17930297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QH4GD1TUH4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-19:30", + "start_date": "2022-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQWX3AC3GR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQWX3AC3GR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQWX3AC3GR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQWX3AC3GR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQWX3AC3GR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQWX3AC3GR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQWX3AC3GR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQWX3AC3GR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34782085, + 48.73735181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OMWSI0JG0A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34782085, + 48.73735181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OMWSI0JG0A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34782085, + 48.73735181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OMWSI0JG0A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34782085, + 48.73735181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OMWSI0JG0A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34782085, + 48.73735181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OMWSI0JG0A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34782085, + 48.73735181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OMWSI0JG0A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87636127, + 46.17864182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MKOVST34HX", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-19:30", + "start_date": "2022-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQWX3AC3GR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87636127, + 46.17864182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MKOVST34HX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-19:30", + "start_date": "2022-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8766102, + 46.17930297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QH4GD1TUH4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-19:30", + "start_date": "2022-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87636127, + 46.17864182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MKOVST34HX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-19:30", + "start_date": "2022-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87636127, + 46.17864182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MKOVST34HX", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-19:30", + "start_date": "2022-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87636127, + 46.17864182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MKOVST34HX", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-19:30", + "start_date": "2022-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87636127, + 46.17864182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MKOVST34HX", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-19:30", + "start_date": "2022-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQWX3AC3GR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQWX3AC3GR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQWX3AC3GR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQWX3AC3GR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.34581395, + 48.09107669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQWX3AC3GR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.580701, + 47.44912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIO765R6CG78K", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35128, + 46.9011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "pontarroc", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.31933, + 47.0162 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BKYNQA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.76868, + 47.3894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LQHELL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84408174, + 47.00910414 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TD9JKXMCX6", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9460659, + 47.21332426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XIGDYUXUYP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9460659, + 47.21332426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XIGDYUXUYP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.059057, + 47.351112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTBAPZKKLS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.059057, + 47.351112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTBAPZKKLS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.76868, + 47.3894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LQHELL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.34236, + 46.9226 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "doubshyper", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06973, + 47.0391 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AEDHEK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.893086, + 47.47642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRIXQATI3S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8824, + 47.1039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XRTQBE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2018-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.38398, + 46.9452 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KHXZGS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.38398, + 46.9452 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KHXZGS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.813725, + 47.318939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIOK3JAN1K99S", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.813725, + 47.318939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIOK3JAN1K99S", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35128, + 46.9011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "pontarroc", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30319, + 46.8135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UULUVH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96517, + 47.2132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XFPUWS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2018-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.272181, + 47.147744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQUH2Z082H", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96517, + 47.2132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XFPUWS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2018-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.272181, + 47.147744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQUH2Z082H", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.377671, + 47.392855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CDMZFUQMXL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8824, + 47.1039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XRTQBE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2018-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.272181, + 47.147744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQUH2Z082H", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.580701, + 47.44912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIO765R6CG78K", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.377671, + 47.392855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CDMZFUQMXL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.377671, + 47.392855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CDMZFUQMXL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.813725, + 47.318939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIOK3JAN1K99S", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.580701, + 47.44912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIO765R6CG78K", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35128, + 46.9011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "pontarroc", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35128, + 46.9011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "pontarroc", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.30319, + 46.8135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UULUVH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81312, + 47.448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "mandeuresuper", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.60546, + 47.0585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Morteaugare", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81312, + 47.448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "mandeuresuper", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.60546, + 47.0585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Morteaugare", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.377671, + 47.392855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CDMZFUQMXL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.48002, + 47.0473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "gilleycret", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.34571, + 46.9019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "pontarcine", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14584, + 47.1068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VVCNFQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2018-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14584, + 47.1068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VVCNFQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2018-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.48002, + 47.0473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "gilleycret", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14793, + 47.1071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NNYTYC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2018-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.67085, + 47.0591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "villerbartho", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.893086, + 47.47642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRIXQATI3S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.28735, + 47.0477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RGGHFS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.67085, + 47.0591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "villerbartho", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.15813, + 46.8575 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Frasnegare", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.33487, + 46.8551 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "oyepalletsdf", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.33487, + 46.8551 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "oyepalletsdf", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.15813, + 46.8575 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Frasnegare", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.53992, + 47.2143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "pierrefonmair", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78209, + 47.0399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "arcetsenans", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78209, + 47.0399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "arcetsenans", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35128, + 46.9011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "pontarroc", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-10-23", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06973, + 47.0391 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AEDHEK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3396, + 47.0948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UBXXUV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.31933, + 47.0162 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BKYNQA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.28735, + 47.0477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RGGHFS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65814, + 47.2621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YZWNLR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3396, + 47.0948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UBXXUV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.65814, + 47.2621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YZWNLR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84116, + 47.4815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "audincourpos", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84116, + 47.4815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "audincourpos", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84116, + 47.4815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "audincourpos", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.60476, + 47.054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "morteaucoll", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58382, + 47.2943 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YJNMSJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1953, + 46.7144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YLQMYY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1953, + 46.7144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YLQMYY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46326, + 46.9924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRUYZT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2018-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.46326, + 46.9924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRUYZT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2018-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.60476, + 47.054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "morteaucoll", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.774542, + 47.23433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RTZIYHR634", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84116, + 47.4815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "audincourpos", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.774542, + 47.23433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RTZIYHR634", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.377671, + 47.392855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CDMZFUQMXL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.58382, + 47.2943 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YJNMSJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39595, + 47.1819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "vercelville", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.39595, + 47.1819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "vercelville", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.53992, + 47.2143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "pierrefonmair", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93816102, + 44.92160355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU98V8U1LGVB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93816102, + 44.92160355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIU98V8U1LGVB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.33156329, + 46.90606168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VUY2EBKCXJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53880496, + 49.26570602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BNRBDCEV7P", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53880496, + 49.26570602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BNRBDCEV7P", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53880496, + 49.26570602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BNRBDCEV7P", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.35128, + 46.9011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "pontarroc", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.14793, + 47.1071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NNYTYC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2018-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.34236, + 46.9226 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "doubshyper", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.34571, + 46.9019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "pontarcine", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93019521, + 44.92151277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZAWGJI2HTH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1288, + 47.6294 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PATTYH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2018-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93019521, + 44.92151277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZAWGJI2HTH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1288, + 47.6294 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PATTYH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2018-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.639236, + 41.909315 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BAHAHGV1PV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07022881, + 44.14649426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PHXLM9QQUG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07022881, + 44.14649426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PHXLM9QQUG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.639236, + 41.909315 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BAHAHGV1PV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07022881, + 44.14649426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PHXLM9QQUG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07022881, + 44.14649426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PHXLM9QQUG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88935, + 50.50677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NDOJ4662KH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76673, + 48.4924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGOI4WEQ4K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76673, + 48.4924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGOI4WEQ4K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-12", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83762445, + 47.01736159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KCALTA6R9C", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83762445, + 47.01736159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KCALTA6R9C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83762445, + 47.01736159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KCALTA6R9C", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83762445, + 47.01736159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KCALTA6R9C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55611542, + 45.04765628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGHLVV2XSS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55611542, + 45.04765628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGHLVV2XSS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.04393, + 48.4501 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RJEPQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.04393, + 48.4501 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RJEPQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.796775, + 48.546048 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TFABMXZF7B", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.690373, + 48.181674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OMMSBZGWY6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.796775, + 48.546048 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TFABMXZF7B", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.019182, + 47.982768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UK3CJTWPKE", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.019182, + 47.982768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UK3CJTWPKE", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.690373, + 48.181674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OMMSBZGWY6", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.463361, + 48.418952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CPBDRSCXA3", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.463361, + 48.418952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CPBDRSCXA3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022432, + 47.303241 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCOPFREFDC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022432, + 47.303241 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCOPFREFDC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022432, + 47.303241 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCOPFREFDC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.902219, + 47.157872 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W3AAB7VF4D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.132028, + 48.593161 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N8GZ5CIJWA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.132028, + 48.593161 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N8GZ5CIJWA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.886405, + 46.992607 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMOUXSVXCM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90226, + 47.1742 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NRDWFQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.518977, + 48.806386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DWO4IMGBLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96365, + 47.2273 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Besacefs", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.01959915, + 47.2340438 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QJANFK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03128, + 47.2392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "besacstpaul", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.96365, + 47.2273 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Besacefs", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.01967, + 47.2341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QJANFK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02526, + 47.2351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "besacgranvel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03128, + 47.2392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "besacstpaul", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90226, + 47.1742 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NRDWFQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02107, + 47.2349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Besacstjacq", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02107, + 47.2349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Besacstjacq", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.902219, + 47.157872 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W3AAB7VF4D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.02526, + 47.2351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "besacgranvel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.518977, + 48.806386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DWO4IMGBLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.518977, + 48.806386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DWO4IMGBLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.518977, + 48.806386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DWO4IMGBLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47866314, + 44.82811635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CS0IZRKH3Q", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47866314, + 44.82811635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CS0IZRKH3Q", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47866314, + 44.82811635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CS0IZRKH3Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.506584, + 48.225123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJH8ANW0TM25Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88988, + 44.960648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RNDADH3NG0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88988, + 44.960648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RNDADH3NG0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88988, + 44.960648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RNDADH3NG0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88988, + 44.960648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RNDADH3NG0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.459112, + 48.419313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TK3O6QSGPC", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.459112, + 48.419313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TK3O6QSGPC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEVCZWWHW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEVCZWWHW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEVCZWWHW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEVCZWWHW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025142, + 47.30362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UB39VOTDAV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025142, + 47.30362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UB39VOTDAV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025142, + 47.30362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UB39VOTDAV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025142, + 47.30362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UB39VOTDAV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025142, + 47.30362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UB39VOTDAV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.025142, + 47.30362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UB39VOTDAV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEVCZWWHW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEVCZWWHW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEVCZWWHW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024663, + 47.301901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BALHQJMGSA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024663, + 47.301901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BALHQJMGSA", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEVCZWWHW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OAZ5L2OFUL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OAZ5L2OFUL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OAZ5L2OFUL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OAZ5L2OFUL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEVCZWWHW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024957, + 47.302794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEVCZWWHW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.71976362, + 48.0198099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DZPQJFHGIZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.71976362, + 48.0198099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DZPQJFHGIZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.71976362, + 48.0198099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DZPQJFHGIZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.71976362, + 48.0198099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DZPQJFHGIZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XGXZ9LPBQY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XGXZ9LPBQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XGXZ9LPBQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76363868, + 45.19216184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T9THS0ZXQQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76363868, + 45.19216184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T9THS0ZXQQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76363868, + 45.19216184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T9THS0ZXQQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7634402, + 45.19078196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4TBD6CVLX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76363868, + 45.19216184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T9THS0ZXQQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7634402, + 45.19078196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4TBD6CVLX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7634402, + 45.19078196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4TBD6CVLX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76363868, + 45.19216184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T9THS0ZXQQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7634402, + 45.19078196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4TBD6CVLX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7634402, + 45.19078196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4TBD6CVLX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7634402, + 45.19078196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M4TBD6CVLX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76363868, + 45.19216184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T9THS0ZXQQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XGXZ9LPBQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XGXZ9LPBQY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XGXZ9LPBQY", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XGXZ9LPBQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3347204, + 47.14713038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XGXZ9LPBQY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99314212, + 45.63022046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J9YFZ96UNZ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89759651, + 48.40075355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRYGY9TY8G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89759651, + 48.40075355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRYGY9TY8G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89759651, + 48.40075355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRYGY9TY8G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.89759651, + 48.40075355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRYGY9TY8G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71811691, + 45.18910526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGMLBZ12K4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXLCWHBKRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXLCWHBKRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXLCWHBKRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXLCWHBKRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXLCWHBKRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXLCWHBKRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXLCWHBKRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXLCWHBKRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXLCWHBKRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08129056, + 48.0158875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXLCWHBKRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71811691, + 45.18910526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGMLBZ12K4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71811691, + 45.18910526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGMLBZ12K4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B4SFETIVZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B4SFETIVZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B4SFETIVZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B4SFETIVZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B4SFETIVZ4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B4SFETIVZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B4SFETIVZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B4SFETIVZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B4SFETIVZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.99773851, + 48.67870648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B4SFETIVZ4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5473872, + 42.26291493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "V7SFAZJTXG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5473872, + 42.26291493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "V7SFAZJTXG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5473872, + 42.26291493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "V7SFAZJTXG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5473872, + 42.26291493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "V7SFAZJTXG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.43693124, + 42.62800905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CF7MTSVDNC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31526251, + 44.93999197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJ5RGFW83IU2L", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31526251, + 44.93999197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJ5RGFW83IU2L", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.19972481, + 42.45139658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MK1KUGXZJN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.19972481, + 42.45139658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MK1KUGXZJN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1649234, + 41.3905216 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLHU7YHXF1J6VY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1649234, + 41.3905216 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLHU7YHXF1J6VY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.1708877, + 42.29943501 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GWBBXYWGGI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.8048678, + 41.95966708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LIRJJZROMK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.8048678, + 41.95966708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LIRJJZROMK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.45076287, + 42.54955641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B4S2UL0ROL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.425199, + 48.440343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQYT3DE6ZN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.425199, + 48.440343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQYT3DE6ZN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.425199, + 48.440343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQYT3DE6ZN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.425199, + 48.440343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQYT3DE6ZN", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.739464, + 48.501783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DP1GJBV0RC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.739464, + 48.501783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DP1GJBV0RC", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.739464, + 48.501783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DP1GJBV0RC", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.46104976, + 48.74956787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PM3WP4TS73", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47967769, + 48.41308043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QFRX2Z7OPB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.46104976, + 48.74956787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PM3WP4TS73", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.425199, + 48.440343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQYT3DE6ZN", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47967769, + 48.41308043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QFRX2Z7OPB", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01321, + 50.0101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "conde22", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44312, + 49.9422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WJLBKW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01321, + 50.0101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "conde22", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44312, + 49.9422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WJLBKW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.43693124, + 42.62800905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CF7MTSVDNC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.88945378, + 42.61074882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EPVLVLOVWF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23304351, + 49.11482753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WWFF9DHV9P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.76546431, + 41.94692817 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P2VQPNZVP8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23304351, + 49.11482753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WWFF9DHV9P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCAR0JL1LK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCAR0JL1LK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCAR0JL1LK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCAR0JL1LK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCAR0JL1LK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCAR0JL1LK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCAR0JL1LK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27735034, + 41.60411861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCAR0JL1LK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74049362, + 48.50173471 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DAWXONRZ2Q", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-18:30,Sa 09:00-17:30", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74049362, + 48.50173471 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DAWXONRZ2Q", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-18:30,Sa 09:00-17:30", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.74049362, + 48.50173471 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DAWXONRZ2Q", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-18:30,Sa 09:00-17:30", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JAQ9DIPMFU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JAQ9DIPMFU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468, + 48.51454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JAQ9DIPMFU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JAQ9DIPMFU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JAQ9DIPMFU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JAQ9DIPMFU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468, + 48.51454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JAQ9DIPMFU", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JAQ9DIPMFU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JAQ9DIPMFU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JAQ9DIPMFU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JAQ9DIPMFU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JAQ9DIPMFU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05468501, + 48.51455695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JAQ9DIPMFU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.760692, + 42.546508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BK6QUX36OK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.760692, + 42.546508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BK6QUX36OK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9941156, + 47.2429598 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "393417522", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Besançon", + "ref": "64859", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9941156, + 47.2429598 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "393417522", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Besançon", + "ref": "64860", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9941156, + 47.2429598 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "393417522", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Besançon", + "ref": "64862", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9941156, + 47.2429598 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "393417522", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Toyota - Besançon", + "ref": "64861", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1, + 47.27 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MEDIODENT", + "owner:ref:FR:SIREN": "898168273", + "email": "mediodent@gmail.com", + "phone": "03 81 60 06 00", + "network": "MEDIODENT", + "ref": "53651315-d7cb-4d91-a2ec-4ff2e8d06ae0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.155058, + 48.995907 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "351440078", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA Evreux GHV", + "ref": "109624", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 08:30-19:00", + "start_date": "2022-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1299419, + 47.3207567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "808872097", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché CONTACT Marchaux et Drive - Semmax", + "ref": "87473", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1299419, + 47.3207567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "808872097", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché CONTACT Marchaux et Drive - Semmax", + "ref": "87472", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1299419, + 47.3207567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "808872097", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché CONTACT Marchaux et Drive - Semmax", + "ref": "47126", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1299419, + 47.3207567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "808872097", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché CONTACT Marchaux et Drive - Semmax", + "ref": "47104", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1724724, + 47.4218283 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.49542672, + 47.3148725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.171659, + 47.421321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12712458, + 47.32890163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.125201, + 47.327026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.657888301758055, + 41.908579309038004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "812328128", + "email": "oscar@electromaps.com", + "phone": "34 931.574.967", + "network": "Résidence les calanques", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "TRUE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.8293749, + 48.5750142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "444910418", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché MORLAIX - COMADU", + "ref": "47222", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.147915, + 43.123458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "397554791", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "INTERMARCHE HYERES - SADIP", + "ref": "95344", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6709003, + 45.5432207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "411793177", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "BRICOMARCHE NONTRON - S.A.S PERIVERT", + "ref": "76647", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-19:00", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6709003, + 45.5432207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "411793177", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "BRICOMARCHE NONTRON - S.A.S PERIVERT", + "ref": "76648", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-19:00", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7461104, + 45.17941688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "338385685", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA PERIGUEUX - MAGOT CAVARD", + "ref": "131517", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", + "start_date": "2022-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7461104, + 45.17941688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "338385685", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA PERIGUEUX - MAGOT CAVARD", + "ref": "131516", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": " Mo-Fr 08:00–12:00,Mo-Fr 14:00–19:00,Sat 09:00-18:00", + "start_date": "2022-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7461104, + 45.17941688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "338385685", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA PERIGUEUX - MAGOT CAVARD ", + "ref": "131524", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", + "start_date": "2022-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7461104, + 45.17941688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "338385685", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA PERIGUEUX - MAGOT CAVARD", + "ref": "131525", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00", + "start_date": "2022-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.065799, + 47.354481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "307016121", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GARAGE NELLO CHELLI - DIJON", + "ref": "55087", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 07:45-12:00,Mo-Fr 13:45-19:00,Sat 09:00-19:00", + "start_date": "2021-02-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.065799, + 47.354481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "307016121", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GARAGE NELLO CHELLI - DIJON", + "ref": "55086", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 07:45-12:00,Mo-Fr 13:45-19:00,Sat 09:00-19:00", + "start_date": "2021-02-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86082418, + 47.0236522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "307016121", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GARAGE NELLO CHELI - BEAUNE", + "ref": "61319", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 07:45-12:00,Mo-Fr 13:45-19:00,Sat 09:00-18:00", + "start_date": "2021-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86082418, + 47.0236522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "307016121", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GARAGE NELLO CHELI - BEAUNE", + "ref": "61318", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 07:45-12:00,Mo-Fr 13:45-19:00,Sat 09:00-18:00", + "start_date": "2021-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.3372150061411605, + 49.22868351448894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVERON", + "owner:ref:FR:SIREN": "848595880", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "EVBOX", + "ref": "EVB-P1941007", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47419, + 48.427342 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "780096376", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "CENTRAL AUTO - MAZDA BREST", + "ref": "49544", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "start_date": "2020-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.47419, + 48.427342 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "780096376", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "CENTRAL AUTO - MAZDA BREST", + "ref": "49575", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00", + "start_date": "2020-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7417018, + 44.52534544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "511748881", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "DPA -MAZDA MONTELIMAR", + "ref": "60127", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-sat 08:00-19:00,Sun 09:00-18:00", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1653782, + 43.96015 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "533577581", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "HYUNDAI", + "ref": "FRFR1EFGBG1", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-07-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.668901, + 41.906105 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "748341ca-8462-4f72-bf94-7ffc369e534e", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.506677, + 42.4479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "2cd293ec-8e21-4d6d-b57f-6caafbbdaba8", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.473992, + 42.77468 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "e66a1a8e-3139-4937-8f93-5047adf628dd", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.211675, + 41.406843 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "867e81ce-5188-416a-ad4f-5397262a0238", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.124327, + 41.40988 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "193c7e74-429d-4886-aeb0-b32130ac90ff", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.437093, + 42.594663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "68b650b5-14f6-4e1b-b0bb-1df531cbad31", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.479663, + 42.54706 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "e98b0d45-1648-4bb3-8334-ec83df10dcae", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.437152, + 42.594581 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "460352ff-39b2-4992-b41f-d1c8049fce24", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.046333, + 42.000249 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "b321e50d-b3d7-489f-a3a6-f2f2f0b3cd2a", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.805342, + 41.89218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "7b11480f-e105-4635-b4a8-ef0ba5c01b88", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.793688, + 41.707589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "a3183c38-0b81-4c65-9707-dce2b446fa53", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.389963, + 41.924136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "c6584ed1-7a9c-4567-8c24-27092661687b", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.021637, + 42.637722 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "0a91bd69-34a2-455d-b6b4-cb69691e05bc", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.008317, + 42.334186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "f8aa7fa8-c06f-4b19-886a-87a3a548549e", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.148236, + 41.721265 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "66232122-0a47-4115-add7-b02c54d0ced3", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.467278, + 42.628813 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "dba85b2f-0987-475f-af0f-c9e73bed1006", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.154738, + 41.934884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "8ebb8d2e-f381-41b1-af4b-5299bdf492ca", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.636855, + 42.238424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "0ed6649f-72d7-4b44-a85e-77c60c3a0c5e", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.801244, + 42.167298 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "bf861d33-2d66-43a3-98dc-7a8e5a31a017", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.697524, + 42.401596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "933f4c75-7ec9-44a4-a558-60acfa011158", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.918164, + 41.672692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "f594a621-c183-411c-8549-54269cf30c0f", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.212628, + 42.103312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "45e71a75-aef8-4b84-8511-8112a20c8716", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.855216, + 42.508404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "38436051-4763-44cd-80c8-8cf33648ceeb", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.30191, + 42.673079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "ba5e516b-e37b-4cbd-9739-86be9084248a", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.35969, + 42.60074 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "4de294f3-d05c-4151-8ebb-8206f8c412e8", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.20858, + 42.466325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "ab8848af-a246-42f6-8abe-e68bf27a25e8", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.348162, + 42.964422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "7250ce15-0ed6-4b88-a9f6-d0a1ff1340fb", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.786427, + 41.877695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "02b59851-9d82-4401-94af-537b12b1e16f", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.157313, + 42.301834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "528993a4-ab02-4fef-a437-7b0c1776fbf0", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.757366, + 42.568969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "e797adbb-17d2-4d48-843c-cef357286c7b", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.16492, + 41.390111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "8dbb656e-d5e4-443c-ad35-6b21f0bda600", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.277777, + 41.60608 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "579c1d14-019d-4f70-b766-a8a55eeafeb2", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.277811, + 41.606221 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "3cd77ead-6640-4460-a400-7feac71a06fd", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.277841, + 41.606329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "6007835c-c55e-4cd8-ab0f-85b890e9367f", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.277871, + 41.60646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "09fff65b-9f7c-4439-bd9f-2e8d7fdd2e8a", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.277918, + 41.60664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "6d34afed-25f2-423f-9620-2997a067caeb", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.865745, + 42.009528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "62274d29-ccc4-4ee9-9718-17380a46a31e", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.705408, + 42.130362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "cb841a91-eb88-4e84-81a1-ecb403acfa28", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.9579, + 41.64414 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "5601d978-d008-4809-9fd7-e93f2a47f189", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.795516, + 42.252954 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "7d20c1f9-c4aa-4dc7-87ac-0f4cf0cafa97", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.764996, + 41.928461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "be91f8ff-3c6a-45fb-b3a9-ab1e4f6a80c5", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.346448, + 41.697254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "0103fcc1-2f21-4416-82f0-1abd3e740d7f", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.679228, + 41.907975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "f92e71a8-f1a5-4d35-8cc8-85e286e7cd3f", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.725979, + 41.916807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "3e0ea59a-149e-4549-9601-8d2d3a3376ef", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.740676, + 41.932975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "b202cf34-2f84-4171-bfff-253a1d2e8711", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.753212, + 41.943433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "b2ae1699-0590-4eb1-8cc9-f4e0c977b308", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.740141, + 41.927716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "adfa58fa-fb71-4cab-bdb8-140b41ce32aa", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.455771, + 42.957671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "81f11bdc-6410-436b-8def-0abd1f081ba1", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.165863, + 42.169635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "90028f89-0376-4d9c-811b-cdcfcbb2a22d", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7585, + 42.568042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "881bd651-f45d-469c-bc3b-b19978a31617", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.762181, + 42.554473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "1c748c8b-76c7-4136-8f8d-855ec69cf8ca", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.762064, + 42.554579 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "4e36e768-5f8c-4a1b-9289-fffbf9fae3f0", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.440808, + 42.550419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "bb3d81f5-2984-40ef-864c-e97dc2878092", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.406403, + 42.017286 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "d5de5dc8-3eb6-4b4d-b5ff-766dadba305c", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.148584, + 42.30688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "57098fad-2b57-440a-9c01-04dc2c353302", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.757215, + 42.543506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "bcf252a2-2c1a-4a66-9e5e-9bfa3fb1a0cc", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.333253, + 41.645189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "ccbd71c7-a443-42d2-bb7b-d9c3c253bfd4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.868565, + 41.645788 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "552ec407-68b9-469f-b566-8bd6035ed9eb", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.868415, + 41.645732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "7b298eb5-9b0c-4a7d-800d-d07a5d90f5e6", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.936156, + 42.636601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "f5750116-3eb5-4fb2-8cd7-9a9b91010e62", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.938499, + 42.635771 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "fc2b7892-b112-45e5-aa08-022829efb409", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.934076, + 42.637674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "19d293a0-0b1a-49ec-8a45-0678e2c19af4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.176994, + 42.227227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "a33024cd-5b86-4b7d-9d40-0d80630cccf6", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.367982, + 41.686208 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "b6777fc5-069b-4501-8219-863e4c608b73", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.367982, + 41.686208 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "1355111d-5b55-49f7-b569-5889d6ad6bcb", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.394812, + 41.699134 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "abc031c5-c64a-4f7e-8cc7-a4c656095c5b", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.535097, + 42.405317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "2bfd98ec-42fa-4df8-bdb2-72fed2a6d34e", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.709331, + 42.301326 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "b1cef114-1c75-43cf-9fbc-dff78b180795", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.803926, + 41.712381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "caacb69b-d250-4a6d-86a3-ab98c744d9a1", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.963848, + 41.621902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "609980fa-e716-4abc-ab51-7a63f47bc2ee", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.964013, + 41.621461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "53a75289-2870-423c-ac4f-df14dbbbcaa7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.95273, + 41.570971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "72900b6e-f8f0-4678-b2c2-6e08813108e9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.905017, + 42.121415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "36523750-f5a3-41d4-9b18-03808fda8c74", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.915746, + 41.680914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "0a90b56a-3e1d-4a3f-831c-6353d15216ba", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.300121, + 41.623434 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "307833fb-70cf-42db-9451-757a717f3c00", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.254713, + 41.580418 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "fa741161-be34-4647-9504-3856b861d9fd", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.279842, + 41.612182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "832ce3eb-7f28-4464-9a0f-2c475e495dec", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.28433, + 41.599686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "cbe249c5-c3d7-486c-845a-d71f4da570fc", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.276693, + 41.591126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "f658a7b8-b650-48cb-b5f6-d0df6e9cdca3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27674, + 41.593491 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "aca2ec4c-fd6e-4ded-aace-52a1ca9d252a", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.326701, + 41.565514 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "6d3fcb21-d301-4fdd-ad7e-43400fe49982", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.300442, + 41.620129 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "87513969-02bc-4cb6-8a8d-1e228ff293c7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.721916, + 42.253555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "f330dd0d-d2ce-4f64-97a8-569f542758de", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.351695, + 42.908693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "ae1d3396-7568-4638-89e9-c4c0ea16fbd7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.37966, + 41.666035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "f72436b4-53d0-40c0-9ce4-f8d7e5676592", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.458543, + 42.465956 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "3e0e2208-f617-46b3-9deb-6e46a0562283", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.465466, + 42.550769 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "fe7a16e5-398b-48e3-b101-194abc9e8217", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.146628, + 41.678688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "0fb69050-c96f-4dac-9305-f159ab58d22c", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.350708, + 42.96541 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "6e542516-266d-42ae-8d2d-4c8a422812bb", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.435675, + 41.999154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "a9ebe6b1-f066-42bf-b055-2d069d1686ae", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.949884, + 42.168536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "92fe8f97-f0d3-4600-ae39-30d031b162ed", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.548939, + 42.225865 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "1d26f354-cc73-4e46-b142-66ebb0ef11cd", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.548778, + 42.225964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "07dc7cad-41cb-4af5-a02f-472689ec21d9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.428504, + 42.476445 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "b889876b-b802-4b30-86f0-8a039833f95b", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.446608, + 42.550499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "69c04b2c-44ed-47fb-9759-fe3d8c06fef1", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.442201, + 42.528147 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "233b10e1-981d-4810-be48-3590cfad5412", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.53063, + 42.548657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "44033ed4-e1cf-4137-ab95-223a836fddac", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.408167, + 42.897789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "1bac8abd-42cd-4df5-9c4e-966bd9f70657", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.896456, + 41.698015 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "4f60a739-4046-41a2-a48f-495ffad74fcb", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.456341, + 42.741337 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "00effb79-072c-45b1-97c5-96657f7983c0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.389505, + 42.469061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "bf0dfde2-f504-41dc-81bf-f62a8501bc34", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.961906, + 42.632429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "0790a741-5825-4ddb-bae6-d6740ba4547e", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.954898, + 42.629787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "d6dd38d0-a7e5-47ae-a01a-2ee7ddc0de61", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.529622, + 42.363212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "e0caaa09-9a5c-4712-a55f-e60f66a1fd3b", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.531038, + 42.38426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "a703da54-fda0-4b54-88e4-7b727a4bc12c", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.350042, + 42.614509 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "2558af0a-b77d-4ca9-a9a8-9e1a6531518d", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.930927, + 41.688053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "b330af16-a9fa-4a3d-b184-904c8fdc1836", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.835956, + 41.703089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "7f8b451f-bff6-46be-a946-0b3941894f5e", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.835726, + 41.703037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "624ad20f-693e-41a5-91dd-d30239ffddf7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.896435, + 41.697897 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "0ca6e4b9-08cf-401a-b72a-ed8886381958", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.483918, + 42.809196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "fb1b24c2-1623-4007-8986-98e98e43deca", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.440757, + 42.655748 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "e3cdf95e-31f4-4088-a0ec-0014477b4c97", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.2747532, + 41.5372318 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref": "1b3689d8-f9f9-11ed-be56-0242ac120002", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.4605483, + 42.73825410000001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref": "95bb75f0-fedc-11ed-be56-0242ac120002", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.959227, + 49.540126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.111005, + 49.40844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.111005, + 49.40844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.111005, + 49.40844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.169503, + 49.016271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.169503, + 49.016271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.169503, + 49.016271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.169503, + 49.016271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.111005, + 49.40844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.959227, + 49.540126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.959227, + 49.540126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.817843, + 50.453351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.817843, + 50.453351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.817843, + 50.453351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.817843, + 50.453351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.959227, + 49.540126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5139025, + 42.1140208 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ATRACHATA", + "owner:ref:FR:SIREN": "752044479", + "email": "direction@adonis-aleria.com", + "phone": "0495570393", + "network": "ATRACHATA", + "ref": "non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2022-08-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.5139025, + 42.1140208 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ATRACHATA", + "owner:ref:FR:SIREN": "752044479", + "email": "direction@adonis-aleria.com", + "phone": "0495570393", + "network": "ATRACHATA", + "ref": "non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2022-08-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.136921215344072, + 41.50017664596053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LE REVE DE JANINE", + "owner:ref:FR:SIREN": "531181220", + "email": "pozzodimastri.adm@gmail.com", + "phone": "04 95 71 02 65", + "network": "LE REVE DE JANINE", + "ref": "non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2023-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.136921215344072, + 41.50017664596053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LE REVE DE JANINE", + "owner:ref:FR:SIREN": "531181220", + "email": "pozzodimastri.adm@gmail.com", + "phone": "04 95 71 02 65", + "network": "LE REVE DE JANINE", + "ref": "non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2023-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.136921215344072, + 41.50017664596053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LE REVE DE JANINE", + "owner:ref:FR:SIREN": "531181220", + "email": "pozzodimastri.adm@gmail.com", + "phone": "04 95 71 02 65", + "network": "LE REVE DE JANINE", + "ref": "non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2023-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0255528, + 46.57567772 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-01-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0255528, + 46.57567772 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Séolis", + "owner:ref:FR:SIREN": "200091049", + "email": "bo_dgic@seolis.net", + "phone": "0969397906", + "network": "AlterBase", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-01-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.954054532862406, + 47.2166457444792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Est Auto", + "owner:ref:FR:SIREN": "527529119", + "email": "cjarriaux@amplitude-auto.com", + "phone": "0381477878", + "network": "Ford", + "ref": "FRWBCEHGG0C03009", + "socket:type2_combo": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-31", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.345135599999999, + 41.69983680000001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref": "e09c9636-039a-11ee-be56-0242ac120002", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23, + 49.11 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "314481250", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WWFF9DHV9P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23, + 49.11 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "314481250", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WWFF9DHV9P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.101673, + 47.311365 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.812512, + 47.500958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-19", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.812512, + 47.500958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-19", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.812512, + 47.500958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-19", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.101673, + 47.311365 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.101673, + 47.311365 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.993622, + 47.283904 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.993622, + 47.283904 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.993622, + 47.283904 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.019881, + 47.283199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.019881, + 47.283199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.019881, + 47.283199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.047322, + 47.357664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.047322, + 47.357664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.047322, + 47.357664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-10", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17878, + 45.69066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.022089, + 47.284263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87942, + 44.90681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0151949687525528, + 49.491605515295085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVERON", + "owner:ref:FR:SIREN": "310818000", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "point p", + "ref": "EVB-P2211454", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1, + 47.27 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MEDIODENT", + "owner:ref:FR:SIREN": "898168273", + "email": "mediodent@gmail.com", + "phone": "03 81 60 06 00", + "network": "MEDIODENT", + "ref": "8ef7ac44-2295-427b-8f6c-589c0e47c43a", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.38, + 46.75 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SCI LA GRANGE DESSOUS", + "owner:ref:FR:SIREN": "898168273", + "email": "mp-morel@wanadoo.fr", + "phone": "‭06 85 80 08 33‬", + "network": "SCI LA GRANGE DESSOUS", + "ref": "5a261145-4bb3-48f4-a72d-699958c5c975", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.93, + 47.24 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GARAGE HENRY", + "owner:ref:FR:SIREN": "898168273", + "email": "garage.henry25@orange.fr", + "phone": "0381590075", + "network": "GARAGE HENRY", + "ref": "0ba8ed7c-43f6-4b51-9b36-66b094607c09", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.189956, + 49.015557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "AAOHVNYG1P", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.610229, + 49.10076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "UWBEJENZM4", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.610229, + 49.10076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "UWBEJENZM4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.189956, + 49.015557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "AAOHVNYG1P", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.189956, + 49.015557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "AAOHVNYG1P", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.610229, + 49.10076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "UWBEJENZM4", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.189956, + 49.015557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "AAOHVNYG1P", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.189956, + 49.015557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "AAOHVNYG1P", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.189956, + 49.015557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "AAOHVNYG1P", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11641, + 48.82899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "OMGNS1LCLU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11641, + 48.82899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "OMGNS1LCLU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11641, + 48.82899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "OMGNS1LCLU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11641, + 48.82899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "OMGNS1LCLU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11641, + 48.82899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "OMGNS1LCLU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.11641, + 48.82899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "OMGNS1LCLU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.955188, + 47.160115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "BORNECO", + "owner:ref:FR:SIREN": "830699930", + "email": "freddy.borneco@gmail.com", + "phone": "0669684978", + "network": "Comte Liger-Belair", + "ref": "FR*BHM*ECOMTELIGIERBELAIR*1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "MO-SU 08:00-18:00", + "start_date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.319564, + 49.320563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.751178, + 50.322857 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EGE NOEL BERANGER", + "owner:ref:FR:SIREN": "692012552", + "email": "b.rochefort@noelberanger.fr", + "phone": "0491432450", + "network": "FULGURA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.751178, + 50.322857 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EGE NOEL BERANGER", + "owner:ref:FR:SIREN": "692012552", + "email": "b.rochefort@noelberanger.fr", + "phone": "0491432450", + "network": "FULGURA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838636, + 46.962058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.713227, + 47.104799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.327669, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0802139, + 44.5179413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref": "a50a57d0-be6b-11ed-afa1-0242ac120002", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.352215, + 48.167175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.352215, + 48.167175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.432877, + 48.179861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.459867, + 48.19329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.459867, + 48.19329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.461456, + 48.192654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.461456, + 48.192654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.467504, + 48.19942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.467504, + 48.19942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43045, + 48.190584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.352215, + 48.167175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.352215, + 48.167175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.434275, + 48.204642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.434275, + 48.204642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.43045, + 48.190584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.432877, + 48.179861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.44083, + 48.169844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.44083, + 48.169844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.2785984, + 41.5930127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "340119411", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL LE TILBURY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002501", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002502", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002503", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002505", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002504", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.683051586151123, + 48.59249496459961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.683051586151123, + 48.59249496459961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002506", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref": "FRC2P003402", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref": "FRC2P003403", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref": "FRC2P003403", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref": "FRC2P003402", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref": "FRC2P003401", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref": "FRC2P003401", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.615694, + 42.9937786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "829959089", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL ORIGINALS ACCESS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.615694, + 42.9937786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "829959089", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL ORIGINALS ACCESS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002501", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.615694, + 42.9937786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "829959089", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL ORIGINALS ACCESS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002502", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002503", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002504", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002505", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002506", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.615694, + 42.9937786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "829959089", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL ORIGINALS ACCESS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.2785984, + 41.5930127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "340119411", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "HOTEL LE TILBURY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.683051586151123, + 48.59249496459961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.683051586151123, + 48.59249496459961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref": "FRC2P003401", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref": "FRC2P003401", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.7717784, + 47.3873487 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAFE LA PROMENADE", + "ref": "FRC2P005201", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref": "FRC2P003402", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref": "FRC2P003402", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref": "FRC2P003403", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.746361669308984, + 41.94325812908591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "851287862", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CARREFOUR AJACCIO", + "ref": "FRC2P003403", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002504", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002506", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002505", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002503", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002501", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.7970384, + 41.85874031254947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "537855009", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "KALLISTE RIVE SUD", + "ref": "FRC2P002502", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316255993913532, + 48.87284863189276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316255993913532, + 48.87284863189276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.863237, + 45.21972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "444393441", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CODERC CAMPING", + "ref": "FRC2P006101", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.863237, + 45.21972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "444393441", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CODERC CAMPING", + "ref": "FRC2P006101", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18773817, + 44.75268759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "834207672", + "email": "support@virta.global", + "phone": "0186472717", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18773817, + 44.75268759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "834207672", + "email": "support@virta.global", + "phone": "0186472716", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.02692661, + 45.1910994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "315501726", + "email": "support@virta.global", + "phone": "0186472715", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.02692661, + 45.1910994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "315501726", + "email": "support@virta.global", + "phone": "0186472714", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23832843, + 44.73029836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "822373742", + "email": "support@virta.global", + "phone": "0186472713", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.289881, + 44.792649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "378020168", + "email": "support@virta.global", + "phone": "0186472700", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.289881, + 44.792649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "378020168", + "email": "support@virta.global", + "phone": "0186472699", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.445075, + 41.995246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "301075065", + "email": "support@virta.global", + "phone": "0186472698", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.445074, + 41.995246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "301075065", + "email": "support@virta.global", + "phone": "0186472697", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.445073, + 41.995246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "301075065", + "email": "support@virta.global", + "phone": "0186472696", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.445072, + 41.995246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "301075065", + "email": "support@virta.global", + "phone": "0186472695", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.445071, + 41.995246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "301075065", + "email": "support@virta.global", + "phone": "0186472694", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.116399, + 45.022197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "512117862", + "email": "support@virta.global", + "phone": "0186472692", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21423544, + 44.89537348 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "384395516", + "email": "support@virta.global", + "phone": "0186472745", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21423544, + 44.89537348 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "384395516", + "email": "support@virta.global", + "phone": "0186472744", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.20262039, + 44.90092439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "828318204", + "email": "support@virta.global", + "phone": "0186472743", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.20262039, + 44.90092439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "828318204", + "email": "support@virta.global", + "phone": "0186472742", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316255993913532, + 48.87284863189276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": " 24/7", + "start_date": "2021-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.316255993913532, + 48.87284863189276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "402143747", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SUN DEVELOPPEMENT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": " 24/7", + "start_date": "2021-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.741838, + 44.527159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", + "start_date": "2022-11-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.741838, + 44.527159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", + "start_date": "2022-11-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.741545, + 44.526897 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", + "start_date": "2022-11-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.741545, + 44.526897 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", + "start_date": "2022-11-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4431105, + 48.919138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT", + "owner:ref:FR:SIREN": "842019317", + "email": "g.uppilirajan@waat.fr", + "phone": "146421897", + "network": "Réseau de recharge SAS PRIMARD", + "ref": "61081", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "TRUE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4431105, + 48.919138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT", + "owner:ref:FR:SIREN": "842019318", + "email": "g.uppilirajan@waat.fr", + "phone": "146421898", + "network": "Réseau de recharge SAS PRIMARD", + "ref": "61082", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "TRUE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4431105, + 48.919138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT", + "owner:ref:FR:SIREN": "842019317", + "email": "g.uppilirajan@waat.fr", + "phone": "146421897", + "network": "Réseau de recharge SAS PRIMARD", + "ref": "61081", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "TRUE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4431105, + 48.919138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT", + "owner:ref:FR:SIREN": "842019319", + "email": "g.uppilirajan@waat.fr", + "phone": "146421899", + "network": "Réseau de recharge SAS PRIMARD", + "ref": "61083", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "TRUE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.095828, + 47.972872 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294", + "email": "aguerin@seeyousun.fr", + "network": "Le mans sun ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4077141243933076, + 48.68517050782172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4077141243933076, + 48.68517050782172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5586172119781576, + 48.66622067379457 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5586172119781576, + 48.66622067379457 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080339", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080339", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080339", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080339", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080339", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080339", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080339", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.711425, + 47.113401 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080339", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219342, + 49.21215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080356", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080261", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080261", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080261", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080261", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080261", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080261", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080261", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.218275, + 49.211506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080357", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF058969", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF058969", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF058969", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF058969", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF058969", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF058969", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF058969", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.867226, + 44.866331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF058969", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059042", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059042", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059042", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059042", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059042", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059042", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059042", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.836437, + 46.963869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059042", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.335014, + 49.78609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042331", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.335014, + 49.78609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042331", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.335014, + 49.78609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042331", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.335014, + 49.78609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042331", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.520438, + 48.436347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF039295", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.520438, + 48.436347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF039295", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.709794, + 48.707985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF050214", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.709794, + 48.707985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF050214", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.112511, + 48.550222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF050462", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.112511, + 48.550222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF050462", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00808, + 47.280611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059916", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12203, + 47.325805 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059797", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32789, + 49.32443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078544", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838227, + 46.96323 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080041", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.172111, + 47.42224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080042", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.172111, + 47.42224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080042", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.907771, + 44.94012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.907771, + 44.94012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007357", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.907771, + 44.94012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007357", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.907771, + 44.94012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007357", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.907771, + 44.94012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007357", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.907771, + 44.94012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007357", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00055, + 44.9997 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF077241", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00055, + 44.9997 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF077241", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.864688, + 49.361312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080261", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.968749384840031, + 47.13239465083698 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES", + "ref": "FRTCBP01334", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.968749384840031, + 47.13239465083698 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES", + "ref": "FRTCBP01334", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.968749384840031, + 47.13239465083698 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES", + "ref": "FRTCBP01334", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.968749384840031, + 47.13239465083698 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES", + "ref": "FRTCBP01334", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.335902615342613, + 46.91060667443239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - ACCOR - IBIS RED PONTARLIER", + "ref": "FRTCBP01253", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7257659312513107, + 48.07223223395324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "379041379", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET BONCHAMPS LAVAL", + "ref": "FRTCBP01005", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842535284659247, + 47.03594831089646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "849691829", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SCI DUBOIS SIMONNEAU BEAUNE", + "ref": "FRTCBP01110", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842535284659247, + 47.03594831089646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "849691829", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SCI DUBOIS SIMONNEAU BEAUNE", + "ref": "FRTCBP01110", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842535284659247, + 47.03594831089646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "849691829", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SCI DUBOIS SIMONNEAU BEAUNE", + "ref": "FRTCBP01110", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.842535284659247, + 47.03594831089646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "849691829", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "SCI DUBOIS SIMONNEAU BEAUNE", + "ref": "FRTCBP01110", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7257659312513107, + 48.07223223395324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "379041379", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET BONCHAMPS LAVAL", + "ref": "FRTCBP01005", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7257659312513107, + 48.07223223395324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "379041379", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET BONCHAMPS LAVAL", + "ref": "FRTCBP01005", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7257659312513107, + 48.07223223395324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "379041379", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET BONCHAMPS LAVAL", + "ref": "FRTCBP01005", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045389, + 47.358192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "383447927", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "MAISON DES ENTREPRISES DIJON", + "ref": "FRTCBP01609", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-18:00", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045389, + 47.358192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "383447927", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "MAISON DES ENTREPRISES DIJON", + "ref": "FRTCBP01609", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-18:00", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045389, + 47.358192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "383447927", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "MAISON DES ENTREPRISES DIJON", + "ref": "FRTCBP01609", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-18:00", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045389, + 47.358192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "383447927", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "MAISON DES ENTREPRISES DIJON", + "ref": "FRTCBP01609", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-18:00", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.335902615342613, + 46.91060667443239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - ACCOR - IBIS RED PONTARLIER", + "ref": "FRTCBP01253", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.335902615342613, + 46.91060667443239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - ACCOR - IBIS RED PONTARLIER", + "ref": "FRTCBP01253", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.335902615342613, + 46.91060667443239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "480120203", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - ACCOR - IBIS RED PONTARLIER", + "ref": "FRTCBP01253", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.947743473694628, + 47.13177788637616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "447541541", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY- ACCOR - IBIS RED NUITS SAINT GEORGES", + "ref": "FRTCBP01167", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834670844833498, + 47.019918627758656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "330713108", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE", + "ref": "FRTCBP01169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834670844833498, + 47.019918627758656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "330713108", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE", + "ref": "FRTCBP01169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834670844833498, + 47.019918627758656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "330713108", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE", + "ref": "FRTCBP01169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.834670844833498, + 47.019918627758656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "330713108", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE", + "ref": "FRTCBP01169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.947743473694628, + 47.13177788637616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "447541541", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY- ACCOR - IBIS RED NUITS SAINT GEORGES", + "ref": "FRTCBP01167", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.947743473694628, + 47.13177788637616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "447541541", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY- ACCOR - IBIS RED NUITS SAINT GEORGES", + "ref": "FRTCBP01167", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.947743473694628, + 47.13177788637616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "447541541", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY- ACCOR - IBIS RED NUITS SAINT GEORGES", + "ref": "FRTCBP01167", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839751898330378, + 47.0211145050141 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "725721757", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE", + "ref": "FRTCBP01166", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839751898330378, + 47.0211145050141 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "725721757", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE", + "ref": "FRTCBP01166", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839751898330378, + 47.0211145050141 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "725721757", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE", + "ref": "FRTCBP01166", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839751898330378, + 47.0211145050141 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "725721757", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": " GROUPE DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE", + "ref": "FRTCBP01166", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.846772144834794, + 47.02550828376189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "838699742", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - SIEGE", + "ref": "FRTCBP01165", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.846772144834794, + 47.02550828376189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "838699742", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "GROUPE DESFOSSEY - SIEGE", + "ref": "FRTCBP01165", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.226915023755001, + 46.19406639950159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "392231403", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Renault Agents France", + "ref": "FRTCBP00727", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 08:00-12:00,Sa 14:00-18:00", + "start_date": "2022-06-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8459941, + 47.0325195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "778168005", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Résidence les Primevères", + "ref": "FRTCBP00650", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8459941, + 47.0325195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "778168005", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Résidence les Primevères", + "ref": "FRTCBP00650", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8459941, + 47.0325195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "778168005", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Résidence les Primevères", + "ref": "FRTCBP00650", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8459941, + 47.0325195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "778168005", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "Résidence les Primevères", + "ref": "FRTCBP00650", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8140013, + 47.5188961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "877150144", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "GARAGE PEUGEOT CUCIS", + "ref": "FRTCBP00689", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-18:00", + "start_date": "2022-03-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2589672351008163, + 45.702755954262976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "322591892", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "PSA Agents France", + "ref": "FRTCBP00695", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-18:00", + "start_date": "2022-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.710239355468517, + 48.830511379284836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089159", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER BUSSY", + "ref": "FRTCBP00696", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.710239355468517, + 48.830511379284836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089158", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER BUSSY", + "ref": "FRTCBP00696", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.710239355468517, + 48.830511379284836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089163", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER BUSSY", + "ref": "FRTCBP00696", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.710239355468517, + 48.830511379284836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "805089162", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "RIESTER BUSSY", + "ref": "FRTCBP00696", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.093141, + 47.317976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref": "FRTCBP00384", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-17:30", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.093141, + 47.317976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref": "FRTCBP00384", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-17:30", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.762013, + 48.508649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "478811458", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00425", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.762013, + 48.508649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "478811458", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00425", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.760177, + 48.462003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref": "FRS28E139678", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.760177, + 48.462003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref": "FRS28E139679", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.058089, + 48.503768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref": "FRS28E137373", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.058089, + 48.503768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref": "FRS28E137374", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.340418, + 48.703594 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref": "FRS28E137368", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.340418, + 48.703594 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ENERGIE Eure-et-Loir", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0675389808", + "network": "FR*S28", + "ref": "FRS28E137367", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.348379, + 48.079293 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "237840785", + "network": "FR*S28", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.329051, + 48.070643 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "237840785", + "network": "FR*S28", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.470213, + 48.040626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "237840785", + "network": "FR*S28", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.322335, + 48.676212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "237840785", + "network": "FR*S28", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.355261, + 48.720711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "237840785", + "network": "FR*S28", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.631473, + 48.27611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "237840785", + "network": "FR*S28", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.427083, + 43.457513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.427083, + 43.457513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "251301545", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "Simone", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.011409, + 48.474017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ENERGIE EURE-ET-LOIR", + "owner:ref:FR:SIREN": "200080869", + "email": "lionel.chauvet@energie28.fr", + "phone": "0237840785", + "network": "FR*S28", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28, + 48.61 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVBOX", + "owner:ref:FR:SIREN": "415183680", + "email": "contact@evbox.com", + "phone": "+‭33 1 41 44 70 47‬", + "network": "EVBOX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "MO-FR 08:00-12:00, MO-FR 14:00-18:00,TH 08:00-19:00", + "start_date": "2021-11-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.203439987359303, + 50.99486000882223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Société LEVAROY, Monsieur LEROY", + "owner:ref:FR:SIREN": "499606739", + "email": "levaroy@orange.fr", + "phone": "0624854294", + "network": "Levaroy", + "ref": "01FB4PZ8WF60XF3FXH7C4M33S9", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.912101, + 44.419857 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WUV7HSEG7Z", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.976144, + 44.989731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XNTOYCDUUU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.063022, + 44.332828 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HHI7NXS2BU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.140972, + 44.358895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HLIQFU7MBL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.709302, + 44.441867 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FT9RYLHLGP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.936933, + 45.015669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DRERGYFIWV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799172, + 44.702527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VJR4KERRP4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.819175, + 44.752224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DZI9RFFUXV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.27678869, + 44.5691193 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XPWLH9URLF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960262, + 45.229445 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JKA3JEAMYP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9767, + 44.9891 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RHLBTLPSI5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957015, + 44.972802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HCVY8ZZGX8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.985143, + 45.122126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SJORIJEACH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.954134, + 45.291376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XEAAPBSHGL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.993811, + 45.290854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KMY7EK3TVS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.060403, + 44.522082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YOVTZBLZ6Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.802167, + 44.418065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QRT5VAQ5PW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9711, + 45.5471 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "G15FUATVOZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70472835, + 44.35463006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WKHCVF4ZLP", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.127572, + 44.357458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PTMJY7PQFA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.883411, + 44.92895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "X215JLJ2YH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53849131, + 44.20221446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KUZMMX4TIX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.426297, + 44.378797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "P4CTJBHF9Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845401, + 45.067357 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "S5JXS0NDKH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902889, + 44.904445 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KOKMLXJ1C1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.844279, + 45.013752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UHWF1QXLIT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872427, + 45.001602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ONVAVTDPJC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839749, + 44.769233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KDSOJBUKIE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.118107, + 44.35214 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EDVOP2GKDT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70472835, + 44.35463006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WKHCVF4ZLP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.912101, + 44.419857 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WUV7HSEG7Z", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.885265, + 44.931448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "D5L0ETPPMV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.218949, + 44.428743 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OMHSNRMBVM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.885265, + 44.931448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "D5L0ETPPMV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.883411, + 44.92895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "X215JLJ2YH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.929752, + 44.950546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ICYZM13ZT9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.904457, + 44.904052 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TL1WGTVEO9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81653, + 45.176935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RDFEUWJLV7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.893549, + 44.946232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PO6ZR7Q3T0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.994846, + 45.322879 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LK4IORN6OX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04475, + 45.0434 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CLMHBS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04918, + 45.0448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TWVNEL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05134, + 45.0451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RQNSQX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05015, + 45.0492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JGECQF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04918, + 45.0448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TWVNEL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.04475, + 45.0434 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CLMHBS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05586, + 45.0422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NZAXHX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05134, + 45.0451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RQNSQX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05015, + 45.0492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JGECQF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.041824, + 45.29267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WTKHQRLVGM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44251, + 45.0202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HMQVVL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44251, + 45.0202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HMQVVL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2494, + 45.06 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JMYBDN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2494, + 45.06 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JMYBDN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29092, + 45.0166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NPRXBQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29092, + 45.0166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NPRXBQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32729, + 45.0293 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YYVBBJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.020937, + 44.72668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DHCKIJOAXG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024275, + 44.727057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TNY0MUAT3P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873418, + 45.170177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IVVBJ8KBSM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356327, + 44.414245 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KU7GOCOQLM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.859351, + 45.184396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "T80X29F55X", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.934015, + 44.610178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WJASLMUGE9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.133801, + 44.585658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XB7KJGMX1B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.062747, + 44.646529 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OZC3CQY0LP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.091215, + 44.711668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HYERDCGEKJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381235, + 44.486233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GHGFD1VXML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2581, + 44.41145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HTXRRAG7VZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.898153, + 44.948826 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RTRXS7Y6C9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056612, + 44.714312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LR3Z5GMDXD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.903566, + 44.933541 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZIUHTQE97T", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.918842, + 44.762521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "P4ZIKZMGVU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.049421, + 45.092633 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CLMU9GFZZA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0291181, + 45.2558692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SWKGDBKOKM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.200007, + 44.697264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AKHOI6DR2E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.142652, + 45.194985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XZXALUKTTA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056833, + 44.71694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KVCB2FBNZ3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.441792, + 44.174437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "F36WUWT4H7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.017178, + 44.730592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IY1C479BL4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88804, + 44.925184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WM3WAO2RMZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894544, + 44.934744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "H5N3BW8X1L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.99937, + 44.9995 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CANHER", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.873462, + 45.640808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FBYQDSUWIU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.99937, + 44.9995 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CANHER", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894331, + 44.93486 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QYCADMQWOA", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.052549, + 45.044026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OMXZZQL6TV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.08223, + 44.3298 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WL5XZNI7WZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-22", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.08223, + 44.3298 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WL5XZNI7WZ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.017178, + 44.730592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IY1C479BL4", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894331, + 44.93486 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QYCADMQWOA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.052549, + 45.044026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OMXZZQL6TV", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.450919, + 44.616002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WDLJPIX1QR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.983865, + 45.050388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GXXHNQ5HXX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9711, + 45.5471 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "G15FUATVOZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.936632, + 45.565976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "Y4YC7FBRZQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02737, + 44.9355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YYBZKF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.32729, + 45.0293 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YYVBBJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53849131, + 44.20221446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KUZMMX4TIX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02737, + 44.9355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YYBZKF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93832, + 44.8003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CLFAVQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.844279, + 45.013752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UHWF1QXLIT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.921365, + 45.018041 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QIYDUPSLD7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.845401, + 45.067357 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "S5JXS0NDKH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872427, + 45.001602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ONVAVTDPJC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.133801, + 44.585658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XB7KJGMX1B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.381235, + 44.486233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GHGFD1VXML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.091215, + 44.711668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HYERDCGEKJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.934015, + 44.610178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WJASLMUGE9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2581, + 44.41145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HTXRRAG7VZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.356327, + 44.414245 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KU7GOCOQLM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.898153, + 44.948826 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RTRXS7Y6C9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.893549, + 44.946232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PO6ZR7Q3T0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902889, + 44.904445 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KOKMLXJ1C1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.976144, + 44.989731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XNTOYCDUUU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9767, + 44.9891 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RHLBTLPSI5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.709302, + 44.441867 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FT9RYLHLGP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.426297, + 44.378797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "P4CTJBHF9Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.983865, + 45.050388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GXXHNQ5HXX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.441792, + 44.174437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "F36WUWT4H7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056612, + 44.714312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LR3Z5GMDXD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.820926, + 45.119321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DBA0BNH7EP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.760774, + 44.532597 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BAWG4VXXRC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.020937, + 44.72668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DHCKIJOAXG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83665, + 45.0711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IL2LVDJOZC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.760774, + 44.532597 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BAWG4VXXRC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.918842, + 44.762521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "P4ZIKZMGVU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.062747, + 44.646529 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OZC3CQY0LP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.024275, + 44.727057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TNY0MUAT3P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83665, + 45.0711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GJHDGEW1RW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.049421, + 45.092633 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CLMU9GFZZA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0291181, + 45.2558692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SWKGDBKOKM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.200007, + 44.697264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AKHOI6DR2E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.142652, + 45.194985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XZXALUKTTA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83665, + 45.0711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GJHDGEW1RW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83665, + 45.0711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IL2LVDJOZC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.056833, + 44.71694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KVCB2FBNZ3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.936933, + 45.015669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DRERGYFIWV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.960262, + 45.229445 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JKA3JEAMYP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.27678869, + 44.5691193 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XPWLH9URLF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.790972, + 44.33132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DOTZDZMFFW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.763941, + 44.345787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "P4BGHJXHOT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.769987, + 44.347337 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EBYI5NPO9K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.401908, + 44.712392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LOGXNLQR1V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.372968, + 44.751122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BIAIJUVWY6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.886768, + 45.272129 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AVUGAR5K1V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.367919, + 44.75614 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HLDZRB6LRZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.060403, + 44.522082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YOVTZBLZ6Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.763941, + 44.345787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "P4BGHJXHOT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85676, + 44.36141 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "E6Y7M7AMVB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.118107, + 44.35214 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EDVOP2GKDT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.218949, + 44.428743 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OMHSNRMBVM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.813139, + 45.295163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZVTPWBGVUT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.886768, + 45.272129 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AVUGAR5K1V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.769987, + 44.347337 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EBYI5NPO9K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85676, + 44.36141 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "E6Y7M7AMVB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894544, + 44.934744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "H5N3BW8X1L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.813139, + 45.295163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZVTPWBGVUT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.747654, + 44.549544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "URHEE05T5G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.450919, + 44.616002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WDLJPIX1QR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839749, + 44.769233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KDSOJBUKIE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.957015, + 44.972802 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HCVY8ZZGX8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.873418, + 45.170177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IVVBJ8KBSM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.859351, + 45.184396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "T80X29F55X", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.802167, + 44.418065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QRT5VAQ5PW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.81653, + 45.176935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RDFEUWJLV7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799172, + 44.702527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VJR4KERRP4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.819175, + 44.752224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DZI9RFFUXV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.985143, + 45.122126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SJORIJEACH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.744417, + 44.556301 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VGOBDGLPKS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.790972, + 44.33132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DOTZDZMFFW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.274113, + 44.273155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "S2X4SQRIWM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.190152, + 44.23775 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IOEFVEOSYD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9333, + 44.5448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "Z4C1VGM0DH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.277503, + 44.277843 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VPY490SRSN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.756491, + 44.556028 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FQCHFMZVJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.751107, + 44.561668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HT6OIBP1HQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872588, + 44.642778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FDJN70AGER", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703235, + 44.376507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PCPZSNAJOW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.781791, + 44.649576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "R8XY0SZE9U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88637, + 44.944521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CUG99GGOWF", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93998, + 44.8613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UTSMAL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.07845, + 44.9669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NGKNNY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89511442, + 44.93115343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LWXQSAKCCJ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02580276, + 44.72066204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SURFS8ZTGN", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02580276, + 44.72066204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SURFS8ZTGN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.13266647, + 44.36218458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LIEIZRQF8F", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.13266647, + 44.36218458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LIEIZRQF8F", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88637, + 44.944521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CUG99GGOWF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.07845, + 44.9669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NGKNNY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75091764, + 44.56067532 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UKTMEQNRXJ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.75091764, + 44.56067532 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UKTMEQNRXJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89067, + 44.8405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DXPLVE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89067, + 44.8405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DXPLVE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0923, + 45.0034 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SXUCBY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0923, + 45.0034 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SXUCBY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37037, + 44.8955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MDEFSB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06121, + 45.0304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XJLPEH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02596, + 44.9741 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KRPNCH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.01835, + 44.8993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GBMHGY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88401, + 44.8756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MBKYAM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93832, + 44.8003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CLFAVQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41656, + 44.9687 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SGRPBU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41656, + 44.9687 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SGRPBU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92192, + 44.86594 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JLQKAG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92192, + 44.86594 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JLQKAG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0225, + 44.8715 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LLZYYD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05141, + 45.0423 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BRKYBY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05586, + 45.0422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NZAXHX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.89511442, + 44.93115343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LWXQSAKCCJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05141, + 45.0423 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BRKYBY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87871, + 44.874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TZZHBY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0225, + 44.8715 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LLZYYD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88401, + 44.8756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MBKYAM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87871, + 44.874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TZZHBY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.02596, + 44.9741 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KRPNCH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.93998, + 44.8613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UTSMAL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.37037, + 44.8955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MDEFSB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.01835, + 44.8993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GBMHGY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799586, + 44.541316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "K8UHYWJQHE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.97910139, + 44.4428751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZZEIEVWEMC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.781791, + 44.649576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "R8XY0SZE9U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.085042, + 45.080627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BIE1NOC2IO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.872588, + 44.642778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FDJN70AGER", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.799586, + 44.541316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "K8UHYWJQHE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82037, + 44.51525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZIMRJWFPJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71889, + 44.486352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HON0JAOCCV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.085042, + 45.080627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BIE1NOC2IO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.930583, + 44.285472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VTPM86E6SG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70697, + 44.666304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IHDYYMOWSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828305, + 44.24526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FUVLYZNAC1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838851, + 44.288371 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HANDNASEFE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.866178, + 44.337725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EP9B5SQXIV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.69954, + 44.377282 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GE3HA5PUXP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.698986, + 44.372311 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HTGDQIHOM0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.820926, + 45.119321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DBA0BNH7EP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70697, + 44.666304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IHDYYMOWSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.69954, + 44.377282 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GE3HA5PUXP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703235, + 44.376507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PCPZSNAJOW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09518, + 44.8994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VZZKPP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.96484, + 44.9165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NYDEBU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.03997, + 45.0169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PNSRMA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05117, + 45.0395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XUNZRR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06121, + 45.0304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XJLPEH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.03997, + 45.0169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PNSRMA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.96484, + 44.9165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NYDEBU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.09518, + 44.8994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VZZKPP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05117, + 45.0395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XUNZRR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.71889, + 44.486352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HON0JAOCCV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.698986, + 44.372311 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HTGDQIHOM0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.838851, + 44.288371 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HANDNASEFE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.97910139, + 44.4428751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZZEIEVWEMC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82037, + 44.51525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZIMRJWFPJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828305, + 44.24526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FUVLYZNAC1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.921365, + 45.018041 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QIYDUPSLD7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.866178, + 44.337725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EP9B5SQXIV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.930583, + 44.285472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VTPM86E6SG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992505, + 45.2996611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EDM5XZ78S5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5271472, + 45.0326389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UGZUCTHE6K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.873462, + 45.640808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FBYQDSUWIU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.936632, + 45.565976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "Y4YC7FBRZQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992505, + 45.2996611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EDM5XZ78S5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5271472, + 45.0326389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UGZUCTHE6K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.903566, + 44.933541 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZIUHTQE97T", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.904457, + 44.904052 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TL1WGTVEO9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88804, + 44.925184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WM3WAO2RMZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1959, + 46.10168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JCAUYPEAYA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60975, + 46.3396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "montlucongi", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.60975, + 46.3396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "montlucongi", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1959, + 46.10168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JCAUYPEAYA", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.140972, + 44.358895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HLIQFU7MBL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.744417, + 44.556301 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VGOBDGLPKS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.994846, + 45.322879 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LK4IORN6OX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.063022, + 44.332828 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HHI7NXS2BU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.929752, + 44.950546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ICYZM13ZT9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.127572, + 44.357458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PTMJY7PQFA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.367919, + 44.75614 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HLDZRB6LRZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.751107, + 44.561668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HT6OIBP1HQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.756491, + 44.556028 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FQCHFMZVJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.747654, + 44.549544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "URHEE05T5G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.041824, + 45.29267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WTKHQRLVGM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.190152, + 44.23775 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IOEFVEOSYD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.954134, + 45.291376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XEAAPBSHGL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.993811, + 45.290854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KMY7EK3TVS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.372968, + 44.751122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BIAIJUVWY6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.274113, + 44.273155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "S2X4SQRIWM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.277503, + 44.277843 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VPY490SRSN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9333, + 44.5448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "Z4C1VGM0DH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.401908, + 44.712392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LOGXNLQR1V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.580031, + 44.750171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CWDDIHOIZF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708931, + 43.181444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HWPPNAD8K0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.93622, + 43.127107 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OCMVHL5UIN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74897911, + 44.55730613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "N9XQ3KEFL9", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.74897911, + 44.55730613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "N9XQ3KEFL9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88973581, + 44.92944338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BR33QVBXDK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.88973581, + 44.92944338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BR33QVBXDK", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.278273, + 45.584676 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZI3F7Q3G9Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.278273, + 45.584676 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZI3F7Q3G9Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.93622, + 43.127107 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OCMVHL5UIN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708931, + 43.181444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HWPPNAD8K0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.580031, + 44.750171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CWDDIHOIZF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.690794, + 46.00793 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "X5JIHAHDBL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.690794, + 46.00793 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "X5JIHAHDBL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.690794, + 46.00793 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "X5JIHAHDBL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.690794, + 46.00793 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "X5JIHAHDBL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.687658, + 47.845833 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Carrefour Market Belondis", + "ref": "FRG10P29236A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.687658, + 47.845833 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Carrefour Market Belondis", + "ref": "FRG10P29236A", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.522605, + 48.946546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.522605, + 48.946546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.522605, + 48.946546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.522605, + 48.946546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.522605, + 48.946546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.522605, + 48.946546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.522605, + 48.946546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.274148, + 49.167886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE414900", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.109707, + 47.032073 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE412400", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-22", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.010984, + 47.223166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE410200", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-15", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187398, + 48.273996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE436000", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-24", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.418951, + 43.585904 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE405200", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212795, + 45.611787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE410300", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-12", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.045602, + 47.27199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE453800", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-16", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.10745, + 47.030768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE412300", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-22", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.578674, + 48.467261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE126500", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.580008, + 48.468782 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE126400", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.277238, + 49.166932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE417100", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-18", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186773, + 49.247541 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE437700", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.912861, + 44.236045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE449000", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827989, + 45.276404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE412900", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598651, + 45.610095 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE440100", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-18", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.894515, + 45.88437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE421500", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.308488, + 43.914901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE403500", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-17", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78134, + 44.513898 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE403600", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-17", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.524313, + 45.030881 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE439100", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-23", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15578, + 49.30327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE93", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.452088, + 49.101689 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE125", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659175, + 49.293963 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE123", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.483316, + 49.09347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE120", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.483316, + 49.09347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE119", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.530081, + 49.074712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE118", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.530081, + 49.074712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE117", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53010287, + 49.0747562 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE116", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.530102, + 49.0747562 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE115", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.187305, + 49.248609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE114", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.187305, + 49.248609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE113", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219454, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE112", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.219454, + 49.324463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE111", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49855, + 49.230692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE110", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49855, + 49.230692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE109", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.356333, + 49.35987 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE108", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.356333, + 49.35987 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE107", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71108, + 48.824326 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE106", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.71108, + 48.824326 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE105", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.584992, + 49.243902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE104", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.584992, + 49.243902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE103", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.913432, + 48.835912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE102", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.913432, + 48.835912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE101", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.485049, + 49.092874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE100", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.485049, + 49.092874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE99", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.513936, + 49.351758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE96", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.513936, + 49.351758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE95", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659175, + 49.293963 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE124", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.951704, + 49.293602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE156", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.452088, + 49.101689 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE126", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.951704, + 49.293602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE155", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.709275, + 49.108212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE154", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.709275, + 49.108212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE153", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.20844, + 49.25644 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE152", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.20844, + 49.25644 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE151", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.761226, + 49.276345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE150", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-09-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.761226, + 49.276345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE149", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-09-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.597432, + 49.089329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE148", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-09-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.597432, + 49.089329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE147", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-09-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.273518, + 48.906015 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE146", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-09-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.273518, + 48.906015 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE145", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-09-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.317617, + 49.139582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE144", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.317617, + 49.139582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE143", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34918, + 49.157966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE142", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34918, + 49.157966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE141", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.150262, + 49.019161 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE138", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.150262, + 49.019161 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE137", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.153063, + 49.026011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE136", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.153063, + 49.026011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE135", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.485499, + 49.09016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE132", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.485499, + 49.09016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE131", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.420738, + 49.060499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE130", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.420738, + 49.060499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE129", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.605988, + 49.093379 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE128", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.605988, + 49.093379 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE127", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.15578, + 49.30327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE94", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.556744, + 49.419466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE59", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.197021, + 49.271924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE92", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.712047, + 49.196627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE42", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.382145, + 49.444076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE56", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.382145, + 49.444076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE55", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.514153, + 49.35304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE54", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.514153, + 49.35304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE53", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.601421, + 49.090911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE52", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.601421, + 49.090911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE51", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.515229, + 49.35841 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE48", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.515229, + 49.35841 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE47", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45836, + 49.141649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE46", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45836, + 49.141649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE45", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.457547, + 49.135919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE44", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.457547, + 49.135919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE43", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.712047, + 49.196627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE41", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.197021, + 49.271924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE91", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.721077, + 49.19387 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE38", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.721077, + 49.19387 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE37", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.341375, + 49.164969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE36", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.341375, + 49.164969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE35", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.376949, + 49.24707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE34", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.376949, + 49.24707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE33", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.518561, + 49.35578 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE30", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.518561, + 49.35578 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE29", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.918076, + 48.836177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE27", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.596704, + 49.087252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE159", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-09-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.489306, + 49.092359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE57", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.489306, + 49.092359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE58", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.556744, + 49.419466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE60", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.479175, + 49.399683 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE61", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06483, + 49.223315 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE90", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06483, + 49.223315 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE89", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.747974, + 48.907764 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE86", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.747974, + 48.907764 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE85", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.344569, + 49.34592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE84", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.344569, + 49.34592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE83", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.397276, + 49.417993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE82", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.397276, + 49.417993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE81", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.592528, + 49.088719 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE80", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.592528, + 49.088719 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE79", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.266925, + 49.335297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE78", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.266925, + 49.335297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE77", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.156333, + 49.319537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE76", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.156333, + 49.319537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE75", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41963, + 48.86551 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE74", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41963, + 48.86551 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE73", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43984, + 49.27973 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE72", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43984, + 49.27973 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE71", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.167038, + 49.213922 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE70", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.167038, + 49.213922 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE69", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16539, + 49.21079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE68", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16539, + 49.21079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE67", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17084, + 49.211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE66", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17084, + 49.211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE65", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.479175, + 49.399683 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE62", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.918076, + 48.836177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE28", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.596704, + 49.087252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE160", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-09-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.612974, + 49.303396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE246", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-10-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41371, + 49.245858 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE260", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41371, + 49.245858 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE259", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.057957, + 48.758803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE258", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.057957, + 48.758803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE257", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.807758, + 48.7707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE250", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.807758, + 48.7707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE249", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.777517, + 49.278682 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE248", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-09-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.777517, + 49.278682 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE247", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-09-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.612974, + 49.303396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE245", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-10-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.401083, + 49.23773 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE262", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.224221, + 49.275684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE242", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.224221, + 49.275684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE241", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.941327, + 48.964562 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE240", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.941327, + 48.964562 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE239", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.941474, + 48.960693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE238", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.941474, + 48.960693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE237", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.942348, + 48.959934 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE236", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.942348, + 48.959934 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE235", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.206554, + 49.285445 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE234", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.206554, + 49.285445 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE233", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03789, + 48.992145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE232", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03789, + 48.992145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE231", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.401083, + 49.23773 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE261", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.157537, + 49.009109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE263", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.962192, + 49.248376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE229", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.934779, + 49.103352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE280", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-12-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.420204, + 49.246692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE294", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.420204, + 49.246692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE293", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.775525, + 49.080689 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE161", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.160346, + 49.024055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE292", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.160346, + 49.024055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE291", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.199589, + 48.770538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE290", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.199589, + 48.770538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE289", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.937233, + 48.962291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE288", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.937161, + 48.962303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE286", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.937161, + 48.962303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE285", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34918, + 49.157966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE284", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34918, + 49.157966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE283", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91013, + 49.150593 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE282", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-11-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91013, + 49.150593 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE281", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-11-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.934779, + 49.103352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE279", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-12-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.157537, + 49.009109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE264", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.531146, + 49.008319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE278", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.531146, + 49.008319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE277", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.480734, + 48.938426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE276", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.480734, + 48.938426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE275", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4435619, + 48.9256673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE274", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4435619, + 48.9256673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE273", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.123976, + 49.017093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE272", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.123976, + 49.017093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE271", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34989, + 49.163115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE270", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34989, + 49.163115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE269", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.962192, + 49.248376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE230", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.937233, + 48.962291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE287", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1993813, + 48.7702458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE228", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.179005, + 49.320468 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE191", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.123975, + 49.017093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE190", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.123975, + 49.017093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE189", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.162429, + 49.047854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE186", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.162429, + 49.047854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE185", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.157598, + 49.026481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE184", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.157598, + 49.026481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE183", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.136316, + 49.030257 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE182", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.136316, + 49.030257 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE181", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17346, + 49.025102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE180", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17346, + 49.025102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE179", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40543, + 49.048847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE172", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40543, + 49.048847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE171", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.382675, + 49.013925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE170", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.382675, + 49.013925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.612249, + 49.23479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE168", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.612249, + 49.23479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE167", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.208506, + 49.25786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE165", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.775525, + 49.080689 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE162", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1993813, + 48.7702458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE227", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.179005, + 49.320468 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE192", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.208506, + 49.25786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE166", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3175225, + 49.1394202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE195", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.622742, + 49.390881 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE224", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.817924, + 49.35421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE222", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.817924, + 49.35421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE221", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.120187, + 49.140422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE220", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.120187, + 49.140422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE219", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22331, + 49.231282 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE218", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22331, + 49.231282 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE217", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217491, + 49.27201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE216", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.217491, + 49.27201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE215", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.719094, + 49.233117 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE214", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.719094, + 49.233117 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE213", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.622742, + 49.390881 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE223", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.874672, + 49.299502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE204", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.922083, + 49.290671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE210", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.128076, + 49.021025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE200", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.128076, + 49.021025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.087785, + 49.006973 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE202", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.874672, + 49.299502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE203", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.087785, + 49.006973 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE201", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2016-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.525036, + 49.467521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE205", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.525036, + 49.467521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE206", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.731554, + 49.378795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE207", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.731554, + 49.378795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE208", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.922083, + 49.290671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE209", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3175225, + 49.1394202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SIEGE 27", + "owner:ref:FR:SIREN": "252701974", + "email": "pascal.lhermitte@siege27.fr", + "phone": "0232398200", + "network": "SIEGE196", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.804458, + 49.321175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref": "FR*SOD*S*CUGN*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.804458, + 49.321175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref": "FR*SOD*S*CUGN*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.911452, + 45.839515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2023-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.427356, + 46.188104 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2023-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.483527, + 46.238674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.483527, + 46.238674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.485976, + 46.174744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-11-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.485976, + 46.174744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-11-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67012069, + 46.3057547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2023-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67012069, + 46.3057547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2023-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6307987051364758, + 46.11916513058057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2023-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.911452, + 45.839515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2023-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6307987051364758, + 46.11916513058057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2023-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.908169, + 46.325814 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2019-02-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.908169, + 46.325814 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2019-02-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7562378, + 46.204309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-09-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1752391966838003, + 45.95685385044865 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2019-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1752391966838003, + 45.95685385044865 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2019-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.427356, + 46.188104 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2023-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8728709, + 46.1613543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "True", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-18:00", + "start_date": "2017-11-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7562378, + 46.204309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-09-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.872105, + 46.168328 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2023-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.621857810756655, + 46.38979827128929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2019-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8728709, + 46.1613543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "True", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-18:00", + "start_date": "2017-11-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.757261, + 45.954984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-07-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87458, + 46.18066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-09-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87458, + 46.18066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-09-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.872105, + 46.168328 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2023-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.852937, + 46.16619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.915143, + 46.13929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-09-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.852937, + 46.16619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84716, + 46.182498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84716, + 46.182498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.889585, + 46.127182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-09-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.889585, + 46.127182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-09-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.915143, + 46.13929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-09-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.621857810756655, + 46.38979827128929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2019-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.757261, + 45.954984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2018-07-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3282017747338646, + 46.18043243312804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2019-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4864876938733127, + 46.23622541263118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:17", + "start_date": "2022-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6472792580972633, + 46.16018464709621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:19", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6472792580972633, + 46.16018464709621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:20", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.849796138345705, + 45.99788844986339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:21", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.849796138345705, + 45.99788844986339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:22", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0335378347450135, + 45.906877456491365 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:24", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.500372319177679, + 46.02618636026654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:25", + "start_date": "2023-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.500372319177679, + 46.02618636026654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:26", + "start_date": "2023-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2148780297956265, + 46.349311090103754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:27", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2148780297956265, + 46.349311090103754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:28", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0860594190967117, + 46.180882164981234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:29", + "start_date": "2023-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0860594190967117, + 46.180882164981234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:30", + "start_date": "2023-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7558725880278507, + 45.94935937360538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:31", + "start_date": "2023-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.878921, + 46.17376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:32", + "start_date": "2023-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.878921, + 46.17376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:33", + "start_date": "2023-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3282017747338646, + 46.18043243312804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:00", + "start_date": "2019-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4864876938733127, + 46.23622541263118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:18", + "start_date": "2022-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0335378347450135, + 45.906877456491365 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:23", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239653001754647, + 46.19073258470734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:16", + "start_date": "2023-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4832416152564285, + 46.17599486200176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:08", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297630254367735, + 45.98220366857867 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:01", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239653001754647, + 46.19073258470734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:15", + "start_date": "2023-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.756224684351945, + 45.954558314194834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:03", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.756224684351945, + 45.954558314194834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:04", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3670760395894566, + 45.86830223684359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:05", + "start_date": "2023-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3670760395894566, + 45.86830223684359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:06", + "start_date": "2023-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4832416152564285, + 46.17599486200176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:07", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297630254367735, + 45.98220366857867 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:02", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171941051048165, + 45.884709957957774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:09", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5128909982581737, + 46.14672358923505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:11", + "start_date": "2022-09-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5128909982581737, + 46.14672358923505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:12", + "start_date": "2022-09-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9928695454171546, + 46.35557415488703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:13", + "start_date": "2023-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9928695454171546, + 46.35557415488703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:14", + "start_date": "2023-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171941051048165, + 45.884709957957774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MOVIVE_Izivia", + "owner:ref:FR:SIREN": "252309646", + "email": "contact@mobive.fr", + "phone": "969324747", + "network": "Réseau de recharge Creuse", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-00:10", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 8.657888301758055, + 41.908579309038004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "812328128", + "email": "oscar@electromaps.com", + "phone": "34 931.574.967", + "network": "Résidence les calanques", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "TRUE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85, + 45.07 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELEC eCONNECT", + "owner:ref:FR:SIREN": "853251635", + "email": "contact@elec-econnect.fr", + "phone": "0475079175", + "network": "ELEC eCONNECT", + "ref": "530096e5-2e8c-4396-af14-c2ed1b384914", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.32731, + 4.9351181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "793418542", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Agence 973", + "ref": "FR*EZD*E45629", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.131123, + 49.484192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.131123, + 49.484192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.131123, + 49.484192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.131123, + 49.484192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.131123, + 49.484192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.131123, + 49.484192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25, + 44.4 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref": "627644eb-6bb8-4745-a77f-f7ae247ea5ef", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1676349, + 49.2254847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "3a5df8b8-d48d-4b91-916a-83b756aa1a71", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1676349, + 49.2254847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "3a5df8b8-d48d-4b91-916a-83b756aa1a71", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0071297, + 47.6644493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "2c1af022-bfea-4873-95b1-d5b165dc1e3c", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.0071297, + 47.6644493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "2c1af022-bfea-4873-95b1-d5b165dc1e3c", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7638707, + 49.2764924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "cc4f55cf-8fe3-4362-b680-c3b56f4debba", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7638707, + 49.2764924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "cc4f55cf-8fe3-4362-b680-c3b56f4debba", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1550216, + 48.9978196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.815166, + 49.3586376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "2ff50929-ecb2-4e08-a1f3-2373421a9f22", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.815166, + 49.3586376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LIDL, Nicolas Barbarin", + "owner:ref:FR:SIREN": "387880602", + "email": "vgaillon@lidl.fr", + "network": "LIDL", + "ref": "2ff50929-ecb2-4e08-a1f3-2373421a9f22", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Sat 08:30-20:00, Sun 8:30-12:30", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3491347, + 47.3517596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EcoPhi mobility", + "owner:ref:FR:SIREN": "852602259", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3491347, + 47.3517596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EcoPhi mobility", + "owner:ref:FR:SIREN": "852602259", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3491347, + 47.3517596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EcoPhi mobility", + "owner:ref:FR:SIREN": "852602259", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3491347, + 47.3517596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EcoPhi mobility", + "owner:ref:FR:SIREN": "852602259", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3491347, + 47.3517596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EcoPhi mobility", + "owner:ref:FR:SIREN": "852602259", + "email": "contact@properphi.com", + "phone": "603062098", + "network": "PROPERPHI", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4083504069540536, + 48.63538775462057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "société La Clérine", + "owner:ref:FR:SIREN": "830266722", + "email": "contact@hotel-le-bon-cap.com", + "phone": "0296524033", + "network": "Hôtel le bon cap", + "ref": "TACW2244221S3384", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Su 08:00-18:00", + "start_date": "2022-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.325158187997181, + 48.63340097926608 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GABMAG17", + "owner:ref:FR:SIREN": "830297222", + "email": "contact@hoteltrecelin.com", + "phone": "0681475113", + "network": "Hôtel Le Trecelin", + "ref": "TACW2241521S0178", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Su 8:00-12:00,Mo-Su 14:00-18:00", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9851546747886144, + 48.50192886577205 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Les jardins maraichers des bords de rance", + "owner:ref:FR:SIREN": "802549295", + "email": "jerome.desegogne@fulton.fr", + "phone": "0296807121", + "network": "Les jardins de la matz", + "ref": "TACW2244221S3391", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.76385, + 48.5139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Mairie Saint-Brieuc", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.46, + 42.72 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Technic Elec", + "owner:ref:FR:SIREN": "350493102", + "email": "secretariat.technic@orange.fr", + "phone": "0495337506", + "network": "Hôtel l'Alivi", + "ref": "01FR391256KFGBJ9W05VEPKKGD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.817927, + 48.569214 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*57*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.004982, + 48.526901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*62*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.857123, + 48.554886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*58*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.857123, + 48.554886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*58*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.295882, + 48.813103 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*59*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.295882, + 48.813103 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*59*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.305036, + 48.777443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.305036, + 48.777443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.53545, + 48.198631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.004982, + 48.526901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*62*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.768753, + 48.506653 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*63*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.397579, + 48.222214 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*67*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.397579, + 48.222214 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*67*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.138881, + 48.842079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*90*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.26137, + 48.7452 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*68*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.26137, + 48.7452 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*68*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.617642, + 48.276394 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*69*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.951, + 48.5108 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*56*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.817927, + 48.569214 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*57*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.829592, + 48.601341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*48*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.951, + 48.5108 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*56*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.66815, + 48.51302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*50*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.81773, + 48.408218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.744903, + 48.446144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.744903, + 48.446144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.042515, + 48.442223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*70*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.829592, + 48.601341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*48*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.148005, + 48.56057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*49*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.148005, + 48.56057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*49*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.66815, + 48.51302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*50*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.982655, + 48.486935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*55*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.441761, + 48.807404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*51*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.441761, + 48.807404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*51*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.07167, + 48.745758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*53*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.07167, + 48.745758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*53*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.583354, + 48.102253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.583354, + 48.102253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.982655, + 48.486935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*55*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.617642, + 48.276394 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*69*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2244, + 48.334202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*79*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.042515, + 48.442223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*70*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.279891, + 48.751244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*86*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.984804, + 48.747627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*82*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.238562, + 48.797573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*83*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.238562, + 48.797573 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*83*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.408021, + 48.624866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*84*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.408021, + 48.624866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*84*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.300457, + 48.630089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*85*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-08-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.300457, + 48.630089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*85*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-08-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.279891, + 48.751244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*86*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.413295, + 48.794518 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*87*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.413295, + 48.794518 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*87*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29119, + 48.5971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*88*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.29119, + 48.5971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*88*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24004, + 48.52145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*89*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.24004, + 48.52145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*89*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.138881, + 48.842079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*90*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.984804, + 48.747627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*82*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.447615, + 48.705162 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*81*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.447615, + 48.705162 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*81*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.030685, + 48.800983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*80*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.243134, + 48.73119 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*72*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.243134, + 48.73119 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*72*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.513678, + 48.275558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*73*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.513678, + 48.275558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*73*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.837421, + 48.653999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*74*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.837421, + 48.653999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*74*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.175645, + 48.347656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*76*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.175645, + 48.347656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*76*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.396323, + 48.545696 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*77*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.396323, + 48.545696 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*77*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.968046, + 48.541393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*78*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.968046, + 48.541393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*78*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.2244, + 48.334202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*79*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.030685, + 48.800983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*80*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.81773, + 48.408218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.180457, + 48.22707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.53545, + 48.198631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.000515, + 48.536179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*17*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.295955, + 48.394058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*14*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.295955, + 48.394058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*14*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.269847, + 48.59726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.269847, + 48.59726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.444974, + 48.815392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.444974, + 48.815392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.000515, + 48.536179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*17*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.191425, + 48.674393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*18*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.340143, + 48.566673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.191425, + 48.674393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*18*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.228862, + 48.842125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.228862, + 48.842125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.523392, + 48.679855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.523392, + 48.679855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.914907, + 48.509109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*21*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.914907, + 48.509109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*21*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.340143, + 48.566673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.449318, + 48.607483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.567519, + 48.683102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.180457, + 48.22707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.517125, + 48.771851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*91*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.947672, + 48.556736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.947672, + 48.556736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.347963, + 48.672264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.347963, + 48.672264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.342592, + 48.76889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.342592, + 48.76889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.184587, + 48.556637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.449318, + 48.607483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.184587, + 48.556637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20627, + 48.6227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.20627, + 48.6227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.716298, + 48.493778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.716298, + 48.493778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.982932, + 48.631336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.982932, + 48.631336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.567519, + 48.683102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.577855, + 48.771084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34587, + 48.274349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.144788, + 48.580271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.218302, + 48.433086 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.218302, + 48.433086 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.056249, + 48.531796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*35*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.056249, + 48.531796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*35*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.386452, + 48.807682 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.386452, + 48.807682 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.678333, + 48.484627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.144788, + 48.580271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00721, + 48.696449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.186402, + 48.473217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.186402, + 48.473217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.214817, + 48.347222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.214817, + 48.347222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.423825, + 48.283971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.423825, + 48.283971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.34587, + 48.274349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.00721, + 48.696449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.084445, + 48.405834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.577855, + 48.771084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.552271, + 48.588692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.851859, + 48.522652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.851859, + 48.522652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.358388, + 48.812908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.358388, + 48.812908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.467628, + 48.630241 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.467628, + 48.630241 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.552271, + 48.588692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.833905, + 48.62648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.084445, + 48.405834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.833905, + 48.62648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.324368, + 48.408466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.324368, + 48.408466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.126689, + 48.512863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.126689, + 48.512863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.028889, + 48.455833 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.028889, + 48.455833 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.517125, + 48.771851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*91*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.096286, + 48.224899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*117*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.47037, + 48.613342 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*92*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.048475, + 48.776299 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*155*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.757097, + 48.514561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*150*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.486411, + 48.32917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*152*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.486411, + 48.32917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*152*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.854698, + 48.445023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*153*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.854698, + 48.445023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*153*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.057214, + 48.315941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*154*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.057214, + 48.315941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*154*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.048475, + 48.776299 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*155*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44691, + 48.55727 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*149*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9816, + 48.381901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*156*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9816, + 48.381901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*156*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.513626, + 48.832668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*157*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.513626, + 48.832668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*157*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.252257, + 48.239723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*158*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.252257, + 48.239723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*158*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.294399, + 48.252918 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*159*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.757097, + 48.514561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*150*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.44691, + 48.55727 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*149*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.151064, + 48.60416 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*160*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.129, + 48.389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*143*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.523397, + 48.359306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*138*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.045, + 48.352299 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*139*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.045, + 48.352299 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*139*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.838271, + 48.280586 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*141*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.838271, + 48.280586 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*141*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51775, + 48.47099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*142*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51775, + 48.47099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*142*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.129, + 48.389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*143*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.765253, + 48.518089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*147*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0562, + 48.4561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*144*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0562, + 48.4561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*144*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.758196, + 48.177609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*145*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.758196, + 48.177609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*145*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0288, + 48.409 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*146*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0288, + 48.409 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*146*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.765253, + 48.518089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*147*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.294399, + 48.252918 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*159*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.151064, + 48.60416 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*160*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.779689, + 48.514324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*137*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.873183, + 48.663328 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "OUEST CHARGE - 22", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*183*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.441176, + 48.238331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*174*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.453745, + 48.731562 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*176*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.470821, + 48.757046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*178*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.63257, + 48.654836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*179*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.517615, + 48.784696 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*180*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.473512, + 48.611415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*181*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.467023, + 48.606523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*182*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.873183, + 48.663328 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "OUEST CHARGE - 22", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*183*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.735503, + 48.180209 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*173*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.986308, + 48.632057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "OUEST CHARGE - 22", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*184*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.986308, + 48.632057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "OUEST CHARGE - 22", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*184*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.972857, + 48.541696 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "OUEST CHARGE - 22", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*185*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.972857, + 48.541696 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "OUEST CHARGE - 22", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*185*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.229598, + 48.521725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "OUEST CHARGE - 22", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*189*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.229598, + 48.521725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "OUEST CHARGE - 22", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*189*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.47037, + 48.613342 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*92*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.441176, + 48.238331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*174*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.445852, + 48.422768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*172*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1873, + 48.517834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*161*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73364, + 48.23396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*165*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1873, + 48.517834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*161*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51702, + 48.29814 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*162*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.51702, + 48.29814 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*162*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0441, + 48.450901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*163*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0441, + 48.450901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*163*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.247365, + 48.377785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*164*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.247365, + 48.377785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*164*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.73364, + 48.23396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*165*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.165161, + 48.61179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*171*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-07-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.189, + 48.598099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*166*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.189, + 48.598099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*166*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.987586, + 48.198135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*167*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.223394, + 48.786499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*168*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.223394, + 48.786499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*168*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.04553, + 48.4747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*169*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.165161, + 48.61179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*171*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-07-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.523397, + 48.359306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*138*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.987586, + 48.198135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*167*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.779689, + 48.514324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*137*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91299, + 48.403732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*108*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.869649, + 48.389687 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*103*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.869649, + 48.389687 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*103*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.133419, + 48.664848 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*104*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.133419, + 48.664848 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*104*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.009714, + 48.303225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*107*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.009714, + 48.303225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*107*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.91299, + 48.403732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*108*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.727605, + 48.542061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*109*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.914543, + 48.429111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*102*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.727605, + 48.542061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*109*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.13708, + 48.586258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*110*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.13708, + 48.586258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*110*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.159283, + 48.69836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*111*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.159283, + 48.69836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*111*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388829, + 48.449814 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*112*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388829, + 48.449814 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*112*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.914543, + 48.429111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*102*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15994, + 48.315102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*101*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.456394, + 48.727578 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*113*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.248423, + 48.640558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*96*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.316225, + 48.234554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*136*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.928985, + 48.675999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*93*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.928985, + 48.675999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*93*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.125556, + 48.357742 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*94*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.125556, + 48.357742 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*94*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1057, + 48.70467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*95*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.1057, + 48.70467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*95*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.248423, + 48.640558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*96*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.15994, + 48.315102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*101*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.104479, + 48.55711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*97*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-08-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.104479, + 48.55711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*97*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-08-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.736905, + 48.490196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*98*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.736905, + 48.490196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*98*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.751509, + 48.52273 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*99*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3, + 48.381386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*100*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3, + 48.381386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*100*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.456394, + 48.727578 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*113*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.751509, + 48.52273 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*99*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.657751, + 48.42165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*115*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.155936, + 48.732681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*132*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.32811, + 48.655931 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*127*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.703044, + 48.482021 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*128*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.147928, + 48.551281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*129*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0058, + 48.350601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*130*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0058, + 48.350601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*130*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.591516, + 48.176651 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*131*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.591516, + 48.176651 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*131*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.869428, + 48.629478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*133*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.824075, + 48.648033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*126*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.869428, + 48.629478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*133*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.26435, + 48.52913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*134*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.26435, + 48.52913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*134*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9103, + 48.401482 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*135*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.9103, + 48.401482 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*135*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.657751, + 48.42165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*115*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.316225, + 48.234554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*136*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.32811, + 48.655931 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*127*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.155936, + 48.732681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*132*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.824075, + 48.648033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*126*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.792394, + 48.482624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*120*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.103162, + 48.788181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*116*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-08-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.103162, + 48.788181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*116*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-08-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.57723, + 48.53167 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*125*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.096286, + 48.224899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*117*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.043485, + 48.778999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*118*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.043485, + 48.778999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*118*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.633645, + 48.359794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*119*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.792394, + 48.482624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*120*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.633645, + 48.359794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*119*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.57723, + 48.53167 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*125*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.792451, + 48.488029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*121*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187334, + 48.273865 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*122*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.313114, + 48.242321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*124*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.792451, + 48.488029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*121*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.4236, + 48.18869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200046175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 22", + "ref": "FR*SOD*S*SDE2*123*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.261381, + 48.444599 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*68*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.072221, + 48.509758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*70*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.052872, + 48.515488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*71*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.052872, + 48.515488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*71*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.052872, + 48.515488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*71*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.072221, + 48.509758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*70*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.255886, + 48.453716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*69*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.255886, + 48.453716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*69*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.251662, + 48.449455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*67*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.068542, + 48.511307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*72*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.261381, + 48.444599 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*68*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.052872, + 48.515488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*71*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.750491, + 48.474991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*75*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.068542, + 48.511307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*72*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.057633, + 48.091808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*73*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.057633, + 48.091808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*73*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.338243, + 48.000721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*74*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.338243, + 48.000721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*74*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.750491, + 48.474991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*75*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.717236, + 48.645733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*76*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.717236, + 48.645733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*76*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.89678, + 48.301083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*77*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.574715, + 48.587631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*66*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.523272, + 48.570396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*78*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.89678, + 48.301083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*77*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.251662, + 48.449455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*67*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.750712, + 48.362984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*58*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.574715, + 48.587631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*66*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.763813, + 48.448708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*65*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.280342, + 47.796131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.640213, + 48.467697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*79*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.280342, + 47.796131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.709654, + 48.667439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*55*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.709654, + 48.667439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*55*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.411448, + 48.633446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*56*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.411448, + 48.633446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*56*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.160853, + 48.328011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*57*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.160853, + 48.328011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*57*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.750712, + 48.362984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*58*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.167864, + 47.845467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*59*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.167864, + 47.845467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*59*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.214177, + 48.370193 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*60*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.214177, + 48.370193 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*60*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.367066, + 48.644726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.367066, + 48.644726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.374469, + 48.471878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*62*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.374469, + 48.471878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*62*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.315567, + 48.427998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*63*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.315567, + 48.427998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*63*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.977736, + 47.909428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*64*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.977736, + 47.909428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*64*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.763813, + 48.448708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*65*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.523272, + 48.570396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*78*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.565287, + 48.467354 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*98*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.640213, + 48.467697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*79*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.836316, + 47.906761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*93*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.80166, + 47.889305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*94*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.80166, + 47.889305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*94*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.878658, + 48.551712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*95*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.878658, + 48.551712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*95*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.582887, + 47.900269 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*96*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.582887, + 47.900269 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*96*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.584976, + 47.868935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*97*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.584976, + 47.868935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*97*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.565287, + 48.467354 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*98*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.631332, + 47.812168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*99*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.631332, + 47.812168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*99*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.83211, + 48.58287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*100*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.83211, + 48.58287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*100*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.817576, + 48.575111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*101*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.817576, + 48.575111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*101*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.833975, + 48.578419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*102*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.833975, + 48.578419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*102*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.833975, + 48.578419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*102*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.833975, + 48.578419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*102*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.833975, + 48.578419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*102*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.833975, + 48.578419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*102*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.791397, + 47.818333 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*103*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.415043, + 47.93594 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*53*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.836316, + 47.906761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*93*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.30713, + 48.383247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*92*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.64612, + 48.469227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*80*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.30713, + 48.383247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*92*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.64612, + 48.469227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*80*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.461408, + 48.28619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*81*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.461408, + 48.28619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*81*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.836133, + 48.13726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*82*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.836133, + 48.13726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*82*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.770224, + 48.360584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*83*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.770224, + 48.360584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*83*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.176747, + 48.293953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*84*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.176747, + 48.293953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*84*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.335426, + 48.561989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*85*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.335426, + 48.561989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*85*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.256995, + 48.065521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*86*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.256995, + 48.065521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*86*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.320383, + 48.573498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*87*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.320383, + 48.573498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*87*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.64312, + 48.374123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*88*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.64312, + 48.374123 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*88*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.211916, + 48.098244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*89*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.211916, + 48.098244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*89*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.174933, + 47.832439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*90*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.174933, + 47.832439 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*90*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.478167, + 47.937088 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*91*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.478167, + 47.937088 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*91*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.415043, + 47.93594 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*53*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.595497, + 48.275364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.002561, + 48.101925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.326797, + 48.664791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*14*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.375518, + 47.817368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*104*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.595497, + 48.275364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.91355, + 48.667358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.91355, + 48.667358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.539367, + 48.275612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*17*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.539367, + 48.275612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*17*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.576228, + 48.277264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*18*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.576228, + 48.277264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*18*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.139651, + 48.159222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.139651, + 48.159222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.093426, + 48.194569 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.093426, + 48.194569 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05061, + 48.21619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*21*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05061, + 48.21619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*21*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05061, + 48.21619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*21*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.05061, + 48.21619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*21*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.818973, + 48.192974 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.818973, + 48.192974 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.104016, + 48.663445 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.104016, + 48.663445 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.586496, + 47.795624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.586496, + 47.795624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.326797, + 48.664791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*14*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.002561, + 48.101925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.064729, + 47.89743 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.955801, + 48.302963 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.317977, + 48.245838 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.317977, + 48.245838 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.440174, + 47.901684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.440174, + 47.901684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.537401, + 48.026707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.537401, + 48.026707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.700252, + 47.93338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.700252, + 47.93338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.706109, + 47.926643 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.706109, + 47.926643 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.605561, + 47.857525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.605561, + 47.857525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.102162, + 47.871059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.102162, + 47.871059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.106747, + 47.87693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.106747, + 47.87693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.116132, + 47.876938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.116132, + 47.876938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.512228, + 48.074905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.512228, + 48.074905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.507157, + 48.49913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.507157, + 48.49913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.955801, + 48.302963 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.064729, + 47.89743 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.890398, + 47.996445 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.262154, + 48.361095 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.165494, + 48.219227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*40*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.270626, + 48.397804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.270626, + 48.397804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.341825, + 48.09568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*42*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.341825, + 48.09568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*42*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.330149, + 48.092033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.330149, + 48.092033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.32102, + 48.086506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.32102, + 48.086506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.975574, + 48.104568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.975574, + 48.104568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.024456, + 48.008377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.024456, + 48.008377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.012943, + 47.895412 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.012943, + 47.895412 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.011984, + 47.891369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*48*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.011984, + 47.891369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*48*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.115754, + 47.910778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*49*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.115754, + 47.910778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*49*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.5913, + 48.055546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*50*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.5913, + 48.055546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*50*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.583797, + 48.515305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*51*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.583797, + 48.515305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*51*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.165494, + 48.219227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*40*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.262154, + 48.361095 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.890398, + 47.996445 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.506578, + 48.2258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.123075, + 47.874435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.123075, + 47.874435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.956018, + 48.413948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.956018, + 48.413948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9177, + 47.87339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.9177, + 47.87339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.909739, + 47.872265 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.909739, + 47.872265 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.901737, + 47.921692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*31*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.901737, + 47.921692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*31*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.917199, + 47.870399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.917199, + 47.870399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.924636, + 47.877735 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.924636, + 47.877735 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.832747, + 48.060768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.832747, + 48.060768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.418989, + 48.247986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*35*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.418989, + 48.247986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*35*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.491614, + 48.248337 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.491614, + 48.248337 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.507885, + 48.285328 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.507885, + 48.285328 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.506578, + 48.2258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.791397, + 47.818333 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*103*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.722911, + 48.403175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*139*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.375518, + 47.817368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*104*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.095822, + 48.006672 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*174*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.552851, + 47.871124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*175*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.552851, + 47.871124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*175*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.546339, + 47.874336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*176*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.546339, + 47.874336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*176*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.552238, + 47.868786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*177*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.552238, + 47.868786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*177*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.461947, + 47.860291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*178*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.461947, + 47.860291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*178*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.691156, + 47.843136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*179*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.691156, + 47.843136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*179*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.985369, + 48.724209 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*180*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.985369, + 48.724209 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*180*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.980556, + 48.722633 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*181*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.980556, + 48.722633 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*181*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.829561, + 47.958473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*182*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.829561, + 47.958473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*182*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02287, + 47.935459 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*183*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02287, + 47.935459 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*183*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.799367, + 48.153252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*184*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.799367, + 48.153252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*184*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.843285, + 48.575516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*185*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.843285, + 48.575516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*185*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.61037, + 48.567944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*186*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.095822, + 48.006672 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*174*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.093842, + 48.00309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*173*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.98622, + 48.686703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*187*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.093842, + 48.00309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*173*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.119875, + 48.11594 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*160*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.536914, + 47.959827 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*161*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.536914, + 47.959827 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*161*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.083755, + 48.031239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*164*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-12-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.083755, + 48.031239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*164*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.083755, + 48.031239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*164*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.083755, + 48.031239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*164*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-12-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.1279, + 47.986479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*165*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.1279, + 47.986479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*165*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.093657, + 48.013607 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*166*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.093657, + 48.013607 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*166*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.095428, + 48.010571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*167*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.095428, + 48.010571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*167*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.106417, + 47.999485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*168*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.106417, + 47.999485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*168*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.102052, + 47.999451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*169*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.102052, + 47.999451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*169*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.104504, + 47.993977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*170*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.104504, + 47.993977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*170*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08335, + 47.984688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*171*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.08335, + 47.984688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*171*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.072012, + 47.9832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*172*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.072012, + 47.9832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*172*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.61037, + 48.567944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*186*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.98622, + 48.686703 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*187*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.414799, + 48.080925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*159*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.623005, + 47.958649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*201*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.078652, + 48.689281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*202*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.078652, + 48.689281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*202*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02585, + 48.702991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*203*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.02585, + 48.702991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*203*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.538179, + 48.552601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*204*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.538179, + 48.552601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*204*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.678202, + 48.433521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*205*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.678202, + 48.433521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*205*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52067, + 47.90242 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*206*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52067, + 47.90242 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*206*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.051803, + 47.999352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*208*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.051803, + 47.999352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*208*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.203651, + 48.472099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*209*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.203651, + 48.472099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*209*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.757681, + 48.521224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*210*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.757681, + 48.521224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*210*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.317882, + 48.082424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*211*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.317882, + 48.082424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*211*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.317882, + 48.082424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*211*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.317882, + 48.082424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*211*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.832769, + 47.960244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*212*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.832769, + 47.960244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*212*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.650071, + 48.048437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "OUEST CHARGE - 29", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*213*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.623005, + 47.958649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*201*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.851396, + 47.854599 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*200*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.988846, + 48.678314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*188*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.851396, + 47.854599 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*200*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.988846, + 48.678314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*188*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.620963, + 48.433746 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*189*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.620963, + 48.433746 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*189*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.067573, + 48.241135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*190*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.067573, + 48.241135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*190*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.946151, + 48.521469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*191*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.946151, + 48.521469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*191*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.885427, + 48.164818 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*192*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.885427, + 48.164818 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*192*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.850635, + 47.855431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*193*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.850635, + 47.855431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*193*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.937679, + 47.966953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*194*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.937679, + 47.966953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*194*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.354569, + 48.231087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*195*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.354569, + 48.231087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*195*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.702015, + 48.025848 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*196*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.702015, + 48.025848 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*196*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.276989, + 47.79454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*197*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.276989, + 47.79454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*197*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.079161, + 48.405582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*198*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.079161, + 48.405582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*198*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.650071, + 48.048437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "OUEST CHARGE - 29", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*213*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.862684, + 48.106586 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*199*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.119875, + 48.11594 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*160*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.862684, + 48.106586 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*199*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.414799, + 48.080925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*159*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.221155, + 48.125313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*118*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.733003, + 48.432934 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*119*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.733003, + 48.432934 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*119*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.658987, + 48.542091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*120*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.658987, + 48.542091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*120*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.699928, + 48.557819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*121*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.699928, + 48.557819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*121*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.289413, + 48.48246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*122*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.289413, + 48.48246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*122*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.311651, + 48.538128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*123*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.311651, + 48.538128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*123*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.675449, + 48.621498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*124*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.675449, + 48.621498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*124*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.605536, + 48.566917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*125*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.326583, + 48.043823 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*157*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.989944, + 48.631069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*126*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.989944, + 48.631069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*126*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.176036, + 48.658459 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*127*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.176036, + 48.658459 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*127*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.822053, + 48.640057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*128*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.822053, + 48.640057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*128*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.792689, + 48.696903 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*129*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.792689, + 48.696903 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*129*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.719758, + 48.341545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*130*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.221155, + 48.125313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*118*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.82614, + 48.253262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*117*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.712219, + 48.520206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*131*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.82614, + 48.253262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*117*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.430538, + 48.497616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*105*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.045589, + 47.906719 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*106*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.045589, + 47.906719 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*106*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.969462, + 48.225613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*107*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.969462, + 48.225613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*107*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.874457, + 48.5084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*108*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.874457, + 48.5084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*108*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.228642, + 47.824329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*109*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.228642, + 47.824329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*109*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27096, + 47.981709 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*110*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.27096, + 47.981709 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*110*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.190454, + 48.07729 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*111*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.190454, + 48.07729 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*111*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.153028, + 47.935135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*112*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.153028, + 47.935135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*112*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.284916, + 47.841686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*113*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.284916, + 47.841686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*113*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.235011, + 48.180679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*114*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.235011, + 48.180679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*114*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.207378, + 48.016224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*115*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.207378, + 48.016224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*115*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.280146, + 47.901947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*116*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.280146, + 47.901947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*116*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.719758, + 48.341545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*130*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.605536, + 48.566917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*125*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.712219, + 48.520206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*131*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.038069, + 48.578644 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*145*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.112415, + 48.605137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*146*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.112415, + 48.605137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*146*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.424026, + 47.985855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*147*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.424026, + 47.985855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*147*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.18113, + 47.979057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*148*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.18113, + 47.979057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*148*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.752462, + 47.856537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*149*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.752462, + 47.856537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*149*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.486429, + 48.041206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*150*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.085618, + 48.553905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*132*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.488049, + 48.042675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*151*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.488049, + 48.042675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*151*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.224181, + 47.866322 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*152*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.224181, + 47.866322 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*152*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.224541, + 47.862942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*153*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.224541, + 47.862942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*153*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.224656, + 47.870659 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*154*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.224656, + 47.870659 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*154*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.217891, + 47.88036 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*155*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.217891, + 47.88036 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*155*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.764534, + 48.51339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*156*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.764534, + 48.51339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*156*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.326583, + 48.043823 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*157*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.038069, + 48.578644 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*145*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.486429, + 48.041206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*150*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.451106, + 48.531193 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*144*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.70173, + 48.567532 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*138*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.451106, + 48.531193 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*144*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.085618, + 48.553905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*132*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.503862, + 48.606556 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*133*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.503862, + 48.606556 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*133*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.555913, + 48.619442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*134*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.555913, + 48.619442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*134*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.602025, + 48.525082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*135*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.602025, + 48.525082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*135*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.486453, + 48.014278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*136*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.486453, + 48.014278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*136*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.299168, + 48.608871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*137*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.299168, + 48.608871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*137*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.70173, + 48.567532 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*138*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.430538, + 48.497616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*105*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.722911, + 48.403175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*139*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.211415, + 48.513668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*140*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.211415, + 48.513668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*140*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.211429, + 48.617405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*141*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.211429, + 48.617405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*141*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.68705, + 48.50914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*142*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.68705, + 48.50914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*142*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.790468, + 48.534348 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*143*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.790468, + 48.534348 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*143*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.52, + 48.7 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Le Manoir de l'Isle", + "owner:ref:FR:SIREN": "842369456", + "email": "contact@manoirdelisle.com", + "phone": "0661150201", + "network": "Manoir de l isle", + "ref": "01FM50GFVBTBH0BZN9YWKN8QEM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NOVABIO", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "network": "NOVABIO", + "ref": "EVB-P1942027", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-17:00", + "start_date": "2021-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NOVABIO", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "network": "NOVABIO", + "ref": "EVB-P1942027", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-17:00", + "start_date": "2021-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NOVABIO", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "network": "NOVABIO", + "ref": "EVB-P1942027", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-17:00", + "start_date": "2021-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NOVABIO", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "network": "NOVABIO", + "ref": "EVB-P1942027", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-17:00", + "start_date": "2021-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NOVABIO", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "network": "NOVABIO", + "ref": "EVB-P1942027", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-17:00", + "start_date": "2021-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NOVABIO", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "network": "NOVABIO", + "ref": "EVB-P1942027", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-17:00", + "start_date": "2021-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NOVABIO", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "network": "NOVABIO", + "ref": "EVB-P1942027", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-17:00", + "start_date": "2021-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NOVABIO", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "network": "NOVABIO", + "ref": "EVB-P1942027", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-17:00", + "start_date": "2021-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NOVABIO", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "network": "NOVABIO", + "ref": "EVB-P1942027", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-17:00", + "start_date": "2021-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6969556979136504, + 45.132872088016235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NOVABIO", + "owner:ref:FR:SIREN": "497795005", + "email": "novabio.labo@laposte.net", + "network": "NOVABIO", + "ref": "EVB-P1942027", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:00-17:00", + "start_date": "2021-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.95, + 44.96 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Electromaps", + "owner:ref:FR:SIREN": "905250809", + "email": "oscar@electromaps.com", + "phone": "+34 931 574 967", + "network": "Réseau de recharge Soulier", + "ref": "48752c4b-2ca2-40af-b488-b5aa3fd4355d", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.2, + 42.45 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "F.B. AUTOMOBILES", + "owner:ref:FR:SIREN": "844623611", + "email": "filippi.gl@gmail.com", + "phone": "0675357392", + "network": "F.B. AUTOMOBILES", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Sa 09:00-12:00", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.972928, + 48.474519 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.972928, + 48.474519 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200082477", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "TEM53", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.0769923, + 47.3512055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "FReshmile", + "owner:ref:FR:SIREN": "015450596", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "KEOLIS", + "ref": "FR*FR1*EUVMW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2021-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706151", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706151", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706151", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706151", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706151", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706151", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706151", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706151", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706151", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.521648, + 48.40612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706151", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.108344, + 47.997848 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789174", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.485094, + 48.401232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "735822", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.485094, + 48.401232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "735822", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.430718, + 44.968101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "814572", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.332955, + 47.407277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "788757", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.716365, + 49.20135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "744225", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.332955, + 47.407277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "788757", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.332955, + 47.407277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "788757", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.866728, + 47.513851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "788760", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.866728, + 47.513851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "788760", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.430718, + 44.968101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "814572", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545529, + 48.472713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "747285", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545529, + 48.472713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "747285", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545529, + 48.472713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "747285", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545529, + 48.472713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "747285", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843743, + 47.040481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "761370", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3571, + 47.3395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805239", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843743, + 47.040481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "761370", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.3571, + 47.3395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805239", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843743, + 47.040481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "761370", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.843743, + 47.040481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "761370", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.303727, + 46.799849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880239", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92037, + 44.943271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "626654", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92037, + 44.943271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "626654", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92037, + 44.943271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "626654", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.657747, + 45.191302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "811086", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.657747, + 45.191302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "811086", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.657747, + 45.191302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "811086", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.954775, + 47.160968 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "674792", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.954775, + 47.160968 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "674792", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84073, + 47.48726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "766611", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84073, + 47.48726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Atlante | FR*ATL", + "email": "operations.france@atlante.energy", + "network": "Atlante", + "ref": "766611", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.443023, + 48.919093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "577511", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.745177, + 44.558061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706307", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.745177, + 44.558061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706307", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18768, + 45.017224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789177", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18768, + 45.017224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789177", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.084763, + 47.992697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "781629", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.084763, + 47.992697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "781629", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.737657, + 44.533779 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880245", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057488, + 47.338265 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "801984", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.468012, + 48.414563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706283", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -4.468012, + 48.414563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706283", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.58243, + 47.86667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706262", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708686", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708686", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708686", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708686", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708686", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708686", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708686", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.902871, + 44.420364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708686", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.58243, + 47.86667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706262", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.190834, + 48.766404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741696", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.190834, + 48.766404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741696", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.190834, + 48.766404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741696", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.023903, + 44.928469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741723", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.023903, + 44.928469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741723", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86124, + 44.314247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741717", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86124, + 44.314247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741717", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.023903, + 44.928469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741723", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.023903, + 44.928469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741723", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "675536", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "675536", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "675536", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "675536", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "675536", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "675536", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "675536", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "675536", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "675539", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "675539", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "675539", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "675539", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "675539", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.186634, + 49.25483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "675539", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.735438, + 48.509679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706232", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.735438, + 48.509679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706232", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.057537, + 47.338212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706199", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + } + ] +} \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_3.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_3.json new file mode 100644 index 00000000..39a9ea6f --- /dev/null +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_3.json @@ -0,0 +1,108362 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.063407, + 44.854019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.063407, + 44.854019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.063407, + 44.854019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682919, + 48.082244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-11-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.628969, + 44.880766 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.628969, + 44.880766 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.628969, + 44.880766 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.628969, + 44.880766 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682919, + 48.082244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-11-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.063407, + 44.854019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.83571, + 43.567505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.83571, + 43.567505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.83571, + 43.567505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.83571, + 43.567505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.682108, + 45.216314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.682108, + 45.216314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.682108, + 45.216314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.682108, + 45.216314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.790077, + 45.585027 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.790077, + 45.585027 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.790077, + 45.585027 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.790077, + 45.585027 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682919, + 48.082244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-11-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682919, + 48.082244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-11-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682919, + 48.082244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-11-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682919, + 48.082244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-11-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.375103, + 43.637548 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.375103, + 43.637548 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.375103, + 43.637548 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.375103, + 43.637548 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.644915, + 44.788386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.644915, + 44.788386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.644915, + 44.788386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.644915, + 44.788386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.587263, + 44.783785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.587263, + 44.783785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.587263, + 44.783785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.587263, + 44.783785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602809, + 44.790293 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602809, + 44.790293 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602809, + 44.790293 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602809, + 44.790293 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432381, + 43.627319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432381, + 43.627319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432381, + 43.627319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.432381, + 43.627319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.891127, + 43.586799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.891127, + 43.586799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.891127, + 43.586799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.891127, + 43.586799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.376359, + 43.632098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.896053, + 43.586723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.896053, + 43.586723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.896053, + 43.586723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.896053, + 43.586723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.696014, + 45.1508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.696014, + 45.1508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.696014, + 45.1508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.696014, + 45.1508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343442, + 43.814854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343442, + 43.814854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343442, + 43.814854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343442, + 43.814854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567111, + 44.890889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.498058, + 44.867476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.498058, + 44.867476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.498058, + 44.867476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.498058, + 44.867476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.201663, + 44.641716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*181*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.201663, + 44.641716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*181*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.201663, + 44.641716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*181*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.201663, + 44.641716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*181*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.201663, + 44.641716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*181*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.193047, + 44.658496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*180*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.193047, + 44.658496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*180*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.193047, + 44.658496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*180*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.193047, + 44.658496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*180*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.165259, + 44.659664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*179*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.165259, + 44.659664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*179*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.165259, + 44.659664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*179*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.165259, + 44.659664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*179*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.165259, + 44.659664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*179*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.146988, + 44.656649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*178*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.146988, + 44.656649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*178*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.146988, + 44.656649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*178*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.146988, + 44.656649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*178*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.146988, + 44.656649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*178*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.193047, + 44.658496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "213300098", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "ARCACHON", + "ref": "FR*SOD*S*OTHR*180*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244976, + 44.944289 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*162*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.115768, + 44.639867 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*165*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.115768, + 44.639867 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*165*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345016, + 44.81952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*164*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.345016, + 44.81952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*164*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.128961, + 45.015847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*163*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.128961, + 45.015847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*163*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244976, + 44.944289 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*162*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244976, + 44.944289 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*162*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244976, + 44.944289 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*162*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.438853, + 44.85042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*167*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.400987, + 44.708023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*161*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.400987, + 44.708023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*161*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424664, + 44.914339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*160*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424664, + 44.914339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*160*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424664, + 44.914339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*160*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.424664, + 44.914339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*160*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.135596, + 44.819706 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*159*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.135596, + 44.819706 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*159*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.050627, + 44.776755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*158*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.050627, + 44.776755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*158*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.438853, + 44.85042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*167*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.031351, + 44.878628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.463965, + 44.847856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*168*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369699, + 44.882555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*174*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.050627, + 44.776755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*158*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.031351, + 44.878628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.486943, + 44.765249 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*177*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.486943, + 44.765249 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*177*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.122837, + 45.515089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*176*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.122837, + 45.515089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*176*2*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.122837, + 45.515089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*176*2*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.123766, + 45.513463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*175*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.123766, + 45.513463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*175*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369699, + 44.882555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*174*2*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.463965, + 44.847856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*168*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.369699, + 44.882555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*174*2*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.373517, + 44.692539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*173*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.373517, + 44.692539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*173*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342405, + 44.53057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*172*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.342405, + 44.53057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*172*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.474491, + 44.812994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*170*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.474491, + 44.812994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*170*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074516, + 44.618461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*169*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074516, + 44.618461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*169*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.050627, + 44.776755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*158*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.960185, + 44.627885 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*154*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436955, + 45.005005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*157*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.241218, + 44.91774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*82*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.241469, + 44.911701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*83*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.241469, + 44.911701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*83*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23693, + 44.916817 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*84*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.23693, + 44.916817 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*84*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.243664, + 44.91433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*85*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.243664, + 44.91433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*85*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603403, + 44.982456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*86*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603403, + 44.982456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*86*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.095814, + 44.948994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*87*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.095814, + 44.948994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*87*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26885, + 45.070889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*88*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26885, + 45.070889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*88*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.855523, + 44.692165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*89*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.855523, + 44.692165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*89*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.85433, + 44.690495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*90*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.85433, + 44.690495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*90*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.384012, + 45.067467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*91*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.384012, + 45.067467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*91*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.542552, + 44.714039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*92*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.542552, + 44.714039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*92*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.581216, + 44.712681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*93*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.581216, + 44.712681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*93*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.584632, + 44.709854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*94*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.584632, + 44.709854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*94*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.939739, + 44.606319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*95*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.939739, + 44.606319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*95*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.083541, + 44.650417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*96*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.083541, + 44.650417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*96*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.126781, + 44.929531 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*97*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.241218, + 44.91774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*82*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.001139, + 44.91209 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*81*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.033432, + 44.701801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*66*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.001139, + 44.91209 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*81*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.056711, + 44.712387 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*67*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.343015, + 45.107861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*68*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.343015, + 45.107861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*68*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.498521, + 44.785572 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*69*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.498521, + 44.785572 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*69*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.770521, + 44.607964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*70*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.770521, + 44.607964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*70*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.032427, + 45.059238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*71*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.032427, + 45.059238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*71*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.025833, + 44.632778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*72*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.025833, + 44.632778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*72*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.021466, + 44.635406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*73*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.021466, + 44.635406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*73*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.026443, + 44.631077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*74*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.026443, + 44.631077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*74*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.601472, + 44.727711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*78*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.601472, + 44.727711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*78*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598145, + 44.727558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*79*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598145, + 44.727558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*79*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.097568, + 45.069656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*80*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.097568, + 45.069656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*80*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.126781, + 44.929531 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*97*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.747904, + 45.199554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*98*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.747904, + 45.199554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*98*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.077091, + 44.742752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*99*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276985, + 45.030991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*115*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.609335, + 45.290096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*116*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.609335, + 45.290096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*116*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.204426, + 44.9921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*117*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.204426, + 44.9921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*117*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.156992, + 44.896271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*118*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.156992, + 44.896271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*118*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.327441, + 44.94614 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*119*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.327441, + 44.94614 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*119*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.784099, + 44.809963 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*120*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.784099, + 44.809963 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*120*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.780595, + 44.812153 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*121*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.780595, + 44.812153 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*121*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.822102, + 45.149315 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*122*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.822102, + 45.149315 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*122*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.426206, + 44.916077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*123*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436955, + 45.005005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*157*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.056675, + 45.014774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*124*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.056675, + 45.014774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*124*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478578, + 44.671124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*125*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.478578, + 44.671124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*125*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.000992, + 45.015003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*126*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.000992, + 45.015003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*126*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.003134, + 45.01342 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*127*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.003134, + 45.01342 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*127*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.190544, + 44.876118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*128*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.190544, + 44.876118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*128*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.488382, + 44.429783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*129*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.488382, + 44.429783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*129*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.276985, + 45.030991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*115*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.023352, + 44.939892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*114*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.023352, + 44.939892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*114*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.001493, + 44.981499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*106*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.077091, + 44.742752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*99*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.078747, + 44.820744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*100*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.078747, + 44.820744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*100*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.064026, + 44.981812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*101*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.064026, + 44.981812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*101*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.226371, + 44.830223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*102*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.226371, + 44.830223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*102*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.354772, + 44.650349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*103*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.354772, + 44.650349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*103*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.423946, + 44.696251 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*104*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.423946, + 44.696251 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*104*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.074422, + 44.925064 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*105*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.074422, + 44.925064 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*105*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.001493, + 44.981499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*106*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.507449, + 45.130127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*113*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.488296, + 44.755913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*107*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.488296, + 44.755913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*107*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.126184, + 44.778473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*108*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.126184, + 44.778473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*108*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.176874, + 45.025108 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*109*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.176874, + 45.025108 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*109*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44713, + 45.139946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*110*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44713, + 45.139946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*110*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.040668, + 45.027435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*111*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.040668, + 45.027435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*111*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.557763, + 45.248619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*112*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.557763, + 45.248619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*112*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.507449, + 45.130127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*113*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.056711, + 44.712387 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*67*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.033432, + 44.701801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*66*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.443644, + 44.996262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*130*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.662261, + 45.129269 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.664302, + 45.124519 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*17*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.560364, + 45.039116 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.560364, + 45.039116 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624, + 45.251667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624, + 45.251667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.626513, + 45.246693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*21*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.626513, + 45.246693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*21*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.700727, + 45.284054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.700727, + 45.284054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.529436, + 44.755657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.529436, + 44.755657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030508, + 45.015129 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030508, + 45.015129 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.654258, + 44.763481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.654258, + 44.763481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.64122, + 44.750343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.64122, + 44.750343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.261004, + 44.292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.261004, + 44.292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.797203, + 45.025738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.797203, + 45.025738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.043266, + 44.852478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.043266, + 44.852478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.042146, + 44.85408 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.042146, + 44.85408 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389539, + 45.101608 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.389539, + 45.101608 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.684628, + 44.741707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.684628, + 44.741707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.664302, + 45.124519 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*17*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.662261, + 45.129269 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.248891, + 44.553619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*65*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.663159, + 45.131039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.449122, + 44.703663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.449122, + 44.703663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.014052, + 44.682381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.014052, + 44.682381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.015976, + 44.683964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.015976, + 44.683964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.138983, + 44.765343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.138983, + 44.765343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.141424, + 44.764664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.141424, + 44.764664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.163121, + 44.663528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.163121, + 44.663528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.172374, + 44.663364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.172374, + 44.663364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16609, + 44.659492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*3*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16609, + 44.659492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*3*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16609, + 44.659492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16609, + 44.659492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098947, + 44.74308 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098947, + 44.74308 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.106562, + 44.74374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.106562, + 44.74374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.975692, + 44.64143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.975692, + 44.64143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.965542, + 44.637932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.965542, + 44.637932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.965469, + 44.639351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*14*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.965469, + 44.639351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*14*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.663159, + 45.131039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.701827, + 44.771759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.701827, + 44.771759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.408791, + 45.075554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.408791, + 45.075554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.035621, + 44.584213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*51*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.035621, + 44.584213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*51*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.034757, + 44.582245 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*52*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.034757, + 44.582245 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*52*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.195334, + 45.001762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*59*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.195334, + 45.001762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*59*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074968, + 44.977234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*60*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074968, + 44.977234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*60*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41494, + 44.567455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41494, + 44.567455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.400897, + 44.708164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*62*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.400897, + 44.708164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*62*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.245125, + 44.553131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*63*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.245125, + 44.553131 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*63*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.248037, + 44.555328 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*64*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.248037, + 44.555328 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*64*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.248891, + 44.553619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*65*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.037012, + 44.581619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*50*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.037012, + 44.581619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*50*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.531089, + 44.679783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*49*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.041403, + 44.39061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.573481, + 45.224117 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*35*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.573481, + 45.224117 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*35*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.445306, + 44.824787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.445306, + 44.824787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.007033, + 44.945431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.007033, + 44.945431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.271769, + 44.924076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.271769, + 44.924076 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.274073, + 44.992256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.274073, + 44.992256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.022342, + 44.992886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*40*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.022342, + 44.992886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*40*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.041403, + 44.39061 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.185352, + 45.040447 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*42*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.531089, + 44.679783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*49*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.185352, + 45.040447 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*42*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0602, + 44.63863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0602, + 44.63863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.071506, + 44.635715 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.071506, + 44.635715 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0694, + 44.640648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0694, + 44.640648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.069077, + 44.64072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.069077, + 44.64072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.068484, + 44.640541 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.068484, + 44.640541 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.361701, + 44.91988 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*48*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.361701, + 44.91988 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*48*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.443644, + 44.996262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*130*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.426206, + 44.916077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*123*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.430289, + 44.992447 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*131*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.601418, + 45.190145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*151*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.601418, + 45.190145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*151*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244545, + 44.946975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*152*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244545, + 44.946975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*152*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244545, + 44.946975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*152*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244545, + 44.946975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*152*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.316924, + 44.897648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*150*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.960185, + 44.627885 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*154*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.960185, + 44.627885 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*154*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826756, + 44.664279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*155*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826756, + 44.664279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*155*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.601418, + 45.190145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*151*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.316924, + 44.897648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*150*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.083812, + 44.692291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*144*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.430289, + 44.992447 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*131*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.867027, + 44.550583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*142*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.867027, + 44.550583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*142*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.088728, + 44.694389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*143*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.088728, + 44.694389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*143*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.083812, + 44.692291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*144*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15, + 45.484943 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*145*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260849, + 44.55788 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*149*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15, + 45.484943 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*145*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.126126, + 45.514442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*146*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.126126, + 45.514442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*146*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.265181, + 44.734566 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*148*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.265181, + 44.734566 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*148*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260849, + 44.55788 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*149*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826756, + 44.664279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*155*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.601418, + 45.190145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*151*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.485241, + 44.907875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*135*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.031379, + 44.914112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*138*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.031379, + 44.914112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*138*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.063501, + 44.898205 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*137*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.063501, + 44.898205 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*137*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.473356, + 44.908749 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*136*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.485241, + 44.907875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*135*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.473999, + 44.904659 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*134*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.410028, + 45.139877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*139*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.473999, + 44.904659 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*134*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06199, + 44.879169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*133*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06199, + 44.879169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*133*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.014856, + 45.079998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*132*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.014856, + 45.079998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*132*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.410028, + 45.139877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*139*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.473356, + 44.908749 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*136*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.392749, + 45.140446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*140*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396709, + 44.842957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*141*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436955, + 45.005005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*157*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436955, + 45.005005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*157*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.396709, + 44.842957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*141*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.392749, + 45.140446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*140*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99055, + 48.625582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*244*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99055, + 48.625582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*244*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99055, + 48.625582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*244*2*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99055, + 48.625582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*244*2*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.016885, + 47.403579 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*243*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99055, + 48.625582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*244*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.016885, + 47.403579 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*243*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.016885, + 47.403579 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*243*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.669763, + 46.820196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*103*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.669763, + 46.820196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*103*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602749, + 44.786403 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*213*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602749, + 44.786403 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*213*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659959, + 47.42451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*267*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659959, + 47.42451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*267*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659959, + 47.42451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*267*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630486, + 45.577675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref": "FR*SOD*S*AVTD*20*1*_*_", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.052789, + 47.322222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref": "FR*SOD*S*AVTD*16*6*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.052789, + 47.322222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref": "FR*SOD*S*AVTD*16*6*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.438933, + 43.868104 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "352860639", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA TD", + "ref": "FR*SOD*S*AVTD*2*2*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84497, + 43.417625 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref": "FR*SOD*S*WIIZ*219*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84497, + 43.417625 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "240600585", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "WIIIZ", + "ref": "FR*SOD*S*WIIZ*219*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.573959, + 45.90671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref": "FR*SOD*S*SYDR*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.573959, + 45.90671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref": "FR*SOD*S*SYDR*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.977736, + 45.047359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*94*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.977736, + 45.047359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*94*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210743, + 44.84433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*88*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.210743, + 44.84433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252401476", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDE 24", + "ref": "FR*SOD*S*MB24*88*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.386217, + 43.293338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.386217, + 43.293338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "912043676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MAMP", + "ref": "FR*SOD*S*MAMP*4*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.037276, + 47.585286 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST NICOLAS DES MOTETS 4340 - Rue de la poste", + "ref": "FRS37E434", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.407851, + 45.806785 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Montalieu-Vercieu", + "ref": "FRIENE002602", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.407851, + 45.806785 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Montalieu-Vercieu", + "ref": "FRIENE002602", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.407851, + 45.806785 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Montalieu-Vercieu", + "ref": "FRIENE002601", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929119, + 46.854559 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PREUILLY SUR CLAISE 4338", + "ref": "FRS37E433", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.407851, + 45.806785 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Montalieu-Vercieu", + "ref": "FRIENE002601", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42481307, + 47.11995595 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'ILE BOUCHARD 1338", + "ref": "FRS37E138", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42481307, + 47.11995595 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'ILE BOUCHARD 1338", + "ref": "FRS37E133", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929119, + 46.854559 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PREUILLY SUR CLAISE 4338", + "ref": "FRS37E433", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.452333, + 47.071648 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR DOLE", + "ref": "FRCPIE6704845", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.452333, + 47.071648 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR DOLE", + "ref": "FRCPIE6704845", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.785548, + 48.09154 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MOF BORNE 1", + "ref": "FRCPIE6604335", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.718157, + 47.39166 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST PIERRE DES CORPS 4343 - Parking Despouy", + "ref": "FRS37E434", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.785548, + 48.09154 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MOF BORNE 1", + "ref": "FRCPIE6604335", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666684, + 47.399974 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 1343 - Esplanade", + "ref": "FRS37E134", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666684, + 47.399974 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 1343 - Esplanade", + "ref": "FRS37E134", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.672126, + 47.254312 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sorigny A10 CCS", + "ref": "FRS37E431", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.672126, + 47.254312 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sorigny A10 CCS", + "ref": "FRS37E431", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.672126, + 47.254312 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sorigny A10 CCS", + "ref": "FRS37E431", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.672126, + 47.254312 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sorigny A10 CCS", + "ref": "FRS37E431", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.037276, + 47.585286 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST NICOLAS DES MOTETS 4340 - Rue de la poste", + "ref": "FRS37E434", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.718157, + 47.39166 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST PIERRE DES CORPS 4343 - Parking Despouy", + "ref": "FRS37E434", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.908075, + 47.509629 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLE LE LIERRE 4503 - Place de la gare", + "ref": "FRS37E450", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.908075, + 47.509629 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLE LE LIERRE 4503 - Place de la gare", + "ref": "FRS37E450", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.244902, + 47.1648 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 4504 - Place Jeanne d'arc", + "ref": "FRS37E450", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.244902, + 47.1648 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 4504 - Place Jeanne d'arc", + "ref": "FRS37E565", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.553296, + 47.016191 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PORTS 4506 - Place Romain Rideau", + "ref": "FRS37E450", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.553296, + 47.016191 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PORTS 4506 - Place Romain Rideau", + "ref": "FRS37E450", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.390409, + 47.636004 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AUBIN LE DEPEINT 4345 - Place de la Mairie", + "ref": "FRS37E434", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.390409, + 47.636004 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AUBIN LE DEPEINT 4345 - Place de la Mairie", + "ref": "FRS37E434", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3438376, + 43.3603506 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc NORD", + "ref": "FRSHEE164", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3438376, + 43.3603506 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc NORD", + "ref": "FRSHEE164", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.226371, + 44.910821 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR LIBOURNE", + "ref": "FRCPIE6631655", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.226371, + 44.910821 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR LIBOURNE", + "ref": "FRCPIE6631655", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828268, + 45.491712 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED CGED VIENNE", + "ref": "FRCPIE6632365", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.828268, + 45.491712 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED CGED VIENNE", + "ref": "FRCPIE6632365", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3438376, + 43.3603506 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc NORD", + "ref": "FRSHEE163", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3438376, + 43.3603506 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc NORD", + "ref": "FRSHEE164", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3438376, + 43.3603506 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc NORD", + "ref": "FRSHEE163", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3438376, + 43.3603506 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc NORD", + "ref": "FRSHEE163", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58761, + 47.108011 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", + "ref": "FRS37E416", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58761, + 47.108011 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", + "ref": "FRS37E416", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58761, + 47.108011 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", + "ref": "FRS37E416", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58761, + 47.108011 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "L'aquitaine Sainte-Maure-de-Touraine CCS4166", + "ref": "FRS37E416", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0729855, + 43.656838 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Riscle", + "ref": "FRIENE004402", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0729855, + 43.656838 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Riscle", + "ref": "FRIENE004402", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0729855, + 43.656838 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Riscle", + "ref": "FRIENE004401", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0729855, + 43.656838 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Riscle", + "ref": "FRIENE004401", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94627322, + 47.20955182 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AZAY SUR INDRE 1204", + "ref": "FRS37E120", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94627322, + 47.20955182 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AZAY SUR INDRE 1204", + "ref": "FRS37E120", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.965193, + 47.310522 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bléré", + "ref": "FRIENE002302", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.965193, + 47.310522 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bléré", + "ref": "FRIENE002302", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.965193, + 47.310522 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bléré", + "ref": "FRIENE002301", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.965193, + 47.310522 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Bléré", + "ref": "FRIENE002301", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.988258, + 47.289471 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SUBLAINES 1577", + "ref": "FRS37E157", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919507, + 46.92181 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE PETIT PRESSIGNY 1270", + "ref": "FRS37E127", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.919507, + 46.92181 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE PETIT PRESSIGNY 1270", + "ref": "FRS37E127", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.011295, + 47.13251 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAULIEU LES LOCHES 1561", + "ref": "FRS37E156", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.011295, + 47.13251 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAULIEU LES LOCHES 1561", + "ref": "FRS37E156", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.862188, + 46.870463 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAUMUSSAY 1220", + "ref": "FRS37E122", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.862188, + 46.870463 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAUMUSSAY 1220", + "ref": "FRS37E122", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.988258, + 47.289471 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SUBLAINES 1577", + "ref": "FRS37E157", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.387367, + 48.418057 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maen Roch", + "ref": "FRIENE001202", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.387367, + 48.418057 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maen Roch", + "ref": "FRIENE001202", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.387367, + 48.418057 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maen Roch", + "ref": "FRIENE001201", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.387367, + 48.418057 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Maen Roch", + "ref": "FRIENE001201", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.715108, + 47.305223 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEIGNE 1328 - Les Gués", + "ref": "FRS37E132", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.715108, + 47.305223 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEIGNE 1328 - Les Gués", + "ref": "FRS37E132", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.332181, + 46.440327 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Amour", + "ref": "FRIENE006102", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.332181, + 46.440327 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Amour", + "ref": "FRIENE006102", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.332181, + 46.440327 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Amour", + "ref": "FRIENE006101", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.332181, + 46.440327 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Amour", + "ref": "FRIENE006101", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.882983, + 45.284904 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR AED CROLLES", + "ref": "FRCPIE6590225", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.882983, + 45.284904 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR AED CROLLES", + "ref": "FRCPIE6590225", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.51155, + 47.169884 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUIL 3567 - Parking Impasse des Lizas", + "ref": "FRS37E356", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.256099, + 43.331777 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT BEZIERS_", + "ref": "FRCPIE6609535", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0926193, + 47.40984692 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SOUVIGNY DE TOURAINE 1462", + "ref": "FRS37E146", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.580119, + 47.223487 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THILOUZE 1464", + "ref": "FRS37E146", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.580119, + 47.223487 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THILOUZE 1464", + "ref": "FRS37E146", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.495216, + 43.309523 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT AGDE", + "ref": "FRCPIE6609465", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.495216, + 43.309523 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT AGDE", + "ref": "FRCPIE6609465", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.081558, + 47.027467 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRIDORE 1467", + "ref": "FRS37E146", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.081558, + 47.027467 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRIDORE 1467", + "ref": "FRS37E146", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.745838, + 47.441886 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PARCAY MESLAY 1469", + "ref": "FRS37E146", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.745838, + 47.441886 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PARCAY MESLAY 1469", + "ref": "FRS37E147", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.222769, + 43.368789 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED BEZIERS", + "ref": "FRCPIE6609505", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.222769, + 43.368789 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED BEZIERS", + "ref": "FRCPIE6609505", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.256099, + 43.331777 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT BEZIERS_", + "ref": "FRCPIE6609535", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0926193, + 47.40984692 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SOUVIGNY DE TOURAINE 1462", + "ref": "FRS37E146", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.549604, + 47.348606 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVONNIERES 1460 - Place du Faisan", + "ref": "FRS37E146", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.445236, + 47.451294 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AMBILLOU 1444", + "ref": "FRS37E144", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.445236, + 47.451294 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AMBILLOU 1444", + "ref": "FRS37E144", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31917483, + 47.5476166 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU LA VALLIERE 1446", + "ref": "FRS37E144", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31917483, + 47.5476166 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU LA VALLIERE 1446", + "ref": "FRS37E144", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.894899, + 46.944576 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CELLE GUENAND 1449", + "ref": "FRS37E144", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.894899, + 46.944576 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CELLE GUENAND 1449", + "ref": "FRS37E147", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.549604, + 47.348606 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVONNIERES 1460 - Place du Faisan", + "ref": "FRS37E146", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04215052, + 47.05603596 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNEUIL SUR INDRE 1453", + "ref": "FRS37E145", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.04215052, + 47.05603596 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNEUIL SUR INDRE 1453", + "ref": "FRS37E145", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.377102, + 46.975509 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RAZINES 1441", + "ref": "FRS37E144", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.377102, + 46.975509 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RAZINES 1441", + "ref": "FRS37E145", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.909736, + 47.355949 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT MARTIN LE BEAU 1456", + "ref": "FRS37E145", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.909736, + 47.355949 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT MARTIN LE BEAU 1456", + "ref": "FRS37E145", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.348189, + 47.308279 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COTEAUX-SUR-LOIRE 1458", + "ref": "FRS37E145", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.348189, + 47.308279 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COTEAUX-SUR-LOIRE 1458", + "ref": "FRS37E145", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19641119, + 47.39251545 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GIZEUX 15744 - Place de la Mairie", + "ref": "FRS37E1574", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.538582, + 47.14435 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT EPAIN 1565", + "ref": "FRS37E156", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39297, + 47.425562 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CLERE LES PINS 1563", + "ref": "FRS37E156", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.39297, + 47.425562 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CLERE LES PINS 1563", + "ref": "FRS37E156", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.538582, + 47.14435 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT EPAIN 1565", + "ref": "FRS37E156", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47377385, + 47.31067554 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLERES 1567", + "ref": "FRS37E156", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47377385, + 47.31067554 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLERES 1567", + "ref": "FRS37E156", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.030155, + 47.433521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARGE 1558", + "ref": "FRS37E155", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.030155, + 47.433521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARGE 1558", + "ref": "FRS37E157", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.421643, + 47.382828 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAZIERES DE TOURAINE 15734 - Rue du Stade", + "ref": "FRS37E1573", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.421643, + 47.382828 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAZIERES DE TOURAINE 15734 - Rue du Stade", + "ref": "FRS37E1573", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331183, + 43.477012 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT MURET", + "ref": "FRCPIE6610395", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331183, + 43.477012 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT MURET", + "ref": "FRCPIE6610395", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.90823621, + 47.58978807 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU RENAULT 1551 - Avenue du Maine", + "ref": "FRS37E155", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.90823621, + 47.58978807 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU RENAULT 1551 - Avenue du Maine", + "ref": "FRS37E155", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6263851, + 47.40395902 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FONDETTES 1376 - Gustave Eiffel", + "ref": "FRS37E137", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6263851, + 47.40395902 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FONDETTES 1376 - Gustave Eiffel", + "ref": "FRS37E137", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91908306, + 47.54254534 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Auzouer de Touraine - 53927 - Pl Général Leclerc", + "ref": "FRS37E5392", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.727834, + 47.368329 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AVERTIN 1442", + "ref": "FRS37E156", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.727834, + 47.368329 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AVERTIN 1442", + "ref": "FRS37E144", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.10312551, + 47.22885084 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE LIEGE 1268", + "ref": "FRS37E126", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.10312551, + 47.22885084 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE LIEGE 1268", + "ref": "FRS37E126", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.110755, + 44.119222 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED ALES", + "ref": "FRCPIE6606395", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.110755, + 44.119222 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED ALES", + "ref": "FRCPIE6606395", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995569, + 47.328019 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLERE 1387 - Camping", + "ref": "FRS37E138", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.143419, + 47.253068 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CERE LA RONDE 1371 - Château", + "ref": "FRS37E137", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.143419, + 47.253068 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CERE LA RONDE 1371 - Château", + "ref": "FRS37E137", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70095375, + 47.47147261 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHANCEAUX SUR CHOISILLE 1373", + "ref": "FRS37E137", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70095375, + 47.47147261 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHANCEAUX SUR CHOISILLE 1373", + "ref": "FRS37E137", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47534965, + 47.6156073 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CHRISTOPHE SUR LE NAIS 1383", + "ref": "FRS37E138", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.47534965, + 47.6156073 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CHRISTOPHE SUR LE NAIS 1383", + "ref": "FRS37E138", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995569, + 47.328019 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLERE 1387 - Camping", + "ref": "FRS37E138", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.975747, + 43.650761 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT ST-AUNES", + "ref": "FRCPIE6608885", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.975747, + 43.650761 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT ST-AUNES", + "ref": "FRCPIE6608885", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9840703, + 47.54256978 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SUPER CHARGEUR 1414 - CHÂTEAU RENAULT A10", + "ref": "FRS37E141", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.190249, + 47.257237 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CERE LA RONDE1369 - Salle Socioculturel", + "ref": "FRS37E137", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.190249, + 47.257237 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CERE LA RONDE1369 - Salle Socioculturel", + "ref": "FRS37E136", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.190003, + 47.261202 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CERE LA RONDE 1367 - Alfred de Vigny", + "ref": "FRS37E136", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.844593, + 47.350406 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AZAY SUR CHER 1362", + "ref": "FRS37E136", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.844593, + 47.350406 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AZAY SUR CHER 1362", + "ref": "FRS37E138", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995564, + 47.319767 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLERE 1363 - Chardonnerets", + "ref": "FRS37E136", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995564, + 47.319767 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLERE 1363 - Chardonnerets", + "ref": "FRS37E136", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.96157027, + 46.83186155 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOSSAY SUR CLAISE 1365", + "ref": "FRS37E136", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.96157027, + 46.83186155 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOSSAY SUR CLAISE 1365", + "ref": "FRS37E136", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.190003, + 47.261202 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CERE LA RONDE 1367 - Alfred de Vigny", + "ref": "FRS37E136", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19641119, + 47.39251545 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GIZEUX 15744 - Place de la Mairie", + "ref": "FRS37E1574", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.024159, + 48.569637 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SENONCHES - Rue de la ferté Vidame - 134317", + "ref": "FRS28E13431", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.987015, + 47.426765 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "POCE SUR CISSE 3105 - Route des Industries", + "ref": "FRS37E310", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.987015, + 47.426765 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "POCE SUR CISSE 3105 - Route des Industries", + "ref": "FRS37E310", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.718402, + 47.388512 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST PIERRE DES CORPS 3107 - Place Maurice Thorez", + "ref": "FRS37E310", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.718402, + 47.388512 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ST PIERRE DES CORPS 3107 - Place Maurice Thorez", + "ref": "FRS37E310", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.027419, + 47.322482 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CIVRAY DE TOURAINE 1836 - Z.A. Bois Pataud", + "ref": "FRS37E183", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.027419, + 47.322482 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CIVRAY DE TOURAINE 1836 - Z.A. Bois Pataud", + "ref": "FRS37E183", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.084551, + 47.314136 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FRANCUEIL 2770 - Parking rue Charles de Gaulles", + "ref": "FRS37E277", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.084551, + 47.314136 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FRANCUEIL 2770 - Parking rue Charles de Gaulles", + "ref": "FRS37E277", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91895, + 47.330502 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ATHEE SUR CHER 2772 - ZA de la Ferriere", + "ref": "FRS37E277", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91895, + 47.330502 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ATHEE SUR CHER 2772 - ZA de la Ferriere", + "ref": "FRS37E277", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.840599, + 47.257093 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TAUXIGNY 2782 - ZA Node Park", + "ref": "FRS37E278", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.840599, + 47.257093 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TAUXIGNY 2782 - ZA Node Park", + "ref": "FRS37E278", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.547499, + 47.547449 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLE PONT PIERRE 2947 - Place de la mairie", + "ref": "FRS37E294", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.547499, + 47.547449 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLE PONT PIERRE 2947 - Place de la mairie", + "ref": "FRS37E294", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9696, + 47.045402 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT SENOCH 3571 - Rue Charles de Gaulle", + "ref": "FRS37E357", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9696, + 47.045402 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT SENOCH 3571 - Rue Charles de Gaulle", + "ref": "FRS37E357", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21797, + 47.092181 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LOCHE SUR INDROIS 3573 - Place du Mail", + "ref": "FRS37E357", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21797, + 47.092181 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LOCHE SUR INDROIS 3573 - Place du Mail", + "ref": "FRS37E357", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5283, + 47.649058 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEBOURG 3578 - Place de la mairie", + "ref": "FRS37E357", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5283, + 47.649058 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEBOURG 3578 - Place de la mairie", + "ref": "FRS37E357", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.626942, + 47.277408 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTS 3569 - Place de la Fontaine", + "ref": "FRS37E356", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.626942, + 47.277408 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTS 3569 - Place de la Fontaine", + "ref": "FRS37E357", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.51155, + 47.169884 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUIL 3567 - Parking Impasse des Lizas", + "ref": "FRS37E356", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57681, + 46.963507 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELIGNY 3557 - Place Drapeau Caillault", + "ref": "FRS37E355", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57681, + 46.963507 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELIGNY 3557 - Place Drapeau Caillault", + "ref": "FRS37E355", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73106, + 47.063082 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURNAN 3559 - Rue Principale", + "ref": "FRS37E355", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.73106, + 47.063082 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURNAN 3559 - Rue Principale", + "ref": "FRS37E356", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.114696, + 47.280285 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPEIGNE LES BOIS 3561 - Parking du plan d'eau", + "ref": "FRS37E356", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.114696, + 47.280285 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPEIGNE LES BOIS 3561 - Parking du plan d'eau", + "ref": "FRS37E356", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27542, + 47.112003 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIGRE 3563 - Rue Saint Martin", + "ref": "FRS37E356", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.27542, + 47.112003 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIGRE 3563 - Rue Saint Martin", + "ref": "FRS37E356", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94856, + 47.487114 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTREUIL EN TOURAINE 3565 - Rue du Bourg", + "ref": "FRS37E356", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94856, + 47.487114 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTREUIL EN TOURAINE 3565 - Rue du Bourg", + "ref": "FRS37E356", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.730994, + 48.553416 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR DOL-DE-BRETAGNE", + "ref": "FRCPIE6623635", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.730994, + 48.553416 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR DOL-DE-BRETAGNE", + "ref": "FRCPIE6623635", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77246, + 47.38737 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX DAMES 2698 - Place du 8 mai 1945", + "ref": "FRS37E269", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02235481, + 47.41472228 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AMBOISE 1688 - Rue André Huard", + "ref": "FRS37E168", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref": "FRCPIE6623855", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref": "FRCPIE6623865", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref": "FRCPIE6623865", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.323531, + 47.017299 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RICHELIEU 16553 - Route de Chinon", + "ref": "FRS37E1655", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.323531, + 47.017299 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RICHELIEU 16553 - Route de Chinon", + "ref": "FRS37E1655", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66912, + 47.42307 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 16781 - rue Maurice Genevoix", + "ref": "FRS37E1678", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66912, + 47.42307 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 16781 - rue Maurice Genevoix", + "ref": "FRS37E1678", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02235481, + 47.41472228 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AMBOISE 1688 - Rue André Huard", + "ref": "FRS37E168", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref": "FRCPIE6623845", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.985279, + 46.913225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARNIZAY 1690", + "ref": "FRS37E169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.985279, + 46.913225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARNIZAY 1690", + "ref": "FRS37E170", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.046251, + 47.332938 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CIVRAY DE TOURAINE 1691 - Salle des fêtes", + "ref": "FRS37E1561", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.046251, + 47.332938 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CIVRAY DE TOURAINE 1691 - Salle des fêtes", + "ref": "FRS37E169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.80232797, + 47.39714715 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLOUIS SUR LOIRE 1693 - Rue Leonard de Vinci", + "ref": "FRS37E169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.80232797, + 47.39714715 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLOUIS SUR LOIRE 1693 - Rue Leonard de Vinci", + "ref": "FRS37E169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81891078, + 47.3788355 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLOUIS SUR LOIRE 1694 - Maison communautaire", + "ref": "FRS37E169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.81891078, + 47.3788355 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLOUIS SUR LOIRE 1694 - Maison communautaire", + "ref": "FRS37E170", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.968669, + 47.422511 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 1696 - Boulevard de l'Avenir", + "ref": "FRS37E169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.968669, + 47.422511 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 1696 - Boulevard de l'Avenir", + "ref": "FRS37E169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91261509, + 47.59588842 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU RENAULT 1700 - Parking rue Gambetta", + "ref": "FRS37E170", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref": "FRCPIE6623855", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref": "FRCPIE6623845", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77246, + 47.38737 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX DAMES 2698 - Place du 8 mai 1945", + "ref": "FRS37E269", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.777857, + 47.585916 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT EN GATINES 1581", + "ref": "FRS37E158", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.777857, + 47.585916 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT EN GATINES 1581", + "ref": "FRS37E158", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref": "FRCPIE6618695", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.059549, + 47.46819359 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CANGEY 1643", + "ref": "FRS37E164", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.059549, + 47.46819359 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CANGEY 1643", + "ref": "FRS37E164", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.23937643, + 47.16950518 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 1644 - Parking de la forteresse", + "ref": "FRS37E164", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.23937643, + 47.16950518 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 1644 - Parking de la forteresse", + "ref": "FRS37E164", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.890957, + 47.421157 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOIZAY 1646", + "ref": "FRS37E164", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.890957, + 47.421157 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOIZAY 1646", + "ref": "FRS37E164", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4275, + 48.093584 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 4", + "ref": "FRCPIE6618695", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91261509, + 47.59588842 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU RENAULT 1700 - Parking rue Gambetta", + "ref": "FRS37E170", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.226074, + 47.280291 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RESTIGNE 1701", + "ref": "FRS37E170", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.226074, + 47.280291 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RESTIGNE 1701", + "ref": "FRS37E170", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.820331, + 47.042476 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIGUEIL 2579 - Allée des Cyclamens", + "ref": "FRS37E258", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.902142, + 47.587438 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU RENAULT 1842 - Gare Boulevard National", + "ref": "FRS37E184", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.902142, + 47.587438 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHÂTEAU RENAULT 1842 - Gare Boulevard National", + "ref": "FRS37E184", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.252231, + 47.163506 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 2572 - Parking de la gare", + "ref": "FRS37E257", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.252231, + 47.163506 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 2572 - Parking de la gare", + "ref": "FRS37E257", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91056, + 47.51268 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLE LE LIERRE 2575 - Place de la mairie", + "ref": "FRS37E257", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91056, + 47.51268 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLE LE LIERRE 2575 - Place de la mairie", + "ref": "FRS37E277", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40336, + 47.049277 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA TOUR SAINT GELIN 2576 - Rue de l'Eglise", + "ref": "FRS37E257", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.40336, + 47.049277 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA TOUR SAINT GELIN 2576 - Rue de l'Eglise", + "ref": "FRS37E259", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67069575, + 47.56963676 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT LA RONCE 2577 - Rue des Prés", + "ref": "FRS37E257", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67069575, + 47.56963676 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT LA RONCE 2577 - Rue des Prés", + "ref": "FRS37E257", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.820331, + 47.042476 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIGUEIL 2579 - Allée des Cyclamens", + "ref": "FRS37E257", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.814847, + 47.357802 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERETZ 1698", + "ref": "FRS37E169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88746, + 46.841416 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOUSSAY 2681 - Rue Notre Dame des Champs", + "ref": "FRS37E268", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88746, + 46.841416 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOUSSAY 2681 - Rue Notre Dame des Champs", + "ref": "FRS37E269", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.976555, + 47.424187 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 1287 - Avenue du Centre", + "ref": "FRS37E128", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.976555, + 47.424187 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 1287 - Avenue du Centre", + "ref": "FRS37E128", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45328, + 47.022995 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUZE 2682 - Parking derrière la mairie", + "ref": "FRS37E268", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45328, + 47.022995 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUZE 2682 - Parking derrière la mairie", + "ref": "FRS37E268", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.438924, + 47.363137 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CINQ MARS LA PILE 2685 - Z.A. Actiloire", + "ref": "FRS37E268", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.438924, + 47.363137 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CINQ MARS LA PILE 2685 - Z.A. Actiloire", + "ref": "FRS37E268", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.631847, + 47.495732 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT ANTOINE DU ROCHER 2686 - R. Seriniere", + "ref": "FRS37E268", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.631847, + 47.495732 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT ANTOINE DU ROCHER 2686 - R. Seriniere", + "ref": "FRS37E268", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.183346, + 47.195244 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT EN VERON 2690 - Rue du Parc", + "ref": "FRS37E269", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.183346, + 47.195244 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT EN VERON 2690 - Rue du Parc", + "ref": "FRS37E269", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.669537, + 47.409894 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 1838 -Parking Guy Raynaud", + "ref": "FRS37E183", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.669537, + 47.409894 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 1838 -Parking Guy Raynaud", + "ref": "FRS37E183", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.814847, + 47.357802 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERETZ 1698", + "ref": "FRS37E170", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76171, + 47.383392 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX DAMES 1724 - Jacqueline Auriol", + "ref": "FRS37E172", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76171, + 47.383392 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX DAMES 1724 - Jacqueline Auriol", + "ref": "FRS37E172", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.111411, + 47.281329 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPEIGNE LES BOIS 1737", + "ref": "FRS37E173", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.111411, + 47.281329 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPEIGNE LES BOIS 1737", + "ref": "FRS37E173", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35220841, + 47.26778016 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RIVARENNES 1830", + "ref": "FRS37E183", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.35220841, + 47.26778016 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RIVARENNES 1830", + "ref": "FRS37E183", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.97706083, + 47.4194015 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 1832 - Rue d'Amboise", + "ref": "FRS37E183", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.97706083, + 47.4194015 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 1832 - Rue d'Amboise", + "ref": "FRS37E184", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.257426, + 47.507438 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT DE LIN 1834", + "ref": "FRS37E183", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.257426, + 47.507438 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT DE LIN 1834", + "ref": "FRS37E184", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6564, + 47.3376 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUE LES TOURS 5907 - RUE DE LA GITONNIERE", + "ref": "FRS37E590", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6564, + 47.3376 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUE LES TOURS 5907 - RUE DE LA GITONNIERE", + "ref": "FRS37E590", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.126858, + 47.237775 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHOUZE SUR LOIRE 5520 - PLACE DE L'EGLISE", + "ref": "FRS37E552", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.126858, + 47.237775 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHOUZE SUR LOIRE 5520 - PLACE DE L'EGLISE", + "ref": "FRS37E552", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.916704, + 47.32298 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Athée sur Cher 10838 - Place de la Mairie 2", + "ref": "FRS37E1083", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.916704, + 47.32298 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Athée sur Cher 10838 - Place de la Mairie 2", + "ref": "FRS37E1083", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608911, + 47.469991 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARENTILLY 5579 - PLACE DE LA MAIRIE", + "ref": "FRS37E557", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608911, + 47.469991 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHARENTILLY 5579 - PLACE DE LA MAIRIE", + "ref": "FRS37E558", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.208185, + 47.177919 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT VILLAGE 5655 - Rue du Bourg neuf", + "ref": "FRS37E565", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.208185, + 47.177919 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT VILLAGE 5655 - Rue du Bourg neuf", + "ref": "FRS37E565", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70014885, + 43.99972129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Sud", + "ref": "FRIONE40530", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.790964, + 47.502321 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONNAIE 6556 - Place Jean Baptiste Moreau", + "ref": "FRS37E655", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.790964, + 47.502321 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONNAIE 6556 - Place Jean Baptiste Moreau", + "ref": "FRS37E655", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.322448, + 47.44248 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVIGNE-SUR-LATHAN 6558 - Rue de la gare", + "ref": "FRS37E655", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.322448, + 47.44248 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVIGNE-SUR-LATHAN 6558 - Rue de la gare", + "ref": "FRS37E655", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.781369, + 47.28464 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ESVRES SUR INDRE 6023 - RUE NATIONALE", + "ref": "FRS37E602", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.781369, + 47.28464 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ESVRES SUR INDRE 6023 - RUE NATIONALE", + "ref": "FRS37E602", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49908, + 47.444663 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PERNAY 5514 - RUE DE LA MAIRIE", + "ref": "FRS37E551", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.510935, + 47.341249 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLANDRY 5060 - Parking du potager", + "ref": "FRS37E506", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703626, + 44.004071 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Nord", + "ref": "FRIONE40250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703626, + 44.004071 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Nord", + "ref": "FRIONE40250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703626, + 44.004071 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Nord", + "ref": "FRIONE40250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703626, + 44.004071 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Nord", + "ref": "FRIONE40250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703626, + 44.004071 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Nord", + "ref": "FRIONE4025", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.510935, + 47.341249 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLANDRY 5060 - Parking du potager", + "ref": "FRS37E520", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.395618, + 47.033837 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURCOUE 5206 - Rue de Richelieu", + "ref": "FRS37E520", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.395618, + 47.033837 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURCOUE 5206 - Rue de Richelieu", + "ref": "FRS37E520", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.788014, + 47.024564 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CUSSAY 5207 - Place du 8 Mai", + "ref": "FRS37E520", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.788014, + 47.024564 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CUSSAY 5207 - Place du 8 Mai", + "ref": "FRS37E520", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49908, + 47.444663 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PERNAY 5514 - RUE DE LA MAIRIE", + "ref": "FRS37E551", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95397, + 47.431032 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 4899 - Place des patis", + "ref": "FRS37E489", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.474702, + 43.640079 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CCF TOULOUSE", + "ref": "FRCPIE6744725", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.222464, + 47.248199 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE SUR LOIRE 4864 - Place Albert Ruell", + "ref": "FRS37E486", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.222464, + 47.248199 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE SUR LOIRE 4864 - Place Albert Ruell", + "ref": "FRS37E486", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95397, + 47.431032 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAZELLES NEGRON 4899 - Place des patis", + "ref": "FRS37E490", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.685096, + 45.214781 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR LE VINOUX", + "ref": "FRCPIE6635955", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.685096, + 45.214781 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR LE VINOUX", + "ref": "FRCPIE6635955", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.744771, + 47.545012 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOUZILLY 5512 - RUE DU PRIEURE", + "ref": "FRS37E551", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.744771, + 47.545012 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOUZILLY 5512 - RUE DU PRIEURE", + "ref": "FRS37E551", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225126, + 43.826979 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MSP CLARENSAC BORNE 1", + "ref": "FRCPIE6684665", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225126, + 43.826979 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MSP CLARENSAC BORNE 1", + "ref": "FRCPIE6684665", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70014885, + 43.99972129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Sud", + "ref": "FRIONE40530", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70014885, + 43.99972129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Sud", + "ref": "FRIONE40530", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.385027, + 48.182481 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BONNEVAL - Promenade du Mail - 129287", + "ref": "FRS28E12928", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589824, + 43.061587 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gourdan Polignan", + "ref": "FRIONE46060", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589824, + 43.061587 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gourdan Polignan", + "ref": "FRIONE46060", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589824, + 43.061587 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gourdan Polignan", + "ref": "FRIONE46060", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589824, + 43.061587 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gourdan Polignan", + "ref": "FRIONE46060", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.589824, + 43.061587 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Gourdan Polignan", + "ref": "FRIONE4606", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.622504, + 48.102864 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CESSON-SEVIGNE", + "ref": "FRCPIE6682045", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.622504, + 48.102864 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CESSON-SEVIGNE", + "ref": "FRCPIE6682045", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70014885, + 43.99972129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Sud", + "ref": "FRIONE40530", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.439158, + 47.097181 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THENEUIL 16754 - Grande Rue", + "ref": "FRS37E1675", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.729634, + 47.111991 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOSSEE - 117836 - PLACE DE LA MAIRIE", + "ref": "FRS37E11783", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.729634, + 47.111991 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOSSEE - 117836 - PLACE DE LA MAIRIE", + "ref": "FRS37E11782", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.70014885, + 43.99972129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel Sud", + "ref": "FRIONE4053", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.593695, + 47.404129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Fondettes 7613 - Rue de l'Aubrière", + "ref": "FRS37E761", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.593695, + 47.404129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Fondettes 7613 - Rue de l'Aubrière", + "ref": "FRS37E761", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608736, + 47.410482 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Fondettes 7736 - Rue Alfred de Musset", + "ref": "FRS37E773", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608736, + 47.410482 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Fondettes 7736 - Rue Alfred de Musset", + "ref": "FRS37E773", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212795, + 45.611787 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "l'Isle-d'Abeau", + "ref": "FRIONE41250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.810449, + 45.317662 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CHANAS", + "ref": "FRCPIE6632585", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.810449, + 45.317662 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CHANAS", + "ref": "FRCPIE6632585", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212795, + 45.611787 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "l'Isle-d'Abeau", + "ref": "FRIONE41250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212795, + 45.611787 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "l'Isle-d'Abeau", + "ref": "FRIONE41250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212795, + 45.611787 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "l'Isle-d'Abeau", + "ref": "FRIONE41250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212795, + 45.611787 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "l'Isle-d'Abeau", + "ref": "FRIONE4125", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.598126, + 47.273001 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ARTANNES SUR INDRE 9051 - Place de la Liberté", + "ref": "FRS37E905", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.598126, + 47.273001 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ARTANNES SUR INDRE 9051 - Place de la Liberté", + "ref": "FRS37E905", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.973989, + 50.638442 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR LILLE", + "ref": "FRCPIE6664735", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-12-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.973989, + 50.638442 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR LILLE", + "ref": "FRCPIE6664735", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-12-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.474702, + 43.640079 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CCF TOULOUSE", + "ref": "FRCPIE6744725", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45919, + 47.123171 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CROUZILLES - 56267 - Parking Ronsard", + "ref": "FRS37E5626", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45919, + 47.123171 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CROUZILLES - 56267 - Parking Ronsard", + "ref": "FRS37E5626", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3399, + 46.957 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FAYE LA VINEUSE 19690 - Place de la Huchette", + "ref": "FRS37E1969", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.3399, + 46.957 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FAYE LA VINEUSE 19690 - Place de la Huchette", + "ref": "FRS37E1969", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7177, + 47.2896 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTBAZON 19674 - Route Nationale", + "ref": "FRS37E1967", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7177, + 47.2896 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTBAZON 19674 - Route Nationale", + "ref": "FRS37E1967", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666942, + 47.390752 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA RICHE 1257", + "ref": "FRS37E125", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.984678, + 47.28643 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sublaines A85 CCS", + "ref": "FRS37E452", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.984678, + 47.28643 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sublaines A85 CCS", + "ref": "FRS37E452", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.984678, + 47.28643 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sublaines A85 CCS", + "ref": "FRS37E452", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.984678, + 47.28643 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Sublaines A85 CCS", + "ref": "FRS37E452", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654346, + 47.354024 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUÉ-LES-TOURS 15746 - Hervé Thermique", + "ref": "FRS37E1574", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.460099, + 47.52712 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SONZAY 1584", + "ref": "FRS37E158", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.460099, + 47.52712 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SONZAY 1584", + "ref": "FRS37E158", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654346, + 47.354024 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUÉ-LES-TOURS 15746 - Hervé Thermique", + "ref": "FRS37E1574", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666942, + 47.390752 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA RICHE 1257", + "ref": "FRS37E135", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62133245, + 47.40762349 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FONDETTES 1248 - Rue Edouard Branly", + "ref": "FRS37E137", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62133245, + 47.40762349 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FONDETTES 1248 - Rue Edouard Branly", + "ref": "FRS37E124", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.328899, + 47.553475 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Couesmes", + "ref": "FRIENE005702", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.328899, + 47.553475 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Couesmes", + "ref": "FRIENE005702", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.328899, + 47.553475 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Couesmes", + "ref": "FRIENE005701", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.328899, + 47.553475 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Couesmes", + "ref": "FRIENE005701", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71418, + 48.42006 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Combourg", + "ref": "FRIENE002902", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71418, + 48.42006 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Combourg", + "ref": "FRIENE002902", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71418, + 48.42006 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Combourg", + "ref": "FRIENE002901", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71418, + 48.42006 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Combourg", + "ref": "FRIENE002901", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref": "FRIONE43550", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref": "FRIONE43550", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref": "FRIONE4355", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref": "FRIONE43550", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref": "FRIONE43550", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref": "FRIONE43550", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref": "FRIONE43550", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.101471, + 47.057907 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT HIPPOLYTE 15629 - Parking du Stade", + "ref": "FRS37E1563", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.101471, + 47.057907 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT HIPPOLYTE 15629 - Parking du Stade", + "ref": "FRS37E1562", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67407399, + 47.45647829 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "METTRAY 1285 - Les Gaudières", + "ref": "FRS37E128", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67407399, + 47.45647829 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "METTRAY 1285 - Les Gaudières", + "ref": "FRS37E128", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.818785, + 45.344595 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CP 6000 BORNE 1", + "ref": "FRCPIE6758325", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.818785, + 45.344595 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CP 6000 BORNE 1", + "ref": "FRCPIE6758325", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jura", + "ref": "FRIONE4083", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jura", + "ref": "FRIONE40830", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jura", + "ref": "FRIONE40830", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jura", + "ref": "FRIONE40830", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jura", + "ref": "FRIONE40830", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jura", + "ref": "FRIONE40830", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.522627, + 46.775898 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jura", + "ref": "FRIONE40830", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.299326, + 47.252928 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RIGNY USSE 4741 - Chemin du pont Félicie", + "ref": "FRS37E474", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.299326, + 47.252928 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "RIGNY USSE 4741 - Chemin du pont Félicie", + "ref": "FRS37E474", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.286574, + 47.395095 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVRILLE LES PONCEAUX 4747 - Rue basse", + "ref": "FRS37E474", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.286574, + 47.395095 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVRILLE LES PONCEAUX 4747 - Rue basse", + "ref": "FRS37E474", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.462877, + 47.261805 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AZAY LE RIDEAU 1202", + "ref": "FRS37E120", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.462877, + 47.261805 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AZAY LE RIDEAU 1202", + "ref": "FRS37E120", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03213549, + 47.54070211 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DAME MARIE DES BOIS 1238", + "ref": "FRS37E123", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03213549, + 47.54070211 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DAME MARIE DES BOIS 1238", + "ref": "FRS37E123", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.166757, + 47.254236 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "La Chapelle-sur-Loire/A85", + "ref": "FRS37E141", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24555436, + 43.33794647 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Volvestre", + "ref": "FRIONE40190", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24555436, + 43.33794647 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Volvestre", + "ref": "FRIONE4019", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24555436, + 43.33794647 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Volvestre", + "ref": "FRIONE40190", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24555436, + 43.33794647 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Volvestre", + "ref": "FRIONE40190", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61192, + 44.920927 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SDS BORNE 2", + "ref": "FRCPIE6639505", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61192, + 44.920927 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SDS BORNE 2", + "ref": "FRCPIE6639505", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61192, + 44.920927 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SDS BORNE 2", + "ref": "FRCPIE6639495", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61192, + 44.920927 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SDS BORNE 2", + "ref": "FRCPIE6639495", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61192, + 44.920927 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SDS BORNE 2", + "ref": "FRCPIE6639455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61192, + 44.920927 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SDS BORNE 2", + "ref": "FRCPIE6639455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24555436, + 43.33794647 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Volvestre", + "ref": "FRIONE40190", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.538226, + 44.817371 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "644a2ea935cf6d6b98b2a0b7", + "ref": "FRTNME08910961", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.538226, + 44.817371 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "644a2ea935cf6d6b98b2a0b7", + "ref": "FRTNME08912792", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref": "FRFASE330970", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref": "FRFASE330970", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref": "FRFASE330970", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref": "FRFASE330970", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref": "FRFASE330970", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref": "FRFASE330970", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref": "FRFASE330970", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86101, + 45.243957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Saint-Nazaire les Eymes", + "ref": "FRFASE330970", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31743, + 43.489727 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ITM SEYESSES 1 BRVE 1", + "ref": "FRCPIE6731545", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31743, + 43.489727 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ITM SEYESSES 1 BRVE 1", + "ref": "FRCPIE6731545", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59565, + 47.555778 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Neuille-Pont-Pierre A28 CCS", + "ref": "FRS37E450", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59565, + 47.555778 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Neuille-Pont-Pierre A28 CCS", + "ref": "FRS37E449", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59565, + 47.555778 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Neuille-Pont-Pierre A28 CCS", + "ref": "FRS37E449", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59565, + 47.555778 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Super Chargeur Neuille-Pont-Pierre A28 CCS", + "ref": "FRS37E449", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.476357, + 43.29862 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HYPER U AGDE BORNE 3", + "ref": "FRCPIE6608855", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.476357, + 43.29862 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HYPER U AGDE BORNE 3", + "ref": "FRCPIE6608855", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.476357, + 43.29862 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HYPER U AGDE BORNE 3", + "ref": "FRCPIE6608865", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.476357, + 43.29862 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HYPER U AGDE BORNE 3", + "ref": "FRCPIE6608865", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.476357, + 43.29862 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HYPER U AGDE BORNE 3", + "ref": "FRCPIE6608875", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.476357, + 43.29862 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "HYPER U AGDE BORNE 3", + "ref": "FRCPIE6608875", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983211, + 43.650765 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montpellier Saint-Aunès", + "ref": "FRIONE43590", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.484484, + 45.691062 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint Victor de Morestel", + "ref": "FRIENE007502", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.484484, + 45.691062 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint Victor de Morestel", + "ref": "FRIENE007501", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.484484, + 45.691062 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint Victor de Morestel", + "ref": "FRIENE007501", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983211, + 43.650765 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montpellier Saint-Aunès", + "ref": "FRIONE4359", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983211, + 43.650765 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montpellier Saint-Aunès", + "ref": "FRIONE43590", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983211, + 43.650765 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montpellier Saint-Aunès", + "ref": "FRIONE43590", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.484484, + 45.691062 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint Victor de Morestel", + "ref": "FRIENE007502", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.211785, + 43.361722 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PECHBLEU BORNE 3", + "ref": "FRCPIE6713095", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.211785, + 43.361722 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PECHBLEU BORNE 3", + "ref": "FRCPIE6713075", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.211785, + 43.361722 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PECHBLEU BORNE 3", + "ref": "FRCPIE6711655", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983211, + 43.650765 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montpellier Saint-Aunès", + "ref": "FRIONE43590", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983211, + 43.650765 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montpellier Saint-Aunès", + "ref": "FRIONE43590", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983211, + 43.650765 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Montpellier Saint-Aunès", + "ref": "FRIONE43590", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98495561, + 47.3403572 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CROIX EN TOURAINE 1256", + "ref": "FRS37E137", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98495561, + 47.3403572 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CROIX EN TOURAINE 1256", + "ref": "FRS37E125", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.170022, + 47.211736 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT EN VERON 15074 - Rue Paul Langevin", + "ref": "FRS37E1507", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.170022, + 47.211736 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT EN VERON 15074 - Rue Paul Langevin", + "ref": "FRS37E1507", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.406892, + 48.111453 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ITEP-ROCHERS BORNE 1", + "ref": "FRCPIE6672815", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.406892, + 48.111453 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ITEP-ROCHERS BORNE 1", + "ref": "FRCPIE6672815", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.876433, + 47.249876 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURCAY 1234", + "ref": "FRS37E123", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.876433, + 47.249876 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COURCAY 1234", + "ref": "FRS37E123", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref": "FRFASE330070", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref": "FRFASE330070", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref": "FRFASE330070", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref": "FRFASE330070", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref": "FRFASE330070", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref": "FRFASE330070", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref": "FRFASE330070", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13341, + 43.715255 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire d’Ambrussum Nord", + "ref": "FRFASE330070", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.915513, + 47.32171 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Athée sur Cher 10710 - Place de la Mairie 1", + "ref": "FRS37E3632", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.915513, + 47.32171 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Athée sur Cher 10710 - Place de la Mairie 1", + "ref": "FRS37E1071", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.705334, + 46.850918 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Châteauroux Nord", + "ref": "FRIONE4489", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.705334, + 46.850918 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Châteauroux Nord", + "ref": "FRIONE44890", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.705334, + 46.850918 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Châteauroux Nord", + "ref": "FRIONE44890", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.705334, + 46.850918 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Châteauroux Nord", + "ref": "FRIONE44890", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.705334, + 46.850918 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Châteauroux Nord", + "ref": "FRIONE44890", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.705334, + 46.850918 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Châteauroux Nord", + "ref": "FRIONE44890", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.705334, + 46.850918 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Châteauroux Nord", + "ref": "FRIONE44890", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.638258, + 48.133595 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BNR BORNE 1", + "ref": "FRCPIE6697285", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.638258, + 48.133595 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BNR BORNE 1", + "ref": "FRCPIE6697285", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.556317, + 47.383873 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUYNES 1339", + "ref": "FRS37E134", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.710812, + 47.456044 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOTRE DAME D'OE 1341", + "ref": "FRS37E134", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.710812, + 47.456044 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOTRE DAME D'OE 1341", + "ref": "FRS37E134", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.556317, + 47.383873 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUYNES 1339", + "ref": "FRS37E133", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.413577, + 46.948665 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JAULNAY 1337", + "ref": "FRS37E134", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.413577, + 46.948665 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JAULNAY 1337", + "ref": "FRS37E133", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21332, + 47.05409 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Loché-sur-Indrois", + "ref": "FRIENE005902", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21332, + 47.05409 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Loché-sur-Indrois", + "ref": "FRIENE005902", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21332, + 47.05409 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Loché-sur-Indrois", + "ref": "FRIENE005901", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21332, + 47.05409 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Loché-sur-Indrois", + "ref": "FRIENE005901", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.826062, + 47.387572 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLOUIS SUR LOIRE 1213 - Rue Rousseau", + "ref": "FRS37E121", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.826062, + 47.387572 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLOUIS SUR LOIRE 1213 - Rue Rousseau", + "ref": "FRS37E133", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.700614, + 47.437236 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "3C CLIM TOURS", + "ref": "FRCPIE6689415", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.700614, + 47.437236 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "3C CLIM TOURS", + "ref": "FRCPIE6689415", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.345357, + 43.3590418 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc SUD", + "ref": "FRSHEE176", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.345357, + 43.3590418 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc SUD", + "ref": "FRSHEE174", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.345357, + 43.3590418 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc SUD", + "ref": "FRSHEE174", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.345357, + 43.3590418 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc SUD", + "ref": "FRSHEE174", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.345357, + 43.3590418 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc SUD", + "ref": "FRSHEE176", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24499596, + 43.33458687 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Garonne", + "ref": "FRIONE40180", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24499596, + 43.33458687 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Garonne", + "ref": "FRIONE40180", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24499596, + 43.33458687 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Garonne", + "ref": "FRIONE40180", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24499596, + 43.33458687 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Garonne", + "ref": "FRIONE40180", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24499596, + 43.33458687 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Garonne", + "ref": "FRIONE4018", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.787667, + 47.140961 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MANTHELAN 1279", + "ref": "FRS37E127", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.787667, + 47.140961 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MANTHELAN 1279", + "ref": "FRS37E128", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.345357, + 43.3590418 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Béziers-Montblanc SUD", + "ref": "FRSHEE176", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7547021, + 48.1252516 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vezin-le-Coquet", + "ref": "FRIENE35353A", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7547021, + 48.1252516 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vezin-le-Coquet", + "ref": "FRIENE35353A", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7547021, + 48.1252516 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vezin-le-Coquet", + "ref": "FRIENE35353A", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7547021, + 48.1252516 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vezin-le-Coquet", + "ref": "FRIENE35353A", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7547021, + 48.1252516 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vezin-le-Coquet", + "ref": "FRIENE35353A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0353191, + 44.7455306 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Auriolles", + "ref": "FRIENE008402", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0353191, + 44.7455306 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Auriolles", + "ref": "FRIENE008402", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0353191, + 44.7455306 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Auriolles", + "ref": "FRIENE008401", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.746969, + 47.346501 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AVERTIN- 60636 - Allée du Chesne", + "ref": "FRS37E6063", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.746969, + 47.346501 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AVERTIN- 60636 - Allée du Chesne", + "ref": "FRS37E6063", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.0353191, + 44.7455306 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Auriolles", + "ref": "FRIENE008401", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12869, + 43.293939 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Nissan-Lez-Enserune", + "ref": "FRIENE009602", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12869, + 43.293939 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Nissan-Lez-Enserune", + "ref": "FRIENE009602", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12869, + 43.293939 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Nissan-Lez-Enserune", + "ref": "FRIENE009601", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.12869, + 43.293939 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Nissan-Lez-Enserune", + "ref": "FRIENE009601", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref": "FRSHEE90", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref": "FRSHEE90", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref": "FRSHEE90", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref": "FRSHEE91", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref": "FRSHEE91", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref": "FRSHEE91", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref": "FRSHEE91", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4342274, + 44.6459629 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Terres de Graves Nord", + "ref": "FRSHEE90", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.637889, + 47.436748 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA MEMBROLLE SUR CHOISILLE 1260 - La Choisille", + "ref": "FRS37E126", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.637889, + 47.436748 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA MEMBROLLE SUR CHOISILLE 1260 - La Choisille", + "ref": "FRS37E126", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41071, + 43.632423 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT TOULOUSE NORD", + "ref": "FRCPIE6580595", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41071, + 43.632423 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT TOULOUSE NORD", + "ref": "FRCPIE6580595", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61283782, + 47.66849239 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPEIGNE SUR DEME 1246", + "ref": "FRS37E124", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61283782, + 47.66849239 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPEIGNE SUR DEME 1246", + "ref": "FRS37E124", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref": "FRSHEE83", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref": "FRSHEE83", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref": "FRSHEE82", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref": "FRSHEE82", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref": "FRSHEE81", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref": "FRSHEE81", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref": "FRSHEE81", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref": "FRSHEE81", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref": "FRSHEE84", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7046561, + 44.743648 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Est A63", + "ref": "FRSHEE84", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9507519, + 47.34592915 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DIERRE 1242", + "ref": "FRS37E124", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9507519, + 47.34592915 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DIERRE 1242", + "ref": "FRS37E124", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70021078, + 46.97447173 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DESCARTES 1241", + "ref": "FRS37E125", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70021078, + 46.97447173 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DESCARTES 1241", + "ref": "FRS37E124", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.768273, + 47.395589 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX DAMES 1258 - Anciens combattants", + "ref": "FRS37E125", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77859839, + 47.36839944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LARCAY 1264", + "ref": "FRS37E126", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.77859839, + 47.36839944 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LARCAY 1264", + "ref": "FRS37E126", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62615408, + 47.43926466 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA MEMBROLLE SUR CHOISILLE 1262 - Mazagran", + "ref": "FRS37E126", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62615408, + 47.43926466 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA MEMBROLLE SUR CHOISILLE 1262 - Mazagran", + "ref": "FRS37E126", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.80337011, + 46.9202394 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE GRAND PRESSIGNY 1266", + "ref": "FRS37E126", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.355484, + 43.594881 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "FORMATION TLSE BORNE 2", + "ref": "FRCPIE6721155", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.355484, + 43.594881 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "FORMATION TLSE BORNE 2", + "ref": "FRCPIE6721155", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.80337011, + 46.9202394 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LE GRAND PRESSIGNY 1266", + "ref": "FRS37E126", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.768273, + 47.395589 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX DAMES 1258 - Anciens combattants", + "ref": "FRS37E125", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref": "FRSHEE86", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref": "FRSHEE85", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref": "FRSHEE85", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref": "FRSHEE85", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref": "FRSHEE85", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66514559, + 47.35048561 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUE LES TOURS 1251", + "ref": "FRS37E125", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66514559, + 47.35048561 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "JOUE LES TOURS 1251", + "ref": "FRS37E125", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.266909, + 47.282613 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COTEAUX SUR LOIRE 1250 - Ingrandes", + "ref": "FRS37E137", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.266909, + 47.282613 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COTEAUX SUR LOIRE 1250 - Ingrandes", + "ref": "FRS37E125", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.09635437, + 47.1818339 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GENILLE 1249", + "ref": "FRS37E134", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.09635437, + 47.1818339 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GENILLE 1249", + "ref": "FRS37E124", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref": "FRSHEE86", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref": "FRSHEE87", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref": "FRSHEE87", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref": "FRSHEE88", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.598175, + 43.668793 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT AUCH 1", + "ref": "FRCPIE6584335", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.598175, + 43.668793 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT AUCH 1", + "ref": "FRCPIE6584335", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7037549, + 44.7456293 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Bordeaux-Cestas Ouest A63", + "ref": "FRSHEE88", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9873037, + 47.53765557 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUTRECHE 1198", + "ref": "FRS37E119", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.988131, + 47.411565 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AMBOISE 1184 - Château", + "ref": "FRS37E118", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.988131, + 47.411565 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AMBOISE 1184 - Château", + "ref": "FRS37E118", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9873037, + 47.53765557 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AUTRECHE 1198", + "ref": "FRS37E119", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16848028, + 47.27856391 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGUEIL 1208 - Rue Jean Causseret", + "ref": "FRS37E120", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.920065, + 46.991234 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BETZ LE CHÂTEAU 1206", + "ref": "FRS37E120", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.920065, + 46.991234 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BETZ LE CHÂTEAU 1206", + "ref": "FRS37E120", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18304333, + 47.20550704 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVOINE 1200", + "ref": "FRS37E120", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18304333, + 47.20550704 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "AVOINE 1200", + "ref": "FRS37E120", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60313761, + 47.02086795 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CELLE SAINT AVANT 1214", + "ref": "FRS37E121", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.34403912, + 43.36099509 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire de Béziers Montblanc Nord", + "ref": "FRSPSESHEL11", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.393657, + 47.000005 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Braslou 11017 - Rue Principale", + "ref": "FRS37E1101", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.393657, + 47.000005 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Braslou 11017 - Rue Principale", + "ref": "FRS37E1101", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16848028, + 47.27856391 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGUEIL 1208 - Rue Jean Causseret", + "ref": "FRS37E120", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60313761, + 47.02086795 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CELLE SAINT AVANT 1214", + "ref": "FRS37E121", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.171081, + 47.211405 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT EN VERON 7746 - Rue Paul Langevin", + "ref": "FRS37E774", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625275, + 47.054038 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DRACHE 1244", + "ref": "FRS37E124", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.346, + 47.1584 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CRAVANT LES COTEAUX 21830 - Place Pierre Alliet", + "ref": "FRS37E2183", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625275, + 47.054038 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DRACHE 1244", + "ref": "FRS37E124", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.347042, + 43.35903 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire de Béziers Montblanc Sud", + "ref": "FRSPSESHEL21", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.171081, + 47.211405 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BEAUMONT EN VERON 7746 - Rue Paul Langevin", + "ref": "FRS37E774", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2211991, + 47.38725302 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTINVOIR 1233", + "ref": "FRS37E123", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.96435995, + 47.18394345 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAMBOURG SUR INDRE 1216", + "ref": "FRS37E121", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.2211991, + 47.38725302 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTINVOIR 1233", + "ref": "FRS37E123", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24037957, + 47.16745011 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 1226 - Parking de la Brêche", + "ref": "FRS37E122", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.24037957, + 47.16745011 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHINON 1226 - Parking de la Brêche", + "ref": "FRS37E122", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64957872, + 47.6595272 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEMILLE SUR DEME 1224", + "ref": "FRS37E122", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64957872, + 47.6595272 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEMILLE SUR DEME 1224", + "ref": "FRS37E122", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.46238452, + 47.25496397 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEILLE 1222", + "ref": "FRS37E122", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.46238452, + 47.25496397 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEILLE 1222", + "ref": "FRS37E122", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6971043, + 47.34927895 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAMBRAY LES TOURS 1218", + "ref": "FRS37E121", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6971043, + 47.34927895 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAMBRAY LES TOURS 1218", + "ref": "FRS37E121", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.96435995, + 47.18394345 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAMBOURG SUR INDRE 1216", + "ref": "FRS37E121", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45853597, + 47.34623877 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CINQ MARS LA PILE 1230", + "ref": "FRS37E123", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.45853597, + 47.34623877 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CINQ MARS LA PILE 1230", + "ref": "FRS37E123", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.93017391, + 47.2602472 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CIGOGNE 1228", + "ref": "FRS37E122", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.93017391, + 47.2602472 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CIGOGNE 1228", + "ref": "FRS37E122", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.735517, + 47.288104 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEIGNE 1330 - Centre Abbé Fiot", + "ref": "FRS37E138", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.735517, + 47.288104 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEIGNE 1330 - Centre Abbé Fiot", + "ref": "FRS37E133", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65528244, + 47.41894606 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 1308 - René Coulon", + "ref": "FRS37E130", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65528244, + 47.41894606 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CYR SUR LOIRE 1308 - René Coulon", + "ref": "FRS37E130", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.398564, + 43.545336 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT TOULOUSE 1", + "ref": "FRCPIE6599965", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61646419, + 47.11129467 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINTE MAURE DE TOURAINE 1310", + "ref": "FRS37E131", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.764199, + 48.146023 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SODALEC-PACE STATION 1", + "ref": "FRCPIE6600295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.764199, + 48.146023 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SODALEC-PACE STATION 1", + "ref": "FRCPIE6600295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.398564, + 43.545336 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT TOULOUSE 1", + "ref": "FRCPIE6599965", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.455994, + 43.64403 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED TOULOUSE N", + "ref": "FRCPIE6600265", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.455994, + 43.64403 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED TOULOUSE N", + "ref": "FRCPIE6600265", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.398564, + 43.545336 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT TOULOUSE 1", + "ref": "FRCPIE6599985", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.398564, + 43.545336 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT TOULOUSE 1", + "ref": "FRCPIE6599985", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.542878, + 47.246675 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SACHE 1302", + "ref": "FRS37E130", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02625743, + 46.96858706 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT FLOVIER 1305", + "ref": "FRS37E133", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12586534, + 47.28450308 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT NICOLAS DE BOURGUEIL 1306", + "ref": "FRS37E130", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.12586534, + 47.28450308 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT NICOLAS DE BOURGUEIL 1306", + "ref": "FRS37E130", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02625743, + 46.96858706 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT FLOVIER 1305", + "ref": "FRS37E130", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.769341, + 47.22798 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT BRANCHS 1304", + "ref": "FRS37E138", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.769341, + 47.22798 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT BRANCHS 1304", + "ref": "FRS37E130", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61646419, + 47.11129467 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINTE MAURE DE TOURAINE 1310", + "ref": "FRS37E131", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63142611, + 47.1661501 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontaine Colette", + "ref": "FRIONE1013", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61630268, + 47.34229894 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BALLAN MIRE 1332", + "ref": "FRS37E133", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7991226, + 47.41115111 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOUVRAY 1331", + "ref": "FRS37E133", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7991226, + 47.41115111 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VOUVRAY 1331", + "ref": "FRS37E133", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42726, + 47.318301 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE AUX NAUX 1699", + "ref": "FRS37E170", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42726, + 47.318301 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE AUX NAUX 1699", + "ref": "FRS37E169", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57813368, + 47.44355115 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT ROCH 1325", + "ref": "FRS37E132", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57813368, + 47.44355115 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT ROCH 1325", + "ref": "FRS37E132", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61630268, + 47.34229894 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BALLAN MIRE 1332", + "ref": "FRS37E133", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7769873, + 47.47546806 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tours La Longue Vue", + "ref": "FRIONE10120", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7769873, + 47.47546806 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tours La Longue Vue", + "ref": "FRIONE10120", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.729763, + 48.106302 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT LA RETARDAIS 2", + "ref": "FRCPIE6603765", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7501, + 47.6644 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LES HERMITES 19684 - Rue de la fontaine", + "ref": "FRS37E1968", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7501, + 47.6644 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LES HERMITES 19684 - Rue de la fontaine", + "ref": "FRS37E1968", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.729763, + 48.106302 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT LA RETARDAIS 2", + "ref": "FRCPIE6603765", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7769873, + 47.47546806 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tours La Longue Vue", + "ref": "FRIONE10120", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.729763, + 48.106302 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT LA RETARDAIS 2", + "ref": "FRCPIE6603715", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.729763, + 48.106302 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT LA RETARDAIS 2", + "ref": "FRCPIE6603715", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7769873, + 47.47546806 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tours La Longue Vue", + "ref": "FRIONE10120", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7769873, + 47.47546806 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tours La Longue Vue", + "ref": "FRIONE10120", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7769873, + 47.47546806 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tours La Longue Vue", + "ref": "FRIONE10120", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57855158, + 47.4981857 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEMBLANCAY 1315", + "ref": "FRS37E131", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57855158, + 47.4981857 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEMBLANCAY 1315", + "ref": "FRS37E131", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17219177, + 47.28483695 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGUEIL 1210 - Place Marcelin", + "ref": "FRS37E121", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.17219177, + 47.28483695 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BOURGUEIL 1210 - Place Marcelin", + "ref": "FRS37E121", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14284648, + 47.20235927 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVIGNY EN VERON 1312 - Rue du Stade", + "ref": "FRS37E131", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14284648, + 47.20235927 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVIGNY EN VERON 1312 - Rue du Stade", + "ref": "FRS37E131", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.667944, + 47.073438 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEPMES 1317", + "ref": "FRS37E131", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.667944, + 47.073438 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEPMES 1317", + "ref": "FRS37E131", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30915141, + 47.28568302 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COTEAUX-SUR-LOIRE 1323", + "ref": "FRS37E132", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30915141, + 47.28568302 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COTEAUX-SUR-LOIRE 1323", + "ref": "FRS37E132", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03475606, + 47.08256988 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT JEAN SAINT GERMAIN 1321", + "ref": "FRS37E132", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03475606, + 47.08256988 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT JEAN SAINT GERMAIN 1321", + "ref": "FRS37E132", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69715172, + 47.24320891 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SORIGNY 1319 - 11 Novembre", + "ref": "FRS37E132", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69715172, + 47.24320891 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SORIGNY 1319 - 11 Novembre", + "ref": "FRS37E131", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.542878, + 47.246675 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SACHE 1302", + "ref": "FRS37E130", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63142611, + 47.1661501 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontaine Colette", + "ref": "FRIONE10130", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8670518, + 48.1660532 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire d'Armor et d'Argoat - St Gilles", + "ref": "FRSHEE92", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623, + 45.277 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ile Rose", + "ref": "FRIONE4315", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623, + 45.277 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ile Rose", + "ref": "FRIONE43150", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623, + 45.277 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ile Rose", + "ref": "FRIONE43150", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623, + 45.277 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ile Rose", + "ref": "FRIONE43150", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623, + 45.277 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Ile Rose", + "ref": "FRIONE43150", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.488611, + 46.98139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARIGNY MARMANDE 1281", + "ref": "FRS37E128", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.488611, + 46.98139 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARIGNY MARMANDE 1281", + "ref": "FRS37E128", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.791498, + 47.087225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE BLANCHE SAINT MARTIN 1254", + "ref": "FRS37E125", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.791498, + 47.087225 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE BLANCHE SAINT MARTIN 1254", + "ref": "FRS37E125", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8670518, + 48.1660532 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire d'Armor et d'Argoat - St Gilles", + "ref": "FRSHEE93", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8670518, + 48.1660532 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire d'Armor et d'Argoat - St Gilles", + "ref": "FRSHEE93", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8670518, + 48.1660532 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire d'Armor et d'Argoat - St Gilles", + "ref": "FRSHEE92", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8670518, + 48.1660532 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire d'Armor et d'Argoat - St Gilles", + "ref": "FRSHEE92", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6506905, + 47.44858502 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "METTRAY 1283 - Espace Coselia", + "ref": "FRS37E128", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6506905, + 47.44858502 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "METTRAY 1283 - Espace Coselia", + "ref": "FRS37E128", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.8670518, + 48.1660532 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire d'Armor et d'Argoat - St Gilles", + "ref": "FRSHEE92", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.834183, + 43.576667 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "U EXPRESS STJEAN-DE-VEDAS", + "ref": "FRCPIE6589775", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.834183, + 43.576667 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "U EXPRESS STJEAN-DE-VEDAS", + "ref": "FRCPIE6589775", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.417, + 47.297864 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIGNIERES DE TOURAINE 1272", + "ref": "FRS37E127", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.417, + 47.297864 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LIGNIERES DE TOURAINE 1272", + "ref": "FRS37E127", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99534765, + 47.1288586 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LOCHES - Place de Verdun - 166912", + "ref": "FRS37E16691", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5827783, + 47.05354232 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAILLE 1277", + "ref": "FRS37E127", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5827783, + 47.05354232 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAILLE 1277", + "ref": "FRS37E127", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65008968, + 47.61777534 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LOUESTAULT 1275", + "ref": "FRS37E127", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65008968, + 47.61777534 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LOUESTAULT 1275", + "ref": "FRS37E127", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.99534765, + 47.1288586 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LOCHES - Place de Verdun - 166912", + "ref": "FRS37E16691", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63142611, + 47.1661501 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontaine Colette", + "ref": "FRIONE10130", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91468289, + 47.22805033 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIGNAC SUR INDRE 1299", + "ref": "FRS37E129", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 10", + "ref": "FRCPIE6599565", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 10", + "ref": "FRCPIE6599565", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 10", + "ref": "FRCPIE6599535", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 10", + "ref": "FRCPIE6599535", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 10", + "ref": "FRCPIE6599515", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 10", + "ref": "FRCPIE6599515", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 10", + "ref": "FRCPIE6599475", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 10", + "ref": "FRCPIE6599475", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 10", + "ref": "FRCPIE6599455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 10", + "ref": "FRCPIE6599455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 10", + "ref": "FRCPIE6599275", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753668, + 44.714666 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 10", + "ref": "FRCPIE6599275", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.936446, + 43.58831 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CCF MAUGUIO", + "ref": "FRCPIE6599095", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.936446, + 43.58831 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CCF MAUGUIO", + "ref": "FRCPIE6599095", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.990664, + 47.443928 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "POCE SUR CISSE 1298 - Clos du Potager", + "ref": "FRS37E138", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.990664, + 47.443928 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "POCE SUR CISSE 1298 - Clos du Potager", + "ref": "FRS37E129", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.91468289, + 47.22805033 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "REIGNAC SUR INDRE 1299", + "ref": "FRS37E135", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 04", + "ref": "FRCPIE6599315", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 04", + "ref": "FRCPIE6599315", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63142611, + 47.1661501 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontaine Colette", + "ref": "FRIONE10130", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.63142611, + 47.1661501 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Fontaine Colette", + "ref": "FRIONE10130", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 04", + "ref": "FRCPIE6599365", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64893365, + 47.51457851 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROUZIERS DE TOURAINE 1300", + "ref": "FRS37E130", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64893365, + 47.51457851 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROUZIERS DE TOURAINE 1300", + "ref": "FRS37E130", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 04", + "ref": "FRCPIE6599405", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 04", + "ref": "FRCPIE6599405", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 04", + "ref": "FRCPIE6599395", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 04", + "ref": "FRCPIE6599395", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.753907, + 44.714785 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CESTAS 04", + "ref": "FRCPIE6599365", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.789972, + 46.973452 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLY LE BRIGNON 1289", + "ref": "FRS37E128", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.730784, + 48.108593 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SODIS-RENNES BORNE 1", + "ref": "FRCPIE6595205", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.730784, + 48.108593 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SODIS-RENNES BORNE 1", + "ref": "FRCPIE6595205", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59375299, + 47.60272923 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUVY LE ROI 1291", + "ref": "FRS37E129", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59375299, + 47.60272923 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUVY LE ROI 1291", + "ref": "FRS37E129", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.789972, + 46.973452 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUILLY LE BRIGNON 1289", + "ref": "FRS37E129", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.229096, + 44.286754 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cœur d'Aquitaine", + "ref": "FRIONE41400", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.229096, + 44.286754 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cœur d'Aquitaine", + "ref": "FRIONE41400", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.477806, + 47.103448 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PARCAY SUR VIENNE 1295", + "ref": "FRS37E129", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0139662, + 47.10072025 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PERRUSSON 1296", + "ref": "FRS37E129", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0139662, + 47.10072025 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PERRUSSON 1296", + "ref": "FRS37E129", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.477806, + 47.103448 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PARCAY SUR VIENNE 1295", + "ref": "FRS37E138", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.587558, + 48.113313 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ALIZES BORNE 1", + "ref": "FRCPIE6596035", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.229096, + 44.286754 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cœur d'Aquitaine", + "ref": "FRIONE41400", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.587558, + 48.113313 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ALIZES BORNE 1", + "ref": "FRCPIE6596035", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.229096, + 44.286754 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cœur d'Aquitaine", + "ref": "FRIONE4140", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.229096, + 44.286754 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Cœur d'Aquitaine", + "ref": "FRIONE41400", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.887593, + 47.544659 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEDOMER 4348 - Parking rue du Lavoir", + "ref": "FRS37E434", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.887593, + 47.544659 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEDOMER 4348 - Parking rue du Lavoir", + "ref": "FRS37E434", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.162406, + 43.421307 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNES U TECHNO BORNE 2", + "ref": "FRCPIE6544925", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.162406, + 43.421307 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNES U TECHNO BORNE 2", + "ref": "FRCPIE6528455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.162406, + 43.421307 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNES U TECHNO BORNE 2", + "ref": "FRCPIE6528455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346573, + 43.658837 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ULIET ULIET 1", + "ref": "FRCPIE6683635", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346573, + 43.658837 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ULIET ULIET 1", + "ref": "FRCPIE6683635", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346573, + 43.658837 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ULIET ULIET 1", + "ref": "FRCPIE6683625", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346573, + 43.658837 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ULIET ULIET 1", + "ref": "FRCPIE6683625", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346915, + 43.658268 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "DAHERTLS CORLOG 6", + "ref": "FRCPIE6684585", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346915, + 43.658268 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "DAHERTLS CORLOG 6", + "ref": "FRCPIE6684575", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.81642, + 45.238924 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U BIVIERS BORNE 1", + "ref": "FRCPIE6552195", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.767761, + 45.165133 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR AED ST-M.HERES", + "ref": "FRCPIE6735845", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.767761, + 45.165133 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR AED ST-M.HERES", + "ref": "FRCPIE6735845", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.81642, + 45.238924 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U BIVIERS BORNE 1", + "ref": "FRCPIE6594565", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.81642, + 45.238924 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U BIVIERS BORNE 1", + "ref": "FRCPIE6594565", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.81642, + 45.238924 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U BIVIERS BORNE 1", + "ref": "FRCPIE6593355", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.81642, + 45.238924 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U BIVIERS BORNE 1", + "ref": "FRCPIE6593355", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.81642, + 45.238924 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U BIVIERS BORNE 1", + "ref": "FRCPIE6552195", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23960961, + 48.1272092 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vitré", + "ref": "FRIENE001002", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23960961, + 48.1272092 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vitré", + "ref": "FRIENE001002", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23960961, + 48.1272092 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vitré", + "ref": "FRIENE001001", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.23960961, + 48.1272092 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Vitré", + "ref": "FRIENE001001", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346915, + 43.658268 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "DAHERTLS CORLOG 6", + "ref": "FRCPIE6684575", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.300302, + 45.140801 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CHATTE", + "ref": "FRCPIE6665965", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.300302, + 45.140801 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CHATTE", + "ref": "FRCPIE6665965", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346915, + 43.658268 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "DAHERTLS CORLOG 6", + "ref": "FRCPIE6684545", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.346915, + 43.658268 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "DAHERTLS CORLOG 6", + "ref": "FRCPIE6684545", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3467, + 43.658878 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ULIET ULIET 3", + "ref": "FRCPIE6685935", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3467, + 43.658878 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "ULIET ULIET 3", + "ref": "FRCPIE6685935", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref": "FRFASE330960", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref": "FRFASE330960", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref": "FRFASE330960", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref": "FRFASE330960", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref": "FRFASE330960", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref": "FRFASE330960", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.577555, + 47.109985 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOYANT DE TOURAINE 1293", + "ref": "FRS37E129", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.577555, + 47.109985 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOYANT DE TOURAINE 1293", + "ref": "FRS37E129", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref": "FRFASE330960", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630208, + 45.577663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Romagnieu", + "ref": "FRFASE330960", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82163, + 45.488418 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR VIENNE", + "ref": "FRCPIE6632165", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82163, + 45.488418 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR VIENNE", + "ref": "FRCPIE6632165", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Roussilllon", + "ref": "FRSHEE178", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702388, + 44.004164 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel | A9/E15, La Languedocienne", + "ref": "FRIONE40250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702388, + 44.004164 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel | A9/E15, La Languedocienne", + "ref": "FRIONE40250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702388, + 44.004164 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel | A9/E15, La Languedocienne", + "ref": "FRIONE40250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702388, + 44.004164 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel | A9/E15, La Languedocienne", + "ref": "FRIONE40250", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702388, + 44.004164 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel | A9/E15, La Languedocienne", + "ref": "FRIONE40255", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702388, + 44.004164 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel | A9/E15, La Languedocienne", + "ref": "FRIONE40255", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.702388, + 44.004164 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Tavel | A9/E15, La Languedocienne", + "ref": "FRIONE40255", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Roussilllon", + "ref": "FRSHEE178", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Roussilllon", + "ref": "FRSHEE178", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88317, + 46.782642 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "YZEURES-SUR-CREUSE 18319 - ZA Les Chalussons", + "ref": "FRS37E1831", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.88317, + 46.782642 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "YZEURES-SUR-CREUSE 18319 - ZA Les Chalussons", + "ref": "FRS37E1831", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.683976, + 47.421294 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 10699 - Rue de Tourcoing", + "ref": "FRS37E1070", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.683976, + 47.421294 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 10699 - Rue de Tourcoing", + "ref": "FRS37E1069", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67656243, + 47.38439695 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 10698 - Place Rabelais", + "ref": "FRS37E1069", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67656243, + 47.38439695 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 10698 - Place Rabelais", + "ref": "FRS37E1069", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67732483, + 47.3794927 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 24226 - Rue Giraudeau", + "ref": "FRS37E2488", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67732483, + 47.3794927 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 24226 - Rue Giraudeau", + "ref": "FRS37E2422", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6776078, + 47.36370564 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 10694 - Avenue Marcel Dassault", + "ref": "FRS37E1069", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6776078, + 47.36370564 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Tours 10694 - Avenue Marcel Dassault", + "ref": "FRS37E1069", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Roussilllon", + "ref": "FRSHEE179", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Roussilllon", + "ref": "FRSHEE181", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Roussilllon", + "ref": "FRSHEE181", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Roussilllon", + "ref": "FRSHEE181", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Roussilllon", + "ref": "FRSHEE180", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Roussilllon", + "ref": "FRSHEE180", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Roussilllon", + "ref": "FRSHEE180", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Roussilllon", + "ref": "FRSHEE179", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8160508, + 45.406247 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de Roussilllon", + "ref": "FRSHEE179", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.060857, + 47.260997 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUZILLE 1451", + "ref": "FRS37E145", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.060857, + 47.260997 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LUZILLE 1451", + "ref": "FRS37E145", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.693495, + 47.256705 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SORIGNY 2480 - Place Antoine de St Exupéry", + "ref": "FRS37E248", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.693495, + 47.256705 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SORIGNY 2480 - Place Antoine de St Exupéry", + "ref": "FRS37E248", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref": "FRCPIE6623895", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref": "FRCPIE6623885", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref": "FRCPIE6623885", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref": "FRCPIE6534535", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref": "FRCPIE6534535", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref": "FRCPIE6623895", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref": "FRCPIE6623905", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.427526, + 48.093861 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONELOG CHÂTEAUBOURG 6", + "ref": "FRCPIE6623905", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.474615, + 43.298803 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agde", + "ref": "FRIONE46940", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.474615, + 43.298803 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agde", + "ref": "FRIONE4694", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.474615, + 43.298803 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agde", + "ref": "FRIONE46941", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.474615, + 43.298803 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agde", + "ref": "FRIONE46941", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.474615, + 43.298803 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agde", + "ref": "FRIONE46941", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.474615, + 43.298803 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agde", + "ref": "FRIONE46940", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.474615, + 43.298803 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agde", + "ref": "FRIONE46940", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.492422, + 45.188934 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saugon Ouest", + "ref": "FRIONE4314", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.492422, + 45.188934 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saugon Ouest", + "ref": "FRIONE43140", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.492422, + 45.188934 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saugon Ouest", + "ref": "FRIONE43140", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.492422, + 45.188934 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saugon Ouest", + "ref": "FRIONE43140", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.492422, + 45.188934 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saugon Ouest", + "ref": "FRIONE43140", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.402838, + 43.551582 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED TOULOUSE 1 _", + "ref": "FRCPIE6542295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.402838, + 43.551582 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED TOULOUSE 1 _", + "ref": "FRCPIE6542295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.323697, + 43.72454 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "STATION U BORNE 1", + "ref": "FRCPIE6538095", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.162406, + 43.421307 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNES U TECHNO BORNE 2", + "ref": "FRCPIE6544925", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.21, + 48.12 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GENE ELEC 35", + "owner:ref:FR:SIREN": "819285149", + "email": "gene.elec35@gmail.com", + "phone": "0603158007", + "network": "Borne de charge 2X22 KW WITTY PARK", + "ref": "58e96c29-ba02-4754-b0c4-98a4a1056975", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 14:00-18:00", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1781618, + 44.9177712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "CHATEAU RIPEAU", + "ref": "cbbbdfaf-503c-443a-aee0-62980999f77f", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.559237, + 45.087757 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "410177661", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Bricomarché - Villard de lans- SARALAM", + "ref": "70565", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-sat 09:00-19:00", + "start_date": "2021-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.559237, + 45.087757 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "410177661", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Bricomarché - Villard de lans ", + "ref": "70564", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-sat 09:00-19:00", + "start_date": "2021-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.670170199999, + 44.8539403 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SA GLASTINT", + "ref": "6bbb97a5-bd3d-4d66-ba5d-25591e1bc39a", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35, + 43.28 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NVH", + "owner:ref:FR:SIREN": "775657463", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "CSE-Central BDF", + "ref": "0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "1", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35, + 43.28 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NVH", + "owner:ref:FR:SIREN": "775657463", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "CSE-Central BDF", + "ref": "0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "1", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5203551, + 44.821036 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "SAS HOTEL BORDEAUX FLOIRAC", + "ref": "e270d760-c439-4b2f-a380-dc52b4568f62", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3746, + 43.638003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HABT", + "owner:ref:FR:SIREN": "820235711", + "email": "charley.bohy@mycharmy.net", + "phone": "0689573165", + "network": "Hotel Ibis Styles Toulouse Blagnac Aéroport", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-23:59", + "start_date": "2022-10-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3746, + 43.638003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HABT", + "owner:ref:FR:SIREN": "820235711", + "email": "charley.bohy@mycharmy.net", + "phone": "0689573165", + "network": "Hotel Ibis Styles Toulouse Blagnac Aéroport", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-23:59", + "start_date": "2022-10-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3746, + 43.638003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HABT", + "owner:ref:FR:SIREN": "820235711", + "email": "charley.bohy@mycharmy.net", + "phone": "0689573165", + "network": "Hotel Ibis Styles Toulouse Blagnac Aéroport", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-23:59", + "start_date": "2022-10-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3746, + 43.638003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HABT", + "owner:ref:FR:SIREN": "820235711", + "email": "charley.bohy@mycharmy.net", + "phone": "0689573165", + "network": "Hotel Ibis Styles Toulouse Blagnac Aéroport", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-23:59", + "start_date": "2022-10-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.654599599999, + 44.8662562 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "CIGIMMO", + "ref": "1354f666-b5b9-49ac-a55b-ccec09570c7d", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9811023182169172, + 43.426421561643096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "freshmile", + "owner:ref:FR:SIREN": "213105554", + "email": "exploitation@freshmile.com", + "phone": "0369246738", + "network": "Mairie Vaudreuille", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-08-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9811023182169172, + 43.426421561643096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "electromaps", + "owner:ref:FR:SIREN": "213105554", + "email": "maximilien.kauffmann@wallbox.com", + "phone": "0694 495 065", + "network": "Mairie Vaudreuille", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-08-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.75706931, + 45.16480908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NUQVEPZ8AW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2535821, + 43.34597207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IXBHNZDQGH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2022-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2535821, + 43.34597207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IXBHNZDQGH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2022-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2535821, + 43.34597207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IXBHNZDQGH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2022-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2535821, + 43.34597207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IXBHNZDQGH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2022-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.75706931, + 45.16480908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NUQVEPZ8AW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.240314, + 45.59161 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ESNTDAUVON", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59244163, + 43.06237424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OGOEOW5UKX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.59244163, + 43.06237424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OGOEOW5UKX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09615459, + 44.13769312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LDO26AVCKK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-12:00,Mo-Sa 14:00-18:00", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.240314, + 45.59161 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ESNTDAUVON", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.240314, + 45.59161 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ESNTDAUVON", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.240314, + 45.59161 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ESNTDAUVON", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856848, + 45.505937 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SOKSVEUQOF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.856848, + 45.505937 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SOKSVEUQOF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50990428, + 43.55204124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QL0SAGXFVN", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50990428, + 43.55204124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QL0SAGXFVN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50990428, + 43.55204124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QL0SAGXFVN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0887877, + 44.1063329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T6VGAWB4RJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0887877, + 44.1063329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T6VGAWB4RJ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0887877, + 44.1063329 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T6VGAWB4RJ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50990428, + 43.55204124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QL0SAGXFVN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.624337, + 48.060483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBKLIDJFMT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.916137, + 43.606863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BFRXEAP6WP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.916137, + 43.606863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BFRXEAP6WP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.624337, + 48.060483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBKLIDJFMT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.624337, + 48.060483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBKLIDJFMT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.624337, + 48.060483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBKLIDJFMT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.19557, + 43.573451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TJNUX7EA3X", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09035865, + 45.03417647 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CY1SUZNSHO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09035865, + 45.03417647 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CY1SUZNSHO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.28325956, + 45.07409411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EMXWMFSZZT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65143, + 46.7855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TXSQQA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 09:00-19:30,Fr-Sa 09:00-20:00", + "start_date": "2018-06-01", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65143, + 46.7855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TXSQQA", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 09:00-19:30,Fr-Sa 09:00-20:00", + "start_date": "2018-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65143, + 46.7855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TXSQQA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 09:00-19:30,Fr-Sa 09:00-20:00", + "start_date": "2018-06-01", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65143, + 46.7855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TXSQQA", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 09:00-19:30,Fr-Sa 09:00-20:00", + "start_date": "2018-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.128946, + 44.610044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IYORKBPKU5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THONXFPNYV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2023-01-24", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THONXFPNYV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THONXFPNYV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THONXFPNYV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THONXFPNYV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THONXFPNYV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THONXFPNYV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THONXFPNYV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THONXFPNYV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THONXFPNYV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THONXFPNYV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.128946, + 44.610044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IYORKBPKU5", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.128946, + 44.610044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IYORKBPKU5", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41874822, + 43.66019118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THONXFPNYV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58571634, + 44.8623179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VNGYVMGGN2", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58571634, + 44.8623179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VNGYVMGGN2", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58571634, + 44.8623179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VNGYVMGGN2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.19557, + 43.573451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TJNUX7EA3X", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.19557, + 43.573451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TJNUX7EA3X", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.80023166, + 43.66688431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G0HAPOBGP3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56499, + 44.8355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DPDFCD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56499, + 44.8355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DPDFCD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56499, + 44.8355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DPDFCD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56499, + 44.8355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DPDFCD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56499, + 44.8355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DPDFCD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56499, + 44.8355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DPDFCD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.20602047, + 47.39066148 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YBDSF1GAWY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.20602047, + 47.39066148 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YBDSF1GAWY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.733194, + 47.719212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KOMG7EKARS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.733194, + 47.719212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KOMG7EKARS", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.733194, + 47.719212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KOMG7EKARS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56999, + 44.841 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGVNSN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56999, + 44.841 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YHVKCF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56999, + 44.841 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGVNSN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-11-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56999, + 44.841 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YHVKCF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-11-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56999, + 44.841 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YHVKCF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-11-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.425368, + 43.64393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W9MMBJJDP7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42556, + 43.64235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WFJRFUKQ6R", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42556, + 43.64235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WFJRFUKQ6R", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.425368, + 43.64393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W9MMBJJDP7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42556, + 43.64235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WFJRFUKQ6R", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.425368, + 43.64393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W9MMBJJDP7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.425368, + 43.64393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W9MMBJJDP7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42556, + 43.64235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WFJRFUKQ6R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247558, + 43.365852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC4ZL3O1T1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCGVYIN2UP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCGVYIN2UP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCGVYIN2UP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCGVYIN2UP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCGVYIN2UP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCGVYIN2UP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCGVYIN2UP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCGVYIN2UP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247558, + 43.365852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC4ZL3O1T1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCGVYIN2UP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247558, + 43.365852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC4ZL3O1T1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.247558, + 43.365852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC4ZL3O1T1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11892, + 43.4146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SPVJLC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11892, + 43.4146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SPVJLC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-07-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCGVYIN2UP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCGVYIN2UP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51156, + 43.6507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCGVYIN2UP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67303924, + 44.83122754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZBOK49QJWD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67303924, + 44.83122754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZBOK49QJWD", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67303924, + 44.83122754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZBOK49QJWD", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67303924, + 44.83122754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZBOK49QJWD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67303924, + 44.83122754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZBOK49QJWD", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67303924, + 44.83122754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZBOK49QJWD", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.52577599, + 43.8428697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E9D0SEHF8O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.52577599, + 43.8428697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E9D0SEHF8O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69559, + 43.6418 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KEQHCV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69559, + 43.6418 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KEQHCV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2638, + 43.6008 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PXWENV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2638, + 43.6008 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PXWENV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.692802, + 48.092451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RD8XXQESXZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.692802, + 48.092451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RD8XXQESXZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.692802, + 48.092451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RD8XXQESXZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.692802, + 48.092451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RD8XXQESXZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.692802, + 48.092451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RD8XXQESXZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29854, + 43.764 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SuperUgren", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29854, + 43.764 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SuperUgren", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.713675, + 43.419199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KDHRHLIQ98", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.713675, + 43.419199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KDHRHLIQ98", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09986662, + 43.56260966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L3UEPRL0WC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09986662, + 43.56260966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L3UEPRL0WC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09986662, + 43.56260966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L3UEPRL0WC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09986662, + 43.56260966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L3UEPRL0WC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09986662, + 43.56260966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L3UEPRL0WC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.454771, + 43.618492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VLTSDBSR0J", + "socket:type2_combo": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.454771, + 43.618492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VLTSDBSR0J", + "socket:type2_combo": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.725, + 44.9122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LRR5ND4PC0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.725, + 44.9122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LRR5ND4PC0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6330112, + 44.8043642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CNYDSJRDXJ", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603715, + 44.8499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZFO5IA8AIX", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.616092, + 44.83838 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MQQHXGJV4R", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.616092, + 44.83838 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MQQHXGJV4R", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.618926, + 44.944686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SPI5X5UEAY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5237826, + 44.8624327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FQHVHJU2LD", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6330112, + 44.8043642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CNYDSJRDXJ", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6132285, + 44.8462139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITZYZ0TFXP", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6116, + 44.881022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJFY41A3IX", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5237826, + 44.8624327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FQHVHJU2LD", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6190241, + 44.7993976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IVQVUIET9W", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.628291, + 44.84167 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MYNT8Y8UH1", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5706805, + 44.8436728 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XDNLYWELAE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6190241, + 44.7993976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IVQVUIET9W", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.628291, + 44.84167 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MYNT8Y8UH1", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.620298, + 44.85705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CPPOLYGCLA", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.454771, + 43.618492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VLTSDBSR0J", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56151203, + 44.76579126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BKOKCWBYAN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56151203, + 44.76579126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BKOKCWBYAN", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56151203, + 44.76579126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BKOKCWBYAN", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.519791, + 43.54469101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LILWCYZOHV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.519791, + 43.54469101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LILWCYZOHV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.519791, + 43.54469101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LILWCYZOHV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.620298, + 44.85705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CPPOLYGCLA", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624746, + 44.826207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DPFPKHKVWG", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624746, + 44.826207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DPFPKHKVWG", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5343711, + 44.8557708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VG28KMGHSD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5671108, + 44.8308225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CNBUAC7CIC", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5743715, + 44.8512286 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I8EP8OVXXQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598102, + 44.82586 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SKLQVGKLSV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.653022, + 44.845233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UUWW8D2QTS", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5743715, + 44.8512286 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I8EP8OVXXQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5633591, + 44.8341526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JIIXCKNC8Q", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5671108, + 44.8308225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CNBUAC7CIC", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5671108, + 44.8308225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CNBUAC7CIC", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57113, + 44.8783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YSEGUQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5743715, + 44.8512286 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I8EP8OVXXQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5735586, + 44.8313446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BH6XELLB75", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5700369, + 44.8246198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DPQRIOQN8V", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5633591, + 44.8341526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JIIXCKNC8Q", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5633591, + 44.8341526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JIIXCKNC8Q", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.653022, + 44.845233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UUWW8D2QTS", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5997005, + 44.8660147 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UQAMTV1XPW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5596091, + 44.80663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TUT6GF98YM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6101414, + 44.8327156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VXRRZV9XIP", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5997005, + 44.8660147 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UQAMTV1XPW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6101414, + 44.8327156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VXRRZV9XIP", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5595587, + 44.8411016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WPFVK4XLRP", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5700933, + 44.800156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MDOEGXYE2E", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5861464, + 44.8386916 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QXX0ZUA3NL", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5728467, + 44.8302701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G9SVHKLSTF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5735586, + 44.8313446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BH6XELLB75", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.552385, + 44.86105 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E0XDVX1DK6", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5730911, + 44.88033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FB5Q3EX4F8", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5730911, + 44.88033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FB5Q3EX4F8", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.552385, + 44.86105 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E0XDVX1DK6", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.592695, + 44.840979 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RKHZF2JTNU", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.592695, + 44.840979 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RKHZF2JTNU", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56079, + 44.85006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CS8HK5BBAM", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5489381, + 44.8471942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QHQG9BEFPV", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5489381, + 44.8471942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QHQG9BEFPV", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5595587, + 44.8411016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WPFVK4XLRP", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56079, + 44.85006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CS8HK5BBAM", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56079, + 44.85006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CS8HK5BBAM", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5621268, + 44.830625 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OBPEAJBZPZ", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6008798, + 44.81902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNQRV3FCLS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.592695, + 44.840979 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RKHZF2JTNU", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5910003, + 44.8122102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D36RA9CGIF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5910003, + 44.8122102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D36RA9CGIF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5621268, + 44.830625 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OBPEAJBZPZ", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567786, + 44.8527873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UE0TCNCRDB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5743715, + 44.8512286 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I8EP8OVXXQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5861464, + 44.8386916 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QXX0ZUA3NL", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.653022, + 44.845233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UUWW8D2QTS", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6008798, + 44.81902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNQRV3FCLS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567786, + 44.8527873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UE0TCNCRDB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5343711, + 44.8557708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VG28KMGHSD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61431, + 44.8514 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AWDWMR", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61431, + 44.8514 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AWDWMR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61036, + 44.8324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGVJRD", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61036, + 44.8324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGVJRD", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61036, + 44.8324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGVJRD", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6046, + 44.8302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DJBEAJ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6046, + 44.8302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DJBEAJ", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56412, + 44.8894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HCBDVD", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61570076, + 44.88817928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HVNFAZ", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61570076, + 44.88817928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HVNFAZ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6046, + 44.8302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DJBEAJ", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5812, + 44.8368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EHJHDE", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57826, + 44.8446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GUKJEM", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5902, + 44.8376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NMHCTA", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57826, + 44.8446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GUKJEM", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55604, + 44.8402 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KNXWXM", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55604, + 44.8402 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KNXWXM", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57826, + 44.8446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GUKJEM", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5812, + 44.8368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EHJHDE", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61570076, + 44.88817928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HVNFAZ", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61570076, + 44.88817928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HVNFAZ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61036, + 44.8324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGVJRD", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56097, + 44.8414 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VUNCDL", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56412, + 44.8894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HCBDVD", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56097, + 44.8414 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VUNCDL", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.567786, + 44.8527873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UE0TCNCRDB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5700933, + 44.800156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MDOEGXYE2E", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5997005, + 44.8660147 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UQAMTV1XPW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5596091, + 44.80663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TUT6GF98YM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5596091, + 44.80663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TUT6GF98YM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5700933, + 44.800156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MDOEGXYE2E", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61944, + 44.9218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KNUSGV", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55604, + 44.8402 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KNXWXM", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55604, + 44.8402 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KNXWXM", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56097, + 44.8414 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VUNCDL", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56412, + 44.8894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HCBDVD", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56097, + 44.8414 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VUNCDL", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5902, + 44.8376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NMHCTA", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5902, + 44.8376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NMHCTA", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56412, + 44.8894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HCBDVD", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5902, + 44.8376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NMHCTA", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61944, + 44.9218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KNUSGV", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61944, + 44.9218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KNUSGV", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61944, + 44.9218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KNUSGV", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6046, + 44.8302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DJBEAJ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6106798, + 44.8240441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XANUJCTKNB", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5570323, + 44.84365 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MME1DDQAPL", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5570323, + 44.84365 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MME1DDQAPL", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5706805, + 44.8436728 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XDNLYWELAE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5802927, + 44.8367369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RMXU7KFQ3T", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5802927, + 44.8367369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RMXU7KFQ3T", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5921201, + 44.8554383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JHHZIKO6YD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5698217, + 44.8580555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WHUUHA0GTM", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58493, + 44.84235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TQU9YK1V5N", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5698217, + 44.8580555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WHUUHA0GTM", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5698217, + 44.8580555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WHUUHA0GTM", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5755883, + 44.843269 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZDY9IC0LN9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58493, + 44.84235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TQU9YK1V5N", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5755883, + 44.843269 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZDY9IC0LN9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5942345, + 44.8455488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HIVI0H64KL", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5921201, + 44.8554383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JHHZIKO6YD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5921201, + 44.8554383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JHHZIKO6YD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5942345, + 44.8455488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HIVI0H64KL", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6116, + 44.881022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJFY41A3IX", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5794891, + 44.8424538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FWHFRTAK5A", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5794891, + 44.8424538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FWHFRTAK5A", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5858919, + 44.8785426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IUXFHAEHEQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.614253, + 44.85121 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HGJLYOTLRF", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5794891, + 44.8424538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FWHFRTAK5A", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5858919, + 44.8785426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IUXFHAEHEQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5755883, + 44.843269 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZDY9IC0LN9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.579258, + 44.856634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PRJWTYLPXL", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5812665, + 44.83053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CN09IUBP7D", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5763597, + 44.8473288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAYDRISMJD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624746, + 44.826207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DPFPKHKVWG", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5728467, + 44.8302701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G9SVHKLSTF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6330112, + 44.8043642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CNYDSJRDXJ", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5728467, + 44.8302701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G9SVHKLSTF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.605597, + 44.793068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XH2LMSOLZF", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603715, + 44.8499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZFO5IA8AIX", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.605597, + 44.793068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XH2LMSOLZF", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603715, + 44.8499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZFO5IA8AIX", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.614253, + 44.85121 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HGJLYOTLRF", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5868384, + 44.8240534 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUNOV6UIWG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5812665, + 44.83053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CN09IUBP7D", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5868384, + 44.8240534 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUNOV6UIWG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5763597, + 44.8473288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAYDRISMJD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5763597, + 44.8473288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAYDRISMJD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5763597, + 44.8473288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAYDRISMJD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5763597, + 44.8473288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAYDRISMJD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576803, + 44.865406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FJRKKXQ4LW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576803, + 44.865406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FJRKKXQ4LW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576803, + 44.865406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FJRKKXQ4LW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.579258, + 44.856634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PRJWTYLPXL", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5706805, + 44.8436728 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XDNLYWELAE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5706805, + 44.8436728 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XDNLYWELAE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5667689, + 44.8630867 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TWXRC5Z5LN", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.618926, + 44.944686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SPI5X5UEAY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5497758, + 44.81634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QHUUUYBQNY", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5497758, + 44.81634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QHUUUYBQNY", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5497758, + 44.81634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QHUUUYBQNY", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.569361, + 44.835869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSZPUKTAXJ", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57113, + 44.8783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YSEGUQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5693503, + 44.8139114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AQDLTY7DRW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5931506, + 44.8063454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YUIX1NLTFN", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5931506, + 44.8063454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YUIX1NLTFN", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5910003, + 44.8122102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D36RA9CGIF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6008798, + 44.81902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNQRV3FCLS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5700369, + 44.8246198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DPQRIOQN8V", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5585728, + 44.8240481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UPPTNFPCFG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5776042, + 44.825539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LSSZYXJHIQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5776042, + 44.825539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LSSZYXJHIQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5776042, + 44.825539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LSSZYXJHIQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5910003, + 44.8122102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D36RA9CGIF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5585728, + 44.8240481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UPPTNFPCFG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5585728, + 44.8240481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UPPTNFPCFG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5595587, + 44.8411016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WPFVK4XLRP", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6106798, + 44.8240441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XANUJCTKNB", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5667689, + 44.8630867 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TWXRC5Z5LN", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5567316, + 44.8275893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GLCXPQDIMC", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.569361, + 44.835869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSZPUKTAXJ", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5567316, + 44.8275893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GLCXPQDIMC", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5265646, + 44.8307381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A7Y2IJACYN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.58493, + 44.84235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TQU9YK1V5N", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598102, + 44.82586 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SKLQVGKLSV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598102, + 44.82586 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SKLQVGKLSV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6196466, + 44.8638037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXUGFUVPNA", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6056556, + 44.8366088 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HZTA8PJY7H", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.606393, + 44.8394463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TXQ15C6CEX", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.606393, + 44.8394463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TXQ15C6CEX", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6056556, + 44.8366088 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HZTA8PJY7H", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.576803, + 44.865406 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FJRKKXQ4LW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5265646, + 44.8307381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A7Y2IJACYN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5693503, + 44.8139114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AQDLTY7DRW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6132285, + 44.8462139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITZYZ0TFXP", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5706805, + 44.8436728 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XDNLYWELAE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6196466, + 44.8638037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RXUGFUVPNA", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.595881, + 44.85047 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GAY47NFYIK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.606393, + 44.8394463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TXQ15C6CEX", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.595881, + 44.85047 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GAY47NFYIK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.595881, + 44.85047 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GAY47NFYIK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5567316, + 44.8275893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GLCXPQDIMC", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5693503, + 44.8139114 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AQDLTY7DRW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57826, + 44.8446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GUKJEM", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5812, + 44.8368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EHJHDE", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5812, + 44.8368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EHJHDE", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.86193856, + 43.57953074 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XXDLS2JO5O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-18:00", + "start_date": "2022-11-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6321366, + 44.98545202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M9KFBBOZNC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6321366, + 44.98545202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M9KFBBOZNC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6321366, + 44.98545202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M9KFBBOZNC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6321366, + 44.98545202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M9KFBBOZNC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.682521, + 47.282556 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LYK0VLSICY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.682521, + 47.282556 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LYK0VLSICY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.86193856, + 43.57953074 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XXDLS2JO5O", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-18:00", + "start_date": "2022-11-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56040181, + 45.53511035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ABYE1D2DBH", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56040181, + 45.53511035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ABYE1D2DBH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32263738, + 47.10276877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLMTM4TSXD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.32263738, + 47.10276877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLMTM4TSXD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52744, + 45.589545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YLCU4JWUCU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52744, + 45.589545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YLCU4JWUCU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52744, + 45.589545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YLCU4JWUCU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52744, + 45.589545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YLCU4JWUCU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852455, + 45.502186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PUZGJABMS9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.57660808, + 45.90715877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VTOBODIIAL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852455, + 45.502186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQMAE8C3MB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852455, + 45.502186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQMAE8C3MB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852455, + 45.502186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQMAE8C3MB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29386, + 43.357456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MISIB4G9PH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2023-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29386, + 43.357456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MISIB4G9PH", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2023-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852455, + 45.502186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PUZGJABMS9", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.852455, + 45.502186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PUZGJABMS9", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.613128, + 44.773752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WC5UFQ7KI5", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44095006, + 43.32335871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FNEF1NNCUJ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44095006, + 43.32335871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FNEF1NNCUJ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.653494, + 44.7821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VYVHYG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.613128, + 44.773752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WC5UFQ7KI5", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-04", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.613128, + 44.773752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WC5UFQ7KI5", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.220258, + 43.373851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KN5TJGPS90", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.220258, + 43.373851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KN5TJGPS90", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.220258, + 43.373851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KN5TJGPS90", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.220258, + 43.373851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KN5TJGPS90", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.220258, + 43.373851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KN5TJGPS90", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.220258, + 43.373851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KN5TJGPS90", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49563, + 44.8523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZDKGZT", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.614437, + 44.869939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DFCD7VBOXJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.614437, + 44.869939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DFCD7VBOXJ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55321, + 44.8118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YDXANV", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51971, + 44.8568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JDWNMZ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51971, + 44.8568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JDWNMZ", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55321, + 44.8118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YDXANV", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.653494, + 44.7821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VYVHYG", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51971, + 44.8568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JDWNMZ", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.653494, + 44.7821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VYVHYG", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49563, + 44.8523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZDKGZT", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49563, + 44.8523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZDKGZT", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.653494, + 44.7821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VYVHYG", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51758541, + 44.89619801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBANTOHEUX", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55321, + 44.8118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YDXANV", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51758541, + 44.89619801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBANTOHEUX", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55321, + 44.8118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YDXANV", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.645157, + 44.851745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WBGP5SFP0C", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56712, + 44.8384 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSWRWK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-05", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.645157, + 44.851745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WBGP5SFP0C", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51971, + 44.8568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JDWNMZ", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56712, + 44.8384 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSWRWK", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.613128, + 44.773752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WC5UFQ7KI5", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-04", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49563, + 44.8523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZDKGZT", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.646493, + 47.357512 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LVMPNLAYFU", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.646493, + 47.357512 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LVMPNLAYFU", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39718179, + 43.46467058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZJREN2NZLF", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39718179, + 43.46467058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZJREN2NZLF", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1204683, + 45.04648058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T4PZWNFZBA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1204683, + 45.04648058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T4PZWNFZBA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1204683, + 45.04648058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T4PZWNFZBA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1204683, + 45.04648058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T4PZWNFZBA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63678848, + 44.17387854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZEG82YBLHG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.801605, + 45.100663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XNM9MXUP5F", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.801605, + 45.100663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XNM9MXUP5F", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.72339157, + 46.42051966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMLPHRRBEG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84802588, + 43.41619671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LIKFVHWT88", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84802588, + 43.41619671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LIKFVHWT88", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84802588, + 43.41619671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LIKFVHWT88", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84802588, + 43.41619671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LIKFVHWT88", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2124275, + 44.58129089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EKHSALDPCE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2124275, + 44.58129089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EKHSALDPCE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62049141, + 46.50972776 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ESLPQIB7IA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.62049141, + 46.50972776 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ESLPQIB7IA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07418678, + 43.56313443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U752AH0SVL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07412793, + 43.56412564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HLGRFIGUUE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07412793, + 43.56412564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HLGRFIGUUE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07493271, + 43.56341819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JSFZN0RULV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07493271, + 43.56341819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JSFZN0RULV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07418678, + 43.56313443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U752AH0SVL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59188, + 45.3216 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z4TQI4RHCG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399329, + 48.076864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JGHSSGGSHZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399329, + 48.076864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JGHSSGGSHZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399329, + 48.076864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JGHSSGGSHZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399329, + 48.076864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JGHSSGGSHZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399329, + 48.076864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JGHSSGGSHZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399329, + 48.076864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JGHSSGGSHZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.71506, + 46.9978 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JGRRPW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.71506, + 46.9978 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JGRRPW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87558193, + 45.637648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3WPD3XTW8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87558193, + 45.637648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3WPD3XTW8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87558193, + 45.637648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3WPD3XTW8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87558193, + 45.637648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3WPD3XTW8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87558193, + 45.637648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3WPD3XTW8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87558193, + 45.637648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3WPD3XTW8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31290617, + 43.94430626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EMNND9MFE7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88531439, + 43.44975075 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSJKPAECMT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.88531439, + 43.44975075 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NSJKPAECMT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07100038, + 44.94711176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VM4NTLS3KB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07100038, + 44.94711176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VM4NTLS3KB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07100038, + 44.94711176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VM4NTLS3KB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.07100038, + 44.94711176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VM4NTLS3KB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.074901, + 43.934673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LMRYSD3DHR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.074901, + 43.934673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LMRYSD3DHR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.64044633, + 44.77402125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MR6MQ1MPFP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.64044633, + 44.77402125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MR6MQ1MPFP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.31290617, + 43.94430626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EMNND9MFE7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53448855, + 46.57480921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z2JIPWRRFU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53448855, + 46.57480921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z2JIPWRRFU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98148211, + 47.42034943 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FA6ABFGHEF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98148211, + 47.42034943 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FA6ABFGHEF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.72191453, + 46.86875514 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M0LRMJF1GO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.72191453, + 46.86875514 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M0LRMJF1GO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55281964, + 43.47239477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VDPIDXOIQR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55281964, + 43.47239477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VDPIDXOIQR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55281964, + 43.47239477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VDPIDXOIQR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55281964, + 43.47239477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VDPIDXOIQR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14462218, + 45.43337951 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TMJD1RDZHA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14462218, + 45.43337951 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TMJD1RDZHA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14462218, + 45.43337951 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TMJD1RDZHA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14462218, + 45.43337951 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TMJD1RDZHA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XNYAC5TPKK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XNYAC5TPKK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XNYAC5TPKK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XNYAC5TPKK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XNYAC5TPKK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XNYAC5TPKK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XNYAC5TPKK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XNYAC5TPKK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XNYAC5TPKK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6768422, + 48.04035723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JG6YZDT24P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6768422, + 48.04035723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JG6YZDT24P", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XNYAC5TPKK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XNYAC5TPKK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6019298, + 47.3276243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XNYAC5TPKK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.54762, + 46.6752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N1TAYO5AC4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.54762, + 46.6752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N1TAYO5AC4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.573146, + 43.939345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P8G873ZCEV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.913914, + 43.67346 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMV7TJ8J969D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.913914, + 43.67346 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMV7TJ8J969D", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.801116, + 47.299634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GRLDTFOSSH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.573146, + 43.939345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P8G873ZCEV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.913914, + 43.67346 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMV7TJ8J969D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.573146, + 43.939345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P8G873ZCEV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.913914, + 43.67346 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMV7TJ8J969D", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.913914, + 43.67346 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMV7TJ8J969D", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.573146, + 43.939345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P8G873ZCEV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.078401, + 43.559483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XL9FKMEJII", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.078401, + 43.559483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XL9FKMEJII", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.913914, + 43.67346 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMV7TJ8J969D", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.801116, + 47.299634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GRLDTFOSSH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.983408, + 47.134593 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N8SQMR1KAQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16849, + 47.278754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WYVFBS73YI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.983408, + 47.134593 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N8SQMR1KAQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.983408, + 47.134593 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N8SQMR1KAQ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.983408, + 47.134593 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N8SQMR1KAQ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.528757, + 46.589936 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M3ELUWQTWT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.528757, + 46.589936 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M3ELUWQTWT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16849, + 47.278754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WYVFBS73YI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.724508, + 48.551888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z5MFSTXFBK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2535804, + 47.11048942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z8TORQXRCM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2535804, + 47.11048942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z8TORQXRCM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.883947, + 45.274004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JGZFJ7CM6V", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.248697, + 45.393022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFOHUPYC2O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708527, + 45.157641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P82ADPOVAF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.422381, + 45.393392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ASYZQT6BCE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.248697, + 45.393022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFOHUPYC2O", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.064734, + 45.341785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SJWECFVZZW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708527, + 45.157641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P82ADPOVAF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.761574, + 45.186638 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QS8BTQA6LW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.171991, + 48.188886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HU0OZDLEWF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.724508, + 48.551888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z5MFSTXFBK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.171991, + 48.188886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HU0OZDLEWF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.248697, + 45.393022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFOHUPYC2O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.761574, + 45.186638 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QS8BTQA6LW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.883947, + 45.274004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JGZFJ7CM6V", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2535804, + 47.11048942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z8TORQXRCM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34937411, + 45.341624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WMZPDCEPIA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.064734, + 45.341785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SJWECFVZZW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.422381, + 45.393392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ASYZQT6BCE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.248697, + 45.393022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFOHUPYC2O", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34937411, + 45.341624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WMZPDCEPIA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2535804, + 47.11048942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z8TORQXRCM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2535804, + 47.11048942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z8TORQXRCM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2535804, + 47.11048942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z8TORQXRCM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5930157, + 45.52731397 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WC9D5OUSO6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5930157, + 45.52731397 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WC9D5OUSO6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.761574, + 45.186638 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QS8BTQA6LW", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.761574, + 45.186638 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QS8BTQA6LW", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066339, + 45.093005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCQLQDZEBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066339, + 45.093005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCQLQDZEBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066339, + 45.093005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCQLQDZEBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066339, + 45.093005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCQLQDZEBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066339, + 45.093005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCQLQDZEBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066339, + 45.093005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCQLQDZEBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.066339, + 45.093005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DCQLQDZEBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.588364, + 44.839064 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KQBBVHXLQF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.588364, + 44.839064 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KQBBVHXLQF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.552983, + 46.669091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QWU01HIDPC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.552983, + 46.669091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QWU01HIDPC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.552983, + 46.669091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QWU01HIDPC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.552983, + 46.669091 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QWU01HIDPC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.72717042, + 46.69645546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKHCDWYRQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.72717042, + 46.69645546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKHCDWYRQK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.81077, + 43.683611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JXHEZ5LVEE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2022-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.304622, + 45.574515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NHOGL06J48", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.304622, + 45.574515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NHOGL06J48", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.304622, + 45.574515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NHOGL06J48", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.81077, + 43.683611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JXHEZ5LVEE", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2022-06-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97394, + 46.374656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BSE7UXMPKB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.51352747, + 43.58381435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XTR2GOJ0TI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.490938, + 43.504979 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SLAMWPZJFU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97394, + 46.374656 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BSE7UXMPKB", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.775882, + 48.215477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VYSYWYNZTS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.775882, + 48.215477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VYSYWYNZTS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.315753, + 43.438134 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GCDA7HXZKI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.315753, + 43.438134 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GCDA7HXZKI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99288892, + 48.65405506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RZMUAPWE9V", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99288892, + 48.65405506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RZMUAPWE9V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.99288892, + 48.65405506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RZMUAPWE9V", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.586486, + 44.70702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZK1N3I2E1J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.586486, + 44.70702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZK1N3I2E1J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67808295, + 48.08433633 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIFCSLELR2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.056644, + 48.609489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CAGYQWVCSD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.061672, + 46.483018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DTPOLB2LSC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.061672, + 46.483018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DTPOLB2LSC", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45245219, + 43.61737466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTIU7I3VVW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHN6Y2IMIA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHN6Y2IMIA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.45245219, + 43.61737466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTIU7I3VVW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHN6Y2IMIA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHN6Y2IMIA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHN6Y2IMIA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHN6Y2IMIA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHN6Y2IMIA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86508738, + 45.51496871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RHN6Y2IMIA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57233178, + 46.66965999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XCLLB815FO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465253, + 46.748588 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LRNQPLHRUT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465253, + 46.748588 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LRNQPLHRUT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465253, + 46.748588 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LRNQPLHRUT", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.465253, + 46.748588 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LRNQPLHRUT", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57233178, + 46.66965999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XCLLB815FO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.489837, + 47.082347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQU4R0ABMI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.489837, + 47.082347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IQU4R0ABMI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISSUAD0218PP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40803976, + 43.53225485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O63JQJDR8C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNDZLAR6YW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNDZLAR6YW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.503546, + 43.559969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISSUAD0218PP", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNDZLAR6YW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40803976, + 43.53225485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O63JQJDR8C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISSUAD0218PP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.503546, + 43.559969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISSUAD0218PP", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNDZLAR6YW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40803976, + 43.53225485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O63JQJDR8C", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74012718, + 43.11227984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MWSUJPSJ4J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74012718, + 43.11227984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MWSUJPSJ4J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74012718, + 43.11227984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MWSUJPSJ4J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74012718, + 43.11227984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MWSUJPSJ4J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40803976, + 43.53225485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O63JQJDR8C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74012718, + 43.11227984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MWSUJPSJ4J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40803976, + 43.53225485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O63JQJDR8C", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40803976, + 43.53225485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O63JQJDR8C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISSUAD0218PP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLISSUAD0218PP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNDZLAR6YW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNDZLAR6YW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNDZLAR6YW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNDZLAR6YW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNDZLAR6YW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNDZLAR6YW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNDZLAR6YW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63414781, + 43.44967101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNDZLAR6YW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74012718, + 43.11227984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MWSUJPSJ4J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57233178, + 46.66965999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XCLLB815FO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.57233178, + 46.66965999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XCLLB815FO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80628112, + 45.57668842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XDPR5VCA2O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80506843, + 45.34822043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZFHTLR4J0P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80506843, + 45.34822043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZFHTLR4J0P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.40035862, + 45.80450072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CCNQFPQQIB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.40035862, + 45.80450072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CCNQFPQQIB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80506843, + 45.34822043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZFHTLR4J0P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80506843, + 45.34822043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZFHTLR4J0P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.482969, + 45.672175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FI90Y2MKQN", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.482969, + 45.672175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FI90Y2MKQN", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.233955, + 45.599607 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AX86CBKORF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80628112, + 45.57668842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XDPR5VCA2O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43081, + 45.567702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JNCVUHJ9T2", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.43081, + 45.567702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JNCVUHJ9T2", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.198164, + 45.75177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HGSOGXCO0T", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.198164, + 45.75177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HGSOGXCO0T", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.198164, + 45.75177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HGSOGXCO0T", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.233955, + 45.599607 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AX86CBKORF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.198164, + 45.75177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HGSOGXCO0T", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.531168, + 44.722705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HVQK2HM8GQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260843, + 44.543644 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VAM8YTTW3I", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260843, + 44.543644 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VAM8YTTW3I", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.930379, + 45.297541 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EUYZVQKVQM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15518, + 44.6395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EK5YHMKEAO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260843, + 44.543644 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VAM8YTTW3I", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06582016, + 44.58409469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JOZZJYCYP2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMWW8BBCHFQP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06582016, + 44.58409469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JOZZJYCYP2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06582016, + 44.58409469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JOZZJYCYP2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06582016, + 44.58409469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JOZZJYCYP2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.930379, + 45.297541 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EUYZVQKVQM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06582016, + 44.58409469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JOZZJYCYP2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06582016, + 44.58409469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JOZZJYCYP2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.672947, + 44.859769 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D1EYROTLX1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMWW8BBCHFQP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMWW8BBCHFQP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.672947, + 44.859769 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D1EYROTLX1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMWW8BBCHFQP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMWW8BBCHFQP", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMWW8BBCHFQP", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.260843, + 44.543644 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VAM8YTTW3I", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15518, + 44.6395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EK5YHMKEAO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.531168, + 44.722705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HVQK2HM8GQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMWW8BBCHFQP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510859, + 44.844837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMWW8BBCHFQP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42584685, + 47.33325318 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XZ5WPWTVHV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225379, + 43.944127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AAPOEUSRPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225379, + 43.944127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AAPOEUSRPM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66541009, + 44.85796028 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EQLLJPVXCO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66541009, + 44.85796028 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EQLLJPVXCO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66234705, + 44.79974717 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PMDA7DOBMH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66234705, + 44.79974717 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PMDA7DOBMH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36010778, + 48.75808079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XG3TDDGOMM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36010778, + 48.75808079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XG3TDDGOMM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56279373, + 44.77185819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IG8XKOL1LY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.57193491, + 44.80363171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUBXMBZUNZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56279373, + 44.77185819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IG8XKOL1LY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRD9E7Z4IO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRD9E7Z4IO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRD9E7Z4IO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRD9E7Z4IO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRD9E7Z4IO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRD9E7Z4IO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRD9E7Z4IO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.69769922, + 47.33501281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRD9E7Z4IO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512023, + 44.879618 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJWUMZACZF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512023, + 44.879618 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJWUMZACZF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VTD24GRLDJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VTD24GRLDJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VTD24GRLDJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VTD24GRLDJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VTD24GRLDJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VTD24GRLDJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VTD24GRLDJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61628505, + 44.89138691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VTD24GRLDJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512023, + 44.879618 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJWUMZACZF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512023, + 44.879618 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJWUMZACZF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.512023, + 44.879618 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJWUMZACZF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.637342, + 48.130888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MP5DRUW85N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.637342, + 48.130888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MP5DRUW85N", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.637342, + 48.130888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MP5DRUW85N", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.68480401, + 43.97449468 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VXKSVK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.68480401, + 43.97449468 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VXKSVK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06361322, + 43.93415882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BZR3NP5DYR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06361322, + 43.93415882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BZR3NP5DYR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.637342, + 48.130888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MP5DRUW85N", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.60896065, + 43.42914778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ERYMURP2DU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-12:00,Mo-Fr 14:00-19:00,Sa 14:00-18:00", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.60896065, + 43.42914778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ERYMURP2DU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-12:00,Mo-Fr 14:00-19:00,Sa 14:00-18:00", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.877324, + 43.585564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JTRLOAXURL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.877324, + 43.585564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JTRLOAXURL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.877324, + 43.585564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JTRLOAXURL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21968, + 48.8963 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RTGNLZP5RI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21968, + 48.8963 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RTGNLZP5RI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21968, + 48.8963 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RTGNLZP5RI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21968, + 48.8963 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RTGNLZP5RI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21968, + 48.8963 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RTGNLZP5RI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60705932, + 43.65212834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X5FEEIN90B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60705932, + 43.65212834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X5FEEIN90B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.729515, + 48.079738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M1UB8R9YFT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 13:00-16:00", + "start_date": "2021-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.729515, + 48.079738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M1UB8R9YFT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 13:00-16:00", + "start_date": "2021-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33561998, + 43.48068237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SJGU8UPEDR", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33561998, + 43.48068237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SJGU8UPEDR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49694935, + 43.57252502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FMNRHLYJDM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49694935, + 43.57252502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FMNRHLYJDM", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49694935, + 43.57252502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FMNRHLYJDM", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33561998, + 43.48068237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SJGU8UPEDR", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.021463, + 46.520895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SQMYKHQ3PK", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.021463, + 46.520895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SQMYKHQ3PK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.379552, + 43.517808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XLILIHAPFT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.379552, + 43.517808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XLILIHAPFT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.379552, + 43.517808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XLILIHAPFT", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.379552, + 43.517808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XLILIHAPFT", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.379552, + 43.517808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XLILIHAPFT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.379552, + 43.517808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XLILIHAPFT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.701, + 43.3988 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DB6JAUQC9M", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70692, + 43.3996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DB6JAUQC9M", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52771, + 46.6717 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R6EKEKG2QM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.52771, + 46.6717 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R6EKEKG2QM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.39965998, + 45.48381895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VCFWJE8H9N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CSGDHJKZWQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CSGDHJKZWQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CSGDHJKZWQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CSGDHJKZWQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CSGDHJKZWQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CSGDHJKZWQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CSGDHJKZWQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70319375, + 46.84935771 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CSGDHJKZWQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67585831, + 44.84853261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZBOTAXM1N9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67585831, + 44.84853261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZBOTAXM1N9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9547898, + 46.57495515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G6EQG69JYG", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70260771, + 46.85125182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WGALU8RLGY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70260771, + 46.85125182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WGALU8RLGY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.9547898, + 46.57495515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G6EQG69JYG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.137626, + 43.517815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HIPTHVIZZY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.126213, + 43.517403 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ROA62NCPNF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.126149, + 43.5169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QJPMFY9VDG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.136678, + 43.518713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UK5JQUMRGT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13157, + 43.518561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JDIEUSSXCH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.135843, + 43.521069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DK6XS3IOSC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12670173, + 43.52180774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCNTJBOJ10", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.126527, + 43.520648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWJJ5SAPNR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.126213, + 43.517403 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ROA62NCPNF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.126149, + 43.5169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QJPMFY9VDG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.136678, + 43.518713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UK5JQUMRGT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29667692, + 43.25221254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TAXW4NUFVF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.29667692, + 43.25221254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TAXW4NUFVF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.137626, + 43.517815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HIPTHVIZZY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.126527, + 43.520648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWJJ5SAPNR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12670173, + 43.52180774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCNTJBOJ10", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.22644, + 43.3354 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HCGJJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I4HXYDCXJI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I4HXYDCXJI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I4HXYDCXJI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I4HXYDCXJI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I4HXYDCXJI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I4HXYDCXJI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I4HXYDCXJI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255949, + 43.366492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I4HXYDCXJI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.22644, + 43.3354 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HCGJJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.135843, + 43.521069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DK6XS3IOSC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.22644, + 43.3354 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HCGJJZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.13157, + 43.518561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JDIEUSSXCH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.48251118, + 43.31089191 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BEM0MZEHDY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4151938, + 43.4503553 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QXPD2AT8JS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.4151938, + 43.4503553 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QXPD2AT8JS", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.48251118, + 43.31089191 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BEM0MZEHDY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03216, + 43.77025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZDFNGFYIU3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03216, + 43.77025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZDFNGFYIU3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79546, + 45.3585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D1LX7U3SHG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79759, + 45.3555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UZAVKETLCQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79759, + 45.3555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UZAVKETLCQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79546, + 45.3585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D1LX7U3SHG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79546, + 45.3585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D1LX7U3SHG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79658, + 45.3585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RWFXPQAB4Q", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79658, + 45.3585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RWFXPQAB4Q", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79658, + 45.3585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RWFXPQAB4Q", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79658, + 45.3585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RWFXPQAB4Q", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79693, + 45.3564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PP3BZRYFVB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79759, + 45.3555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UZAVKETLCQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79693, + 45.3564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PP3BZRYFVB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.605439, + 47.403165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FKHA6QWCW9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.605439, + 47.403165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FKHA6QWCW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.605439, + 47.403165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FKHA6QWCW9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.605439, + 47.403165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FKHA6QWCW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26441649, + 47.18261187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DHAZIJAXIY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26441649, + 47.18261187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DHAZIJAXIY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26441649, + 47.18261187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DHAZIJAXIY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26441649, + 47.18261187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DHAZIJAXIY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26441649, + 47.18261187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DHAZIJAXIY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26441649, + 47.18261187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DHAZIJAXIY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12198064, + 45.04544248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QK9VIQB32M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12198064, + 45.04544248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QK9VIQB32M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12198064, + 45.04544248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QK9VIQB32M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12198064, + 45.04544248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QK9VIQB32M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95592362, + 44.64292431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AJQJUM9B3C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95592362, + 44.64292431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AJQJUM9B3C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95592362, + 44.64292431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AJQJUM9B3C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95592362, + 44.64292431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AJQJUM9B3C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZVJ9WGG12K", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZVJ9WGG12K", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZVJ9WGG12K", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZVJ9WGG12K", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZVJ9WGG12K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10758935, + 44.11759832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEWFZ6V02A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:00-20:30,Su 07:00-12:30", + "start_date": "2021-05-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZVJ9WGG12K", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZVJ9WGG12K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZVJ9WGG12K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZVJ9WGG12K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01657703, + 47.40421428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZVJ9WGG12K", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145051, + 45.746572 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HGR47RDIT0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145051, + 45.746572 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HGR47RDIT0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145051, + 45.746572 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HGR47RDIT0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145051, + 45.746572 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HGR47RDIT0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145051, + 45.746572 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HGR47RDIT0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.145051, + 45.746572 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HGR47RDIT0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95592362, + 44.64292431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AJQJUM9B3C", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.95592362, + 44.64292431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AJQJUM9B3C", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75531417, + 50.48283163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KGCAZGUM9A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75531417, + 50.48283163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KGCAZGUM9A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75765321, + 50.48235716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y7RR8FAT3Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75765321, + 50.48235716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y7RR8FAT3Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75531417, + 50.48283163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KGCAZGUM9A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68989667, + 47.85978662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PLJGCICCQV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68989667, + 47.85978662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PLJGCICCQV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68989667, + 47.85978662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PLJGCICCQV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68989667, + 47.85978662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PLJGCICCQV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238647, + 44.516744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E23HKPXHU0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.91944853, + 44.61754174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYW3BNYUDP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91751857, + 48.17635366 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OMOWLNFECU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91751857, + 48.17635366 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OMOWLNFECU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91751857, + 48.17635366 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OMOWLNFECU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.91751857, + 48.17635366 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OMOWLNFECU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22571194, + 44.82527227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W7KDI5HCIN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53047358, + 48.12114958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RYFDYJESIX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.53047358, + 48.12114958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RYFDYJESIX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22571194, + 44.82527227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W7KDI5HCIN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2023-03-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22571194, + 44.82527227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W7KDI5HCIN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22571194, + 44.82527227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W7KDI5HCIN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61935996, + 44.81050006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTABXYFOLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-20:00", + "start_date": "2022-02-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HEDAVFNBCX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HEDAVFNBCX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HEDAVFNBCX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HEDAVFNBCX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HEDAVFNBCX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HEDAVFNBCX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HEDAVFNBCX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.00522909, + 47.10985352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HEDAVFNBCX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06253811, + 46.63950321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U7TAQTYQRD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06253811, + 46.63950321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U7TAQTYQRD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06253811, + 46.63950321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U7TAQTYQRD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06253811, + 46.63950321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U7TAQTYQRD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06253811, + 46.63950321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U7TAQTYQRD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06253811, + 46.63950321 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "U7TAQTYQRD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92415692, + 45.28977905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QSN0XM5KUX", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92415692, + 45.28977905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QSN0XM5KUX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92415692, + 45.28977905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QSN0XM5KUX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92415692, + 45.28977905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QSN0XM5KUX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FHLQ03DZIG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FHLQ03DZIG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FHLQ03DZIG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FHLQ03DZIG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FHLQ03DZIG", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FHLQ03DZIG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FHLQ03DZIG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.12089792, + 45.04597649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FHLQ03DZIG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XBRG7YCKY2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XBRG7YCKY2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XBRG7YCKY2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XBRG7YCKY2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XBRG7YCKY2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XBRG7YCKY2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XBRG7YCKY2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XBRG7YCKY2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XBRG7YCKY2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XBRG7YCKY2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XBRG7YCKY2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XBRG7YCKY2", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.25399043, + 44.54360624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XBRG7YCKY2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63860668, + 43.95013839 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GJO5868P4K", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:30-18:30", + "start_date": "2023-01-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2065939, + 43.65908238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTIOCISWLO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43950231, + 43.63320379 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITD8L7L5KT", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43950231, + 43.63320379 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ITD8L7L5KT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2065939, + 43.65908238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTIOCISWLO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2065939, + 43.65908238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTIOCISWLO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.09837296, + 47.45462025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S141EGXVGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.09837296, + 47.45462025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S141EGXVGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56440864, + 46.64140412 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLI1HDD2GWRT7N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56440864, + 46.64140412 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLI1HDD2GWRT7N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56440864, + 46.64140412 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLI1HDD2GWRT7N", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56440864, + 46.64140412 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLI1HDD2GWRT7N", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.208492, + 48.1096611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X8A9OQR4ED", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.208492, + 48.1096611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X8A9OQR4ED", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92319429, + 45.52570952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VSKJMEF5WR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93247, + 43.5894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QENWKTMZCF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93247, + 43.5894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QENWKTMZCF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93247, + 43.5894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QENWKTMZCF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93247, + 43.5894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QENWKTMZCF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.92319429, + 45.52570952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VSKJMEF5WR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.07743485, + 45.15738978 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HROA3L4NBG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.07743485, + 45.15738978 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HROA3L4NBG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MU4VEED0OF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", + "start_date": "2021-09-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56197322, + 44.77498471 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GFGWISRUKV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MU4VEED0OF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", + "start_date": "2021-09-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MU4VEED0OF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", + "start_date": "2021-09-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MU4VEED0OF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", + "start_date": "2021-09-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.686231, + 44.82537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DFR9ZCDQ6F", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", + "start_date": "2021-09-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MU4VEED0OF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", + "start_date": "2021-09-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MU4VEED0OF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", + "start_date": "2021-09-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MU4VEED0OF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", + "start_date": "2021-09-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50235, + 44.870304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MU4VEED0OF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", + "start_date": "2021-09-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.686231, + 44.82537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DFR9ZCDQ6F", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", + "start_date": "2021-09-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.686231, + 44.82537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DFR9ZCDQ6F", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", + "start_date": "2021-09-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.686231, + 44.82537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DFR9ZCDQ6F", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", + "start_date": "2021-09-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.686231, + 44.82537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DFR9ZCDQ6F", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", + "start_date": "2021-09-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.686231, + 44.82537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DFR9ZCDQ6F", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30", + "start_date": "2021-09-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11732583, + 44.61428527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UXEUSC0NOG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11732583, + 44.61428527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UXEUSC0NOG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11732583, + 44.61428527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UXEUSC0NOG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11732583, + 44.61428527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UXEUSC0NOG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11732583, + 44.61428527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UXEUSC0NOG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.11732583, + 44.61428527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UXEUSC0NOG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18150558, + 43.51775442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R84F9WYP2R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18150558, + 43.51775442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R84F9WYP2R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18150558, + 43.51775442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R84F9WYP2R", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18150558, + 43.51775442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R84F9WYP2R", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26726896, + 45.59468697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WZWROIDFBO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.790802, + 45.208576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZET3IOQSGY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.790802, + 45.208576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZET3IOQSGY", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.790802, + 45.208576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZET3IOQSGY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.790802, + 45.208576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZET3IOQSGY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.790802, + 45.208576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZET3IOQSGY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.00373123, + 46.95758926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDGGB1NVRK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3336, + 47.7442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QPFAVF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.3336, + 47.7442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QPFAVF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70944237, + 45.19387613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DRPCRSDJXN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70944237, + 45.19387613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DRPCRSDJXN", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70944237, + 45.19387613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DRPCRSDJXN", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.733544, + 43.4498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JXNFKK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-09-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08563, + 43.657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DTWFUM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.733544, + 43.4498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JXNFKK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-09-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.460499, + 43.7579 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KVTXUX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.873202, + 43.63 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HXJWUA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.873202, + 43.63 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HXJWUA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625206, + 43.9343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BFTTPG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625206, + 43.9343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BFTTPG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.460499, + 43.7579 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KVTXUX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.103122, + 43.8593 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CDKXJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.103122, + 43.8593 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CDKXJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.372822, + 43.9558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DMVKVB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666379, + 43.8505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YECSZR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.66865, + 44.0031 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UCAAKJ", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-01-14", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.666379, + 43.8505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YECSZR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07928, + 43.6137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KHRYDG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.54465243, + 43.34520961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JT0PXWXNVC", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.237184, + 43.8843 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XTSRMR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.083122, + 43.6975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BGFWHE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72062678, + 47.44773522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FC0CGPMFFS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-18:00", + "start_date": "2022-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72062678, + 47.44773522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FC0CGPMFFS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-18:00", + "start_date": "2022-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72062678, + 47.44773522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FC0CGPMFFS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-18:00", + "start_date": "2022-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.54465243, + 43.34520961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JT0PXWXNVC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-12", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.646619, + 43.344 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UPBWJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-09-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.08563, + 43.657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DTWFUM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.646619, + 43.344 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UPBWJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-09-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58347, + 43.6476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GCCRUJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58347, + 43.6476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GCCRUJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87569078, + 43.77025322 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PJHOAYDA3O", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87569078, + 43.77025322 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PJHOAYDA3O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.237184, + 43.8843 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XTSRMR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.083122, + 43.6975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BGFWHE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.406859, + 43.5144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GKWHDP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.406859, + 43.5144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GKWHDP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.757224, + 43.9983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZRTKJD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.981634, + 43.5983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KDDWBQ", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-01-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.585688, + 43.6363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XRFJWF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.585688, + 43.6363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XRFJWF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16162, + 43.5243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PQSUGK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0435403, + 43.9499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AVQXQB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.592221, + 43.4917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VYUUWX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.592221, + 43.4917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VYUUWX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.372822, + 43.9558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DMVKVB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.97845, + 43.7229 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BABXXR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.97845, + 43.7229 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BABXXR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.590491, + 43.6488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NKUESQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.301174, + 43.757 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAXDEN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.301174, + 43.757 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAXDEN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.381984, + 43.8829 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XPAZYK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.381984, + 43.8829 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XPAZYK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0435403, + 43.9499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AVQXQB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.590491, + 43.6488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NKUESQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.592952, + 43.652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFWKYJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929674, + 43.4906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ANWJWC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.306926, + 43.4287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FPMRAX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.328356, + 43.5783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NPCXMY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.328356, + 43.5783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NPCXMY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87814433, + 43.73183265 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KFSCCR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.87814433, + 43.73183265 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KFSCCR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.07928, + 43.6137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KHRYDG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.757224, + 43.9983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZRTKJD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.306926, + 43.4287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FPMRAX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.592952, + 43.652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFWKYJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.915598, + 43.4745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RAMSWR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.915598, + 43.4745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RAMSWR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929674, + 43.4906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ANWJWC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.16162, + 43.5243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PQSUGK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2364, + 43.7032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AMUVUF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2364, + 43.7032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AMUVUF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.72062678, + 47.44773522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FC0CGPMFFS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-18:00", + "start_date": "2022-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.03143944, + 43.76706704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UVBI4ZPDJG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.97435221, + 48.60121199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A3NZTZQNQG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.795416392, + 43.9707591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MWG2J2DVGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 00:00-08:00,Mo-Fr 18:30-23:45,Sa-Su 00:00-23:45", + "start_date": "2023-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.86681986, + 43.5796737 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P9ZRAMGL0G", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3375268, + 43.8147048 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SG4BBYR1FY", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3375268, + 43.8147048 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SG4BBYR1FY", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3375268, + 43.8147048 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SG4BBYR1FY", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3375268, + 43.8147048 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SG4BBYR1FY", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25736117, + 43.3444747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZXIBYMRXBH", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25736117, + 43.3444747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZXIBYMRXBH", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.120019, + 44.11633 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UMSFRRANOQ", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.120019, + 44.11633 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UMSFRRANOQ", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.86681986, + 43.5796737 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P9ZRAMGL0G", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5944044, + 43.55145892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TPWWYVYVMM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5944044, + 43.55145892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TPWWYVYVMM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5944044, + 43.55145892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TPWWYVYVMM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.5944044, + 43.55145892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TPWWYVYVMM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71262906, + 43.59593996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F9HUXNS8SF", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-17:00", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71262906, + 43.59593996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F9HUXNS8SF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-17:00", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65936, + 43.8566 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Lomagnehopi", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.65936, + 43.8566 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Lomagnehopi", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.600131, + 43.6679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QDBEGF", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-05-04", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49866, + 43.9812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OLNVAYQDOR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.770562, + 43.891 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JSVRYT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65746865, + 45.24507897 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X0KAYOBXRZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.65746865, + 45.24507897 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X0KAYOBXRZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.712898, + 48.034409 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I1BMCT7WYC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.712898, + 48.034409 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I1BMCT7WYC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.712898, + 48.034409 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I1BMCT7WYC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.712898, + 48.034409 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I1BMCT7WYC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34729512, + 43.8199057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QURNW8BWEM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34729512, + 43.8199057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QURNW8BWEM", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07022881, + 44.14649426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PHXLM9QQUG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07022881, + 44.14649426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PHXLM9QQUG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07022881, + 44.14649426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PHXLM9QQUG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07022881, + 44.14649426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PHXLM9QQUG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.917405, + 46.531099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UGEM4LBMME", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FO6DYAVEZA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FO6DYAVEZA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FO6DYAVEZA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FO6DYAVEZA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FO6DYAVEZA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FO6DYAVEZA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FO6DYAVEZA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FO6DYAVEZA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FO6DYAVEZA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.242749, + 45.596732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FO6DYAVEZA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.584135, + 45.296859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z6FDZYEANJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.41340377, + 43.54042536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S7OUF5KWNV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.83550402, + 43.64251785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RTZPPN1BPO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.83550402, + 43.64251785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RTZPPN1BPO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.97879207, + 43.45844847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PAR6SVC8CT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.97879207, + 43.45844847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PAR6SVC8CT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.83278305, + 45.13686827 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JYQST9D00N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.76242327, + 45.21069827 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LJS7NW956Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.76242327, + 45.21069827 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LJS7NW956Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.76242327, + 45.21069827 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LJS7NW956Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.76242327, + 45.21069827 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LJS7NW956Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.83278305, + 45.13686827 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JYQST9D00N", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55611542, + 45.04765628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGHLVV2XSS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55611542, + 45.04765628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGHLVV2XSS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.919372, + 46.537886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B3IBLOQRWG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883309, + 43.606377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RKIXOAPMW8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883309, + 43.606377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RKIXOAPMW8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030098, + 43.769336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HR010KHJWD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.030098, + 43.769336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HR010KHJWD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.761998, + 43.5214 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QWTCYQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4867079, + 47.0956585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GR5HJDH3RQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44807, + 47.06341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DKZZCS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-09-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4970623, + 47.0903921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCSDDF6LY8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4970623, + 47.0903921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JCSDDF6LY8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48936, + 47.0887 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ICP9SCW6WL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.44807, + 47.06341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DKZZCS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-09-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48936, + 47.0887 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ICP9SCW6WL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48936, + 47.0887 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ICP9SCW6WL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.88118532, + 43.5830557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QNWNPEG1Z0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.88118532, + 43.5830557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QNWNPEG1Z0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.48936, + 47.0887 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ICP9SCW6WL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4867079, + 47.0956585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GR5HJDH3RQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57849, + 43.4282 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BJPTGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591807, + 43.6078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WKRCQX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0320663, + 43.7578 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SUVZHC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.633763, + 44.774632 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UBCPEBFYNE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Su 07:00-19:00", + "start_date": "2022-08-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.633763, + 44.774632 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UBCPEBFYNE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Su 07:00-19:00", + "start_date": "2022-08-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.0320663, + 43.7578 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SUVZHC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591807, + 43.6078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WKRCQX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625572, + 43.712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ATYZJR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22995082, + 43.99335094 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMVWEOVKSB9K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.201134, + 43.951 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YAQVWC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57849, + 43.4282 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BJPTGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.49866, + 43.9812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OLNVAYQDOR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.761998, + 43.5214 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QWTCYQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42744, + 43.8057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LALSSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.22995082, + 43.99335094 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIMVWEOVKSB9K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.19905, + 43.4017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NXFKDH", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-08-02", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.770562, + 43.891 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JSVRYT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.18727, + 43.7773 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JPBEPL", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-03", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.42744, + 43.8057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LALSSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.201134, + 43.951 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YAQVWC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.046019, + 43.6044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TURUTF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.046019, + 43.6044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TURUTF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625572, + 43.712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ATYZJR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7029, + 44.9449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YHJJOKKRAK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7029, + 44.9449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YHJJOKKRAK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7029, + 44.9449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YHJJOKKRAK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7029, + 44.9449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YHJJOKKRAK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69210433, + 44.83526429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PMVU9IRAML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.401075, + 43.520193 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VWCR0TPAP3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.401075, + 43.520193 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VWCR0TPAP3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69210433, + 44.83526429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PMVU9IRAML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69210433, + 44.83526429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PMVU9IRAML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69210433, + 44.83526429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PMVU9IRAML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62903136, + 48.0967915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WBFROMXNDZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-06", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62903136, + 48.0967915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WBFROMXNDZ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.62903136, + 48.0967915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WBFROMXNDZ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05305481, + 50.54928528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ICFNBQATMH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05305481, + 50.54928528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ICFNBQATMH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05305481, + 50.54928528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ICFNBQATMH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0546981, + 50.55028063 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ICFNBQATMH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.05305481, + 50.54928528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ICFNBQATMH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.0546981, + 50.55028063 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ICFNBQATMH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FADPDFV1VI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FADPDFV1VI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FADPDFV1VI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FADPDFV1VI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FADPDFV1VI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FADPDFV1VI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FADPDFV1VI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FADPDFV1VI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FADPDFV1VI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.71578361, + 48.10448437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FADPDFV1VI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.68367112, + 48.13823803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "G7YCDUZGUS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04559503, + 43.73217763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZJ0HFJ186C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04559503, + 43.73217763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZJ0HFJ186C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04559503, + 43.73217763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZJ0HFJ186C", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04559503, + 43.73217763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZJ0HFJ186C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.69149513, + 44.88383502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JJVAYN6WHW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.973002, + 48.657533 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XARMSHHUZH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.973002, + 48.657533 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XARMSHHUZH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.973002, + 48.657533 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XARMSHHUZH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.973002, + 48.657533 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XARMSHHUZH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.973002, + 48.657533 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XARMSHHUZH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.973002, + 48.657533 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XARMSHHUZH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66963499, + 46.82118142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LC5TWHDA5O", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.536033, + 46.675049 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNUUY1QGPQ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.536033, + 46.675049 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNUUY1QGPQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-10", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.074529, + 47.662287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GJUJZ8EFOO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.074529, + 47.662287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GJUJZ8EFOO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01321, + 50.0101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "conde22", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01321, + 50.0101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "conde22", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-07-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08572, + 43.2086 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "58e28a0851f24", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08572, + 43.2086 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "58e28a0851f24", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.606897, + 43.652523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJ8GYI0419GG7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.606897, + 43.652523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJ8GYI0419GG7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48143, + 43.5669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NDHQTP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66772761, + 44.8484796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YPNGGQLI7H", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66772761, + 44.8484796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YPNGGQLI7H", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.371961, + 43.808823 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YSZ671LQHR", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66772761, + 44.8484796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YPNGGQLI7H", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66772761, + 44.8484796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YPNGGQLI7H", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66772761, + 44.8484796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YPNGGQLI7H", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.10953875, + 44.12057025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DYII1VYXNM", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13058583, + 44.60943264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QUXPFGFXNE", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48143, + 43.5669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NDHQTP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48143, + 43.5669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NDHQTP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48143, + 43.5669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NDHQTP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93933154, + 43.58083775 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IYOKNX7TZR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Su 08:00-10:00", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93933154, + 43.58083775 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IYOKNX7TZR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Su 08:00-10:00", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47946398, + 43.56572253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XOPBHY1L2B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47946398, + 43.56572253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XOPBHY1L2B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55755, + 46.6963 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NWWABU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25805072, + 43.34891641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VK0TQGFDSG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25805072, + 43.34891641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VK0TQGFDSG", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25805072, + 43.34891641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VK0TQGFDSG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2022-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.25805072, + 43.34891641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VK0TQGFDSG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00", + "start_date": "2023-06-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.145892, + 43.685903 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C3JINN4OUP", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.145892, + 43.685903 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C3JINN4OUP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55755, + 46.6963 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NWWABU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28522576, + 44.88326108 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FHPCMFYE1W", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.28522576, + 44.88326108 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FHPCMFYE1W", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13651315, + 46.53952848 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIIL4KRO26MRR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.13651315, + 46.53952848 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIIL4KRO26MRR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.98107938, + 43.4257894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZKPBHRQOWL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.36, + 44.01 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref": "ea4af2d4-4d63-40a8-a7cd-c579b91e1a8c", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.637703999999, + 44.7755151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "LABEL DENT", + "ref": "3a575c23-7b71-4f73-a0f8-fd73bc7bcfba", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391484, + 43.841971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "380655548", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA LEXUS NIMES - GARAGE VEYRUNES ", + "ref": "55366", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:30", + "start_date": "2021-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391484, + 43.841971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "380655548", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA LEXUS NIMES - GARAGE VEYRUNES", + "ref": "55371", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:30", + "start_date": "2021-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391484, + 43.841971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "380655548", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA LEXUS NIMES - GARAGE VEYRUNES", + "ref": "55370", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:30", + "start_date": "2021-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391484, + 43.841971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "380655548", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "TOYOTA LEXUS NIMES - GARAGE VEYRUNES", + "ref": "55367", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": " Mo-Fr 09:00-19:00,Sat 09:00-18:30", + "start_date": "2021-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9057774, + 43.660005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "879486520", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ROADY SERVICE", + "ref": "50490", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Sun 08:30-20:00", + "start_date": "2020-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9057774, + 43.660005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "879486520", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ROADY SERVICE", + "ref": "50491", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Sun 08:30-20:00", + "start_date": "2020-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074071, + 44.616646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "318226974", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SA BEYNEL ET FILS ", + "ref": "49419", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074071, + 44.616646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "318226974", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SA BEYNEL ET FILS", + "ref": "26491", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2019-10-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074071, + 44.616646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "318226974", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SA BEYNEL ET FILS", + "ref": "26492", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2019-10-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.074071, + 44.616646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "318226974", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SA BEYNEL ET FILS ", + "ref": "49420", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.508871, + 47.309592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.549728, + 43.48261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.490309, + 45.189955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795777, + 43.54637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "917546251", + "email": "assistance-commerciale@e-vadea.fr", + "phone": "0 970 830 387", + "network": "e-Vadea", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.407609123225763, + 43.41959147913006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "379629447", + "email": "oscar@electromaps.com", + "phone": "34 931.574.967", + "network": "Hotel saint alban", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "socket:type2": "yes", + "fee": "TRUE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1472556, + 44.6109419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "751468612", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - La Teste de Buche", + "ref": "61148", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1472556, + 44.6109419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "751468612", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - La Teste de Buche", + "ref": "61147", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14, + 45 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref": "edc67b91-db41-4aa1-bfa4-e3c2a885e0c1", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.519401, + 43.28532 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref": "f1be318f-a242-42a9-ad6e-73d6cd386179", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6746938, + 44.838434799999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "DLM BORDEAUX", + "ref": "3dd0bb09-bcbb-4fb0-a189-a95be7c3a01e", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37, + 43.82 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "M.A.J.U.", + "owner:ref:FR:SIREN": "802608372", + "email": "bureau@jerome-nutile.com", + "phone": "0466406565", + "network": "Restaurant Jérôme Nutile", + "ref": "8aec152b-584e-4139-87e6-f1994652ab40", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Th-Mo 12:00-23:30", + "start_date": "2022-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95, + 43.57 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Provibat", + "owner:ref:FR:SIREN": "339106783", + "email": "p.calcei@gmail.com", + "phone": "0618922599", + "network": "Provibat", + "ref": "77d4547d-1848-4fbe-8882-04fdbaac3f6b", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.243401, + 45.591954 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "477827653", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "A.V.D. - MAZDA BOURGOIN JALLIEU", + "ref": "49847", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-19:00,Sat 09:00-18:00", + "start_date": "2020-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.338526, + 43.814852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "421659764", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "MAZDA NIMES ", + "ref": "49683", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-19:00", + "start_date": "2020-12-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.679598, + 45.191796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "400447710", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ALESSANDRIA AUTOS - MAZDA GRENOBLE", + "ref": "49521", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-18:00", + "start_date": "2020-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.679598, + 45.191796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "400447710", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "ALESSANDRIA AUTOS - MAZDA GRENOBLE", + "ref": "49590", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-18:00", + "start_date": "2020-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.586281, + 48.115374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "530271162", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda - Rennes ", + "ref": "50782", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:15-19:00,Sat 09:00-18:00", + "start_date": "2021-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.35, + 43.62 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref": "325f41d9-7c4a-48ee-9a78-90eb82731102", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.467278, + 42.628813 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "dba85b2f-0987-475f-af0f-c9e73bed1006", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.148584, + 42.30688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "sas e-motum", + "owner:ref:FR:SIREN": "752982645", + "email": "contact@e-motum.net", + "phone": "04 95 30 05 25", + "network": "e-motum", + "ref": "57098fad-2b57-440a-9c01-04dc2c353302", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.609770199999, + 45.7115857 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "909177297", + "email": "a.tarridec@maborneauto.com", + "phone": "0556372993", + "network": "SCI HORUS", + "ref": "bc840a90-12c1-4963-b396-75837d9ed5cf", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.079235881798033, + 44.125333499688494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RICOME ET SADOUL AXA FRANCE", + "owner:ref:FR:SIREN": "438060501", + "email": "agence.ricome@axa.fr", + "phone": "04 66 91 03 11 ", + "network": "RICOME ET SADOUL AXA FRANCE", + "ref": "333a06ae-f6b3-458e-8e5a-5c63c8152bf5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.02472, + 44.04578 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SATUJO", + "owner:ref:FR:SIREN": "308452051", + "email": "compta.ing@satujo.com", + "phone": "0466606854", + "network": "SATUJO", + "ref": "1a8d48c6-e9ed-4c97-890d-b19511959332", + "socket:type2": "yes", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2015-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8865, + 43.98066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Camping des graniers", + "owner:ref:FR:SIREN": "508754181", + "email": "Campinggraniers@gmail.com", + "phone": "06 59 74 24 88", + "network": "Camping des graniers", + "ref": "dacc7284-24fa-457a-a239-b5df87276e33", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.143857839450771, + 43.67179371848097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EURO TAXI LINE", + "owner:ref:FR:SIREN": "403825722", + "email": "eurotaxiline@free.fr", + "phone": "06 07 48 92 08", + "network": "EURO TAXI LINE", + "ref": "12ad3b82-577a-46c6-993b-50fc0caefdb9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9797605, + 48.6682107 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Carrefour Contact Saint-Malo", + "ref": "FRCARP35288A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9797605, + 48.6682107 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Carrefour Contact Saint-Malo", + "ref": "FRCARP35288A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44438, + 44.913949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44438, + 44.913949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44438, + 44.913949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44438, + 44.913949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.115604, + 50.682161 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.115604, + 50.682161 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.115604, + 50.682161 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.115604, + 50.682161 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3402467383073846, + 43.612262376081546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "electromaps", + "owner:ref:FR:SIREN": "799445309", + "email": "info@electromaps.com", + "network": "FRIENDLY AUBERGE", + "ref": "1fc222f1-5977-493d-a446-f33359543573", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.135471415628564, + 44.079339763735184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SCI LA COLLINE ", + "owner:ref:FR:SIREN": "333284743", + "email": "p.georges@groupe-ipa.com", + "phone": "0680462242", + "network": "SCI LA COLLINE", + "ref": "ccabc598-0b7e-11ee-be56-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.135471415628564, + 44.079339763735184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SCI LA COLLINE ", + "owner:ref:FR:SIREN": "333284743", + "email": "p.georges@groupe-ipa.com", + "phone": "0680462242", + "network": "SCI LA COLLINE", + "ref": "ccd2fa32-0b7e-11ee-be56-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3592, + 43.810977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3592, + 43.810977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.361448, + 43.812247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.361448, + 43.812247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.361448, + 43.812247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.3592, + 43.810977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2339028, + 44.4425322 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELEK BORDEAUX", + "owner:ref:FR:SIREN": "909177297", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "SARL PERROT", + "ref": "107a257c-77d6-4050-831c-1cfb9c1a231e", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.61, + 45.59 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Electromaps", + "owner:ref:FR:SIREN": "333245181", + "email": "info@electromaps.com", + "phone": "+34 931 574 967 ", + "network": "Electromaps", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Sa 09:00-12:00 14:00-19:00, Su 9:00-12:30", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4978048, + 44.8526111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "909177297", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "ELEN DISTRIBUTION", + "ref": "efeb05dd-38ba-4e6b-9661-32bef5c668c7", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-12", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.380825275475741, + 44.288984939376896 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MAS DU TERME ", + "owner:ref:FR:SIREN": "418935680", + "email": "info@masduterme.com", + "phone": "0466245631", + "network": "MAS DU TERME ", + "ref": "29b639e2-1a77-11ee-be56-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.380825275475741, + 44.288984939376896 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MAS DU TERME ", + "owner:ref:FR:SIREN": "418935680", + "email": "info@masduterme.com", + "phone": "0466245631", + "network": "MAS DU TERME ", + "ref": "29b639e2-1a77-11ee-be56-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.380825275475741, + 44.288984939376896 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MAS DU TERME ", + "owner:ref:FR:SIREN": "418935680", + "email": "info@masduterme.com", + "phone": "0466245631", + "network": "MAS DU TERME ", + "ref": "29b639e2-1a77-11ee-be56-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9257621, + 43.5282927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref": "0eb30e38-cc9b-11ed-afa1-0242ac120002", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.987552127378094, + 43.442782142736384 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "213105695", + "email": "support@freshmile.com", + "phone": "03 68 78 14 35", + "network": "Mairie Vaudreuille ", + "ref": "84743104-0456-11ee-be56-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7471049, + 45.4137074 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RechargerMonAuto", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref": "6481841c9c07be00ded7039d", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.82, + 45.33 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "MONTA", + "owner:ref:FR:SIREN": "800654774", + "email": "amgh@monta.com", + "phone": "+33 662 64 36 90", + "network": "MONTA", + "ref": "9a1318f7-e55f-4811-8e66-a6dfd17a0121", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.136254786296182, + 43.54064693288783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SCP ACANTHE DRIMARACCI", + "owner:ref:FR:SIREN": "442767026", + "email": "xavier.drimaracci@wanadoo.fr", + "phone": "06 14 08 56 90", + "network": "SCP ACANTHE DRIMARACCI", + "ref": "4db960aa-06c5-11ee-be56-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:06", + "start_date": "2022-02-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8846990973662954, + 44.107170327068204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SELARL PHARMACIE CEVENOLE", + "owner:ref:FR:SIREN": "822405973", + "email": "pharma.cevenole@gmail.com", + "phone": "04 66 85 31 68", + "network": "SELARL PHARMACIE CEVENOLE", + "ref": "4e026926-06c5-11ee-be56-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:06", + "start_date": "2020-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.206137457654465, + 43.745680776707296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IFERRO", + "owner:ref:FR:SIREN": "843380148", + "email": "nicolas.sebert@iferro.fr", + "phone": "06 64 22 11 43", + "network": "IFERRO", + "ref": "39513d7c-0472-11ee-be56-0242ac120002", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:06", + "start_date": "2022-12-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08, + 43.68 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Sud Camargue", + "owner:ref:FR:SIREN": "802393371", + "email": "info@sudcamargue.fr", + "phone": "0689198608", + "network": "Borne de recharge Sud Camargue", + "ref": "f0563af9-5bb6-48ef-9982-2d8a8b00639c", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2023-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.647624, + 47.348542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.647624, + 47.348542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.647624, + 47.348542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.647624, + 47.348542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.647624, + 47.348542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.388127, + 47.771294 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.388127, + 47.771294 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.388127, + 47.771294 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.388127, + 47.771294 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.388127, + 47.771294 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.363111, + 48.106855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-24", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.363111, + 48.106855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-24", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.363111, + 48.106855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-24", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39149, + 43.56942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39149, + 43.56942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39149, + 43.56942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39149, + 43.56942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39149, + 43.56942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39149, + 43.56942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "GreenToWheel", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55014, + 43.48583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Allego", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656658, + 47.376567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40005, + 43.693127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48157, + 43.62854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green To Wheel", + "owner:ref:FR:SIREN": "842718512", + "email": "info.allego.france@allego.eu", + "phone": "01 40 70 06 17", + "network": "ALLEGO", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.2113974, + 44.9769783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ma borne auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "0361626161", + "network": "mon espace carrelage", + "ref": "2db6221b-bd48-4868-ad35-90071ac9de1a", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26, + 44.5 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Electromaps", + "owner:ref:FR:SIREN": "904273802", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "Domaine de Fompeyre", + "ref": "87831698952267f0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26, + 44.5 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Electromaps", + "owner:ref:FR:SIREN": "904273802", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "Domaine de Fompeyre", + "ref": "961a816c0a70acf2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26, + 44.5 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Electromaps", + "owner:ref:FR:SIREN": "904273802", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "Domaine de Fompeyre", + "ref": "74a79fa3d39ca269", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.26, + 44.5 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Electromaps", + "owner:ref:FR:SIREN": "904273802", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "Domaine de Fompeyre", + "ref": "7defedad9ee67c87", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.63, + 44.82 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Electromaps", + "owner:ref:FR:SIREN": "904273802", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "Carrefour Contact ", + "ref": "29ebe92a3906ba65", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.63, + 44.82 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Electromaps", + "owner:ref:FR:SIREN": "904273802", + "email": "support@electromaps.com", + "phone": "+33 1 76 46 09 15", + "network": "Carrefour Contact", + "ref": "4b09727283003ba2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96, + 43.54 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Le Grand Large", + "owner:ref:FR:SIREN": "429186844", + "email": "girardhotel@gmail.com", + "phone": "0616517174", + "network": "Station de recharge Le grand large", + "ref": "569d74e7-5e96-4bcd-a038-e2d5e855a9fe", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8647, + 45.51407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "AHACHJV7QW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87564, + 45.52464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "LRLCQP4NJM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8716, + 45.52442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "X1GL3ADTTI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87108, + 45.52345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "KPFDX4FTAA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87667, + 45.52714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "QM8YJBAKS4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87537, + 45.52576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "YSDEHHGQGH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8739, + 45.52472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "LTETLMWDSZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849718, + 45.501381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "VTBYUSAA5F", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.849718, + 45.501381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "VTBYUSAA5F", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86466, + 45.51317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "MBBTCSNJTK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87279, + 45.52143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "ENOYQDXIZO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86831, + 45.52124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "DLA46WPGDU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87108, + 45.52345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "KPFDX4FTAA", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86831, + 45.52124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "DLA46WPGDU", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87419, + 45.52793 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "ZDHWTXVFAL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87279, + 45.52143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "ENOYQDXIZO", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87419, + 45.52793 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "ZDHWTXVFAL", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.86466, + 45.51317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "MBBTCSNJTK", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8647, + 45.51407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "AHACHJV7QW", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8739, + 45.52472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "LTETLMWDSZ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87537, + 45.52576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "YSDEHHGQGH", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87667, + 45.52714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "QM8YJBAKS4", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.87564, + 45.52464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "LRLCQP4NJM", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.8716, + 45.52442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "X1GL3ADTTI", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83444, + 48.068958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "410546957", + "email": "philippe.voisin@virta.global", + "phone": "+33 (0)6 12912998", + "network": "Groupama supports et services ", + "socket:typee": "yes", + "socket:type2": "yes", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:01", + "start_date": "2022-02-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83444, + 48.068958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "410546956", + "email": "philippe.voisin@virta.global", + "phone": "+33 (0)6 12912997 ", + "network": "Groupama supports et services ", + "socket:typee": "yes", + "socket:type2": "yes", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:00", + "start_date": "2022-02-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83444, + 48.068958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "410546959", + "email": "philippe.voisin@virta.global", + "phone": "+33 (0)6 12913000", + "network": "Groupama supports et services ", + "socket:typee": "yes", + "socket:type2": "yes", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:03", + "start_date": "2022-02-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83444, + 48.068958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "410546958", + "email": "philippe.voisin@virta.global", + "phone": "+33 (0)6 12912999", + "network": "Groupama supports et services ", + "socket:typee": "yes", + "socket:type2": "yes", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:02", + "start_date": "2022-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83444, + 48.068958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "410546961", + "email": "philippe.voisin@virta.global", + "phone": "+33 (0)6 12913002", + "network": "Groupama supports et services ", + "socket:typee": "yes", + "socket:type2": "yes", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:05", + "start_date": "2022-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.83444, + 48.068958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "410546960", + "email": "philippe.voisin@virta.global", + "phone": "+33 (0)6 12913001", + "network": "Groupama supports et services ", + "socket:typee": "yes", + "socket:type2": "yes", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:04", + "start_date": "2022-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585043, + 47.149426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.398973, + 48.256221 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.460145, + 48.198666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.460145, + 48.198666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.467504, + 48.19942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.467504, + 48.19942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.398973, + 48.256221 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6292594023148577, + 48.097034066785476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "818110629", + "email": "exploitation@freshmile.com", + "network": "Freshmile", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6292594023148577, + 48.097034066785476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "818110629", + "email": "exploitation@freshmile.com", + "network": "Freshmile", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6292594023148577, + 48.097034066785476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "818110629", + "email": "exploitation@freshmile.com", + "network": "Freshmile", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-30", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2503986, + 43.4706838 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref": "6cf8b432-a92a-11ed-afa1-0242ac120002", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2503986, + 43.4706838 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref": "5a8bb060-a92a-11ed-afa1-0242ac120002", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.03, + 45.37 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ALLENERGIES", + "owner:ref:FR:SIREN": "912904109", + "email": "contact@allenergies.fr", + "network": "ALLENERGIES", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.03, + 45.37 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ALLENERGIES", + "owner:ref:FR:SIREN": "912904109", + "email": "contact@allenergies.fr", + "network": "ALLENERGIES", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.78772, + 45.587334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "TRUE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.787825, + 45.587026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "TRUE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.787973, + 45.58718 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Volta Charging", + "owner:ref:FR:SIREN": "898582432", + "email": "support.france@voltacharging.com", + "phone": "805080056", + "network": "Réseau de recharge Volta Charging", + "socket:type2": "yes", + "fee": "TRUE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.562731802998726, + 43.485743901157626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Electromaps", + "owner:ref:FR:SIREN": "410561666", + "email": "ismael@electromaps.com", + "phone": "34694495065", + "network": "Association des amis de Valmagne", + "ref": "50e103da-9bf1-11ed-a8fc-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.47906106710434, + 44.22049963493783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "798043659", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LES AMARINES", + "ref": "FRC2P002101", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.47906106710434, + 44.22049963493783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "798043659", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LES AMARINES", + "ref": "FRC2P002101", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.47906106710434, + 44.22049963493783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "798043659", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LES AMARINES", + "ref": "FRC2P002101", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.47906106710434, + 44.22049963493783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "798043659", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "CAMPING LES AMARINES", + "ref": "FRC2P002101", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9588304576710754, + 43.10066375282533 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": " LOY'S HOTEL", + "ref": "FRC2P004601", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7693176, + 45.0873099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "750986200", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SARL LE BOIS DE CORNAGE", + "ref": "FRC2P004801", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.7693176, + 45.0873099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "750986200", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SARL LE BOIS DE CORNAGE", + "ref": "FRC2P004801", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.219229, + 48.11093710000001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SARL 3M", + "ref": "FRC2P005501", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.219229, + 48.11093710000001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "881560676", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SARL 3M", + "ref": "FRC2P005501", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.9588304576710754, + 43.10066375282533 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "803965110", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": " LOY'S HOTEL", + "ref": "FRC2P004601", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.394, + 43.6328 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "AUTORECHARGE", + "owner:ref:FR:SIREN": "750528960", + "email": "contact@autorecharge.fr", + "phone": "0970755400", + "network": "Réseau de charge FASTHOTEL BLAGNAC", + "ref": "01FDJ49W5BNFBBW4HR43XBSXYM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93391388, + 43.81099781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "791245087", + "email": "support@virta.global", + "phone": "0186472720", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93391388, + 43.81099781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "791245087", + "email": "support@virta.global", + "phone": "0186472719", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93391388, + 43.81099781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "791245087", + "email": "support@virta.global", + "phone": "0186472721", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.93391388, + 43.81099781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "791245087", + "email": "support@virta.global", + "phone": "0186472722", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14394557, + 45.36995522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472727", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14394557, + 45.36995522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472726", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.14394557, + 45.36995522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472725", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.730036, + 48.101993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", + "start_date": "2023-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.730036, + 48.101993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "668502966", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00", + "start_date": "2023-01-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75, + 48.41 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVBOX", + "owner:ref:FR:SIREN": "413171711", + "email": "contact@evbox.com", + "network": "EVBOX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "MO-FR 08:00-12:00, MO-FR 14:00-18:00,TH 08:00-19:00", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75, + 48.41 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVBOX", + "owner:ref:FR:SIREN": "413171711", + "email": "contact@evbox.com", + "network": "EVBOX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "MO-FR 08:00-12:00, MO-FR 14:00-18:00,TH 08:00-19:00", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19743601177825, + 44.993004231809124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "DE LEPERVANCHE Céline", + "owner:ref:FR:SIREN": "529349599", + "email": "lesjardinsdelasud@orange.fr", + "network": "Les Jardins de la Sud", + "ref": "EVB-P2020517", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-20:00", + "start_date": "2021-07-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19743601177825, + 44.993004231809124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "DE LEPERVANCHE Céline", + "owner:ref:FR:SIREN": "529349599", + "email": "lesjardinsdelasud@orange.fr", + "network": "Les Jardins de la Sud", + "ref": "EVB-P2020517", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-20:00", + "start_date": "2021-07-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59, + 48.15 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVBOX", + "owner:ref:FR:SIREN": "433188018", + "email": "contact@evbox.com", + "phone": "02 23 25 08 86", + "network": "MBC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "MO-FR 08:00-12:00, MO-FR 14:00-18:00,TH 08:00-19:00", + "start_date": "2021-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.196098, + 43.266711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7212472222222224, + 48.1790417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7212472222222224, + 48.1790417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.196098, + 43.266711 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.538004, + 47.972518 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080117", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.538004, + 47.972518 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080117", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.538004, + 47.972518 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080117", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.538004, + 47.972518 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080117", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78049, + 45.197767 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080259", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78049, + 45.197767 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080259", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78049, + 45.197767 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080259", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.78049, + 45.197767 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080259", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080266", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080266", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080266", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080266", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080266", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080266", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080266", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080266", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.795923, + 43.547473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080266", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.036728, + 45.001584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080372", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059193", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.133269952383021, + 43.713083462685034 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059051", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059193", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.507334, + 44.8737 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042677", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.507334, + 44.8737 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042677", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.507334, + 44.8737 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042677", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.507334, + 44.8737 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042677", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059193", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059193", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059736", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059736", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059736", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059736", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059736", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059736", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059736", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.667119, + 44.85025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059964", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.667119, + 44.85025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059964", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098026, + 48.089376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059994", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098026, + 48.089376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059994", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098026, + 48.089376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059994", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.726344, + 48.107428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059786", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.726344, + 48.107428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059786", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630401, + 47.167146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059736", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776472, + 47.473807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059694", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059193", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.912803, + 43.60815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059558", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059193", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059193", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.449003, + 43.8755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059193", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776472, + 47.473807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059694", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059672", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059672", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059672", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059672", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059672", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059672", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059672", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.212535, + 45.613803 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059672", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776472, + 47.473807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059694", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776472, + 47.473807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059694", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776472, + 47.473807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059694", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776472, + 47.473807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059694", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.776472, + 47.473807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059694", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.431166, + 44.979033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078546", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31121, + 43.86441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078230", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.593513, + 46.715962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078238", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.593513, + 46.715962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078238", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.431166, + 44.979033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078546", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623604, + 45.278781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007502", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078569", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078569", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078569", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078569", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.431166, + 44.979033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078546", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078569", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50616, + 44.87366 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078551", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50616, + 44.87366 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078551", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50616, + 44.87366 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078551", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50616, + 44.87366 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078551", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.431166, + 44.979033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078546", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078569", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078569", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078569", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.80428, + 43.35267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078569", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39864, + 43.5245 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF001019", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098026, + 48.089376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059994", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39864, + 43.5245 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF001019", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436995, + 44.645735 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007451", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436995, + 44.645735 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007451", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436995, + 44.645735 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007451", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436995, + 44.645735 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007451", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436995, + 44.645735 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007451", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436995, + 44.645735 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007451", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436995, + 44.645735 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007451", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623604, + 45.278781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007502", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623604, + 45.278781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007502", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623604, + 45.278781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007502", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623604, + 45.278781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007502", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623604, + 45.278781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF007502", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098658, + 48.090032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069303", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098658, + 48.090032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069303", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098658, + 48.090032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069303", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.098658, + 48.090032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069303", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.368846, + 43.765692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "BAR RESTAURANT L’ARENA", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.368846, + 43.765692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "BAR RESTAURANT L’ARENA", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.218075, + 43.295789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "RESTAURANT L’ETAPE BEZIERS", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.368846, + 43.765692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "BAR RESTAURANT L’ARENA", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.368846, + 43.765692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "BAR RESTAURANT L’ARENA", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.218075, + 43.295789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "RESTAURANT L’ETAPE BEZIERS", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.218075, + 43.295789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "RESTAURANT L’ETAPE BEZIERS", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.218075, + 43.295789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "489638338", + "email": "supervision-ev.france@totalenergies.com", + "phone": "04 83 56 80 09", + "network": "RESTAURANT L’ETAPE BEZIERS", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.465746327260876, + 47.259069997714015 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref": "FRIPKPARC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.465746327260876, + 47.259069997714015 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "INTERPARKING ", + "ref": "FRIPKPARC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1288420730115881, + 44.93076715073785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "881834881", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "HOTEL AUX DUCS DE SIENNE", + "ref": "FRTCBP01313", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1288420730115881, + 44.93076715073785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "881834881", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "HOTEL AUX DUCS DE SIENNE", + "ref": "FRTCBP01313", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1288420730115881, + 44.93076715073785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "881834881", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "HOTEL AUX DUCS DE SIENNE", + "ref": "FRTCBP01313", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1288420730115881, + 44.93076715073785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "881834881", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "HOTEL AUX DUCS DE SIENNE", + "ref": "FRTCBP01313", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7257659312513107, + 48.07223223395324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "379041379", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET BONCHAMPS LAVAL", + "ref": "FRTCBP01005", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7257659312513107, + 48.07223223395324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "379041379", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET BONCHAMPS LAVAL", + "ref": "FRTCBP01005", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7257659312513107, + 48.07223223395324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "379041379", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET BONCHAMPS LAVAL", + "ref": "FRTCBP01005", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7257659312513107, + 48.07223223395324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "379041379", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "VIKINGS CASINO IBIS BUDGET BONCHAMPS LAVAL", + "ref": "FRTCBP01005", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref": "FRTCBP01400", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref": "FRTCBP01400", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref": "FRTCBP01400", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref": "FRTCBP01400", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref": "FRTCBP01400", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref": "FRTCBP01400", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref": "FRTCBP01400", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref": "FRTCBP01400", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref": "FRTCBP01400", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref": "FRTCBP01400", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref": "FRTCBP01400", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.714056171164, + 45.16083229416006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": " SAMSE - GRENOBLE", + "ref": "FRTCBP01400", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30", + "start_date": "2023-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68833, + 47.38909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "03568009", + "network": "INTERPARKING", + "ref": "FRIPKPPAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55032, + 44.86411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "692051113", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPCTV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36856, + 43.831882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "442414207", + "email": "supervision-ev.france@totalenergies.com", + "phone": "3 56 80 09", + "network": "INTERPARKING", + "ref": "FRIPKPNEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref": "FRTCBP01199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:30-19:30", + "start_date": "2022-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref": "FRTCBP01199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:30-19:30", + "start_date": "2022-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref": "FRTCBP01199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:30-19:30", + "start_date": "2022-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref": "FRTCBP01199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:30-19:30", + "start_date": "2022-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref": "FRTCBP01199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:30-19:30", + "start_date": "2022-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref": "FRTCBP01199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:30-19:30", + "start_date": "2022-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref": "FRTCBP01199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:30-19:30", + "start_date": "2022-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref": "FRTCBP01199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:30-19:30", + "start_date": "2022-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref": "FRTCBP01199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:30-19:30", + "start_date": "2022-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref": "FRTCBP01199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:30-19:30", + "start_date": "2022-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref": "FRTCBP01199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:30-19:30", + "start_date": "2022-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref": "FRTCBP01199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:30-19:30", + "start_date": "2022-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref": "FRTCBP01199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:30-19:30", + "start_date": "2022-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.690473273011127, + 45.148367685972154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "779463223", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "SAMSE - ERP COMBOIRE", + "ref": "FRTCBP01199", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 07:30-19:30", + "start_date": "2022-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.691778, + 44.88082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref": "FRTCBP00382", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-17:30", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.691778, + 44.88082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref": "FRTCBP00382", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-17:30", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.413516, + 43.710233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref": "FRTCBP00392", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-17:30", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.413516, + 43.710233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref": "FRTCBP00392", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-17:30", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5297513000000009, + 44.790757700000015 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HFOOD VILLENAVE", + "owner:ref:FR:SIREN": "881471791", + "email": "hippo.villenave@groupeflo.franchises.fr", + "network": "HIPPOPOTAMUS", + "ref": "EVB-P1941188", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5297513000000009, + 44.790757700000015 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HFOOD VILLENAVE", + "owner:ref:FR:SIREN": "881471791", + "email": "hippo.villenave@groupeflo.franchises.fr", + "network": "HIPPOPOTAMUS", + "ref": "EVB-P1941188", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5297513000000009, + 44.790757700000015 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HFOOD VILLENAVE", + "owner:ref:FR:SIREN": "881471791", + "email": "hippo.villenave@groupeflo.franchises.fr", + "network": "HIPPOPOTAMUS", + "ref": "EVB-P1941188", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5297513000000009, + 44.790757700000015 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HFOOD VILLENAVE", + "owner:ref:FR:SIREN": "881471791", + "email": "hippo.villenave@groupeflo.franchises.fr", + "network": "HIPPOPOTAMUS", + "ref": "EVB-P1941188", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.481858, + 43.298393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.481858, + 43.298393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVzen (SMEG Développement)", + "owner:ref:FR:SIREN": "200054807", + "email": "support@evzen.com", + "phone": "37792050403", + "network": "larecharge", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.428846, + 47.053393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "2F Production", + "owner:ref:FR:SIREN": "434085395", + "email": "benjamin@2fproduction.fr", + "phone": "03 84 87 64 40", + "network": "2F Production", + "ref": "67b1865c-14bb-11ec-82a8-0242ac130003", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00,Th 08:00-17:00", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6453929999999919, + 44.787885 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HFOOD PESSAC", + "owner:ref:FR:SIREN": "881047948", + "email": "hippo.pessac@groupeflo.franchises.fr", + "network": "HIPPOPOTAMUS", + "ref": "EVB-P1941191", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6453929999999919, + 44.787885 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HFOOD PESSAC", + "owner:ref:FR:SIREN": "881047948", + "email": "hippo.pessac@groupeflo.franchises.fr", + "network": "HIPPOPOTAMUS", + "ref": "EVB-P1941191", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6453929999999919, + 44.787885 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HFOOD PESSAC", + "owner:ref:FR:SIREN": "881047948", + "email": "hippo.pessac@groupeflo.franchises.fr", + "network": "HIPPOPOTAMUS", + "ref": "EVB-P1941191", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6453929999999919, + 44.787885 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HFOOD PESSAC", + "owner:ref:FR:SIREN": "881047948", + "email": "hippo.pessac@groupeflo.franchises.fr", + "network": "HIPPOPOTAMUS", + "ref": "EVB-P1941191", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.050015999999999, + 44.04692499999999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "754374751", + "network": "LUMI'IN", + "ref": "4d3a0cb6-c7db-11ed-afa1-0242ac120002", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref": "VRT_003416", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-17:00", + "start_date": "2021-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref": "VRT_003415", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-17:00", + "start_date": "2021-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref": "VRT_003415", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-17:00", + "start_date": "2021-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref": "VRT_003416", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-17:00", + "start_date": "2021-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref": "VRT_003417", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-17:00", + "start_date": "2021-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref": "VRT_003417", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-17:00", + "start_date": "2021-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref": "VRT_003418", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-17:00", + "start_date": "2021-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.654826, + 47.353958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HERVE THERMIQUE", + "owner:ref:FR:SIREN": "627220049", + "email": "bornederecharge@herve-thermique.com", + "phone": "247682000", + "network": "HERVE THERMIQUE IRVE", + "ref": "VRT_003418", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-17:00", + "start_date": "2021-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6196363424603306, + 47.11494422473446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "399780097", + "email": "support@virta.global", + "phone": "33186472690", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.583329, + 45.129631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HUNZB9FZ2G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.544305, + 45.173596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FDY5ILTA9I", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.587042, + 45.366279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PVTHLSH5KU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-03", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.08628, + 45.6679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VHAMCV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.08628, + 45.6679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VHAMCV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.076071, + 45.392746 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YHBVNIPGQG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.636785, + 45.455873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SNJTCRYXPQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5761418, + 44.9751199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NKBQJ8XDAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.99027, + 45.371901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EMAQAISOIN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4705944, + 45.6513139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "H6VUVLTMNF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.020297, + 45.432277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OYFFQZBYFP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992505, + 45.2996611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EDM5XZ78S5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.6337565, + 44.9155285 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SJCGRO59VL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.420295, + 45.39962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UYRULM0CVA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3891472, + 45.4907722 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LMO4CYWQ7Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.476072, + 45.385062 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "W3MF1HLOKZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.343487, + 45.0595127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GKE5UHODFR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56859, + 44.902538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GH4VMCSAZK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.671319, + 44.907212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JCC4MS2WXT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.587042, + 45.366279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PVTHLSH5KU", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410519, + 45.207744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HEQVLNPGAI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.412653, + 45.170807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IVIDV8DXOP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.27874, + 45.59071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RVKMQBXTEP", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9175, + 45.5281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CYFHJJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.01369, + 45.5054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AZPDRF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25441, + 45.759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ELRFKZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.91129, + 45.5053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MAMVPH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06444, + 45.09059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CMTC5TQSOW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.25441, + 45.759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ELRFKZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.439585, + 45.223157 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NAPOVOMVVA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.27874, + 45.59071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RVKMQBXTEP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.523008, + 45.543217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XHERGSSQS7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1867, + 45.73356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "X3OK9GZBRM", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1867, + 45.73356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "X3OK9GZBRM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-03", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34407, + 45.3407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QNXYMD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.9175, + 45.5281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CYFHJJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16562, + 45.3936 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GAXPWP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16562, + 45.3936 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GAXPWP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.6714725, + 45.5346056 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "S17UEJU18E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.887383, + 45.310644 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "Z6CIOZHDCI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.47326, + 45.674127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KBRRRM6IGB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12483, + 45.013227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AGUITTXLTF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.90136, + 45.4203 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XQSNJH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585147, + 45.536575 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FT0LK4QOQ6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84452, + 45.5589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CDANYF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00383028, + 45.5539001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QJDZRN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00383028, + 45.5539001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QJDZRN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.84452, + 45.5589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CDANYF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.607645, + 45.587038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PJQBERSPPR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.90136, + 45.4203 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XQSNJH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.362579, + 45.639335 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PUXYSIZM6Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85669, + 45.3394 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MNCBAF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.070816, + 45.094943 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NV2EOLFRDB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.3891472, + 45.4907722 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LMO4CYWQ7Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.420295, + 45.39962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UYRULM0CVA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90845, + 44.90066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DDGRGVA9AS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42419, + 45.443313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UWVSZLJ2WU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.75416, + 44.81704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YYKO4XRXGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.476562, + 45.485728 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KSTK4RC9AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.85669, + 45.3394 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MNCBAF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.598293, + 45.349774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GGVI7THWNN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.513731, + 45.428405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ICUCTV9PK5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.42419, + 45.443313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UWVSZLJ2WU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.248005, + 45.100607 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SOFCJVBSHW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.544305, + 45.173596 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FDY5ILTA9I", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.63757, + 45.2958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NWPV9SOVSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.63757, + 45.2958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NWPV9SOVSE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.362579, + 45.639335 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PUXYSIZM6Z", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.702787, + 44.970991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UOEXIUJAXI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.75416, + 44.81704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YYKO4XRXGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.476072, + 45.385062 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "W3MF1HLOKZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5698368, + 45.3500388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PJVJCPOJL2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.476562, + 45.485728 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KSTK4RC9AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.744811, + 44.960441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YA9IINLOWM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.070816, + 45.094943 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NV2EOLFRDB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.90845, + 44.90066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DDGRGVA9AS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588077, + 45.368226 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DBDELKZ02M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1450261, + 45.6165465 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IQXD4XD3T3", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.1450261, + 45.6165465 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IQXD4XD3T3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06444, + 45.09059 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CMTC5TQSOW", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.01369, + 45.5054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AZPDRF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06389, + 45.6309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JUZPMH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03424, + 45.0555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HGHRMSS0WP", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29093, + 45.4559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DNLKCM", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.29093, + 45.4559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DNLKCM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24054, + 45.59485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JLVMUSR7MM", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24054, + 45.59485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JLVMUSR7MM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.6381, + 44.7888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QP0YIL8IFI", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.54047, + 45.6267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YLGMS2ZOQX", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86115, + 44.8644 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TMF2EKI4VW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.54047, + 45.6267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YLGMS2ZOQX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31921, + 45.1552 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZW7N7BPXFX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59367, + 45.3633 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NDUJH0PIS3", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.6381, + 44.7888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QP0YIL8IFI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.86115, + 44.8644 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TMF2EKI4VW", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.59367, + 45.3633 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NDUJH0PIS3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12483, + 45.010306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YSINDSLO2T", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2770589, + 45.5937983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NPBXS3RZKU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.067759, + 45.09145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CXDGTIEHUK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31921, + 45.1552 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZW7N7BPXFX", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.155459, + 45.613229 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "G7PHWB2AIL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.067759, + 45.09145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CXDGTIEHUK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97673, + 45.3424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "O4FMROVXLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.97673, + 45.3424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "O4FMROVXLK", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.155459, + 45.613229 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "G7PHWB2AIL", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.812742, + 45.221615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FDSV6LVTDM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.812742, + 45.221615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FDSV6LVTDM", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16856, + 45.7503 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ERWQRN", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83469, + 45.473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "O85SVV2ACJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-28", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.83469, + 45.473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "O85SVV2ACJ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16856, + 45.7503 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ERWQRN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03424, + 45.0555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HGHRMSS0WP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.276082, + 45.58996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "USPQX0MDQ8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12483, + 45.010306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YSINDSLO2T", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76984, + 45.3191 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KHRDRG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26696, + 45.3291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NWEPJA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.33732, + 45.8525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GARMFX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.33732, + 45.8525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GARMFX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80409, + 45.3499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YCJKYF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22137, + 45.7563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ELMCAG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80409, + 45.3499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YCJKYF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19798, + 45.7681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZFXETG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.622193, + 44.826436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "B46FPVWMDM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26696, + 45.3291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NWEPJA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16758, + 45.6793 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NNKJNY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.881739, + 45.283485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LDJEOI8BK0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80239, + 45.3621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "REMDRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.76984, + 45.3191 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KHRDRG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.91129, + 45.5053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MAMVPH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.80239, + 45.3621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "REMDRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.06389, + 45.6309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JUZPMH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.319735, + 45.68719 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SMK51LMAB7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05698, + 45.3391 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YTBQSB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.16758, + 45.6793 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NNKJNY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.2770589, + 45.5937983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NPBXS3RZKU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26067, + 45.3918 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LCJTWZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.12667, + 45.6934 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FMSJHW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.276082, + 45.58996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "USPQX0MDQ8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.12667, + 45.6934 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FMSJHW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77447, + 45.3964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FELLSQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77447, + 45.3964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FELLSQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00648, + 45.4409 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HXTWYM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.26067, + 45.3918 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LCJTWZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.00648, + 45.4409 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HXTWYM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.05698, + 45.3391 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YTBQSB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.34407, + 45.3407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QNXYMD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.14015, + 45.4975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ACUAKZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.14015, + 45.4975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ACUAKZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22137, + 45.7563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ELMCAG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24647, + 45.7252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GRPQDU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24647, + 45.7252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GRPQDU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.19798, + 45.7681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZFXETG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.744811, + 44.960441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YA9IINLOWM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0308339, + 45.0527698 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VS6SOGHFTE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0308339, + 45.0527698 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VS6SOGHFTE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.737686, + 45.390089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JYPPQA0TJQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.815538, + 45.341601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WJJPG4Z7MN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.803005, + 45.226977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SNSM4WFCED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.856414, + 45.029217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YWRAKBDU72", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.829775, + 45.144034 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SAUDIUNPPA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.564157, + 45.328211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OYPH3MTL0S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.752153, + 45.433729 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PGI7OZI3HX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87483, + 45.11147 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZUQ6OZWIHO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55164676, + 45.07208481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "W1ACYG8P4K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5271472, + 45.0326389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UGZUCTHE6K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630496, + 45.170753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AEOHHR2DTT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.583329, + 45.129631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HUNZB9FZ2G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22312, + 45.54915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QRKRSXDLOB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.820972, + 45.241288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LGOYUQZSSS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.286122, + 45.55948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JLQWOQOKKG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.30582, + 45.557352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TJJ9KFP8UM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5698368, + 45.3500388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PJVJCPOJL2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8611931, + 45.21769 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RDH1HYPVXW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8611931, + 45.21769 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RDH1HYPVXW", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.21895, + 45.621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "X12ABRPVCW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36198, + 45.3908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IBY7XIF9QN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.887383, + 45.310644 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "Z6CIOZHDCI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.343487, + 45.0595127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GKE5UHODFR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56859, + 44.902538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GH4VMCSAZK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.671319, + 44.907212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JCC4MS2WXT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24093, + 45.258479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BYXYO6YXTR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.67848, + 44.757898 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FL632BDMHN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.36198, + 45.3908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IBY7XIF9QN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404874, + 45.81437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YXQDXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.21895, + 45.621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "X12ABRPVCW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.404874, + 45.81437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YXQDXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77067, + 45.4387 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XZCHPX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.77067, + 45.4387 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XZCHPX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.829775, + 45.144034 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SAUDIUNPPA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.564157, + 45.328211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OYPH3MTL0S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.01665, + 45.6128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OE2C6C8Q1R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.01665, + 45.6128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OE2C6C8Q1R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.47326, + 45.674127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KBRRRM6IGB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.585147, + 45.536575 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FT0LK4QOQ6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.588077, + 45.368226 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DBDELKZ02M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.99027, + 45.371901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EMAQAISOIN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.319735, + 45.68719 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SMK51LMAB7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.992505, + 45.2996611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EDM5XZ78S5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4705944, + 45.6513139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "H6VUVLTMNF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.020297, + 45.432277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OYFFQZBYFP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.607645, + 45.587038 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PJQBERSPPR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.439585, + 45.223157 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NAPOVOMVVA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.412653, + 45.170807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IVIDV8DXOP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.598293, + 45.349774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GGVI7THWNN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.6714725, + 45.5346056 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "S17UEJU18E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.410519, + 45.207744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HEQVLNPGAI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.523008, + 45.543217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XHERGSSQS7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.636785, + 45.455873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SNJTCRYXPQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.076071, + 45.392746 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YHBVNIPGQG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.6337565, + 44.9155285 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SJCGRO59VL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4828056, + 45.2955083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DCNJKNE4HQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8679, + 45.270236 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JB7O75BBKV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.932438, + 45.252998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YPOTF1HQQB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.888787, + 45.238327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UFKDSKNUHA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.964939, + 45.271113 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YLM0HHUMDL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.775626, + 45.020777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KZDPHHY9QV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.902, + 45.0906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XC9VDLJNF4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.538613, + 45.279523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YALRDZFAG8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.527525, + 45.1274889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TL3NL9QBRT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.820972, + 45.241288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LGOYUQZSSS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03748, + 45.127339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PK3YEM8DDW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.398483, + 45.5444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ISLSCODQRA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41652, + 45.581692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GBOCPUKOTD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.218808, + 45.174304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "A8IMSEI4DH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.326985, + 45.117174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MD0GNWWEBH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.778528, + 44.95151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "T2SVHB67IN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.503642, + 45.350166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QSGWZRZ34C", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.803005, + 45.226977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SNSM4WFCED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.737686, + 45.390089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JYPPQA0TJQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4431, + 45.562975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZX5LMPLOCQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.752153, + 45.433729 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PGI7OZI3HX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.12483, + 45.013227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AGUITTXLTF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.702787, + 44.970991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UOEXIUJAXI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.248005, + 45.100607 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SOFCJVBSHW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.513731, + 45.428405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ICUCTV9PK5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.87483, + 45.11147 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZUQ6OZWIHO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.853393, + 45.415628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "C4KRE3VPLQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.815538, + 45.341601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WJJPG4Z7MN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4431, + 45.562975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZX5LMPLOCQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.856414, + 45.029217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YWRAKBDU72", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.504107, + 45.609835 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NZGBPIAKU2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976983, + 44.8587405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BJ9TZMED5E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.947731, + 44.817169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UJZXTSOGHT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.30582, + 45.557352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TJJ9KFP8UM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.22312, + 45.54915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QRKRSXDLOB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5271472, + 45.0326389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UGZUCTHE6K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.286122, + 45.55948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JLQWOQOKKG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.048525, + 45.376141 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OMMZ7I0YRZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.077811, + 45.056067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KAH5MCU0PR", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.5761418, + 44.9751199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NKBQJ8XDAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.888787, + 45.238327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UFKDSKNUHA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.503642, + 45.350166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QSGWZRZ34C", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.218808, + 45.174304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "A8IMSEI4DH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.03748, + 45.127339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PK3YEM8DDW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.778528, + 44.95151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "T2SVHB67IN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.964939, + 45.271113 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YLM0HHUMDL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.8679, + 45.270236 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JB7O75BBKV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.326985, + 45.117174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MD0GNWWEBH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06886, + 45.08731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BR5VEJ4LUC", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.902, + 45.0906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XC9VDLJNF4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06886, + 45.08731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BR5VEJ4LUC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.18387, + 45.6147 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SKUWSYWI8M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.18387, + 45.6147 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SKUWSYWI8M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79927, + 45.37 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PVQGYC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.79927, + 45.37 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PVQGYC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11627, + 44.98706 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OJBNYNLLXC", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.11627, + 44.98706 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OJBNYNLLXC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.630496, + 45.170753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AEOHHR2DTT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55164676, + 45.07208481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "W1ACYG8P4K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.077811, + 45.056067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KAH5MCU0PR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.853393, + 45.415628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "C4KRE3VPLQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.41652, + 45.581692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GBOCPUKOTD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.527525, + 45.1274889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TL3NL9QBRT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.504107, + 45.609835 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NZGBPIAKU2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.398483, + 45.5444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ISLSCODQRA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.976983, + 44.8587405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BJ9TZMED5E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.947731, + 44.817169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UJZXTSOGHT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.048525, + 45.376141 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OMMZ7I0YRZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.622193, + 44.826436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "B46FPVWMDM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.881739, + 45.283485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LDJEOI8BK0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.24093, + 45.258479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BYXYO6YXTR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.67848, + 44.757898 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FL632BDMHN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.4828056, + 45.2955083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DCNJKNE4HQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.775626, + 45.020777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KZDPHHY9QV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.932438, + 45.252998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YPOTF1HQQB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.538613, + 45.279523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YALRDZFAG8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.932443, + 43.130591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NGQP8ETIBP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31861937, + 45.15396959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YZ10HKDMQ8", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23269785, + 45.62297234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NLEDVFEXF7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.23269785, + 45.62297234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NLEDVFEXF7", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0676798, + 45.0914135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "G0F2IUTCE8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.0676798, + 45.0914135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "G0F2IUTCE8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.31861937, + 45.15396959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YZ10HKDMQ8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.27552, + 45.588987 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FYDLG22UGH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.278273, + 45.584676 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZI3F7Q3G9Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.278273, + 45.584676 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZI3F7Q3G9Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.27552, + 45.588987 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FYDLG22UGH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1298, + 43.1062 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NX8FKWS8GN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.932443, + 43.130591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NGQP8ETIBP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.1298, + 43.1062 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NX8FKWS8GN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.896588, + 46.102351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GW5Q7UNATT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.896588, + 46.102351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GW5Q7UNATT", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1729627219668368, + 48.34361336413087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Hôtel Ibis Style Fougères", + "ref": "FRG10P35021A", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1729627219668368, + 48.34361336413087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Hôtel Ibis Style Fougères", + "ref": "FRG10P35021A", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1729627219668368, + 48.34361336413087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Hôtel Ibis Style Fougères", + "ref": "FRG10P35021A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1729627219668368, + 48.34361336413087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Hôtel Ibis Style Fougères", + "ref": "FRG10P35021A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578157, + 45.38413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "King Jouet Voiron", + "ref": "FRG10P38563A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578157, + 45.38413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "King Jouet Voiron", + "ref": "FRG10P38563A", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578157, + 45.38413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "King Jouet Voiron", + "ref": "FRG10P38563A", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578157, + 45.38413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "King Jouet Voiron", + "ref": "FRG10P38563A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578157, + 45.38413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "King Jouet Voiron", + "ref": "FRG10P38563A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.793617, + 44.024338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P30150*SAU*PLACE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.793617, + 44.024338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P30150*SAU*PLACE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.764347, + 43.958037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P30133*LAS*ELEPHANT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.764347, + 43.958037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P30133*LAS*ELEPHANT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.768425, + 43.958425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P30133*LAS*GAULLE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.768425, + 43.958425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P30133*LAS*GAULLE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.752516, + 43.962289 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P30133*LAS*PRIADES", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.752516, + 43.962289 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P30133*LAS*PRIADES", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.597037, + 44.86645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P33110*BCT*LAF0NT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.597037, + 44.86645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P33110*BCT*LAF0NT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.597037, + 44.86645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P33110*BCT*LAF0NT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.597037, + 44.86645 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P33110*BCT*LAF0NT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-11-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24865, + 44.871477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*PBP*48200*L0ZERE", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24865, + 44.871477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*PBP*48200*L0ZERE", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24865, + 44.871477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*PBP*48200*L0ZERE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18917, + 43.5408 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Fontenilles", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2259, + 43.533 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "UXRGDF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2259, + 43.533 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "UXRGDF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18917, + 43.5408 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Fontenilles", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35641, + 43.7845 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "VVKNSB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61735, + 43.5075 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "CHTQTA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61735, + 43.5075 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "CHTQTA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55905, + 43.5178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "WQFNLH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.658565, + 42.9708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "KYHUKN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.658565, + 42.9708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "KYHUKN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.55905, + 43.5178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "WQFNLH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53181, + 43.3139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "UBBRPV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74656, + 43.0484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "GSXHEQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74656, + 43.0484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "GSXHEQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35633, + 43.424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "BSZNXE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35633, + 43.424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "BSZNXE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53181, + 43.3139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "UBBRPV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64527, + 42.9147 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "CFCFDE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.64527, + 42.9147 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "CFCFDE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08348, + 43.7146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "NRYGLD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38989, + 43.8399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "UKUUQS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.08348, + 43.7146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "NRYGLD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38989, + 43.8399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "UKUUQS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53437, + 43.5306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Labegeautan", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32192, + 43.5146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "WCKYQX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32192, + 43.5146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "WCKYQX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65462, + 43.5613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "HKTRMU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53124, + 43.6786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "HKTWHF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38962, + 43.4141 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "EJLYVF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38962, + 43.4141 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "EJLYVF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16776, + 43.302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SFQDKY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.16776, + 43.302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SFQDKY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.587374, + 43.0393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "BDSPXY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.587374, + 43.0393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "BDSPXY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39608, + 43.4528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "VDUUDE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39608, + 43.4528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "VDUUDE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53437, + 43.5306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Labegeautan", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2355, + 43.5993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "HWUTQJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.2355, + 43.5993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "HWUTQJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27251, + 43.5777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "PSBNGZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27251, + 43.5777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "PSBNGZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29456, + 3.7682 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "QRKBCC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29456, + 3.7682 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "QRKBCC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11114, + 43.3222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "NPGJDV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11114, + 43.3222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "NPGJDV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6839, + 43.3901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "AMFDJR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6839, + 43.3901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "AMFDJR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.35641, + 43.7845 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "VVKNSB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86942, + 43.1077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "JGVGCS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53124, + 43.6786 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "HKTWHF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49132, + 43.5318 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "TXSCTU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56636, + 43.5063 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "GLTPXT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.56636, + 43.5063 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "GLTPXT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.86942, + 43.1077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "JGVGCS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62402, + 43.0342 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "FVTRXZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-08-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62402, + 43.0342 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "FVTRXZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-08-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591993, + 42.7894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "PBFCNZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591993, + 42.7894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "PBFCNZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78432, + 43.3666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "EFDJJV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78432, + 43.3666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "EFDJJV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49132, + 43.5318 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "TXSCTU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47748, + 43.3508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "ATMKAN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49984, + 43.5146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "GHPTEX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47748, + 43.3508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "ATMKAN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.882365, + 43.2166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SNAMKZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.882365, + 43.2166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SNAMKZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38218, + 43.3521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Auribcime", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38218, + 43.3521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Auribcime", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8006, + 43.0147 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "aspect", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.8006, + 43.0147 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "aspect", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.667604, + 42.9738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "AQCTJP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.667604, + 42.9738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "AQCTJP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02102, + 43.7379 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "XNZPHC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-03-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.60842, + 43.8004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "TSMEXT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.60842, + 43.8004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "TSMEXT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52673, + 43.1917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "JSYUTY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.52673, + 43.1917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "JSYUTY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.49984, + 43.5146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "GHPTEX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22489, + 43.2959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "UWQHJA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22489, + 43.2959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "UWQHJA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75551, + 43.5312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "VZFZTP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.75551, + 43.5312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "VZFZTP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.25396, + 43.3436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "QJMSEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-07-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.25396, + 43.3436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "QJMSEM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-07-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63377, + 43.2839 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "TSZVVB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63377, + 43.2839 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "TSZVVB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.05059, + 43.7286 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "cadours", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.05059, + 43.7286 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "cadours", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63193, + 43.7791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "ZJFBFZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.63193, + 43.7791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "ZJFBFZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.19896, + 43.7052 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "XUVKYK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.19896, + 43.7052 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "XUVKYK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.97132, + 43.1764 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Boussensecol", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.97132, + 43.1764 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Boussensecol", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.648923, + 43.2898 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "GUXVRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.648923, + 43.2898 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "GUXVRY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40547, + 43.7795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "AJUWUG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-03-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.40547, + 43.7795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "AJUWUG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-03-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.02102, + 43.7379 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "XNZPHC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-03-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65462, + 43.5613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "HKTRMU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18005, + 43.7425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "PWJRPS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21608, + 43.4666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "ZJVBJM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31795, + 43.3307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "EBSQJH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17848, + 43.5144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "DFNPAD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17848, + 43.5144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "DFNPAD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.728788, + 43.1101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "VTFJDY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.728788, + 43.1101 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "VTFJDY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2016-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13566, + 43.2799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "JJBMJP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.13566, + 43.2799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "JJBMJP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61002, + 43.5423 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "UNUUZP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61002, + 43.5423 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "UNUUZP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.21608, + 43.4666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "ZJVBJM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14543, + 43.5284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "XPUVZU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03756, + 43.3429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "HBDQVG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14543, + 43.5284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "XPUVZU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.52423, + 43.6649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SPHLUS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.52423, + 43.6649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SPHLUS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.36462, + 43.5001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "HCREGP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.36462, + 43.5001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "HCREGP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1961, + 43.257 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "ZFDBZE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.1961, + 43.257 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "ZFDBZE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11693, + 43.4119 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "YURPYW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11693, + 43.4119 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "YURPYW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47782, + 43.5484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "BJUMFP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31795, + 43.3307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "EBSQJH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14609, + 43.4918 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "MYVFWU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.14609, + 43.4918 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "MYVFWU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7886, + 42.9847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SJTZZY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18005, + 43.7425 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "PWJRPS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50365, + 43.8649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "UDMJKD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.50365, + 43.8649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "UDMJKD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71702, + 43.3975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "KWFNTQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71702, + 43.3975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "KWFNTQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4444, + 43.5259 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "vieilletoul", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4444, + 43.5259 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "vieilletoul", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66252, + 43.6578 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "WNMVMD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.66252, + 43.6578 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "WNMVMD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4464, + 43.4331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "BSNARD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.4464, + 43.4331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "BSNARD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70622, + 43.0962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SDKRWE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.70622, + 43.0962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SDKRWE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58466, + 43.0291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "XEBJZZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58466, + 43.0291 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "XEBJZZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95573, + 43.0164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "DBWUFY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.95573, + 43.0164 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "DBWUFY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67391, + 43.5116 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "UCRLEP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.67391, + 43.5116 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "UCRLEP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31135, + 43.4989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Seyssesegl", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7886, + 42.9847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SJTZZY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.47782, + 43.5484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "BJUMFP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.31135, + 43.4989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Seyssesegl", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.03756, + 43.3429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "HBDQVG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83871, + 43.3809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "EVEHSU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74389, + 43.0935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "NXQUHM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.74389, + 43.0935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "NXQUHM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29722, + 43.723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Mervillealou", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29722, + 43.723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Mervillealou", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37474, + 43.2247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Massabrac", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37474, + 43.2247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Massabrac", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0118, + 43.2001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "HQDVPR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0118, + 43.2001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "HQDVPR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24848, + 43.3581 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "JMECMY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.24848, + 43.3581 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "JMECMY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22182, + 43.4301 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "VXNBPK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22946, + 43.6919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "WTLBXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22182, + 43.4301 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "VXNBPK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06589, + 43.2811 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "TWTEDH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.06589, + 43.2811 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "TWTEDH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29477, + 43.398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Lefaugafete", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29477, + 43.398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "Lefaugafete", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.26232, + 43.3967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "lavernosemair", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.26232, + 43.3967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "lavernosemair", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11904, + 43.2552 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "VUSGRP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30224, + 43.5628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SCPPWG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-08-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.11904, + 43.2552 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "VUSGRP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22946, + 43.6919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "WTLBXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.83871, + 43.3809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "EVEHSU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59226, + 43.717 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "FHPGXB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62286, + 43.3577 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "WUKNSS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38719, + 43.4798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "GTTUTH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59226, + 43.717 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "FHPGXB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38719, + 43.4798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "GTTUTH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39033, + 43.5069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "BMJCXM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-08-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39033, + 43.5069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "BMJCXM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-08-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17716, + 43.3211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "YKUDXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46728, + 43.7054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SSDAJP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46728, + 43.7054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SSDAJP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27554, + 43.3581 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "TDZVPU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.27554, + 43.3581 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "TDZVPU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.17716, + 43.3211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "YKUDXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30224, + 43.5628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "SCPPWG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-08-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57109, + 43.0849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "EFRPWM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.57109, + 43.0849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "EFRPWM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53011, + 43.7671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "CLHEGY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-09-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.53011, + 43.7671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "CLHEGY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-09-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23037, + 43.2099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "montesquespla", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.23037, + 43.2099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "montesquespla", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62286, + 43.3577 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "WUKNSS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48099, + 43.7151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "MBUWWA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.48099, + 43.7151 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "200075240", + "email": "web@freshmile.com", + "phone": "33369246732", + "network": "Freshmile", + "ref": "MBUWWA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.183078, + 43.985279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE431500", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.245204, + 43.334659 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE401800", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-14", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.623271, + 45.276249 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE412500", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-03", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.631368, + 47.166119 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE101300", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-12-07", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.70479, + 46.850652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE448900", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.229353, + 44.286522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE414000", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-25", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.16809, + 47.803507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE409800", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-11", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.7669235, + 46.134233 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE402500", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-03", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.703626, + 44.004071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE405300", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-07", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.700191, + 43.999633 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE101200", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-07-25", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5866803, + 46.378027 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE438600", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-09", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.245628, + 43.337933 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE401900", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-15", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.983572, + 43.65096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE435900", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.720788, + 48.263874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE433500", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-07", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.76, + 45.16 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "FRESHMILE", + "owner:ref:FR:SIREN": "404675878", + "email": "exploitation@freshmile.com", + "phone": "03 68 78 14 35", + "network": "SATORIZ GRENOBLE ROCADE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.56, + 46.74 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "le Relais", + "owner:ref:FR:SIREN": "810219006", + "email": "contact@lerelaisdelaperle.fr", + "phone": "0384259552", + "network": "le relais", + "ref": "87e0fb5a-e591-11eb-ba80-0242ac130004", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5108443014957409, + 44.80124139894823 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "270 AGENCY", + "owner:ref:FR:SIREN": "538041732", + "email": "contact@270agency.com", + "phone": "0547745020", + "network": "270 AGENCY", + "ref": "Non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 9:00-18:00, Tu 9:00-18:00, We 9:00-18:00, Th 9:00-18:00, Fr 9:00-18:00", + "start_date": "2021-11-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5108443014957409, + 44.80124139894823 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "270 AGENCY", + "owner:ref:FR:SIREN": "538041732", + "email": "contact@270agency.com", + "phone": "0547745020", + "network": "270 AGENCY", + "ref": "Non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 9:00-18:00, Tu 9:00-18:00, We 9:00-18:00, Th 9:00-18:00, Fr 9:00-18:00", + "start_date": "2021-11-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.238577, + 44.517525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "accueil-brico.langon@scaso.fr", + "phone": "0557980830", + "network": "BBJ Mazères", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.254093, + 44.54156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "franck.pothin@scaso.fr", + "phone": "0557980830", + "network": "Centre Auto Leclerc Langon", + "ref": "Non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "1", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2021-07-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.254093, + 44.54156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LANGON DISTRIBUTION", + "owner:ref:FR:SIREN": "390923175", + "email": "franck.pothin@scaso.fr", + "phone": "0557980830", + "network": "Centre Auto Leclerc Langon", + "ref": "Non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "1", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00", + "start_date": "2021-07-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.918739, + 44.618314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAS Miodis", + "owner:ref:FR:SIREN": "810800268", + "email": "lucas.ribelles@scaso.fr", + "phone": "0556827837", + "network": "Leclerc Mios", + "ref": "Non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "1", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.918739, + 44.618314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SAS Miodis", + "owner:ref:FR:SIREN": "810800268", + "email": "lucas.ribelles@scaso.fr", + "phone": "0556827837", + "network": "Leclerc Mios", + "ref": "Non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "1", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-19:00", + "start_date": "2022-10-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-19:00", + "start_date": "2022-10-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-19:00", + "start_date": "2022-10-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-19:00", + "start_date": "2022-10-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-19:00", + "start_date": "2022-10-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-19:00", + "start_date": "2022-10-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref": "Non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-19:00", + "start_date": "2022-10-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-19:00", + "start_date": "2022-10-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-19:00", + "start_date": "2022-10-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-19:00", + "start_date": "2022-10-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref": "Non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-19:00", + "start_date": "2022-10-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67021924, + 44.87476787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "owner:ref:FR:SIREN": "383872892", + "email": "cmoya@girondins.com", + "phone": "0630861420", + "network": "SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "FALSE", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-19:00", + "start_date": "2022-10-28", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7548354193520386, + 48.125067030488154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NW IECharge", + "owner:ref:FR:SIREN": "898270251", + "email": "contact@nw-joules.fr", + "phone": "184605641", + "network": "IECharge France", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7548354193520386, + 48.125067030488154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NW IECharge", + "owner:ref:FR:SIREN": "898270251", + "email": "contact@nw-joules.fr", + "phone": "184605641", + "network": "IECharge France", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7548354193520386, + 48.125067030488154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NW IECharge", + "owner:ref:FR:SIREN": "898270251", + "email": "contact@nw-joules.fr", + "phone": "184605641", + "network": "IECharge France", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7548354193520386, + 48.125067030488154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NW IECharge", + "owner:ref:FR:SIREN": "898270251", + "email": "contact@nw-joules.fr", + "phone": "184605641", + "network": "IECharge France", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7548354193520386, + 48.125067030488154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NW IECharge", + "owner:ref:FR:SIREN": "898270251", + "email": "contact@nw-joules.fr", + "phone": "184605641", + "network": "IECharge France", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0903127000000001, + 44.868051799999996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "BOIS CHERI - HOTEL DU PORGE", + "owner:ref:FR:SIREN": "850830043", + "email": "contact@hotel-du-porge.com", + "network": "HOTEL DU PORGE", + "ref": "EVB-P21011574", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-20:00", + "start_date": "2022-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0903127000000001, + 44.868051799999996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "BOIS CHERI - HOTEL DU PORGE", + "owner:ref:FR:SIREN": "850830043", + "email": "contact@hotel-du-porge.com", + "network": "HOTEL DU PORGE", + "ref": "EVB-P21011574", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-20:00", + "start_date": "2022-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.84, + 43.57 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Diffusion", + "owner:ref:FR:SIREN": "788660116", + "email": "b.magnier34@gmail.com", + "phone": "0625311024", + "network": "Borne de recharge Green Diffusion", + "ref": "269ecab2-053a-4ddc-8014-4fe697de6575", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2023-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.84, + 43.57 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SCI NOKI", + "owner:ref:FR:SIREN": "824263024", + "email": "b.magnier34@gmail.com", + "phone": "0625311024", + "network": "Borne de recharge SCI noki", + "ref": "6decf4b8-3df0-462d-a1d6-efd5f0205801", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-05-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.53, + 43.49 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARRIERE DISTRIBUTION", + "owner:ref:FR:SIREN": "398695585", + "email": "staff@charriere-distribution.com", + "phone": " 04 42 29 84 29", + "network": "CHARRIERE DISTRIBUTION Meyrueil", + "ref": "20ea95e8-34da-49b6-8b26-6d3014bcdf77", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2023-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.43, + 43.39 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "H alu concept", + "owner:ref:FR:SIREN": "907465017", + "email": "h.aluconcept@gmail.com", + "phone": "0762989875", + "network": "H alu concept", + "ref": "88d84b13-12ae-459d-be60-d0c8be6977f3", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-07-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4929901, + 44.840481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ma Borne Auto", + "owner:ref:FR:SIREN": "880217922", + "email": "e.barre@maborneauto.com", + "phone": "361626161", + "network": "HOTEL B&B", + "ref": "a4d3dd36-f16b-4b9c-98ed-f94a4167ee0d", + "socket:type2": "yes", + "fee": "1", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48177649999999295, + 44.84385340000002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HAPOGYS", + "owner:ref:FR:SIREN": "781880372", + "email": "eses.bire@hapogys.fr", + "network": "HAPOGYS", + "ref": "EVB-P2011356", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 9:00-17:00", + "start_date": "2022-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48177649999999295, + 44.84385340000002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HAPOGYS", + "owner:ref:FR:SIREN": "781880372", + "email": "eses.bire@hapogys.fr", + "network": "HAPOGYS", + "ref": "EVB-P2011356", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 9:00-17:00", + "start_date": "2022-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.63, + 44.21 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CHARRIERE DISTRIBUTION", + "owner:ref:FR:SIREN": "398695585", + "email": "staff@charriere-distribution.com", + "phone": "0466896051", + "network": "CHARRIERE DISTRIBUTION", + "ref": "56c3a7fd-0f7d-4345-951a-e5641db4a5f0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.849093334457226, + 43.5616514180901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "AUTORECHARGE SAS", + "owner:ref:FR:SIREN": "828619346", + "email": "m.drif@autorecharge.fr", + "phone": "0970755400", + "network": "AUTORECHARGE SAS", + "ref": "559912", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17653676640929428, + 44.42495892041201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LE MOULIN DE LABOIRIE", + "owner:ref:FR:SIREN": "749823597", + "email": "info@moulindelaboirie.fr", + "network": "MOULIN DE LABOIRIE", + "ref": "EVB-DC440500001B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-20:00", + "start_date": "2022-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17653676640929428, + 44.42495892041201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LE MOULIN DE LABOIRIE", + "owner:ref:FR:SIREN": "749823597", + "email": "info@moulindelaboirie.fr", + "network": "MOULIN DE LABOIRIE", + "ref": "EVB-DC440500001", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-20:00", + "start_date": "2022-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.17653676640929428, + 44.42495892041201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LE MOULIN DE LABOIRIE", + "owner:ref:FR:SIREN": "749823597", + "email": "info@moulindelaboirie.fr", + "network": "MOULIN DE LABOIRIE", + "ref": "EVB-P21211892", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Su 8:00-20:00", + "start_date": "2022-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.407609123225763, + 43.41959147913006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "379629447", + "email": "oscar@electromaps.com", + "phone": "34 931.574.967", + "network": "Hotel saint alban", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "socket:type2": "yes", + "fee": "TRUE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.537796, + 43.5282203 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "306300344", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "HYUNDAI", + "ref": "FRFR1ETHZL1", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.073833, + 49.510417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123139, + 49.503611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123139, + 49.503611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.073833, + 49.510417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123139, + 49.503611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123139, + 49.503611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123139, + 49.503611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.123139, + 49.503611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.936256705171751, + 43.63943483453543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IXINA Le Cres", + "owner:ref:FR:SIREN": "479159261", + "email": "montpellierlescres@ixina.com", + "phone": "04 99 77 01 24", + "network": "IXINA Le cres", + "ref": "598bad4e-2dd4-4b70-be44-6ba9574186d4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2798983323309523, + 43.33412185286013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ixina Villeneuve-lès-Béziers", + "owner:ref:FR:SIREN": "479159261", + "email": "beziers@ixina.com", + "phone": "0467351021", + "network": "ixina Villeneuve-lès-Béziers", + "ref": "aa6b4650-2d0b-4828-9b77-802073fa2ae9", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8515752990825822, + 43.57430316069223 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IXINA Saint Jean de Védas", + "owner:ref:FR:SIREN": "479159261", + "email": "montpellierstjean@ixina.com", + "phone": "0434080706", + "network": "IXINA Saint Jean de Vedas", + "ref": "923eba3c-7e81-496b-8a4c-79857a9566f8", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.82319, + 48.2502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Langouet", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.67833, + 48.1044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Citedia Rennes", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.63448, + 48.1093 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Station Mobile", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5008902, + 44.7920565 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "510125842", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "LECLERC", + "ref": "FROTHEOTHR228", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.495418, + 46.675892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LE BISTRO D'HUGO", + "owner:ref:FR:SIREN": "828451815", + "email": "contact@lebistrodhugo.com", + "phone": "0384477147", + "network": "LE BISTRO D'HUGO", + "ref": "01FNDTK7FW5XH86EAJYX4N0JGH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Tu-Fr 12:00-14:00,Su 12:00-15:00", + "start_date": "2021-09-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GAZ DE BORDEAUX", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "network": "GAZ DE BORDEAUX", + "ref": "EVB-P2011075", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Thu 8:15-17:30", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GAZ DE BORDEAUX", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "network": "GAZ DE BORDEAUX", + "ref": "EVB-P2011075", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Thu 8:15-17:30", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GAZ DE BORDEAUX", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "network": "GAZ DE BORDEAUX", + "ref": "EVB-P2011075", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Thu 8:15-17:30", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GAZ DE BORDEAUX", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "network": "GAZ DE BORDEAUX", + "ref": "EVB-P2011075", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Thu 8:15-17:30", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GAZ DE BORDEAUX", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "network": "GAZ DE BORDEAUX", + "ref": "EVB-P2011075", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Thu 8:15-17:30", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GAZ DE BORDEAUX", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "network": "GAZ DE BORDEAUX", + "ref": "EVB-P2011075", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Thu 8:15-17:30", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GAZ DE BORDEAUX", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "network": "GAZ DE BORDEAUX", + "ref": "EVB-P2011075", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Thu 8:15-17:30", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GAZ DE BORDEAUX", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "network": "GAZ DE BORDEAUX", + "ref": "EVB-P2011075", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Thu 8:15-17:30", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GAZ DE BORDEAUX", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "network": "GAZ DE BORDEAUX", + "ref": "EVB-P2011075", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Thu 8:15-17:30", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5745869999999909, + 44.866026700000006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GAZ DE BORDEAUX", + "owner:ref:FR:SIREN": "502941479", + "email": "clients@gazdebordeaux.fr", + "network": "GAZ DE BORDEAUX", + "ref": "EVB-P2011075", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Thu 8:15-17:30", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3719483, + 43.483111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVBOX", + "owner:ref:FR:SIREN": "479244576", + "email": "frsupport@ev-box.com", + "network": "STUDIO30", + "ref": "NLEVBE3WLPUMM4CDNBGWMIRQ3PKPE6JU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-fr 8:00-12:00,13:00-17:00", + "start_date": "2021-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.584976, + 47.868935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*97*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.584976, + 47.868935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*97*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 52.3406297, + 4.858677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVBOX", + "owner:ref:FR:SIREN": "385279609", + "email": "frsupport@ev-box.com", + "network": "VOLKSWAGEN", + "ref": "NL*EVB*EA2AXUYIOTQ4GFABUPEAMAMGIEA ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2020-12-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069912308187833, + 44.146517682124674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVBOX", + "owner:ref:FR:SIREN": "809313760", + "email": "frsupport@ev-box.com", + "network": "HOTEL B&B", + "ref": "NL*EVB*EP6XVKPHR4IIYT5W23IGVVCGOBQ ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2021-10-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3328996, + 43.8136602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVBOX", + "owner:ref:FR:SIREN": "338773492", + "email": "frsupport@ev-box.com", + "network": "SKODA", + "ref": "NL*EVB*EBP7OCKH3I4TGNGRKJ5VPBEHTKA ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2020-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0814445, + 44.1386705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVBOX", + "owner:ref:FR:SIREN": "502997935", + "email": "frsupport@ev-box.com", + "phone": "0141447047", + "network": "SANYA MARKET", + "ref": "NL*EVB*EDZYHHJBOU2V5KSR5P4S3LGEN24", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2021-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4451526, + 44.8254186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U FARGUES ST HILAIRE", + "ref": "FRSUAP33165A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4451526, + 44.8254186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U FARGUES ST HILAIRE", + "ref": "FRSUAP33165A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4451526, + 44.8254186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U FARGUES ST HILAIRE", + "ref": "FRSUAP33165A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4451526, + 44.8254186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U FARGUES ST HILAIRE", + "ref": "FRSUAP33165A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4451526, + 44.8254186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U FARGUES ST HILAIRE", + "ref": "FRSUAP33165A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.707232, + 43.929095 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U GANGES", + "ref": "FRSUAP34111A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.707232, + 43.929095 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U GANGES", + "ref": "FRSUAP34111A", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.707232, + 43.929095 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U GANGES", + "ref": "FRSUAP34111A", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4451526, + 44.8254186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U FARGUES ST HILAIRE", + "ref": "FRSUAP33165A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3617357269911046, + 43.20905731878834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Securecharge", + "owner:ref:FR:SIREN": "802704445", + "email": "contact@securecharge.com", + "network": "Hôtel du Pont Vieux - Securecharge", + "ref": "Securecharge-PONCAR-HBS-1", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.45, + 43.61 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "831530365", + "email": "oscar@electromaps.com", + "phone": "06 17 67 06 24", + "network": "PULLMAN", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.404951, + 47.365936 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.404951, + 47.365936 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6822308312133751, + 44.83887410485574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "FLYOPS", + "owner:ref:FR:SIREN": "511679896", + "email": "contact@flyops.net", + "network": "FLYOPS", + "ref": "EVB-P21211914", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:30-17:00", + "start_date": "2022-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6822308312133751, + 44.83887410485574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "FLYOPS", + "owner:ref:FR:SIREN": "511679896", + "email": "contact@flyops.net", + "network": "FLYOPS", + "ref": "EVB-P21211914", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:30-17:00", + "start_date": "2022-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6822308312133751, + 44.83887410485574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "FLYOPS", + "owner:ref:FR:SIREN": "511679896", + "email": "contact@flyops.net", + "network": "FLYOPS", + "ref": "EVB-P21211914", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:30-17:00", + "start_date": "2022-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.6822308312133751, + 44.83887410485574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "FLYOPS", + "owner:ref:FR:SIREN": "511679896", + "email": "contact@flyops.net", + "network": "FLYOPS", + "ref": "EVB-P21211914", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 8:30-17:00", + "start_date": "2022-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.119464, + 44.612295 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "767193", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.119464, + 44.612295 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "767193", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.269004, + 43.235422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "781569", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.741735, + 43.866454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805275", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.741735, + 43.866454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805275", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.741735, + 43.866454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805275", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.741735, + 43.866454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805275", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.269004, + 43.235422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "781569", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.828952, + 43.641184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA1", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789201", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.269004, + 43.235422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "781569", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.269004, + 43.235422 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "781569", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805311", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805311", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805311", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805311", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805311", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805311", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805311", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805311", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.363737, + 43.280118 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805311", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.252902, + 43.349417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805302", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.738868, + 43.435307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805338", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.741422, + 43.866041 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805341", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.741422, + 43.866041 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805341", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.252902, + 43.349417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805302", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.252902, + 43.349417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805302", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.252902, + 43.349417 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805302", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.490479, + 43.388125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "735834", + "socket:typee": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.490479, + 43.388125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "735834", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.828952, + 43.641184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA1", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789201", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69131, + 43.488535 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "801516", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.488524, + 43.304792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA1", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "787233", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.488524, + 43.304792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA1", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "787233", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.488524, + 43.304792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA1", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "787233", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.488524, + 43.304792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA1", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "787233", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.899922, + 43.602172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA1", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789186", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.899922, + 43.602172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA1", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789186", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.693295, + 45.147098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA1", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706628", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.693295, + 45.147098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA1", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706628", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.828941, + 43.641247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA1", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789189", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.033519, + 45.425544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "882348", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.699498, + 45.189336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*W11", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789183", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.699498, + 45.189336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*W11", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789183", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.699498, + 45.189336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*W11", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789183", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.699498, + 45.189336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*W11", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789183", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612904, + 44.854444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "781578", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612904, + 44.854444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "781578", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.612904, + 44.854444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "781578", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67837, + 44.8184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805236", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67837, + 44.8184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805236", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67837, + 44.8184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805236", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.67837, + 44.8184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805236", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.694416, + 44.995186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828285", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.694416, + 44.995186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828285", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718671, + 44.910302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805242", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718671, + 44.910302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805242", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.718671, + 44.910302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805242", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.694416, + 44.995186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828285", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.694416, + 44.995186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828285", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.082393, + 43.595316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "781572", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.082401, + 43.595318 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "781575", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.716421, + 45.166618 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805281", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.716421, + 45.166618 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805281", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.579821, + 43.630042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "877215", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.579821, + 43.630042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "877215", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.579821, + 43.630042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "877215", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.668929, + 45.238983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "746976", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.668929, + 45.238983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "746976", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.668929, + 45.238983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "746976", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.348872, + 43.816962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "679184", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.846733, + 43.570576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "697538", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.846733, + 43.570576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "697538", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.846733, + 43.570576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "697538", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255585, + 43.347511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "697541", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-18:59", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255585, + 43.347511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "697541", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-18:59", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.255585, + 43.347511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "697541", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "Mo,Tu,We,Th,Fr,Sa 08:00-18:59", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.348872, + 43.816962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "679184", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.348872, + 43.816962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "679184", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.348872, + 43.816962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "679184", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.348872, + 43.816962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "679184", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.348872, + 43.816962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "679184", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.692073, + 43.460521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "701234", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.725449, + 45.157305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "740955", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.782529, + 44.930736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "735702", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.782529, + 44.930736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "735702", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.782529, + 44.930736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "735702", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.725449, + 45.157305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "740955", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.725449, + 45.157305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "740955", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.666341, + 44.831528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "613468", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.666341, + 44.831528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "613468", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.666341, + 44.831528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "613468", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.666341, + 44.831528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "613468", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.666341, + 44.831528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "613468", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.70859, + 45.193048 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "747312", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.724538, + 48.10671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706295", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.724538, + 48.10671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706295", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.473353, + 43.283688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805344", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.655923, + 47.424479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "613612", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.655923, + 47.424479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "613612", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.80693, + 45.216413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "520115", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.80693, + 45.216413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "520115", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.80693, + 45.216413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "520115", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.80693, + 45.216413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "520115", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.544192, + 44.849567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851889", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.544192, + 44.849567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851889", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.001006, + 43.65229 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "544748", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.001006, + 43.65229 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "544748", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.704475, + 47.341021 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805326", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.704475, + 47.341021 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805326", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.890093, + 43.591561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706286", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.890093, + 43.591561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706286", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840464", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840464", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840464", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840464", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840464", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840464", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840464", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840464", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840464", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840464", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840462", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840462", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840462", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840462", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840462", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.421246, + 43.640791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840464", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840462", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840462", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840462", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840462", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840462", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840462", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840462", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840462", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548227, + 44.892388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "840462", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.80693, + 45.216413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "520115", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.80693, + 45.216413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "520115", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.269258, + 45.59568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708692", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.269258, + 45.59568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708692", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.261835, + 43.342364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880209", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.261835, + 43.342364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880209", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.261835, + 43.342364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880209", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.261835, + 43.342364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880209", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.261835, + 43.342364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880209", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.261835, + 43.342364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880209", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578569, + 45.382478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708680", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.26341, + 43.34128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "851892", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578569, + 45.382478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708680", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.725223, + 45.096274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741687", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.725223, + 45.096274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741687", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.332443, + 43.828607 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815424", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.332443, + 43.828607 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815424", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.433229, + 43.64506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741672", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.433229, + 43.64506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741672", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.433229, + 43.64506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741672", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.433229, + 43.64506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741672", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.415964, + 43.29045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805227", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.415964, + 43.29045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805227", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.415964, + 43.29045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805227", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.677952, + 45.192056 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708671", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.677952, + 45.192056 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708671", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.368138, + 43.602861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741711", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.372832, + 43.600631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741708", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.368138, + 43.602861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741711", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.368138, + 43.602861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741711", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578569, + 45.382478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "368758", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.578569, + 45.382478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "368758", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.677952, + 45.192056 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "368761", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.677952, + 45.192056 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "368761", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.882355, + 43.580375 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706205", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.708992, + 45.19392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "747294", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.681316, + 44.858162 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "588707", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.681316, + 44.858162 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "588707", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.929122, + 43.638122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "709151", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.538786, + 43.52748 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "544733", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.538786, + 43.52748 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "544733", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.366028, + 43.644878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880227", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.366028, + 43.644878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880227", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.100637, + 44.145189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706241", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.100637, + 44.145189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706241", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2564, + 43.341518 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706250", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.2564, + 43.341518 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706250", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36665, + 43.830335 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706235", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.082393, + 43.595316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "518108", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.082401, + 43.595318 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "523592", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.36665, + 43.830335 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706235", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.788389, + 43.500559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "538367", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.788389, + 43.500559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "538367", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.882355, + 43.580375 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706205", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.679922, + 46.80673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "671585", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.679922, + 46.80673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "671585", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.23853, + 43.338135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789180", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41904, + 43.389626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805266", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41904, + 43.389626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805266", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41904, + 43.389626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805266", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.41904, + 43.389626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805266", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.85197, + 43.620221 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880212", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.911855, + 43.614964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706193", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.965237, + 43.579598 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "514394", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.398092, + 43.546712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706190", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.398092, + 43.546712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706190", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.911855, + 43.614964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706193", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.965237, + 43.579598 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "514394", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.990231, + 43.324307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "494481", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.990231, + 43.324307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "494481", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + } + ] +} \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_4.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_4.json new file mode 100644 index 00000000..c5fbc8b1 --- /dev/null +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_4.json @@ -0,0 +1,96190 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.593419, + 47.468511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.593419, + 47.468511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.593419, + 47.468511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.593419, + 47.468511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07595, + 43.544156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07595, + 43.544156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07595, + 43.544156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.07595, + 43.544156 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502617, + 47.481716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502617, + 47.481716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502617, + 47.481716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502617, + 47.481716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-08-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.876109, + 45.019158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510056, + 47.436268 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510056, + 47.436268 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510056, + 47.436268 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.510056, + 47.436268 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15, + 45.484943 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*145*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.15, + 45.484943 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "253303473", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SDEEG 33", + "ref": "FR*SOD*S*MB33*145*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.549687, + 48.847681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*227*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.549687, + 48.847681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*227*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.095448, + 44.530308 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.690809, + 44.386063 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68865, + 44.39468 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68865, + 44.39468 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.095448, + 44.530308 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.611634, + 44.203403 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.095533, + 44.530373 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.095533, + 44.530373 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.542454, + 44.194412 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*40*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.542454, + 44.194412 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*40*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.509986, + 44.28891 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*35*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.690809, + 44.386063 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67833, + 44.230488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.509986, + 44.28891 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*35*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.399167, + 44.249722 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.399167, + 44.249722 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67833, + 44.230488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.681062, + 44.23138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.681062, + 44.23138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.810305, + 44.384762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.810305, + 44.384762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.806667, + 44.394165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.806667, + 44.394165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.342304, + 44.134995 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.516944, + 44.17889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*42*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.611634, + 44.203403 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.310212, + 44.390133 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*56*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.516944, + 44.17889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*42*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.627324, + 44.205681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*49*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.616868, + 44.191933 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*55*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.451676, + 44.505325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.451676, + 44.505325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.616936, + 44.199535 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*53*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.616936, + 44.199535 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*53*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130918, + 44.435215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*52*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.130918, + 44.435215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*52*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.618712, + 44.192516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*51*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.618712, + 44.192516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*51*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.513095, + 44.225597 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*50*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.513095, + 44.225597 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*50*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.627324, + 44.205681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*49*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.611923, + 44.203743 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.805496, + 44.396168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*48*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.805496, + 44.396168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*48*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.619786, + 44.206921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.619786, + 44.206921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.586944, + 44.400085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.586944, + 44.400085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.619894, + 44.206848 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.619894, + 44.206848 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591341, + 44.398441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591341, + 44.398441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.611923, + 44.203743 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.342304, + 44.134995 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163333, + 44.503887 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34265, + 44.134975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.168611, + 44.498611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*14*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.169167, + 44.501667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.167222, + 44.496666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.167222, + 44.496666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15449, + 44.507633 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.15449, + 44.507633 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.177198, + 44.500938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.177198, + 44.500938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5974, + 44.190453 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.5974, + 44.190453 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.604511, + 44.192799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.604511, + 44.192799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.606086, + 44.201248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.606086, + 44.201248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.603436, + 44.194824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.603436, + 44.194824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.218302, + 44.409389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.218302, + 44.409389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659898, + 44.132675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.659898, + 44.132675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.298611, + 44.179165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.298611, + 44.179165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.459611, + 44.630516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.459611, + 44.630516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.763611, + 44.283054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.763611, + 44.283054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.169167, + 44.501667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.168611, + 44.498611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*14*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.34265, + 44.134975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.163333, + 44.503887 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.333498, + 44.13789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.333498, + 44.13789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.335646, + 44.134117 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.335646, + 44.134117 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.335512, + 44.134357 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.335512, + 44.134357 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.985842, + 44.480385 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.985842, + 44.480385 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.943916, + 44.482044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.943916, + 44.482044 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.767955, + 44.530869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.767955, + 44.530869 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.760762, + 44.527367 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*21*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.760762, + 44.527367 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*21*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.609229, + 44.141376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.609229, + 44.141376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.359663, + 44.602715 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.359663, + 44.602715 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.256566, + 44.056007 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*18*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.256566, + 44.056007 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*18*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.261792, + 44.056679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*17*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.261792, + 44.056679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*17*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.032222, + 44.519165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.032222, + 44.519165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30878, + 44.391033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*58*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.310212, + 44.390133 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*56*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630348, + 44.179935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*73*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.30878, + 44.391033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*58*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.621467, + 44.442345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*85*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.274231, + 44.291206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*98*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.270507, + 44.286812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*97*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.270507, + 44.286812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*97*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.552938, + 44.220078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*96*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.552938, + 44.220078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*96*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.554053, + 44.221779 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*95*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.554053, + 44.221779 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*95*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.025985, + 44.447399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*94*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.025985, + 44.447399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*94*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.378629, + 44.361179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*93*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.378629, + 44.361179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*93*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.376292, + 44.360611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*92*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.376292, + 44.360611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*92*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7375, + 44.115276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*91*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7375, + 44.115276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*91*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591389, + 44.651669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*90*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.591389, + 44.651669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*90*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.493029, + 44.397484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*89*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.493029, + 44.397484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*89*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088177, + 44.31319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*88*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.088177, + 44.31319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*88*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.090439, + 44.313465 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*87*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.090439, + 44.313465 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*87*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.689687, + 44.175274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*86*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.689687, + 44.175274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*86*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.274231, + 44.291206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*98*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.890833, + 44.38361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*99*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.890833, + 44.38361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*99*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.293672, + 44.455635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*106*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.795556, + 44.187102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*115*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.795556, + 44.187102 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*115*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.611846, + 44.204935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*114*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.611846, + 44.204935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*114*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01301, + 44.5904 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*113*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01301, + 44.5904 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*113*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53505, + 44.54946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*112*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.53505, + 44.54946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*112*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.267636, + 44.290688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*109*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.267636, + 44.290688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*109*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.267636, + 44.290688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*109*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.293672, + 44.455635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*106*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.181111, + 44.675556 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*100*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.159444, + 44.448612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*105*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.159444, + 44.448612 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*105*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.640469, + 44.245251 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*104*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.640469, + 44.245251 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*104*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.644147, + 44.238674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*103*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.644147, + 44.238674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*103*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.347643, + 44.222729 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*102*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.347643, + 44.222729 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*102*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.577217, + 44.16872 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*101*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.577217, + 44.16872 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*101*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.181111, + 44.675556 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*100*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.621467, + 44.442345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*85*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625405, + 44.442253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*84*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.340556, + 44.301109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*59*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.299375, + 44.258472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*83*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.14084, + 44.50922 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*72*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62705, + 44.160133 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*71*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.62705, + 44.160133 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*71*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608545, + 44.170858 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*70*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.655556, + 44.170834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*69*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.655556, + 44.170834 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*69*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.216508, + 44.506062 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*68*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.216508, + 44.506062 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*68*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.663889, + 44.181389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*67*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.663889, + 44.181389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*67*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.745556, + 44.638332 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*66*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.745556, + 44.638332 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*66*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.670505, + 44.416508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*65*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.670505, + 44.416508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*65*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.741111, + 44.638332 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*64*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.741111, + 44.638332 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*64*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.882228, + 44.277363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*63*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.882228, + 44.277363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*63*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.706495, + 44.408772 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*62*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.706495, + 44.408772 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*62*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.650561, + 44.063637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.650561, + 44.063637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.707673, + 44.405212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*60*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.707673, + 44.405212 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*60*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.340556, + 44.301109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*59*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.630348, + 44.179935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*73*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339443, + 44.295475 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*74*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339443, + 44.295475 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*74*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07137, + 44.295952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*78*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.299375, + 44.258472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*83*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.102908, + 44.385929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*82*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.102908, + 44.385929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*82*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.669306, + 44.186966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*81*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.669306, + 44.186966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*81*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.999401, + 44.40205 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*80*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.999401, + 44.40205 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*80*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.999401, + 44.40205 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*80*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.999401, + 44.40205 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*80*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.676419, + 44.18615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*79*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.676419, + 44.18615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*79*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07137, + 44.295952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*78*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339443, + 44.295475 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*74*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07137, + 44.295952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*78*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.07137, + 44.295952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*78*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656492, + 44.190346 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*77*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.656492, + 44.190346 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*77*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.624025, + 44.536303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*76*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.624025, + 44.536303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*76*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.624025, + 44.536303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*76*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.624025, + 44.536303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*76*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67219, + 44.18623 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*75*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67219, + 44.18623 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*75*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.339443, + 44.295475 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*74*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.625405, + 44.442253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*84*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.616868, + 44.191933 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254701824", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - TE 47", + "ref": "FR*SOD*S*MB47*55*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.530598, + 47.398424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*247*2*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.530598, + 47.398424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*247*2*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.530598, + 47.398424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*247*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.530598, + 47.398424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*247*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.530598, + 47.398424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*247*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.550342, + 47.284433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*253*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.550342, + 47.284433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*253*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.550342, + 47.284433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*253*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59105, + 47.262201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*43*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.59105, + 47.262201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*43*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.573282, + 47.194623 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*256*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.573282, + 47.194623 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*256*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.573282, + 47.194623 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*256*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.049525, + 43.709187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*57*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052169, + 43.695694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*56*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052169, + 43.695694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*56*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.049525, + 43.709187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*57*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.049525, + 43.709187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*57*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.972001, + 44.145809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*58*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.049525, + 43.709187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*57*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.972001, + 44.145809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*58*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.972001, + 44.145809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*58*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.972001, + 44.145809 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*58*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052169, + 43.695694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*56*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052169, + 43.695694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*56*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.144952, + 43.882175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*53*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.053255, + 43.714935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*55*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.053255, + 43.714935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*55*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.053255, + 43.714935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*55*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.053255, + 43.714935 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*55*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041901, + 43.711033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*54*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041901, + 43.711033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*54*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041901, + 43.711033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*54*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.041901, + 43.711033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*54*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.144952, + 43.882175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*53*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.144952, + 43.882175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*53*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924396, + 44.03067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*59*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924396, + 44.03067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*59*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.224409, + 43.640213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*64*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924396, + 44.03067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*59*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.592122, + 43.657413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*62*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.425559, + 43.595455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*65*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.425559, + 43.595455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*65*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.224409, + 43.640213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*64*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.224409, + 43.640213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*64*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.224409, + 43.640213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*64*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432253, + 43.645058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*52*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.927685, + 43.702885 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*63*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.927685, + 43.702885 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*63*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.927685, + 43.702885 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*63*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.927685, + 43.702885 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*63*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.592122, + 43.657413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*62*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.924396, + 44.03067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*59*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.592122, + 43.657413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*62*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.592122, + 43.657413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*62*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.928073, + 43.571198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*61*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.928073, + 43.571198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*61*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.928073, + 43.571198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*61*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.928073, + 43.571198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*61*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42846, + 43.773663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*60*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42846, + 43.773663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*60*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42846, + 43.773663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*60*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.42846, + 43.773663 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*60*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.144952, + 43.882175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*53*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.410125, + 43.788254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432253, + 43.645058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*52*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.306919, + 43.662987 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.442726, + 43.661537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.430495, + 43.708202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*40*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.430495, + 43.708202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*40*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.312809, + 43.610508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.312809, + 43.610508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.077171, + 44.480804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.077171, + 44.480804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*38*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.487642, + 43.634613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.487642, + 43.634613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*37*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.306919, + 43.662987 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*36*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.519344, + 43.881813 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*35*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.581232, + 44.322952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*42*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.519344, + 43.881813 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*35*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052639, + 43.725822 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052639, + 43.725822 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.044376, + 43.726215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.044376, + 43.726215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.227091, + 44.063213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.227091, + 44.063213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*32*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.233307, + 43.708225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.233307, + 43.708225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.320547, + 44.034054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.442726, + 43.661537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.581232, + 44.322952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*42*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432253, + 43.645058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*52*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.396896, + 43.631031 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*49*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432253, + 43.645058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*52*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.250123, + 44.445004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*51*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.250123, + 44.445004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*51*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.250123, + 44.445004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*51*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.250123, + 44.445004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*51*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.501203, + 43.828957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*50*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.501203, + 43.828957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*50*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.501203, + 43.828957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*50*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.501203, + 43.828957 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*50*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.396896, + 43.631031 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*49*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.396896, + 43.631031 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*49*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32592, + 43.751686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.396896, + 43.631031 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*49*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.302908, + 43.891857 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.302908, + 43.891857 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.410125, + 43.788254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.946732, + 44.327576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*91*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.402247, + 43.786724 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.402247, + 43.786724 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.491811, + 43.545513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.491811, + 43.545513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.32592, + 43.751686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*43*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.946732, + 44.327576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*91*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.237678, + 43.556313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*86*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.946732, + 44.327576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*91*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.330115, + 43.692356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*90*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.446481, + 43.562065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*72*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.446481, + 43.562065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*72*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.446481, + 43.562065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*72*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.072901, + 44.353287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*73*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.072901, + 44.353287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*73*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.072901, + 44.353287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*73*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.072901, + 44.353287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*73*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.922969, + 43.787643 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*74*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.922969, + 43.787643 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*74*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.922969, + 43.787643 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*74*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.922969, + 43.787643 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*74*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.449683, + 43.916889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*75*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.449683, + 43.916889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*75*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.449683, + 43.916889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*75*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.449683, + 43.916889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*75*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.228767, + 43.688267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*76*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.228767, + 43.688267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*76*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.228767, + 43.688267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*76*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.228767, + 43.688267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*76*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232223, + 43.980003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*77*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232223, + 43.980003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*77*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232223, + 43.980003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*77*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232223, + 43.980003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*77*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.446481, + 43.562065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*72*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.008743, + 43.69286 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*71*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.008743, + 43.69286 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*71*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.227322, + 44.202587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*68*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.425559, + 43.595455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*65*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.303443, + 43.876064 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*66*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.303443, + 43.876064 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*66*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.303443, + 43.876064 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*66*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.303443, + 43.876064 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*66*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.213377, + 43.77866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*67*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.213377, + 43.77866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*67*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.213377, + 43.77866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*67*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.213377, + 43.77866 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*67*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.227322, + 44.202587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*68*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.227322, + 44.202587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*68*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.008743, + 43.69286 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*71*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.227322, + 44.202587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*68*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.359458, + 43.849495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*69*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.359458, + 43.849495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*69*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.359458, + 43.849495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*69*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.359458, + 43.849495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*69*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.503016, + 43.884914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*70*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.503016, + 43.884914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*70*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.503016, + 43.884914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*70*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.503016, + 43.884914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*70*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.008743, + 43.69286 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*71*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.125996, + 43.613544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*78*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.125996, + 43.613544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*78*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.125996, + 43.613544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*78*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.390726, + 43.670666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*87*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.314985, + 43.661247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*85*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.314985, + 43.661247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*85*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.314985, + 43.661247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*85*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.237678, + 43.556313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*86*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.237678, + 43.556313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*86*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.918238, + 43.919731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.237678, + 43.556313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*86*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.390726, + 43.670666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*87*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.390726, + 43.670666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*87*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.390726, + 43.670666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*87*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.328835, + 43.75444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*88*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.572845, + 43.760368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*84*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.328835, + 43.75444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*88*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.328835, + 43.75444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*88*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.328835, + 43.75444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*88*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.814181, + 43.835133 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*89*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.814181, + 43.835133 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*89*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.814181, + 43.835133 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*89*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.814181, + 43.835133 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*89*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.330115, + 43.692356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*90*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.330115, + 43.692356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*90*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.330115, + 43.692356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*90*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.314985, + 43.661247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*85*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.572845, + 43.760368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*84*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.125996, + 43.613544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*78*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064402, + 43.727768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*81*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.386023, + 43.541794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*79*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.386023, + 43.541794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*79*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.386023, + 43.541794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*79*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.386023, + 43.541794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*79*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.641041, + 43.928139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*80*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.641041, + 43.928139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*80*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.641041, + 43.928139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*80*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.641041, + 43.928139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*80*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064402, + 43.727768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*81*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064402, + 43.727768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*81*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.064402, + 43.727768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*81*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.572845, + 43.760368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*84*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052096, + 43.723057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*82*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052096, + 43.723057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*82*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.962171, + 44.3279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*92*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052096, + 43.723057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*82*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.052096, + 43.723057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*82*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.591106, + 43.864971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*83*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.591106, + 43.864971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*83*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.591106, + 43.864971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*83*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.591106, + 43.864971 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*83*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.572845, + 43.760368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*84*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.320547, + 44.034054 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.425559, + 43.595455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*65*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.918238, + 43.919731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.985157, + 44.231018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.258727, + 44.03413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.920244, + 44.211601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.920244, + 44.211601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.187404, + 43.968964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.187404, + 43.968964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59247, + 43.652554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59247, + 43.652554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380386, + 43.636551 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.380386, + 43.636551 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.008552, + 43.98666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.008552, + 43.98666 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.066157, + 43.698608 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.066157, + 43.698608 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0557, + 43.713142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0557, + 43.713142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.040466, + 43.707176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.040466, + 43.707176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.055476, + 43.708969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.055476, + 43.708969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.439685, + 43.653248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.439685, + 43.653248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.167335, + 44.395638 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.167335, + 44.395638 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.962171, + 44.3279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*92*1*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.962171, + 44.3279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*92*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74467, + 43.591513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*93*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.74467, + 43.591513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*93*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.962171, + 44.3279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*92*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99688, + 43.606438 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.258727, + 44.03413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.946732, + 44.327576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*91*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.985157, + 44.231018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.833645, + 43.710106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*21*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.121237, + 44.241581 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.99688, + 43.606438 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.378626, + 43.814949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*14*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.121237, + 44.241581 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*27*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82855, + 43.628651 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.101548, + 43.543797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.101548, + 43.543797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.071594, + 44.34993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.071594, + 44.34993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*24*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.749156, + 43.750278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.749156, + 43.750278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*23*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.761524, + 44.358582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.761524, + 44.358582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*22*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.82855, + 43.628651 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.833645, + 43.710106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*21*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.491801, + 43.896542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*17*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.378626, + 43.814949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*14*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.292032, + 44.213303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497182, + 43.89362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.385066, + 43.851494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.385066, + 43.851494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.292032, + 44.213303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.491801, + 43.896542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*17*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.482222, + 43.89635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*18*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.482222, + 43.89635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*18*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502202, + 43.886929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502202, + 43.886929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497182, + 43.89362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "254001399", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "MOBIVE - SYDEC 40", + "ref": "FR*SOD*S*MB40*20*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.306536, + 46.730267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref": "FR*SOD*S*SORE*75*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.306536, + 46.730267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOREGIES", + "owner:ref:FR:SIREN": "450889225", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SOREGIES", + "ref": "FR*SOD*S*SORE*75*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.489594, + 45.293211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref": "FR*SOD*S*SYDR*69*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.489594, + 45.293211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200089720", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SYDER", + "ref": "FR*SOD*S*SYDR*69*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.090126, + 43.939368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref": "FR*SOD*S*AVPT*8*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.090126, + 43.939368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref": "FR*SOD*S*AVPT*8*1*_*_", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8501, + 44.361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref": "FR*SOD*S*AVPT*2*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8501, + 44.361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref": "FR*SOD*S*AVPT*2*1*_*_", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.85208, + 44.36182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref": "FR*SOD*S*AVPT*1*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.85208, + 44.36182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "433704889", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "AVIA PICOTY", + "ref": "FR*SOD*S*AVPT*1*1*_*_", + "socket:type2": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.273755, + 45.337849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref": "FR*SOD*S*SHEL*4*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.812358, + 45.855017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref": "FR*SOD*S*SHEL*9*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.81278, + 45.856003 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref": "FR*SOD*S*SHEL*10*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.154907, + 45.682211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "780130175", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SHELL", + "ref": "FR*SOD*S*SHEL*11*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525589, + 47.668808 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MUIDES SUR LOIRE 4326 - Rue du Tramway", + "ref": "FRS41E432", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525589, + 47.668808 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MUIDES SUR LOIRE 4326 - Rue du Tramway", + "ref": "FRS41E432", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.428741, + 47.958865 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERDES 4328 - Place de l'église", + "ref": "FRS41E432", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.428741, + 47.958865 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERDES 4328 - Place de l'église", + "ref": "FRS41E432", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.460828, + 47.499325 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEVERNY 4301 - Place de l'Eglise", + "ref": "FRS41E430", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.460828, + 47.499325 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEVERNY 4301 - Place de l'Eglise", + "ref": "FRS41E430", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333499, + 47.584457 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4383 - Place Jacques Lob", + "ref": "FRS41E438", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42975, + 47.421438 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTRES 4440 - Rue dela libération", + "ref": "FRS41E444", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.42975, + 47.421438 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTRES 4440 - Rue dela libération", + "ref": "FRS41E444", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.044051, + 47.416387 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SALBRIS 4485 - Rue de la Convention", + "ref": "FRS41E448", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.044051, + 47.416387 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SALBRIS 4485 - Rue de la Convention", + "ref": "FRS41E448", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05821, + 47.42841 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SALBRIS 4489 - Avenue de la Resistance", + "ref": "FRS41E448", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05821, + 47.42841 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SALBRIS 4489 - Avenue de la Resistance", + "ref": "FRS41E449", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.022989, + 47.601445 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMOTTE BEUVRON 4493 - Place du 11 Novembre", + "ref": "FRS41E449", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.022989, + 47.601445 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMOTTE BEUVRON 4493 - Place du 11 Novembre", + "ref": "FRS41E449", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545043, + 47.549129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRACIEUX 4436 - Rue de Candy", + "ref": "FRS41E443", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.447639, + 47.639409 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLIVAULT 4501 - Rue du Château d'eau", + "ref": "FRS41E450", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.447639, + 47.639409 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTLIVAULT 4501 - Rue du Château d'eau", + "ref": "FRS41E450", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.359058, + 47.608669 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAUSSEE ST VICTOR 4510 - Rue de Montprofond", + "ref": "FRS41E451", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.359058, + 47.608669 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAUSSEE ST VICTOR 4510 - Rue de Montprofond", + "ref": "FRS41E451", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.545043, + 47.549129 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BRACIEUX 4436 - Rue de Candy", + "ref": "FRS41E443", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.459363, + 47.507757 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COUR CHEVERNY 4432 - Rue Gilette", + "ref": "FRS41E443", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.557391, + 47.273629 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELLES SUR CHER 4350 - Allée de la Gravouille", + "ref": "FRS41E435", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.557391, + 47.273629 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELLES SUR CHER 4350 - Allée de la Gravouille", + "ref": "FRS41E435", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.553632, + 47.273794 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELLES SUR CHER 4353 - Rue du Moulinet", + "ref": "FRS41E435", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.553632, + 47.273794 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELLES SUR CHER 4353 - Rue du Moulinet", + "ref": "FRS41E435", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.332601, + 47.587793 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Place Saint Honoré -139113", + "ref": "FRS41E13911", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.332601, + 47.587793 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Place Saint Honoré -139113", + "ref": "FRS41E13911", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.338252, + 47.593425 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4373 - Avenue du Maréchal Maunoury", + "ref": "FRS41E437", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.338252, + 47.593425 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4373 - Avenue du Maréchal Maunoury", + "ref": "FRS41E437", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.333499, + 47.584457 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4383 - Place Jacques Lob", + "ref": "FRS41E438", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.459363, + 47.507757 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COUR CHEVERNY 4432 - Rue Gilette", + "ref": "FRS41E443", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.339852, + 47.583802 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4387 - Rue des Alliés", + "ref": "FRS41E438", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.339852, + 47.583802 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4387 - Rue des Alliés", + "ref": "FRS41E438", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.334115, + 47.589412 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4430 - Square du 11 Novembre 1918", + "ref": "FRS41E443", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.334115, + 47.589412 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4430 - Square du 11 Novembre 1918", + "ref": "FRS41E443", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.773067, + 47.268872 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 8", + "ref": "FRCPIE6530285", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.506585, + 47.70652 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MER 4053 - Rue de Mardeau", + "ref": "FRS41E405", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.508335, + 47.703524 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MER 4043 - Avenue Maréchal Maunoury", + "ref": "FRS41E404", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.508335, + 47.703524 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MER 4043 - Avenue Maréchal Maunoury", + "ref": "FRS41E404", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.506585, + 47.70652 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MER 4053 - Rue de Mardeau", + "ref": "FRS41E405", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29412, + 47.822077 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "OUCQUES 4071 - Place du Château", + "ref": "FRS41E407", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.29412, + 47.822077 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "OUCQUES 4071 - Place du Château", + "ref": "FRS41E407", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.210292, + 47.887587 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FRETEVAL 4091 - Rue De Pont", + "ref": "FRS41E409", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.210292, + 47.887587 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FRETEVAL 4091 - Rue De Pont", + "ref": "FRS41E409", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.358596, + 47.566555 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GERVAIS LA FORET 3780", + "ref": "FRS41E378", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.773067, + 47.268872 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 8", + "ref": "FRCPIE6747105", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.773067, + 47.268872 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 8", + "ref": "FRCPIE6747105", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.023062, + 47.593796 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMOTTE BEUVRON 4228 - La Gare", + "ref": "FRS41E422", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.023062, + 47.593796 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMOTTE BEUVRON 4228 - La Gare", + "ref": "FRS41E449", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.90451, + 47.61043 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAUMONT SUR THARONNE 4231 - Place Robert Mottu", + "ref": "FRS41E423", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.90451, + 47.61043 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAUMONT SUR THARONNE 4231 - Place Robert Mottu", + "ref": "FRS41E423", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.773067, + 47.268872 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 8", + "ref": "FRCPIE6747085", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.773067, + 47.268872 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 8", + "ref": "FRCPIE6747085", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.773067, + 47.268872 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 8", + "ref": "FRCPIE6530285", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47429851, + 47.28622 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carquefou", + "ref": "FRIENE001402", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47429851, + 47.28622 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carquefou", + "ref": "FRIENE001402", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47429851, + 47.28622 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carquefou", + "ref": "FRIENE001401", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.47429851, + 47.28622 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Carquefou", + "ref": "FRIENE001401", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4701, + 47.205931 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Aubigné-sur-Layon", + "ref": "FRIENE012022000201", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4701, + 47.205931 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Aubigné-sur-Layon", + "ref": "FRIENE012022000202", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4701, + 47.205931 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Aubigné-sur-Layon", + "ref": "FRIENE012022000202", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4701, + 47.205931 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Aubigné-sur-Layon", + "ref": "FRIENE012022000201", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033293, + 47.533779 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOUAN LE FUZELIER 4571 - Avenue de Toulouse", + "ref": "FRS41E457", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34025, + 47.588846 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4531 - Mail Pierre Sudreau", + "ref": "FRS41E8822", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.34025, + 47.588846 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4531 - Mail Pierre Sudreau", + "ref": "FRS41E8823", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.338914, + 47.587974 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4539 - Quai Saint Jean", + "ref": "FRS41E453", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.338914, + 47.587974 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4539 - Quai Saint Jean", + "ref": "FRS41E454", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.369809, + 47.567044 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GERVAIS LA FORET 4543 - Rue du clouseaux", + "ref": "FRS41E454", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.369809, + 47.567044 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GERVAIS LA FORET 4543 - Rue du clouseaux", + "ref": "FRS41E454", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.740861, + 47.358186 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 4547", + "ref": "FRS41E454", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.740861, + 47.358186 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 4547", + "ref": "FRS41E454", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.743234, + 47.359277 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 4549 - Place de la paix", + "ref": "FRS41E454", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.743234, + 47.359277 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 4549 - Place de la paix", + "ref": "FRS41E455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033293, + 47.533779 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOUAN LE FUZELIER 4571 - Avenue de Toulouse", + "ref": "FRS41E457", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.234271, + 47.076183 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Gétigné", + "ref": "FRIENE002001", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.234271, + 47.076183 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Gétigné", + "ref": "FRIENE002001", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.234271, + 47.076183 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Gétigné", + "ref": "FRIENE002002", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.234271, + 47.076183 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Gétigné", + "ref": "FRIENE002002", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05605048, + 47.2040707 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Père-en-Retz", + "ref": "FRIENE000702", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05605048, + 47.2040707 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Père-en-Retz", + "ref": "FRIENE000702", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05605048, + 47.2040707 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Père-en-Retz", + "ref": "FRIENE000701", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.05605048, + 47.2040707 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Saint-Père-en-Retz", + "ref": "FRIENE000701", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603188, + 47.518873 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Avrillé", + "ref": "FRIENE001102", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603188, + 47.518873 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Avrillé", + "ref": "FRIENE001102", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603188, + 47.518873 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Avrillé", + "ref": "FRIENE001101", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.603188, + 47.518873 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Avrillé", + "ref": "FRIENE001101", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.358596, + 47.566555 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GERVAIS LA FORET 3780", + "ref": "FRS41E378", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.936433, + 47.372148 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING N-1 SAVENAY 4", + "ref": "FRCPIE6609195", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.397453, + 47.25505 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEIGY 211885 - RUE MARCEL COTTEREAU", + "ref": "FRS41E21188", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.397453, + 47.25505 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEIGY 211885 - RUE MARCEL COTTEREAU", + "ref": "FRS41E21188", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-08-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93756, + 47.372504 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING N-1 SAVENAY 3", + "ref": "FRCPIE6609145", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.937801, + 47.372326 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING N-1 SAVENAY 1", + "ref": "FRCPIE6609135", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.937801, + 47.372326 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING N-1 SAVENAY 1", + "ref": "FRCPIE6609135", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93756, + 47.372504 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING N-1 SAVENAY 3", + "ref": "FRCPIE6609145", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93756, + 47.372504 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING N-1 SAVENAY 3", + "ref": "FRCPIE6609155", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.93756, + 47.372504 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING N-1 SAVENAY 3", + "ref": "FRCPIE6609155", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.937388, + 47.372671 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING N-1 SAVENAY 6", + "ref": "FRCPIE6609175", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.937388, + 47.372671 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING N-1 SAVENAY 6", + "ref": "FRCPIE6609175", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.938086, + 47.372793 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PARKING N-1 SAVENAY 5", + "ref": "FRCPIE6609185", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.624051, + 44.176503 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED AGEN", + "ref": "FRCPIE6604805", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.624051, + 44.176503 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED AGEN", + "ref": "FRCPIE6604805", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.156034, + 45.679959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de la Plaine du Forez", + "ref": "FRFASE330040", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.156034, + 45.679959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de la Plaine du Forez", + "ref": "FRFASE330040", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.156034, + 45.679959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de la Plaine du Forez", + "ref": "FRFASE330040", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.156034, + 45.679959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de la Plaine du Forez", + "ref": "FRFASE330040", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.156034, + 45.679959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de la Plaine du Forez", + "ref": "FRFASE330040", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.156034, + 45.679959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de la Plaine du Forez", + "ref": "FRFASE330040", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.156034, + 45.679959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de la Plaine du Forez", + "ref": "FRFASE330040", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.156034, + 45.679959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de la Plaine du Forez", + "ref": "FRFASE330040", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.616726, + 47.415343 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LE FRESNE BORNE 1", + "ref": "FRCPIE6606665", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.616726, + 47.415343 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "LE FRESNE BORNE 1", + "ref": "FRCPIE6606665", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.729746, + 44.395027 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT VILLENEUVE-LOT", + "ref": "FRCPIE6608185", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.729746, + 44.395027 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT VILLENEUVE-LOT", + "ref": "FRCPIE6608185", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.681095, + 47.820037 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE U RAPIDE", + "ref": "FRCPIE6540205", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.681095, + 47.820037 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE U RAPIDE", + "ref": "FRCPIE6540205", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.681095, + 47.820037 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE U RAPIDE", + "ref": "FRCPIE6540225", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.681095, + 47.820037 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE U RAPIDE", + "ref": "FRCPIE6540225", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.681095, + 47.820037 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE U RAPIDE", + "ref": "FRCPIE6541535", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.445571, + 47.432981 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", + "ref": "FRS41E20646", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.445571, + 47.432981 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", + "ref": "FRS41E20646", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.445571, + 47.432981 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", + "ref": "FRS41E20648", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.445571, + 47.432981 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs", + "ref": "FRS41E20648", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.766898, + 44.394767 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "JULSOL BORNE 1", + "ref": "FRCPIE6626215", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.865448, + 47.268447 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MENNETOU SUR CHER 2924 - Place du 11 Novembre", + "ref": "FRS41E292", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.865448, + 47.268447 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MENNETOU SUR CHER 2924 - Place du 11 Novembre", + "ref": "FRS41E292", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.797433, + 47.365592 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEHERVIERS 2926 - Rue de la Gare", + "ref": "FRS41E292", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.797433, + 47.365592 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEHERVIERS 2926 - Rue de la Gare", + "ref": "FRS41E292", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.681046, + 47.500549 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOU EN SOLOGNE 2928 - Place de l'Eglise", + "ref": "FRS41E292", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.681046, + 47.500549 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VERNOU EN SOLOGNE 2928 - Place de l'Eglise", + "ref": "FRS41E292", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.526321, + 47.911214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "OUZOUER LE MARCHE 2932 - Place du 8 Mai", + "ref": "FRS41E293", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.766898, + 44.394767 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "JULSOL BORNE 1", + "ref": "FRCPIE6626215", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.526321, + 47.911214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "OUZOUER LE MARCHE 2932 - Place du 8 Mai", + "ref": "FRS41E293", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.233368, + 47.902339 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MOREE 2935 - Place du 8 Mai", + "ref": "FRS41E293", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.233368, + 47.902339 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MOREE 2935 - Place du 8 Mai", + "ref": "FRS41E293", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.455906, + 47.512561 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COUR CHEVERNY 2937 - Avenue Anciens combattants", + "ref": "FRS41E293", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.455906, + 47.512561 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COUR CHEVERNY 2937 - Avenue Anciens combattants", + "ref": "FRS41E293", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.355931, + 47.573036 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GERVAIS LA FORET 2945 - Route de Chambord", + "ref": "FRS41E294", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.355931, + 47.573036 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GERVAIS LA FORET 2945 - Route de Chambord", + "ref": "FRS41E294", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.388022, + 47.52473 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CELLETTES 2958 - Rue de l'Angevinière", + "ref": "FRS41E295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.388022, + 47.52473 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CELLETTES 2958 - Rue de l'Angevinière", + "ref": "FRS41E295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.766898, + 44.394767 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "JULSOL BORNE 1", + "ref": "FRCPIE6626205", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.766898, + 44.394767 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "JULSOL BORNE 1", + "ref": "FRCPIE6626205", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.075448, + 47.81808 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT OUEN 3717 - Allée du Parc de Bel Air", + "ref": "FRS41E371", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.075448, + 47.81808 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT OUEN 3717 - Allée du Parc de Bel Air", + "ref": "FRS41E371", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.445425, + 43.914529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED MONT-DE-MARSAN", + "ref": "FRCPIE6629175", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.445425, + 43.914529 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED MONT-DE-MARSAN", + "ref": "FRCPIE6629175", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.446263, + 47.676153 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Suèvres", + "ref": "FRIENE008202", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.446263, + 47.676153 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Suèvres", + "ref": "FRIENE008201", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.446263, + 47.676153 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Suèvres", + "ref": "FRIENE008201", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.446263, + 47.676153 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Suèvres", + "ref": "FRIENE008202", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 6", + "ref": "FRCPIE6746725", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 6", + "ref": "FRCPIE6746675", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 6", + "ref": "FRCPIE6746675", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 6", + "ref": "FRCPIE6746725", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 6", + "ref": "FRCPIE6746745", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 6", + "ref": "FRCPIE6746745", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 6", + "ref": "FRCPIE6746825", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.772852, + 47.269214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 6", + "ref": "FRCPIE6746825", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.399705, + 45.462082 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT ST-ETIENNE3", + "ref": "FRCPIE6530215", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-01-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.543986, + 47.486261 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR ANGERS", + "ref": "FRCPIE6741345", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.543986, + 47.486261 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR ANGERS", + "ref": "FRCPIE6741345", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.399705, + 45.462082 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT ST-ETIENNE3", + "ref": "FRCPIE6530215", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-01-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.669796, + 47.321429 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PRUNIERS EN SOLOGNE 5013 - Salle des Fêtes", + "ref": "FRS41E501", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.762513, + 47.327701 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 5150", + "ref": "FRS41E515", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.762513, + 47.327701 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 5150", + "ref": "FRS41E515", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.828502, + 47.282663 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LANGON 5162 - Route de Mennetou-Sur-Cher", + "ref": "FRS41E516", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.828502, + 47.282663 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LANGON 5162 - Route de Mennetou-Sur-Cher", + "ref": "FRS41E516", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.669796, + 47.321429 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PRUNIERS EN SOLOGNE 5013 - Salle des Fêtes", + "ref": "FRS41E501", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.390391, + 47.276707 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOYERS SUR CHER 4843 - Rue Saint Lazare", + "ref": "FRS41E484", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.390391, + 47.276707 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOYERS SUR CHER 4843 - Rue Saint Lazare", + "ref": "FRS41E484", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.171846, + 47.501399 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEUZAIN 4866 - Rue de l'Ecrevissière", + "ref": "FRS41E486", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.171846, + 47.501399 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEUZAIN 4866 - Rue de l'Ecrevissière", + "ref": "FRS41E486", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.173305, + 47.49941 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEUZAIN 4880 - Ruelle des Planches", + "ref": "FRS41E488", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.173305, + 47.49941 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VEUZAIN 4880 - Ruelle des Planches", + "ref": "FRS41E488", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.25007, + 47.52429 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLOIRE SUR CISSE 4884 - Route de la Champagne", + "ref": "FRS41E488", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.25007, + 47.52429 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VALLOIRE SUR CISSE 4884 - Route de la Champagne", + "ref": "FRS41E488", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.400757, + 47.276675 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOYERS SUR CHER 4999 - Place des Guerriers", + "ref": "FRS41E500", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01733, + 47.68865 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AMAND LONGPRE 4911 - Place du 11 Out 1944", + "ref": "FRS41E491", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.01733, + 47.68865 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AMAND LONGPRE 4911 - Place du 11 Out 1944", + "ref": "FRS41E491", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.060181, + 47.794548 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4919 - Rue des Etats-unis", + "ref": "FRS41E491", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.060181, + 47.794548 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4919 - Rue des Etats-unis", + "ref": "FRS41E492", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.416839, + 47.613725 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CLAUDE DE DIRAY 4922", + "ref": "FRS41E492", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.416839, + 47.613725 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT CLAUDE DE DIRAY 4922", + "ref": "FRS41E492", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68782, + 47.75244 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COUTURE SUR LOIR 4929-4930", + "ref": "FRS41E492", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.68782, + 47.75244 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "COUTURE SUR LOIR 4929-4930", + "ref": "FRS41E493", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861458, + 47.751579 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTOIRE SUR LE LOIR 4931 - Rue Marecot", + "ref": "FRS41E493", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.861458, + 47.751579 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTOIRE SUR LE LOIR 4931 - Rue Marecot", + "ref": "FRS41E493", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.400757, + 47.276675 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NOYERS SUR CHER 4999 - Place des Guerriers", + "ref": "FRS41E499", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.392645, + 47.821051 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARCHENOIR 2930 - Route de Blois", + "ref": "FRS41E13515", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.392645, + 47.821051 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MARCHENOIR 2930 - Route de Blois", + "ref": "FRS41E13515", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.026326, + 47.601158 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMOTTE-BEUVRON- 117722- Rue Ernest Gaugiran", + "ref": "FRS41E11772", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.026326, + 47.601158 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LAMOTTE-BEUVRON- 117722- Rue Ernest Gaugiran", + "ref": "FRS41E11772", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30708873, + 47.52983244 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAILLES 2956 - Rue des Cormiers", + "ref": "FRS41E295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.30708873, + 47.52983244 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHAILLES 2956 - Rue des Cormiers", + "ref": "FRS41E295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.373159, + 47.268943 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AIGNAN 2954 - Place du Président Wilson", + "ref": "FRS41E295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.239974, + 47.671469 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE VENDOMOISE 3803", + "ref": "FRS41E380", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.239974, + 47.671469 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA CHAPELLE VENDOMOISE 3803", + "ref": "FRS41E380", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.373159, + 47.268943 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT AIGNAN 2954 - Place du Président Wilson", + "ref": "FRS41E295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.806087, + 47.533105 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUNG SUR BEUVRON - Henry de Geoffre - 167613", + "ref": "FRS41E16761", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.806087, + 47.533105 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NEUNG SUR BEUVRON - Henry de Geoffre - 167613", + "ref": "FRS41E16761", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.239974, + 47.671469 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "La Chapelle-Vendômoise | Chemin des Coulisses", + "ref": "FRS41E380", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.239974, + 47.671469 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "La Chapelle-Vendômoise | Chemin des Coulisses", + "ref": "FRS41E380", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22626, + 45.850533 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Loire", + "ref": "FRIONE42160", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22626, + 45.850533 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Loire", + "ref": "FRIONE42160", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22626, + 45.850533 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Loire", + "ref": "FRIONE42160", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22626, + 45.850533 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Loire", + "ref": "FRIONE42160", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22626, + 45.850533 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Loire", + "ref": "FRIONE4216", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.192719, + 47.756018 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELOMMES 3964 - Rue de la Mairie", + "ref": "FRS41E396", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.192719, + 47.756018 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SELOMMES 3964 - Rue de la Mairie", + "ref": "FRS41E396", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.852306, + 47.633002 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "YVOY LE MARRON-Parking de l’église-200504", + "ref": "FRS41E20050", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.852306, + 47.633002 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "YVOY LE MARRON-Parking de l’église-200504", + "ref": "FRS41E20050", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.496372, + 47.249526 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MEUSNES-121603-Rue Paul Couton", + "ref": "FRS41E12160", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.496372, + 47.249526 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MEUSNES-121603-Rue Paul Couton", + "ref": "FRS41E12160", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref": "FRIONE43550", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref": "FRIONE43550", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.647127, + 47.234257 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR SAINT HERBLAIN", + "ref": "FRCPIE6617515", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.647127, + 47.234257 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR SAINT HERBLAIN", + "ref": "FRCPIE6617515", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref": "FRIONE4355", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref": "FRIONE43550", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref": "FRIONE43550", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref": "FRIONE43550", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859535, + 47.948716 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Orléans Nord", + "ref": "FRIONE43550", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.605512, + 47.715684 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT NOUAN 4615 - Rue des écoles", + "ref": "FRS41E461", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.03553, + 47.31321 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THEILLAY 4582 - Rue de la Pierre", + "ref": "FRS41E458", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.03553, + 47.31321 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "THEILLAY 4582 - Rue de la Pierre", + "ref": "FRS41E458", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.744565, + 47.356158 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 4586", + "ref": "FRS41E458", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.744565, + 47.356158 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ROMORANTIN LANTHENAY 4586", + "ref": "FRS41E458", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.74353, + 47.363383 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Romorantin 24592 - Rue de Sabard", + "ref": "FRS41E2459", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.74353, + 47.363383 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Romorantin 24592 - Rue de Sabard", + "ref": "FRS41E2489", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.612878, + 47.71724 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT NOUAN 4605 - Place du Soleil d'Or", + "ref": "FRS41E460", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.612878, + 47.71724 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT NOUAN 4605 - Place du Soleil d'Or", + "ref": "FRS41E460", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.560186, + 47.685381 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT NOUAN 4613 - Place Saint-Aignan", + "ref": "FRS41E461", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.560186, + 47.685381 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT NOUAN 4613 - Place Saint-Aignan", + "ref": "FRS41E461", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.605512, + 47.715684 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT LAURENT NOUAN 4615 - Rue des écoles", + "ref": "FRS41E461", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995529, + 47.805809 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLIERS SUR LOIR 4664 - Avenue du Petit Thouars", + "ref": "FRS41E466", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995529, + 47.805809 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLIERS SUR LOIR 4664 - Avenue du Petit Thouars", + "ref": "FRS41E466", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.809068, + 47.880445 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVIGNY SUR BRAYE - Avenue de la Braye - 153650", + "ref": "FRS41E15365", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.809068, + 47.880445 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAVIGNY SUR BRAYE - Avenue de la Braye - 153650", + "ref": "FRS41E15365", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0739, + 47.7913 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4674 - Geoffrey Martel", + "ref": "FRS41E467", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.0739, + 47.7913 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4674 - Geoffrey Martel", + "ref": "FRS41E467", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.085881, + 47.918855 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX CLERCS 4676 - Rue de l'Abreuvoir", + "ref": "FRS41E467", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.085881, + 47.918855 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA VILLE AUX CLERCS 4676 - Rue de l'Abreuvoir", + "ref": "FRS41E467", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.070766, + 47.803382 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4678 - Square des Anciens d'Indochine", + "ref": "FRS41E467", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.070766, + 47.803382 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4678 - Square des Anciens d'Indochine", + "ref": "FRS41E467", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929588, + 47.901046 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPUISAY 4680 - Rue des Bleuets", + "ref": "FRS41E468", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.929588, + 47.901046 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "EPUISAY 4680 - Rue des Bleuets", + "ref": "FRS41E468", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.070017, + 47.793571 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4682 - Route du Dr Faton", + "ref": "FRS41E468", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.070017, + 47.793571 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4682 - Route du Dr Faton", + "ref": "FRS41E468", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.791078, + 47.775214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TROO 4684", + "ref": "FRS41E468", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.057401, + 47.806584 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4745 - AVENUE JEAN MOULIN", + "ref": "FRS41E474", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05053, + 47.42555 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SALBRIS 4717 - Place du 11 Novembre", + "ref": "FRS41E471", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.150983, + 47.514688 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PIERREFITTE SUR SAULDRE 4719 - Rue des Fossés", + "ref": "FRS41E471", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.150983, + 47.514688 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PIERREFITTE SUR SAULDRE 4719 - Rue des Fossés", + "ref": "FRS41E472", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.284024, + 47.634797 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FOSSE 4816 - Rue de Vendome", + "ref": "FRS41E481", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.284024, + 47.634797 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FOSSE 4816 - Rue de Vendome", + "ref": "FRS41E481", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.658134, + 47.590104 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DHUIZON - Rue de la ferte st cyr - 167439", + "ref": "FRS41E16743", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.658134, + 47.590104 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "DHUIZON - Rue de la ferte st cyr - 167439", + "ref": "FRS41E16744", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.457308, + 47.59298 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HUISSEAU SUR COSSON 4739 - Champs de Ligny", + "ref": "FRS41E473", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.457308, + 47.59298 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "HUISSEAU SUR COSSON 4739 - Champs de Ligny", + "ref": "FRS41E474", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.057401, + 47.806584 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VENDOME 4745 - AVENUE JEAN MOULIN", + "ref": "FRS41E474", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.791078, + 47.775214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "TROO 4684", + "ref": "FRS41E468", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.848995, + 47.5426 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA FERTE BEAUHARNAIS 4727", + "ref": "FRS41E472", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.848995, + 47.5426 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "LA FERTE BEAUHARNAIS 4727", + "ref": "FRS41E472", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05053, + 47.42555 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SALBRIS 4717 - Place du 11 Novembre", + "ref": "FRS41E471", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.124944, + 47.325755 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GEORGES SUR CHER 4715 - Place Bretonneau", + "ref": "FRS41E471", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.124944, + 47.325755 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SAINT GEORGES SUR CHER 4715 - Place Bretonneau", + "ref": "FRS41E471", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18419, + 47.343958 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTRICHARD VAL DE CHER (B1) 4713", + "ref": "FRS41E472", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525134, + 47.413841 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SOING EN SOLOGNE 4690 - Rue de la Salle des Fêtes", + "ref": "FRS41E469", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525134, + 47.413841 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SOING EN SOLOGNE 4690 - Rue de la Salle des Fêtes", + "ref": "FRS41E469", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.425003, + 47.418349 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTRES 4692 - Rue de la Gare", + "ref": "FRS41E469", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.425003, + 47.418349 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CONTRES 4692 - Rue de la Gare", + "ref": "FRS41E469", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.896907, + 47.982211 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONDOUBLEAU 4700-4701", + "ref": "FRS41E470", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.896907, + 47.982211 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONDOUBLEAU 4700-4701", + "ref": "FRS41E470", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.341651, + 47.448915 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FOUGERES SUR BIEVRE 17065 - Rue Aimable Quenioux", + "ref": "FRS41E1706", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.341651, + 47.448915 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "FOUGERES SUR BIEVRE 17065 - Rue Aimable Quenioux", + "ref": "FRS41E1706", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.862056, + 47.752657 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTOIRE SUR LE LOIR 4704 - Place Clémenceau", + "ref": "FRS41E470", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.862056, + 47.752657 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTOIRE SUR LE LOIR 4704 - Place Clémenceau", + "ref": "FRS41E470", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.362749, + 47.744154 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAVES 4706 - Rue du Cèdre", + "ref": "FRS41E470", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.362749, + 47.744154 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MAVES 4706 - Rue du Cèdre", + "ref": "FRS41E470", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.608919, + 47.411859 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MUR DE SOLOGNE 4709 - Place de la Poste", + "ref": "FRS41E470", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.608919, + 47.411859 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MUR DE SOLOGNE 4709 - Place de la Poste", + "ref": "FRS41E471", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.378134, + 47.581612 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VINEUIL 4711 - Place Gaspard Imbert", + "ref": "FRS41E471", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.378134, + 47.581612 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VINEUIL 4711 - Place Gaspard Imbert", + "ref": "FRS41E471", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18419, + 47.343958 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTRICHARD VAL DE CHER (B1) 4713", + "ref": "FRS41E471", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18419, + 47.343958 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTRICHARD VAL DE CHER (B1) 4713", + "ref": "FRS41E471", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.18419, + 47.343958 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONTRICHARD VAL DE CHER (B1) 4713", + "ref": "FRS41E472", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.096281, + 46.053918 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Roanne", + "ref": "FRIENE004002", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.096281, + 46.053918 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Roanne", + "ref": "FRIENE004002", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.096281, + 46.053918 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Roanne", + "ref": "FRIENE004001", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.096281, + 46.053918 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Roanne", + "ref": "FRIENE004001", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94658719, + 48.06335936 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ARVILLE 4926", + "ref": "FRS41E492", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.94658719, + 48.06335936 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "ARVILLE 4926", + "ref": "FRS41E492", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13469517, + 47.41925327 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué la Couaille", + "ref": "FRIONE4022", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13469517, + 47.41925327 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué la Couaille", + "ref": "FRIONE40220", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13469517, + 47.41925327 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué la Couaille", + "ref": "FRIONE40220", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13469517, + 47.41925327 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué la Couaille", + "ref": "FRIONE40220", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.13469517, + 47.41925327 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué la Couaille", + "ref": "FRIONE40220", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684845, + 47.852305 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "ref": "FRIONE41565", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684845, + 47.852305 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "ref": "FRIONE41565", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684845, + 47.852305 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "ref": "FRIONE41565", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684845, + 47.852305 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "ref": "FRIONE41560", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684845, + 47.852305 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "ref": "FRIONE41560", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684845, + 47.852305 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "ref": "FRIONE41560", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684845, + 47.852305 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Varennes-Changy | A77, Aire du Jardin des Arbres", + "ref": "FRIONE41560", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.420473, + 43.586775 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Ouest", + "ref": "FRIONE4052", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.420473, + 43.586775 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Ouest", + "ref": "FRIONE40520", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.420473, + 43.586775 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Ouest", + "ref": "FRIONE40520", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.420473, + 43.586775 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Ouest", + "ref": "FRIONE40520", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.420473, + 43.586775 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Ouest", + "ref": "FRIONE40520", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.418951, + 43.585904 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Est", + "ref": "FRIONE4029", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.418951, + 43.585904 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Est", + "ref": "FRIONE40290", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.418951, + 43.585904 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Est", + "ref": "FRIONE40290", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.418951, + 43.585904 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Est", + "ref": "FRIONE40290", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.418951, + 43.585904 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Labenne Est", + "ref": "FRIONE40290", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046546, + 47.849887 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SAS AUNAUDIS BORNE 1", + "ref": "FRCPIE6753115", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046546, + 47.849887 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SAS AUNAUDIS BORNE 1", + "ref": "FRCPIE6753115", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046836, + 47.849873 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SAS AUNAUDIS BORNE 2", + "ref": "FRCPIE6753105", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046836, + 47.849873 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SAS AUNAUDIS BORNE 2", + "ref": "FRCPIE6753105", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.661829, + 47.237075 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "GEORGES RENAULT BORNE 1", + "ref": "FRCPIE6654735", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.661829, + 47.237075 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "GEORGES RENAULT BORNE 1", + "ref": "FRCPIE6654735", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.661829, + 47.237075 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "GEORGES RENAULT BORNE 1", + "ref": "FRCPIE6530035", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.661829, + 47.237075 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "GEORGES RENAULT BORNE 1", + "ref": "FRCPIE6530035", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.661829, + 47.237075 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "GEORGES RENAULT BORNE 1", + "ref": "FRCPIE6527975", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.661829, + 47.237075 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "GEORGES RENAULT BORNE 1", + "ref": "FRCPIE6527975", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.482925, + 47.350599 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEMERY 2952 - Rue du Balay", + "ref": "FRS41E295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.482925, + 47.350599 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHEMERY 2952 - Rue du Balay", + "ref": "FRS41E295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387813, + 47.664023 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Ménars", + "ref": "FRIONE40780", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.208417, + 47.682055 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEFRANCOEUR - 60409 - Aerodrome de BLOIS", + "ref": "FRS41E6041", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.208417, + 47.682055 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEFRANCOEUR - 60409 - Aerodrome de BLOIS", + "ref": "FRS41E6040", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387813, + 47.664023 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Ménars", + "ref": "FRIONE40780", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387813, + 47.664023 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Ménars", + "ref": "FRIONE40780", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387813, + 47.664023 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Ménars", + "ref": "FRIONE40780", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387813, + 47.664023 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Ménars", + "ref": "FRIONE4078", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509765, + 47.700796 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MER 4037 - 1 Avenue Maréchal Maunoury", + "ref": "FRS41E403", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.509765, + 47.700796 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MER 4037 - 1 Avenue Maréchal Maunoury", + "ref": "FRS41E403", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.024389, + 47.797822 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAVEIL 4933 - Rue de Montrieux", + "ref": "FRS41E493", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.024389, + 47.797822 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "NAVEIL 4933 - Rue de Montrieux", + "ref": "FRS41E493", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.255731, + 47.390532 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PONTLEVOY 2950 - Rue de la Saulaie", + "ref": "FRS41E295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.139773, + 47.254983 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEIGY 211885 - RUE MARCEL COTTEREAU", + "ref": "FRS41E21188", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383175, + 45.470713 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "GVA PRIEST-EN AC2", + "ref": "FRCPIE6498985", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 00:00-07:00,Mo 19:00-24:00,Tu 00:00-07:00,Tu 19:00-24:00,We 00:00-07:00,We 19:00-24:00,Th 00:00-07:00,Th 19:00-24:00,Fr 00:00-07:00,Fr 19:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383175, + 45.470713 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "GVA PRIEST-EN AC2", + "ref": "FRCPIE6498985", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 00:00-07:00,Mo 19:00-24:00,Tu 00:00-07:00,Tu 19:00-24:00,We 00:00-07:00,We 19:00-24:00,Th 00:00-07:00,Th 19:00-24:00,Fr 00:00-07:00,Fr 19:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.139773, + 47.254983 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "SEIGY 211885 - RUE MARCEL COTTEREAU", + "ref": "FRS41E21188", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684731, + 47.852405 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jardin des arbres", + "ref": "FRIONE41560", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684731, + 47.852405 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jardin des arbres", + "ref": "FRIONE41560", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684731, + 47.852405 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jardin des arbres", + "ref": "FRIONE41560", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684731, + 47.852405 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jardin des arbres", + "ref": "FRIONE41560", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684731, + 47.852405 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Jardin des arbres", + "ref": "FRIONE4156", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.769307, + 47.292443 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEFRANCHE SUR CHER 5020 - Rue Marcel Géré", + "ref": "FRS41E502", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.769307, + 47.292443 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "VILLEFRANCHE SUR CHER 5020 - Rue Marcel Géré", + "ref": "FRS41E502", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.583139, + 47.343718 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GY EN SOLOGNE 211305 - rue croix Saint-André", + "ref": "FRS41E21130", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.583139, + 47.343718 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "GY EN SOLOGNE 211305 - rue croix Saint-André", + "ref": "FRS41E21130", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref": "FRFASE330080", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref": "FRFASE330080", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref": "FRFASE330080", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707788, + 47.615521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNES WELDOM BORNE 2", + "ref": "FRCPIE6645705", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref": "FRFASE330080", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707788, + 47.615521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNES WELDOM BORNE 2", + "ref": "FRCPIE6645705", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707788, + 47.615521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNES WELDOM BORNE 2", + "ref": "FRCPIE6645695", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.707788, + 47.615521 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNES WELDOM BORNE 2", + "ref": "FRCPIE6645695", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref": "FRFASE330080", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref": "FRFASE330080", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref": "FRFASE330080", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.568067, + 44.658051 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire-jardin des Causses du Lot", + "ref": "FRFASE330080", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.131556, + 47.4185 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué-les-Cossonnières", + "ref": "FRIONE4021", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.131556, + 47.4185 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué-les-Cossonnières", + "ref": "FRIONE40210", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.131556, + 47.4185 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué-les-Cossonnières", + "ref": "FRIONE40210", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.131556, + 47.4185 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué-les-Cossonnières", + "ref": "FRIONE40210", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.131556, + 47.4185 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Longué-les-Cossonnières", + "ref": "FRIONE40210", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.255731, + 47.390532 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "PONTLEVOY 2950 - Rue de la Saulaie", + "ref": "FRS41E295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.133889, + 47.336889 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHISSAY EN TOURAINE 4723 - Place du Château", + "ref": "FRS41E472", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.133889, + 47.336889 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHISSAY EN TOURAINE 4723 - Place du Château", + "ref": "FRS41E472", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.66933846, + 47.6509206 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Derval", + "ref": "FRIENE003701", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.66933846, + 47.6509206 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Derval", + "ref": "FRIENE003701", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.66933846, + 47.6509206 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Derval", + "ref": "FRIENE003702", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.524313, + 45.030881 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Ouest", + "ref": "FRIONE4334", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.524313, + 45.030881 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Ouest", + "ref": "FRIONE43340", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.524313, + 45.030881 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Ouest", + "ref": "FRIONE43340", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.524313, + 45.030881 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Ouest", + "ref": "FRIONE43340", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.524313, + 45.030881 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Ouest", + "ref": "FRIONE43340", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.456284, + 47.371248 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guérande", + "ref": "FRIENE006801", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.456284, + 47.371248 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guérande", + "ref": "FRIENE006801", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.456284, + 47.371248 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guérande", + "ref": "FRIENE006802", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.456284, + 47.371248 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Guérande", + "ref": "FRIENE006802", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref": "FRIONE44070", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref": "FRIONE44070", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref": "FRIONE44070", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref": "FRIONE44070", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref": "FRIONE44070", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref": "FRIONE44070", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref": "FRIONE44070", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150379, + 43.528739 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Sud", + "ref": "FRIONE45451", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150379, + 43.528739 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Sud", + "ref": "FRIONE45451", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150379, + 43.528739 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Sud", + "ref": "FRIONE45451", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150379, + 43.528739 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Sud", + "ref": "FRIONE45451", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150379, + 43.528739 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Sud", + "ref": "FRIONE45450", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150379, + 43.528739 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Sud", + "ref": "FRIONE45450", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150379, + 43.528739 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Sud", + "ref": "FRIONE45450", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150379, + 43.528739 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Sud", + "ref": "FRIONE45451", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150379, + 43.528739 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Sud", + "ref": "FRIONE45451", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150379, + 43.528739 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Sud", + "ref": "FRIONE45451", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525098, + 45.030878 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Est", + "ref": "FRIONE40870", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525098, + 45.030878 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Est", + "ref": "FRIONE4087", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525098, + 45.030878 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Est", + "ref": "FRIONE40870", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525098, + 45.030878 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Est", + "ref": "FRIONE40870", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150379, + 43.528739 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Sud", + "ref": "FRIONE4545", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525098, + 45.030878 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Pech Montat Est", + "ref": "FRIONE40870", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49106235, + 47.50032088 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Portes d'Angers Sud", + "ref": "FRIONE10140", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49106235, + 47.50032088 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Portes d'Angers Sud", + "ref": "FRIONE10140", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49106235, + 47.50032088 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Portes d'Angers Sud", + "ref": "FRIONE10140", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49106235, + 47.50032088 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Portes d'Angers Sud", + "ref": "FRIONE10140", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49106235, + 47.50032088 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Portes d'Angers Sud", + "ref": "FRIONE10140", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.49106235, + 47.50032088 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Portes d'Angers Sud", + "ref": "FRIONE10140", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref": "FRIONE44070", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187658, + 44.405928 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Mas D'Agenais", + "ref": "FRIONE4407", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.344566, + 47.602342 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4750 - Mail Pierre Charlot", + "ref": "FRS41E475", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.344566, + 47.602342 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS 4750 - Mail Pierre Charlot", + "ref": "FRS41E475", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.176307, + 47.308871 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT SAINT NAZAIRE", + "ref": "FRCPIE6666445", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-12-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.176307, + 47.308871 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT SAINT NAZAIRE", + "ref": "FRCPIE6666445", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-12-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1547538, + 45.6828638 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de la plaine du Forez Ouest HW", + "ref": "FRSHEE157", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1547538, + 45.6828638 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de la plaine du Forez Ouest HW", + "ref": "FRSHEE157", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1547538, + 45.6828638 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de la plaine du Forez Ouest HW", + "ref": "FRSHEE158", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1547538, + 45.6828638 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de la plaine du Forez Ouest HW", + "ref": "FRSHEE158", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1547538, + 45.6828638 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de la plaine du Forez Ouest HW", + "ref": "FRSHEE158", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566574, + 43.654568 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Hagetmau", + "ref": "FRIENE005101", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566574, + 43.654568 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Hagetmau", + "ref": "FRIENE005101", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566574, + 43.654568 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Hagetmau", + "ref": "FRIENE005102", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566574, + 43.654568 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Hagetmau", + "ref": "FRIENE005102", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1547538, + 45.6828638 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Shell Aire de la plaine du Forez Ouest HW", + "ref": "FRSHEE157", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.253033, + 44.870544 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Garde", + "ref": "FRIONE43260", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.253033, + 44.870544 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Garde", + "ref": "FRIONE4326", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.253033, + 44.870544 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Garde", + "ref": "FRIONE43260", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.66933846, + 47.6509206 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Derval", + "ref": "FRIENE003702", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.256576, + 47.288056 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "E LECLERC BORNE 2", + "ref": "FRCPIE6731085", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.256576, + 47.288056 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "E LECLERC BORNE 2", + "ref": "FRCPIE6731085", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.256576, + 47.288056 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "E LECLERC BORNE 2", + "ref": "FRCPIE6731795", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.256576, + 47.288056 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "E LECLERC BORNE 2", + "ref": "FRCPIE6731795", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.256576, + 47.288056 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "E LECLERC BORNE 2", + "ref": "FRCPIE6731805", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.256576, + 47.288056 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "E LECLERC BORNE 2", + "ref": "FRCPIE6731805", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.253033, + 44.870544 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Garde", + "ref": "FRIONE43260", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400005, + 45.461682 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT ST-ETIENNE1", + "ref": "FRCPIE6557675", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-01-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400005, + 45.461682 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT ST-ETIENNE1", + "ref": "FRCPIE6557675", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-01-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400005, + 45.461682 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT ST-ETIENNE1", + "ref": "FRCPIE6678495", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-01-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400005, + 45.461682 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT ST-ETIENNE1", + "ref": "FRCPIE6678495", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-01-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.253033, + 44.870544 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "La Garde", + "ref": "FRIONE43260", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995718, + 47.851507 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Created 2021-02-01 15:55 con: 1", + "ref": "FRS41E5288", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.995718, + 47.851507 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "Created 2021-02-01 15:55 con: 1", + "ref": "FRS41E5287", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.625555, + 47.707641 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR GIEN", + "ref": "FRCPIE6517135", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.906228, + 45.048606 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT LE PUY", + "ref": "FRCPIE6588555", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.906228, + 45.048606 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT LE PUY", + "ref": "FRCPIE6588555", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.625555, + 47.707641 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR GIEN", + "ref": "FRCPIE6517135", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-06-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.273755, + 45.337849 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire de Lafayette Lorlanges", + "ref": "FRSPSESHEL41", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706887, + 47.615333 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U GREZ N STATION 2", + "ref": "FRCPIE6571345", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706887, + 47.615333 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U GREZ N STATION 2", + "ref": "FRCPIE6571345", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.154907, + 45.682211 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire de la Plaine du Forez Ouest", + "ref": "FRSPSESHEL111", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.705724, + 47.613509 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U GREZ N STATION 4", + "ref": "FRCPIE6571365", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.705724, + 47.613509 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U GREZ N STATION 4", + "ref": "FRCPIE6571365", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.705724, + 47.613509 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U GREZ N STATION 4", + "ref": "FRCPIE6571335", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.705724, + 47.613509 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U GREZ N STATION 4", + "ref": "FRCPIE6571335", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.705724, + 47.613509 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U GREZ N STATION 4", + "ref": "FRCPIE6571325", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.705724, + 47.613509 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U GREZ N STATION 4", + "ref": "FRCPIE6571325", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.065324, + 48.069102 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPERU BORNE CLIENT", + "ref": "FRCPIE6566565", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.065324, + 48.069102 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPERU BORNE CLIENT", + "ref": "FRCPIE6566565", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.812358, + 45.855017 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire du Haut Forez Sud", + "ref": "FRSPSESHEL91", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.26093, + 44.679571 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SALVIADIS U EXPRESS", + "ref": "FRCPIE6576965", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.26093, + 44.679571 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SALVIADIS U EXPRESS", + "ref": "FRCPIE6576965", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.335507, + 47.610383 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Rue de la Vall Maillard - 139033", + "ref": "FRS41E13903", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.335507, + 47.610383 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Rue de la Vall Maillard - 139033", + "ref": "FRS41E13903", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.335507, + 47.610383 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Rue de la Vall Maillard - 139033", + "ref": "FRS41E13903", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.335507, + 47.610383 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Rue de la Vall Maillard - 139033", + "ref": "FRS41E13903", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.336053, + 47.610357 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Rue du Vall Maillard - 139063", + "ref": "FRS41E13906", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.336053, + 47.610357 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "BLOIS - Rue du Vall Maillard - 139063", + "ref": "FRS41E13906", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.494947, + 47.276351 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATILLON SUR CHER - Rue de la mairie - 204266", + "ref": "FRS41E20426", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.494947, + 47.276351 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "CHATILLON SUR CHER - Rue de la mairie - 204266", + "ref": "FRS41E20426", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.153017, + 44.4147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Biscarrosse", + "ref": "FRIENE008901", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038942, + 47.262565 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "NETTO BORNE 1", + "ref": "FRCPIE6600975", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038942, + 47.262565 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "NETTO BORNE 1", + "ref": "FRCPIE6600975", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.153017, + 44.4147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Biscarrosse", + "ref": "FRIENE008902", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.153017, + 44.4147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Biscarrosse", + "ref": "FRIENE008902", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.153017, + 44.4147 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Biscarrosse", + "ref": "FRIENE008901", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598607, + 47.475704 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "U EXPRESS BEAUS STATION 1", + "ref": "FRCPIE6591685", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598607, + 47.475704 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "U EXPRESS BEAUS STATION 1", + "ref": "FRCPIE6591685", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598607, + 47.475704 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "U EXPRESS BEAUS STATION 1", + "ref": "FRCPIE6591675", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.598607, + 47.475704 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "U EXPRESS BEAUS STATION 1", + "ref": "FRCPIE6591675", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401718, + 45.459377 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED ST-ETIENNE 2", + "ref": "FRCPIE6596835", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401718, + 45.459377 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED ST-ETIENNE 2", + "ref": "FRCPIE6596835", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401525, + 45.459204 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED ST-ETIENNE 1", + "ref": "FRCPIE6596825", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401525, + 45.459204 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED ST-ETIENNE 1", + "ref": "FRCPIE6596825", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48718, + 47.210396 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PROTHEOS STATION 1", + "ref": "FRCPIE6596525", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 00:00-24:00,Tu 00:00-24:00,We 00:00-24:00,Th 00:00-24:00,Fr 00:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48718, + 47.210396 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "PROTHEOS STATION 1", + "ref": "FRCPIE6596525", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 00:00-24:00,Tu 00:00-24:00,We 00:00-24:00,Th 00:00-24:00,Fr 00:00-24:00,Sa 00:00-24:00,Su 00:00-24:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187245, + 44.405234 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Le Mas-d'Agenais | A62, Aire de Mas d'Agenais", + "ref": "FRIONE44070", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.187245, + 44.405234 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Le Mas-d'Agenais | A62, Aire de Mas d'Agenais", + "ref": "FRIONE44070", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.457725, + 47.562823 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONT PRES CHAMBORD 4434 - Rue de l'hotel de ville", + "ref": "FRS41E443", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.457725, + 47.562823 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@modulo-energies.fr", + "phone": "0800 37 37 40", + "network": "MONT PRES CHAMBORD 4434 - Rue de l'hotel de ville", + "ref": "FRS41E443", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.836453, + 47.565669 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CHAMPADIS BORNE 1", + "ref": "FRCPIE6528265", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.836453, + 47.565669 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CHAMPADIS BORNE 1", + "ref": "FRCPIE6528265", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150044, + 43.529309 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Nord", + "ref": "FRIONE4519", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150044, + 43.529309 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Nord", + "ref": "FRIONE45191", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150044, + 43.529309 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Nord", + "ref": "FRIONE45191", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150044, + 43.529309 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Nord", + "ref": "FRIONE45191", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150044, + 43.529309 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Nord", + "ref": "FRIONE45191", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150044, + 43.529309 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Nord", + "ref": "FRIONE45191", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150044, + 43.529309 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Nord", + "ref": "FRIONE45191", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150044, + 43.529309 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Nord", + "ref": "FRIONE45191", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150044, + 43.529309 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Nord", + "ref": "FRIONE45190", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150044, + 43.529309 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Nord", + "ref": "FRIONE45190", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.371323, + 45.634283 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Chazelles sur Lyon", + "ref": "FRIENE004202", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.371323, + 45.634283 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Chazelles sur Lyon", + "ref": "FRIENE004202", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.371323, + 45.634283 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Chazelles sur Lyon", + "ref": "FRIENE004201", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.371323, + 45.634283 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Chazelles sur Lyon", + "ref": "FRIENE004201", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.774085, + 47.270106 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 2", + "ref": "FRCPIE6542705", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.774085, + 47.270106 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 2", + "ref": "FRCPIE6542705", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.774085, + 47.270106 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 2", + "ref": "FRCPIE6530295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.774085, + 47.270106 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SUPER U SEM BORNE 2", + "ref": "FRCPIE6530295", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.68091, + 47.819899 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE U BORNE PUBLIQUE4", + "ref": "FRCPIE6531025", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.68091, + 47.819899 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE U BORNE PUBLIQUE4", + "ref": "FRCPIE6531025", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.150044, + 43.529309 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Hastingues Nord", + "ref": "FRIONE45190", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60966, + 44.171306 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agen", + "ref": "FRIONE43270", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387757, + 47.665885 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Villerbon", + "ref": "FRIONE4080", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387757, + 47.665885 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Villerbon", + "ref": "FRIONE40800", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387757, + 47.665885 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Villerbon", + "ref": "FRIONE40800", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387757, + 47.665885 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Villerbon", + "ref": "FRIONE40800", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387757, + 47.665885 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Blois Villerbon", + "ref": "FRIONE40800", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60966, + 44.171306 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agen", + "ref": "FRIONE43270", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60966, + 44.171306 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agen", + "ref": "FRIONE43270", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60966, + 44.171306 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Agen", + "ref": "FRIONE43270", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.836951, + 47.565651 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CHAMPADIS BORNE 2", + "ref": "FRCPIE6543575", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.836951, + 47.565651 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CHAMPADIS BORNE 2", + "ref": "FRCPIE6543575", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09677, + 47.43294 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Pontchateau", + "ref": "FRIENE004501", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09677, + 47.43294 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Pontchateau", + "ref": "FRIENE004501", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09677, + 47.43294 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Pontchateau", + "ref": "FRIENE004502", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09677, + 47.43294 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Pontchateau", + "ref": "FRIENE004502", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.81278, + 45.856003 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire du Haut Forez Nord", + "ref": "FRSPSESHEL101", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.992031, + 46.010641 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "TROISGROS OUCHES", + "ref": "FRCPIE6629385", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.992031, + 46.010641 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "TROISGROS OUCHES", + "ref": "FRCPIE6629385", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17560786, + 45.9148288 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Neulise", + "ref": "FRIENE004702", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17560786, + 45.9148288 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Neulise", + "ref": "FRIENE004702", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17560786, + 45.9148288 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Neulise", + "ref": "FRIENE004701", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17560786, + 45.9148288 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Neulise", + "ref": "FRIENE004701", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.680823, + 47.820159 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE U BORNE PUBLIQUE3", + "ref": "FRCPIE6540215", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.680823, + 47.820159 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE U BORNE PUBLIQUE3", + "ref": "FRCPIE6540215", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51178345, + 47.48421863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "313643108", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Super U - Saint Barthelemy d'Anjou", + "ref": "65281", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.51178345, + 47.48421863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "313643108", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Super U - Saint Barthelemy d'Anjou", + "ref": "65280", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.1984829, + 44.6656545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Masseria", + "owner:ref:FR:SIREN": "877614388", + "email": "sas.masseria@gmail.com", + "phone": "0680338905", + "network": "Charge banarge", + "ref": "ceec7d44-ba61-11ec-8422-0242ac120002", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.18225850129804153, + 44.677126551459914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Hostellerie", + "owner:ref:FR:SIREN": "317782282", + "email": "hostellerie.des.ducs@wanadoo.fr", + "phone": "0553837458", + "network": "Charge parking", + "ref": "1ce943d0-0fe2-11ed-861d-0242ac120002", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.046409, + 46.020022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "313283707", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda ROANNE", + "ref": "50713", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-18:00; Sa:09:00-19:00", + "start_date": "2021-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.046409, + 46.020022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "313283707", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda ROANNE", + "ref": "50663", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 09:00-18:00; Sa:09:00-19:00", + "start_date": "2021-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9592363524417444, + 45.048291304036994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "electromaps", + "owner:ref:FR:SIREN": "434543864", + "email": "maximilien.kauffmann@wallbox.com", + "phone": "0694 495 065", + "network": "Armstrong France", + "ref": "02af2893-256f-4124-8d58-c728dc38f720", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.625849, + 47.562551 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D7MMXLNJZN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.625849, + 47.562551 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D7MMXLNJZN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9670507, + 46.10233755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RB8VUBDF3E", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9670507, + 46.10233755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RB8VUBDF3E", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13106762, + 44.43558016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F5YXGNA3QT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13106762, + 44.43558016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F5YXGNA3QT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13106762, + 44.43558016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F5YXGNA3QT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13106762, + 44.43558016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F5YXGNA3QT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13106762, + 44.43558016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F5YXGNA3QT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.13106762, + 44.43558016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "F5YXGNA3QT", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09795, + 46.0745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MGREFT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87468, + 48.082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KJ10TZEAZY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-13", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87468, + 48.082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KJ10TZEAZY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-13", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.85226899, + 44.93490781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TDVUPC3TPJ", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.85226899, + 44.93490781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TDVUPC3TPJ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.851934, + 44.934925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TDVUPC3TPJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.851934, + 44.934925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TDVUPC3TPJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.161801, + 47.898629 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JRJ1YQKCPS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.161801, + 47.898629 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JRJ1YQKCPS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.161801, + 47.898629 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JRJ1YQKCPS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WRBRGD5HQU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WRBRGD5HQU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WRBRGD5HQU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WRBRGD5HQU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WRBRGD5HQU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WRBRGD5HQU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WRBRGD5HQU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498943, + 47.269888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WRBRGD5HQU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.161801, + 47.898629 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JRJ1YQKCPS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95608, + 45.0524 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CRWPFJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.61389631, + 47.76883595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QQHTLB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71117858, + 47.8386646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GPVWBL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.94082796, + 47.71970516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RGPNLAOCAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.680396, + 47.177474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YO82KYWPO8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.680396, + 47.177474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YO82KYWPO8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.680396, + 47.177474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YO82KYWPO8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.680396, + 47.177474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YO82KYWPO8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22186, + 47.8647 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XKURJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22186, + 47.8647 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XKURJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.52842377, + 44.50620136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FOXO36TF3N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55983046, + 50.58494308 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FJFJ2RMYHE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55983046, + 50.58494308 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FJFJ2RMYHE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UNQ35Y4FOV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UNQ35Y4FOV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UNQ35Y4FOV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UNQ35Y4FOV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UNQ35Y4FOV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UNQ35Y4FOV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UNQ35Y4FOV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UNQ35Y4FOV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UNQ35Y4FOV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5400952, + 47.44477797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UNQ35Y4FOV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.874431, + 47.778742 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZTVN6MH7ZS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.016118, + 47.767776 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ENDRSP8NDE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.782903, + 47.684238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GGAMYMHXPY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.782903, + 47.684238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GGAMYMHXPY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.022384, + 47.764535 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZXZOFYGKVX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32809978, + 47.58592667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O3UK5WP8FZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32809978, + 47.58592667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O3UK5WP8FZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33434301, + 47.58522112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P51P4TWAKQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33735242, + 47.59067717 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N0WQCZ7HFA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33735242, + 47.59067717 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N0WQCZ7HFA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.33434301, + 47.58522112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "P51P4TWAKQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FSNNG1M2HO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7162002, + 47.20721543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MGDPUMKMC1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7162002, + 47.20721543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MGDPUMKMC1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7162002, + 47.20721543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MGDPUMKMC1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7162002, + 47.20721543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MGDPUMKMC1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FSNNG1M2HO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FSNNG1M2HO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FSNNG1M2HO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FSNNG1M2HO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FSNNG1M2HO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FSNNG1M2HO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.435828, + 47.42967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FSNNG1M2HO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.379421, + 47.411066 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O0FFV7GKYB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37949435, + 47.41108404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AKV9BI2KZM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UDXBVSFWM2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UDXBVSFWM2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UDXBVSFWM2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UDXBVSFWM2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UDXBVSFWM2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UDXBVSFWM2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UDXBVSFWM2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UDXBVSFWM2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UDXBVSFWM2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.55929424, + 50.5928785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UDXBVSFWM2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.438944, + 48.251975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIVTFWC012SUU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.438944, + 48.251975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIVTFWC012SUU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.438944, + 48.251975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIVTFWC012SUU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.62090418, + 47.46554085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RC3V7VKDRM", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.134109, + 47.907849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Z7C3K9UPQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9563, + 45.0508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZWMI4CXHPK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9563, + 45.0508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZWMI4CXHPK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07523059, + 47.43460702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTOLZUTYPN", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07523059, + 47.43460702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OTOLZUTYPN", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09516456, + 45.61089661 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MRITJNKUD6", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19840202, + 47.37171155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNPCFQ7OXG", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19840202, + 47.37171155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNPCFQ7OXG", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59124713, + 47.46810112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D7WPB3XQ6G", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.59124713, + 47.46810112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D7WPB3XQ6G", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38346433, + 47.70708673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N41JBEJUX0", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38346433, + 47.70708673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N41JBEJUX0", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.76213639, + 44.61024498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RRQIJKR9TI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16311718, + 44.42822916 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KNICVTLTDG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16311718, + 44.42822916 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KNICVTLTDG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716798, + 44.4296686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HZABK7HN5Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16716798, + 44.4296686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HZABK7HN5Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.457057, + 43.599069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PZKSGTHL8A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.457057, + 43.599069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PZKSGTHL8A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.457057, + 43.599069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PZKSGTHL8A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.457057, + 43.599069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PZKSGTHL8A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.393396, + 47.170026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "V99LMKPLKF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.393396, + 47.170026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "V99LMKPLKF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.874431, + 47.778742 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZTVN6MH7ZS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.810482, + 47.745587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RIQRNFFR14", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8908, + 47.9577 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A5L76J0IDO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74585148, + 47.73526312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VESSJQ8AJC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24703674, + 44.45071211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RJWGDOQTTA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24703674, + 44.45071211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RJWGDOQTTA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74585148, + 47.73526312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VESSJQ8AJC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.78906947, + 48.08593055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PTOMNLSUF6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.78906947, + 48.08593055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PTOMNLSUF6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.214071, + 44.433196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YZVL09C8UY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.214071, + 44.433196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YZVL09C8UY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513303, + 47.887476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AYM7H1XRJQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513303, + 47.887476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AYM7H1XRJQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.637139, + 47.682443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUEONUMUAN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.637139, + 47.682443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUEONUMUAN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06467, + 47.271713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAOFNVECAW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06467, + 47.271713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAOFNVECAW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.878637, + 47.759701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C6B2YXNKME", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06467, + 47.271713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAOFNVECAW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.878637, + 47.759701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C6B2YXNKME", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.878637, + 47.759701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C6B2YXNKME", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379674, + 47.793541 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VAL9KPXK5Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.878637, + 47.759701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C6B2YXNKME", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.878637, + 47.759701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C6B2YXNKME", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.878637, + 47.759701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C6B2YXNKME", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06467, + 47.271713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAOFNVECAW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379674, + 47.793541 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VAL9KPXK5Y", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.513958, + 47.702978 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WMZBSDUXHJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06467, + 47.271713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAOFNVECAW", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.513958, + 47.702978 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WMZBSDUXHJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.06467, + 47.271713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAOFNVECAW", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0971813, + 45.60512863 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KFIO5AUOI5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24029603, + 43.68212111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PIQJLO1TXU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24029603, + 43.68212111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PIQJLO1TXU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28624508, + 47.08027089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XA7W3VU7CJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8491821, + 47.07137504 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MSJI4GKDMB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8491821, + 47.07137504 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MSJI4GKDMB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8491821, + 47.07137504 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MSJI4GKDMB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8491821, + 47.07137504 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MSJI4GKDMB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59592, + 44.8262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GS6LRLDFED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28624508, + 47.08027089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XA7W3VU7CJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59592, + 44.8262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GS6LRLDFED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59592, + 44.8262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GS6LRLDFED", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59592, + 44.8262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GS6LRLDFED", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59592, + 44.8262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GS6LRLDFED", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.59592, + 44.8262 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GS6LRLDFED", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.532914, + 47.449045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IWH1A2IBF7", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28624508, + 47.08027089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XA7W3VU7CJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.431697, + 44.178949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A8RIVCHP5G", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.431697, + 44.178949 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A8RIVCHP5G", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11453028, + 44.81628383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QGLWSBDZQW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11453028, + 44.81628383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QGLWSBDZQW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11453028, + 44.81628383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QGLWSBDZQW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.11453028, + 44.81628383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QGLWSBDZQW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.3393309, + 44.73389129 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "X6DOW05MMB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17269426, + 46.15587017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FI7ROKDWGQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17269426, + 46.15587017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FI7ROKDWGQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.532914, + 47.449045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IWH1A2IBF7", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60437868, + 44.19037435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W8NSPQCMF8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60437868, + 44.19037435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W8NSPQCMF8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60437868, + 44.19037435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W8NSPQCMF8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60437868, + 44.19037435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W8NSPQCMF8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60437868, + 44.19037435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W8NSPQCMF8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60437868, + 44.19037435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W8NSPQCMF8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.668832, + 47.809545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MHD8X0KU4L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.668832, + 47.809545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MHD8X0KU4L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.668832, + 47.809545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MHD8X0KU4L", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.668832, + 47.809545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MHD8X0KU4L", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27719449, + 45.37768304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EWHDONWUTE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27719449, + 45.37768304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EWHDONWUTE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27719449, + 45.37768304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EWHDONWUTE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27719449, + 45.37768304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EWHDONWUTE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27719449, + 45.37768304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EWHDONWUTE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.27719449, + 45.37768304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EWHDONWUTE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.37441847, + 45.31480139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TBJUNGUIF2", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.37441847, + 45.31480139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TBJUNGUIF2", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085731, + 46.053815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AI1UC0OYPF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085731, + 46.053815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AI1UC0OYPF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.496269, + 46.76139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TBJUNGUIF2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.038671, + 46.015545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W6UE0JKLKL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.37441847, + 45.31480139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TBJUNGUIF2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.37441847, + 45.31480139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TBJUNGUIF2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.038671, + 46.015545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W6UE0JKLKL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.496269, + 46.76139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TBJUNGUIF2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.038671, + 46.015545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W6UE0JKLKL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.038671, + 46.015545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W6UE0JKLKL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.829201, + 50.411893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TICAR3Q0OM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.829201, + 50.411893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TICAR3Q0OM", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.829201, + 50.411893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TICAR3Q0OM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.829201, + 50.411893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TICAR3Q0OM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085731, + 46.053815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AI1UC0OYPF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085731, + 46.053815 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AI1UC0OYPF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.829201, + 50.411893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TICAR3Q0OM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.829201, + 50.411893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TICAR3Q0OM", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378426, + 45.443624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YTJ4Y9PL7Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VOSJB7Z6S8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378426, + 45.443624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YTJ4Y9PL7Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VOSJB7Z6S8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378426, + 45.443624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YTJ4Y9PL7Q", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VOSJB7Z6S8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378426, + 45.443624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YTJ4Y9PL7Q", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VOSJB7Z6S8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VOSJB7Z6S8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.068128, + 45.609138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNSYPNWAHQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VOSJB7Z6S8", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.217572, + 45.523377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XHKFRPJTZC", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.520037, + 45.478882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DQAOP9IPRJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VOSJB7Z6S8", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.217572, + 45.523377 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XHKFRPJTZC", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.520037, + 45.478882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DQAOP9IPRJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378426, + 45.443624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YTJ4Y9PL7Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225677, + 45.726768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VOSJB7Z6S8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.613876, + 47.249316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GUEO9FTWBS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQX0OZTVMC", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.527709, + 47.396284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A1YA9QASHE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.068128, + 45.609138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TNSYPNWAHQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383538, + 45.406979 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DXHSAGJEDX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.292144, + 45.395554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FU2H3DXVPO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.292144, + 45.395554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FU2H3DXVPO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383538, + 45.406979 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DXHSAGJEDX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378426, + 45.443624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YTJ4Y9PL7Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.527709, + 47.396284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A1YA9QASHE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.616289, + 47.211421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C2QSB9HMEI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.030542, + 43.706265 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PEPRHZRXHR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.030542, + 43.706265 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PEPRHZRXHR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.967053, + 44.490287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KSIC9LD3KI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.967053, + 44.490287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KSIC9LD3KI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQX0OZTVMC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.638397, + 47.047134 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R9HLO5VJ24", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502432, + 47.445137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZREBJTTI3B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.502432, + 47.445137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZREBJTTI3B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.616289, + 47.211421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C2QSB9HMEI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.156162, + 47.241382 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LBNGT0AA3J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.591795, + 47.197913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MIGOKDUUYZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQX0OZTVMC", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQX0OZTVMC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.527865, + 47.242816 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AZAJKTPA3O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQX0OZTVMC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQX0OZTVMC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQX0OZTVMC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.28237, + 47.258777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQX0OZTVMC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.613876, + 47.249316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GUEO9FTWBS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.591795, + 47.197913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MIGOKDUUYZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.527865, + 47.242816 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AZAJKTPA3O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.527709, + 47.396284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A1YA9QASHE", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.527709, + 47.396284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A1YA9QASHE", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.591795, + 47.197913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MIGOKDUUYZ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.156162, + 47.241382 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LBNGT0AA3J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.591795, + 47.197913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MIGOKDUUYZ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.208344, + 47.290441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VHJJAQQP0F", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.616289, + 47.211421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C2QSB9HMEI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.638397, + 47.047134 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R9HLO5VJ24", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.616289, + 47.211421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C2QSB9HMEI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.208344, + 47.290441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VHJJAQQP0F", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7390536, + 44.40577777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UJZ0SC4ZZC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.7390536, + 44.40577777 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UJZ0SC4ZZC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5016092, + 45.10077504 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HTQSBOQOG8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.5016092, + 45.10077504 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HTQSBOQOG8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.11311, + 45.1445 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QP2QGHOLTL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.11311, + 45.1445 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QP2QGHOLTL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.140287, + 48.201938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E2LLOSSIAV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.140287, + 48.201938 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E2LLOSSIAV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331992117, + 47.61497852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N2CH6C5QBH", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331992117, + 47.61497852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N2CH6C5QBH", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331992117, + 47.61497852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N2CH6C5QBH", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331992117, + 47.61497852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N2CH6C5QBH", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331992117, + 47.61497852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N2CH6C5QBH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-28", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331992117, + 47.61497852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "N2CH6C5QBH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-28", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95577706, + 45.05030241 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZLOEP13R8Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.95577706, + 45.05030241 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZLOEP13R8Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37212484, + 47.56237043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XEIHBKLJME", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.171193, + 44.505702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JLDOS4PD2H", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.171193, + 44.505702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JLDOS4PD2H", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.991944, + 43.609892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GYNIQ5AGRO", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37212484, + 47.56237043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XEIHBKLJME", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74199, + 47.8454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VVDFEN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-01-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.74199, + 47.8454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VVDFEN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-01-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020973, + 47.893798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GKS0FGLKUY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8961, + 47.89256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PBVWXODJGA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.90126, + 47.90074 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I6GJEEHANQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.968126, + 47.832466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SDVWXZW1J4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.81417, + 47.94254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TDQIJPJMNC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.910195, + 47.905229 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H5QTPJILRB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.909853, + 47.905313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PSUDUL9MIJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9046868, + 47.9028761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MH4YHU6SK6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.910526, + 47.905144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BXRRLVQJLH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95514, + 47.87808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RG6TILUNOU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8339996, + 47.8867824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NMFVTC5INF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.873796, + 47.884736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GWXYTVBPSU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.94856, + 47.93718 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUGYSMFOZQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87386, + 47.9508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OJGJFQZ0RB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.96998, + 47.91192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PZE0R0CX2I", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83385, + 47.86555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EF6ASZTSVN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046781, + 47.87412 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVHCOYXT0Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.96998, + 47.91192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PZE0R0CX2I", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.910195, + 47.905229 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "H5QTPJILRB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.81417, + 47.94254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TDQIJPJMNC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.909853, + 47.905313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PSUDUL9MIJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9025136, + 47.9053752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FGU7G4ZMF1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9030715, + 47.9039133 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O075GC5TMJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.968126, + 47.832466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SDVWXZW1J4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.95514, + 47.87808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RG6TILUNOU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.83385, + 47.86555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EF6ASZTSVN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9046868, + 47.9028761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MH4YHU6SK6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.910526, + 47.905144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BXRRLVQJLH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.90126, + 47.90074 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I6GJEEHANQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8961, + 47.89256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PBVWXODJGA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.93456, + 47.88026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HSZFHCDE65", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.873796, + 47.884736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GWXYTVBPSU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87386, + 47.9508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OJGJFQZ0RB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87737, + 47.911473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZIWOWMFJOR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.93456, + 47.88026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HSZFHCDE65", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.972238, + 47.966138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T0XMNJU9T9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.046781, + 47.87412 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TVHCOYXT0Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.82654, + 47.919474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DEAGBEULR4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6335347, + 47.23003877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AHSA5KVF5H", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6335347, + 47.23003877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AHSA5KVF5H", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6335347, + 47.23003877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AHSA5KVF5H", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8911351, + 47.8634133 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KWO1HTGHLY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05386, + 47.89206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZRINLM4J90", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986572, + 47.900234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YHVKIMCLPK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9109, + 47.93292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GI557RXISG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.010412, + 47.922145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TCKN0ZQ234", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.010412, + 47.922145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TCKN0ZQ234", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01551, + 47.95631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LXDKXFFZNL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9030715, + 47.9039133 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O075GC5TMJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8911351, + 47.8634133 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KWO1HTGHLY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.89790996, + 47.86552972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S7VYUHK4NE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.972238, + 47.966138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T0XMNJU9T9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9025136, + 47.9053752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FGU7G4ZMF1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01551, + 47.95631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LXDKXFFZNL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.82654, + 47.919474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DEAGBEULR4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.05386, + 47.89206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZRINLM4J90", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.89790996, + 47.86552972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S7VYUHK4NE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.87737, + 47.911473 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZIWOWMFJOR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.9109, + 47.93292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GI557RXISG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OA04A96XNU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OA04A96XNU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87623698, + 47.04568014 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R5WTOSEIZZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87623698, + 47.04568014 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R5WTOSEIZZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.903664, + 47.916515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BCW6UDGKOZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.903664, + 47.916515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BCW6UDGKOZ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.903664, + 47.916515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BCW6UDGKOZ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8339996, + 47.8867824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NMFVTC5INF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.94856, + 47.93718 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LUGYSMFOZQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.986572, + 47.900234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YHVKIMCLPK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020973, + 47.893798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GKS0FGLKUY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OA04A96XNU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OA04A96XNU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OA04A96XNU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OA04A96XNU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OA04A96XNU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8366292, + 47.07524849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OA04A96XNU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.94082796, + 47.71970516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RGPNLAOCAJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42513259, + 43.6455718 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WFAMGXB1VA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42513259, + 43.6455718 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WFAMGXB1VA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67113874, + 44.1818174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VYJZUKWZHX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67113874, + 44.1818174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VYJZUKWZHX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67113874, + 44.1818174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VYJZUKWZHX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.67113874, + 44.1818174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VYJZUKWZHX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42513259, + 43.6455718 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WFAMGXB1VA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.42513259, + 43.6455718 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WFAMGXB1VA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72378857, + 47.2367842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VWWWTFPIOK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMSVTLL4KF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMSVTLL4KF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMSVTLL4KF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMSVTLL4KF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMSVTLL4KF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28205855, + 45.5318271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMSVTLL4KF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.740703, + 45.425126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YYJ7KQJT6G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.740703, + 45.425126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YYJ7KQJT6G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.740703, + 45.425126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YYJ7KQJT6G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75343753, + 47.47545122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KXNEVQRIEC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16893921, + 44.40991852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AJUHLGDXWB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16893921, + 44.40991852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AJUHLGDXWB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16893921, + 44.40991852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AJUHLGDXWB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16893921, + 44.40991852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AJUHLGDXWB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16893921, + 44.40991852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AJUHLGDXWB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.16893921, + 44.40991852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AJUHLGDXWB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75343753, + 47.47545122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KXNEVQRIEC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75343753, + 47.47545122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KXNEVQRIEC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75343753, + 47.47545122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KXNEVQRIEC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.740703, + 45.425126 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YYJ7KQJT6G", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72378857, + 47.2367842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VWWWTFPIOK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91940238, + 47.94408873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NBQHPADN4M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91940238, + 47.94408873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NBQHPADN4M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91940238, + 47.94408873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NBQHPADN4M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72378857, + 47.2367842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VWWWTFPIOK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07824542, + 47.4360704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GDMHCEAKTI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07824542, + 47.4360704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GDMHCEAKTI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07824542, + 47.4360704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GDMHCEAKTI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91940238, + 47.94408873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NBQHPADN4M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91940238, + 47.94408873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NBQHPADN4M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.91940238, + 47.94408873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NBQHPADN4M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07824542, + 47.4360704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GDMHCEAKTI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07824542, + 47.4360704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GDMHCEAKTI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07824542, + 47.4360704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GDMHCEAKTI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38766148, + 47.70646222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDMLYUQSSU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38766148, + 47.70646222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDMLYUQSSU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38766148, + 47.70646222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDMLYUQSSU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38766148, + 47.70646222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDMLYUQSSU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72378857, + 47.2367842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VWWWTFPIOK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.28119602, + 47.09754279 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJNRQHE26R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84331096, + 44.92429655 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EGZ64DHCH9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84331096, + 44.92429655 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EGZ64DHCH9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84331096, + 44.92429655 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EGZ64DHCH9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.84331096, + 44.92429655 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EGZ64DHCH9", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.575379, + 47.483878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OWQGWF0OGT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.978028, + 44.48583474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VD9HES2EX5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.978028, + 44.48583474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VD9HES2EX5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.978028, + 44.48583474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VD9HES2EX5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.978028, + 44.48583474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VD9HES2EX5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HV5IVJHUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HV5IVJHUQH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HV5IVJHUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HV5IVJHUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HV5IVJHUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HV5IVJHUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HV5IVJHUQH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.22077205, + 44.20556967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HV5IVJHUQH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.31497627, + 47.45070608 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEPHSK0X97", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.31497627, + 47.45070608 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEPHSK0X97", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.31497627, + 47.45070608 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEPHSK0X97", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.31497627, + 47.45070608 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VEPHSK0X97", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BVXNEXLOLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BVXNEXLOLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BVXNEXLOLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BVXNEXLOLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BVXNEXLOLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BVXNEXLOLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BVXNEXLOLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.7206684, + 44.78683159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BVXNEXLOLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W9UNHTTQOI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W9UNHTTQOI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W9UNHTTQOI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W9UNHTTQOI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W9UNHTTQOI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W9UNHTTQOI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W9UNHTTQOI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.92669753, + 44.20242742 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "W9UNHTTQOI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19986463, + 44.0331341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQ1TNKNZLU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.19986463, + 44.0331341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GQ1TNKNZLU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.022384, + 47.764535 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZXZOFYGKVX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.810482, + 47.745587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RIQRNFFR14", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.016118, + 47.767776 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ENDRSP8NDE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3XWXLIQVP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3XWXLIQVP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3XWXLIQVP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3XWXLIQVP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3XWXLIQVP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3XWXLIQVP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3XWXLIQVP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3XWXLIQVP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3XWXLIQVP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3XWXLIQVP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58914992, + 47.26239792 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "R3XWXLIQVP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57200064, + 47.19327037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43113034, + 47.68657067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZRLDYDOYI6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43113034, + 47.68657067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZRLDYDOYI6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43113034, + 47.68657067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZRLDYDOYI6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.43113034, + 47.68657067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZRLDYDOYI6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57662868, + 47.19260692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SSPQRIGGGG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48017663, + 43.86358416 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBMCIPOQG1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48017663, + 43.86358416 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JBMCIPOQG1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17062351, + 44.41122908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ROTRW5ZTBM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17062351, + 44.41122908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ROTRW5ZTBM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29828589, + 45.38837751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VGLWGT1XND", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26194, + 43.699975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IASECPLLXC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26354, + 43.715637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAOUCGH4D2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.850912, + 47.910303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THW2NLV0GF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.850912, + 47.910303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "THW2NLV0GF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26354, + 43.701569 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S5MAYKG1DE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26354, + 43.715637 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SAOUCGH4D2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26194, + 43.699975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IASECPLLXC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26174, + 43.699974 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WHUT1OA2QQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26141, + 43.7024 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EBBPTU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26142, + 43.7024 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EBBPTU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26354, + 43.701569 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "S5MAYKG1DE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.26174, + 43.699974 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WHUT1OA2QQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.261654, + 43.702444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I6QFCRFVXE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.261654, + 43.702444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "I6QFCRFVXE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47166975, + 47.509418 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRNTWNCMBI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-18:00", + "start_date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47166975, + 47.509418 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRNTWNCMBI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-18:00", + "start_date": "2022-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.584887, + 44.163136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMEFMD4DXW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.026832, + 43.136314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JVRK3JQHGA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.584887, + 44.163136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IMEFMD4DXW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.026832, + 43.136314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JVRK3JQHGA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.026832, + 43.136314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JVRK3JQHGA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.026832, + 43.136314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JVRK3JQHGA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8535064, + 47.95248388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AMULMNANEO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-18:00", + "start_date": "2022-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.8535064, + 47.95248388 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AMULMNANEO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-18:00", + "start_date": "2022-08-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.856747, + 46.17183 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QEKHJI0HSD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.856747, + 46.17183 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QEKHJI0HSD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378455, + 45.465818 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MKXKYJ22DI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378455, + 45.465818 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MKXKYJ22DI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.398596, + 45.442679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JVDXH7QTI9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.398596, + 45.442679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JVDXH7QTI9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37255875, + 45.41546181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LOG48IHQH0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37255875, + 45.41546181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LOG48IHQH0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.407229, + 45.4200166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MXFE5YVCKF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.407229, + 45.4200166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MXFE5YVCKF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.569035, + 50.598908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WYZVCJ7RTY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.88935, + 50.50677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NDOJ4662KH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.569035, + 50.598908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WYZVCJ7RTY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.569035, + 50.598908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WYZVCJ7RTY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.569035, + 50.598908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WYZVCJ7RTY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22669529, + 47.49898491 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YNDBGQMNFP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22669529, + 47.49898491 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YNDBGQMNFP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47975, + 47.509 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AUVTU2DO3E", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.47975, + 47.509 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AUVTU2DO3E", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38006236, + 43.67342588 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EG8ALQQG74", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.38006236, + 43.67342588 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EG8ALQQG74", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.647216, + 47.263248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QVONONBFDE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33668507, + 45.78753257 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SYZW93FWG5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.33668507, + 45.78753257 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SYZW93FWG5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.647216, + 47.263248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QVONONBFDE", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.647216, + 47.263248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QVONONBFDE", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87841511, + 47.6791211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FPVIHBM6KU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87841511, + 47.6791211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FPVIHBM6KU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87841511, + 47.6791211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FPVIHBM6KU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87841511, + 47.6791211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FPVIHBM6KU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCYZMPMIOE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCYZMPMIOE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCYZMPMIOE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCYZMPMIOE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCYZMPMIOE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCYZMPMIOE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCYZMPMIOE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.46184814, + 44.8986309 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LCYZMPMIOE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98099938, + 44.48613399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRAPXJYUMM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.98099938, + 44.48613399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRAPXJYUMM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.28992534, + 45.25771148 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MNZELUZI7A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32445998, + 47.61544993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MA9BCHTCYB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32445998, + 47.61544993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MA9BCHTCYB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32445998, + 47.61544993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MA9BCHTCYB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.32445998, + 47.61544993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MA9BCHTCYB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08114988, + 47.43337469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SILXS1RMLH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08114988, + 47.43337469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SILXS1RMLH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08114988, + 47.43337469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SILXS1RMLH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08114988, + 47.43337469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SILXS1RMLH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08114988, + 47.43337469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SILXS1RMLH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.08114988, + 47.43337469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SILXS1RMLH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 9.27597437, + 41.59735225 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "D2EUNOUMJS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05470158, + 46.04503677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XL2OE745FF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05470158, + 46.04503677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XL2OE745FF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05470158, + 46.04503677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XL2OE745FF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05470158, + 46.04503677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XL2OE745FF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05470158, + 46.04503677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XL2OE745FF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05470158, + 46.04503677 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XL2OE745FF", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.71553555, + 47.37369171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PGRUBML7KD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04559503, + 43.73217763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZJ0HFJ186C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04559503, + 43.73217763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZJ0HFJ186C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04559503, + 43.73217763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZJ0HFJ186C", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.04559503, + 43.73217763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZJ0HFJ186C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0783013, + 47.64704237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYKZJX4FHI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0783013, + 47.64704237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYKZJX4FHI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0783013, + 47.64704237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYKZJX4FHI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0783013, + 47.64704237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYKZJX4FHI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0783013, + 47.64704237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYKZJX4FHI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0783013, + 47.64704237 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZYKZJX4FHI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38309193, + 45.47548009 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JRR1WB5NO2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38309193, + 45.47548009 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JRR1WB5NO2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVPEOSH3BV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVPEOSH3BV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVPEOSH3BV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVPEOSH3BV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVPEOSH3BV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVPEOSH3BV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVPEOSH3BV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVPEOSH3BV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVPEOSH3BV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.66996705, + 47.46494175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVPEOSH3BV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38828882, + 50.0634183 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TCSM2FPN91", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38828882, + 50.0634183 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TCSM2FPN91", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.38828882, + 50.0634183 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TCSM2FPN91", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50304314, + 47.48143352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BSKY08VNWK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.50304314, + 47.48143352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BSKY08VNWK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.70724, + 47.62246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OY9U2KDFHP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.70724, + 47.62246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OY9U2KDFHP", + "socket:typee": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44292094, + 43.92378544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZSAZHIGU1P", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13202835, + 43.71686462 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QQHZ79XAXR", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44292094, + 43.92378544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZSAZHIGU1P", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44292094, + 43.92378544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZSAZHIGU1P", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.44292094, + 43.92378544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZSAZHIGU1P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.839895, + 45.737464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XWE4EWS3MA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3438463, + 50.84746188 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIC8ALLHQN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3438463, + 50.84746188 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EIC8ALLHQN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.35359, + 45.4764 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VKXMXT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37747327, + 44.7449334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIJWV6HQ25LEY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.37747327, + 44.7449334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIJWV6HQ25LEY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38, + 45.47 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Perrin", + "owner:ref:FR:SIREN": "330590449", + "email": "nellyperrin@me.com", + "phone": "0610284454", + "network": "IBIS HOTEL LA TERRAS", + "ref": "8e30cdf7-c9a7-48a3-a51b-9360b5620719", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1669286, + 44.3974258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "909177295", + "email": "a.tarridec@maborneauto.com", + "phone": "361626161", + "network": "RENAULT BISCAROSSE", + "ref": "31f4a65e-bbd2-4e46-a5cf-5714f0143e2a", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.654645323753357, + 47.234375 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "BORNECO", + "owner:ref:FR:SIREN": "818984221", + "email": "freddy.borneco@gmail.com", + "phone": "0669684978", + "network": "le colisee", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6073542, + 45.5257463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "531669737", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Bricomarché Rive de Gier", + "ref": "77754", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.6073542, + 45.5257463 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "531669737", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Bricomarché Rive de Gier ", + "ref": "77752", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.029971, + 45.210931 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "480819705", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "INTERMARCHE - RETOURNAC", + "ref": "70163", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Sa 08:30-19:30", + "start_date": "2021-08-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.029971, + 45.210931 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "480819705", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "INTERMARCHE - RETOURNAC", + "ref": "70164", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Sa 08:30-19:30", + "start_date": "2021-08-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0737222, + 43.7274444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "324104935", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Saint-Paul les Dax", + "ref": "118370", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-sat 08:30-20:00", + "start_date": "2020-11-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0737222, + 43.7274444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "324104935", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Saint-Paul les Dax", + "ref": "118367", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-sat 08:30-20:00", + "start_date": "2022-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0737222, + 43.7274444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "324104935", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Saint-Paul les Dax", + "ref": "71607", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-sat 08:30-20:00", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0737222, + 43.7274444 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "324104935", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Intermarché - Saint-Paul les Dax", + "ref": "71572", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-sat 08:30-20:00", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.1357063, + 47.2277788 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "057202046", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Ford - Saumur", + "ref": "31929", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-sat 08:30-19:00", + "start_date": "2020-03-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1891329694156174, + 47.407691498712914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "AUTORECHARGE ", + "owner:ref:FR:SIREN": "897638383", + "email": "contact@autorecharge.Fr", + "phone": "0970755400", + "network": "Réseau de charge AUTORECHARGE", + "ref": "039ba96d-7e11-4dd7-be8c-5a57279ba65f", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.648074, + 47.525771 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.648074, + 47.525771 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "255601106", + "email": "support@freshmile.com", + "phone": "0388688458", + "network": "Morbihan Energies", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.153194012, + 44.5041561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EV MAP SAS", + "owner:ref:FR:SIREN": "727350183", + "email": "contact@evmap.fr", + "phone": "09 73 79 63 33", + "network": "GARAGE RAYMOND", + "ref": " NVG0B46001", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00", + "start_date": "2023-06-29", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149585, + 44.507331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "399919927", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Ford Marmande - Groupe Malbet", + "ref": "E175319 ", + "socket:typee": "yes", + "socket:type2": "yes", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Lu- Ve 08:00-19:00, Sa 08:00-18:00", + "start_date": "2023-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.149585, + 44.507331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "399919927", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Ford Marmande - Groupe Malbet", + "ref": "E175320", + "socket:typee": "yes", + "socket:type2": "yes", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Lu- Ve 08:00-19:00, Sa 08:00-18:00", + "start_date": "2023-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6233490421436728, + 44.180912759319284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "314684572", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Ford Agen- Groupe Malbet", + "ref": "E175425", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Sa 09:00-19:00", + "start_date": "2023-01-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.6233490421436728, + 44.180912759319284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "314684572", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Ford Agen- Groupe Malbet", + "ref": "E172798", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Sa 09:00-19:00", + "start_date": "2023-01-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.633379459639794, + 47.230062067926525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "323873174", + "email": "exploitation@freshmile.com", + "phone": "369246732", + "network": "Freshmile", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-15", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.633379459639794, + 47.230062067926525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "323873174", + "email": "exploitation@freshmile.com", + "phone": "369246732", + "network": "Freshmile", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-15", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.633379459639794, + 47.230062067926525 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "owner:ref:FR:SIREN": "323873174", + "email": "exploitation@freshmile.com", + "phone": "369246732", + "network": "Freshmile", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-15", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.051543085729363, + 48.16127710253362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Carrefour Contact Bazoche Les Gallerandes", + "ref": "FRCARP45025A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.051543085729363, + 48.16127710253362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Carrefour Contact Bazoche Les Gallerandes", + "ref": "FRCARP45025A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0767992, + 44.3455705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "909177297", + "email": "a.tarridec@maborneauto.com", + "phone": "0361626161", + "network": "TRISCOS LAVAGE", + "ref": "5f632578-9bb2-4c7d-b991-8f77b09b1f9f", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-25", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331869, + 47.612421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331869, + 47.612421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331869, + 47.612421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.331869, + 47.612421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.39, + 43.67 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SARL LAFOURCADE ", + "owner:ref:FR:SIREN": "433220761", + "email": "sarl.lafourcade@orange.fr", + "phone": "0558436633", + "network": "SARL LAFOURCADE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.472599, + 48.084312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Last Mile Solutions", + "owner:ref:FR:SIREN": "909073363", + "email": "support@lastmilesolutions.com", + "phone": "+31 10 312 6000", + "network": "Last Mile Solutions", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4743602103553713, + 47.51236168509763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "449926302", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "RURAL GARDEN", + "ref": "E170549", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Sa 09:00-19:30", + "start_date": "2022-12-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1967988, + 44.4381511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RechargerMonAuto", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref": "6460e7e38a20f02768a74212", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1967988, + 44.4381511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RechargerMonAuto", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref": "6460e7e38a20f02768a74212", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.1967988, + 44.4381511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "RechargerMonAuto", + "email": "contact@rechargermonauto.com", + "phone": "0972114955", + "network": "RechargerMonAuto", + "ref": "6460e7e38a20f02768a74212", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.62602, + 47.96226 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "97a73804-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2017-11-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.792899, + 48.034992 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "9f856230-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.772764, + 47.968284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "a01624a0-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-03-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.736547, + 47.918313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "9fd0f8f8-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.786245, + 47.952592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "a169a05c-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.774432, + 47.968048 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "a05bc5e6-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-03-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.709255, + 47.99084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "a09b9afe-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.618866, + 47.991795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "9e89cd76-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.631166, + 47.940851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "954250ee-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.686007, + 47.945937 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "9ecf01fc-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-09-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.730546, + 48.012275 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "9f13aabe-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.714751, + 47.989077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "9e46dd7c-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.72942, + 48.000205 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "9cd734f0-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.697983, + 48.045053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "9e0235dc-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.740797, + 48.043351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "a250ea3e-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.729438, + 48.000162 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "9c6588aa-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.672061, + 48.017411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "a20a11fe-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.715104, + 48.020196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "9d2d3774-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.736391, + 47.930405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "9dbac706-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.729456, + 48.000117 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-totem", + "owner:ref:FR:SIREN": "244500203", + "email": "contact@e-totem.fr", + "phone": "04 28 04 42 05", + "network": "E-totem", + "ref": "9d77585e-c89a-11ed-afa1-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.395016, + 50.6610416 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "AREA Tech", + "email": "contact@area-tech.fr", + "network": "AREA Tech", + "socket:typee": "yes", + "socket:type2": "yes", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.395016, + 50.6610416 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "AREA Tech", + "email": "contact@area-tech.fr", + "network": "AREA Tech", + "socket:type2_combo": "yes", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.395016, + 50.6610416 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "AREA Tech", + "email": "contact@area-tech.fr", + "network": "AREA Tech", + "socket:typee": "yes", + "socket:type2": "yes", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.395016, + 50.6610416 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "AREA Tech", + "email": "contact@area-tech.fr", + "network": "AREA Tech", + "socket:type2_combo": "yes", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Su 00:00-23:59" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4, + 45.44 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "perrin", + "owner:ref:FR:SIREN": "347412850", + "email": "mcelette@lumilec-electricité.fr", + "phone": "0610284454", + "network": "IBIS CHATEAUCREUX SAINT ETIENNE", + "ref": "20e6d906-5c2d-11ed-9b6a-0242ac120002", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-11", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38, + 45.47 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "perrin", + "owner:ref:FR:SIREN": "330590449", + "email": "mcelette@lumilec-electricité.fr", + "phone": "0610284454", + "network": "IBIS HOTEL LA TERRAS", + "ref": "8e30cdf7-c9a7-48a3-a51b-9360b5620719", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4799048, + 43.89146969999999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LUMI'IN", + "owner:ref:FR:SIREN": "807940069", + "email": "secretariat@lumi-in.fr", + "phone": "0754374751", + "network": "LUMI'IN", + "ref": "916dad76-9019-48d1-a94b-cf77f98e7d1e", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.25, + 47.29 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "arteco44", + "owner:ref:FR:SIREN": "842477895", + "email": "meuzenat@arteco.fr", + "phone": "0240193230", + "network": "recharge arteco", + "ref": "c635b39a-6507-11ed-9022-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 9:00-12:00,Mo-Fr 14:00-17:30", + "start_date": "2022-11-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33396657, + 47.27512821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "UVA1GK3BEZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35827385, + 47.29464201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "SQAXHVYUL0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39379, + 47.287674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "GYS7KX8RYW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.390635, + 47.288267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "JQ63UNHXMO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.390635, + 47.288267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "JQ63UNHXMO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39379, + 47.287674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "GYS7KX8RYW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39379, + 47.287674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "GYS7KX8RYW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.390635, + 47.288267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "JQ63UNHXMO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.378618, + 47.28234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "EH4SWQBAHY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.355691, + 47.280084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "OH8U5KZYGR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.355691, + 47.280084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "OH8U5KZYGR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.378618, + 47.28234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "EH4SWQBAHY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33396657, + 47.27512821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "UVA1GK3BEZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.343717, + 47.271461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "HTBGD246VP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.343717, + 47.271461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "HTBGD246VP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33396657, + 47.27512821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "UVA1GK3BEZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.390635, + 47.288267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "JQ63UNHXMO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35827385, + 47.29464201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "SQAXHVYUL0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35827385, + 47.29464201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "SQAXHVYUL0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.406672, + 47.281257 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "SSHO5RSRMZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.406672, + 47.281257 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "SSHO5RSRMZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.406672, + 47.281257 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "SSHO5RSRMZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.394561, + 47.282039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "PD9O4ON1F6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.406672, + 47.281257 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "SSHO5RSRMZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.406672, + 47.281257 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "SSHO5RSRMZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41180177, + 47.28378784 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "MLWOEU75YT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41180177, + 47.28378784 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "MLWOEU75YT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.406672, + 47.281257 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "SSHO5RSRMZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41180177, + 47.28378784 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "MLWOEU75YT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41180177, + 47.28378784 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "MLWOEU75YT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33396657, + 47.27512821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "UVA1GK3BEZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35827385, + 47.29464201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "SQAXHVYUL0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.355691, + 47.280084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "OH8U5KZYGR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.343717, + 47.271461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "HTBGD246VP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41498069, + 47.27943453 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "Y3VAL8QRMQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.343717, + 47.271461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "HTBGD246VP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41498069, + 47.27943453 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "Y3VAL8QRMQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.343717, + 47.271461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "HTBGD246VP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33396657, + 47.27512821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "UVA1GK3BEZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.390635, + 47.288267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "JQ63UNHXMO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.33396657, + 47.27512821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "UVA1GK3BEZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.343717, + 47.271461 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "HTBGD246VP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39379, + 47.287674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "GYS7KX8RYW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41180177, + 47.28378784 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "MLWOEU75YT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.355691, + 47.280084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "OH8U5KZYGR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.378618, + 47.28234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "EH4SWQBAHY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39379, + 47.287674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "GYS7KX8RYW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.390635, + 47.288267 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "JQ63UNHXMO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35827385, + 47.29464201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "SQAXHVYUL0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.378618, + 47.28234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "EH4SWQBAHY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41498069, + 47.27943453 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "Y3VAL8QRMQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.35827385, + 47.29464201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "SQAXHVYUL0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.355691, + 47.280084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "OH8U5KZYGR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41498069, + 47.27943453 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "Y3VAL8QRMQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.378618, + 47.28234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "EH4SWQBAHY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.378618, + 47.28234 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "EH4SWQBAHY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.39379, + 47.287674 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "GYS7KX8RYW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.355691, + 47.280084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "OH8U5KZYGR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41498069, + 47.27943453 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "Y3VAL8QRMQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41498069, + 47.27943453 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "Y3VAL8QRMQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.396071, + 47.290493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "B4QYBOUPMM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.394561, + 47.282039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "PD9O4ON1F6", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.394561, + 47.282039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "PD9O4ON1F6", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.41180177, + 47.28378784 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "MLWOEU75YT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033491, + 47.905369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "KR0Q8THZQY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033491, + 47.905369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "KR0Q8THZQY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033491, + 47.905369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "KR0Q8THZQY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033491, + 47.905369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "KR0Q8THZQY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033491, + 47.905369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "KR0Q8THZQY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033491, + 47.905369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "KR0Q8THZQY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.396071, + 47.290493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "B4QYBOUPMM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.396071, + 47.290493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "B4QYBOUPMM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.396071, + 47.290493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "B4QYBOUPMM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.394561, + 47.282039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "PD9O4ON1F6", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.396071, + 47.290493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "B4QYBOUPMM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.396071, + 47.290493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "B4QYBOUPMM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.394561, + 47.282039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "PD9O4ON1F6", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.394561, + 47.282039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Easycharge services", + "owner:ref:FR:SIREN": "901772400", + "email": "exploitation@easycharge-vinci.COM", + "phone": "3 67 47 06 40", + "network": "Easycharge services", + "ref": "PD9O4ON1F6", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.61, + 44.2 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Securecharge", + "owner:ref:FR:SIREN": "434651246", + "email": "contact@securecharge.fr", + "network": "Securecharge", + "ref": "Securecharge-CAALPA-CC-1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0767992, + 44.3455705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Non concerné", + "owner:ref:FR:SIREN": "909177297", + "email": "a.tarridec@mabornauto.com", + "phone": "0361626161", + "network": "TRISCOS AUTOMOBILES", + "ref": "ab39a848-e59f-47b2-9ad1-1dd3e94d3fa7", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "0", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-26", + "socket:type2_cable": "0" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.48, + 47.45 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SOLIDARAUTO 49", + "owner:ref:FR:SIREN": "522614148", + "email": "solidarauto49@orange.fr", + "phone": "02 41 35 10 50", + "network": "SOLIDARAUTO 49", + "ref": "ba8b6111-5958-436b-b596-5a0a9f36c47a", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 13:30-17:30", + "start_date": "2022-12-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38219, + 45.45884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "LABORATOIRE ESTRADE HUART", + "owner:ref:FR:SIREN": "315708974", + "email": "estrade.huart@gmail.com", + "network": "LABORATOIRE ESTRADE HUART", + "ref": "644a2d6e-ddca-11ed-b5ea-0242ac120002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.130048315345508, + 44.46056813187505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "896750254", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "LA RIVE CIELA VILLAGE", + "ref": "FRC2P003201", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.130048315345508, + 44.46056813187505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "896750254", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "LA RIVE CIELA VILLAGE", + "ref": "FRC2P003202", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.130048315345508, + 44.46056813187505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "896750254", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "LA RIVE CIELA VILLAGE", + "ref": "FRC2P003201", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.130048315345508, + 44.46056813187505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "896750254", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "LA RIVE CIELA VILLAGE", + "ref": "FRC2P003202", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.405862426409584, + 45.415499560107136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "327641361", + "email": "contact@car2plug.fr", + "phone": "0988991011", + "network": "SQUASH CLUB SAINT-ETIENNE", + "ref": "FRC2P004301", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17166083, + 44.43103518 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472741", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.17166083, + 44.43103518 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472740", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2400218, + 44.45923178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472737", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2400218, + 44.45923178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472736", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2400218, + 44.45923178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472735", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.2400218, + 44.45923178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472734", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35685396, + 43.9543369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472729", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.35685396, + 43.9543369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Virta", + "owner:ref:FR:SIREN": "327438560", + "email": "support@virta.global", + "phone": "0186472728", + "network": "Réseau de recharge Virta Public", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4587, + 43.53783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEENCO", + "owner:ref:FR:SIREN": "397906264", + "email": "franck.legardeur@zeenco.tech", + "phone": "0618727251", + "network": "ZEENCO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7316805, + 47.9749816 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7316805, + 47.9749816 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7316805, + 47.9749816 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7316805, + 47.9749816 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.7316805, + 47.9749816 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080172", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080172", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.874171, + 45.018137 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080071", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080172", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080056", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080056", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080056", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080056", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080056", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080056", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080056", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6666, + 47.33821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080056", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080172", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080172", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080172", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608616, + 44.171001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080183", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0144273068944765, + 47.419479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080173", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0144273068944765, + 47.419479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080173", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0144273068944765, + 47.419479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080173", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080172", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859716, + 47.976571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080172", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.608616, + 44.171001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080183", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.133697, + 43.869821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080188", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.133697, + 43.869821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080188", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641518, + 47.819657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080364", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641518, + 47.819657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080364", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641518, + 47.819657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080364", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641518, + 47.819657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080364", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641518, + 47.819657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080364", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.641518, + 47.819657 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080364", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080361", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.295566333126504, + 45.524520306313626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080359", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.295566333126504, + 45.524520306313626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080359", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.295566333126504, + 45.524520306313626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080359", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.295566333126504, + 45.524520306313626 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080359", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080361", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080361", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080361", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080361", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080361", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080361", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080361", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080361", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080361", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080361", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080361", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080361", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.826153, + 47.135404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080361", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.507557, + 44.199678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF088576", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5132, + 47.1617 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042595", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5132, + 47.1617 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042595", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5132, + 47.1617 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042595", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5132, + 47.1617 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF042595", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.410002, + 45.442142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF058500", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.410002, + 45.442142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF058500", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.410002, + 45.442142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF058500", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.410002, + 45.442142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF058500", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858496, + 47.977888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059671", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858496, + 47.977888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059671", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858496, + 47.977888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059671", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858496, + 47.977888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059671", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858496, + 47.977888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059671", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858496, + 47.977888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059671", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.858496, + 47.977888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF059671", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.489418, + 47.265314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF010132", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.489418, + 47.265314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF010132", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827109, + 45.589631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078183", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827109, + 45.589631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078183", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827109, + 45.589631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078183", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.827109, + 45.589631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078183", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.269559, + 43.721222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078611", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.269559, + 43.721222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078611", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.269559, + 43.721222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078611", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.269559, + 43.721222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF078611", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.848176, + 43.84322 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080044", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.850927825, + 43.84343386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080045", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.850927825, + 43.84343386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080045", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.850927825, + 43.84343386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080045", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.850927825, + 43.84343386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080045", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069703", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069703", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069703", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069703", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069703", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069703", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069703", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.016955, + 47.4185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF069703", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4708516751267252, + 43.908112555133386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "853114767", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "IBIS MONT DE MARSAN", + "ref": "FRTCBP00935", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4708516751267252, + 43.908112555133386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "853114767", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "IBIS MONT DE MARSAN", + "ref": "FRTCBP00935", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4708516751267252, + 43.908112555133386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "853114767", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "IBIS MONT DE MARSAN", + "ref": "FRTCBP00935", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4708516751267252, + 43.908112555133386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "853114767", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "IBIS MONT DE MARSAN", + "ref": "FRTCBP00935", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.9659948222190418, + 47.41092605168244 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "377638911", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "PSA Agents France", + "ref": "FRTCBP00627", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 13:00-18:30,Tu-Fr 09:00-12:00,Tu-Fr 13:30-18:30,Sa 08:00-12:00", + "start_date": "2022-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.0415555914491317, + 47.50852503292789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "811425065", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "DA COSTA AUTOMOBILES", + "ref": "FRTCBP00691", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,14:00-18:00,Sa 08:00-12:00", + "start_date": "2022-09-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref": "FRTCBP00989", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref": "FRTCBP00989", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref": "FRTCBP00989", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref": "FRTCBP00989", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref": "FRTCBP00989", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref": "FRTCBP00989", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref": "FRTCBP00989", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref": "FRTCBP00989", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref": "FRTCBP00989", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref": "FRTCBP00989", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref": "FRTCBP00989", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.508447925326274, + 47.25090051279224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "808790224", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "BEST WESTERN NANTES", + "ref": "FRTCBP00989", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 24/24,Sa-Su 08:00-21:00", + "start_date": "2022-10-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.208368, + 47.300077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "331996140", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00357", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.208368, + 47.300077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "331996140", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "ACCOR Hotels", + "ref": "FRTCBP00357", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.937386, + 47.939605 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref": "FRTCBP00390", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-17:30", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.937386, + 47.939605 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Marketing France", + "owner:ref:FR:SIREN": "562013771", + "email": "supervision-ev.france@totalenergies.com", + "phone": "0483568009", + "network": "WARNING", + "ref": "FRTCBP00390", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:00-17:30", + "start_date": "2021-08-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.033458, + 47.905351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "See You Sun", + "owner:ref:FR:SIREN": "824641294", + "email": "aguerin@seeyousun.fr", + "network": "Foncière des parcs", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00", + "start_date": "2022-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.071512, + 46.045819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "URQIIQNRHG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0664465, + 46.0285599 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HFHFSNPFL8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0747703, + 46.0414962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FZYNI4UPQP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06897568, + 46.07763561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JMKUVVPZI3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08614, + 46.025338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "J8KQANINTN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0672642, + 46.0330277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KMKK2WXJUA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0631344, + 46.0376702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WIBXDEW7O1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.326985, + 45.117174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MD0GNWWEBH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.326985, + 45.117174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MD0GNWWEBH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29221, + 45.11508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UINJVNH6Q6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32884, + 46.5618 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "moulinsroche", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0728184, + 46.0344539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "E1O6R0CI23", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.32884, + 46.5618 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "moulinsroche", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-04-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3136, + 45.34064 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FRY0Q66XR9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.54074, + 45.15616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "L4NKVCKURV", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.03682, + 45.20158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WVFSVWVVI6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.23258, + 45.24424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CSC0TUMVZJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90828, + 45.18615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PVQEXFHYMO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.84579, + 45.33199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PPSSYUNFPG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69669, + 45.31652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EDRVAH0JV8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8506602, + 45.33388671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "L4TPSNGBZU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.71035, + 45.19631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "C68QZRW5IK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90733, + 45.12107 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OYTKDNTXGM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29389, + 45.16762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KKT7GPURKL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.27371, + 45.30199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QNZBOX38KS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.89164, + 45.04276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GFHM4A7HUU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.94333, + 44.99135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UVZMY6BLLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.43568, + 45.1428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FHJTIMLKOG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.87728, + 45.04768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ELNZBQTZOX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31931, + 45.40492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QQ4AFDK4RT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96790901, + 45.0379469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RH3HDEMXJD", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.91745792, + 44.99766512 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EAWOEQP1NJ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12381, + 45.14355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RBTJQRBXH5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549119, + 44.959245 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YFU3HJXG3L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.48785, + 44.86069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FA9HZSEBKE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.902205, + 45.060964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GRUGMK6YCJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.38137544, + 45.29758934 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BBB8GR3JG1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09876, + 45.257872 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HQJOCGGRNM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.902205, + 45.060964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GRUGMK6YCJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.38137544, + 45.29758934 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BBB8GR3JG1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.549119, + 44.959245 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YFU3HJXG3L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06222, + 45.03316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NQ6WNF6GJD", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09876, + 45.257872 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HQJOCGGRNM", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06222, + 45.03316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NQ6WNF6GJD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883293, + 45.031025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "COEZJEA3UI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883293, + 45.031025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "COEZJEA3UI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.881278, + 45.049778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LCSCVQIEWU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.881278, + 45.049778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LCSCVQIEWU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.91745792, + 44.99766512 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EAWOEQP1NJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.12381, + 45.14355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RBTJQRBXH5", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.76284, + 45.07478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HMCSUP77H7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34412, + 45.21375 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ED9WZC9LMX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.17263, + 45.31767 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AJT1WFBIB4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90733, + 45.12107 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OYTKDNTXGM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.386839, + 45.294012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PXZORUFFWG", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.886055, + 45.040595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MQK82BCMDT", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.849828, + 44.894145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MHLFDHWBOA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-05", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.386839, + 45.294012 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PXZORUFFWG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-05", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.122835, + 45.144505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SKIDXQPPDJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-05", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.886055, + 45.040595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MQK82BCMDT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-05", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.87728, + 45.04768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ELNZBQTZOX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8506602, + 45.33388671 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "L4TPSNGBZU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.849828, + 44.894145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MHLFDHWBOA", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29221, + 45.11508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UINJVNH6Q6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.90828, + 45.18615 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PVQEXFHYMO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3136, + 45.34064 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FRY0Q66XR9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.31931, + 45.40492 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QQ4AFDK4RT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.54074, + 45.15616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "L4NKVCKURV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.69669, + 45.31652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EDRVAH0JV8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.84579, + 45.33199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PPSSYUNFPG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.122835, + 45.144505 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SKIDXQPPDJ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.71035, + 45.19631 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "C68QZRW5IK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.23258, + 45.24424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CSC0TUMVZJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.94333, + 44.99135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UVZMY6BLLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.92956, + 45.0469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EMWSK7UUY4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.11404, + 45.30546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WRN07GJM7H", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.387615, + 45.291636 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GB6G3PUH3V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8785064, + 45.0295307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BV4HG5JPFC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883702, + 44.7698789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZDR9Q4PKYJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883702, + 44.7698789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZDR9Q4PKYJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.631, + 45.093055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QNMZFMYOCR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.631, + 45.093055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QNMZFMYOCR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.8785064, + 45.0295307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BV4HG5JPFC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.85666, + 45.06895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MTR64UDKFK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.81171, + 45.13562 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GXLFC4JZQM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05984, + 45.09719 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "N0APSWIASX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17089, + 45.2951 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JDWQT9CAE8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.43568, + 45.1428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FHJTIMLKOG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.03682, + 45.20158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WVFSVWVVI6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.29389, + 45.16762 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KKT7GPURKL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.15323, + 44.90396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GJ3MKVO5IB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.30415, + 45.06124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MYQBUNOQVJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.96790901, + 45.0379469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RH3HDEMXJD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.20076, + 45.37026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YEA0UXRKNY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.89164, + 45.04276 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GFHM4A7HUU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.11404, + 45.30546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WRN07GJM7H", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.85666, + 45.06895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MTR64UDKFK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.34412, + 45.21375 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ED9WZC9LMX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.76284, + 45.07478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HMCSUP77H7", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17089, + 45.2951 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JDWQT9CAE8", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.15323, + 44.90396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GJ3MKVO5IB", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.05984, + 45.09719 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "N0APSWIASX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.48785, + 44.86069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FA9HZSEBKE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.20076, + 45.37026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YEA0UXRKNY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.387615, + 45.291636 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GB6G3PUH3V", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.81171, + 45.13562 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GXLFC4JZQM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.30415, + 45.06124 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MYQBUNOQVJ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.92956, + 45.0469 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EMWSK7UUY4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.17263, + 45.31767 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AJT1WFBIB4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.27371, + 45.30199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QNZBOX38KS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.515296, + 45.206547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "A6GGB1AQMP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.515296, + 45.206547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "A6GGB1AQMP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.097078, + 45.990188 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BVGPUCVDDT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057257, + 46.0384893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "I87DFGGXNC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.952856, + 43.123039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "O6NF58E9RW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.952856, + 43.123039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "O6NF58E9RW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.21490165, + 44.08017094 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZYL6ZBTURA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.417705, + 45.340454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JBWSNH5CN2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0650575, + 45.60489804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TJPZS8BPH4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0729027, + 46.03897 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EZSU5AL3I5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.417705, + 45.340454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JBWSNH5CN2", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0650575, + 45.60489804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TJPZS8BPH4", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17285285, + 45.29281583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IBSXDFRIST", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.385347, + 45.290997 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ER0AUMJDGU", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.17285285, + 45.29281583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IBSXDFRIST", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.879068, + 45.046877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KRAXKE7RE5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.879068, + 45.046877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KRAXKE7RE5", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.385347, + 45.290997 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ER0AUMJDGU", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.231455, + 44.091577 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XFCI1JOWWR", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.231455, + 44.091577 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XFCI1JOWWR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.21490165, + 44.08017094 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZYL6ZBTURA", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.035542, + 45.985625 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FU2UCSPHOH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.357859, + 45.852431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VEVO6DOUKL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.357859, + 45.852431 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VEVO6DOUKL", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.035542, + 45.985625 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FU2UCSPHOH", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.27552, + 45.588987 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FYDLG22UGH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.27552, + 45.588987 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FYDLG22UGH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.952178, + 43.107303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PBVWLY88ID", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 5.952178, + 43.107303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PBVWLY88ID", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.31678503, + 45.42282428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IWGHRPVBV0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06467, + 46.04125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BNAVO3VFDJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.059, + 46.0325625 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TPZYRFBBHS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06467, + 46.04125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BNAVO3VFDJ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.346184, + 46.165401 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QXCNNGKKJJ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.071406, + 46.033345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PSEA6GJAN3", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.071406, + 46.033345 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PSEA6GJAN3", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22777, + 45.74238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "I94BQIRYL6", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22777, + 45.74238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "I94BQIRYL6", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07645891, + 46.0379016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IF1PCDZCRZ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07645891, + 46.0379016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IF1PCDZCRZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.21674, + 45.52367 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "URKGXP7KLK", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.21674, + 45.52367 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "URKGXP7KLK", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.346184, + 46.165401 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QXCNNGKKJJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-27", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.27747, + 45.5613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GBTTMB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.27747, + 45.5613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GBTTMB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9147214, + 46.06752154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YJUCBYQK33", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.930498, + 46.122926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JY0TJDEVXN", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0583, + 46.0247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NYCFYH0OAI", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.943568, + 46.189248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VMYGOPNGKC", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3342453, + 45.4473008 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YIDXSFUUSI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.18384, + 45.81856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UDZL8RTBFG", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.263238, + 45.396748 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DGMDE60VKP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3217772, + 45.4331486 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "P1JCQZGYPW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2564165, + 45.4467313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BKUKVCUG0Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2630078, + 45.5076733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WUFELBWHT7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9147214, + 46.06752154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YJUCBYQK33", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.930498, + 46.122926 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JY0TJDEVXN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.943568, + 46.189248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VMYGOPNGKC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.18384, + 45.81856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UDZL8RTBFG", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2511196, + 45.4093142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QOX8DO7S4R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0583, + 46.0247 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NYCFYH0OAI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09246, + 46.02658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XBYO74ENAK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.062721, + 46.086751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RD0UYEY3MU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.042694, + 46.03628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "Z4Q0ZTBFD9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.123665, + 46.037983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NSEE0ZJGLH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.336845, + 45.444849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MCBGYNNUEB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1807817, + 45.4033238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "U4AQ0K8DKR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3225519, + 45.4243932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZVYQDEGDC3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.082572, + 45.607143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OGZVDJ7RLD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.123665, + 46.037983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NSEE0ZJGLH", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.941872, + 45.389256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "H88YLRP16P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0607641, + 45.6073765 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LZFEFO7KSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.177878, + 45.887058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SHKDVBCA4O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2160722, + 45.989587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HTIYLP7TN0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.376203, + 45.35628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JOLS2OGPGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3948511, + 45.2825753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YLSVBYAJM1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1677001, + 45.4980481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KODGS1EZY2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.042694, + 46.03628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "Z4Q0ZTBFD9", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1742548, + 46.1581686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ICY3X7IVQQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3721251, + 45.4856699 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HFWXM4PJLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0714987, + 45.596007 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ATU4HTPHF1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.062721, + 46.086751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RD0UYEY3MU", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.316785035, + 45.42282428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "IWGHRPVBV0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.337093, + 45.4352175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DBT65NAW0K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4946901, + 45.2692689 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QOFKA776QB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2404883, + 45.5004988 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WCGRDIRD61", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4946901, + 45.2692689 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QOFKA776QB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.337093, + 45.4352175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DBT65NAW0K", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2630078, + 45.5076733 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WUFELBWHT7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.234739, + 46.032035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TUTD30X35M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-10-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.048321, + 46.070421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FGWMD2UBVQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-11-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.076384, + 46.045465 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QFSWJ7JX52", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.079701, + 46.036818 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RVQSHO7N5L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.071512, + 46.045819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "URQIIQNRHG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0664465, + 46.0285599 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HFHFSNPFL8", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0631344, + 46.0376702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WIBXDEW7O1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0747703, + 46.0414962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FZYNI4UPQP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.06897568, + 46.07763561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JMKUVVPZI3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.87573188, + 46.17604575 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PXOA6DYBFU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.925942, + 46.051708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GZW7760W41", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.072804, + 46.036429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZANUNBEQ2X", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0672642, + 46.0330277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KMKK2WXJUA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.931463, + 46.031274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PYFXTRHNOV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0964775, + 46.0296215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AU1YWRKLWE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085646, + 46.029813 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SA4FXRNXKE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9309, + 46.052042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MPFTAS9LHS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.234739, + 46.032035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TUTD30X35M", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-10-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.048321, + 46.070421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FGWMD2UBVQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-11-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069028, + 46.047472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BMT481UC66", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22096, + 45.7446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WZBCXJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39409, + 45.6384 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HTQZMT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39409, + 45.6384 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HTQZMT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.446987, + 45.4098072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "W26C6ONSBL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3640911, + 45.4050209 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RMGF2XIQG6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3666899, + 45.402132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GFBM3TN5RY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0045021, + 45.7456111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WLQXF6NKY2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5162605, + 45.4165342 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "O54IWFIUPP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4370403, + 45.4878958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ISUMHUQAQG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.069028, + 46.047472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BMT481UC66", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.56981, + 45.5055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BRUPTZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58146, + 45.5135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NTEXHV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58146, + 45.5135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NTEXHV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.43933, + 45.5482 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VLJGRE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22096, + 45.7446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WZBCXJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.43933, + 45.5482 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VLJGRE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.56981, + 45.5055 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BRUPTZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.052708, + 46.046313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YZD20EWHZI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.082342, + 46.042776 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FJCDHNVFJV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.002576, + 46.051967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NLVCDQEOPZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.002576, + 46.051967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NLVCDQEOPZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.9309, + 46.052042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MPFTAS9LHS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.87573188, + 46.17604575 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PXOA6DYBFU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0350391, + 46.0434068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YU5FX9XNFJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.072804, + 46.036429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZANUNBEQ2X", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.03728, + 45.996498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RQVKOP24BA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0535, + 46.034167 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FSMDLX2G3U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0503929, + 46.0302958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YMXK9OQBKU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0408092, + 46.0282332 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KUPUVRMJH2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.079701, + 46.036818 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RVQSHO7N5L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08037845, + 46.05971964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NA1INBYCYV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.067559, + 46.036543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HZVBOQT3RZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.085646, + 46.029813 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SA4FXRNXKE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.086384, + 46.080367 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HOQDKHZSAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.060917, + 45.999397 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZKXXATFPZL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0964775, + 46.0296215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AU1YWRKLWE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.076384, + 46.045465 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QFSWJ7JX52", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.082342, + 46.042776 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FJCDHNVFJV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.067559, + 46.036543 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HZVBOQT3RZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0728184, + 46.0344539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "E1O6R0CI23", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0535, + 46.034167 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "FSMDLX2G3U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0408092, + 46.0282332 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KUPUVRMJH2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0350391, + 46.0434068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YU5FX9XNFJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08037845, + 46.05971964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "NA1INBYCYV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.03728, + 45.996498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RQVKOP24BA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0503929, + 46.0302958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YMXK9OQBKU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.059, + 46.0325625 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TPZYRFBBHS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.086384, + 46.080367 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HOQDKHZSAT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.052708, + 46.046313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YZD20EWHZI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0729027, + 46.03897 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EZSU5AL3I5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.08614, + 46.025338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "J8KQANINTN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057257, + 46.0384893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "I87DFGGXNC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.060917, + 45.999397 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZKXXATFPZL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.097078, + 45.990188 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BVGPUCVDDT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.925942, + 46.051708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GZW7760W41", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.931463, + 46.031274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "PYFXTRHNOV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.273447, + 45.759568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ROOMZVXRSO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4499632, + 45.4877239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OAUEVKIP5N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4352, + 45.48154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JR9TTMXTJ7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.208527, + 45.9483507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TCHFTRZXQR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2812527, + 45.3958253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SBLMXOFNGQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4257236, + 45.4753254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OL7HMZRXTP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3367866, + 45.7928662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MHD5MKUFAK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.064615, + 45.424436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VXH5EOTKP9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.336845, + 45.444849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MCBGYNNUEB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3342453, + 45.4473008 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YIDXSFUUSI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5414507, + 45.5229189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RVMNOOPOGM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3141025, + 45.5019921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LDBAM0UVXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3721251, + 45.4856699 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HFWXM4PJLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.266084, + 45.389132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QHL8YCFSIR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3524202, + 45.466474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OYO5JSDPCS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.353032, + 45.467506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RZTN1YKWP7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.184682, + 45.538959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KWASMIIC7L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4257236, + 45.4753254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OL7HMZRXTP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3367866, + 45.7928662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MHD5MKUFAK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.064615, + 45.424436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "VXH5EOTKP9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.941872, + 45.389256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "H88YLRP16P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.177878, + 45.887058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SHKDVBCA4O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4499632, + 45.4877239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OAUEVKIP5N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2564165, + 45.4467313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "BKUKVCUG0Q", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2404883, + 45.5004988 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WCGRDIRD61", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1742548, + 46.1581686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ICY3X7IVQQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.263238, + 45.396748 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "DGMDE60VKP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2511196, + 45.4093142 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QOX8DO7S4R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1807817, + 45.4033238 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "U4AQ0K8DKR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3225519, + 45.4243932 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ZVYQDEGDC3", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3217772, + 45.4331486 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "P1JCQZGYPW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2160722, + 45.989587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HTIYLP7TN0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0714987, + 45.596007 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ATU4HTPHF1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0607641, + 45.6073765 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LZFEFO7KSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.082572, + 45.607143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OGZVDJ7RLD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1677001, + 45.4980481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KODGS1EZY2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.376203, + 45.35628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JOLS2OGPGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3948511, + 45.2825753 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YLSVBYAJM1", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09246, + 46.02658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XBYO74ENAK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4370403, + 45.4878958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ISUMHUQAQG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5414507, + 45.5229189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RVMNOOPOGM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.4352, + 45.48154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "JR9TTMXTJ7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.0045021, + 45.7456111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "WLQXF6NKY2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64742, + 45.4794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AAVBTG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.64742, + 45.4794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "AAVBTG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3666899, + 45.402132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GFBM3TN5RY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.446987, + 45.4098072 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "W26C6ONSBL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5695, + 45.50397 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EC5TK1JROM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5695, + 45.50397 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EC5TK1JROM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5162605, + 45.4165342 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "O54IWFIUPP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.273447, + 45.759568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "ROOMZVXRSO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.31657, + 45.5921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UDCPRA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3640911, + 45.4050209 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RMGF2XIQG6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.53528, + 45.5561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HJJFHK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.53528, + 45.5561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HJJFHK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.57513, + 45.4842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MWSKGX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.57513, + 45.4842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "MWSKGX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.54026293, + 45.48570475 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QLRDN5VITJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.54026293, + 45.48570475 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QLRDN5VITJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.31657, + 45.5921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "UDCPRA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.25891, + 45.6466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GMFXMF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.208527, + 45.9483507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "TCHFTRZXQR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37529, + 45.5323 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HRSSFZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3141025, + 45.5019921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "LDBAM0UVXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.266084, + 45.389132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QHL8YCFSIR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3524202, + 45.466474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "OYO5JSDPCS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.353032, + 45.467506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "RZTN1YKWP7", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.184682, + 45.538959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "KWASMIIC7L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.2812527, + 45.3958253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "SBLMXOFNGQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37529, + 45.5323 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "HRSSFZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58589, + 45.5341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EYECWW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.25891, + 45.6466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "GMFXMF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58589, + 45.5341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "EYECWW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58422, + 45.5495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CKVEGB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.58422, + 45.5495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "CKVEGB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5950883, + 45.5447567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XVKVTT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5950883, + 45.5447567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "XVKVTT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.48614, + 45.5451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QQTZQG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.48614, + 45.5451 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "QQTZQG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.49167, + 46.06668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YENI22PAXC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.49167, + 46.06668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPBR1", + "email": "contact@reseau-eborn.fr", + "phone": "33423100350", + "network": "eborn", + "ref": "YENI22PAXC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.392732, + 45.446148 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.392732, + 45.446148 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.409465, + 45.422654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383611, + 45.450606 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BI", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.409465, + 45.422654 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383611, + 45.450606 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383611, + 45.450606 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BI", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.339118, + 45.44058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42223AA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.339118, + 45.44058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42223AA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.388649, + 45.432013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.339118, + 45.44058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42223AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.399325, + 45.440783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.399325, + 45.440783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3907915488403, + 45.44346056306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BB", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3907915488403, + 45.44346056306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3907915488403, + 45.44346056306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.395133, + 45.431483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.395133, + 45.431483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.285769, + 45.391243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42095AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.384222, + 45.459475 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.285769, + 45.391243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42095AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3867507, + 45.4476017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.286092, + 45.384258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42095AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.286092, + 45.384258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42095AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.394564, + 45.433997 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-08-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.323678, + 45.397069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42044AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.323678, + 45.397069 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42044AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3867507, + 45.4476017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5158208, + 45.4782379 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42207AD", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5158208, + 45.4782379 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42207AD", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5158208, + 45.4782379 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42207AD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.364239, + 45.479263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42275AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.364239, + 45.479263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42275AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378651, + 45.463571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378651, + 45.463571 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.368072, + 45.454275 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.368072, + 45.454275 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.620006, + 45.529152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42186AB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.620006, + 45.529152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42186AB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.276472, + 45.379078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42095AB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.276472, + 45.379078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42095AB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.384222, + 45.459475 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.526069, + 45.494844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEPS42207AC", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.394564, + 45.433997 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-08-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.390567, + 45.430944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.292167, + 45.523472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42005AA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.292167, + 45.523472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42005AA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.292167, + 45.523472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42005AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.257074, + 45.525924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42005AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.257074, + 45.525924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42005AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.272165, + 45.529554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42005AB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.272165, + 45.529554 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42005AB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.390567, + 45.430944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.389903, + 45.411421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37989, + 45.437243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.389903, + 45.411421 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.377888, + 45.467731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42275AE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.377888, + 45.467731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42275AE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.526069, + 45.494844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEPS42207AC", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.526069, + 45.494844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEPS42207AC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.613454, + 45.527692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42186AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.613454, + 45.527692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42186AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.388649, + 45.432013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BD", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.37989, + 45.437243 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.399995, + 45.41816 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400734, + 45.442934 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.419098, + 45.418845 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400734, + 45.442934 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.400734, + 45.442934 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.264967, + 45.543839 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42005AD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.264967, + 45.543839 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42005AD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.403326, + 45.426995 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.403326, + 45.426995 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3801704, + 45.4731837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42275AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3801704, + 45.4731837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42275AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.419098, + 45.418845 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.399995, + 45.41816 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387767, + 45.453219 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387767, + 45.453219 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387767, + 45.453219 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39425, + 45.415889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-08-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.39425, + 45.415889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-08-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.395436, + 45.423999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BN", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.395436, + 45.423999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BN", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.395436, + 45.423999 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.388649, + 45.432013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BD", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.276472, + 45.379078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42095AB", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.379868, + 45.43433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.62708, + 45.532354 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42186AA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.403437, + 45.439087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.403437, + 45.439087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38351, + 45.43067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38351, + 45.43067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.505162, + 45.467122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42207AE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.505162, + 45.467122 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42207AE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.623377, + 45.53135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42186AD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.623377, + 45.53135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42186AD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.373289, + 45.444678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.373289, + 45.444678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38404, + 45.439909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BE", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38404, + 45.439909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BE", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38404, + 45.439909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391937, + 45.438013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BC", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391937, + 45.438013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BC", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391937, + 45.438013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.396479, + 45.439454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BJ", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.396479, + 45.439454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BJ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.396479, + 45.439454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401687, + 45.45052 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.401687, + 45.45052 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.422419, + 45.444738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42237AB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386229, + 45.435811 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.379868, + 45.43433 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391303, + 45.454669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.391303, + 45.454669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.50956, + 45.477746 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42207AG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.50956, + 45.477746 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42207AG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.368069, + 45.468686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42330AA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.368069, + 45.468686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42330AA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.368069, + 45.468686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42330AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386229, + 45.435811 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AW", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.422419, + 45.444738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42237AB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.437393, + 45.436396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.437393, + 45.436396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3976364, + 45.4572274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3976364, + 45.4572274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.392778, + 45.457303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.392778, + 45.457303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.392778, + 45.457303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.422419, + 45.444738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42237AB", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.62708, + 45.532354 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42186AA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.392778, + 45.457303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-06-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.62708, + 45.532354 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42186AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386948, + 45.409886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-08-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.505508, + 45.477173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42207AF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.444597, + 45.448767 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEPS42237AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.444597, + 45.448767 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEPS42237AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387578, + 45.440594 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AQ", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387578, + 45.440594 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AQ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.387578, + 45.440594 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AQ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386948, + 45.409886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AP", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-08-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.386948, + 45.409886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AP", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-08-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5039778, + 45.4577757 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42207AH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.505508, + 45.477173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42207AF", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38127, + 45.44757 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38127, + 45.44757 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378769, + 45.466526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.378769, + 45.466526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-03-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.382443, + 45.477253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42275AD", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.382443, + 45.477253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42275AD", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.382443, + 45.477253 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42275AD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.458179, + 45.457039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42237AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.505508, + 45.477173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42207AF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.5039778, + 45.4577757 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42207AH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.354466, + 45.479853 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42275AB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38966, + 45.43496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.458179, + 45.457039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42237AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.354466, + 45.479853 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42275AB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.413217, + 45.420522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-08-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.413217, + 45.420522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-08-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.508525, + 45.471086 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42207AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.417438, + 45.434308 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.417438, + 45.434308 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.40185, + 45.4405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.40185, + 45.4405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.508525, + 45.471086 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42207AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.38966, + 45.43496 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424937, + 45.42304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BH", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424937, + 45.42304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BH", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.424937, + 45.42304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218BH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.412619, + 45.455738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AS", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.412619, + 45.455738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.354466, + 45.479853 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42275AB", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-03-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.412619, + 45.455738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "owner:ref:FR:SIREN": "848778429", + "email": "contact@e-totem.fr", + "network": "Réseau Saint Étienne Métropole", + "ref": "FRESEP42218AS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "DOMAINE DE VALINCHES", + "ref": "FRG10P42140A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "DOMAINE DE VALINCHES", + "ref": "FRG10P42140A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "DOMAINE DE VALINCHES", + "ref": "FRG10P42140A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "DOMAINE DE VALINCHES", + "ref": "FRG10P42140A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "DOMAINE DE VALINCHES", + "ref": "FRG10P42140A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "DOMAINE DE VALINCHES", + "ref": "FRG10P42140A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "DOMAINE DE VALINCHES", + "ref": "FRG10P42140A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057328868811743, + 45.45730543705983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "DOMAINE DE VALINCHES", + "ref": "FRG10P42140A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.379127, + 45.63536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "GARAGE DU CENTRE", + "ref": "FRG10P42059A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.379127, + 45.63536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "GARAGE DU CENTRE", + "ref": "FRG10P42059A", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22544312, + 45.72749023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Garage Cheminal - Volkswagen", + "ref": "FRG10P42094A", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22544312, + 45.72749023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Garage Cheminal - Volkswagen", + "ref": "FRG10P42094A", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.22544312, + 45.72749023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Garage Cheminal - Volkswagen", + "ref": "FRG10P42094A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.161233, + 45.287634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "GAMM VERT - MONISTROL SUR LOIRE", + "ref": "FRG10P43137A", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.161233, + 45.287634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "GAMM VERT - MONISTROL SUR LOIRE", + "ref": "FRG10P43137A", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.161233, + 45.287634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "GAMM VERT - MONISTROL SUR LOIRE", + "ref": "FRG10P43137A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.697979, + 48.045049 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - CORQUILLEROY", + "ref": "FRG10P45104A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.709345, + 47.990865 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - VILLEMANDEUR", + "ref": "FRG10P45338A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.736521, + 47.918207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - SOLTERRE", + "ref": "FRG10P45312A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.736521, + 47.918207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - SOLTERRE", + "ref": "FRG10P45312A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.792905, + 48.035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - PAUCOURT", + "ref": "FRG10P45249A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.792905, + 48.035 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - PAUCOURT", + "ref": "FRG10P45249A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.672043, + 48.01739 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - PANNES", + "ref": "FRG10P45247A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.672043, + 48.01739 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - PANNES", + "ref": "FRG10P45247A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63116, + 47.940856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - LOMBREUIL", + "ref": "FRG10P45185A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.63116, + 47.940856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - LOMBREUIL", + "ref": "FRG10P45185A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.697979, + 48.045049 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - CORQUILLEROY", + "ref": "FRG10P45104A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.786343, + 47.952598 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - CONFLANS SUR LOING", + "ref": "FRG10P45102A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.786343, + 47.952598 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - CONFLANS SUR LOING", + "ref": "FRG10P45102A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.626097, + 47.962275 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - CHEVILLON SUR HUILLARD", + "ref": "FRG10P45092A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.626097, + 47.962275 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - CHEVILLON SUR HUILLARD", + "ref": "FRG10P45092A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.740798, + 48.043359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - CEPOY", + "ref": "FRG10P45061A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.740798, + 48.043359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - CEPOY", + "ref": "FRG10P45061A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.774467, + 47.96808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - AMILLY 2", + "ref": "FRG10P45004B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.774467, + 47.96808 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - AMILLY 2", + "ref": "FRG10P45004B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.772783, + 47.96827 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - AMILLY 1", + "ref": "FRG10P45004A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.772783, + 47.96827 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - AMILLY 1", + "ref": "FRG10P45004A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.709345, + 47.990865 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - VILLEMANDEUR", + "ref": "FRG10P45338A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.686008, + 47.945956 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - VIMORY", + "ref": "FRG10P445345A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.686008, + 47.945956 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "AGGLOMERATION MONTARGOISE - VIMORY", + "ref": "FRG10P445345A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.237656, + 45.638173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "CASINO DE MONTROND", + "ref": "FRG10P42149A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.237656, + 45.638173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "CASINO DE MONTROND", + "ref": "FRG10P42149A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1161033, + 45.1437823 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Intermarché Yssingeaux", + "ref": "FRG10P43268A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.1161033, + 45.1437823 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Intermarché Yssingeaux", + "ref": "FRG10P43268A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5214733456906524, + 47.76058808735231 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "VILLE DE DAMPIERRE", + "ref": "FRG10P45122A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5214733456906524, + 47.76058808735231 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "VILLE DE DAMPIERRE", + "ref": "FRG10P45122A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.396822, + 45.452227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Meritor", + "ref": "FRG10P42218AB", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.396822, + 45.452227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Meritor", + "ref": "FRG10P42218AB", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.786, + 48.092 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Mairie de Ferrières-en-Gatinais", + "ref": "FRG10P45145A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.786, + 48.092 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Mairie de Ferrières-en-Gatinais", + "ref": "FRG10P45145A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6301873, + 47.7802058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Mairie de Beaugency - PARKING RUE NATIONALE", + "ref": "FRG10P45028C", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6301873, + 47.7802058 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Mairie de Beaugency - PARKING RUE NATIONALE", + "ref": "FRG10P45028C", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6296, + 47.7751976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Mairie de Beaugency - PARKING GRAND MAIL", + "ref": "FRG10P45028D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6296, + 47.7751976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Mairie de Beaugency - PARKING GRAND MAIL", + "ref": "FRG10P45028D", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6206933, + 47.780758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Mairie de Beaugency - PARKING AGORA", + "ref": "FRG10P45028B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6206933, + 47.780758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Mairie de Beaugency - PARKING AGORA", + "ref": "FRG10P45028B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6206933, + 47.780758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Mairie de Beaugency - PARKING AGORA", + "ref": "FRG10P45028B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.6206933, + 47.780758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Mairie de Beaugency - PARKING AGORA", + "ref": "FRG10P45028B", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.309668, + 45.588589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "La Charpinière", + "ref": "FRG10P42222A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.309668, + 45.588589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "La Charpinière", + "ref": "FRG10P42222A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.309668, + 45.588589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "La Charpinière", + "ref": "FRG10P42222A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.309668, + 45.588589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "La Charpinière", + "ref": "FRG10P42222A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.309668, + 45.588589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "La Charpinière", + "ref": "FRG10P42222A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.309668, + 45.588589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "La Charpinière", + "ref": "FRG10P42222A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.396822, + 45.452227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Meritor", + "ref": "FRG10P42218AB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.396822, + 45.452227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "Meritor", + "ref": "FRG10P42218AB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.262156, + 45.518189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT AGENCE LOSANGE", + "ref": "FRG10P42279A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.420417, + 45.44609 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "STEEL Parkings", + "ref": "FRG10P42218AA", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.262156, + 45.518189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT AGENCE LOSANGE", + "ref": "FRG10P42279A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.383562, + 45.459929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "RENAULT THIVOLLE ST ETIENNE", + "ref": "FRG10P42218AC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35408, + 48.947939 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24865, + 44.871477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*PBP*48200*L0ZERE", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24865, + 44.871477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*PBP*48200*L0ZERE", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.24865, + 44.871477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*PBP*48200*L0ZERE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.926161, + 47.665194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*PBP*41600*CHAUM0NT", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-12-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.926161, + 47.665194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*PBP*41600*CHAUM0NT", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-12-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.926161, + 47.665194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*PBP*41600*CHAUM0NT", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-12-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13728, + 46.811699 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13728, + 46.811699 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.13728, + 46.811699 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "200042489", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDEV", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.684731, + 47.852405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE415600", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-30", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.06949, + 45.875816 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE409000", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-25", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.253033, + 44.870544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE432600", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.103061, + 48.908862 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE402900", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.418951, + 43.585904 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE405200", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-06-11", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.225917, + 45.850722 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE421600", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-25", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.501811, + 47.30968 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE402200", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-03", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.60966, + 44.171306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE432700", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-16", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387813, + 47.664023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE407800", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-04", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.387757, + 47.665885 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE408000", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-11", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.134694, + 47.41925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE402100", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-03", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.186759, + 44.404918 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE440700", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.720788, + 48.263874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE433500", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-07", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.378714, + 46.296171 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE101400", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-07-25", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.525098, + 45.030878 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE433400", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-09", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.859723, + 47.948583 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "IONITY", + "owner:ref:FR:SIREN": "838436145", + "email": "info@ionity.eu", + "phone": "33187210891", + "network": "IONITY GMBH", + "ref": "FRIONE408700", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-09", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.132647, + 48.771853 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GRAND NANCY", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref": "FR*SOD*S*CUGN*119*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.132647, + 48.771853 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GRAND NANCY", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref": "FR*SOD*S*CUGN*119*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.622318, + 48.578039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref": "FR*SOD*S*CUGN*80*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.622318, + 48.578039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "245400676", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GRAND NANCY", + "ref": "FR*SOD*S*CUGN*80*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.220807, + 44.205605 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558090404", + "network": "Leclerc Mimizan", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.220807, + 44.205605 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558090404", + "network": "Leclerc Mimizan", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.220807, + 44.205605 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558090404", + "network": "Leclerc Mimizan", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.220807, + 44.205605 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558090404", + "network": "Leclerc Mimizan", + "ref": "Non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", + "start_date": "2021-02-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref": "Non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", + "start_date": "2021-02-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref": "Non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", + "start_date": "2021-02-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", + "start_date": "2021-02-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", + "start_date": "2021-02-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", + "start_date": "2021-02-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", + "start_date": "2021-02-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.926388, + 44.20274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "PLAGECO DISTRIBUTION", + "owner:ref:FR:SIREN": "394121545", + "email": "sylvie.at@scaso.fr", + "phone": "0558830083", + "network": "Leclerc Express Labouheyre", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00", + "start_date": "2021-02-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.843358, + 44.924358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "BIARS DISTRIBUTION", + "owner:ref:FR:SIREN": "341055705", + "email": "stephane.henry@scaso.fr", + "phone": "0565102200", + "network": "Leclerc Biars", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "1", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.843358, + 44.924358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "BIARS DISTRIBUTION", + "owner:ref:FR:SIREN": "341055705", + "email": "stephane.henry@scaso.fr", + "phone": "0565102200", + "network": "Leclerc Biars", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "1", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.843358, + 44.924358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "BIARS DISTRIBUTION", + "owner:ref:FR:SIREN": "341055705", + "email": "stephane.henry@scaso.fr", + "phone": "0565102200", + "network": "Leclerc Biars", + "ref": "Non concerné", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "1", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.843358, + 44.924358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "BIARS DISTRIBUTION", + "owner:ref:FR:SIREN": "341055705", + "email": "stephane.henry@scaso.fr", + "phone": "0565102200", + "network": "Leclerc Biars", + "ref": "Non concerné", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "1", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.42928004265, + 44.1805000305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Le Capelan", + "owner:ref:FR:SIREN": "340688076", + "email": "camping.le.capelan@orange.fr", + "phone": "04 66 45 60 51", + "network": "Le jardin des Cevennes", + "ref": "83577307-cd5a-45aa-8ca4-733c20281019", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 9:00-18:00", + "start_date": "2022-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.617293760965289, + 47.46216679205851 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "AUTORECHARGE SAS", + "owner:ref:FR:SIREN": "793681313", + "email": "contact@autorecharge.fr", + "phone": "0970755400", + "network": "AUTORECHARGE SAS", + "ref": "562957", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3993781, + 45.4626965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "501208680", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda - Saint-Etienne", + "ref": "49430", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:30", + "start_date": "2020-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.3993781, + 45.4626965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "501208680", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "Mazda - Saint-Etienne", + "ref": "60973\t", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:30", + "start_date": "2021-05-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.115706, + 49.525553 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.115706, + 49.525553 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "UBITRICITY GMBH", + "owner:ref:FR:SIREN": "310505771", + "email": "contact@ubitricity.com", + "network": "Ubitricity France Network", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.55734, + 47.2201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Enedis Nantes", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.895146, + 47.0429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Dropnplug", + "owner:ref:FR:SIREN": "882060387", + "email": "claude.lebrize@dropnplug.fr", + "phone": "0698729394", + "network": "Réseau de recharge Hopital de Cholet", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.3577, + 43.6368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile", + "owner:ref:FR:SIREN": "310162417", + "email": "exploitation@freshmile.com", + "phone": "0388257058", + "network": "LECLERC", + "ref": "FROTHESENT113", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0925522, + 44.3457871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "833942725", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "BECABLE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Su 08:00-23:00", + "start_date": "2022-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0925522, + 44.3457871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "833942725", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "BECABLE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Su 08:00-23:00", + "start_date": "2022-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0925522, + 44.3457871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "833942725", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "BECABLE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Su 08:00-23:00", + "start_date": "2022-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.0925522, + 44.3457871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "833942725", + "email": "info-usager.silene@spie.com", + "phone": "0 970 830 213", + "network": "BECABLE", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Su 08:00-23:00", + "start_date": "2022-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.605536, + 48.566917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*125*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -3.605536, + 48.566917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "252901145", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "OUEST CHARGE - 29", + "ref": "FR*SOD*S*SD29*125*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498428, + 47.29969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "304602956", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SUPER U CARQUEFOU", + "ref": "FR*SOD*S*OTHR*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498428, + 47.29969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "304602956", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SUPER U CARQUEFOU", + "ref": "FR*SOD*S*OTHR*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498428, + 47.29969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "304602956", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SUPER U CARQUEFOU", + "ref": "FR*SOD*S*OTHR*25*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.498428, + 47.29969 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Sodetrel", + "owner:ref:FR:SIREN": "304602956", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SUPER U CARQUEFOU", + "ref": "FR*SOD*S*OTHR*25*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.58, + 44.16 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTROMAPS", + "owner:ref:FR:SIREN": "409966223", + "email": "oscar@electromaps.com", + "phone": "+34 931.574.967 ", + "network": "Le Temps Des Cerises", + "ref": "48e9e0f4-b6bb-4d35-bb14-e17c5a8bc1cc", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.95, + 44.96 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Electromaps", + "owner:ref:FR:SIREN": "905250809", + "email": "oscar@electromaps.com", + "phone": "+34 931 574 967", + "network": "Réseau de recharge Soulier", + "ref": "48752c4b-2ca2-40af-b488-b5aa3fd4355d", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07183, + 45.43232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U LA TOURETTE", + "ref": "FRSUAP42312A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07183, + 45.43232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U LA TOURETTE", + "ref": "FRSUAP42312A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07183, + 45.43232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U LA TOURETTE", + "ref": "FRSUAP42312A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7480292628930094, + 47.4716214490022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "HYPER U BLAIN", + "ref": "FRSUAP44015A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7480292628930094, + 47.4716214490022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "HYPER U BLAIN", + "ref": "FRSUAP44015A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7480292628930094, + 47.4716214490022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "HYPER U BLAIN", + "ref": "FRSUAP44015A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7480292628930094, + 47.4716214490022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "HYPER U BLAIN", + "ref": "FRSUAP44015A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7480292628930094, + 47.4716214490022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "HYPER U BLAIN", + "ref": "FRSUAP44015A", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7480292628930094, + 47.4716214490022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "HYPER U BLAIN", + "ref": "FRSUAP44015A", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.07183, + 45.43232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U LA TOURETTE", + "ref": "FRSUAP42312A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U SAVIGNEUX", + "ref": "FRSUAP42299A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U SAVIGNEUX", + "ref": "FRSUAP42299A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U SAVIGNEUX", + "ref": "FRSUAP42299A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U SAVIGNEUX", + "ref": "FRSUAP42299A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U SAVIGNEUX", + "ref": "FRSUAP42299A", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U SAVIGNEUX", + "ref": "FRSUAP42299A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U SAVIGNEUX", + "ref": "FRSUAP42299A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.09085, + 45.60781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "E-TOTEM", + "email": "contact@e-totem.fr", + "network": "SUPER U SAVIGNEUX", + "ref": "FRSUAP42299A", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.876677, + 47.063467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83442, + 47.0787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.879119, + 47.060109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.876677, + 47.063467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.897106, + 47.048993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.897106, + 47.048993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87928, + 47.058334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.870702, + 47.065228 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.870702, + 47.065228 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83442, + 47.0787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83442, + 47.0787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.879119, + 47.060109 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.885521, + 47.051325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8777, + 47.05618 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8777, + 47.05618 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.897598, + 47.0604 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.897598, + 47.0604 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.897598, + 47.0604 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.885521, + 47.051325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98902199, + 47.711017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.98902199, + 47.711017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.350736, + 47.471672 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.350736, + 47.471672 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.152529, + 47.308056 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.636861, + 47.128778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.636861, + 47.128778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.87928, + 47.058334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.267346, + 47.337381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.152529, + 47.308056 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.728161, + 47.209754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.031529, + 47.569042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359873, + 47.57017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.031529, + 47.569042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.031529, + 47.569042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568992, + 47.534362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.568992, + 47.534362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.760868, + 47.348772 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.760868, + 47.348772 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.570046, + 47.664759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.570046, + 47.664759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.864912, + 47.412434 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.864912, + 47.412434 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.267346, + 47.337381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.189167, + 47.286139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.189167, + 47.286139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.189167, + 47.286139 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.018614, + 47.182679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.018614, + 47.182679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.488031, + 47.68098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.488031, + 47.68098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.983533, + 47.288395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.983533, + 47.288395 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72744, + 47.218516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.72744, + 47.218516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.728161, + 47.209754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.636861, + 47.128778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.594438, + 47.572185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359873, + 47.57017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.443889, + 47.649611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.443889, + 47.649611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.594438, + 47.572185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.040129, + 47.221793 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.040129, + 47.221793 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.047154, + 47.18119 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.047154, + 47.18119 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.116001, + 47.280513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.116001, + 47.280513 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.231524, + 47.341862 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.231524, + 47.341862 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.110091, + 47.182113 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.110091, + 47.182113 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.600949, + 47.215222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.600949, + 47.215222 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706472, + 47.614389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706472, + 47.614389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.706472, + 47.614389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.921126, + 47.405856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.021022, + 47.291658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.921126, + 47.405856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.868405, + 47.198261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.868405, + 47.198261 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232564, + 47.553524 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.232564, + 47.553524 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038546, + 47.561347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.443889, + 47.649611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.562288, + 47.61527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.359873, + 47.57017 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.562288, + 47.61527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.393216, + 47.559367 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.393216, + 47.559367 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.435457, + 47.418908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.435457, + 47.418908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.119188, + 47.231738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.119188, + 47.231738 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.301931, + 47.189978 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.301931, + 47.189978 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.301931, + 47.189978 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27582, + 47.191899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27582, + 47.191899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273548, + 47.193495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.273548, + 47.193495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.204504, + 47.339675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.204504, + 47.339675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.240833, + 47.671838 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.240833, + 47.671838 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244611, + 47.672 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244611, + 47.672 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.244611, + 47.672 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.508696, + 47.506721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.508696, + 47.506721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.508696, + 47.506721 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.528013, + 47.52875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.528013, + 47.52875 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.038546, + 47.561347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.543489, + 47.480374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.408917, + 47.318639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.551959, + 47.474517 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55714, + 47.479224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55714, + 47.479224 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.552912, + 47.491494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.552912, + 47.491494 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.524759, + 47.487154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.524759, + 47.487154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.484532, + 47.404556 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.562786, + 47.474284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.562786, + 47.474284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.546506, + 47.470084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.546506, + 47.470084 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.560626, + 47.479479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.560626, + 47.479479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.543489, + 47.480374 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.564293, + 47.478727 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.564293, + 47.478727 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.553069, + 47.462925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.553069, + 47.462925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55655, + 47.469423 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55655, + 47.469423 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.539925, + 47.469068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.539925, + 47.469068 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53269521, + 47.46096235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53269521, + 47.46096235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566538, + 47.473302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.551959, + 47.474517 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.555071, + 47.474853 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.408917, + 47.318639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.555071, + 47.474853 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.021022, + 47.291658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.395715, + 47.457271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.395715, + 47.457271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.954205, + 47.171404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.954205, + 47.171404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.549208, + 47.477254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.549208, + 47.477254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.560842, + 47.49153 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.560842, + 47.49153 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525074, + 47.45235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525074, + 47.45235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.557721, + 47.466106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.557721, + 47.466106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525074, + 47.45235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525074, + 47.45235 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.557721, + 47.466106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.557721, + 47.466106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.555268, + 47.450911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.555268, + 47.450911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.538226, + 47.46024 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.538226, + 47.46024 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.558719, + 47.475807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.558719, + 47.475807 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.565617, + 47.493526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.565617, + 47.493526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.566538, + 47.473302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548205, + 47.474028 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.548205, + 47.474028 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5919, + 47.4801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602694, + 47.316361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602694, + 47.316361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.602694, + 47.316361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.982642, + 47.209947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.982642, + 47.209947 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.992462, + 47.202836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.992462, + 47.202836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.899778, + 47.251778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.899778, + 47.251778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.899778, + 47.251778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.799876, + 47.50232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.799876, + 47.50232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.936225, + 47.140204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.936225, + 47.140204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.609137, + 47.424319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.609137, + 47.424319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.620562, + 47.409902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.620562, + 47.409902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.065252, + 47.303128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.065252, + 47.303128 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.504181, + 47.564662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.504181, + 47.564662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.447423, + 47.357032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.447423, + 47.357032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.408917, + 47.318639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.214121, + 47.438176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.214121, + 47.438176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.237386, + 47.440085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.588673, + 47.505249 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.5919, + 47.4801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56552, + 47.449193 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.56552, + 47.449193 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.559266, + 47.468648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.559266, + 47.468648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.464037, + 47.211582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.464037, + 47.211582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61754, + 47.51396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61754, + 47.51396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61754, + 47.51396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.588673, + 47.505249 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.590732, + 47.506252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.237386, + 47.440085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.590732, + 47.506252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.589951, + 47.499568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.589951, + 47.499568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.101972, + 47.540358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.101972, + 47.540358 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.106122, + 47.542556 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.106122, + 47.542556 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.640257, + 47.4761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.640257, + 47.4761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624794, + 47.474972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.624794, + 47.474972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.484532, + 47.404556 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.978444, + 47.615778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24442, + 47.265602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.02531, + 47.270356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.470786, + 47.520083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.470786, + 47.520083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.383166, + 47.501832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.383166, + 47.501832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.081374, + 47.257962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.081374, + 47.257962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.074092, + 47.263713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.074092, + 47.263713 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09440862, + 47.26641082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09440862, + 47.26641082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.09440862, + 47.26641082 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.090757, + 47.249435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.090757, + 47.249435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.071973, + 47.255545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.071973, + 47.255545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.655311, + 47.383595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.655311, + 47.383595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.866408, + 47.686106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.866408, + 47.686106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.869483, + 47.69788 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.869483, + 47.69788 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.869483, + 47.69788 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.872631, + 47.686143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.872631, + 47.686143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.938152, + 47.05595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.02531, + 47.270356 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.514327, + 47.400515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35941666, + 47.5761667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.514327, + 47.400515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.627508, + 47.303931 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678323, + 47.483684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.678323, + 47.483684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.805811, + 47.31498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.805811, + 47.31498 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.188577, + 47.287826 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.188577, + 47.287826 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.710591, + 47.460763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.710591, + 47.460763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.911004, + 47.092248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.911004, + 47.092248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.994913, + 47.124825 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.994913, + 47.124825 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.994046, + 47.123098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.994046, + 47.123098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.095972, + 47.122111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.095972, + 47.122111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.095972, + 47.122111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.703429, + 47.431488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.703429, + 47.431488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32078, + 47.410707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.32078, + 47.410707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497006, + 47.370575 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.497006, + 47.370575 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.514327, + 47.400515 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.938152, + 47.05595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.35941666, + 47.5761667 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.458562, + 47.401183 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.054743, + 47.239712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.066444, + 47.222944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.066444, + 47.222944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.066444, + 47.222944 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.476858, + 47.331369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.476858, + 47.331369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.208389, + 47.13925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.208389, + 47.13925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.208389, + 47.13925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83459, + 47.60009 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.83459, + 47.60009 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.053695, + 47.393536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.053695, + 47.393536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.535805, + 47.144991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.535805, + 47.144991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.057201, + 47.15339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.057201, + 47.15339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.891717, + 47.462874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.891717, + 47.462874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.423855, + 47.559531 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.423855, + 47.559531 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.055683, + 47.325855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.055683, + 47.325855 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.703431, + 47.021955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.703431, + 47.021955 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.24442, + 47.265602 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.054743, + 47.239712 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.322585, + 47.313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41920244, + 47.56992087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.322585, + 47.313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.41920244, + 47.56992087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.524881, + 47.364289 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.524881, + 47.364289 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55436, + 47.577466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55436, + 47.577466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.850349, + 47.005484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.850349, + 47.005484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.505148, + 47.265862 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.505148, + 47.265862 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.468069, + 47.615758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.468069, + 47.615758 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1648, + 47.140958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.1648, + 47.140958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.114795, + 47.037548 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.114795, + 47.037548 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.509598, + 47.456582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.509598, + 47.456582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.482769, + 47.441977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4999, + 47.4474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.4999, + 47.4474 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.468639, + 47.452278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.468639, + 47.452278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.468639, + 47.452278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7893902, + 47.12269847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7893902, + 47.12269847 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.627508, + 47.303931 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.482769, + 47.441977 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.458562, + 47.401183 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.270014, + 47.401709 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.125468, + 47.096814 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.862944, + 47.390083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.862944, + 47.390083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.610083, + 47.529708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.610083, + 47.529708 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.615875, + 47.541477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.615875, + 47.541477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.155132, + 47.130526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.155132, + 47.130526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.417993, + 47.745053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.417993, + 47.745053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.364194, + 47.699917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.364194, + 47.699917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.364194, + 47.699917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.014452, + 47.465705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.014452, + 47.465705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.552589, + 47.356914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.552589, + 47.356914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.528586, + 47.396864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.528586, + 47.396864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.528586, + 47.396864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.528586, + 47.396864 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.115145, + 47.512698 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.115145, + 47.512698 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.117367, + 47.510163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.125468, + 47.096814 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.270014, + 47.401709 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.117367, + 47.510163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.671603, + 47.560909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.711688, + 47.626205 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.661137, + 47.457042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.167665, + 47.341154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.167665, + 47.341154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.978444, + 47.615778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.978444, + 47.615778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.061148, + 47.017144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.061148, + 47.017144 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.107774, + 47.380672 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.107774, + 47.380672 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.111191, + 47.375752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.111191, + 47.375752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.88562, + 47.522113 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.88562, + 47.522113 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.429762, + 47.235004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.429762, + 47.235004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7447, + 47.007271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7447, + 47.007271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.891438, + 47.137219 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.891438, + 47.137219 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27214, + 47.45545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.27214, + 47.45545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.666759, + 47.518528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.666759, + 47.518528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.671603, + 47.560909 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.117367, + 47.510163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.711688, + 47.626205 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.956686, + 47.704641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.743992, + 47.525189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.010639, + 47.059889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.010639, + 47.059889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.010639, + 47.059889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.224408, + 47.350746 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.224408, + 47.350746 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.994333, + 47.101603 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.994333, + 47.101603 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.494282, + 47.468264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.494282, + 47.468264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.942527, + 47.029359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.743992, + 47.525189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.014638, + 47.355065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.026729, + 47.059998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.014638, + 47.355065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55671, + 47.422724 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.55671, + 47.422724 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7583043, + 47.4097886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.7583043, + 47.4097886 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8330849, + 47.4096558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8330849, + 47.4096558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.8330849, + 47.4096558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.100163, + 47.264232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.661137, + 47.457042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.100163, + 47.264232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.026729, + 47.059998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.942527, + 47.029359 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.655694, + 47.358167 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525422, + 47.424441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436901, + 47.521476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.436901, + 47.521476 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.655694, + 47.358167 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.430275, + 47.49691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.430275, + 47.49691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.676106, + 47.542668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.676106, + 47.542668 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.858696, + 47.356033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.858696, + 47.356033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.527251, + 47.437306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.527251, + 47.437306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525422, + 47.424441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.956686, + 47.704641 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525211, + 47.442282 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.174833, + 47.739167 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.525211, + 47.442282 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.808266, + 47.55254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.174833, + 47.739167 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.174833, + 47.739167 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.808266, + 47.55254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.174242, + 47.739155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.174242, + 47.739155 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688459, + 47.373979 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.688459, + 47.373979 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.655694, + 47.358167 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "254901309", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SIEML", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.430135, + 47.200016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.653893, + 47.414195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432675, + 47.19593 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.432675, + 47.19593 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.316809, + 47.448766 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.316809, + 47.448766 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.319294, + 47.447462 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.319294, + 47.447462 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.644031, + 47.380213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.452347, + 47.623454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.653893, + 47.414195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6517673, + 47.4118735 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.6517673, + 47.4118735 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.452347, + 47.623454 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.419992, + 47.495595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.419992, + 47.495595 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.307135, + 47.205485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.307135, + 47.205485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.601608, + 46.891832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.593407, + 46.887125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.430135, + 47.200016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.045511, + 47.585254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399953, + 47.155328 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.399953, + 47.155328 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.045511, + 47.585254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.374239, + 47.411751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.933519, + 47.244624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.933519, + 47.244624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75007, + 47.519053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.75007, + 47.519053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.248399, + 47.076892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.248399, + 47.076892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.300524, + 47.101168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.300524, + 47.101168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.605544, + 47.362484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.605544, + 47.362484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.833976, + 47.627398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.833976, + 47.627398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.866043, + 47.697553 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.866043, + 47.697553 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.953551, + 47.518842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.953551, + 47.518842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.416506, + 47.324312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.431082, + 47.325404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.431082, + 47.325404 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.416486, + 47.324248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.416486, + 47.324248 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.593407, + 46.887125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.372122, + 47.621263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.374239, + 47.411751 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5012, + 47.437694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.152043, + 47.330177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.999195, + 47.064589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.999195, + 47.064589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.346143, + 47.448143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.346143, + 47.448143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.281681, + 47.140034 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.281681, + 47.140034 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.4801865, + 47.4399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5012, + 47.437694 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.710672, + 47.381489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15049, + 47.326231 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.710672, + 47.381489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.621944, + 47.574983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.623028, + 47.566145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.623028, + 47.566145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.284393, + 47.346324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.284393, + 47.346324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.027984, + 47.289456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.027984, + 47.289456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.793377, + 47.415736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.152043, + 47.330177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.15049, + 47.326231 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.596198, + 46.995125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.861284, + 47.359424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.596198, + 46.995125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.349169, + 47.236772 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.349169, + 47.236772 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.816219, + 46.997306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.793926, + 47.0201569 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.793926, + 47.0201569 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.385048, + 47.098967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.385048, + 47.098967 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.861284, + 47.359424 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.676954, + 47.596801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.486906, + 47.057456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.676954, + 47.596801 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.228706, + 47.430853 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.228706, + 47.430853 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.451702, + 47.396174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.451702, + 47.396174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.159951, + 47.482992 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.159951, + 47.482992 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.158828, + 47.480876 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.158828, + 47.480876 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.372122, + 47.621263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.486906, + 47.057456 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.793377, + 47.415736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.197509, + 47.621767 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40979918, + 47.28394529 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.239721, + 47.446531 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.761038, + 47.475429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.761038, + 47.475429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.767038, + 47.477271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.767038, + 47.477271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.761649, + 47.472946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.95605, + 47.041524 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.95605, + 47.041524 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.18643, + 47.042495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.18643, + 47.042495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.848403, + 47.418352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.848403, + 47.418352 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.970647, + 47.41373 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.970647, + 47.41373 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48938447, + 47.29850005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.48938447, + 47.29850005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.558977, + 47.384186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.558977, + 47.384186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.348234, + 47.319132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.348234, + 47.319132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.290308, + 47.276517 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.290308, + 47.276517 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.334967, + 47.269653 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.334967, + 47.269653 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.490912, + 47.097019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.490912, + 47.097019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09213, + 47.395745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.177845, + 47.370906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.531968, + 47.553973 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.531968, + 47.553973 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.410933, + 47.081675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.397512, + 47.074964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.397512, + 47.074964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.174149, + 47.367033 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.177845, + 47.370906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.910281, + 47.125105 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09213, + 47.395745 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.910281, + 47.125105 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.937478, + 47.114005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.937478, + 47.114005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.391569, + 47.429477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.391569, + 47.429477 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.990829, + 47.653232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.990829, + 47.653232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.479942, + 47.279449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.479942, + 47.279449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.039746, + 47.080729 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.039746, + 47.080729 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.239721, + 47.446531 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.197509, + 47.621767 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.40979918, + 47.28394529 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.337746, + 47.139538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88, + 47.288138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.056627, + 47.27916 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.056627, + 47.27916 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.294157, + 47.39103 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.294157, + 47.39103 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.512496, + 47.296143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.512496, + 47.296143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.167744, + 47.411584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.167744, + 47.411584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.674989, + 47.667198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.674989, + 47.667198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.074784, + 47.317146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.074784, + 47.317146 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.092474, + 47.340349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.092474, + 47.340349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.057012, + 47.474882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.057012, + 47.474882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.317223, + 47.657008 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.317223, + 47.657008 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388551, + 47.285563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388551, + 47.285563 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388497, + 47.285516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388497, + 47.285516 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388422, + 47.28544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.388422, + 47.28544 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.88, + 47.288138 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.877391, + 47.290846 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.877391, + 47.290846 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.379295, + 47.712905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.340886, + 47.178242 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.340886, + 47.178242 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.972218, + 47.372136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.972218, + 47.372136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.403169, + 47.701217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37759, + 47.718186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.37759, + 47.718186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.380766, + 47.720652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.380766, + 47.720652 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.379295, + 47.712905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.282014, + 47.085153 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.422498, + 47.124176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.422498, + 47.124176 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.987865, + 47.150435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.987865, + 47.150435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61073, + 47.091867 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.61073, + 47.091867 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.615587, + 47.090245 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.615587, + 47.090245 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.279461, + 47.089987 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.279461, + 47.089987 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.282014, + 47.085153 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.337746, + 47.139538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10196, + 47.115941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.754012, + 46.963716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.385744, + 47.253189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.808674, + 47.103256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.812257, + 47.103159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.812257, + 47.103159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.044815, + 47.208127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.044815, + 47.208127 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.643245, + 47.037744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.643245, + 47.037744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.640351, + 47.03601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.640351, + 47.03601 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.192189, + 47.441001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.192189, + 47.441001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.014579, + 47.257994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.014579, + 47.257994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49881, + 47.655756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.49881, + 47.655756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.672813, + 47.262506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.672813, + 47.262506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.938037, + 47.373695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.939955, + 47.358691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.939955, + 47.358691 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07738, + 47.550071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.07738, + 47.550071 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.590963, + 47.735648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.808674, + 47.103256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.069307, + 47.642319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.069307, + 47.642319 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.734586, + 47.113739 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.371945, + 47.251305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.484521, + 47.24945 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.484521, + 47.24945 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.339434, + 47.083183 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.339434, + 47.083183 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.727092, + 47.055821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.727092, + 47.055821 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.306585, + 47.399539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.306585, + 47.399539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.179806, + 47.352483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.179806, + 47.352483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.734586, + 47.113739 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.210351, + 47.287351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.404951, + 47.365936 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.404951, + 47.365936 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.18292, + 47.523337 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.18292, + 47.523337 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.147443, + 47.181975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.147443, + 47.181975 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.425414, + 47.394709 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.425414, + 47.394709 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.210336, + 47.287378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.210336, + 47.287378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.754012, + 46.963716 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.590963, + 47.735648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.305198, + 47.73678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.305198, + 47.73678 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.430494, + 46.971725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.268571, + 47.162907 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.266139, + 47.16296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.266139, + 47.16296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.032016, + 47.386962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.032016, + 47.386962 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.028215, + 47.468655 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.028215, + 47.468655 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.704934, + 47.554354 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.704934, + 47.554354 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.430494, + 46.971725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.483028, + 47.344527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.7441279, + 47.29341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.737473, + 47.325442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.737473, + 47.325442 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.695545, + 47.331241 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.695545, + 47.331241 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.513712, + 47.055246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.513712, + 47.055246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.666373, + 47.527509 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.666373, + 47.527509 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.483028, + 47.344527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.507161, + 47.348051 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.530352, + 47.342459 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682692, + 46.901893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.530352, + 47.342459 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.527051, + 47.342284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.527051, + 47.342284 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.277813, + 47.461336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.277813, + 47.461336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.792024, + 47.3281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.792024, + 47.3281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.440785, + 47.267334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.440785, + 47.267334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.431817, + 47.441948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.431817, + 47.441948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.682692, + 46.901893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.507161, + 47.348051 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5939858, + 47.28067 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.621305, + 47.329273 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.621305, + 47.329273 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.626831, + 47.331215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.626831, + 47.331215 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.200174, + 47.299795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.200174, + 47.299795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187091, + 47.317501 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.187091, + 47.317501 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.371945, + 47.251305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.210351, + 47.287351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.385744, + 47.253189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.335882, + 47.261013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.097518, + 47.114189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.201325, + 47.384129 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.340087, + 47.259812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.345177, + 47.270324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.345177, + 47.270324 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.317604, + 47.245187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.317604, + 47.245187 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.335882, + 47.261013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.335882, + 47.261013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.335882, + 47.261013 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.122795, + 47.127457 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.741972, + 47.131272 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.750358, + 47.132868 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.750358, + 47.132868 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.432168, + 47.282658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.432168, + 47.282658 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.433513, + 47.275217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.433513, + 47.275217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.218858, + 47.129005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.218858, + 47.129005 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.097518, + 47.114189 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.014487, + 47.362983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.887244, + 47.540558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.754958, + 47.198616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.754958, + 47.198616 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45349, + 47.398087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.45349, + 47.398087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.547222, + 47.378032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.547222, + 47.378032 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.191869, + 47.136163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.191869, + 47.136163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.436018, + 47.01779 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.436018, + 47.01779 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.887244, + 47.540558 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.084647, + 47.433331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09346, + 47.436521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.09346, + 47.436521 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.540393, + 47.112585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.580587, + 47.127249 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.580587, + 47.127249 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.582848, + 47.123621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.582848, + 47.123621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.014487, + 47.362983 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.10196, + 47.115941 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.182186, + 47.183363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.196869, + 47.369918 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.180168, + 47.232194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.180168, + 47.232194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58056, + 47.011961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5765, + 46.967023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.5765, + 46.967023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74289, + 46.92994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.74289, + 46.92994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.781826, + 47.277731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.781826, + 47.277731 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.779158, + 47.274213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.779158, + 47.274213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.196869, + 47.369918 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.175058, + 47.228305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.038474, + 47.517877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.038474, + 47.517877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.103525, + 47.384481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.103525, + 47.384481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.095683, + 47.406206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.095683, + 47.406206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.867052, + 47.104023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.867052, + 47.104023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.308939, + 47.061157 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.182186, + 47.183363 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.201325, + 47.384129 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.175058, + 47.228305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.308939, + 47.061157 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.161966, + 47.247989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.632266, + 47.123441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.161966, + 47.247989 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.376317, + 47.057271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.376317, + 47.057271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.293884, + 47.517368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.293884, + 47.517368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.858725, + 47.186286 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.449028, + 47.783883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.449028, + 47.783883 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57997, + 47.500873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.57997, + 47.500873 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.58056, + 47.011961 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.632266, + 47.123441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.486141, + 47.720665 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.30994, + 47.313832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.163872, + 47.264783 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.486141, + 47.720665 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.006097, + 47.459991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.006097, + 47.459991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.300755, + 47.319113 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.300755, + 47.319113 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.30994, + 47.313832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "840290183", + "email": "assistance-technique@ouestcharge-paysdelaloire-moncompte.fr", + "phone": "0 970 830 213", + "network": "SYDELA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.442532, + 44.46386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805269", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.662712, + 44.952304 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815388", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.125582, + 47.277542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "735840", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.125582, + 47.277542 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "735840", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.614433, + 44.20859 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789198", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.44395, + 44.464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA3", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805299", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.589693, + 47.258202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "814566", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.589693, + 47.258202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "814566", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.589693, + 47.258202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "814566", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.589693, + 47.258202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "814566", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99651, + 45.209725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "788925", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99651, + 45.209725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "788925", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99651, + 45.209725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "788925", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99651, + 45.209725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "788925", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99651, + 45.209725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "788925", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.99651, + 45.209725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "788925", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.504963, + 45.475736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815415", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.504963, + 45.475736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "815415", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.777916, + 44.826052 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA4", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789192", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.777916, + 44.826052 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA4", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789192", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.398027, + 47.497011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741654", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.398027, + 47.497011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741654", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.398027, + 47.497011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741654", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.398027, + 47.497011 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741654", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.371428, + 43.848528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805260", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.371428, + 43.848528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805260", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.371428, + 43.848528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805260", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.371428, + 43.848528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA5", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805260", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057903, + 46.067479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "709409", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057903, + 46.067479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "709409", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057903, + 46.067479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "709409", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057903, + 46.067479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "709409", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057903, + 46.067479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "709409", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.057903, + 46.067479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "709409", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343414, + 45.469726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "790128", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343414, + 45.469726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "790128", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.683944, + 44.405045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "EVzen", + "ref": "837012", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.683944, + 44.405045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "EVzen", + "ref": "837012", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 0.683944, + 44.405045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "EVzen", + "ref": "837012", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343414, + 45.469726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "790128", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343414, + 45.469726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "790128", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.343414, + 45.469726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "790128", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.653702, + 47.234349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "707684", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.653702, + 47.234349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "707684", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376104, + 47.765942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "756453", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376104, + 47.765942 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "756453", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883278, + 45.026175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "811089", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883278, + 45.026175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "811089", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 3.883278, + 45.026175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "evZen | FR*EVZ", + "email": "support@evzen.com", + "network": "Norauto - Bornes publiques", + "ref": "811089", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288, + 47.186053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805335", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288, + 47.186053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805335", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288, + 47.186053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805335", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288, + 47.186053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805335", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288, + 47.186053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805335", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288, + 47.186053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805335", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.46288, + 47.186053 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "805335", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.888169, + 47.96278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "671597", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.888169, + 47.96278 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "671597", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -1.383996, + 43.844813 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "577502", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.53466, + 47.49048 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "413750", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "815799", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "815799", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "815799", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "815799", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "815799", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "815799", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "815799", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.846141, + 47.898355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "815799", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708683", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708683", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708683", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708683", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708683", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708683", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708683", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 4.416422, + 45.449333 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA9", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "708683", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.107127, + 47.121343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741681", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.107127, + 47.121343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741681", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -2.107127, + 47.121343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741681", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.326251, + 47.569098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880233", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.326251, + 47.569098 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880233", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -0.61389, + 47.476594 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "413738", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + } + ] +} \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_90.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_90.json new file mode 100644 index 00000000..608a1f2f --- /dev/null +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_90.json @@ -0,0 +1,3001 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8633, + 47.628899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*221*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8633, + 47.628899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*221*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8633, + 47.628899 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*221*2*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.873729, + 47.640214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR BELFORT CONNECT", + "ref": "FRCPIE6665205", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.873729, + 47.640214 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR BELFORT CONNECT", + "ref": "FRCPIE6665205", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8872073, + 47.6485392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "388876997", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA DENNEY AUTOMOBILES", + "ref": "88247", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "start_date": "2021-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8872073, + 47.6485392 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "388876997", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "KIA DENNEY AUTOMOBILES", + "ref": "88248", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Mo-Fr 08:30-19:00,Sat 09:00-18:00", + "start_date": "2021-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.93575, + 47.5493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BLJKQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.93575, + 47.5493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BLJKQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86469, + 47.587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NQKUBV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84753, + 47.7303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LVMKNE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99797, + 47.5083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJZRFY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82794, + 47.7413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XLLFTL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82794, + 47.7413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XLLFTL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99797, + 47.5083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJZRFY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99797, + 47.5083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJZRFY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99797, + 47.5083 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NJZRFY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86469, + 47.587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NQKUBV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86469, + 47.587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NQKUBV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92317, + 47.7177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLNRGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82794, + 47.7413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XLLFTL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82794, + 47.7413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XLLFTL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86469, + 47.587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NQKUBV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89554, + 47.5837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HMRLQZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89554, + 47.5837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HMRLQZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89564, + 47.5838 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HMRLQZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85355, + 47.6415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XDHKLG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86415, + 47.6568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZCPMXK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92317, + 47.7177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLNRGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81418, + 47.6841 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TAEZPA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92004, + 47.4895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HFZCWL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92004, + 47.4895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HFZCWL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.83139, + 47.6221 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ARYNXY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.83139, + 47.6221 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ARYNXY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.83139, + 47.6221 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ARYNXY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84753, + 47.7303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LVMKNE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84753, + 47.7303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LVMKNE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84753, + 47.7303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LVMKNE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92004, + 47.4895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HFZCWL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92004, + 47.4895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HFZCWL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.83139, + 47.6221 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ARYNXY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81418, + 47.6841 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TAEZPA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81418, + 47.6841 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TAEZPA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.81418, + 47.6841 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TAEZPA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86136, + 47.6168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YUZJTE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86136, + 47.6168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YUZJTE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86136, + 47.6168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YUZJTE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92317, + 47.7177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLNRGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.92317, + 47.7177 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLNRGU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86415, + 47.6568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZCPMXK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86114, + 47.6073 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DYDNZG", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86114, + 47.6073 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DYDNZG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96892, + 47.7327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KCTAPV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8492, + 47.6497 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GEKNCN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86137, + 47.639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZEDVRB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85294, + 47.5574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EGPJSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82891, + 47.6347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XCGVER", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82891, + 47.6347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XCGVER", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86128, + 47.6411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PWMZSD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96892, + 47.7327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KCTAPV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82891, + 47.6347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XCGVER", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96892, + 47.7327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KCTAPV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86114, + 47.6073 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DYDNZG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.82891, + 47.6347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XCGVER", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.96892, + 47.7327 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KCTAPV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86128, + 47.6411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PWMZSD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86415, + 47.6568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZCPMXK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84058, + 47.6449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UNQYWG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84058, + 47.6449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UNQYWG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86128, + 47.6411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PWMZSD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86128, + 47.6411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PWMZSD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86137, + 47.639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZEDVRB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86137, + 47.639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZEDVRB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84058, + 47.6449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UNQYWG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8492, + 47.6497 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GEKNCN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.89564, + 47.5838 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HMRLQZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-10-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85343, + 47.6415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XDHKLG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85355, + 47.6415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XDHKLG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86136, + 47.6168 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YUZJTE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99513, + 47.6106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XURZAM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99513, + 47.6106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XURZAM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.93591, + 47.5493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BLJKQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.93591, + 47.5493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BLJKQY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99513, + 47.6106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XURZAM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85294, + 47.5574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EGPJSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85294, + 47.5574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EGPJSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.99513, + 47.6106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XURZAM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85294, + 47.5574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EGPJSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86137, + 47.639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZEDVRB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8492, + 47.6497 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GEKNCN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.84058, + 47.6449 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UNQYWG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8492, + 47.6497 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GEKNCN", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-10-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.85343, + 47.6415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XDHKLG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-04-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.86415, + 47.6568 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZCPMXK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919325, + 47.641882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGKHOMVXPL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919325, + 47.641882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGKHOMVXPL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919325, + 47.641882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGKHOMVXPL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919325, + 47.641882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGKHOMVXPL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8633002, + 47.63998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SXHLTOEYHV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8633002, + 47.63998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SXHLTOEYHV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8633002, + 47.63998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SXHLTOEYHV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8633002, + 47.63998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SXHLTOEYHV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919325, + 47.641882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGKHOMVXPL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919325, + 47.641882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AGKHOMVXPL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.000045, + 47.517919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WBBEFNGEV0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 7.000045, + 47.517919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WBBEFNGEV0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.862838, + 47.646763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BKKQY5R3K6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.862838, + 47.646763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BKKQY5R3K6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.862838, + 47.646763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BKKQY5R3K6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.862838, + 47.646763 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BKKQY5R3K6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.8932515, + 47.6515701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEBORNE", + "owner:ref:FR:SIREN": "401060496", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "SIRUFO ESSERT - MAZDA BELFORT ", + "ref": "49591", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-19:00,Sat 09:00-17:00", + "start_date": "2020-12-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919325, + 47.641882 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HAEFELI", + "owner:ref:FR:SIREN": "259000966", + "email": "florent.mayery@citeos.com", + "phone": "0381215444", + "network": "Réseau IRVE TE90", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.919329, + 47.641884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "HAEFELI", + "owner:ref:FR:SIREN": "259000966", + "email": "florent.mayery@citeos.com", + "phone": "0381215444", + "network": "Réseau IRVE TE90", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.921037, + 47.643211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-23", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.921037, + 47.643211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-23", + "socket:type2_cable": "FALSE" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 6.921037, + 47.643211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "R3", + "owner:ref:FR:SIREN": "902726488", + "email": "exploitation@r3-charge.fr", + "phone": "321509292", + "network": "R3", + "socket:type2_combo": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-23", + "socket:type2_cable": "FALSE" + } + } + ] +} \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_91.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_91.json index 110b6bf2..edcfc096 100644 --- a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_91.json +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_91.json @@ -98,495 +98,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.436023, - 48.632526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS MAGELLAN 3", - "ref": "FRCPIE6591135", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.436023, - 48.632526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS MAGELLAN 3", - "ref": "FRCPIE6591095", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.436023, - 48.632526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS MAGELLAN 3", - "ref": "FRCPIE6591105", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.436023, - 48.632526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS MAGELLAN 3", - "ref": "FRCPIE6591115", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.436023, - 48.632526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS MAGELLAN 3", - "ref": "FRCPIE6591125", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.436023, - 48.632526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS MAGELLAN 3", - "ref": "FRCPIE6591145", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.436023, - 48.632526 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "IRVE CAGPS MAGELLAN 3", - "ref": "FRCPIE6591165", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229205, - 48.690167 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT VILLEBON", - "ref": "FRCPIE6595995", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229205, - 48.690167 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT VILLEBON", - "ref": "FRCPIE6595995", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.01794363, - 48.543534 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dourdan", - "ref": "FRIENE007902", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.01794363, - 48.543534 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dourdan", - "ref": "FRIENE007902", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.01794363, - 48.543534 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dourdan", - "ref": "FRIENE007901", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.01794363, - 48.543534 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "support@iecharge.io", - "phone": "+33 1 84 88 68 00", - "network": "Dourdan", - "ref": "FRIENE007901", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.170199, - 48.457568 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ETAMPES", - "ref": "FRCPIE6609035", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.170199, - 48.457568 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ETAMPES", - "ref": "FRCPIE6609035", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389685, - 48.675894 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VIRY-CHATILLON", - "ref": "FRCPIE6628885", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389685, - 48.675894 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR VIRY-CHATILLON", - "ref": "FRCPIE6628885", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206429, - 48.688773 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR 3CCLIM VILLEBON", - "ref": "FRCPIE6690455", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206429, - 48.688773 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR 3CCLIM VILLEBON", - "ref": "FRCPIE6690455", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.427055, - 48.612608 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LISSES", - "ref": "FRCPIE6758525", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.427055, - 48.612608 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR LISSES", - "ref": "FRCPIE6758525", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324704, - 48.73466 + 2.216118, + 48.751964 ] }, "properties": { @@ -596,14 +109,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*60*1*_*_", + "ref": "FR*SOD*S*SIGE*175*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-01-07" + "start_date": "2021-07-22" } }, { @@ -611,8 +124,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.324704, - 48.73466 + 2.216118, + 48.751964 ] }, "properties": { @@ -622,65 +135,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*60*1*_*_", + "ref": "FR*SOD*S*SIGE*175*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230529, - 48.640338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*54*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230529, - 48.640338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*54*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" + "start_date": "2021-07-22" } }, { @@ -739,8 +201,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.339336, - 48.705907 + 2.230529, + 48.640338 ] }, "properties": { @@ -750,14 +212,39 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*279*1*_*_", + "ref": "FR*SOD*S*SIGE*54*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230529, + 48.640338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*54*2*_*_", "socket:type2_combo": "yes", "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-06-05" + "start_date": "2021-05-21" } }, { @@ -765,8 +252,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.339336, - 48.705907 + 2.324704, + 48.73466 ] }, "properties": { @@ -776,39 +263,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*279*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324774, - 48.700535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*280*1*_*_", + "ref": "FR*SOD*S*SIGE*60*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-06-14" + "start_date": "2021-01-07" } }, { @@ -816,8 +278,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.324774, - 48.700535 + 2.324704, + 48.73466 ] }, "properties": { @@ -827,220 +289,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*280*1*_*_", + "ref": "FR*SOD*S*SIGE*60*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229802, - 48.642808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*286*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229802, - 48.642808 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*286*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270501, - 48.752064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*307*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270501, - 48.752064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*307*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270501, - 48.752064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*307*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270501, - 48.752064 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*307*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21486, - 48.754676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*231*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21486, - 48.754676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*231*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-10" + "start_date": "2021-01-07" } }, { @@ -1059,7 +315,240 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*375*1*_*_", + "ref": "FR*SOD*S*SIGE*375*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21486, + 48.754676 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*231*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.21486, + 48.754676 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*231*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329537, + 48.739087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*191*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.329537, + 48.739087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*191*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252401, + 48.740984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*321*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252401, + 48.740984 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*321*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.219674, + 48.755734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*324*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.219674, + 48.755734 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*324*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264582, + 48.743228 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*375*3*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -1109,8 +598,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*375*3*_*_", - "socket:typee": "yes", + "ref": "FR*SOD*S*SIGE*375*1*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -1124,8 +612,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.264582, - 48.743228 + 2.339336, + 48.705907 ] }, "properties": { @@ -1135,13 +623,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*375*4*_*_", - "socket:type2": "yes", + "ref": "FR*SOD*S*SIGE*279*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-02-22" + "start_date": "2022-06-05" } }, { @@ -1149,8 +638,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.252401, - 48.740984 + 2.339336, + 48.705907 ] }, "properties": { @@ -1160,14 +649,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*321*1*_*_", - "socket:typee": "yes", + "ref": "FR*SOD*S*SIGE*279*1*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-12-30" + "start_date": "2022-06-05" } }, { @@ -1175,8 +663,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.252401, - 48.740984 + 2.324774, + 48.700535 ] }, "properties": { @@ -1186,14 +674,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*321*1*_*_", + "ref": "FR*SOD*S*SIGE*280*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-12-30" + "start_date": "2022-06-14" } }, { @@ -1201,8 +689,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.219674, - 48.755734 + 2.324774, + 48.700535 ] }, "properties": { @@ -1212,14 +700,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*324*1*_*_", + "ref": "FR*SOD*S*SIGE*280*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-02-09" + "start_date": "2022-06-14" } }, { @@ -1227,8 +715,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.219674, - 48.755734 + 2.229802, + 48.642808 ] }, "properties": { @@ -1238,14 +726,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*324*1*_*_", + "ref": "FR*SOD*S*SIGE*286*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-02-09" + "start_date": "2022-07-13" } }, { @@ -1253,8 +741,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.216118, - 48.751964 + 2.229802, + 48.642808 ] }, "properties": { @@ -1264,14 +752,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*175*1*_*_", + "ref": "FR*SOD*S*SIGE*286*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-22" + "start_date": "2022-07-13" } }, { @@ -1279,8 +767,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.216118, - 48.751964 + 2.270501, + 48.752064 ] }, "properties": { @@ -1290,14 +778,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*175*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", + "ref": "FR*SOD*S*SIGE*307*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-22" + "start_date": "2022-10-13" } }, { @@ -1305,8 +793,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.329537, - 48.739087 + 2.270501, + 48.752064 ] }, "properties": { @@ -1316,14 +804,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*191*1*_*_", + "ref": "FR*SOD*S*SIGE*307*2*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-09-22" + "start_date": "2022-09-26" } }, { @@ -1331,8 +819,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.329537, - 48.739087 + 2.270501, + 48.752064 ] }, "properties": { @@ -1342,14 +830,65 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*191*1*_*_", + "ref": "FR*SOD*S*SIGE*307*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270501, + 48.752064 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*307*2*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-09-22" + "start_date": "2022-09-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279881, + 48.665501 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*28*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-28" } }, { @@ -1617,8 +1156,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.159423, - 48.696949 + 2.246326, + 48.714756 ] }, "properties": { @@ -1628,40 +1167,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "CPS", - "ref": "FR*SOD*S*CAPS*21*1*_*_", + "ref": "FR*SOD*S*CAPS*8*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-07-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.242334, - 48.661919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*29*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-05" + "start_date": "2020-01-27" } }, { @@ -1747,8 +1260,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.279881, - 48.665501 + 2.294588, + 48.695099 ] }, "properties": { @@ -1758,144 +1271,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "CPS", - "ref": "FR*SOD*S*CAPS*28*1*_*_", + "ref": "FR*SOD*S*CAPS*55*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.142571, - 48.714664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*32*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24285, - 48.659538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24285, - 48.659538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*31*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216673, - 48.673862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216673, - 48.673862 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*30*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" + "start_date": "2022-09-30" } }, { @@ -1924,6 +1307,84 @@ "start_date": "2019-12-05" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.242334, + 48.661919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*29*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216673, + 48.673862 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216673, + 48.673862 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*30*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-26" + } + }, { "type": "Feature", "geometry": { @@ -1955,8 +1416,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.270542, - 48.641041 + 2.159423, + 48.696949 ] }, "properties": { @@ -1966,14 +1427,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "CPS", - "ref": "FR*SOD*S*CAPS*14*1*_*_", + "ref": "FR*SOD*S*CAPS*21*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2019-11-27" + "start_date": "2020-07-06" } }, { @@ -2028,110 +1489,6 @@ "start_date": "2019-11-27" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.187464, - 48.698582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.246326, - 48.714756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.246326, - 48.714756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.222766, - 48.739605 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27" - } - }, { "type": "Feature", "geometry": { @@ -2319,8 +1676,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.261823, - 48.689507 + 2.270542, + 48.641041 ] }, "properties": { @@ -2330,14 +1687,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "CPS", - "ref": "FR*SOD*S*CAPS*33*1*_*_", + "ref": "FR*SOD*S*CAPS*14*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-02-12" + "start_date": "2019-11-27" } }, { @@ -2389,7 +1746,7 @@ "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-02-12" + "start_date": "2020-01-14" } }, { @@ -2415,7 +1772,7 @@ "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-01-14" + "start_date": "2020-02-12" } }, { @@ -2574,6 +1931,58 @@ "start_date": "2019-11-27" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24285, + 48.659538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24285, + 48.659538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*31*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-05" + } + }, { "type": "Feature", "geometry": { @@ -2605,8 +2014,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.116799, - 48.687965 + 2.233518, + 48.697381 ] }, "properties": { @@ -2616,14 +2025,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "CPS", - "ref": "FR*SOD*S*CAPS*39*1*_*_", + "ref": "FR*SOD*S*CAPS*42*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-11-13" + "start_date": "2020-04-02" } }, { @@ -2631,8 +2040,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.261823, - 48.689507 + 2.292326, + 48.73232 ] }, "properties": { @@ -2642,14 +2051,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "CPS", - "ref": "FR*SOD*S*CAPS*33*1*_*_", + "ref": "FR*SOD*S*CAPS*43*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-02-12" + "start_date": "2020-09-02" } }, { @@ -2657,8 +2066,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.276495, - 48.664589 + 2.106596, + 48.700953 ] }, "properties": { @@ -2668,14 +2077,170 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "CPS", - "ref": "FR*SOD*S*CAPS*34*1*_*_", + "ref": "FR*SOD*S*CAPS*44*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2019-12-05" + "start_date": "2020-09-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.106596, + 48.700953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*44*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29254, + 48.696736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29254, + 48.696736 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*45*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-04-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273265, + 48.73428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273265, + 48.73428 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*46*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283376, + 48.730587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*47*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-08" } }, { @@ -2917,8 +2482,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.232224, - 48.717692 + 2.292326, + 48.73232 ] }, "properties": { @@ -2928,14 +2493,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "CPS", - "ref": "FR*SOD*S*CAPS*54*1*_*_", + "ref": "FR*SOD*S*CAPS*43*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-09-30" + "start_date": "2020-09-02" } }, { @@ -2943,8 +2508,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.294588, - 48.695099 + 2.233518, + 48.697381 ] }, "properties": { @@ -2954,345 +2519,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "CPS", - "ref": "FR*SOD*S*CAPS*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294588, - 48.695099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*55*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.226447, - 48.741585 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.134319, - 48.677201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.134319, - 48.677201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.132646, - 48.677479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.132646, - 48.677479 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.134818, - 48.701092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.134818, - 48.701092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.293165, - 48.676964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.293165, - 48.676964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273265, - 48.73428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273265, - 48.73428 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*46*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29254, - 48.696736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*45*1*_*_", + "ref": "FR*SOD*S*CAPS*42*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -3307,8 +2534,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.116799, - 48.687965 + 2.142571, + 48.714664 ] }, "properties": { @@ -3318,14 +2545,118 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "CPS", - "ref": "FR*SOD*S*CAPS*39*1*_*_", + "ref": "FR*SOD*S*CAPS*32*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-11-13" + "start_date": "2019-11-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.272193, + 48.725075 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*41*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.261823, + 48.689507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.261823, + 48.689507 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*33*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.276495, + 48.664589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*34*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-05" } }, { @@ -3562,6 +2893,58 @@ "start_date": "2020-02-10" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.116799, + 48.687965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.116799, + 48.687965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*39*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-13" + } + }, { "type": "Feature", "geometry": { @@ -3588,32 +2971,6 @@ "start_date": "2020-05-19" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29254, - 48.696736 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*45*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-04-02" - } - }, { "type": "Feature", "geometry": { @@ -3671,8 +3028,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.272193, - 48.725075 + 2.222766, + 48.739605 ] }, "properties": { @@ -3682,14 +3039,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "CPS", - "ref": "FR*SOD*S*CAPS*41*1*_*_", + "ref": "FR*SOD*S*CAPS*10*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-08-03" + "start_date": "2019-12-27" } }, { @@ -3697,8 +3054,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.233518, - 48.697381 + 2.246326, + 48.714756 ] }, "properties": { @@ -3708,14 +3065,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "CPS", - "ref": "FR*SOD*S*CAPS*42*1*_*_", + "ref": "FR*SOD*S*CAPS*8*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-04-02" + "start_date": "2020-01-27" } }, { @@ -3723,8 +3080,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.233518, - 48.697381 + 2.294588, + 48.695099 ] }, "properties": { @@ -3734,14 +3091,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "CPS", - "ref": "FR*SOD*S*CAPS*42*1*_*_", + "ref": "FR*SOD*S*CAPS*55*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-04-02" + "start_date": "2022-09-30" } }, { @@ -3749,8 +3106,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.292326, - 48.73232 + 2.132646, + 48.677479 ] }, "properties": { @@ -3760,118 +3117,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "CPS", - "ref": "FR*SOD*S*CAPS*43*1*_*_", + "ref": "FR*SOD*S*CAPS*3*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292326, - 48.73232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*43*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.106596, - 48.700953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.106596, - 48.700953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*44*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283376, - 48.730587 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200056232", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "CPS", - "ref": "FR*SOD*S*CAPS*47*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" + "start_date": "2019-11-28" } }, { @@ -3900,6 +3153,188 @@ "start_date": "2020-02-12" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.293165, + 48.676964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.293165, + 48.676964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.134818, + 48.701092 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.134818, + 48.701092 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232224, + 48.717692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*54*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.132646, + 48.677479 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.134319, + 48.677201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-11" + } + }, { "type": "Feature", "geometry": { @@ -3926,6 +3361,84 @@ "start_date": "2019-11-26" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.226447, + 48.741585 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.134319, + 48.677201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.187464, + 48.698582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200056232", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "CPS", + "ref": "FR*SOD*S*CAPS*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-12" + } + }, { "type": "Feature", "geometry": { @@ -3942,7 +3455,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*21*1*_*_", + "ref": "FR*SOD*S*UNIB*21*2*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -4020,7 +3533,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*21*2*_*_", + "ref": "FR*SOD*S*UNIB*21*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -4030,6 +3543,2511 @@ "start_date": "2021-06-17" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.170199, + 48.457568 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT ETAMPES", + "ref": "FRCPIE6609035", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.170199, + 48.457568 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT ETAMPES", + "ref": "FRCPIE6609035", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389685, + 48.675894 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR VIRY-CHATILLON", + "ref": "FRCPIE6628885", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389685, + 48.675894 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR VIRY-CHATILLON", + "ref": "FRCPIE6628885", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01794363, + 48.543534 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Dourdan", + "ref": "FRIENE007901", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01794363, + 48.543534 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Dourdan", + "ref": "FRIENE007901", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01794363, + 48.543534 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Dourdan", + "ref": "FRIENE007902", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.01794363, + 48.543534 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "support@iecharge.io", + "phone": "+33 1 84 88 68 00", + "network": "Dourdan", + "ref": "FRIENE007902", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.427055, + 48.612608 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR LISSES", + "ref": "FRCPIE6758525", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.427055, + 48.612608 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR LISSES", + "ref": "FRCPIE6758525", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206429, + 48.688773 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR 3CCLIM VILLEBON", + "ref": "FRCPIE6690455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206429, + 48.688773 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR 3CCLIM VILLEBON", + "ref": "FRCPIE6690455", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.436023, + 48.632526 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "IRVE CAGPS MAGELLAN 3", + "ref": "FRCPIE6591165", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.436023, + 48.632526 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "IRVE CAGPS MAGELLAN 3", + "ref": "FRCPIE6591145", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.436023, + 48.632526 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "IRVE CAGPS MAGELLAN 3", + "ref": "FRCPIE6591135", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.436023, + 48.632526 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "IRVE CAGPS MAGELLAN 3", + "ref": "FRCPIE6591125", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.436023, + 48.632526 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "IRVE CAGPS MAGELLAN 3", + "ref": "FRCPIE6591115", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.436023, + 48.632526 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "IRVE CAGPS MAGELLAN 3", + "ref": "FRCPIE6591105", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.436023, + 48.632526 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "IRVE CAGPS MAGELLAN 3", + "ref": "FRCPIE6591095", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229205, + 48.690167 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT VILLEBON", + "ref": "FRCPIE6595995", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229205, + 48.690167 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT VILLEBON", + "ref": "FRCPIE6595995", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378329, + 48.681627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SBPX6OZUXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378329, + 48.681627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SBPX6OZUXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377849, + 48.681423 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SBPX6OZUXS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377849, + 48.681423 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SBPX6OZUXS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378329, + 48.681627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SBPX6OZUXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377849, + 48.681423 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SBPX6OZUXS", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378329, + 48.681627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SBPX6OZUXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.378329, + 48.681627 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SBPX6OZUXS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17064, + 48.756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FLHFYV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17064, + 48.756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FLHFYV", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-02-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44817631, + 48.56613528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MECXL47JEY", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44817631, + 48.56613528 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MECXL47JEY", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.281885, + 48.672411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JUJD4UMKPZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.281885, + 48.672411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JUJD4UMKPZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BBYPZLGJJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BBYPZLGJJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.281885, + 48.672411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JUJD4UMKPZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BBYPZLGJJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BBYPZLGJJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BBYPZLGJJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BBYPZLGJJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BBYPZLGJJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33401537, + 48.63200582 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BBYPZLGJJL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.281885, + 48.672411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JUJD4UMKPZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433395, + 48.687488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MYDGOOZS6R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345496, + 48.70545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HTHA8SVPIE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528645, + 48.678483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ND7EXY8XAP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528645, + 48.678483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ND7EXY8XAP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528645, + 48.678483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ND7EXY8XAP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.345496, + 48.70545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HTHA8SVPIE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398765, + 48.650183 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "COWK19Z19U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477486, + 48.591026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LFKAACIEEF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477486, + 48.591026 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LFKAACIEEF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433395, + 48.687488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MYDGOOZS6R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.398765, + 48.650183 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "COWK19Z19U", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433395, + 48.687488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MYDGOOZS6R", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433395, + 48.687488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MYDGOOZS6R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433395, + 48.687488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MYDGOOZS6R", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433395, + 48.687488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MYDGOOZS6R", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528645, + 48.678483 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ND7EXY8XAP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35420578, + 48.62136112 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EZQEWY01JS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIX5ZKSM1M3T2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIX5ZKSM1M3T2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIX5ZKSM1M3T2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIX5ZKSM1M3T2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIX5ZKSM1M3T2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIX5ZKSM1M3T2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIX5ZKSM1M3T2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIX5ZKSM1M3T2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.453482, + 48.615785 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLIX5ZKSM1M3T2", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402931, + 48.630265 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZOJVYBGVNI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.402931, + 48.630265 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZOJVYBGVNI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A12RW4GWRR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A12RW4GWRR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A12RW4GWRR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A12RW4GWRR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A12RW4GWRR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A12RW4GWRR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A12RW4GWRR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.99961078, + 48.31750806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "A12RW4GWRR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.086814459, + 48.31808191 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T63G4SSANF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08853228, + 48.31828217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T63G4SSANF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.08853228, + 48.31828217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T63G4SSANF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.086814459, + 48.31808191 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "T63G4SSANF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08", + "socket:type2_cable": "false" + } + }, { "type": "Feature", "geometry": { @@ -4082,1822 +6100,6 @@ "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08853228, - 48.31828217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T63G4SSANF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.086814459, - 48.31808191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T63G4SSANF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.08853228, - 48.31828217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T63G4SSANF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.086814459, - 48.31808191 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "T63G4SSANF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378329, - 48.681627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378329, - 48.681627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378329, - 48.681627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378329, - 48.681627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377849, - 48.681423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377849, - 48.681423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.378329, - 48.681627 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377849, - 48.681423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SBPX6OZUXS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-08", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44817631, - 48.56613528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MECXL47JEY", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44817631, - 48.56613528 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MECXL47JEY", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17064, - 48.756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FLHFYV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-10", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17064, - 48.756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FLHFYV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-02-10", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.281885, - 48.672411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUJD4UMKPZ", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.281885, - 48.672411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUJD4UMKPZ", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.281885, - 48.672411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUJD4UMKPZ", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33401537, - 48.63200582 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BBYPZLGJJL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.281885, - 48.672411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JUJD4UMKPZ", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433395, - 48.687488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYDGOOZS6R", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433395, - 48.687488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYDGOOZS6R", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433395, - 48.687488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYDGOOZS6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433395, - 48.687488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYDGOOZS6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.398765, - 48.650183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "COWK19Z19U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345496, - 48.70545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HTHA8SVPIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433395, - 48.687488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYDGOOZS6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.398765, - 48.650183 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "COWK19Z19U", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477486, - 48.591026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LFKAACIEEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433395, - 48.687488 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MYDGOOZS6R", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477486, - 48.591026 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LFKAACIEEF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528645, - 48.678483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ND7EXY8XAP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528645, - 48.678483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ND7EXY8XAP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528645, - 48.678483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ND7EXY8XAP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528645, - 48.678483 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ND7EXY8XAP", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.345496, - 48.70545 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HTHA8SVPIE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.453482, - 48.615785 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLIX5ZKSM1M3T2", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402931, - 48.630265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZOJVYBGVNI", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.402931, - 48.630265 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZOJVYBGVNI", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-16", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35420578, - 48.62136112 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EZQEWY01JS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-13", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -5949,260 +6151,6 @@ "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.99961078, - 48.31750806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "A12RW4GWRR", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206145, - 48.688707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSSVCNY8HH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206145, - 48.688707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSSVCNY8HH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-19", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -6244,6 +6192,7 @@ "phone": "0369246732", "network": "Freshmile", "ref": "VSSVCNY8HH", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -6253,32 +6202,6 @@ "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206145, - 48.688707 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VSSVCNY8HH", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-19", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -6355,6 +6278,83 @@ "socket:type2_cable": "false" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206145, + 48.688707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VSSVCNY8HH", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206145, + 48.688707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VSSVCNY8HH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206145, + 48.688707 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VSSVCNY8HH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-19", + "socket:type2_cable": "false" + } + }, { "type": "Feature", "geometry": { @@ -6501,6 +6501,541 @@ "start_date": "2021-09-23" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5295840174515463, + 48.678489499960584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 08:00-22:00", + "start_date": "2020-06-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5286632377885447, + 48.678389833990664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5286632377885447, + 48.678389833990664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5286632377885447, + 48.678389833990664 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.526362317964585, + 48.69077906864795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.526362317964585, + 48.69077906864795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.403842, + 48.6814842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.403842, + 48.6814842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4245679, + 48.6848221 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.407719, + 48.673546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.407719, + 48.673546 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431342, + 48.681508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 08:00-19:00", + "start_date": "2021-08-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431342, + 48.681508 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 08:00-19:00", + "start_date": "2021-08-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4077141243933076, + 48.68517050782172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4077141243933076, + 48.68517050782172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4300481888403183, + 48.682044800657714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4300481888403183, + 48.682044800657714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4300481888403183, + 48.682044800657714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4300481888403183, + 48.682044800657714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4300481888403183, + 48.682044800657714 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.5295840174515463, + 48.678489499960584 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 08:00-22:00", + "start_date": "2020-06-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4245679, + 48.6848221 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "STATIONS-E", + "owner:ref:FR:SIREN": "835124280", + "email": "support@stations-e.com", + "phone": "Stations-e", + "network": "805035100", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, { "type": "Feature", "geometry": { @@ -6830,7 +7365,9 @@ "phone": "01 41 35 40 00", "network": "TotalEnergies Charge Rapide", "ref": "FR*HPC*PNF006369", + "socket:type2": "yes", "socket:type2_combo": "yes", + "socket:chademo": "yes", "fee": "False", "authentication:none": "True", "reservation": "no", @@ -6838,6 +7375,31 @@ "start_date": "2023-03-30" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44222, + 48.59459 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF006369", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17" + } + }, { "type": "Feature", "geometry": { @@ -6865,6 +7427,31 @@ "start_date": "2023-03-30" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.44222, + 48.59459 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF006369", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-30" + } + }, { "type": "Feature", "geometry": { @@ -6965,593 +7552,6 @@ "start_date": "2023-03-30" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44222, - 48.59459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF006369", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.44222, - 48.59459 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF006369", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4300481888403183, - 48.682044800657714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4300481888403183, - 48.682044800657714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4300481888403183, - 48.682044800657714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4300481888403183, - 48.682044800657714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4300481888403183, - 48.682044800657714 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5295840174515463, - 48.678489499960584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-22:00", - "start_date": "2020-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5286632377885447, - 48.678389833990664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5286632377885447, - 48.678389833990664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5286632377885447, - 48.678389833990664 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526362317964585, - 48.69077906864795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526362317964585, - 48.69077906864795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.403842, - 48.6814842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.403842, - 48.6814842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4245679, - 48.6848221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4245679, - 48.6848221 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.407719, - 48.673546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.407719, - 48.673546 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431342, - 48.681508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-19:00", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431342, - 48.681508 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-19:00", - "start_date": "2021-08-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4077141243933076, - 48.68517050782172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4077141243933076, - 48.68517050782172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5295840174515463, - 48.678489499960584 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "STATIONS-E", - "owner:ref:FR:SIREN": "835124280", - "email": "support@stations-e.com", - "phone": "Stations-e", - "network": "805035100", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 08:00-22:00", - "start_date": "2020-06-30" - } - }, { "type": "Feature", "geometry": { @@ -7838,32 +7838,6 @@ "start_date": "2023-02-03" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25, - 48.7 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "alterna energie", - "owner:ref:FR:SIREN": "200034460", - "email": "electricite@alterna-energie.fr", - "phone": "0179356309", - "network": "alterna energie", - "ref": "aceaf454-19e2-4da1-96dd-d7fdc44a72d1 ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "false", - "reservation": "no", - "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 14:00-18:00", - "start_date": "2021-10-04" - } - }, { "type": "Feature", "geometry": { @@ -7890,6 +7864,32 @@ "start_date": "2021-12-15" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25, + 48.7 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "alterna energie", + "owner:ref:FR:SIREN": "200034460", + "email": "electricite@alterna-energie.fr", + "phone": "0179356309", + "network": "alterna energie", + "ref": "aceaf454-19e2-4da1-96dd-d7fdc44a72d1 ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "Mo-Fr 08:00-12:00, Mo-Fr 14:00-18:00", + "start_date": "2021-10-04" + } + }, { "type": "Feature", "geometry": { @@ -7963,6 +7963,75 @@ "socket:type2_cable": "False" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.147694, + 48.378312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA4", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789195", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.147694, + 48.378312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA4", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789195", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.147694, + 48.378312 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA4", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "789195", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, { "type": "Feature", "geometry": { @@ -7986,75 +8055,6 @@ "socket:type2_cable": "False" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.147694, - 48.378312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789195", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.147694, - 48.378312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789195", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.147694, - 48.378312 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "789195", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, { "type": "Feature", "geometry": { @@ -8079,52 +8079,6 @@ "socket:type2_cable": "False" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.106539, - 48.680822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "510419", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "False", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.106539, - 48.680822 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WattzHub | FR*SMI", - "email": "contact@wattzhub.com", - "network": "WattzHub", - "ref": "510419", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "False", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, { "type": "Feature", "geometry": { @@ -8149,6 +8103,121 @@ "socket:type2_cable": "False" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.106539, + 48.680822 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WattzHub | FR*SMI", + "email": "contact@wattzhub.com", + "network": "WattzHub", + "ref": "510419", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.106539, + 48.680822 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WattzHub | FR*SMI", + "email": "contact@wattzhub.com", + "network": "WattzHub", + "ref": "510419", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317971, + 48.674145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741702", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317971, + 48.674145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741702", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317971, + 48.674145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741702", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, { "type": "Feature", "geometry": { @@ -8178,8 +8247,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.317971, - 48.674145 + 2.303434, + 48.690335 ] }, "properties": { @@ -8187,30 +8256,7 @@ "operator": "WAAT SAS | FR*WA6", "email": "exploitation@waat.fr", "network": "WAAT", - "ref": "741702", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317971, - 48.674145 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741702", + "ref": "741705", "socket:type2": "yes", "fee": "False", "authentication:none": "True", @@ -8294,16 +8340,17 @@ "geometry": { "type": "Point", "coordinates": [ - 2.303434, - 48.690335 + 2.245213, + 48.597132 ] }, "properties": { "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", + "operator": "WAAT SAS | FR*WAT", "email": "exploitation@waat.fr", "network": "WAAT", - "ref": "741705", + "ref": "880221", + "socket:typee": "yes", "socket:type2": "yes", "fee": "False", "authentication:none": "True", @@ -8317,16 +8364,16 @@ "geometry": { "type": "Point", "coordinates": [ - 2.317971, - 48.674145 + 2.303627, + 48.706046 ] }, "properties": { "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", + "operator": "WAAT SAS | FR*WAT", "email": "exploitation@waat.fr", "network": "WAAT", - "ref": "741702", + "ref": "577478", "socket:type2": "yes", "fee": "False", "authentication:none": "True", @@ -8358,29 +8405,6 @@ "opening_hours": "24/7", "socket:type2_cable": "False" } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303627, - 48.706046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577478", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } } ] } \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_92.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_92.json index e9cac1a7..9520743a 100644 --- a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_92.json +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_92.json @@ -254,190 +254,6 @@ "start_date": "2023-07-27" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264781, - 48.936485 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT GENNEVILLIERS", - "ref": "FRCPIE6585715", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264781, - 48.936485 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT GENNEVILLIERS", - "ref": "FRCPIE6585715", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16581, - 48.838141 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING EXTERIE BORNE 2", - "ref": "FRCPIE6543455", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16581, - 48.838141 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING EXTERIE BORNE 2", - "ref": "FRCPIE6543455", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.165492, - 48.83775 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING EXTERIE BORNE 1", - "ref": "FRCPIE6536955", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.165492, - 48.83775 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "PARKING EXTERIE BORNE 1", - "ref": "FRCPIE6536955", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298291, - 48.793804 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SCI FONTENAY BORNE 1", - "ref": "FRCPIE6720865", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298291, - 48.793804 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SCI FONTENAY BORNE 1", - "ref": "FRCPIE6720865", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-10", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -454,290 +270,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "GARENNE", - "ref": "FR*SOD*S*GACO*1*1*_*_", + "ref": "FR*SOD*S*GACO*1*6*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.231137, - 48.903906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*6*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239232, - 48.903313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*5*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239232, - 48.903313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*5*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239232, - 48.903313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*5*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239232, - 48.903313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*5*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239232, - 48.903313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*5*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239232, - 48.903313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*5*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.231137, - 48.903906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*6*3*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.231137, - 48.903906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.231137, - 48.903906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*6*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.231137, - 48.903906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*6*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" + "start_date": "2020-12-09" } }, { @@ -766,232 +305,6 @@ "start_date": "2020-09-16" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.231137, - 48.903906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*6*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237217, - 48.908458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*2*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249567, - 48.906326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*1*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.257169, - 48.913486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*3*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249567, - 48.906326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*1*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.249567, - 48.906326 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*1*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237217, - 48.908458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*2*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237217, - 48.908458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*2*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237217, - 48.908458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*2*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-22" - } - }, { "type": "Feature", "geometry": { @@ -1047,8 +360,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.257169, - 48.913486 + 2.249567, + 48.906326 ] }, "properties": { @@ -1058,7 +371,57 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "GARENNE", - "ref": "FR*SOD*S*GACO*3*4*_*_", + "ref": "FR*SOD*S*GACO*1*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249567, + 48.906326 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*1*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239232, + 48.903313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*5*2*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -1067,6 +430,283 @@ "start_date": "2020-09-22" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239232, + 48.903313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*5*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239232, + 48.903313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*5*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239232, + 48.903313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*5*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239232, + 48.903313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*5*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239232, + 48.903313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*5*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*6*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*6*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*6*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*6*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.231137, + 48.903906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*6*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, { "type": "Feature", "geometry": { @@ -1083,7 +723,209 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "GARENNE", - "ref": "FR*SOD*S*GACO*3*3*_*_", + "ref": "FR*SOD*S*GACO*3*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249567, + 48.906326 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*1*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237217, + 48.908458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*2*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237217, + 48.908458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*2*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237217, + 48.908458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*2*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237217, + 48.908458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*2*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.257169, + 48.913486 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*3*6*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237217, + 48.908458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*2*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.257169, + 48.913486 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "219200359", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "GARENNE", + "ref": "FR*SOD*S*GACO*3*4*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -1133,7 +975,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "GARENNE", - "ref": "FR*SOD*S*GACO*3*2*_*_", + "ref": "FR*SOD*S*GACO*3*3*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -1158,8 +1000,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "GARENNE", - "ref": "FR*SOD*S*GACO*3*6*_*_", - "socket:typee": "yes", + "ref": "FR*SOD*S*GACO*3*2*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -1173,18 +1014,703 @@ "geometry": { "type": "Point", "coordinates": [ - 2.237217, - 48.908458 + 2.313813, + 48.919804 ] }, "properties": { "amenity": "charging_station", "operator": "Izivia", - "owner:ref:FR:SIREN": "219200359", + "owner:ref:FR:SIREN": "200050433", "email": "sav@izivia.com", "phone": "0972668001", - "network": "GARENNE", - "ref": "FR*SOD*S*GACO*2*5*_*_", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*177*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313813, + 48.919804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*177*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313813, + 48.919804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*177*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313813, + 48.919804 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*177*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209007, + 48.863623 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*183*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213168, + 48.821562 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*180*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213168, + 48.821562 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*180*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265278, + 48.819562 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*182*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.265278, + 48.819562 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*182*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209007, + 48.863623 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*183*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209007, + 48.863623 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*183*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209007, + 48.863623 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*183*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220406, + 48.85466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.220406, + 48.85466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*1*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270931, + 48.921611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*44*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269387, + 48.915407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*42*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269387, + 48.915407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*42*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264081, + 48.905256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*43*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264081, + 48.905256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*43*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264081, + 48.905256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*43*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264081, + 48.905256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*43*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264081, + 48.905256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*43*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264081, + 48.905256 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*43*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270931, + 48.921611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*44*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270931, + 48.921611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*44*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270931, + 48.921611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*44*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270931, + 48.921611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*44*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270931, + 48.921611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*44*1*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -1198,8 +1724,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.252027, - 48.821956 + 2.269387, + 48.915407 ] }, "properties": { @@ -1209,14 +1735,217 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*80*3*_*_", + "ref": "FR*SOD*S*SIGE*42*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237223, + 48.844739 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*46*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237223, + 48.844739 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*46*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237767, + 48.850211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*48*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.237767, + 48.850211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*48*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.222437, + 48.826646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*49*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.222437, + 48.826646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*49*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269387, + 48.915407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*42*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269387, + 48.915407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*42*3*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-12-17" + "start_date": "2020-10-14" } }, { @@ -1224,8 +1953,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.275604, - 48.823132 + 2.282806, + 48.809681 ] }, "properties": { @@ -1235,13 +1964,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*74*2*_*_", + "ref": "FR*SOD*S*SIGE*36*5*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-11-30" + "start_date": "2020-10-07" } }, { @@ -1249,8 +1978,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.275604, - 48.823132 + 2.282812, + 48.809693 ] }, "properties": { @@ -1260,13 +1989,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*74*4*_*_", + "ref": "FR*SOD*S*SIGE*37*4*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-12-01" + "start_date": "2020-10-08" } }, { @@ -1274,8 +2003,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.275604, - 48.823132 + 2.282812, + 48.809693 ] }, "properties": { @@ -1285,13 +2014,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*74*6*_*_", + "ref": "FR*SOD*S*SIGE*37*5*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-11-30" + "start_date": "2020-10-08" } }, { @@ -1299,8 +2028,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.275604, - 48.823132 + 2.282812, + 48.809693 ] }, "properties": { @@ -1310,13 +2039,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*74*1*_*_", + "ref": "FR*SOD*S*SIGE*37*6*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-11-30" + "start_date": "2020-10-08" } }, { @@ -1324,8 +2053,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.258038, - 48.819081 + 2.282812, + 48.809693 ] }, "properties": { @@ -1335,13 +2064,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*72*4*_*_", + "ref": "FR*SOD*S*SIGE*37*2*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-11-25" + "start_date": "2020-10-08" } }, { @@ -1349,8 +2078,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.254615, - 48.832364 + 2.282812, + 48.809693 ] }, "properties": { @@ -1360,13 +2089,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*71*4*_*_", + "ref": "FR*SOD*S*SIGE*37*1*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-11-10" + "start_date": "2020-10-07" } }, { @@ -1374,8 +2103,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.258038, - 48.819081 + 2.289905, + 48.804568 ] }, "properties": { @@ -1385,13 +2114,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*72*5*_*_", + "ref": "FR*SOD*S*SIGE*38*2*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-11-25" + "start_date": "2020-10-08" } }, { @@ -1399,8 +2128,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.258038, - 48.819081 + 2.289905, + 48.804568 ] }, "properties": { @@ -1410,13 +2139,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*72*1*_*_", + "ref": "FR*SOD*S*SIGE*38*1*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-11-25" + "start_date": "2020-10-08" } }, { @@ -1424,8 +2153,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.258038, - 48.819081 + 2.289905, + 48.804568 ] }, "properties": { @@ -1435,997 +2164,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*72*3*_*_", + "ref": "FR*SOD*S*SIGE*38*3*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258038, - 48.819081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*72*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258038, - 48.819081 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*72*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270023, - 48.817549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*73*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252027, - 48.821956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*80*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270023, - 48.817549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*73*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270023, - 48.817549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*73*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270023, - 48.817549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*73*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270023, - 48.817549 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*73*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.275604, - 48.823132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*74*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.275604, - 48.823132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*74*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252027, - 48.821956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*80*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277644, - 48.819004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*81*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252027, - 48.821956 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*80*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.254615, - 48.832364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*71*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277644, - 48.819004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*81*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.152096, - 48.837186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*83*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.152096, - 48.837186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*83*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.152096, - 48.837186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*83*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.152096, - 48.837186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*83*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.152096, - 48.837186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*83*3*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277644, - 48.819004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*81*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277644, - 48.819004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*81*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.277644, - 48.819004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*81*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.254615, - 48.832364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*71*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252363, - 48.83684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*64*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.254615, - 48.832364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*71*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.165078, - 48.818204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*33*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.165078, - 48.818204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*33*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213824, - 48.814263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*32*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213824, - 48.814263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*32*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213824, - 48.814263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*32*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213824, - 48.814263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*32*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213824, - 48.814263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*32*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213824, - 48.814263 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*32*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.254615, - 48.832364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*71*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.165078, - 48.818204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*33*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.165078, - 48.818204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*33*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.165078, - 48.818204 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*33*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284725, - 48.799158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*35*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-06" + "start_date": "2020-10-08" } }, { @@ -2503,2373 +2249,6 @@ "start_date": "2020-10-08" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.289905, - 48.804568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*38*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282812, - 48.809693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*37*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282812, - 48.809693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*37*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282812, - 48.809693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*37*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282812, - 48.809693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*37*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282812, - 48.809693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*37*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282812, - 48.809693 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*37*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282806, - 48.809681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*36*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282806, - 48.809681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*36*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282806, - 48.809681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*36*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282806, - 48.809681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*36*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282806, - 48.809681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*36*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.282806, - 48.809681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*36*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284725, - 48.799158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*35*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284725, - 48.799158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*35*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284725, - 48.799158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*35*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284725, - 48.799158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*35*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284725, - 48.799158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*35*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.178067, - 48.830567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.276657, - 48.827045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264953, - 48.82991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264953, - 48.82991 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*11*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.188014, - 48.805695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.188014, - 48.805695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*10*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.192191, - 48.813019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.192191, - 48.813019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*9*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240082, - 48.839897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240082, - 48.839897 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*8*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239694, - 48.836639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239694, - 48.836639 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*7*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212253, - 48.859722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212253, - 48.859722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*6*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.207385, - 48.843157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.207385, - 48.843157 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*5*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.215528, - 48.855042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.215528, - 48.855042 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*4*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.207391, - 48.847778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.207391, - 48.847778 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*3*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.210997, - 48.857063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.210997, - 48.857063 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*2*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-07-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.276657, - 48.827045 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*12*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.178067, - 48.830567 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.189425, - 48.82634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.189425, - 48.82634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*26*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.290181, - 48.82598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.290181, - 48.82598 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*19*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212834, - 48.824499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.212834, - 48.824499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20638, - 48.822094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20638, - 48.822094 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.289905, - 48.804568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*38*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.289905, - 48.804568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*38*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229152, - 48.840172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*65*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252363, - 48.83684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*64*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252363, - 48.83684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*64*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252363, - 48.83684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*64*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252363, - 48.83684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*64*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252363, - 48.83684 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*64*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240936, - 48.826296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*63*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240936, - 48.826296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*63*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240936, - 48.826296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*63*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240936, - 48.826296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*63*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240936, - 48.826296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*63*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240936, - 48.826296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*63*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.240936, - 48.826296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*67*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229152, - 48.840172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*65*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229152, - 48.840172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*65*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229152, - 48.840172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*65*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.254615, - 48.832364 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*71*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241986, - 48.828194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*67*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241986, - 48.828194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*67*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241986, - 48.828194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*67*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241986, - 48.828194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*67*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241986, - 48.828194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*67*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241986, - 48.828194 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*67*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230145, - 48.831536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*66*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230145, - 48.831536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*66*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230145, - 48.831536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*66*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230145, - 48.831536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*66*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230145, - 48.831536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*66*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230145, - 48.831536 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*66*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229152, - 48.840172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*65*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.229152, - 48.840172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*65*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264081, - 48.905256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*43*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264081, - 48.905256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*43*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264081, - 48.905256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*43*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264081, - 48.905256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*43*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269387, - 48.915407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*42*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269387, - 48.915407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*42*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269387, - 48.915407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*42*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269387, - 48.915407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*42*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269387, - 48.915407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*42*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284057, - 48.822254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*41*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, { "type": "Feature", "geometry": { @@ -4895,82 +2274,6 @@ "start_date": "2020-10-14" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284057, - 48.822254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*41*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284057, - 48.822254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*41*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284057, - 48.822254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*41*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14" - } - }, { "type": "Feature", "geometry": { @@ -4987,7 +2290,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*40*2*_*_", + "ref": "FR*SOD*S*SIGE*40*5*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -5063,7 +2366,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*40*5*_*_", + "ref": "FR*SOD*S*SIGE*40*2*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -5072,2003 +2375,6 @@ "start_date": "2020-10-12" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264081, - 48.905256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*43*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.264081, - 48.905256 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*43*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270931, - 48.921611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*44*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288422, - 48.821077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*52*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288422, - 48.821077 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*52*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.222437, - 48.826646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*49*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.222437, - 48.826646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*49*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237767, - 48.850211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*48*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237767, - 48.850211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*48*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237223, - 48.844739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*46*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.237223, - 48.844739 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*46*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270931, - 48.921611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*44*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270931, - 48.921611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*44*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270931, - 48.921611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*44*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270931, - 48.921611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*44*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270931, - 48.921611 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*44*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252769, - 48.922914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*414*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238681, - 48.90954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*276*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238681, - 48.90954 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*276*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.253396, - 48.915111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*263*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.196674, - 48.82341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*272*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-04" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.196674, - 48.82341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*272*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.188821, - 48.822768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*273*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.188821, - 48.822768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*273*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.223943, - 48.87384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*274*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.223943, - 48.87384 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*274*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.201931, - 48.863165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*275*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.201931, - 48.863165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*275*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213465, - 48.86188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*306*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213465, - 48.86188 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*306*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241634, - 48.832916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*296*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.241634, - 48.832916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*296*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320078, - 48.792163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*297*2*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320078, - 48.792163 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*297*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335975, - 48.935119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*301*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.335975, - 48.935119 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*301*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315636, - 48.80169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*302*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315636, - 48.80169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*302*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.253396, - 48.915111 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*263*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.194656, - 48.822302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*259*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.194656, - 48.822302 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*259*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.243501, - 48.877078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*238*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.243501, - 48.877078 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*238*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232948, - 48.883089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*234*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232948, - 48.883089 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*234*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259156, - 48.924688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*229*3*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259156, - 48.924688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*229*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259156, - 48.924688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*229*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259156, - 48.924688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*229*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259156, - 48.924688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*229*4*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.259156, - 48.924688 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*229*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.235762, - 48.873871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*241*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313771, - 48.795472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*252*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313771, - 48.795472 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*252*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317675, - 48.798756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*251*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317675, - 48.798756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*251*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22766, - 48.87125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*243*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22766, - 48.87125 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*243*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.224059, - 48.861252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*242*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.224059, - 48.861252 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*242*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.235762, - 48.873871 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*241*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181596, - 48.827704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*257*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.179316, - 48.821396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*255*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.179316, - 48.821396 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*255*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.184659, - 48.827427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*256*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.184659, - 48.827427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*256*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181596, - 48.827704 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*257*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.236634, - 48.883921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*213*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.236634, - 48.883921 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*213*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.225601, - 48.868305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*225*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.225601, - 48.868305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*225*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.227553, - 48.874264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*224*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.227553, - 48.874264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*224*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256419, - 48.921798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*413*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256419, - 48.921798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*413*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252769, - 48.922914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*414*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220406, - 48.85466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.220406, - 48.85466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*1*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, { "type": "Feature", "geometry": { @@ -7094,6 +2400,2605 @@ "start_date": "2020-10-12" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284057, + 48.822254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*41*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284057, + 48.822254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*41*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284057, + 48.822254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*41*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284057, + 48.822254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*41*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288422, + 48.821077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*52*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288422, + 48.821077 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*52*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241986, + 48.828194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*67*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229152, + 48.840172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*65*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229152, + 48.840172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*65*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230145, + 48.831536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*66*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230145, + 48.831536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*66*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230145, + 48.831536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*66*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230145, + 48.831536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*66*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230145, + 48.831536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*66*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230145, + 48.831536 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*66*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241986, + 48.828194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*67*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241986, + 48.828194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*67*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241986, + 48.828194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*67*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241986, + 48.828194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*67*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241986, + 48.828194 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*67*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.254615, + 48.832364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*71*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.254615, + 48.832364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*71*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.254615, + 48.832364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*71*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.254615, + 48.832364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*71*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.254615, + 48.832364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*71*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.254615, + 48.832364 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*71*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229152, + 48.840172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*65*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229152, + 48.840172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*65*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229152, + 48.840172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*65*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.229152, + 48.840172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*65*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240936, + 48.826296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*63*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240936, + 48.826296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*63*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240936, + 48.826296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*67*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240936, + 48.826296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*63*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240936, + 48.826296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*63*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240936, + 48.826296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*63*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240936, + 48.826296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*63*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252363, + 48.83684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*64*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252363, + 48.83684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*64*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252363, + 48.83684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*64*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252363, + 48.83684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*64*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252363, + 48.83684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*64*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252363, + 48.83684 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*64*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282812, + 48.809693 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*37*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282806, + 48.809681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*36*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258038, + 48.819081 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*72*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282806, + 48.809681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*36*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.165078, + 48.818204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*33*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213824, + 48.814263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*32*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213824, + 48.814263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*32*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213824, + 48.814263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*32*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213824, + 48.814263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*32*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213824, + 48.814263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*32*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213824, + 48.814263 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*32*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.165078, + 48.818204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*33*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.165078, + 48.818204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*33*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.165078, + 48.818204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*33*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.165078, + 48.818204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*33*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284725, + 48.799158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*35*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284725, + 48.799158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*35*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284725, + 48.799158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*35*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284725, + 48.799158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*35*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284725, + 48.799158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*35*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282806, + 48.809681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*36*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282806, + 48.809681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*36*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.282806, + 48.809681 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*36*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256419, + 48.921798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*413*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256419, + 48.921798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*413*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252769, + 48.922914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*414*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252769, + 48.922914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*414*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.189425, + 48.82634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258038, + 48.819081 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*72*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258038, + 48.819081 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*72*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294767, + 48.922874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*137*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301197, + 48.930646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*135*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306643, + 48.933824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*136*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306643, + 48.933824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*136*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306643, + 48.933824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*136*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306643, + 48.933824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*136*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306643, + 48.933824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*136*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306643, + 48.933824 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*136*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294767, + 48.922874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*137*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294767, + 48.922874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*137*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294767, + 48.922874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*137*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294767, + 48.922874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*137*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.294767, + 48.922874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*137*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297148, + 48.92004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*138*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301197, + 48.930646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*135*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297148, + 48.92004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*138*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297148, + 48.92004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*138*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297148, + 48.92004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*138*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297148, + 48.92004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*138*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297148, + 48.92004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*138*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307748, + 48.920737 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*139*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307748, + 48.920737 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*139*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307748, + 48.920737 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*139*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307748, + 48.920737 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*139*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307748, + 48.920737 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*139*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321018, + 48.92301 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*141*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321018, + 48.92301 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*141*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301197, + 48.930646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*135*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301197, + 48.930646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*135*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299287, + 48.810455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*123*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-13" + } + }, { "type": "Feature", "geometry": { @@ -7124,8 +5029,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.169688, - 48.846574 + 2.298238, + 48.806568 ] }, "properties": { @@ -7135,14 +5040,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*169*1*_*_", - "socket:typee": "yes", + "ref": "FR*SOD*S*SIGE*124*1*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-20" + "start_date": "2021-07-13" } }, { @@ -7150,8 +5054,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.169688, - 48.846574 + 2.298238, + 48.806568 ] }, "properties": { @@ -7161,92 +5065,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*169*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.149957, - 48.833635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*167*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.149957, - 48.833635 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*167*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23971, - 48.879812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*165*1*_*_", + "ref": "FR*SOD*S*SIGE*124*1*_*_", "socket:type2_combo": "yes", "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-21" + "start_date": "2021-07-13" } }, { @@ -7254,8 +5080,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.23971, - 48.879812 + 2.301197, + 48.930646 ] }, "properties": { @@ -7265,13 +5091,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*165*1*_*_", + "ref": "FR*SOD*S*SIGE*135*5*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-21" + "start_date": "2021-06-16" } }, { @@ -7279,8 +5105,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.213168, - 48.821562 + 2.303511, + 48.946266 ] }, "properties": { @@ -7290,14 +5116,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*180*1*_*_", + "ref": "FR*SOD*S*SIGE*134*3*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-08-24" + "start_date": "2021-06-15" } }, { @@ -7305,8 +5131,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.313813, - 48.919804 + 2.303511, + 48.946266 ] }, "properties": { @@ -7316,13 +5142,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*177*2*_*_", + "ref": "FR*SOD*S*SIGE*134*5*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-28" + "start_date": "2021-06-15" } }, { @@ -7330,8 +5156,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.313813, - 48.919804 + 2.303511, + 48.946266 ] }, "properties": { @@ -7341,13 +5167,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*177*4*_*_", + "ref": "FR*SOD*S*SIGE*134*2*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-28" + "start_date": "2021-06-15" } }, { @@ -7355,8 +5181,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.313813, - 48.919804 + 2.303511, + 48.946266 ] }, "properties": { @@ -7366,14 +5192,189 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*177*3*_*_", + "ref": "FR*SOD*S*SIGE*134*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.303511, + 48.946266 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*134*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301197, + 48.930646 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*135*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321018, + 48.92301 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*141*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321018, + 48.92301 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*141*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321018, + 48.92301 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*141*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323457, + 48.941725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*152*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323457, + 48.941725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*152*3*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-28" + "start_date": "2021-07-02" } }, { @@ -7381,8 +5382,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.313813, - 48.919804 + 2.323457, + 48.941725 ] }, "properties": { @@ -7392,64 +5393,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*177*1*_*_", + "ref": "FR*SOD*S*SIGE*152*6*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.199466, - 48.827906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*163*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.199466, - 48.827906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*163*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" + "start_date": "2021-07-02" } }, { @@ -7468,7 +5418,8 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*153*5*_*_", + "ref": "FR*SOD*S*SIGE*153*3*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -7477,6 +5428,560 @@ "start_date": "2021-07-05" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.332291, + 48.935574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*153*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.332291, + 48.935574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*153*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.332291, + 48.935574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*153*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321018, + 48.92301 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*141*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323457, + 48.941725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*152*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323457, + 48.941725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*152*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.323457, + 48.941725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*152*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23608, + 48.87624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*142*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23608, + 48.87624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*142*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23608, + 48.87624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*142*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23608, + 48.87624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*142*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23608, + 48.87624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*142*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23608, + 48.87624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*142*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232187, + 48.887726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*144*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232187, + 48.887726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*144*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232187, + 48.887726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*144*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232187, + 48.887726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*144*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232187, + 48.887726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*144*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232187, + 48.887726 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*144*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.290551, + 48.821902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*145*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.290551, + 48.821902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*145*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258038, + 48.819081 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*72*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-25" + } + }, { "type": "Feature", "geometry": { @@ -7493,7 +5998,8 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*85*4*_*_", + "ref": "FR*SOD*S*SIGE*85*3*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -7502,6 +6008,157 @@ "start_date": "2021-01-11" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277644, + 48.819004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*81*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.152096, + 48.837186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*83*5*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.152096, + 48.837186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*83*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.152096, + 48.837186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*83*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.152096, + 48.837186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*83*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.152096, + 48.837186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*83*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-02" + } + }, { "type": "Feature", "geometry": { @@ -7527,6 +6184,31 @@ "start_date": "2021-01-11" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277644, + 48.819004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*81*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-05" + } + }, { "type": "Feature", "geometry": { @@ -7543,8 +6225,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*85*3*_*_", - "socket:typee": "yes", + "ref": "FR*SOD*S*SIGE*85*4*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -7603,6 +6284,31 @@ "start_date": "2021-01-08" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309161, + 48.909744 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*86*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-13" + } + }, { "type": "Feature", "geometry": { @@ -7684,8 +6390,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.309161, - 48.909744 + 2.2987, + 48.901286 ] }, "properties": { @@ -7695,7 +6401,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*86*1*_*_", + "ref": "FR*SOD*S*SIGE*87*5*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -7746,7 +6452,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*87*5*_*_", + "ref": "FR*SOD*S*SIGE*87*1*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -7780,1624 +6486,6 @@ "start_date": "2021-01-13" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2987, - 48.901286 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*87*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.332291, - 48.935574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*153*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.332291, - 48.935574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*153*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.244992, - 48.880643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*160*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.244992, - 48.880643 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*160*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.245622, - 48.884208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*159*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.245622, - 48.884208 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*159*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.332291, - 48.935574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*153*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.332291, - 48.935574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*153*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.332291, - 48.935574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*153*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213168, - 48.821562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*180*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24842, - 48.923662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*198*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24842, - 48.923662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*198*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24842, - 48.923662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*198*3*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24842, - 48.923662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*198*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265278, - 48.819562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*182*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260623, - 48.931418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*199*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260623, - 48.931418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*199*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260623, - 48.931418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*199*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260623, - 48.931418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*199*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25284, - 48.927836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*201*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25284, - 48.927836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*201*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25284, - 48.927836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*201*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25284, - 48.927836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*201*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25284, - 48.927836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*201*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25284, - 48.927836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*201*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.228808, - 48.922232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*200*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.228808, - 48.922232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*200*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.228808, - 48.922232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*200*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.228808, - 48.922232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*200*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260623, - 48.931418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*199*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.260623, - 48.931418 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*199*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321975, - 48.80181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*186*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313149, - 48.790097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*185*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313149, - 48.790097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*185*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313149, - 48.790097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*185*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313149, - 48.790097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*185*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313149, - 48.790097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*185*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221831, - 48.8768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*184*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221831, - 48.8768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*184*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221831, - 48.8768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*184*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221831, - 48.8768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*184*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221831, - 48.8768 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*184*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209007, - 48.863623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*183*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209007, - 48.863623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*183*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209007, - 48.863623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*183*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209007, - 48.863623 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*183*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.265278, - 48.819562 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*182*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321975, - 48.80181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*186*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321975, - 48.80181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*186*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321975, - 48.80181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*186*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31427, - 48.805902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*188*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31427, - 48.805902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*188*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31427, - 48.805902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*188*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31427, - 48.805902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*188*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31427, - 48.805902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*188*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31427, - 48.805902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*188*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304591, - 48.799297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*187*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304591, - 48.799297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*187*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304591, - 48.799297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*187*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304591, - 48.799297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*187*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.304591, - 48.799297 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*187*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321975, - 48.80181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*186*7*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321975, - 48.80181 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*186*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, { "type": "Feature", "geometry": { @@ -9428,8 +6516,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.308363, - 48.900249 + 2.277644, + 48.819004 ] }, "properties": { @@ -9439,14 +6527,492 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*88*3*_*_", + "ref": "FR*SOD*S*SIGE*81*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277644, + 48.819004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*81*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.275604, + 48.823132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*74*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258038, + 48.819081 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*72*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258038, + 48.819081 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*72*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270023, + 48.817549 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*73*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270023, + 48.817549 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*73*3*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-01-15" + "start_date": "2020-11-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270023, + 48.817549 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*73*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270023, + 48.817549 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*73*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270023, + 48.817549 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*73*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.275604, + 48.823132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*74*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.275604, + 48.823132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*74*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.275604, + 48.823132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*74*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.275604, + 48.823132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*74*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.275604, + 48.823132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*74*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277644, + 48.819004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*81*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252027, + 48.821956 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*80*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252027, + 48.821956 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*80*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252027, + 48.821956 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*80*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.252027, + 48.821956 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*80*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-16" } }, { @@ -9465,1703 +7031,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*88*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307748, - 48.920737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*139*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321018, - 48.92301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*141*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321018, - 48.92301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*141*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321018, - 48.92301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*141*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321018, - 48.92301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*141*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321018, - 48.92301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*141*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307748, - 48.920737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*139*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307748, - 48.920737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*139*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307748, - 48.920737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*139*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.308363, - 48.900249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*88*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307748, - 48.920737 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*139*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297148, - 48.92004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*138*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297148, - 48.92004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*138*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297148, - 48.92004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*138*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297148, - 48.92004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*138*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297148, - 48.92004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*138*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297148, - 48.92004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*138*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321018, - 48.92301 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*141*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23608, - 48.87624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*142*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23608, - 48.87624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*142*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23608, - 48.87624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*142*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.290551, - 48.821902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*145*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.290551, - 48.821902 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*145*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232187, - 48.887726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*144*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232187, - 48.887726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*144*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232187, - 48.887726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*144*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232187, - 48.887726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*144*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232187, - 48.887726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*144*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232187, - 48.887726 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*144*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23608, - 48.87624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*142*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23608, - 48.87624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*142*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23608, - 48.87624 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*142*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294767, - 48.922874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*137*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294767, - 48.922874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*137*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294767, - 48.922874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*137*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303511, - 48.946266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*134*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298238, - 48.806568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*124*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298238, - 48.806568 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*124*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299287, - 48.810455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*123*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303511, - 48.946266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*134*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303511, - 48.946266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*134*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294767, - 48.922874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*137*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303511, - 48.946266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*134*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294767, - 48.922874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*137*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.294767, - 48.922874 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*137*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306643, - 48.933824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*136*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306643, - 48.933824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*136*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306643, - 48.933824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*136*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306643, - 48.933824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*136*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306643, - 48.933824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*136*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306643, - 48.933824 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*136*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301197, - 48.930646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*135*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301197, - 48.930646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*135*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301197, - 48.930646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*135*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301197, - 48.930646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*135*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301197, - 48.930646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*135*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301197, - 48.930646 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*135*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.303511, - 48.946266 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*134*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.185283, - 48.805695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.164518, - 48.840307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.164518, - 48.840307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*98*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.217007, - 48.850512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.217007, - 48.850512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*100*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.217007, - 48.850512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*100*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.217007, - 48.850512 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*100*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.185283, - 48.805695 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*97*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.308363, - 48.900249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*88*1*_*_", + "ref": "FR*SOD*S*SIGE*88*6*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -11211,7 +7081,338 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*88*6*_*_", + "ref": "FR*SOD*S*SIGE*88*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.308363, + 48.900249 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*88*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218729, + 48.845411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*111*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218729, + 48.845411 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*111*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.203739, + 48.842105 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*112*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.203739, + 48.842105 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*112*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.219264, + 48.841715 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*113*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.219264, + 48.841715 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*113*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.156808, + 48.838145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*115*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.156808, + 48.838145 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*115*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.246242, + 48.8288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*116*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.246242, + 48.8288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*116*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.308363, + 48.900249 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*88*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.308363, + 48.900249 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*88*2*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -11245,6 +7446,31 @@ "start_date": "2021-01-19" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317644, + 48.902349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*89*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-18" + } + }, { "type": "Feature", "geometry": { @@ -11321,31 +7547,6 @@ "start_date": "2021-01-19" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.317644, - 48.902349 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*89*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-18" - } - }, { "type": "Feature", "geometry": { @@ -11403,8 +7604,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.323457, - 48.941725 + 2.185283, + 48.805695 ] }, "properties": { @@ -11414,89 +7615,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*152*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323457, - 48.941725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*152*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323457, - 48.941725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*152*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323457, - 48.941725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*152*3*_*_", + "ref": "FR*SOD*S*SIGE*97*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-02" + "start_date": "2021-01-07" } }, { @@ -11504,8 +7630,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.246242, - 48.8288 + 2.185283, + 48.805695 ] }, "properties": { @@ -11515,13 +7641,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*116*1*_*_", + "ref": "FR*SOD*S*SIGE*97*1*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-13" + "start_date": "2021-01-07" } }, { @@ -11529,8 +7656,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.246242, - 48.8288 + 2.164518, + 48.840307 ] }, "properties": { @@ -11540,39 +7667,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*116*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.323457, - 48.941725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*152*6*_*_", + "ref": "FR*SOD*S*SIGE*98*1*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-02" + "start_date": "2021-03-23" } }, { @@ -11580,8 +7682,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.323457, - 48.941725 + 2.164518, + 48.840307 ] }, "properties": { @@ -11591,13 +7693,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*152*1*_*_", + "ref": "FR*SOD*S*SIGE*98*1*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-02" + "start_date": "2021-03-23" } }, { @@ -11605,8 +7708,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.156808, - 48.838145 + 2.217007, + 48.850512 ] }, "properties": { @@ -11616,39 +7719,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*115*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218729, - 48.845411 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*111*1*_*_", + "ref": "FR*SOD*S*SIGE*100*2*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-04-15" + "start_date": "2021-03-11" } }, { @@ -11656,8 +7734,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.218729, - 48.845411 + 2.217007, + 48.850512 ] }, "properties": { @@ -11667,65 +7745,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*111*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.203739, - 48.842105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*112*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.203739, - 48.842105 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*112*1*_*_", + "ref": "FR*SOD*S*SIGE*100*1*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-05-17" + "start_date": "2021-03-11" } }, { @@ -11733,8 +7760,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.219264, - 48.841715 + 2.217007, + 48.850512 ] }, "properties": { @@ -11744,39 +7771,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*113*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.219264, - 48.841715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*113*1*_*_", + "ref": "FR*SOD*S*SIGE*100*1*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-04-15" + "start_date": "2021-03-11" } }, { @@ -11784,8 +7786,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.156808, - 48.838145 + 2.217007, + 48.850512 ] }, "properties": { @@ -11795,13 +7797,419 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*115*1*_*_", + "ref": "FR*SOD*S*SIGE*100*2*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-05-18" + "start_date": "2021-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284725, + 48.799158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*35*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.236634, + 48.883921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*213*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.236634, + 48.883921 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*213*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260623, + 48.931418 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*199*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24842, + 48.923662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*198*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24842, + 48.923662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*198*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24842, + 48.923662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*198*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24842, + 48.923662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*198*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260623, + 48.931418 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*199*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260623, + 48.931418 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*199*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260623, + 48.931418 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*199*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25284, + 48.927836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*201*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260623, + 48.931418 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*199*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.260623, + 48.931418 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*199*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.228808, + 48.922232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*200*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.228808, + 48.922232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*200*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" } }, { @@ -11829,6 +8237,4414 @@ "start_date": "2021-08-24" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.228808, + 48.922232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*200*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.228808, + 48.922232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*200*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25284, + 48.927836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*201*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25284, + 48.927836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*201*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25284, + 48.927836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*201*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25284, + 48.927836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*201*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25284, + 48.927836 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*201*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.235762, + 48.873871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*241*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232948, + 48.883089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*234*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.243501, + 48.877078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*238*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.243501, + 48.877078 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*238*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.235762, + 48.873871 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*241*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.224059, + 48.861252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*242*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.224059, + 48.861252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*242*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22766, + 48.87125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*243*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22766, + 48.87125 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*243*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.232948, + 48.883089 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*234*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.227553, + 48.874264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*224*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.227553, + 48.874264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*224*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.225601, + 48.868305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*225*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.225601, + 48.868305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*225*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259156, + 48.924688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*229*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259156, + 48.924688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*229*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259156, + 48.924688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*229*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259156, + 48.924688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*229*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259156, + 48.924688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*229*4*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.259156, + 48.924688 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*229*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317675, + 48.798756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*251*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240082, + 48.839897 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.210997, + 48.857063 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.210997, + 48.857063 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*2*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-07-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.207391, + 48.847778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.207391, + 48.847778 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*3*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.215528, + 48.855042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.215528, + 48.855042 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*4*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.207385, + 48.843157 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.207385, + 48.843157 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*5*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212253, + 48.859722 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212253, + 48.859722 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*6*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239694, + 48.836639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239694, + 48.836639 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*7*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.240082, + 48.839897 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*8*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.192191, + 48.813019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.192191, + 48.813019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*9*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.188014, + 48.805695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.188014, + 48.805695 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*10*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264953, + 48.82991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.264953, + 48.82991 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*11*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.276657, + 48.827045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.276657, + 48.827045 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*12*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.178067, + 48.830567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.178067, + 48.830567 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*13*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.169688, + 48.846574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*169*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.169688, + 48.846574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*169*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.149957, + 48.833635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*167*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.149957, + 48.833635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*167*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23971, + 48.879812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*165*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23971, + 48.879812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*165*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.199466, + 48.827906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*163*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.199466, + 48.827906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*163*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.244992, + 48.880643 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*160*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.244992, + 48.880643 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*160*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.245622, + 48.884208 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*159*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.245622, + 48.884208 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*159*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20638, + 48.822094 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20638, + 48.822094 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212834, + 48.824499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*17*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31427, + 48.805902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*188*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313149, + 48.790097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*185*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321975, + 48.80181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*186*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321975, + 48.80181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*186*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321975, + 48.80181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*186*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321975, + 48.80181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*186*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321975, + 48.80181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*186*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321975, + 48.80181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*186*7*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304591, + 48.799297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*187*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304591, + 48.799297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*187*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304591, + 48.799297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*187*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304591, + 48.799297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*187*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.304591, + 48.799297 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*187*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31427, + 48.805902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*188*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.212834, + 48.824499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*17*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31427, + 48.805902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*188*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31427, + 48.805902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*188*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31427, + 48.805902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*188*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31427, + 48.805902 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*188*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313149, + 48.790097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*185*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313149, + 48.790097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*185*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313149, + 48.790097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*185*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313149, + 48.790097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*185*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.290181, + 48.82598 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.290181, + 48.82598 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*19*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.189425, + 48.82634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*26*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.332291, + 48.935574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*153*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.332291, + 48.935574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*153*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221831, + 48.8768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*184*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221831, + 48.8768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*184*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221831, + 48.8768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*184*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221831, + 48.8768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*184*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221831, + 48.8768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*184*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.317675, + 48.798756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*251*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313771, + 48.795472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*252*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.188821, + 48.822768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*273*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.188821, + 48.822768 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*273*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.223943, + 48.87384 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*274*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.223943, + 48.87384 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*274*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.201931, + 48.863165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*275*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.201931, + 48.863165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*275*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238681, + 48.90954 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*276*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238681, + 48.90954 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*276*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.196674, + 48.82341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*272*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.196674, + 48.82341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*272*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.194656, + 48.822302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*259*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.313771, + 48.795472 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*252*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.179316, + 48.821396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*255*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.179316, + 48.821396 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*255*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.184659, + 48.827427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*256*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.184659, + 48.827427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*256*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181596, + 48.827704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*257*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181596, + 48.827704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*257*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.194656, + 48.822302 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*259*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.253396, + 48.915111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*263*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.253396, + 48.915111 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*263*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213465, + 48.86188 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*306*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.213465, + 48.86188 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*306*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241634, + 48.832916 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*296*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315636, + 48.80169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*302*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.241634, + 48.832916 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*296*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320078, + 48.792163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*297*2*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335975, + 48.935119 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*301*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.335975, + 48.935119 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*301*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315636, + 48.80169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*302*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320078, + 48.792163 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*297*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297241, + 48.893006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*5*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*18*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*10*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*9*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*20*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*6*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*5*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*13*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*13*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*14*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*2*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*19*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*20*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*9*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*15*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*7*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*8*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*1*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*1*3*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*1*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*1*4*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*1*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*1*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*1*2*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*12*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*12*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*17*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*10*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*7*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*16*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*14*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*4*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*1*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*16*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, { "type": "Feature", "geometry": { @@ -11859,8 +12675,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.297554, - 48.892754 + 2.297241, + 48.893006 ] }, "properties": { @@ -11870,12 +12686,412 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*2*_*_", + "ref": "FR*SOD*S*LVPR*5*1*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", + "start_date": "2019-02-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*4*6*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*4*9*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*4*2*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*4*8*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*4*8*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*4*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297241, + 48.893006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*5*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297241, + 48.893006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*5*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*4*4*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297241, + 48.893006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*5*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297241, + 48.893006 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*5*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-02-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*4*9*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*4*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*4*5*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*4*7*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297434, + 48.893097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*4*7*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", "start_date": "2018-01-15" } }, @@ -11921,7 +13137,8 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*7*_*_", + "ref": "FR*SOD*S*LVPR*4*3*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -11930,6 +13147,31 @@ "start_date": "2018-01-15" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*11*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, { "type": "Feature", "geometry": { @@ -11946,7 +13188,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*8*_*_", + "ref": "FR*SOD*S*LVPR*3*7*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -11960,8 +13202,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.297434, - 48.893097 + 2.298571, + 48.896523 ] }, "properties": { @@ -11971,13 +13213,38 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*2*_*_", + "ref": "FR*SOD*S*LVPR*2*18*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*15*_*_", "socket:typee": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2018-01-15" + "start_date": "2017-06-14" } }, { @@ -11985,8 +13252,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.297434, - 48.893097 + 2.298571, + 48.896523 ] }, "properties": { @@ -11996,39 +13263,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*3*_*_", + "ref": "FR*SOD*S*LVPR*2*3*_*_", "socket:typee": "yes", - "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2018-01-15" + "start_date": "2017-06-14" } }, { @@ -12036,8 +13277,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.297434, - 48.893097 + 2.298571, + 48.896523 ] }, "properties": { @@ -12047,13 +13288,88 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*6*_*_", + "ref": "FR*SOD*S*LVPR*2*11*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*8*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2018-01-15" + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*17*_*_", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.298571, + 48.896523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*2*19*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-14" } }, { @@ -12086,8 +13402,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.29821, - 48.893001 + 2.297554, + 48.892754 ] }, "properties": { @@ -12097,13 +13413,63 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*6*7*_*_", + "ref": "FR*SOD*S*LVPR*3*3*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2019-11-29" + "start_date": "2019-11-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297554, + 48.892754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*3*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297554, + 48.892754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*3*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-28" } }, { @@ -12147,82 +13513,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*7*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297554, - 48.892754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*7*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297554, - 48.892754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*3*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-11-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297554, - 48.892754 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*3*_*_", + "ref": "FR*SOD*S*LVPR*3*8*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -12272,157 +13563,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*3*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*9*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*8*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29821, - 48.893001 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*6*6*_*_", + "ref": "FR*SOD*S*LVPR*3*7*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -12431,6 +13572,56 @@ "start_date": "2019-11-28" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.297554, + 48.892754 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*3*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288618, + 48.897964 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*1*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-01-25" + } + }, { "type": "Feature", "geometry": { @@ -12456,6 +13647,31 @@ "start_date": "2018-01-15" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29821, + 48.893001 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "353347222", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "LEVAPARC", + "ref": "FR*SOD*S*LVPR*6*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-11-28" + } + }, { "type": "Feature", "geometry": { @@ -12472,7 +13688,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*3*_*_", + "ref": "FR*SOD*S*LVPR*5*1*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -12481,31 +13697,6 @@ "start_date": "2019-02-18" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*12*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, { "type": "Feature", "geometry": { @@ -12547,7 +13738,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*6*5*_*_", + "ref": "FR*SOD*S*LVPR*6*6*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -12622,13 +13813,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*6*8*_*_", + "ref": "FR*SOD*S*LVPR*6*7*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2019-11-28" + "start_date": "2019-11-29" } }, { @@ -12661,8 +13852,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.297241, - 48.893006 + 2.29821, + 48.893001 ] }, "properties": { @@ -12672,38 +13863,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*2*_*_", + "ref": "FR*SOD*S*LVPR*6*8*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2019-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297241, - 48.893006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-18" + "start_date": "2019-11-28" } }, { @@ -12736,1373 +13902,21 @@ "geometry": { "type": "Point", "coordinates": [ - 2.297434, - 48.893097 + 2.298291, + 48.793804 ] }, "properties": { "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*9*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297241, - 48.893006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*1*_*_", + "email": "info@chargepoint.com", + "network": "SCI FONTENAY BORNE 1", + "ref": "FRCPIE6720865", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2019-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297241, - 48.893006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-04-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297241, - 48.893006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*3*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297241, - 48.893006 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*5*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*6*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*7*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*4*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*5*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.297434, - 48.893097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*4*8*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-01-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*17*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*16*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*20*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*6*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*16*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*7*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*13*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*10*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*9*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*15*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*19*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*4*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*8*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*3*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*1*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*2*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*4*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*20*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*18*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288618, - 48.897964 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*1*3*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-01-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*14*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*3*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*13*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*11*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*7*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*2*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*1*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*10*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*19*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*8*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*5*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*14*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*17*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*15*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*12*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*18*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*11*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*9*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.298571, - 48.896523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "353347222", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "LEVAPARC", - "ref": "FR*SOD*S*LVPR*2*3*_*_", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26163316, - 48.92738723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCIIETN158", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-18", + "start_date": "2023-05-10", "socket:type2_cable": "false" } }, @@ -14111,24 +13925,21 @@ "geometry": { "type": "Point", "coordinates": [ - 2.25396, - 48.9351 + 2.298291, + 48.793804 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHRNCR", - "socket:typee": "yes", + "email": "info@chargepoint.com", + "network": "SCI FONTENAY BORNE 1", + "ref": "FRCPIE6720865", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2018-06-06", + "start_date": "2023-05-10", "socket:type2_cable": "false" } }, @@ -14137,24 +13948,21 @@ "geometry": { "type": "Point", "coordinates": [ - 2.25396, - 48.9351 + 2.264781, + 48.936485 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHRNCR", - "socket:typee": "yes", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT GENNEVILLIERS", + "ref": "FRCPIE6585715", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2018-06-06", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -14163,24 +13971,21 @@ "geometry": { "type": "Point", "coordinates": [ - 2.25396, - 48.9351 + 2.264781, + 48.936485 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHRNCR", - "socket:typee": "yes", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT GENNEVILLIERS", + "ref": "FRCPIE6585715", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2018-06-06", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -14189,24 +13994,21 @@ "geometry": { "type": "Point", "coordinates": [ - 2.25396, - 48.9351 + 2.16581, + 48.838141 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PHRNCR", - "socket:typee": "yes", + "email": "info@chargepoint.com", + "network": "PARKING EXTERIE BORNE 2", + "ref": "FRCPIE6543455", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2018-06-06", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -14215,24 +14017,21 @@ "geometry": { "type": "Point", "coordinates": [ - 1.39760523, - 50.03117065 + 2.16581, + 48.838141 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZAJRFADFMD", - "socket:typee": "yes", + "email": "info@chargepoint.com", + "network": "PARKING EXTERIE BORNE 2", + "ref": "FRCPIE6543455", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-04-01", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -14241,23 +14040,21 @@ "geometry": { "type": "Point", "coordinates": [ - 1.39760523, - 50.03117065 + 2.165492, + 48.83775 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZAJRFADFMD", + "email": "info@chargepoint.com", + "network": "PARKING EXTERIE BORNE 1", + "ref": "FRCPIE6536955", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-04-01", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -14266,24 +14063,21 @@ "geometry": { "type": "Point", "coordinates": [ - 1.39760523, - 50.03117065 + 2.165492, + 48.83775 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZAJRFADFMD", - "socket:typee": "yes", + "email": "info@chargepoint.com", + "network": "PARKING EXTERIE BORNE 1", + "ref": "FRCPIE6536955", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-04-01", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -14292,24 +14086,24 @@ "geometry": { "type": "Point", "coordinates": [ - 1.39760523, - 50.03117065 + 2.32, + 48.92 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZAJRFADFMD", + "operator": "NVH", + "owner:ref:FR:SIREN": "326765054", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref": "0", "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", + "fee": "0", + "authentication:none": "1", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-04-01", - "socket:type2_cable": "false" + "start_date": "2023-02-08" } }, { @@ -14317,25 +14111,25 @@ "geometry": { "type": "Point", "coordinates": [ - 2.18462, - 48.8965 + 2.32, + 48.92 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXPKNG", + "operator": "NVH", + "owner:ref:FR:SIREN": "326765054", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref": "0", "socket:typee": "yes", "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", + "fee": "0", + "authentication:none": "1", "reservation": "no", "opening_hours": "24/7", - "start_date": "2017-05-15", - "socket:type2_cable": "false" + "start_date": "2023-02-08" } }, { @@ -14343,25 +14137,24 @@ "geometry": { "type": "Point", "coordinates": [ - 2.18462, - 48.8965 + 2.32, + 48.92 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DXPKNG", - "socket:typee": "yes", + "operator": "NVH", + "owner:ref:FR:SIREN": "326765054", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "BM92", + "ref": "0", "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", + "fee": "0", + "authentication:none": "1", "reservation": "no", "opening_hours": "24/7", - "start_date": "2017-05-15", - "socket:type2_cable": "false" + "start_date": "2023-02-08" } }, { @@ -14395,8 +14188,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.212125, - 48.912135 + 2.18462, + 48.8965 ] }, "properties": { @@ -14405,14 +14198,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "ACYY4VWEH3", + "ref": "DXPKNG", "socket:typee": "yes", "socket:type2": "yes", - "fee": "false", + "fee": "true", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-01-07", + "start_date": "2017-05-15", "socket:type2_cable": "false" } }, @@ -14421,8 +14214,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.212125, - 48.912135 + 2.18462, + 48.8965 ] }, "properties": { @@ -14431,14 +14224,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "ACYY4VWEH3", + "ref": "DXPKNG", "socket:typee": "yes", "socket:type2": "yes", - "fee": "false", + "fee": "true", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-01-07", + "start_date": "2017-05-15", "socket:type2_cable": "false" } }, @@ -14447,8 +14240,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.212125, - 48.912135 + 2.25396, + 48.9351 ] }, "properties": { @@ -14457,14 +14250,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "ACYY4VWEH3", + "ref": "PHRNCR", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-12-14", + "start_date": "2018-06-06", "socket:type2_cable": "false" } }, @@ -14473,8 +14266,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.212125, - 48.912135 + 2.25396, + 48.9351 ] }, "properties": { @@ -14483,14 +14276,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "ACYY4VWEH3", + "ref": "PHRNCR", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-12-14", + "start_date": "2018-06-06", "socket:type2_cable": "false" } }, @@ -14499,8 +14292,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.212125, - 48.912135 + 2.25396, + 48.9351 ] }, "properties": { @@ -14509,14 +14302,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "ACYY4VWEH3", + "ref": "PHRNCR", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-12-14", + "start_date": "2018-06-06", "socket:type2_cable": "false" } }, @@ -14525,8 +14318,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.212125, - 48.912135 + 2.25396, + 48.9351 ] }, "properties": { @@ -14535,14 +14328,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "ACYY4VWEH3", + "ref": "PHRNCR", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-12-14", + "start_date": "2018-06-06", "socket:type2_cable": "false" } }, @@ -14551,8 +14344,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.212125, - 48.912135 + 2.26163316, + 48.92738723 ] }, "properties": { @@ -14561,14 +14354,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "ACYY4VWEH3", - "socket:typee": "yes", + "ref": "TCIIETN158", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-01-07", + "start_date": "2021-03-18", "socket:type2_cable": "false" } }, @@ -14577,8 +14369,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.212125, - 48.912135 + 2.291748, + 48.805764 ] }, "properties": { @@ -14587,85 +14379,7 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "ACYY4VWEH3", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230169, - 48.921073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBENFNB95Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230169, - 48.921073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBENFNB95Y", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230169, - 48.921073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XBENFNB95Y", + "ref": "PR1JKSCDLC", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -14733,8 +14447,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.291748, - 48.805764 + 2.230169, + 48.921073 ] }, "properties": { @@ -14743,7 +14457,7 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "PR1JKSCDLC", + "ref": "XBENFNB95Y", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -14759,8 +14473,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.19572, - 48.8922 + 2.230169, + 48.921073 ] }, "properties": { @@ -14769,14 +14483,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "OS5AYN2RWQ", + "ref": "XBENFNB95Y", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-08", + "start_date": "2022-06-27", "socket:type2_cable": "false" } }, @@ -14785,8 +14499,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.19572, - 48.8922 + 2.230169, + 48.921073 ] }, "properties": { @@ -14795,14 +14509,350 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "OS5AYN2RWQ", + "ref": "XBENFNB95Y", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-08", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31362079, + 48.92645399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJCP3OVP21SAS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31362079, + 48.92645399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJCP3OVP21SAS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31362079, + 48.92645399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJCP3OVP21SAS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31362079, + 48.92645399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJCP3OVP21SAS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31362079, + 48.92645399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJCP3OVP21SAS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.31362079, + 48.92645399 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJCP3OVP21SAS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20301175, + 48.84189987 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AZTNSXMBHG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23698, + 48.8313 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HI8CYLTPBP", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.253808, + 48.832043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKDY8UTUDA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29817629, + 48.89450073 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SW0I6KKZAI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29817629, + 48.89450073 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SW0I6KKZAI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273682, + 48.902848 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HS9LF6WZTM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.273682, + 48.902848 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HS9LF6WZTM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-31", "socket:type2_cable": "false" } }, @@ -14837,8 +14887,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.21968, - 48.8963 + 2.19572, + 48.8922 ] }, "properties": { @@ -14847,7 +14897,7 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "RTGNLZP5RI", + "ref": "OS5AYN2RWQ", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -14967,8 +15017,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.21968, + 48.8963 ] }, "properties": { @@ -14977,13 +15027,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", + "ref": "RTGNLZP5RI", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-10-07", + "start_date": "2021-06-08", "socket:type2_cable": "false" } }, @@ -14992,8 +15043,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.19572, + 48.8922 ] }, "properties": { @@ -15002,13 +15053,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", + "ref": "OS5AYN2RWQ", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-10-07", + "start_date": "2021-06-08", "socket:type2_cable": "false" } }, @@ -15017,8 +15069,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.31410268, + 48.92663827 ] }, "properties": { @@ -15027,13 +15079,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", + "ref": "CPXF2LLPM8", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07", + "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", + "start_date": "2022-07-20", "socket:type2_cable": "false" } }, @@ -15042,8 +15094,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.31410268, + 48.92663827 ] }, "properties": { @@ -15052,13 +15104,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", + "ref": "CPXF2LLPM8", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07", + "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", + "start_date": "2022-07-20", "socket:type2_cable": "false" } }, @@ -15067,8 +15119,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.31410268, + 48.92663827 ] }, "properties": { @@ -15077,13 +15129,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", + "ref": "CPXF2LLPM8", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07", + "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", + "start_date": "2022-07-20", "socket:type2_cable": "false" } }, @@ -15092,8 +15144,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.31410268, + 48.92663827 ] }, "properties": { @@ -15102,13 +15154,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", + "ref": "CPXF2LLPM8", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07", + "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", + "start_date": "2022-07-20", "socket:type2_cable": "false" } }, @@ -15117,8 +15169,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.31410268, + 48.92663827 ] }, "properties": { @@ -15127,13 +15179,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", + "ref": "CPXF2LLPM8", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07", + "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", + "start_date": "2022-07-20", "socket:type2_cable": "false" } }, @@ -15142,8 +15194,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.31410268, + 48.92663827 ] }, "properties": { @@ -15152,13 +15204,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", - "socket:type2": "yes", + "ref": "CPXF2LLPM8", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07", + "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", + "start_date": "2022-07-20", "socket:type2_cable": "false" } }, @@ -15167,8 +15219,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.212125, + 48.912135 ] }, "properties": { @@ -15177,13 +15229,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", + "ref": "ACYY4VWEH3", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-10-07", + "start_date": "2021-01-07", "socket:type2_cable": "false" } }, @@ -15192,8 +15245,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.212125, + 48.912135 ] }, "properties": { @@ -15202,13 +15255,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", + "ref": "ACYY4VWEH3", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-10-07", + "start_date": "2020-12-14", "socket:type2_cable": "false" } }, @@ -15217,8 +15271,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.212125, + 48.912135 ] }, "properties": { @@ -15227,13 +15281,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", + "ref": "ACYY4VWEH3", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-10-07", + "start_date": "2020-12-14", "socket:type2_cable": "false" } }, @@ -15242,8 +15297,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.212125, + 48.912135 ] }, "properties": { @@ -15252,13 +15307,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", + "ref": "ACYY4VWEH3", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-10-07", + "start_date": "2021-01-07", "socket:type2_cable": "false" } }, @@ -15267,8 +15323,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.212125, + 48.912135 ] }, "properties": { @@ -15277,13 +15333,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", + "ref": "ACYY4VWEH3", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-10-07", + "start_date": "2021-01-07", "socket:type2_cable": "false" } }, @@ -15292,8 +15349,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.212125, + 48.912135 ] }, "properties": { @@ -15302,13 +15359,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", + "ref": "ACYY4VWEH3", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-10-07", + "start_date": "2021-01-07", "socket:type2_cable": "false" } }, @@ -15317,8 +15375,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.212125, + 48.912135 ] }, "properties": { @@ -15327,13 +15385,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", + "ref": "ACYY4VWEH3", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-10-07", + "start_date": "2020-12-14", "socket:type2_cable": "false" } }, @@ -15342,8 +15401,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.212125, + 48.912135 ] }, "properties": { @@ -15352,13 +15411,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", + "ref": "ACYY4VWEH3", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-10-07", + "start_date": "2020-12-14", "socket:type2_cable": "false" } }, @@ -15367,8 +15427,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.20428736, + 48.88284716 ] }, "properties": { @@ -15377,13 +15437,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", + "ref": "LSQHXACDBJ", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07", + "opening_hours": "Mo-Sa 08:30-20:30", + "start_date": "2021-08-24", "socket:type2_cable": "false" } }, @@ -15392,8 +15453,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22774722, - 48.79670152 + 2.20428736, + 48.88284716 ] }, "properties": { @@ -15402,13 +15463,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "V3RPWWAZKE", + "ref": "LSQHXACDBJ", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-07", + "opening_hours": "Mo-Sa 08:30-20:30", + "start_date": "2021-08-24", "socket:type2_cable": "false" } }, @@ -15417,8 +15479,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.29832077, - 48.79752977 + 2.20428736, + 48.88284716 ] }, "properties": { @@ -15427,13 +15489,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "TY2KJ0CUTI", + "ref": "LSQHXACDBJ", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08", + "opening_hours": "Mo-Sa 08:30-20:30", + "start_date": "2021-08-24", "socket:type2_cable": "false" } }, @@ -15442,8 +15505,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.29832077, - 48.79752977 + 2.20428736, + 48.88284716 ] }, "properties": { @@ -15452,13 +15515,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "TY2KJ0CUTI", + "ref": "LSQHXACDBJ", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08", + "opening_hours": "Mo-Sa 08:30-20:30", + "start_date": "2021-08-24", "socket:type2_cable": "false" } }, @@ -15467,8 +15531,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22000316, - 48.88582386 + 2.20428736, + 48.88284716 ] }, "properties": { @@ -15477,13 +15541,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "GQOVRUFGXB", + "ref": "LSQHXACDBJ", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-22", + "opening_hours": "Mo-Sa 08:30-20:30", + "start_date": "2021-08-24", "socket:type2_cable": "false" } }, @@ -15492,8 +15557,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.22000316, - 48.88582386 + 2.20428736, + 48.88284716 ] }, "properties": { @@ -15502,13 +15567,1046 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "GQOVRUFGXB", + "ref": "LSQHXACDBJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-20:30", + "start_date": "2021-08-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39760523, + 50.03117065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZAJRFADFMD", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-02-22", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39760523, + 50.03117065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZAJRFADFMD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39760523, + 50.03117065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZAJRFADFMD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.39760523, + 50.03117065 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZAJRFADFMD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-01", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OAJVPG4P9J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OAJVPG4P9J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OAJVPG4P9J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OAJVPG4P9J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OAJVPG4P9J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OAJVPG4P9J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OAJVPG4P9J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OAJVPG4P9J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OAJVPG4P9J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.271654, + 48.935467 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OAJVPG4P9J", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2021-12-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27027321, + 48.93701953 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BDY183MWVK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-01-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y6GYO7OHI0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y6GYO7OHI0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y6GYO7OHI0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y6GYO7OHI0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y6GYO7OHI0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y6GYO7OHI0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y6GYO7OHI0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y6GYO7OHI0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y6GYO7OHI0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19413184, + 48.86208218 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Y6GYO7OHI0", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-14", "socket:type2_cable": "false" } }, @@ -15959,8 +17057,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.253808, - 48.832043 + 2.22000316, + 48.88582386 ] }, "properties": { @@ -15969,14 +17067,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "YKDY8UTUDA", - "socket:typee": "yes", + "ref": "GQOVRUFGXB", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-15", + "start_date": "2022-02-22", "socket:type2_cable": "false" } }, @@ -15985,8 +17082,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.29817629, - 48.89450073 + 2.29832077, + 48.79752977 ] }, "properties": { @@ -15995,66 +17092,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "SW0I6KKZAI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29817629, - 48.89450073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SW0I6KKZAI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.273682, - 48.902848 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HS9LF6WZTM", - "socket:typee": "yes", + "ref": "TY2KJ0CUTI", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-12-31", + "start_date": "2022-09-08", "socket:type2_cable": "false" } }, @@ -16063,8 +17107,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.273682, - 48.902848 + 2.29832077, + 48.79752977 ] }, "properties": { @@ -16073,14 +17117,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "HS9LF6WZTM", - "socket:typee": "yes", + "ref": "TY2KJ0CUTI", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-12-31", + "start_date": "2022-09-08", "socket:type2_cable": "false" } }, @@ -16089,8 +17132,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.20301175, - 48.84189987 + 2.22000316, + 48.88582386 ] }, "properties": { @@ -16099,190 +17142,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "AZTNSXMBHG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-28", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31410268, - 48.92663827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPXF2LLPM8", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", - "start_date": "2022-07-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31410268, - 48.92663827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPXF2LLPM8", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", - "start_date": "2022-07-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31410268, - 48.92663827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPXF2LLPM8", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", - "start_date": "2022-07-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31410268, - 48.92663827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPXF2LLPM8", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", - "start_date": "2022-07-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31410268, - 48.92663827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPXF2LLPM8", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", - "start_date": "2022-07-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31410268, - 48.92663827 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CPXF2LLPM8", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:00-17:30,Fr 07:00-16:30", - "start_date": "2022-07-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23698, - 48.8313 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HI8CYLTPBP", - "socket:typee": "yes", + "ref": "GQOVRUFGXB", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-15", + "start_date": "2022-02-22", "socket:type2_cable": "false" } }, @@ -16291,8 +17157,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.313924, - 48.925919 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -16301,14 +17167,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "LLJCP3OVP21SAS", - "socket:typee": "yes", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-06-26", + "start_date": "2021-10-07", "socket:type2_cable": "false" } }, @@ -16317,8 +17182,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.313924, - 48.925919 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -16327,39 +17192,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "LLJCP3OVP21SAS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313924, - 48.925919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJCP3OVP21SAS", - "socket:typee": "yes", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-06-26", + "start_date": "2021-10-07", "socket:type2_cable": "false" } }, @@ -16368,8 +17207,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.313924, - 48.925919 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -16378,39 +17217,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "LLJCP3OVP21SAS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-26", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.313924, - 48.925919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LLJCP3OVP21SAS", - "socket:typee": "yes", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-06-26", + "start_date": "2021-10-07", "socket:type2_cable": "false" } }, @@ -16419,8 +17232,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.313924, - 48.925919 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -16429,14 +17242,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "LLJCP3OVP21SAS", - "socket:typee": "yes", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-06-26", + "start_date": "2021-10-07", "socket:type2_cable": "false" } }, @@ -16445,8 +17257,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.271654, - 48.935467 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -16455,690 +17267,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.271654, - 48.935467 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OAJVPG4P9J", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27027321, - 48.93701953 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BDY183MWVK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-01-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19413184, - 48.86208218 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Y6GYO7OHI0", - "socket:typee": "yes", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-14", + "start_date": "2021-10-07", "socket:type2_cable": "false" } }, @@ -17147,8 +17282,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.19413184, - 48.86208218 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -17157,13 +17292,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "Y6GYO7OHI0", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-14", + "start_date": "2021-10-07", "socket:type2_cable": "false" } }, @@ -17172,8 +17307,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.19413184, - 48.86208218 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -17182,13 +17317,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "Y6GYO7OHI0", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-02-15", + "start_date": "2021-10-07", "socket:type2_cable": "false" } }, @@ -17197,8 +17332,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.19413184, - 48.86208218 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -17207,13 +17342,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "Y6GYO7OHI0", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-02-15", + "start_date": "2021-10-07", "socket:type2_cable": "false" } }, @@ -17222,8 +17357,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.19413184, - 48.86208218 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -17232,14 +17367,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "Y6GYO7OHI0", - "socket:typee": "yes", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-14", + "start_date": "2021-10-07", "socket:type2_cable": "false" } }, @@ -17248,8 +17382,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.19413184, - 48.86208218 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -17258,13 +17392,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "Y6GYO7OHI0", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-14", + "start_date": "2021-10-07", "socket:type2_cable": "false" } }, @@ -17273,8 +17407,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.19413184, - 48.86208218 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -17283,14 +17417,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "Y6GYO7OHI0", - "socket:typee": "yes", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-14", + "start_date": "2021-10-07", "socket:type2_cable": "false" } }, @@ -17299,8 +17432,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.19413184, - 48.86208218 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -17309,14 +17442,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "Y6GYO7OHI0", - "socket:typee": "yes", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-14", + "start_date": "2021-10-07", "socket:type2_cable": "false" } }, @@ -17325,8 +17457,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.19413184, - 48.86208218 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -17335,13 +17467,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "Y6GYO7OHI0", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-14", + "start_date": "2021-10-07", "socket:type2_cable": "false" } }, @@ -17350,8 +17482,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.19413184, - 48.86208218 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -17360,13 +17492,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "Y6GYO7OHI0", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-14", + "start_date": "2021-10-07", "socket:type2_cable": "false" } }, @@ -17375,8 +17507,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.20428736, - 48.88284716 + 2.22774722, + 48.79670152 ] }, "properties": { @@ -17385,170 +17517,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "LSQHXACDBJ", - "socket:typee": "yes", + "ref": "V3RPWWAZKE", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30", - "start_date": "2021-08-24", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20428736, - 48.88284716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSQHXACDBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30", - "start_date": "2021-08-24", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20428736, - 48.88284716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSQHXACDBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30", - "start_date": "2021-08-24", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20428736, - 48.88284716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSQHXACDBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30", - "start_date": "2021-08-24", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20428736, - 48.88284716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSQHXACDBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30", - "start_date": "2021-08-24", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20428736, - 48.88284716 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LSQHXACDBJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30", - "start_date": "2021-08-24", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32, - 48.92 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "326765054", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:type2": "yes", - "fee": "0", - "authentication:none": "1", - "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-02-08" + "start_date": "2021-10-07", + "socket:type2_cable": "false" } }, { @@ -17556,24 +17532,24 @@ "geometry": { "type": "Point", "coordinates": [ - 2.32, - 48.92 + 2.22774722, + 48.79670152 ] }, "properties": { "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "326765054", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "V3RPWWAZKE", "socket:type2": "yes", - "fee": "0", - "authentication:none": "1", + "fee": "false", + "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-02-08" + "start_date": "2021-10-07", + "socket:type2_cable": "false" } }, { @@ -17581,25 +17557,49 @@ "geometry": { "type": "Point", "coordinates": [ - 2.32, - 48.92 + 2.22774722, + 48.79670152 ] }, "properties": { "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "326765054", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "BM92", - "ref": "0", - "socket:typee": "yes", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "V3RPWWAZKE", "socket:type2": "yes", - "fee": "0", - "authentication:none": "1", + "fee": "false", + "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-02-08" + "start_date": "2021-10-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22774722, + 48.79670152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "V3RPWWAZKE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-07", + "socket:type2_cable": "false" } }, { @@ -17678,6 +17678,34 @@ "socket:type2_cable": "false" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.263132, + 48.898351 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF062001", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-12-14" + } + }, { "type": "Feature", "geometry": { @@ -17910,59 +17938,6 @@ "start_date": "2022-09-05" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.263132, - 48.898351 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062001", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26089, - 48.900075 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF062209", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-17" - } - }, { "type": "Feature", "geometry": { @@ -18015,6 +17990,31 @@ "start_date": "2023-04-17" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26089, + 48.900075 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF062209", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-17" + } + }, { "type": "Feature", "geometry": { @@ -18067,31 +18067,6 @@ "start_date": "2022-04-08" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.187721, - 48.876249 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, { "type": "Feature", "geometry": { @@ -18116,248 +18091,6 @@ "start_date": "2021-01-15" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193527, - 48.857699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193527, - 48.857699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193527, - 48.857699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193527, - 48.857699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193527, - 48.857699 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.191375, - 48.883647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.191375, - 48.883647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.191375, - 48.883647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.191375, - 48.883647 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.173461, - 48.877092 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, { "type": "Feature", "geometry": { @@ -18387,8 +18120,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.181274, - 48.887186 + 2.193527, + 48.857699 ] }, "properties": { @@ -18403,7 +18136,249 @@ "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-01-20" + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193527, + 48.857699 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193527, + 48.857699 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193527, + 48.857699 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193527, + 48.857699 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.191375, + 48.883647 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.191375, + 48.883647 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.191375, + 48.883647 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.191375, + 48.883647 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.171649, + 48.883328 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.173461, + 48.877092 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" } }, { @@ -18471,7 +18446,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:type2": "yes", + "socket:typee": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -18479,6 +18454,30 @@ "start_date": "2021-01-22" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.187721, + 48.876249 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, { "type": "Feature", "geometry": { @@ -18575,6 +18574,78 @@ "start_date": "2021-01-20" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.16798566, + 48.88946877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181274, + 48.887186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181274, + 48.887186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-20" + } + }, { "type": "Feature", "geometry": { @@ -18615,6 +18686,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -18628,8 +18700,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.171649, - 48.883328 + 2.200918, + 48.876649 ] }, "properties": { @@ -18639,31 +18711,6 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181756, - 48.86333 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -18701,8 +18748,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.181756, - 48.86333 + 2.187721, + 48.876249 ] }, "properties": { @@ -19015,8 +19062,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.187721, - 48.876249 + 2.181756, + 48.86333 ] }, "properties": { @@ -19267,6 +19314,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -19280,8 +19328,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.200918, - 48.876649 + 2.181756, + 48.86333 ] }, "properties": { @@ -19300,30 +19348,6 @@ "start_date": "2021-01-15" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181274, - 48.887186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-20" - } - }, { "type": "Feature", "geometry": { @@ -19921,6 +19945,870 @@ "start_date": "2022-12-29" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.16798566, + 48.88946877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.270181, + 48.878919 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20551, + 48.865019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195013, + 48.872781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195013, + 48.872781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195013, + 48.872781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195013, + 48.872781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195013, + 48.872781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195013, + 48.872781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.195013, + 48.872781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.182311, + 48.87334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.182311, + 48.87334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.182311, + 48.87334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.182311, + 48.87334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.182311, + 48.87334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.182311, + 48.87334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.182311, + 48.87334 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.172349, + 48.885331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-01-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.16798566, + 48.88946877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.16798566, + 48.88946877 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1607189, + 48.8715031 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269933, + 48.891087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1607189, + 48.8715031 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1607189, + 48.8715031 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1607189, + 48.8715031 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-16" + } + }, { "type": "Feature", "geometry": { @@ -19951,8 +20839,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.16798566, - 48.88946877 + 2.317304, + 48.784697 ] }, "properties": { @@ -19966,896 +20854,7 @@ "fee": "false", "authentication:none": "true", "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.172349, - 48.885331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.172349, - 48.885331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.172349, - 48.885331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.172349, - 48.885331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20551, - 48.865019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20551, - 48.865019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20551, - 48.865019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20551, - 48.865019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20551, - 48.865019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20551, - 48.865019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20551, - 48.865019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195013, - 48.872781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195013, - 48.872781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195013, - 48.872781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195013, - 48.872781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195013, - 48.872781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195013, - 48.872781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.195013, - 48.872781 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.182311, - 48.87334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.182311, - 48.87334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.182311, - 48.87334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.182311, - 48.87334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.182311, - 48.87334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.182311, - 48.87334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.182311, - 48.87334 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.172349, - 48.885331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.172349, - 48.885331 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-01-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16798566, - 48.88946877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16798566, - 48.88946877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.16798566, - 48.88946877 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269933, - 48.891087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1607189, - 48.8715031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1607189, - 48.8715031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1607189, - 48.8715031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1607189, - 48.8715031 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.269933, - 48.891087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3179907, - 48.8173946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" + "opening_hours": "24/7" } }, { @@ -21211,7 +21210,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:type2": "yes", + "socket:typee": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -22180,8 +22179,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.317304, - 48.784697 + 2.311957, + 48.779158 ] }, "properties": { @@ -22191,35 +22190,12 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30132922, - 48.75483829 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", + "socket:typee": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-11-09" + "start_date": "2021-07-22" } }, { @@ -22598,7 +22574,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:typee": "yes", + "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -22702,30 +22678,6 @@ "start_date": "2021-07-22" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.311957, - 48.779158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, { "type": "Feature", "geometry": { @@ -23184,6 +23136,30 @@ "start_date": "2021-11-09" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30132922, + 48.75483829 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-09" + } + }, { "type": "Feature", "geometry": { @@ -23213,8 +23189,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.26644659, - 48.8312661 + 2.26183571, + 48.82380279 ] }, "properties": { @@ -23224,7 +23200,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:typee": "yes", + "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -23265,6 +23241,30 @@ 48.887095 ] }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279206, + 48.880952 + ] + }, "properties": { "amenity": "charging_station", "operator": "SPIE CITYNETWORKS", @@ -23278,7 +23278,7 @@ "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2022-12-01" + "start_date": "2022-12-29" } }, { @@ -23544,7 +23544,8 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:type2_combo": "yes", + "socket:typee": "yes", + "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -23552,31 +23553,6 @@ "start_date": "2022-12-01" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255578, - 48.875794 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, { "type": "Feature", "geometry": { @@ -23601,6 +23577,31 @@ "start_date": "2021-04-27" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.255578, + 48.875794 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, { "type": "Feature", "geometry": { @@ -23842,55 +23843,6 @@ "start_date": "2021-11-30" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32785348, - 48.81722451 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279206, - 48.880952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, { "type": "Feature", "geometry": { @@ -23964,6 +23916,55 @@ "start_date": "2022-12-29" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.274565, + 48.886673 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.269933, + 48.891087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-06" + } + }, { "type": "Feature", "geometry": { @@ -24504,8 +24505,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.274565, - 48.886673 + 2.32785348, + 48.81722451 ] }, "properties": { @@ -24515,13 +24516,12 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2022-12-09" + "start_date": "2021-11-30" } }, { @@ -24572,30 +24572,6 @@ "start_date": "2021-08-05" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3179907, - 48.8173946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, { "type": "Feature", "geometry": { @@ -24612,7 +24588,31 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:type2_combo": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26063816, + 48.81681135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -25155,8 +25155,656 @@ "geometry": { "type": "Point", "coordinates": [ - 2.26183571, - 48.82380279 + 2.26063816, + 48.81681135 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315961, + 48.81079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3179907, + 48.8173946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315961, + 48.81079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3179907, + 48.8173946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3179907, + 48.8173946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3179907, + 48.8173946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3179907, + 48.8173946 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515, + 48.81253099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515, + 48.81253099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515, + 48.81253099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515, + 48.81253099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515, + 48.81253099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515, + 48.81253099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30739515, + 48.81253099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378, + 48.81256199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378, + 48.81256199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378, + 48.81256199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378, + 48.81256199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378, + 48.81256199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378, + 48.81256199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32361378, + 48.81256199 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315961, + 48.81079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315961, + 48.81079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315961, + 48.81079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315961, + 48.81079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.315961, + 48.81079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26644659, + 48.8312661 ] }, "properties": { @@ -25179,656 +25827,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.26063816, - 48.81681135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26063816, - 48.81681135 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3179907, - 48.8173946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315961, - 48.81079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3179907, - 48.8173946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3179907, - 48.8173946 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30739515, - 48.81253099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30739515, - 48.81253099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30739515, - 48.81253099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30739515, - 48.81253099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30739515, - 48.81253099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30739515, - 48.81253099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.30739515, - 48.81253099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32361378, - 48.81256199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32361378, - 48.81256199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32361378, - 48.81256199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32361378, - 48.81256199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32361378, - 48.81256199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32361378, - 48.81256199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32361378, - 48.81256199 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315961, - 48.81079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315961, - 48.81079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315961, - 48.81079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315961, - 48.81079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315961, - 48.81079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.315961, - 48.81079 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.270181, - 48.878919 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255335, - 48.786899 + 2.170362, + 48.83852 ] }, "properties": { @@ -25838,7 +25838,7 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*FERRAR1", + "ref": "FR*55C*P92380*GAR*RAYPOINCARE", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", @@ -25852,8 +25852,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.255335, - 48.786899 + 2.170362, + 48.83852 ] }, "properties": { @@ -25863,7 +25863,7 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*FERRAR1", + "ref": "FR*55C*P92380*GAR*RAYPOINCARE", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", @@ -25877,8 +25877,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.255335, - 48.786899 + 2.170362, + 48.83852 ] }, "properties": { @@ -25888,7 +25888,7 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*FERRAR1", + "ref": "FR*55C*P92380*GAR*RAYPOINCARE", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", @@ -25902,8 +25902,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.255335, - 48.786899 + 2.170362, + 48.83852 ] }, "properties": { @@ -25913,7 +25913,7 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*FERRAR1", + "ref": "FR*55C*P92380*GAR*RAYPOINCARE", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", @@ -25927,8 +25927,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.267296, - 48.804229 + 2.170362, + 48.83852 ] }, "properties": { @@ -25938,59 +25938,7 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*HUG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267296, - 48.804229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*HUG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255335, - 48.786899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*FERRAR1", + "ref": "FR*55C*P92380*GAR*RAYPOINCARE", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", @@ -26004,8 +25952,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.262841, - 48.798985 + 2.170362, + 48.83852 ] }, "properties": { @@ -26015,7 +25963,7 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*BECLERE", + "ref": "FR*55C*P92380*GAR*RAYPOINCARE", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", @@ -26024,57 +25972,6 @@ "start_date": "2021-06-07" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.255335, - 48.786899 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*FERRAR1", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.267296, - 48.804229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*HUG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, { "type": "Feature", "geometry": { @@ -26205,8 +26102,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.267296, - 48.804229 + 2.262841, + 48.798985 ] }, "properties": { @@ -26216,14 +26113,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*HUG0", - "socket:typee": "yes", + "ref": "FR*55C*P92140*CLM*BECLERE", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-07-19" + "start_date": "2021-06-07" } }, { @@ -26231,8 +26127,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.267296, - 48.804229 + 2.255335, + 48.786899 ] }, "properties": { @@ -26242,14 +26138,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*HUG0", - "socket:typee": "yes", + "ref": "FR*55C*P92140*CLM*FERRAR1", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-07-19" + "start_date": "2021-06-07" } }, { @@ -26257,8 +26152,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.267296, - 48.804229 + 2.255335, + 48.786899 ] }, "properties": { @@ -26268,14 +26163,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*HUG0", - "socket:typee": "yes", + "ref": "FR*55C*P92140*CLM*FERRAR1", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-07-19" + "start_date": "2021-06-07" } }, { @@ -26283,8 +26177,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.267834, - 48.808019 + 2.255335, + 48.786899 ] }, "properties": { @@ -26294,13 +26188,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*JAURES", + "ref": "FR*55C*P92140*CLM*FERRAR1", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-12-13" + "start_date": "2021-06-07" } }, { @@ -26308,8 +26202,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.267834, - 48.808019 + 2.255335, + 48.786899 ] }, "properties": { @@ -26319,13 +26213,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*JAURES", + "ref": "FR*55C*P92140*CLM*FERRAR1", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-12-13" + "start_date": "2021-06-07" } }, { @@ -26333,8 +26227,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.267834, - 48.808019 + 2.255335, + 48.786899 ] }, "properties": { @@ -26344,13 +26238,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*JAURES", + "ref": "FR*55C*P92140*CLM*FERRAR1", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-12-13" + "start_date": "2021-06-07" } }, { @@ -26358,8 +26252,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.267834, - 48.808019 + 2.255335, + 48.786899 ] }, "properties": { @@ -26369,13 +26263,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*JAURES", + "ref": "FR*55C*P92140*CLM*FERRAR1", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-12-13" + "start_date": "2021-06-07" } }, { @@ -26383,8 +26277,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.267834, - 48.808019 + 2.18696, + 48.838587 ] }, "properties": { @@ -26394,13 +26288,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*JAURES", + "ref": "FR*55C*P92380*GAR*GAULLE", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-12-13" + "start_date": "2021-06-07" } }, { @@ -26408,8 +26302,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.23637, - 48.784747 + 2.26765, + 48.827423 ] }, "properties": { @@ -26419,14 +26313,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*P0MP1D0U", - "socket:typee": "yes", + "ref": "FR*55C*P92130*ISS*GALLIENI", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-07-19" + "start_date": "2021-06-07" } }, { @@ -26434,8 +26327,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.23637, - 48.784747 + 2.26765, + 48.827423 ] }, "properties": { @@ -26445,14 +26338,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*P0MP1D0U", - "socket:typee": "yes", + "ref": "FR*55C*P92130*ISS*GALLIENI", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-07-19" + "start_date": "2021-06-07" } }, { @@ -26460,8 +26352,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.23637, - 48.784747 + 2.26765, + 48.827423 ] }, "properties": { @@ -26471,14 +26363,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*P0MP1D0U", - "socket:typee": "yes", + "ref": "FR*55C*P92130*ISS*GALLIENI", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-07-19" + "start_date": "2021-06-07" } }, { @@ -26486,8 +26377,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.23637, - 48.784747 + 2.26765, + 48.827423 ] }, "properties": { @@ -26497,14 +26388,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*P0MP1D0U", - "socket:typee": "yes", + "ref": "FR*55C*P92130*ISS*GALLIENI", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-07-19" + "start_date": "2021-06-07" } }, { @@ -26512,8 +26402,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.23637, - 48.784747 + 2.26765, + 48.827423 ] }, "properties": { @@ -26523,14 +26413,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*P0MP1D0U", - "socket:typee": "yes", + "ref": "FR*55C*P92130*ISS*GALLIENI", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-07-19" + "start_date": "2021-06-07" } }, { @@ -26538,8 +26427,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.23637, - 48.784747 + 2.26765, + 48.827423 ] }, "properties": { @@ -26549,14 +26438,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92140*CLM*P0MP1D0U", - "socket:typee": "yes", + "ref": "FR*55C*P92130*ISS*GALLIENI", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-07-19" + "start_date": "2021-06-07" } }, { @@ -26564,8 +26452,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.197545, - 48.847349 + 2.249932, + 48.822635 ] }, "properties": { @@ -26575,13 +26463,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*SURESNES", + "ref": "FR*55C*P92130*ISS*ILES", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2022-12-12" + "start_date": "2021-06-07" } }, { @@ -26589,8 +26477,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.197545, - 48.847349 + 2.249932, + 48.822635 ] }, "properties": { @@ -26600,13 +26488,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*SURESNES", + "ref": "FR*55C*P92130*ISS*ILES", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2022-12-12" + "start_date": "2021-06-07" } }, { @@ -26614,8 +26502,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.197545, - 48.847349 + 2.249932, + 48.822635 ] }, "properties": { @@ -26625,13 +26513,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*SURESNES", + "ref": "FR*55C*P92130*ISS*ILES", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2022-12-12" + "start_date": "2021-06-07" } }, { @@ -26639,8 +26527,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.186539, - 48.844752 + 2.249932, + 48.822635 ] }, "properties": { @@ -26650,13 +26538,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*DEV0S", + "ref": "FR*55C*P92130*ISS*ILES", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2023-02-10" + "start_date": "2021-06-07" } }, { @@ -26664,8 +26552,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.186539, - 48.844752 + 2.249932, + 48.822635 ] }, "properties": { @@ -26675,13 +26563,188 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*DEV0S", + "ref": "FR*55C*P92130*ISS*ILES", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2023-02-10" + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.249932, + 48.822635 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92130*ISS*ILES", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18696, + 48.838587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*GAULLE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18696, + 48.838587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*GAULLE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18696, + 48.838587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*GAULLE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18696, + 48.838587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*GAULLE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18696, + 48.838587 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*GAULLE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256413, + 48.776574 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92350*LPR*PKHALLE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-15" } }, { @@ -26789,8 +26852,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.1973, - 48.85195 + 2.256413, + 48.776574 ] }, "properties": { @@ -26800,13 +26863,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*DEBAT", + "ref": "FR*55C*P92350*LPR*PKHALLE", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2023-02-10" + "start_date": "2023-03-15" } }, { @@ -26814,8 +26877,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.1973, - 48.85195 + 2.256413, + 48.776574 ] }, "properties": { @@ -26825,13 +26888,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*DEBAT", + "ref": "FR*55C*P92350*LPR*PKHALLE", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2023-02-10" + "start_date": "2023-03-15" } }, { @@ -26839,8 +26902,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.1973, - 48.85195 + 2.256413, + 48.776574 ] }, "properties": { @@ -26850,13 +26913,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*DEBAT", + "ref": "FR*55C*P92350*LPR*PKHALLE", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2023-02-10" + "start_date": "2023-03-15" } }, { @@ -26864,8 +26927,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.19756, - 48.85446 + 2.256413, + 48.776574 ] }, "properties": { @@ -26875,13 +26938,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*SU1SSES", + "ref": "FR*55C*P92350*LPR*PKHALLE", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2023-02-10" + "start_date": "2023-03-15" } }, { @@ -26889,8 +26952,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.19756, - 48.85446 + 2.256413, + 48.776574 ] }, "properties": { @@ -26900,13 +26963,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*SU1SSES", + "ref": "FR*55C*P92350*LPR*PKHALLE", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2023-02-10" + "start_date": "2023-03-15" } }, { @@ -26914,8 +26977,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.19756, - 48.85446 + 2.256413, + 48.776574 ] }, "properties": { @@ -26925,835 +26988,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*SU1SSES", + "ref": "FR*55C*P92350*LPR*PKHALLE", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.200763, - 48.849002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*JAUNE", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.200763, - 48.849002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*JAUNE", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.200763, - 48.849002 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*JAUNE", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193663, - 48.846928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*C1MET1ERE", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193663, - 48.846928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*C1MET1ERE", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.193663, - 48.846928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*C1MET1ERE", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181516, - 48.840924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*PASTEUR", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181516, - 48.840924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*PASTEUR", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181516, - 48.840924 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*PASTEUR", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.186539, - 48.844752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*DEV0S", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-02-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287036, - 48.790756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*JAURES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287036, - 48.790756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*JAURES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287036, - 48.790756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*JAURES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274352, - 48.795044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92320*FAR*LECLERC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274352, - 48.795044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92320*FAR*LECLERC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274352, - 48.795044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92320*FAR*LECLERC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274352, - 48.795044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92320*FAR*LECLERC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274352, - 48.795044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92320*FAR*LECLERC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.274352, - 48.795044 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92320*FAR*LECLERC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287036, - 48.790756 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*JAURES", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292852, - 48.789219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*L0MBART", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292852, - 48.789219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*L0MBART", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283107, - 48.783485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*LANGEV1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283107, - 48.783485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*LANGEV1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283107, - 48.783485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*LANGEV1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283107, - 48.783485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*LANGEV1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283107, - 48.783485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*LANGEV1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.283107, - 48.783485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*LANGEV1N", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292852, - 48.789219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*L0MBART", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292852, - 48.789219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*L0MBART", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292852, - 48.789219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*L0MBART", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.292852, - 48.789219 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92260*FAR*L0MBART", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-09" + "start_date": "2023-03-15" } }, { @@ -27781,181 +27022,6 @@ "start_date": "2023-03-17" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256413, - 48.776574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*PKHALLE", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256413, - 48.776574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*PKHALLE", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256413, - 48.776574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*PKHALLE", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256413, - 48.776574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*PKHALLE", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256413, - 48.776574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*PKHALLE", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256413, - 48.776574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*PKHALLE", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256413, - 48.776574 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*PKHALLE", - "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-15" - } - }, { "type": "Feature", "geometry": { @@ -28231,6 +27297,556 @@ "start_date": "2023-04-12" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1973, + 48.85195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*DEBAT", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1973, + 48.85195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*DEBAT", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197545, + 48.847349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*SURESNES", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197545, + 48.847349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*SURESNES", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197545, + 48.847349 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*SURESNES", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.186539, + 48.844752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*DEV0S", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.186539, + 48.844752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*DEV0S", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.186539, + 48.844752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*DEV0S", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181516, + 48.840924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*PASTEUR", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181516, + 48.840924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*PASTEUR", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181516, + 48.840924 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*PASTEUR", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193663, + 48.846928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*C1MET1ERE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193663, + 48.846928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*C1MET1ERE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.193663, + 48.846928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*C1MET1ERE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.200763, + 48.849002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*JAUNE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.200763, + 48.849002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*JAUNE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.200763, + 48.849002 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*JAUNE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19756, + 48.85446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*SU1SSES", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19756, + 48.85446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*SU1SSES", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19756, + 48.85446 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*SU1SSES", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1973, + 48.85195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92380*GAR*DEBAT", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.263835, + 48.781822 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92350*LPR*GAULLE", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-07-19" + } + }, { "type": "Feature", "geometry": { @@ -28636,8 +28252,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.263835, - 48.781822 + 2.274352, + 48.795044 ] }, "properties": { @@ -28647,13 +28263,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92350*LPR*GAULLE", + "ref": "FR*55C*P92320*FAR*LECLERC", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2023-07-19" + "start_date": "2021-12-13" } }, { @@ -28661,8 +28278,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.170362, - 48.83852 + 2.274352, + 48.795044 ] }, "properties": { @@ -28672,13 +28289,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*RAYPOINCARE", + "ref": "FR*55C*P92320*FAR*LECLERC", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-12-13" } }, { @@ -28686,8 +28304,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.170362, - 48.83852 + 2.274352, + 48.795044 ] }, "properties": { @@ -28697,13 +28315,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*RAYPOINCARE", + "ref": "FR*55C*P92320*FAR*LECLERC", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-12-13" } }, { @@ -28711,8 +28330,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.170362, - 48.83852 + 2.267834, + 48.808019 ] }, "properties": { @@ -28722,13 +28341,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*RAYPOINCARE", + "ref": "FR*55C*P92140*CLM*JAURES", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-12-13" } }, { @@ -28736,8 +28355,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.170362, - 48.83852 + 2.267834, + 48.808019 ] }, "properties": { @@ -28747,13 +28366,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*RAYPOINCARE", + "ref": "FR*55C*P92140*CLM*JAURES", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-12-13" } }, { @@ -28761,8 +28380,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.170362, - 48.83852 + 2.267834, + 48.808019 ] }, "properties": { @@ -28772,13 +28391,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*RAYPOINCARE", + "ref": "FR*55C*P92140*CLM*JAURES", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-12-13" } }, { @@ -28786,8 +28405,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.170362, - 48.83852 + 2.267296, + 48.804229 ] }, "properties": { @@ -28797,13 +28416,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*RAYPOINCARE", + "ref": "FR*55C*P92140*CLM*HUG0", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-19" } }, { @@ -28811,8 +28431,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.18696, - 48.838587 + 2.267296, + 48.804229 ] }, "properties": { @@ -28822,13 +28442,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GAULLE", + "ref": "FR*55C*P92140*CLM*HUG0", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-19" } }, { @@ -28836,8 +28457,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.18696, - 48.838587 + 2.267296, + 48.804229 ] }, "properties": { @@ -28847,13 +28468,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GAULLE", + "ref": "FR*55C*P92140*CLM*HUG0", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-19" } }, { @@ -28861,8 +28483,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.18696, - 48.838587 + 2.267296, + 48.804229 ] }, "properties": { @@ -28872,13 +28494,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GAULLE", + "ref": "FR*55C*P92140*CLM*HUG0", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-19" } }, { @@ -28886,8 +28509,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.18696, - 48.838587 + 2.267296, + 48.804229 ] }, "properties": { @@ -28897,13 +28520,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GAULLE", + "ref": "FR*55C*P92140*CLM*HUG0", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-19" } }, { @@ -28911,8 +28535,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.18696, - 48.838587 + 2.23637, + 48.784747 ] }, "properties": { @@ -28922,13 +28546,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GAULLE", + "ref": "FR*55C*P92140*CLM*P0MP1D0U", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-19" } }, { @@ -28936,8 +28561,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.18696, - 48.838587 + 2.23637, + 48.784747 ] }, "properties": { @@ -28947,13 +28572,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92380*GAR*GAULLE", + "ref": "FR*55C*P92140*CLM*P0MP1D0U", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-19" } }, { @@ -28961,8 +28587,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.249932, - 48.822635 + 2.23637, + 48.784747 ] }, "properties": { @@ -28972,13 +28598,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*ILES", + "ref": "FR*55C*P92140*CLM*P0MP1D0U", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-19" } }, { @@ -28986,8 +28613,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.249932, - 48.822635 + 2.23637, + 48.784747 ] }, "properties": { @@ -28997,13 +28624,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*ILES", + "ref": "FR*55C*P92140*CLM*P0MP1D0U", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-19" } }, { @@ -29011,8 +28639,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.249932, - 48.822635 + 2.23637, + 48.784747 ] }, "properties": { @@ -29022,13 +28650,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*ILES", + "ref": "FR*55C*P92140*CLM*P0MP1D0U", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-19" } }, { @@ -29036,8 +28665,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.249932, - 48.822635 + 2.23637, + 48.784747 ] }, "properties": { @@ -29047,13 +28676,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*ILES", + "ref": "FR*55C*P92140*CLM*P0MP1D0U", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-19" } }, { @@ -29061,8 +28691,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.249932, - 48.822635 + 2.267834, + 48.808019 ] }, "properties": { @@ -29072,13 +28702,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*ILES", + "ref": "FR*55C*P92140*CLM*JAURES", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-12-13" } }, { @@ -29086,8 +28716,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.249932, - 48.822635 + 2.267834, + 48.808019 ] }, "properties": { @@ -29097,13 +28727,13 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*ILES", + "ref": "FR*55C*P92140*CLM*JAURES", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-12-13" } }, { @@ -29111,8 +28741,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.26765, - 48.827423 + 2.274352, + 48.795044 ] }, "properties": { @@ -29122,13 +28752,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*GALLIENI", + "ref": "FR*55C*P92320*FAR*LECLERC", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-12-13" } }, { @@ -29136,8 +28767,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.26765, - 48.827423 + 2.267296, + 48.804229 ] }, "properties": { @@ -29147,13 +28778,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*GALLIENI", + "ref": "FR*55C*P92140*CLM*HUG0", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-19" } }, { @@ -29161,8 +28793,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.26765, - 48.827423 + 2.274352, + 48.795044 ] }, "properties": { @@ -29172,13 +28804,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*GALLIENI", + "ref": "FR*55C*P92320*FAR*LECLERC", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-12-13" } }, { @@ -29186,8 +28819,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.26765, - 48.827423 + 2.274352, + 48.795044 ] }, "properties": { @@ -29197,13 +28830,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*GALLIENI", + "ref": "FR*55C*P92320*FAR*LECLERC", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-12-13" } }, { @@ -29211,8 +28845,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.26765, - 48.827423 + 2.283107, + 48.783485 ] }, "properties": { @@ -29222,13 +28856,14 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*GALLIENI", + "ref": "FR*55C*P92260*FAR*LANGEV1N", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2022-05-09" } }, { @@ -29236,8 +28871,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.26765, - 48.827423 + 2.287036, + 48.790756 ] }, "properties": { @@ -29247,13 +28882,378 @@ "email": "contact@e55c.com", "phone": "33975891501", "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P92130*ISS*GALLIENI", + "ref": "FR*55C*P92260*FAR*JAURES", + "socket:typee": "yes", "socket:type2": "yes", "fee": "FALSE", "authentication:none": "TRUE", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287036, + 48.790756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*JAURES", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287036, + 48.790756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*JAURES", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292852, + 48.789219 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*L0MBART", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292852, + 48.789219 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*L0MBART", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292852, + 48.789219 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*L0MBART", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292852, + 48.789219 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*L0MBART", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292852, + 48.789219 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*L0MBART", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.292852, + 48.789219 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*L0MBART", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283107, + 48.783485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*LANGEV1N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287036, + 48.790756 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*JAURES", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283107, + 48.783485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*LANGEV1N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283107, + 48.783485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*LANGEV1N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283107, + 48.783485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*LANGEV1N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.283107, + 48.783485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P92260*FAR*LANGEV1N", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-09" } }, { @@ -29303,6 +29303,29 @@ "socket:type2_cable": "False" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27863, + 48.802732 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880251", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, { "type": "Feature", "geometry": { @@ -29400,8 +29423,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.2338, - 48.820606 + 2.258726, + 48.821132 ] }, "properties": { @@ -29409,7 +29432,7 @@ "operator": "WAAT SAS | FR*WAT", "email": "exploitation@waat.fr", "network": "WAAT", - "ref": "756807", + "ref": "706274", "socket:type2": "yes", "fee": "False", "authentication:none": "True", @@ -29446,8 +29469,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.2338, - 48.820606 + 2.285347, + 48.90836 ] }, "properties": { @@ -29455,7 +29478,8 @@ "operator": "WAAT SAS | FR*WAT", "email": "exploitation@waat.fr", "network": "WAAT", - "ref": "756807", + "ref": "690494", + "socket:typee": "yes", "socket:type2": "yes", "fee": "False", "authentication:none": "True", @@ -29492,8 +29516,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.258726, - 48.821132 + 2.2338, + 48.820606 ] }, "properties": { @@ -29501,7 +29525,30 @@ "operator": "WAAT SAS | FR*WAT", "email": "exploitation@waat.fr", "network": "WAAT", - "ref": "706274", + "ref": "756807", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.820606 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "756807", "socket:type2": "yes", "fee": "False", "authentication:none": "True", @@ -29579,99 +29626,6 @@ "socket:type2_cable": "False" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.285347, - 48.90836 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "690494", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258726, - 48.821132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706166", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258726, - 48.821132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706169", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.258726, - 48.821132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706172", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, { "type": "Feature", "geometry": { @@ -29742,6 +29696,76 @@ "socket:type2_cable": "False" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299774, + 48.81154 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "699632", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.277046, + 48.878382 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "880224", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258726, + 48.821132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706211", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, { "type": "Feature", "geometry": { @@ -29825,7 +29849,7 @@ "operator": "WAAT SAS | FR*WAT", "email": "exploitation@waat.fr", "network": "WAAT", - "ref": "706211", + "ref": "706166", "socket:type2": "yes", "fee": "False", "authentication:none": "True", @@ -29839,8 +29863,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.299774, - 48.81154 + 2.258726, + 48.821132 ] }, "properties": { @@ -29848,8 +29872,30 @@ "operator": "WAAT SAS | FR*WAT", "email": "exploitation@waat.fr", "network": "WAAT", - "ref": "699632", - "socket:typee": "yes", + "ref": "706169", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.258726, + 48.821132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706172", "socket:type2": "yes", "fee": "False", "authentication:none": "True", diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_93.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_93.json index 981c9530..19ab5b3f 100644 --- a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_93.json +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_93.json @@ -323,29 +323,6 @@ "start_date": "2022-10-06" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486965, - 48.951196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ELECTRA", - "owner:ref:FR:SIREN": "891624884", - "email": "help@electra.com", - "network": "ELECTRA", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-04" - } - }, { "type": "Feature", "geometry": { @@ -691,6 +668,29 @@ "start_date": "2023-01-04" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486965, + 48.951196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRA", + "owner:ref:FR:SIREN": "891624884", + "email": "help@electra.com", + "network": "ELECTRA", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-01-04" + } + }, { "type": "Feature", "geometry": { @@ -788,100 +788,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.433205, - 48.873257 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT BAGNOLET", - "ref": "FRCPIE6595195", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.433205, - 48.873257 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT BAGNOLET", - "ref": "FRCPIE6595195", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.442818, - 48.89486 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED NOISY LE SEC", - "ref": "FRCPIE6708365", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-03-31", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.442818, - 48.89486 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED NOISY LE SEC", - "ref": "FRCPIE6708365", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-03-31", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.519994, - 48.902239 + 2.54441, + 48.922985 ] }, "properties": { @@ -891,965 +799,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*281*1*_*_", - "socket:typee": "yes", + "ref": "FR*SOD*S*SIGE*118*1*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.519994, - 48.902239 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*281*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48729, - 48.873236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*287*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48729, - 48.873236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*287*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486329, - 48.870292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*266*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486329, - 48.870292 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*266*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.468985, - 48.882559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*271*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.468985, - 48.882559 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*271*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486793, - 48.872049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*305*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484066, - 48.871722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*308*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484066, - 48.871722 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*308*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.486793, - 48.872049 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*305*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526659, - 48.895792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*237*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526659, - 48.895792 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*237*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.549201, - 48.839452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*236*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.549201, - 48.839452 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*236*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.566347, - 48.829448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*228*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.566347, - 48.829448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*228*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.549687, - 48.847681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*227*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.549687, - 48.847681 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*227*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484081, - 48.914985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*315*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484081, - 48.914985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*315*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.482415, - 48.902376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*316*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.482415, - 48.902376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*316*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.478607, - 48.900927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*317*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.478607, - 48.900927 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*317*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.516052, - 48.898465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*322*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.516052, - 48.898465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*322*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.569549, - 48.929952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*171*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.569549, - 48.929952 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*171*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.518227, - 48.923959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*166*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.518227, - 48.923959 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*166*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.569549, - 48.934912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*172*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.569549, - 48.934912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*172*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51808, - 48.909806 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*121*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513482, - 48.894296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513482, - 48.894296 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*129*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.512814, - 48.892332 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*128*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-09" + "start_date": "2021-07-13" } }, { @@ -1904,6 +860,264 @@ "start_date": "2021-10-22" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.508051, + 48.902835 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*119*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51808, + 48.909806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*121*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51808, + 48.909806 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*121*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.512814, + 48.892332 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*128*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513482, + 48.894296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*129*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513482, + 48.894296 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*129*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.569549, + 48.934912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*172*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.54441, + 48.922985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*118*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.536884, + 48.919073 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*117*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.536884, + 48.919073 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*117*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-08" + } + }, { "type": "Feature", "geometry": { @@ -2013,8 +1227,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.508051, - 48.902835 + 2.549201, + 48.839452 ] }, "properties": { @@ -2024,40 +1238,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*119*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.536884, - 48.919073 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*117*1*_*_", + "ref": "FR*SOD*S*SIGE*236*1*_*_", "socket:type2_combo": "yes", "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-08" + "start_date": "2023-01-11" } }, { @@ -2065,8 +1253,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.536884, - 48.919073 + 2.549201, + 48.839452 ] }, "properties": { @@ -2076,13 +1264,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*117*1*_*_", + "ref": "FR*SOD*S*SIGE*236*1*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-08" + "start_date": "2023-01-11" } }, { @@ -2090,8 +1278,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.54441, - 48.922985 + 2.526659, + 48.895792 ] }, "properties": { @@ -2101,14 +1289,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*118*1*_*_", + "ref": "FR*SOD*S*SIGE*237*1*_*_", "socket:type2_combo": "yes", "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-13" + "start_date": "2022-04-01" } }, { @@ -2116,8 +1304,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.54441, - 48.922985 + 2.526659, + 48.895792 ] }, "properties": { @@ -2127,13 +1315,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*118*1*_*_", + "ref": "FR*SOD*S*SIGE*237*1*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-13" + "start_date": "2022-04-01" } }, { @@ -2141,8 +1329,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.51808, - 48.909806 + 2.549687, + 48.847681 ] }, "properties": { @@ -2152,13 +1340,13 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*121*1*_*_", + "ref": "FR*SOD*S*SIGE*227*1*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-09-17" + "start_date": "2022-02-18" } }, { @@ -2166,25 +1354,719 @@ "geometry": { "type": "Point", "coordinates": [ - 2.523685, - 48.9908 + 2.549687, + 48.847681 ] }, "properties": { "amenity": "charging_station", "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", + "owner:ref:FR:SIREN": "200050433", "email": "sav@izivia.com", "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*17*1*_*_", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*227*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.566347, + 48.829448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*228*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.566347, + 48.829448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*228*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.518227, + 48.923959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*166*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-02-05" + "start_date": "2021-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.569549, + 48.934912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*172*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.569549, + 48.929952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*171*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.569549, + 48.929952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*171*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.518227, + 48.923959 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*166*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.478607, + 48.900927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*317*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.516052, + 48.898465 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*322*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.516052, + 48.898465 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*322*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.478607, + 48.900927 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*317*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.519994, + 48.902239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*281*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.519994, + 48.902239 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*281*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.468985, + 48.882559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*271*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48729, + 48.873236 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*287*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.482415, + 48.902376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*316*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.468985, + 48.882559 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*271*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486329, + 48.870292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*266*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486329, + 48.870292 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*266*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48729, + 48.873236 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*287*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486793, + 48.872049 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*305*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.486793, + 48.872049 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*305*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484066, + 48.871722 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*308*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484081, + 48.914985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*315*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484081, + 48.914985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*315*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.482415, + 48.902376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*316*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.484066, + 48.871722 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*308*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-13" } }, { @@ -2229,59 +2111,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*13*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*13*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*14*2*_*_", + "ref": "FR*SOD*S*UNIB*15*2*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -2307,7 +2137,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*14*1*_*_", + "ref": "FR*SOD*S*UNIB*14*2*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -2385,7 +2215,7 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*15*2*_*_", + "ref": "FR*SOD*S*UNIB*14*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -2411,222 +2241,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*15*1*_*_", + "ref": "FR*SOD*S*UNIB*13*2*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*17*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*15*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*16*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*16*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*16*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*16*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.523685, - 48.9908 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*16*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-11" + "start_date": "2021-01-29" } }, { @@ -2686,8 +2308,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.477817, - 48.882166 + 2.523685, + 48.9908 ] }, "properties": { @@ -2697,14 +2319,274 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*2*_*_", + "ref": "FR*SOD*S*UNIB*13*1*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-05-24" + "start_date": "2021-01-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*15*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*15*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*16*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*16*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*17*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*17*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*16*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*16*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.523685, + 48.9908 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*16*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-11" } }, { @@ -2759,6 +2641,58 @@ "start_date": "2022-06-19" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*30*6*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*30*10*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, { "type": "Feature", "geometry": { @@ -2785,6 +2719,32 @@ "start_date": "2022-05-24" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*30*6*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, { "type": "Feature", "geometry": { @@ -2811,6 +2771,292 @@ "start_date": "2022-05-18" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*30*8*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*30*10*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*30*9*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*30*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*30*9*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*30*5*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*30*7*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*30*8*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*30*7*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*30*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477817, + 48.882166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "682024096", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "UNIBAIL", + "ref": "FR*SOD*S*UNIB*30*11*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-19" + } + }, { "type": "Feature", "geometry": { @@ -2837,58 +3083,6 @@ "start_date": "2022-06-19" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*7*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, { "type": "Feature", "geometry": { @@ -2915,266 +3109,6 @@ "start_date": "2022-05-18" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*8*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*9*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*10*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*8*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*6*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*10*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*5*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*7*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477817, - 48.882166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, { "type": "Feature", "geometry": { @@ -3217,14 +3151,14 @@ "email": "sav@izivia.com", "phone": "0972668001", "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*9*_*_", + "ref": "FR*SOD*S*UNIB*30*3*_*_", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-05-23" + "start_date": "2022-05-20" } }, { @@ -3232,25 +3166,22 @@ "geometry": { "type": "Point", "coordinates": [ - 2.477817, - 48.882166 + 2.442818, + 48.89486 ] }, "properties": { "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "682024096", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "UNIBAIL", - "ref": "FR*SOD*S*UNIB*30*11*_*_", - "socket:typee": "yes", + "email": "info@chargepoint.com", + "network": "CGED NOISY LE SEC", + "ref": "FRCPIE6708365", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-19" + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-03-31", + "socket:type2_cable": "false" } }, { @@ -3258,8 +3189,77 @@ "geometry": { "type": "Point", "coordinates": [ - 2.41643188, - 48.85224905 + 2.442818, + 48.89486 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CGED NOISY LE SEC", + "ref": "FRCPIE6708365", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-03-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433205, + 48.873257 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT BAGNOLET", + "ref": "FRCPIE6595195", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.433205, + 48.873257 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT BAGNOLET", + "ref": "FRCPIE6595195", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3682, + 48.9034 ] }, "properties": { @@ -3268,13 +3268,37 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "YNLENGKDIG", - "socket:typee": "yes", + "ref": "XLPLHU", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:15", + "opening_hours": "24/7", + "start_date": "2020-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.50889736, + 48.92885447 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PVB2J2HEHR", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", "start_date": "2021-11-29", "socket:type2_cable": "false" } @@ -3284,8 +3308,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.41643188, - 48.85224905 + 2.50889736, + 48.92885447 ] }, "properties": { @@ -3294,1670 +3318,16 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "YNLENGKDIG", - "socket:typee": "yes", + "ref": "PVB2J2HEHR", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:15", + "opening_hours": "24/7", "start_date": "2021-11-29", "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41643188, - 48.85224905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YNLENGKDIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:15", - "start_date": "2021-11-29", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.41643188, - 48.85224905 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YNLENGKDIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Sa 08:00-20:15", - "start_date": "2021-11-29", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33992, - 48.9159 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNX7DVKRZO", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.561378, - 48.957485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J01CFCFFW4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513621, - 48.911787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BXEZOXEAUK", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513621, - 48.911787 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BXEZOXEAUK", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364373, - 48.966502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCRKEQNZSQ", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377159, - 48.920913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EAGJ5CQBFK", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467895, - 48.870591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OKOJZHOQ8P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364373, - 48.966502 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TCRKEQNZSQ", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377159, - 48.920913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EAGJ5CQBFK", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.485371, - 48.884429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0HJQPVBCX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.485371, - 48.884429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Q0HJQPVBCX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.561378, - 48.957485 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J01CFCFFW4", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.467895, - 48.870591 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OKOJZHOQ8P", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.530189, - 48.873413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PT85VGEYSD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.530189, - 48.873413 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PT85VGEYSD", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-10-18", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-10-18", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37344428, - 48.91954888 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M1POXHVSQW", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", - "start_date": "2021-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39833236, - 48.89512837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IWWUMCVSIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39833236, - 48.89512837 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IWWUMCVSIG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-04", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418169, - 48.850197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUIWFEJLLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-31", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418169, - 48.850197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUIWFEJLLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-31", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.418169, - 48.850197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RUIWFEJLLK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-31", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40785111, - 48.89914169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CBMQXCFJ9L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40785111, - 48.89914169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CBMQXCFJ9L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40785111, - 48.89914169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CBMQXCFJ9L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40785111, - 48.89914169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CBMQXCFJ9L", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.445372, - 48.940489 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ADPZNMBHJV", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-08-09", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33390795, - 48.95405795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "APIQOKQASS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", - "start_date": "2021-04-29", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33390795, - 48.95405795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "APIQOKQASS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", - "start_date": "2021-04-29", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33390795, - 48.95405795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "APIQOKQASS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", - "start_date": "2021-04-29", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33390795, - 48.95405795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "APIQOKQASS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", - "start_date": "2021-04-29", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.368547, - 48.903675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDQRXKN1N0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.368547, - 48.903675 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HDQRXKN1N0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -4984,6 +3354,84 @@ "socket:type2_cable": "false" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36208, + 48.9039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RJDZKR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.368547, + 48.903675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDQRXKN1N0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.368547, + 48.903675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HDQRXKN1N0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, { "type": "Feature", "geometry": { @@ -5088,32 +3536,6 @@ "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36208, - 48.9039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RJDZKR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-05", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -5166,110 +3588,6 @@ "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36463848, - 48.90400096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVCJPT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-21", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36463848, - 48.90400096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FVCJPT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-09-21", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36821393, - 48.90413143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VCJWZZ6OLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36821393, - 48.90413143 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VCJWZZ6OLJ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-23", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -5446,32 +3764,6 @@ "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3624, - 48.9046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSCWYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-05", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -5503,8 +3795,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.3624, - 48.9046 + 2.36463848, + 48.90400096 ] }, "properties": { @@ -5513,65 +3805,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "XSCWYL", + "ref": "FVCJPT", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2019-09-05", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3624, - 48.9046 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XSCWYL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-09-05", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3682, - 48.9034 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "XLPLHU", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-01-17", + "start_date": "2018-09-21", "socket:type2_cable": "false" } }, @@ -5606,8 +3847,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.3083, - 48.9545 + 2.3624, + 48.9046 ] }, "properties": { @@ -5616,14 +3857,1546 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "SCLWYD", + "ref": "XSCWYL", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-01-02", + "start_date": "2019-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36821393, + 48.90413143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VCJWZZ6OLJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3624, + 48.9046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XSCWYL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3624, + 48.9046 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XSCWYL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-09-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36463848, + 48.90400096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FVCJPT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-09-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52857245, + 48.84490787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NZ5AHMP1BV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.52857245, + 48.84490787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NZ5AHMP1BV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377159, + 48.920913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EAGJ5CQBFK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513621, + 48.911787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BXEZOXEAUK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467895, + 48.870591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OKOJZHOQ8P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.485371, + 48.884429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q0HJQPVBCX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513621, + 48.911787 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BXEZOXEAUK", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.561378, + 48.957485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J01CFCFFW4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.561378, + 48.957485 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "J01CFCFFW4", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.485371, + 48.884429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Q0HJQPVBCX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377159, + 48.920913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EAGJ5CQBFK", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.467895, + 48.870591 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OKOJZHOQ8P", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364373, + 48.966502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TCRKEQNZSQ", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.530189, + 48.873413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PT85VGEYSD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364373, + 48.966502 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TCRKEQNZSQ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.530189, + 48.873413 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PT85VGEYSD", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418169, + 48.850197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RUIWFEJLLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39833236, + 48.89512837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IWWUMCVSIG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39833236, + 48.89512837 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IWWUMCVSIG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418169, + 48.850197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RUIWFEJLLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.418169, + 48.850197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RUIWFEJLLK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40785111, + 48.89914169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CBMQXCFJ9L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40785111, + 48.89914169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CBMQXCFJ9L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40785111, + 48.89914169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CBMQXCFJ9L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40785111, + 48.89914169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CBMQXCFJ9L", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNX7DVKRZO", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNX7DVKRZO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNX7DVKRZO", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNX7DVKRZO", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNX7DVKRZO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNX7DVKRZO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNX7DVKRZO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNX7DVKRZO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNX7DVKRZO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33992, + 48.9159 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNX7DVKRZO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36821393, + 48.90413143 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VCJWZZ6OLJ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ADPZNMBHJV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ADPZNMBHJV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ADPZNMBHJV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ADPZNMBHJV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ADPZNMBHJV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ADPZNMBHJV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ADPZNMBHJV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ADPZNMBHJV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ADPZNMBHJV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.445372, + 48.940489 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ADPZNMBHJV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-09", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33390795, + 48.95405795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "APIQOKQASS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", + "start_date": "2021-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33390795, + 48.95405795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "APIQOKQASS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", + "start_date": "2021-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33390795, + 48.95405795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "APIQOKQASS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", + "start_date": "2021-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33390795, + 48.95405795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "APIQOKQASS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:30-20:30,Su 08:30-12:30", + "start_date": "2021-04-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41643188, + 48.85224905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YNLENGKDIG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-20:15", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41643188, + 48.85224905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YNLENGKDIG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-20:15", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41643188, + 48.85224905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YNLENGKDIG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-20:15", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41643188, + 48.85224905 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YNLENGKDIG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Sa 08:00-20:15", + "start_date": "2021-11-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.559006, + 48.958653 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UJGU41XRPM", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.559006, + 48.958653 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UJGU41XRPM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-08", "socket:type2_cable": "false" } }, @@ -5658,8 +5431,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.559006, - 48.958653 + 2.3083, + 48.9545 ] }, "properties": { @@ -5668,13 +5441,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "UJGU41XRPM", + "ref": "SCLWYD", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-12-08", + "start_date": "2020-01-02", "socket:type2_cable": "false" } }, @@ -5683,8 +5457,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.559006, - 48.958653 + 2.37344428, + 48.91954888 ] }, "properties": { @@ -5693,14 +5467,114 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "UJGU41XRPM", + "ref": "M1POXHVSQW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", + "start_date": "2021-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M1POXHVSQW", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", + "start_date": "2021-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M1POXHVSQW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", + "start_date": "2021-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M1POXHVSQW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", + "start_date": "2021-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M1POXHVSQW", "socket:type2_combo": "yes", "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-08", + "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", + "start_date": "2021-10-18", "socket:type2_cable": "false" } }, @@ -5709,8 +5583,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.52857245, - 48.84490787 + 2.37344428, + 48.91954888 ] }, "properties": { @@ -5719,13 +5593,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "NZ5AHMP1BV", - "socket:type2": "yes", + "ref": "M1POXHVSQW", + "socket:type2_combo": "yes", + "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26", + "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", + "start_date": "2021-10-18", "socket:type2_cable": "false" } }, @@ -5734,8 +5609,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.52857245, - 48.84490787 + 2.37344428, + 48.91954888 ] }, "properties": { @@ -5744,13 +5619,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "NZ5AHMP1BV", + "ref": "M1POXHVSQW", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-26", + "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", + "start_date": "2021-08-23", "socket:type2_cable": "false" } }, @@ -5759,8 +5634,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.50889736, - 48.92885447 + 2.37344428, + 48.91954888 ] }, "properties": { @@ -5769,13 +5644,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "PVB2J2HEHR", + "ref": "M1POXHVSQW", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29", + "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", + "start_date": "2021-08-23", "socket:type2_cable": "false" } }, @@ -5784,8 +5659,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.50889736, - 48.92885447 + 2.37344428, + 48.91954888 ] }, "properties": { @@ -5794,13 +5669,138 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "PVB2J2HEHR", + "ref": "M1POXHVSQW", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-29", + "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", + "start_date": "2021-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M1POXHVSQW", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", + "start_date": "2021-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M1POXHVSQW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", + "start_date": "2021-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M1POXHVSQW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", + "start_date": "2021-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M1POXHVSQW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", + "start_date": "2021-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37344428, + 48.91954888 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M1POXHVSQW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00", + "start_date": "2021-08-23", "socket:type2_cable": "false" } }, @@ -5984,131 +5984,6 @@ "start_date": "2022-12-12" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3942192164788385, - 48.93472544057976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080299", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3942192164788385, - 48.93472544057976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080299", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3942192164788385, - 48.93472544057976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080299", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3942192164788385, - 48.93472544057976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080299", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3942192164788385, - 48.93472544057976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080299", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-02" - } - }, { "type": "Feature", "geometry": { @@ -6161,6 +6036,131 @@ "start_date": "2023-06-02" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3942192164788385, + 48.93472544057976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080299", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3942192164788385, + 48.93472544057976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080299", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3942192164788385, + 48.93472544057976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080299", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3942192164788385, + 48.93472544057976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080299", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3942192164788385, + 48.93472544057976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080299", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-02" + } + }, { "type": "Feature", "geometry": { @@ -6290,81 +6290,6 @@ "start_date": "2023-04-28" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391378846523969, - 48.93390425439423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080048", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391378846523969, - 48.93390425439423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080048", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.391378846523969, - 48.93390425439423 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF080048", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, { "type": "Feature", "geometry": { @@ -6392,6 +6317,81 @@ "start_date": "2023-04-28" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391378846523969, + 48.93390425439423 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080048", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391378846523969, + 48.93390425439423 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080048", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.391378846523969, + 48.93390425439423 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF080048", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, { "type": "Feature", "geometry": { @@ -6409,7 +6409,6 @@ "phone": "01 41 35 40 00", "network": "TotalEnergies Charge Rapide", "ref": "FR*HPC*PNF062228", - "socket:type2": "yes", "socket:type2_combo": "yes", "fee": "False", "authentication:none": "True", @@ -6513,6 +6512,7 @@ "phone": "01 41 35 40 00", "network": "TotalEnergies Charge Rapide", "ref": "FR*HPC*PNF062228", + "socket:type2": "yes", "socket:type2_combo": "yes", "fee": "False", "authentication:none": "True", @@ -6612,7 +6612,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:chademo": "yes", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -6625,8 +6625,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.42693, - 48.877739 + 2.415652, + 48.857735 ] }, "properties": { @@ -6636,12 +6636,59 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2023-01-20" + "start_date": "2022-12-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466539, + 48.948493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.466539, + 48.948493 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" } }, { @@ -6859,8 +6906,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.415652, - 48.857735 + 2.42693, + 48.877739 ] }, "properties": { @@ -6870,13 +6917,12 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2022-12-29" + "start_date": "2023-01-20" } }, { @@ -7112,7 +7158,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:type2_combo": "yes", + "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -7144,76 +7190,6 @@ "start_date": "2023-01-23" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.484809, - 48.953583 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-01-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.466539, - 48.948493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.466539, - 48.948493 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7" - } - }, { "type": "Feature", "geometry": { @@ -7261,6 +7237,78 @@ "start_date": "2023-03-17" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.424428, + 48.934799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.424428, + 48.934799 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.579557, + 48.91443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-08-30" + } + }, { "type": "Feature", "geometry": { @@ -7772,8 +7820,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.424428, - 48.934799 + 2.484809, + 48.953583 ] }, "properties": { @@ -7783,36 +7831,12 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:type2": "yes", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.424428, - 48.934799 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" + "start_date": "2023-01-23" } }, { @@ -7863,30 +7887,6 @@ "start_date": "2022-03-10" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.48856985, - 48.94913362 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-03-10" - } - }, { "type": "Feature", "geometry": { @@ -7911,6 +7911,30 @@ "start_date": "2021-10-14" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.387797, + 48.901705 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-02-02" + } + }, { "type": "Feature", "geometry": { @@ -8372,8 +8396,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.387797, - 48.901705 + 2.49520158, + 48.93015608 ] }, "properties": { @@ -8388,7 +8412,7 @@ "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2023-02-02" + "start_date": "2021-10-14" } }, { @@ -8487,6 +8511,30 @@ "start_date": "2022-03-10" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.48856985, + 48.94913362 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-03-10" + } + }, { "type": "Feature", "geometry": { @@ -8992,30 +9040,6 @@ "start_date": "2021-10-14" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.49520158, - 48.93015608 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-14" - } - }, { "type": "Feature", "geometry": { @@ -9045,8 +9069,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.579557, - 48.91443 + 2.416538, + 48.954492 ] }, "properties": { @@ -9056,37 +9080,12 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-08-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.452196, - 48.868409 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2022-12-08" + "start_date": "2022-02-23" } }, { @@ -9183,510 +9182,6 @@ "opening_hours": "24/7" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344242, - 48.955912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344242, - 48.955912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344242, - 48.955912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344242, - 48.955912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344242, - 48.955912 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3438, - 48.960564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3438, - 48.960564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3438, - 48.960564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3438, - 48.960564 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539899, - 48.956136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539899, - 48.956136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539899, - 48.956136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539899, - 48.956136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539899, - 48.956136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.562364, - 48.95325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.562364, - 48.95325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.562364, - 48.95325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.562364, - 48.95325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.562364, - 48.95325 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.534704, - 48.963427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.534704, - 48.963427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, { "type": "Feature", "geometry": { @@ -9710,6 +9205,510 @@ "opening_hours": "24/7" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344242, + 48.955912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344242, + 48.955912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344242, + 48.955912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344242, + 48.955912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344242, + 48.955912 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3438, + 48.960564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3438, + 48.960564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3438, + 48.960564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3438, + 48.960564 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.534704, + 48.963427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539899, + 48.956136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539899, + 48.956136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539899, + 48.956136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539899, + 48.956136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539899, + 48.956136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.562364, + 48.95325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.562364, + 48.95325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.562364, + 48.95325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.562364, + 48.95325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.562364, + 48.95325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.534704, + 48.963427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, { "type": "Feature", "geometry": { @@ -9809,8 +9808,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.534704, - 48.963427 + 2.33154888, + 48.90712198 ] }, "properties": { @@ -9825,127 +9824,7 @@ "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535163, - 48.934277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535163, - 48.934277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535163, - 48.934277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535163, - 48.934277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535163, - 48.934277 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-09" + "start_date": "2021-11-19" } }, { @@ -9964,7 +9843,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:typee": "yes", + "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -9972,6 +9851,126 @@ "start_date": "2021-11-02" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535163, + 48.934277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535163, + 48.934277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535163, + 48.934277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535163, + 48.934277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535163, + 48.934277 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-09" + } + }, { "type": "Feature", "geometry": { @@ -9988,7 +9987,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:type2": "yes", + "socket:typee": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -10140,6 +10139,30 @@ "start_date": "2023-04-07" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.534704, + 48.963427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, { "type": "Feature", "geometry": { @@ -10452,30 +10475,6 @@ "start_date": "2021-11-09" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.511343, - 48.88911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-07" - } - }, { "type": "Feature", "geometry": { @@ -10500,6 +10499,54 @@ "start_date": "2022-12-09" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528189, + 48.939106 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-12-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.511343, + 48.88911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-07" + } + }, { "type": "Feature", "geometry": { @@ -11028,102 +11075,6 @@ "start_date": "2022-12-09" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528189, - 48.939106 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-12-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33154888, - 48.90712198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33154888, - 48.90712198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33154888, - 48.90712198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, { "type": "Feature", "geometry": { @@ -11148,6 +11099,54 @@ "start_date": "2022-02-23" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33154888, + 48.90712198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33154888, + 48.90712198 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-11-19" + } + }, { "type": "Feature", "geometry": { @@ -11657,80 +11656,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.431765, - 48.85407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431765, - 48.85407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431765, - 48.85407 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.431765, - 48.85407 + 2.452196, + 48.868409 ] }, "properties": { @@ -11746,6 +11673,78 @@ "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", + "start_date": "2022-12-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431765, + 48.85407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431765, + 48.85407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431765, + 48.85407 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", "start_date": "2022-04-14" } }, @@ -12404,8 +12403,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.431605, - 48.85819 + 2.431765, + 48.85407 ] }, "properties": { @@ -12415,6 +12414,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -13031,8 +13031,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.416538, - 48.954492 + 2.33154888, + 48.90712198 ] }, "properties": { @@ -13042,12 +13042,13 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2022-02-23" + "start_date": "2021-11-19" } }, { @@ -13170,6 +13171,30 @@ "start_date": "2022-04-14" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.431605, + 48.85819 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-14" + } + }, { "type": "Feature", "geometry": { @@ -13339,30 +13364,6 @@ "start_date": "2022-04-08" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.443715, - 48.86173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, { "type": "Feature", "geometry": { @@ -13723,6 +13724,30 @@ "start_date": "2021-12-23" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.443715, + 48.86173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-08" + } + }, { "type": "Feature", "geometry": { @@ -13748,31 +13773,6 @@ "start_date": "2021-10-27" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33154888, - 48.90712198 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, { "type": "Feature", "geometry": { @@ -14085,6 +14085,409 @@ "start_date": "2023-03-10" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364529, + 48.907347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.364529, + 48.907347 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352423, + 48.917798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352423, + 48.917798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352423, + 48.917798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352423, + 48.917798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352423, + 48.917798 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-01-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383218, + 48.942317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383218, + 48.942317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383218, + 48.942317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383218, + 48.942317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32102156, + 48.90586201 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, { "type": "Feature", "geometry": { @@ -14109,386 +14512,6 @@ "start_date": "2021-10-27" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364529, - 48.907347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.364529, - 48.907347 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352423, - 48.917798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352423, - 48.917798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352423, - 48.917798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352423, - 48.917798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352423, - 48.917798 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-01-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4324466, - 48.8944378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4324466, - 48.8944378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4324466, - 48.8944378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4324466, - 48.8944378 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383218, - 48.942317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383218, - 48.942317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383218, - 48.942317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383218, - 48.942317 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32102156, - 48.90586201 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, { "type": "Feature", "geometry": { @@ -14994,6 +15017,29 @@ "start_date": "2022-09-16" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, { "type": "Feature", "geometry": { @@ -15010,7 +15056,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:typee": "yes", + "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -15046,8 +15092,33 @@ "geometry": { "type": "Point", "coordinates": [ - 2.4324466, - 48.8944378 + 2.51108902, + 48.87290298 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529547, + 48.856893 ] }, "properties": { @@ -15061,7 +15132,8 @@ "fee": "false", "authentication:none": "true", "reservation": "yes", - "opening_hours": "24/7" + "opening_hours": "24/7", + "start_date": "2021-10-06" } }, { @@ -15069,8 +15141,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.4324466, - 48.8944378 + 2.529547, + 48.856893 ] }, "properties": { @@ -15084,7 +15156,248 @@ "fee": "false", "authentication:none": "true", "reservation": "yes", - "opening_hours": "24/7" + "opening_hours": "24/7", + "start_date": "2021-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529547, + 48.856893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529547, + 48.856893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529547, + 48.856893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529547, + 48.856893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529547, + 48.856893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-10-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51108902, + 48.87290298 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51108902, + 48.87290298 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51108902, + 48.87290298 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51108902, + 48.87290298 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.51480745, + 48.85208486 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-04-08" } }, { @@ -15111,319 +15424,6 @@ "start_date": "2022-02-21" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529547, - 48.856893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529547, - 48.856893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529547, - 48.856893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529547, - 48.856893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529547, - 48.856893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529547, - 48.856893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51108902, - 48.87290298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51108902, - 48.87290298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51108902, - 48.87290298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51108902, - 48.87290298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51108902, - 48.87290298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51108902, - 48.87290298 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-12-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.51480745, - 48.85208486 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-04-08" - } - }, { "type": "Feature", "geometry": { @@ -15616,6 +15616,29 @@ "start_date": "2021-10-27" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, { "type": "Feature", "geometry": { @@ -15664,30 +15687,6 @@ "start_date": "2021-10-27" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529547, - 48.856893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-10-06" - } - }, { "type": "Feature", "geometry": { @@ -15717,8 +15716,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.4324466, - 48.8944378 + 2.51108902, + 48.87290298 ] }, "properties": { @@ -15732,7 +15731,8 @@ "fee": "false", "authentication:none": "true", "reservation": "yes", - "opening_hours": "24/7" + "opening_hours": "24/7", + "start_date": "2021-12-22" } }, { @@ -15764,8 +15764,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.4324466, - 48.8944378 + 2.361983, + 48.963039 ] }, "properties": { @@ -15775,11 +15775,12 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:type2": "yes", + "socket:typee": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", - "opening_hours": "24/7" + "opening_hours": "24/7", + "start_date": "2022-10-27" } }, { @@ -15829,6 +15830,30 @@ "start_date": "2022-12-08" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.520487, + 48.854488 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-21" + } + }, { "type": "Feature", "geometry": { @@ -15918,7 +15943,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:typee": "yes", + "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -16003,29 +16028,6 @@ 48.964743 ] }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361983, - 48.963039 - ] - }, "properties": { "amenity": "charging_station", "operator": "SPIE CITYNETWORKS", @@ -16037,128 +16039,7 @@ "fee": "false", "authentication:none": "true", "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361983, - 48.963039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361983, - 48.963039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361983, - 48.963039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361983, - 48.963039 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-10-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35897, - 48.963355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-31" + "opening_hours": "24/7" } }, { @@ -16201,55 +16082,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35897, - 48.963355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-05-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35897, - 48.963355 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2_combo": "yes", + "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -16286,8 +16119,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.520487, - 48.854488 + 2.35897, + 48.963355 ] }, "properties": { @@ -16302,7 +16135,174 @@ "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2022-02-21" + "start_date": "2023-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35897, + 48.963355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35897, + 48.963355 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-05-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4324466, + 48.8944378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361983, + 48.963039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361983, + 48.963039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361983, + 48.963039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361983, + 48.963039 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-10-27" } }, { @@ -16463,52 +16463,6 @@ "start_date": "2022-03-14" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539401, - 48.84893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828294", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.539401, - 48.84893 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "828294", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, { "type": "Feature", "geometry": { @@ -16615,7 +16569,6 @@ "email": "technique.borneco@gmail.com", "network": "BornEco", "ref": "588491", - "socket:type2": "yes", "fee": "False", "authentication:none": "False", "reservation": "no", @@ -16638,6 +16591,7 @@ "email": "technique.borneco@gmail.com", "network": "BornEco", "ref": "588491", + "socket:type2": "yes", "fee": "False", "authentication:none": "False", "reservation": "no", @@ -16807,6 +16761,52 @@ "socket:type2_cable": "False" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539401, + 48.84893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828294", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.539401, + 48.84893 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "828294", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, { "type": "Feature", "geometry": { @@ -16846,6 +16846,7 @@ "email": "exploitation@waat.fr", "network": "WAAT", "ref": "538361", + "socket:typee": "yes", "socket:type2": "yes", "fee": "False", "authentication:none": "True", @@ -16869,7 +16870,98 @@ "email": "exploitation@waat.fr", "network": "WAAT", "ref": "538361", - "socket:typee": "yes", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "511325", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "511325", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "511325", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.361568, + 48.915856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "511325", "socket:type2": "yes", "fee": "False", "authentication:none": "True", @@ -16970,98 +17062,6 @@ "opening_hours": "24/7", "socket:type2_cable": "False" } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511325", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511325", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511325", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.361568, - 48.915856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "511325", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } } ] } \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_94.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_94.json index c7e17371..e7224622 100644 --- a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_94.json +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_94.json @@ -190,20 +190,1412 @@ "geometry": { "type": "Point", "coordinates": [ - 2.425486, - 48.78011 + 2.456492, + 48.808336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*181*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.456492, + 48.808336 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*181*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326942, + 48.762217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*173*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326942, + 48.762217 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*173*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.427408, + 48.802789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*59*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.427408, + 48.802789 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*59*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.542078, + 48.701192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*411*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.542078, + 48.701192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*411*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4336, + 48.80911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*415*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4336, + 48.80911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*415*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.441778, + 48.804958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*151*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.441778, + 48.804958 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*151*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53094, + 48.7965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*114*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53094, + 48.7965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*114*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.532549, + 48.801016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*93*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.532549, + 48.801016 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*93*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.545659, + 48.799648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*94*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.545659, + 48.799648 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*94*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.531936, + 48.798856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*95*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.531936, + 48.798856 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*95*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37428, + 48.817419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*209*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3851, + 48.81043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*206*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3851, + 48.81043 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*206*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37586, + 48.807196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*207*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37586, + 48.807196 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*207*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389021, + 48.812972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*208*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.389021, + 48.812972 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*208*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.37428, + 48.817419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*209*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.542244, + 48.729206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*214*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.542244, + 48.729206 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*214*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379583, + 48.816769 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*239*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.379583, + 48.816769 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*239*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535132, + 48.799087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*220*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535132, + 48.799087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*220*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535132, + 48.799087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*220*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535132, + 48.799087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*220*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.535132, + 48.799087 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*220*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513673, + 48.748812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*170*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.513673, + 48.748812 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*170*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432908, + 48.797861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*162*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432908, + 48.797861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*162*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322484, + 48.755884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*190*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322484, + 48.755884 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*190*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35707, + 48.81287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35707, + 48.81287 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*25*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-08-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371545, + 48.812103 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*267*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.371545, + 48.812103 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*267*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399729, + 48.814589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*269*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.399729, + 48.814589 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*269*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.330149, + 48.760628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*312*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.330149, + 48.760628 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*312*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.495323, + 48.77495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*227*2*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.495323, + 48.77495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*227*2*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.495323, + 48.77495 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*227*1*_*_", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.545929, + 48.793333 ] }, "properties": { "amenity": "charging_station", "email": "info@chargepoint.com", - "network": "CGED ALFORTVILLE", - "ref": "FRCPIE6571185", + "network": "CGED CHENNEVIÈRES", + "ref": "FRCPIE6608845", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "opening_hours": "24/7", "start_date": "2022-10-12", "socket:type2_cable": "false" } @@ -213,20 +1605,20 @@ "geometry": { "type": "Point", "coordinates": [ - 2.425486, - 48.78011 + 2.545929, + 48.793333 ] }, "properties": { "amenity": "charging_station", "email": "info@chargepoint.com", - "network": "CGED ALFORTVILLE", - "ref": "FRCPIE6571185", + "network": "CGED CHENNEVIÈRES", + "ref": "FRCPIE6608845", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "opening_hours": "24/7", "start_date": "2022-10-12", "socket:type2_cable": "false" } @@ -236,15 +1628,15 @@ "geometry": { "type": "Point", "coordinates": [ - 2.42548, - 48.817955 + 2.456267, + 48.814144 ] }, "properties": { "amenity": "charging_station", "email": "info@chargepoint.com", - "network": "SAINT-MAURICE BORNE 2", - "ref": "FRCPIE6658765", + "network": "SAINT-MAURICE ESPACES VERTS", + "ref": "FRCPIE6573995", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -282,15 +1674,15 @@ "geometry": { "type": "Point", "coordinates": [ - 2.456267, - 48.814144 + 2.42548, + 48.817955 ] }, "properties": { "amenity": "charging_station", "email": "info@chargepoint.com", - "network": "SAINT-MAURICE ESPACES VERTS", - "ref": "FRCPIE6573995", + "network": "SAINT-MAURICE BORNE 2", + "ref": "FRCPIE6658765", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -305,43 +1697,20 @@ "geometry": { "type": "Point", "coordinates": [ - 2.545929, - 48.793333 + 2.425486, + 48.78011 ] }, "properties": { "amenity": "charging_station", "email": "info@chargepoint.com", - "network": "CGED CHENNEVIÈRES", - "ref": "FRCPIE6608845", + "network": "CGED ALFORTVILLE", + "ref": "FRCPIE6571185", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.545929, - 48.793333 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CGED CHENNEVIÈRES", - "ref": "FRCPIE6608845", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", "start_date": "2022-10-12", "socket:type2_cable": "false" } @@ -544,1546 +1913,21 @@ "geometry": { "type": "Point", "coordinates": [ - 2.35707, - 48.81287 + 2.425486, + 48.78011 ] }, "properties": { "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*25*1*_*_", - "socket:typee": "yes", + "email": "info@chargepoint.com", + "network": "CGED ALFORTVILLE", + "ref": "FRCPIE6571185", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35707, - 48.81287 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*25*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-08-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4336, - 48.80911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*415*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.427408, - 48.802789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.427408, - 48.802789 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*59*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4336, - 48.80911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*415*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371545, - 48.812103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*267*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.371545, - 48.812103 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*267*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399729, - 48.814589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*269*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.399729, - 48.814589 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*269*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.330149, - 48.760628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*312*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.330149, - 48.760628 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*312*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379583, - 48.816769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*239*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.379583, - 48.816769 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*239*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37428, - 48.817419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*209*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37428, - 48.817419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*209*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389021, - 48.812972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*208*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.389021, - 48.812972 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*208*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37586, - 48.807196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*207*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.37586, - 48.807196 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*207*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3851, - 48.81043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*206*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3851, - 48.81043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*206*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535132, - 48.799087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*220*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535132, - 48.799087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*220*3*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535132, - 48.799087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*220*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535132, - 48.799087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*220*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.535132, - 48.799087 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*220*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.542244, - 48.729206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*214*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.542244, - 48.729206 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*214*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.542078, - 48.701192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*411*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.542078, - 48.701192 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*411*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513673, - 48.748812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*170*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.513673, - 48.748812 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*170*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.456492, - 48.808336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*181*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326942, - 48.762217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*173*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326942, - 48.762217 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*173*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432908, - 48.797861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*162*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432908, - 48.797861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*162*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.456492, - 48.808336 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*181*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322484, - 48.755884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*190*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322484, - 48.755884 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*190*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.531936, - 48.798856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.531936, - 48.798856 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*95*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.545659, - 48.799648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.532549, - 48.801016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.532549, - 48.801016 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*93*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.545659, - 48.799648 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*94*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.441778, - 48.804958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*151*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.441778, - 48.804958 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*151*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53094, - 48.7965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*114*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53094, - 48.7965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*114*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.495323, - 48.77495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*227*2*_*_", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.495323, - 48.77495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*227*1*_*_", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.495323, - 48.77495 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*227*2*_*_", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-11-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477368, - 48.764557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFHQDF7H5S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477368, - 48.764557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFHQDF7H5S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477368, - 48.764557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFHQDF7H5S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477368, - 48.764557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFHQDF7H5S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477368, - 48.764557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFHQDF7H5S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.477368, - 48.764557 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VFHQDF7H5S", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -2141,108 +1985,6 @@ "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.380155, - 48.819619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWZYVJR2EY", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.380155, - 48.819619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWZYVJR2EY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.380155, - 48.819619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWZYVJR2EY", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.380155, - 48.819619 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WWZYVJR2EY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -2293,6 +2035,58 @@ "socket:type2_cable": "false" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.573854, + 48.714993 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BN72S1V6XC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-05", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4841, + 48.757675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ID7KOD7DHH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, { "type": "Feature", "geometry": { @@ -2324,8 +2118,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.573854, - 48.714993 + 2.447902, + 48.761441 ] }, "properties": { @@ -2334,84 +2128,7 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "BN72S1V6XC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-11", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573854, - 48.714993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BN72S1V6XC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573854, - 48.714993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BN72S1V6XC", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.573854, - 48.714993 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BN72S1V6XC", + "ref": "OEWTMI5SDG", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -2500,134 +2217,6 @@ "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53242, - 48.816241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRVUMOVGWL", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53242, - 48.816241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRVUMOVGWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53242, - 48.816241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRVUMOVGWL", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53242, - 48.816241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRVUMOVGWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.53242, - 48.816241 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VRVUMOVGWL", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -2650,7 +2239,7 @@ "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-10-05", + "start_date": "2022-10-11", "socket:type2_cable": "false" } }, @@ -2685,8 +2274,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.425522, - 48.757105 + 2.573854, + 48.714993 ] }, "properties": { @@ -2695,7 +2284,7 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "XEHIISJMZ1", + "ref": "BN72S1V6XC", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -2731,32 +2320,6 @@ "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.447902, - 48.761441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OEWTMI5SDG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -2788,8 +2351,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.4841, - 48.757675 + 2.573854, + 48.714993 ] }, "properties": { @@ -2798,7 +2361,7 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "ID7KOD7DHH", + "ref": "BN72S1V6XC", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -2814,8 +2377,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.425522, - 48.757105 + 2.573854, + 48.714993 ] }, "properties": { @@ -2824,7 +2387,82 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "XEHIISJMZ1", + "ref": "BN72S1V6XC", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53242, + 48.816241 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRVUMOVGWL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53242, + 48.816241 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRVUMOVGWL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.53242, + 48.816241 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VRVUMOVGWL", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -2866,8 +2504,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.351334, - 48.74368 + 2.53242, + 48.816241 ] }, "properties": { @@ -2876,13 +2514,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "LYZYQRLMOW", + "ref": "VRVUMOVGWL", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-05-13", + "start_date": "2022-06-27", "socket:type2_cable": "false" } }, @@ -2891,8 +2530,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.351334, - 48.74368 + 2.53242, + 48.816241 ] }, "properties": { @@ -2901,13 +2540,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "LYZYQRLMOW", + "ref": "VRVUMOVGWL", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-05-13", + "start_date": "2022-06-27", "socket:type2_cable": "false" } }, @@ -2916,8 +2556,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.33105722, - 48.75868906 + 2.425522, + 48.757105 ] }, "properties": { @@ -2926,14 +2566,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "XQUMZ7QBK6", + "ref": "XEHIISJMZ1", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", - "start_date": "2022-07-11", + "opening_hours": "24/7", + "start_date": "2022-06-27", "socket:type2_cable": "false" } }, @@ -2942,8 +2582,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.33105722, - 48.75868906 + 2.425522, + 48.757105 ] }, "properties": { @@ -2952,14 +2592,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "XQUMZ7QBK6", + "ref": "XEHIISJMZ1", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", - "start_date": "2022-07-11", + "opening_hours": "24/7", + "start_date": "2022-06-27", "socket:type2_cable": "false" } }, @@ -2968,8 +2608,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.33105722, - 48.75868906 + 2.35446974, + 48.74618634 ] }, "properties": { @@ -2978,14 +2618,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "XQUMZ7QBK6", + "ref": "NWJ7TJ2XQR", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", - "start_date": "2022-07-11", + "opening_hours": "24/7", + "start_date": "2020-09-17", "socket:type2_cable": "false" } }, @@ -2994,8 +2634,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.33105722, - 48.75868906 + 2.35306, + 48.7436 ] }, "properties": { @@ -3004,14 +2644,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "XQUMZ7QBK6", + "ref": "AKXCVB", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", - "start_date": "2022-10-13", + "opening_hours": "24/7", + "start_date": "2022-07-19", "socket:type2_cable": "false" } }, @@ -3020,8 +2660,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.33105722, - 48.75868906 + 2.35446974, + 48.74618634 ] }, "properties": { @@ -3030,14 +2670,870 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "XQUMZ7QBK6", + "ref": "NWJ7TJ2XQR", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", - "start_date": "2022-10-13", + "opening_hours": "24/7", + "start_date": "2020-09-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35377, + 48.7481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FBYYXG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35306, + 48.7436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AKXCVB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35377, + 48.7481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FBYYXG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35446974, + 48.74618634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NWJ7TJ2XQR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35377, + 48.7481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FBYYXG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3543, + 48.7458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRXQZC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35446974, + 48.74618634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NWJ7TJ2XQR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35446974, + 48.74618634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NWJ7TJ2XQR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35005, + 48.7419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WMESPU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35927, + 48.7443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTEAKY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3543, + 48.7458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRXQZC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35446974, + 48.74618634 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NWJ7TJ2XQR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-09-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3543, + 48.7458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRXQZC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35582, + 48.7465 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TXYSYT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35377, + 48.7481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FBYYXG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35005, + 48.7419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WMESPU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35377, + 48.7481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FBYYXG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35927, + 48.7443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTEAKY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35005, + 48.7419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WMESPU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.3543, + 48.7458 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SRXQZC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35582, + 48.7465 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TXYSYT", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35306, + 48.7436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AKXCVB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35306, + 48.7436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AKXCVB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35005, + 48.7419 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WMESPU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35306, + 48.7436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AKXCVB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35377, + 48.7481 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FBYYXG", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-02-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.35306, + 48.7436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AKXCVB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.380155, + 48.819619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WWZYVJR2EY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.380155, + 48.819619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WWZYVJR2EY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.380155, + 48.819619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WWZYVJR2EY", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.380155, + 48.819619 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WWZYVJR2EY", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36010778, + 48.75808079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XG3TDDGOMM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36010778, + 48.75808079 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XG3TDDGOMM", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-13", "socket:type2_cable": "false" } }, @@ -3066,6 +3562,32 @@ "socket:type2_cable": "false" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33105722, + 48.75868906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "XQUMZ7QBK6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", + "start_date": "2022-10-13", + "socket:type2_cable": "false" + } + }, { "type": "Feature", "geometry": { @@ -3097,8 +3619,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.36010778, - 48.75808079 + 2.33105722, + 48.75868906 ] }, "properties": { @@ -3107,14 +3629,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "XG3TDDGOMM", + "ref": "XQUMZ7QBK6", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13", + "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", + "start_date": "2022-07-11", "socket:type2_cable": "false" } }, @@ -3123,8 +3645,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.36010778, - 48.75808079 + 2.33105722, + 48.75868906 ] }, "properties": { @@ -3133,14 +3655,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "XG3TDDGOMM", + "ref": "XQUMZ7QBK6", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-13", + "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", + "start_date": "2022-07-11", "socket:type2_cable": "false" } }, @@ -3149,8 +3671,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.41586882, - 48.79479325 + 2.33105722, + 48.75868906 ] }, "properties": { @@ -3159,14 +3681,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "NCNAZHKRLA", + "ref": "XQUMZ7QBK6", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02", + "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", + "start_date": "2022-10-13", "socket:type2_cable": "false" } }, @@ -3175,8 +3697,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.41586882, - 48.79479325 + 2.33105722, + 48.75868906 ] }, "properties": { @@ -3185,14 +3707,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "NCNAZHKRLA", + "ref": "XQUMZ7QBK6", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-02", + "opening_hours": "Mo-Fr 08:30-19:00,Sa 09:00-18:00", + "start_date": "2022-07-11", "socket:type2_cable": "false" } }, @@ -3201,8 +3723,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.41586882, - 48.79479325 + 2.488827, + 48.765642 ] }, "properties": { @@ -3211,14 +3733,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "NCNAZHKRLA", + "ref": "NVFD81PSSR", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-02", + "start_date": "2022-03-07", "socket:type2_cable": "false" } }, @@ -3227,8 +3749,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.41586882, - 48.79479325 + 2.488827, + 48.765642 ] }, "properties": { @@ -3237,14 +3759,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "NCNAZHKRLA", + "ref": "NVFD81PSSR", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-02", + "start_date": "2022-03-07", "socket:type2_cable": "false" } }, @@ -3253,8 +3775,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.41586882, - 48.79479325 + 2.488827, + 48.765642 ] }, "properties": { @@ -3263,14 +3785,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "NCNAZHKRLA", + "ref": "NVFD81PSSR", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-02", + "start_date": "2022-03-07", "socket:type2_cable": "false" } }, @@ -3279,8 +3801,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.41586882, - 48.79479325 + 2.488827, + 48.765642 ] }, "properties": { @@ -3289,14 +3811,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "NCNAZHKRLA", + "ref": "NVFD81PSSR", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-02", + "start_date": "2022-03-07", "socket:type2_cable": "false" } }, @@ -3305,8 +3827,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.41586882, - 48.79479325 + 2.488827, + 48.765642 ] }, "properties": { @@ -3315,14 +3837,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "NCNAZHKRLA", + "ref": "NVFD81PSSR", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-02", + "start_date": "2022-03-07", "socket:type2_cable": "false" } }, @@ -3331,8 +3853,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.41586882, - 48.79479325 + 2.488827, + 48.765642 ] }, "properties": { @@ -3341,14 +3863,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "NCNAZHKRLA", + "ref": "NVFD81PSSR", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-02", + "start_date": "2022-03-07", "socket:type2_cable": "false" } }, @@ -3357,8 +3879,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.41586882, - 48.79479325 + 2.488827, + 48.765642 ] }, "properties": { @@ -3367,14 +3889,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "NCNAZHKRLA", + "ref": "NVFD81PSSR", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-02", + "start_date": "2022-03-07", "socket:type2_cable": "false" } }, @@ -3383,8 +3905,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.41586882, - 48.79479325 + 2.488827, + 48.765642 ] }, "properties": { @@ -3393,14 +3915,632 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "NCNAZHKRLA", + "ref": "NVFD81PSSR", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-02", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NVFD81PSSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.488827, + 48.765642 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NVFD81PSSR", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62805264, + 50.52631526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AYO1HIHEPX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62805264, + 50.52631526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AYO1HIHEPX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62805264, + 50.52631526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AYO1HIHEPX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.62805264, + 50.52631526 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AYO1HIHEPX", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQPVKJX8F5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQPVKJX8F5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQPVKJX8F5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQPVKJX8F5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQPVKJX8F5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQPVKJX8F5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQPVKJX8F5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQPVKJX8F5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQPVKJX8F5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQPVKJX8F5", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQPVKJX8F5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.40632298, + 48.7419096 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CQPVKJX8F5", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFHQDF7H5S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFHQDF7H5S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFHQDF7H5S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFHQDF7H5S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFHQDF7H5S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.477368, + 48.764557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VFHQDF7H5S", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", "socket:type2_cable": "false" } }, @@ -3460,8 +4600,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.488827, - 48.765642 + 2.446859, + 48.738614 ] }, "properties": { @@ -3470,1672 +4610,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", + "ref": "C7QSS7UZXI", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.488827, - 48.765642 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NVFD81PSSR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62805264, - 50.52631526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYO1HIHEPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62805264, - 50.52631526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYO1HIHEPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62805264, - 50.52631526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYO1HIHEPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.62805264, - 50.52631526 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AYO1HIHEPX", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-21", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.40632298, - 48.7419096 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CQPVKJX8F5", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3543, - 48.7458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRXQZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35005, - 48.7419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMESPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35306, - 48.7436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKXCVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35005, - 48.7419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMESPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35306, - 48.7436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKXCVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35306, - 48.7436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKXCVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35306, - 48.7436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKXCVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35306, - 48.7436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKXCVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35927, - 48.7443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTEAKY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35306, - 48.7436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AKXCVB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35377, - 48.7481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBYYXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3543, - 48.7458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRXQZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35377, - 48.7481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBYYXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35446974, - 48.74618634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWJ7TJ2XQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35377, - 48.7481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBYYXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35446974, - 48.74618634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWJ7TJ2XQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35446974, - 48.74618634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWJ7TJ2XQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35582, - 48.7465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXYSYT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35582, - 48.7465 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TXYSYT", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3543, - 48.7458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRXQZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3543, - 48.7458 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SRXQZC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35377, - 48.7481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBYYXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35927, - 48.7443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTEAKY", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-02-02", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35446974, - 48.74618634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWJ7TJ2XQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35377, - 48.7481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBYYXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35446974, - 48.74618634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWJ7TJ2XQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35446974, - 48.74618634 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "NWJ7TJ2XQR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-09-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35377, - 48.7481 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FBYYXG", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35005, - 48.7419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMESPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.35005, - 48.7419 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WMESPU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-06-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-10-24", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.33047, - 48.7555 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Fresnesceris", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-01-04", + "start_date": "2022-01-24", "socket:type2_cable": "false" } }, @@ -5170,8 +4651,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.446859, - 48.738614 + 2.33047, + 48.7555 ] }, "properties": { @@ -5180,13 +4661,532 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "C7QSS7UZXI", + "ref": "Fresnesceris", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-01-24", + "start_date": "2022-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Fresnesceris", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Fresnesceris", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Fresnesceris", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Fresnesceris", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Fresnesceris", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Fresnesceris", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Fresnesceris", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-04", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.33047, + 48.7555 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Fresnesceris", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-10-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NCNAZHKRLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NCNAZHKRLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NCNAZHKRLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NCNAZHKRLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NCNAZHKRLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NCNAZHKRLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NCNAZHKRLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NCNAZHKRLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NCNAZHKRLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.41586882, + 48.79479325 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "NCNAZHKRLA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.351334, + 48.74368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LYZYQRLMOW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.351334, + 48.74368 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LYZYQRLMOW", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-13", "socket:type2_cable": "false" } }, @@ -5301,6 +5301,7 @@ "owner:ref:FR:SIREN": "309553154", "email": "garage.senia@scache.fr", "network": "GARAGE DE LA SENIA", + "socket:type2": "yes", "socket:type2_combo": "yes", "fee": "false", "authentication:none": "false", @@ -5324,7 +5325,6 @@ "owner:ref:FR:SIREN": "309553154", "email": "garage.senia@scache.fr", "network": "GARAGE DE LA SENIA", - "socket:type2": "yes", "socket:type2_combo": "yes", "fee": "false", "authentication:none": "false", @@ -5333,208 +5333,6 @@ "start_date": "2022-12-22" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:chademo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.376323, - 48.805832 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "TotalEnergies Charging Services", - "owner:ref:FR:SIREN": "844192443", - "email": "supervision-ev.france@totalenergies.com", - "phone": "01 41 35 40 00", - "network": "TotalEnergies Charge Rapide", - "ref": "FR*HPC*PNF072380", - "socket:type2_combo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, { "type": "Feature", "geometry": { @@ -5563,6 +5361,208 @@ "start_date": "2020-11-18" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF072380", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF072380", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF072380", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF072380", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF072380", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF072380", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF072380", + "socket:type2_combo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.376323, + 48.805832 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "TotalEnergies Charging Services", + "owner:ref:FR:SIREN": "844192443", + "email": "supervision-ev.france@totalenergies.com", + "phone": "01 41 35 40 00", + "network": "TotalEnergies Charge Rapide", + "ref": "FR*HPC*PNF072380", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-15" + } + }, { "type": "Feature", "geometry": { @@ -5703,6 +5703,123 @@ "opening_hours": "24/7" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432962, + 48.725386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432962, + 48.725386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.432962, + 48.725386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529157, + 48.832844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.529157, + 48.832844 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2023-03-17" + } + }, { "type": "Feature", "geometry": { @@ -5727,99 +5844,6 @@ "start_date": "2021-09-29" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432962, - 48.725386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432962, - 48.725386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.432962, - 48.725386 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529157, - 48.832844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, { "type": "Feature", "geometry": { @@ -6339,30 +6363,6 @@ "start_date": "2023-03-17" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.529157, - 48.832844 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2023-03-17" - } - }, { "type": "Feature", "geometry": { @@ -7753,6 +7753,29 @@ "start_date": "2022-03-24" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4753937, + 48.8037405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, { "type": "Feature", "geometry": { @@ -7769,7 +7792,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:typee": "yes", + "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -8034,30 +8057,6 @@ "start_date": "2022-02-09" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.574213, - 48.789679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2022-02-09" - } - }, { "type": "Feature", "geometry": { @@ -8338,7 +8337,7 @@ "email": "assistance-commerciale@metropolis-recharge.fr", "phone": "0 970 830 213", "network": "METROPOLIS", - "socket:type2": "yes", + "socket:typee": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", @@ -8751,220 +8750,6 @@ "start_date": "2022-01-12" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42205713, - 48.82215245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42205713, - 48.82215245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42205713, - 48.82215245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42205713, - 48.82215245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42205713, - 48.82215245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.42205713, - 48.82215245 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7", - "start_date": "2021-07-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4753937, - 48.8037405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:typee": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4753937, - 48.8037405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4753937, - 48.8037405 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "SPIE CITYNETWORKS", - "owner:ref:FR:SIREN": "885354860", - "email": "assistance-commerciale@metropolis-recharge.fr", - "phone": "0 970 830 213", - "network": "METROPOLIS", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "24/7" - } - }, { "type": "Feature", "geometry": { @@ -8994,24 +8779,23 @@ "geometry": { "type": "Point", "coordinates": [ - 2.475489, - 48.824539 + 2.42205713, + 48.82215245 ] }, "properties": { "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*VERDUN", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", + "fee": "false", + "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-02" } }, { @@ -9019,24 +8803,23 @@ "geometry": { "type": "Point", "coordinates": [ - 2.475489, - 48.824539 + 2.42205713, + 48.82215245 ] }, "properties": { "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*VERDUN", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", + "fee": "false", + "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-02" } }, { @@ -9044,24 +8827,23 @@ "geometry": { "type": "Point", "coordinates": [ - 2.475489, - 48.824539 + 2.42205713, + 48.82215245 ] }, "properties": { "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*VERDUN", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", + "fee": "false", + "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-02" } }, { @@ -9069,24 +8851,23 @@ "geometry": { "type": "Point", "coordinates": [ - 2.475489, - 48.824539 + 2.42205713, + 48.82215245 ] }, "properties": { "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*VERDUN", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", + "fee": "false", + "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-02" } }, { @@ -9094,24 +8875,23 @@ "geometry": { "type": "Point", "coordinates": [ - 2.475489, - 48.824539 + 2.42205713, + 48.82215245 ] }, "properties": { "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*VERDUN", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", + "fee": "false", + "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-02" } }, { @@ -9119,24 +8899,94 @@ "geometry": { "type": "Point", "coordinates": [ - 2.475489, - 48.824539 + 2.42205713, + 48.82215245 ] }, "properties": { "amenity": "charging_station", - "operator": "ELECTRIC 55 CHARGING", - "owner:ref:FR:SIREN": "832489801", - "email": "contact@e55c.com", - "phone": "33975891501", - "network": "ELECTRIC 55 CHARGING", - "ref": "FR*55C*P94340*JVL*VERDUN", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", "socket:type2": "yes", - "fee": "FALSE", - "authentication:none": "TRUE", + "fee": "false", + "authentication:none": "true", "reservation": "yes", "opening_hours": "24/7", - "start_date": "2021-06-07" + "start_date": "2021-07-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4753937, + 48.8037405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.4753937, + 48.8037405 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.574213, + 48.789679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "SPIE CITYNETWORKS", + "owner:ref:FR:SIREN": "885354860", + "email": "assistance-commerciale@metropolis-recharge.fr", + "phone": "0 970 830 213", + "network": "METROPOLIS", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2022-02-09" } }, { @@ -9289,6 +9139,156 @@ "start_date": "2021-06-07" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P94340*JVL*VERDUN", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P94340*JVL*VERDUN", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P94340*JVL*VERDUN", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P94340*JVL*VERDUN", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P94340*JVL*VERDUN", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.475489, + 48.824539 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ELECTRIC 55 CHARGING", + "owner:ref:FR:SIREN": "832489801", + "email": "contact@e55c.com", + "phone": "33975891501", + "network": "ELECTRIC 55 CHARGING", + "ref": "FR*55C*P94340*JVL*VERDUN", + "socket:type2": "yes", + "fee": "FALSE", + "authentication:none": "TRUE", + "reservation": "yes", + "opening_hours": "24/7", + "start_date": "2021-06-07" + } + }, { "type": "Feature", "geometry": { @@ -9469,19 +9469,88 @@ "geometry": { "type": "Point", "coordinates": [ - 2.390745, - 50.629965 + 2.498655, + 48.761611 ] }, "properties": { "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA4", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "696500", - "socket:typee": "yes", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "882354", + "socket:type2": "yes", "fee": "False", - "authentication:none": "True", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.498655, + 48.761611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "882354", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.498655, + 48.761611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "882354", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.498655, + 48.761611 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Borneco | FR*BHM", + "email": "technique.borneco@gmail.com", + "network": "BornEco", + "ref": "882354", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", "reservation": "no", "opening_hours": "24/7", "socket:type2_cable": "False" @@ -9510,6 +9579,29 @@ "socket:type2_cable": "False" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.390745, + 50.629965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA4", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "696500", + "socket:typee": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, { "type": "Feature", "geometry": { @@ -9745,8 +9837,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.540527, - 48.798316 + 2.383561, + 48.801029 ] }, "properties": { @@ -9754,7 +9846,7 @@ "operator": "GreenYellow | FR*GYM", "email": "emobility.exploit@greenyellow.fr", "network": "GreenYellow Shift Mobility", - "ref": "840460", + "ref": "815796", "socket:type2": "yes", "fee": "False", "authentication:none": "False", @@ -9768,8 +9860,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.540527, - 48.798316 + 2.383561, + 48.801029 ] }, "properties": { @@ -9777,7 +9869,7 @@ "operator": "GreenYellow | FR*GYM", "email": "emobility.exploit@greenyellow.fr", "network": "GreenYellow Shift Mobility", - "ref": "840460", + "ref": "815796", "socket:type2": "yes", "fee": "False", "authentication:none": "False", @@ -9791,8 +9883,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.540527, - 48.798316 + 2.383561, + 48.801029 ] }, "properties": { @@ -9800,7 +9892,30 @@ "operator": "GreenYellow | FR*GYM", "email": "emobility.exploit@greenyellow.fr", "network": "GreenYellow Shift Mobility", - "ref": "840460", + "ref": "815796", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "False", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383561, + 48.801029 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GreenYellow | FR*GYM", + "email": "emobility.exploit@greenyellow.fr", + "network": "GreenYellow Shift Mobility", + "ref": "815796", "socket:type2": "yes", "fee": "False", "authentication:none": "False", @@ -10182,8 +10297,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.383561, - 48.801029 + 2.540527, + 48.798316 ] }, "properties": { @@ -10191,7 +10306,7 @@ "operator": "GreenYellow | FR*GYM", "email": "emobility.exploit@greenyellow.fr", "network": "GreenYellow Shift Mobility", - "ref": "815796", + "ref": "840460", "socket:type2": "yes", "fee": "False", "authentication:none": "False", @@ -10205,8 +10320,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.383561, - 48.801029 + 2.540527, + 48.798316 ] }, "properties": { @@ -10214,7 +10329,7 @@ "operator": "GreenYellow | FR*GYM", "email": "emobility.exploit@greenyellow.fr", "network": "GreenYellow Shift Mobility", - "ref": "815796", + "ref": "840460", "socket:type2": "yes", "fee": "False", "authentication:none": "False", @@ -10228,8 +10343,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.383561, - 48.801029 + 2.540527, + 48.798316 ] }, "properties": { @@ -10237,30 +10352,7 @@ "operator": "GreenYellow | FR*GYM", "email": "emobility.exploit@greenyellow.fr", "network": "GreenYellow Shift Mobility", - "ref": "815796", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "False", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383561, - 48.801029 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "GreenYellow | FR*GYM", - "email": "emobility.exploit@greenyellow.fr", - "network": "GreenYellow Shift Mobility", - "ref": "815796", + "ref": "840460", "socket:type2": "yes", "fee": "False", "authentication:none": "False", diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_95.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_95.json index ab195057..5be8778d 100644 --- a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_95.json +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_95.json @@ -282,157 +282,102 @@ "geometry": { "type": "Point", "coordinates": [ - 2.552983, - 49.071747 + 2.288179, + 49.003723 ] }, "properties": { "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330991", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330991", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330991", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330991", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330991", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330991", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*174*1*_*_", + "socket:typee": "yes", "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.288179, + 49.003723 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*174*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.308342, + 48.974918 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*51*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.308342, + 48.974918 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*51*1*_*_", "socket:type2_combo": "yes", "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" + "start_date": "2021-05-17" } }, { @@ -440,27 +385,1814 @@ "geometry": { "type": "Point", "coordinates": [ - 2.552983, - 49.071747 + 2.301669, + 48.966448 ] }, "properties": { "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330991", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*39*6*_*_", "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301669, + 48.966448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*39*3*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301669, + 48.966448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*39*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301669, + 48.966448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*39*2*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301669, + 48.966448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*39*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.301669, + 48.966448 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*39*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320821, + 49.067314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320821, + 49.067314 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*61*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307657, + 49.06973 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*62*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.307657, + 49.06973 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*62*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238, + 49.0107 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*392*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2484, + 49.0057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*393*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2484, + 49.0057 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*393*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25216, + 49.0132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*394*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25216, + 49.0132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*394*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24271, + 49.0197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*395*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24271, + 49.0197 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*395*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2424, + 49.0158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*396*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2424, + 49.0158 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*396*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24591, + 49.0186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*391*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1991, + 48.9966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*401*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1991, + 48.9966 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*401*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18857, + 48.9854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*402*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.18857, + 48.9854 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*402*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1977, + 49.007 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*403*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1977, + 49.007 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*403*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20313, + 48.994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*404*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20313, + 48.994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*404*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23283, + 49.0022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*405*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238, + 49.0107 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*392*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24591, + 49.0186 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*391*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2633, + 48.9701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*383*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2126, + 49.0271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*377*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2108, + 49.0173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*378*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2108, + 49.0173 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*378*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2249, + 49.0264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*380*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2249, + 49.0264 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*380*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221, + 49.0254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*381*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.221, + 49.0254 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*381*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2215, + 49.0258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*382*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2215, + 49.0258 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*382*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2633, + 48.9701 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*383*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25721, + 48.9715 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*384*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24848, + 49.0193 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*390*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25721, + 48.9715 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*384*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2661, + 48.9686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*385*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2661, + 48.9686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*385*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24037, + 48.9686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*386*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24037, + 48.9686 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*386*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2562, + 48.9761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*387*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2562, + 48.9761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*387*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2423, + 48.9784 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*388*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2423, + 48.9784 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*388*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2521, + 49.0236 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*389*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2521, + 49.0236 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*389*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.24848, + 49.0193 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*390*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23283, + 49.0022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*405*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23634, + 49.0019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*406*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23634, + 49.0019 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*406*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2444, + 48.9976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*407*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218229, + 49.038771 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*416*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2444, + 48.9976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*407*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22748, + 48.9843 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*408*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22748, + 48.9843 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*408*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218401, + 49.112389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*409*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.218401, + 49.112389 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*409*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216531, + 49.111305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*410*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.216531, + 49.111305 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*410*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23112, + 49.0211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*376*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.339881, + 49.033346 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*122*1*_*_", "socket:type2_combo": "yes", "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" + "start_date": "2021-07-21" } }, { @@ -468,25 +2200,24 @@ "geometry": { "type": "Point", "coordinates": [ - 2.552983, - 49.071747 + 2.339881, + 49.033346 ] }, "properties": { "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*122*1*_*_", + "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" + "start_date": "2021-07-21" } }, { @@ -494,25 +2225,24 @@ "geometry": { "type": "Point", "coordinates": [ - 2.552983, - 49.071747 + 2.212137, + 49.111643 ] }, "properties": { "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*430*1*_*_", + "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" + "start_date": "2023-07-31" } }, { @@ -520,206 +2250,25 @@ "geometry": { "type": "Point", "coordinates": [ - 2.552983, - 49.071747 + 2.212137, + 49.111643 ] }, "properties": { "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.552983, - 49.071747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Est", - "ref": "FRFASE330990", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5528702, - 49.07246803 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "klantenservice@newmotion.com", - "phone": "+(33)-(9)-69366018", - "network": "Aire de Vémars Est", - "ref": "FRSPSESHEL152", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*430*1*_*_", "socket:type2_combo": "yes", "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2019-04-26", - "socket:type2_cable": "false" + "start_date": "2023-07-31" } }, { @@ -727,22 +2276,24 @@ "geometry": { "type": "Point", "coordinates": [ - 2.072355, - 49.049365 + 2.217951, + 49.121776 ] }, "properties": { "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT OSNY", - "ref": "FRCPIE6589265", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*429*1*_*_", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2023-07-25" } }, { @@ -750,22 +2301,51 @@ "geometry": { "type": "Point", "coordinates": [ - 2.072355, - 49.049365 + 2.217951, + 49.121776 ] }, "properties": { "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT OSNY", - "ref": "FRCPIE6589265", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*429*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.207922, + 49.078548 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*425*1*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2023-05-25" } }, { @@ -773,22 +2353,25 @@ "geometry": { "type": "Point", "coordinates": [ - 2.104915, - 49.027416 + 2.207922, + 49.078548 ] }, "properties": { "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ERAGNY", - "ref": "FRCPIE6594145", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*425*1*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2023-05-25" } }, { @@ -796,22 +2379,25 @@ "geometry": { "type": "Point", "coordinates": [ - 2.104915, - 49.027416 + 2.252206, + 49.054005 ] }, "properties": { "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT ERAGNY", - "ref": "FRCPIE6594145", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*424*1*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2022-10-12", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2023-05-25" } }, { @@ -819,22 +2405,25 @@ "geometry": { "type": "Point", "coordinates": [ - 2.39614, - 48.962298 + 2.252206, + 49.054005 ] }, "properties": { "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE GAZZOLA DEPOT GMT", - "ref": "FRCPIE6551715", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*424*1*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo 08:00-16:00,Tu 08:00-16:00,We 08:00-16:00,Th 08:00-16:00,Fr 08:00-16:00", - "start_date": "2022-10-12", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2023-05-25" } }, { @@ -842,22 +2431,25 @@ "geometry": { "type": "Point", "coordinates": [ - 2.39614, - 48.962298 + 2.284516, + 49.115166 ] }, "properties": { "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BORNE GAZZOLA DEPOT GMT", - "ref": "FRCPIE6551715", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*421*1*_*_", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo 08:00-16:00,Tu 08:00-16:00,We 08:00-16:00,Th 08:00-16:00,Fr 08:00-16:00", - "start_date": "2022-10-12", - "socket:type2_cable": "false" + "opening_hours": "24/7", + "start_date": "2023-05-25" } }, { @@ -865,15 +2457,5447 @@ "geometry": { "type": "Point", "coordinates": [ - 2.517406, - 48.990975 + 2.284516, + 49.115166 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*421*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209352, + 49.11376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*420*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209352, + 49.11376 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*420*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.502954, + 49.059232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*419*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36695, + 49.087523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*146*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.36695, + 49.087523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*146*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-07-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306583, + 48.972892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*84*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306583, + 48.972892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*84*2*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306583, + 48.972892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*84*4*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306583, + 48.972892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*84*6*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306583, + 48.972892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*84*5*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.306583, + 48.972892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*84*3*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377945, + 48.99638 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*110*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326929, + 49.027391 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*106*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.326929, + 49.027391 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*106*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336956, + 49.032846 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*107*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.336956, + 49.032846 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*107*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.380766, + 48.97929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*108*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.380766, + 48.97929 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*108*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.377945, + 48.99638 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*110*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-03-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310159, + 48.968482 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*91*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310159, + 48.968482 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*91*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2126, + 49.0271 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*377*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.23112, + 49.0211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*376*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.471163, + 49.002593 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*203*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383546, + 48.980861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*210*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.451673, + 49.049662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*202*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.383546, + 48.980861 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*210*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.370779, + 48.976697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*211*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.370779, + 48.976697 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*211*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287242, + 48.957323 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*215*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.287242, + 48.957323 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*215*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247911, + 48.940484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*216*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.471163, + 49.002593 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*203*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.451673, + 49.049662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*202*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.479328, + 49.009207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*194*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310958, + 49.041152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*195*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.310958, + 49.041152 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*195*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322472, + 49.045307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*196*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.247911, + 48.940484 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*216*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239076, + 48.947107 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*217*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.239076, + 48.947107 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*217*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.257649, + 48.948752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*218*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321968, + 48.999316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*244*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.321968, + 48.999316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*244*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.312299, + 48.973415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*245*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.312299, + 48.973415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*245*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.319999, + 48.988914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*246*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.319999, + 48.988914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*246*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284068, + 48.965992 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*249*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.444934, + 49.050178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*232*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.444934, + 49.050178 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*232*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.257649, + 48.948752 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*218*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-23" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353092, + 49.079916 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*230*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353092, + 49.079916 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*230*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-25" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.479328, + 49.009207 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*194*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.515321, + 49.006211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*156*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.515321, + 49.006211 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*156*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.519465, + 49.001676 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*155*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.519465, + 49.001676 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*155*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.284068, + 48.965992 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*249*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322472, + 49.045307 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*196*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-09-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20896, + 49.0369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*340*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19591, + 49.0134 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*334*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1904, + 48.9613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*335*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1904, + 48.9613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*335*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2001, + 48.9835 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*336*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2001, + 48.9835 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*336*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1996, + 49.0108 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*337*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1996, + 49.0108 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*337*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19769, + 49.0097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*338*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19769, + 49.0097 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*338*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.211656, + 49.038018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*339*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.211656, + 49.038018 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*339*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.20896, + 49.0369 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*340*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2047, + 49.0408 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*341*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1851, + 49.0179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*333*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2047, + 49.0408 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*341*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27736, + 48.9917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*342*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27736, + 48.9917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*342*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27636, + 49.0022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*343*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27636, + 49.0022 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*343*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27736, + 48.9917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*344*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27736, + 48.9917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*344*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27736, + 48.9917 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*344*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27439, + 48.98 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*345*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27439, + 48.98 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*345*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27439, + 48.98 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*345*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26679, + 48.995 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*346*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.19591, + 49.0134 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*334*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1851, + 49.0179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*333*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.340589, + 49.025174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*325*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.460008, + 49.029892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*319*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.340589, + 49.025174 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*325*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338942, + 49.030229 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*326*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.199478, + 48.976976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*332*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.338942, + 49.030229 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*326*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309573, + 48.972443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*327*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.309573, + 48.972443 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*327*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-31" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197618, + 48.958165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*328*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.197618, + 48.958165 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*328*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.205439, + 48.976037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*329*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.205439, + 48.976037 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*329*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209218, + 48.965775 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*330*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.209218, + 48.965775 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*330*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202975, + 48.973692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*331*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.202975, + 48.973692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*331*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.199478, + 48.976976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*332*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26679, + 48.995 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*346*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-17" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28509, + 48.9913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*347*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.28509, + 48.9913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*347*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.176, + 48.9915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*369*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.127156, + 49.004227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*363*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.14247, + 49.0004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*364*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.14247, + 49.0004 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*364*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15787, + 49.0025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*365*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.15787, + 49.0025 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*365*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12663, + 49.0169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*366*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.12663, + 49.0169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*366*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1658, + 48.99 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*367*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1658, + 48.99 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*367*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1449, + 48.998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*368*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1449, + 48.998 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*368*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.176, + 48.9915 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*369*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1658, + 48.9914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*370*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26089, + 48.9913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*349*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1658, + 48.9914 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*370*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181, + 48.9796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*371*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.181, + 48.9796 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*371*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1813, + 48.9621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*372*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1813, + 48.9621 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*372*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17747, + 48.9747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*373*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.17747, + 48.9747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*373*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29046, + 48.9795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*374*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-07" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.127156, + 49.004227 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*363*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206, + 49.0509 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*362*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206, + 49.0509 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*362*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2277, + 48.9842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*361*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26089, + 48.9913 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*349*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26261, + 48.9898 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*350*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26261, + 48.9898 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*350*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25678, + 48.985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*351*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25678, + 48.985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*351*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27183, + 48.9797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*352*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.27183, + 48.9797 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*352*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26332, + 48.9852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*353*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26332, + 48.9852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*353*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26332, + 48.9852 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*353*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-02" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25776, + 48.9895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*354*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.25776, + 48.9895 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*354*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22189, + 48.9986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*355*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.22189, + 48.9986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*355*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-30" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*356*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*356*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*357*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2338, + 48.994 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*357*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2229, + 48.9911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*358*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2229, + 48.9911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*358*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2229, + 48.9911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*359*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2229, + 48.9911 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*359*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2277, + 48.9842 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*361*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-02-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.460008, + 49.029892 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*319*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.29046, + 48.9795 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*374*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-03" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230882, + 48.950894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*278*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.230882, + 48.950894 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*278*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322788, + 48.972669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*282*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.322788, + 48.972669 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*282*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320497, + 48.965586 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*283*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.320497, + 48.965586 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*283*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388748, + 49.006074 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*285*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.388748, + 49.006074 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*285*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.250294, + 48.945741 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*253*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.250294, + 48.945741 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*253*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279536, + 48.972823 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*265*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.279536, + 48.972823 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*265*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.502954, + 49.059232 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*419*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-05-09" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.413664, + 49.000478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*289*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.47388, + 49.031974 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*310*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.457298, + 49.02965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*309*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.457298, + 49.02965 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*309*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.47388, + 49.031974 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*310*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.413664, + 49.000478 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*289*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.392918, + 49.004398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*290*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.514439, + 49.003741 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*291*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.514439, + 49.003741 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*291*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.325135, + 48.975383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*292*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.325135, + 48.975383 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*292*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314644, + 48.965435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*294*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.314644, + 48.965435 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*294*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324662, + 48.961764 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*295*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.324662, + 48.961764 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*295*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.392918, + 49.004398 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*290*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.351968, + 48.986303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*299*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344589, + 48.989537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*300*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.344589, + 48.989537 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*300*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.351968, + 48.986303 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "200050433", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "SIGEIF", + "ref": "FR*SOD*S*SIGE*299*1*_*_", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.198934, + 48.991535 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*255*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.198934, + 48.991535 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*255*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.198934, + 48.991535 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*255*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352528, + 49.007023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*270*2*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352528, + 49.007023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*270*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352528, + 49.007023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*270*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352528, + 49.007023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*270*2*_*_", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.352528, + 49.007023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*270*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.078485, + 49.075618 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*268*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.078485, + 49.075618 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*268*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.078485, + 49.075618 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*268*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206899, + 48.945617 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*266*1*_*_", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206899, + 48.945617 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*266*1*_*_", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.206899, + 48.945617 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Izivia", + "owner:ref:FR:SIREN": "419070180", + "email": "sav@izivia.com", + "phone": "0972668001", + "network": "IZIVIA EXPRESS", + "ref": "FR*SOD*S*OAZS*266*1*_*_", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.143177, + 49.050615 ] }, "properties": { "amenity": "charging_station", "email": "info@chargepoint.com", - "network": "BSMD BORNE 2", - "ref": "FRCPIE6543785", + "network": "3C CLIM ST OUEN", + "ref": "FRCPIE6612625", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -888,15 +7912,15 @@ "geometry": { "type": "Point", "coordinates": [ - 2.517406, - 48.990975 + 2.143177, + 49.050615 ] }, "properties": { "amenity": "charging_station", "email": "info@chargepoint.com", - "network": "BSMD BORNE 2", - "ref": "FRCPIE6543785", + "network": "3C CLIM ST OUEN", + "ref": "FRCPIE6612625", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -906,282 +7930,6 @@ "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.517406, - 48.990975 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BSMD BORNE 2", - "ref": "FRCPIE6543795", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.517406, - 48.990975 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "BSMD BORNE 2", - "ref": "FRCPIE6543795", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503833, - 49.005955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 3", - "ref": "FRCPIE6740985", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503833, - 49.005955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 3", - "ref": "FRCPIE6740985", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503833, - 49.005955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 3", - "ref": "FRCPIE6741025", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503833, - 49.005955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 3", - "ref": "FRCPIE6741025", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503833, - 49.005955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 3", - "ref": "FRCPIE6741095", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503619, - 49.006164 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 4", - "ref": "FRCPIE6741035", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503619, - 49.006164 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 4", - "ref": "FRCPIE6741035", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.503833, - 49.005955 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "CHS1 BORNE 3", - "ref": "FRCPIE6741095", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299441, - 48.993908 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT SOISY", - "ref": "FRCPIE6654305", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-03-24", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.299441, - 48.993908 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "SONEPAR CONNECT SOISY", - "ref": "FRCPIE6654305", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", - "start_date": "2023-03-24", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -1228,6 +7976,121 @@ "socket:type2_cable": "false" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 19", + "ref": "FRCPIE6601055", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 19", + "ref": "FRCPIE6601055", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 19", + "ref": "FRCPIE6601065", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 19", + "ref": "FRCPIE6601065", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.462654, + 48.968367 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "MANUTAN 19", + "ref": "FRCPIE6601075", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, { "type": "Feature", "geometry": { @@ -1302,38 +8165,15 @@ "geometry": { "type": "Point", "coordinates": [ - 2.462654, - 48.968367 + 2.461937, + 48.968225 ] }, "properties": { "amenity": "charging_station", "email": "info@chargepoint.com", - "network": "MANUTAN 19", - "ref": "FRCPIE6601075", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462654, - 48.968367 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 19", - "ref": "FRCPIE6601065", + "network": "MANUTAN 9", + "ref": "FRCPIE6601025", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -1356,145 +8196,7 @@ "amenity": "charging_station", "email": "info@chargepoint.com", "network": "MANUTAN 9", - "ref": "FRCPIE6606025", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6606025", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.462654, - 48.968367 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 19", - "ref": "FRCPIE6601065", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6605985", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6605985", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6601045", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.461937, - 48.968225 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@chargepoint.com", - "network": "MANUTAN 9", - "ref": "FRCPIE6601045", + "ref": "FRCPIE6601025", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -1563,7 +8265,7 @@ "amenity": "charging_station", "email": "info@chargepoint.com", "network": "MANUTAN 9", - "ref": "FRCPIE6601025", + "ref": "FRCPIE6601045", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -1586,7 +8288,7 @@ "amenity": "charging_station", "email": "info@chargepoint.com", "network": "MANUTAN 9", - "ref": "FRCPIE6601025", + "ref": "FRCPIE6601045", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -1601,15 +8303,15 @@ "geometry": { "type": "Point", "coordinates": [ - 2.462654, - 48.968367 + 2.461937, + 48.968225 ] }, "properties": { "amenity": "charging_station", "email": "info@chargepoint.com", - "network": "MANUTAN 19", - "ref": "FRCPIE6601055", + "network": "MANUTAN 9", + "ref": "FRCPIE6605985", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -1624,15 +8326,15 @@ "geometry": { "type": "Point", "coordinates": [ - 2.462654, - 48.968367 + 2.461937, + 48.968225 ] }, "properties": { "amenity": "charging_station", "email": "info@chargepoint.com", - "network": "MANUTAN 19", - "ref": "FRCPIE6601055", + "network": "MANUTAN 9", + "ref": "FRCPIE6605985", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -1647,21 +8349,21 @@ "geometry": { "type": "Point", "coordinates": [ - 2.143177, - 49.050615 + 2.461937, + 48.968225 ] }, "properties": { "amenity": "charging_station", "email": "info@chargepoint.com", - "network": "3C CLIM ST OUEN", - "ref": "FRCPIE6612625", + "network": "MANUTAN 9", + "ref": "FRCPIE6606025", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-10-12", + "start_date": "2023-03-23", "socket:type2_cable": "false" } }, @@ -1670,21 +8372,67 @@ "geometry": { "type": "Point", "coordinates": [ - 2.143177, - 49.050615 + 2.461937, + 48.968225 ] }, "properties": { "amenity": "charging_station", "email": "info@chargepoint.com", - "network": "3C CLIM ST OUEN", - "ref": "FRCPIE6612625", + "network": "MANUTAN 9", + "ref": "FRCPIE6606025", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-10-12", + "start_date": "2023-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503619, + 49.006164 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CHS1 BORNE 4", + "ref": "FRCPIE6741035", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503619, + 49.006164 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CHS1 BORNE 4", + "ref": "FRCPIE6741035", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25", "socket:type2_cable": "false" } }, @@ -1780,6 +8528,190 @@ "socket:type2_cable": "false" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299441, + 48.993908 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT SOISY", + "ref": "FRCPIE6654305", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.299441, + 48.993908 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT SOISY", + "ref": "FRCPIE6654305", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2023-03-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503833, + 49.005955 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CHS1 BORNE 3", + "ref": "FRCPIE6741095", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503833, + 49.005955 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CHS1 BORNE 3", + "ref": "FRCPIE6741095", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503833, + 49.005955 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CHS1 BORNE 3", + "ref": "FRCPIE6741025", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503833, + 49.005955 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CHS1 BORNE 3", + "ref": "FRCPIE6740985", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503833, + 49.005955 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CHS1 BORNE 3", + "ref": "FRCPIE6740985", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.503833, + 49.005955 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "CHS1 BORNE 3", + "ref": "FRCPIE6741025", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-07-25", + "socket:type2_cable": "false" + } + }, { "type": "Feature", "geometry": { @@ -1832,162 +8764,6 @@ "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330981", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330981", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330981", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330981", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330981", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.551434, - 49.073179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Fastned France", - "owner:ref:FR:SIREN": "853300010", - "email": "support@fastned.nl", - "phone": "+(33) 184710062", - "network": "Aire de Vémars Ouest", - "ref": "FRFASE330981", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-22", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -2205,22 +8981,154 @@ "geometry": { "type": "Point", "coordinates": [ - 2.548005, - 49.089443 + 2.551434, + 49.073179 ] }, "properties": { "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref": "FRFASE330981", "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-05-16", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref": "FRFASE330981", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref": "FRFASE330981", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref": "FRFASE330981", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref": "FRFASE330981", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.551434, + 49.073179 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Ouest", + "ref": "FRFASE330981", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-22", "socket:type2_cable": "false" } }, @@ -2248,222 +9156,6 @@ "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43960", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43961", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.548005, - 49.089443 - ] - }, - "properties": { - "amenity": "charging_station", - "email": "info@ionity.eu", - "phone": "+(33)-(1)-87210891", - "network": "Saint-Witz", - "ref": "FRIONE43961", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-16", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -2519,7579 +9211,22 @@ "geometry": { "type": "Point", "coordinates": [ - 2.209352, - 49.11376 + 2.548005, + 49.089443 ] }, "properties": { "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*420*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.217951, - 49.121776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*429*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.217951, - 49.121776 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*429*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.207922, - 49.078548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*425*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.207922, - 49.078548 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*425*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252206, - 49.054005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*424*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.252206, - 49.054005 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*424*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284516, - 49.115166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*421*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284516, - 49.115166 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*421*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209352, - 49.11376 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*420*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.502954, - 49.059232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*419*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.502954, - 49.059232 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*419*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306583, - 48.972892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*84*2*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306583, - 48.972892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*84*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306583, - 48.972892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*84*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301669, - 48.966448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*39*3*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307657, - 49.06973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.307657, - 49.06973 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*62*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320821, - 49.067314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320821, - 49.067314 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*61*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301669, - 48.966448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*39*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301669, - 48.966448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*39*5*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301669, - 48.966448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*39*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301669, - 48.966448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*39*6*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.301669, - 48.966448 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*39*2*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.308342, - 48.974918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*51*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.308342, - 48.974918 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*51*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218229, - 49.038771 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*416*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1991, - 48.9966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*401*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320497, - 48.965586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*283*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230882, - 48.950894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*278*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230882, - 48.950894 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*278*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322788, - 48.972669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*282*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322788, - 48.972669 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*282*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.320497, - 48.965586 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*283*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388748, - 49.006074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*285*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.388748, - 49.006074 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*285*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.413664, - 49.000478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*289*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.413664, - 49.000478 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*289*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.392918, - 49.004398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*290*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.392918, - 49.004398 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*290*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279536, - 48.972823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*265*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.279536, - 48.972823 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*265*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.514439, - 49.003741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*291*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.514439, - 49.003741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*291*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.325135, - 48.975383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*292*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.457298, - 49.02965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*309*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.457298, - 49.02965 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*309*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.47388, - 49.031974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*310*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.47388, - 49.031974 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*310*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.325135, - 48.975383 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*292*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314644, - 48.965435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*294*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.314644, - 48.965435 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*294*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324662, - 48.961764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*295*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.324662, - 48.961764 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*295*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.351968, - 48.986303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*299*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.351968, - 48.986303 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*299*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344589, - 48.989537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*300*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.344589, - 48.989537 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*300*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-19" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.444934, - 49.050178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*232*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.444934, - 49.050178 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*232*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-15" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353092, - 49.079916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*230*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353092, - 49.079916 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*230*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.250294, - 48.945741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*253*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.250294, - 48.945741 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*253*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284068, - 48.965992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*249*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.284068, - 48.965992 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*249*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-18" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.319999, - 48.988914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*246*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.319999, - 48.988914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*246*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.312299, - 48.973415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*245*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.312299, - 48.973415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*245*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-05-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321968, - 48.999316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*244*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.321968, - 48.999316 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*244*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.370779, - 48.976697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*211*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.370779, - 48.976697 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*211*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383546, - 48.980861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*210*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.383546, - 48.980861 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*210*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.257649, - 48.948752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*218*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.257649, - 48.948752 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*218*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239076, - 48.947107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*217*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.239076, - 48.947107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*217*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.247911, - 48.940484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*216*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.247911, - 48.940484 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*216*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287242, - 48.957323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*215*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.287242, - 48.957323 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*215*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2108, - 49.0173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*378*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2249, - 49.0264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*380*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2249, - 49.0264 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*380*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221, - 49.0254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*381*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221, - 49.0254 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*381*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2215, - 49.0258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*382*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2215, - 49.0258 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*382*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2633, - 48.9701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*383*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2633, - 48.9701 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*383*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25721, - 48.9715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*384*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25721, - 48.9715 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*384*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2661, - 48.9686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*385*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2661, - 48.9686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*385*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24037, - 48.9686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*386*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24037, - 48.9686 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*386*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2562, - 48.9761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*387*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2562, - 48.9761 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*387*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2423, - 48.9784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*388*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2423, - 48.9784 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*388*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-05" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2521, - 49.0236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*389*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2108, - 49.0173 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*378*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2126, - 49.0271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*377*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24848, - 49.0193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*390*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2126, - 49.0271 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*377*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1658, - 48.99 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*367*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1449, - 48.998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*368*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1449, - 48.998 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*368*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.176, - 48.9915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*369*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.176, - 48.9915 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*369*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1658, - 48.9914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*370*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1658, - 48.9914 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*370*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-05-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181, - 48.9796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*371*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.181, - 48.9796 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*371*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1813, - 48.9621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*372*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1813, - 48.9621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*372*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17747, - 48.9747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*373*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17747, - 48.9747 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*373*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29046, - 48.9795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*374*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29046, - 48.9795 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*374*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23112, - 49.0211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*376*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23112, - 49.0211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*376*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-26" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2521, - 49.0236 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*389*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24848, - 49.0193 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*390*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12663, - 49.0169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*366*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1977, - 49.007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*403*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20313, - 48.994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*404*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20313, - 48.994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*404*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23283, - 49.0022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*405*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23283, - 49.0022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*405*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23634, - 49.0019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*406*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23634, - 49.0019 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*406*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2444, - 48.9976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*407*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2444, - 48.9976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*407*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22748, - 48.9843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*408*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22748, - 48.9843 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*408*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218401, - 49.112389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*409*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.218401, - 49.112389 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*409*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216531, - 49.111305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*410*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.216531, - 49.111305 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*410*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1977, - 49.007 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*403*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18857, - 48.9854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*402*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24591, - 49.0186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*391*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.18857, - 48.9854 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*402*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24591, - 49.0186 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*391*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238, - 49.0107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*392*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238, - 49.0107 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*392*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2484, - 49.0057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*393*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2484, - 49.0057 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*393*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25216, - 49.0132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*394*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25216, - 49.0132 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*394*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24271, - 49.0197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*395*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24271, - 49.0197 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*395*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2424, - 49.0158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*396*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2424, - 49.0158 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*396*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1991, - 48.9966 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*401*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1658, - 48.99 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*367*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-24" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12663, - 49.0169 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*366*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.205439, - 48.976037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*329*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209218, - 48.965775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*330*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.202975, - 48.973692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*331*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.202975, - 48.973692 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*331*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.199478, - 48.976976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*332*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.199478, - 48.976976 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*332*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1851, - 49.0179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*333*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1851, - 49.0179 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*333*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19591, - 49.0134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*334*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19591, - 49.0134 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*334*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1904, - 48.9613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*335*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1904, - 48.9613 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*335*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2001, - 48.9835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*336*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2001, - 48.9835 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*336*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1996, - 49.0108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*337*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1996, - 49.0108 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*337*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19769, - 49.0097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*338*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19769, - 49.0097 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*338*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.211656, - 49.038018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*339*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.211656, - 49.038018 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*339*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20896, - 49.0369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*340*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20896, - 49.0369 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*340*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.209218, - 48.965775 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*330*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.205439, - 48.976037 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*329*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-08" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2047, - 49.0408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*341*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.197618, - 48.958165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*328*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.460008, - 49.029892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*319*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.460008, - 49.029892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*319*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.340589, - 49.025174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*325*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.340589, - 49.025174 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*325*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338942, - 49.030229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*326*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.338942, - 49.030229 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*326*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-09" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.309573, - 48.972443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*327*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.309573, - 48.972443 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*327*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.197618, - 48.958165 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*328*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-07" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2047, - 49.0408 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*341*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27736, - 48.9917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*342*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15787, - 49.0025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*365*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25776, - 48.9895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*354*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22189, - 48.9986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*355*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22189, - 48.9986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*355*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-30" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2338, - 48.994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*356*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2338, - 48.994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*356*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2338, - 48.994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*357*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2338, - 48.994 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*357*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2229, - 48.9911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*358*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2229, - 48.9911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*358*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2229, - 48.9911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*359*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2229, - 48.9911 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*359*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2277, - 48.9842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*361*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2277, - 48.9842 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*361*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206, - 49.0509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*362*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206, - 49.0509 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*362*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.127156, - 49.004227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*363*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.127156, - 49.004227 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*363*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.14247, - 49.0004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*364*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.14247, - 49.0004 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*364*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.15787, - 49.0025 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*365*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-01" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25776, - 48.9895 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*354*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26332, - 48.9852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*353*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27736, - 48.9917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*342*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26332, - 48.9852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*353*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-02" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27636, - 49.0022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*343*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27636, - 49.0022 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*343*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27736, - 48.9917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*344*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27736, - 48.9917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*344*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-14" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27736, - 48.9917 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*344*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27439, - 48.98 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*345*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27439, - 48.98 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*345*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27439, - 48.98 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*345*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26679, - 48.995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*346*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26679, - 48.995 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*346*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28509, - 48.9913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*347*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.28509, - 48.9913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*347*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-20" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26089, - 48.9913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*349*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26089, - 48.9913 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*349*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26261, - 48.9898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*350*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26261, - 48.9898 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*350*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25678, - 48.985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*351*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25678, - 48.985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*351*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27183, - 48.9797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*352*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.27183, - 48.9797 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*352*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26332, - 48.9852 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*353*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-02-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288179, - 49.003723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*174*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.288179, - 49.003723 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*174*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306583, - 48.972892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*84*3*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306583, - 48.972892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*84*4*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.306583, - 48.972892 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*84*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-06" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.515321, - 49.006211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*156*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.515321, - 49.006211 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*156*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.519465, - 49.001676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*155*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.519465, - 49.001676 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*155*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-29" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.471163, - 49.002593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*203*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322472, - 49.045307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*196*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.322472, - 49.045307 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*196*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310958, - 49.041152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*195*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310958, - 49.041152 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*195*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.479328, - 49.009207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*194*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.479328, - 49.009207 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*194*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-22" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.451673, - 49.049662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*202*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.451673, - 49.049662 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*202*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36695, - 49.087523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*146*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.36695, - 49.087523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*146*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-27" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.339881, - 49.033346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*122*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.339881, - 49.033346 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*122*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-07-21" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310159, - 48.968482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.310159, - 48.968482 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*91*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-25" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326929, - 49.027391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.326929, - 49.027391 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*106*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-11" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336956, - 49.032846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.336956, - 49.032846 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*107*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-28" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.380766, - 48.97929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.380766, - 48.97929 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*108*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-03" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377945, - 48.99638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.377945, - 48.99638 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*110*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-03-23" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.471163, - 49.002593 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "200050433", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "SIGEIF", - "ref": "FR*SOD*S*SIGE*203*1*_*_", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-17" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352528, - 49.007023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*270*2*_*_", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352528, - 49.007023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*270*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352528, - 49.007023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*270*2*_*_", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref": "FRIONE43961", "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352528, - 49.007023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*270*1*_*_", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.352528, - 49.007023 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*270*1*_*_", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.198934, - 48.991535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*255*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.198934, - 48.991535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*255*1*_*_", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.198934, - 48.991535 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*255*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-16" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.078485, - 49.075618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*268*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206899, - 48.945617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*266*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206899, - 48.945617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*266*1*_*_", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.206899, - 48.945617 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*266*1*_*_", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.078485, - 49.075618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*268*1*_*_", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.078485, - 49.075618 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Izivia", - "owner:ref:FR:SIREN": "419070180", - "email": "sav@izivia.com", - "phone": "0972668001", - "network": "IZIVIA EXPRESS", - "ref": "FR*SOD*S*OAZS*268*1*_*_", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-07-12" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.353198, - 49.005547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "IJOXVXWV0B", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26", + "start_date": "2022-05-16", "socket:type2_cable": "false" } }, @@ -10100,23 +9235,22 @@ "geometry": { "type": "Point", "coordinates": [ - 2.190163, - 49.066268 + 2.548005, + 49.089443 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVIRJDVIRT", - "socket:typee": "yes", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref": "FRIONE43961", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-11-08", + "opening_hours": "24/7", + "start_date": "2022-05-16", "socket:type2_cable": "false" } }, @@ -10125,23 +9259,22 @@ "geometry": { "type": "Point", "coordinates": [ - 2.190163, - 49.066268 + 2.548005, + 49.089443 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVIRJDVIRT", - "socket:typee": "yes", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref": "FRIONE43960", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-11-08", + "opening_hours": "24/7", + "start_date": "2022-05-16", "socket:type2_cable": "false" } }, @@ -10150,23 +9283,22 @@ "geometry": { "type": "Point", "coordinates": [ - 2.190163, - 49.066268 + 2.548005, + 49.089443 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVIRJDVIRT", - "socket:typee": "yes", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref": "FRIONE43960", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-11-08", + "opening_hours": "24/7", + "start_date": "2022-05-16", "socket:type2_cable": "false" } }, @@ -10175,24 +9307,165 @@ "geometry": { "type": "Point", "coordinates": [ - 2.190163, - 49.066268 + 2.548005, + 49.089443 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVIRJDVIRT", - "socket:typee": "yes", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref": "FRIONE43960", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref": "FRIONE43960", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref": "FRIONE43960", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref": "FRIONE43960", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref": "FRIONE43960", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.548005, + 49.089443 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@ionity.eu", + "phone": "+(33)-(1)-87210891", + "network": "Saint-Witz", + "ref": "FRIONE43960", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-16", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.072355, + 49.049365 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT OSNY", + "ref": "FRCPIE6589265", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-11-08", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -10201,24 +9474,21 @@ "geometry": { "type": "Point", "coordinates": [ - 2.190163, - 49.066268 + 2.072355, + 49.049365 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVIRJDVIRT", - "socket:typee": "yes", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT OSNY", + "ref": "FRCPIE6589265", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-11-08", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -10227,24 +9497,466 @@ "geometry": { "type": "Point", "coordinates": [ - 2.190163, - 49.066268 + 2.5528702, + 49.07246803 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "KVIRJDVIRT", - "socket:typee": "yes", + "email": "klantenservice@newmotion.com", + "phone": "+(33)-(9)-69366018", + "network": "Aire de Vémars Est", + "ref": "FRSPSESHEL152", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-04-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330990", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330990", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330991", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330991", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330991", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330991", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330991", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330991", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330990", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330991", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330990", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330990", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330990", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330990", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330990", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.552983, + 49.071747 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Fastned France", + "owner:ref:FR:SIREN": "853300010", + "email": "support@fastned.nl", + "phone": "+(33) 184710062", + "network": "Aire de Vémars Est", + "ref": "FRFASE330990", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.104915, + 49.027416 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT ERAGNY", + "ref": "FRCPIE6594145", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", - "start_date": "2022-11-08", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -10253,23 +9965,44 @@ "geometry": { "type": "Point", "coordinates": [ - 2.34059102, - 49.03914381 + 2.104915, + 49.027416 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", + "email": "info@chargepoint.com", + "network": "SONEPAR CONNECT ERAGNY", + "ref": "FRCPIE6594145", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.39614, + 48.962298 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BORNE GAZZOLA DEPOT GMT", + "ref": "FRCPIE6551715", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-04-22", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -10278,23 +10011,21 @@ "geometry": { "type": "Point", "coordinates": [ - 2.34059102, - 49.03914381 + 2.39614, + 48.962298 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", + "email": "info@chargepoint.com", + "network": "BORNE GAZZOLA DEPOT GMT", + "ref": "FRCPIE6551715", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-04-22", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -10303,23 +10034,21 @@ "geometry": { "type": "Point", "coordinates": [ - 2.34059102, - 49.03914381 + 2.517406, + 48.990975 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", + "email": "info@chargepoint.com", + "network": "BSMD BORNE 2", + "ref": "FRCPIE6543795", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-04-22", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -10328,23 +10057,21 @@ "geometry": { "type": "Point", "coordinates": [ - 2.34059102, - 49.03914381 + 2.517406, + 48.990975 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", + "email": "info@chargepoint.com", + "network": "BSMD BORNE 2", + "ref": "FRCPIE6543795", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-04-22", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -10353,23 +10080,21 @@ "geometry": { "type": "Point", "coordinates": [ - 2.34059102, - 49.03914381 + 2.517406, + 48.990975 ] }, "properties": { "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", + "email": "info@chargepoint.com", + "network": "BSMD BORNE 2", + "ref": "FRCPIE6543785", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-04-22", + "start_date": "2022-10-12", "socket:type2_cable": "false" } }, @@ -10378,8 +10103,109 @@ "geometry": { "type": "Point", "coordinates": [ - 2.34059102, - 49.03914381 + 2.517406, + 48.990975 + ] + }, + "properties": { + "amenity": "charging_station", + "email": "info@chargepoint.com", + "network": "BSMD BORNE 2", + "ref": "FRCPIE6543785", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2, + 48.91 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NVH", + "owner:ref:FR:SIREN": "813164282", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "Station Mattieu et Pauline", + "ref": "0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "1", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.2, + 48.91 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "NVH", + "owner:ref:FR:SIREN": "813164282", + "email": "supervision@nvh-france.fr", + "phone": "972626373", + "network": "Station Mattieu et Pauline", + "ref": "0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "0", + "authentication:none": "1", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1165115, + 49.0227649 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "EVBOX", + "owner:ref:FR:SIREN": "392291167", + "email": "contact@secal-electricite.fr", + "phone": "0134201124", + "network": "SKYMAT", + "ref": "EVB-P1941339", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-fr 08:00-12:00,MO-FR14:00-18:00", + "start_date": "2022-01-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.30075, + 49.0047 ] }, "properties": { @@ -10388,14 +10214,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "OUBY1DDYTO", + "ref": "DTWHHE", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-04-22", + "start_date": "2018-11-06", "socket:type2_cable": "false" } }, @@ -10404,8 +10230,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.34059102, - 49.03914381 + 2.30075, + 49.0047 ] }, "properties": { @@ -10414,141 +10240,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "OUBY1DDYTO", + "ref": "DTWHHE", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-04-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34059102, - 49.03914381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34059102, - 49.03914381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.34059102, - 49.03914381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OUBY1DDYTO", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-04-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.936072, - 50.334399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWAX2VIBUV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.936072, - 50.334399 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LWAX2VIBUV", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-22", + "start_date": "2018-11-06", "socket:type2_cable": "false" } }, @@ -10609,8 +10308,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.30075, - 49.0047 + 2.936072, + 50.334399 ] }, "properties": { @@ -10619,14 +10318,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "DTWHHE", + "ref": "LWAX2VIBUV", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2018-11-06", + "start_date": "2022-02-22", "socket:type2_cable": "false" } }, @@ -10635,8 +10334,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.30075, - 49.0047 + 2.936072, + 50.334399 ] }, "properties": { @@ -10645,14 +10344,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "DTWHHE", + "ref": "LWAX2VIBUV", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2018-11-06", + "start_date": "2022-02-22", "socket:type2_cable": "false" } }, @@ -10712,8 +10411,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.32728216, - 49.06732506 + 2.190163, + 49.066268 ] }, "properties": { @@ -10722,66 +10421,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "GVLLPF2MXK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.32728216, - 49.06732506 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GVLLPF2MXK", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.528626, - 49.098951 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FINPWCYSPC", + "ref": "KVIRJDVIRT", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-11-08", "socket:type2_cable": "false" } }, @@ -10790,8 +10437,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.528626, - 49.098951 + 2.190163, + 49.066268 ] }, "properties": { @@ -10800,14 +10447,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "FINPWCYSPC", + "ref": "KVIRJDVIRT", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-11-08", "socket:type2_cable": "false" } }, @@ -10816,8 +10463,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.402902, - 48.96203 + 2.190163, + 49.066268 ] }, "properties": { @@ -10826,14 +10473,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "BK88LLSEWT", + "ref": "KVIRJDVIRT", "socket:typee": "yes", - "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-11-08", "socket:type2_cable": "false" } }, @@ -10842,8 +10488,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.402902, - 48.96203 + 2.190163, + 49.066268 ] }, "properties": { @@ -10852,14 +10498,64 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "BK88LLSEWT", + "ref": "KVIRJDVIRT", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-27", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.190163, + 49.066268 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KVIRJDVIRT", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-11-08", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.190163, + 49.066268 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "KVIRJDVIRT", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00", + "start_date": "2022-11-08", "socket:type2_cable": "false" } }, @@ -11154,8 +10850,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.12308566, - 49.05785284 + 2.21888, + 49.1121 ] }, "properties": { @@ -11164,14 +10860,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "C0EV8XYVBH", + "ref": "PESMYK", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-02-13", + "start_date": "2019-10-22", "socket:type2_cable": "false" } }, @@ -11180,8 +10876,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.12308566, - 49.05785284 + 2.21648656, + 49.11128239 ] }, "properties": { @@ -11190,14 +10886,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "C0EV8XYVBH", + "ref": "QEVDN4ZT1R", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-02-13", + "start_date": "2021-07-02", "socket:type2_cable": "false" } }, @@ -11206,8 +10902,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.12308566, - 49.05785284 + 2.21648656, + 49.11128239 ] }, "properties": { @@ -11216,14 +10912,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "C0EV8XYVBH", + "ref": "QEVDN4ZT1R", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-02-13", + "start_date": "2021-07-02", "socket:type2_cable": "false" } }, @@ -11232,8 +10928,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.12308566, - 49.05785284 + 2.21888, + 49.1121 ] }, "properties": { @@ -11242,14 +10938,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "C0EV8XYVBH", + "ref": "PESMYK", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-02-13", + "start_date": "2019-10-22", "socket:type2_cable": "false" } }, @@ -11258,8 +10954,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.12308566, - 49.05785284 + 2.32728216, + 49.06732506 ] }, "properties": { @@ -11268,14 +10964,66 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "C0EV8XYVBH", + "ref": "GVLLPF2MXK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.32728216, + 49.06732506 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GVLLPF2MXK", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.528626, + 49.098951 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FINPWCYSPC", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-02-13", + "start_date": "2022-06-27", "socket:type2_cable": "false" } }, @@ -11284,8 +11032,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.12308566, - 49.05785284 + 2.402902, + 48.96203 ] }, "properties": { @@ -11294,14 +11042,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "C0EV8XYVBH", + "ref": "BK88LLSEWT", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-02-13", + "start_date": "2022-06-27", "socket:type2_cable": "false" } }, @@ -11310,8 +11058,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.12308566, - 49.05785284 + 2.528626, + 49.098951 ] }, "properties": { @@ -11320,14 +11068,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "C0EV8XYVBH", + "ref": "FINPWCYSPC", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-02-13", + "start_date": "2022-06-27", "socket:type2_cable": "false" } }, @@ -11336,8 +11084,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.12308566, - 49.05785284 + 2.402902, + 48.96203 ] }, "properties": { @@ -11346,14 +11094,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "C0EV8XYVBH", + "ref": "BK88LLSEWT", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2023-02-13", + "start_date": "2022-06-27", "socket:type2_cable": "false" } }, @@ -11362,8 +11110,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.07815007, - 49.033704 + 2.43076228, + 48.98947576 ] }, "properties": { @@ -11372,13 +11120,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "AEFATBNYGL", + "ref": "GHORFZQQIB", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-05-03", + "start_date": "2022-03-18", "socket:type2_cable": "false" } }, @@ -11387,8 +11136,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.07815007, - 49.033704 + 2.43076228, + 48.98947576 ] }, "properties": { @@ -11397,13 +11146,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "AEFATBNYGL", + "ref": "GHORFZQQIB", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-05-03", + "start_date": "2022-03-18", "socket:type2_cable": "false" } }, @@ -11412,8 +11162,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.45052567, - 48.95732671 + 2.43076228, + 48.98947576 ] }, "properties": { @@ -11422,14 +11172,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "VQODSEY6PD", - "socket:typee": "yes", - "socket:type2": "yes", + "ref": "GHORFZQQIB", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-07-11", + "opening_hours": "24/7", + "start_date": "2022-03-18", "socket:type2_cable": "false" } }, @@ -11438,8 +11187,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.45052567, - 48.95732671 + 2.43076228, + 48.98947576 ] }, "properties": { @@ -11448,14 +11197,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "VQODSEY6PD", - "socket:typee": "yes", - "socket:type2": "yes", + "ref": "GHORFZQQIB", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-07-11", + "opening_hours": "24/7", + "start_date": "2022-03-18", "socket:type2_cable": "false" } }, @@ -11464,8 +11212,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.45052567, - 48.95732671 + 2.43076228, + 48.98947576 ] }, "properties": { @@ -11474,14 +11222,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "VQODSEY6PD", - "socket:typee": "yes", - "socket:type2": "yes", + "ref": "GHORFZQQIB", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-07-11", + "opening_hours": "24/7", + "start_date": "2022-03-18", "socket:type2_cable": "false" } }, @@ -11490,8 +11237,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.45052567, - 48.95732671 + 2.43076228, + 48.98947576 ] }, "properties": { @@ -11500,14 +11247,902 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "VQODSEY6PD", + "ref": "GHORFZQQIB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076228, + 48.98947576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GHORFZQQIB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076228, + 48.98947576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GHORFZQQIB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076228, + 48.98947576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GHORFZQQIB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.43076228, + 48.98947576 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GHORFZQQIB", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-Fr 14:00-17:00", - "start_date": "2022-07-11", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.0886487, + 49.06580986 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQJMOPCAAH", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ACOVDL0ZZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ACOVDL0ZZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ACOVDL0ZZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ACOVDL0ZZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ACOVDL0ZZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ACOVDL0ZZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ACOVDL0ZZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.78752324, + 49.14671702 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ACOVDL0ZZ4", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-23", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.353198, + 49.005547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "IJOXVXWV0B", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OUBY1DDYTO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OUBY1DDYTO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OUBY1DDYTO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OUBY1DDYTO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OUBY1DDYTO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OUBY1DDYTO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OUBY1DDYTO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OUBY1DDYTO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OUBY1DDYTO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.34059102, + 49.03914381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OUBY1DDYTO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26082407, + 49.00313849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EOJBWKSCLF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26082407, + 49.00313849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EOJBWKSCLF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26082407, + 49.00313849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EOJBWKSCLF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.26082407, + 49.00313849 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EOJBWKSCLF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-07", "socket:type2_cable": "false" } }, @@ -11568,8 +12203,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.43076228, - 48.98947576 + 2.45052567, + 48.95732671 ] }, "properties": { @@ -11578,14 +12213,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "GHORFZQQIB", + "ref": "VQODSEY6PD", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-07-11", "socket:type2_cable": "false" } }, @@ -11594,8 +12229,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.43076228, - 48.98947576 + 2.45052567, + 48.95732671 ] }, "properties": { @@ -11604,214 +12239,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.43076228, - 48.98947576 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHORFZQQIB", + "ref": "VQODSEY6PD", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-18", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-07-11", "socket:type2_cable": "false" } }, @@ -11820,8 +12255,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.26082407, - 49.00313849 + 2.45052567, + 48.95732671 ] }, "properties": { @@ -11830,14 +12265,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "EOJBWKSCLF", + "ref": "VQODSEY6PD", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-07-11", "socket:type2_cable": "false" } }, @@ -11846,8 +12281,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.26082407, - 49.00313849 + 2.45052567, + 48.95732671 ] }, "properties": { @@ -11856,603 +12291,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "EOJBWKSCLF", + "ref": "VQODSEY6PD", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26082407, - 49.00313849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EOJBWKSCLF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.26082407, - 49.00313849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EOJBWKSCLF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-03-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0886487, - 49.06580986 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQJMOPCAAH", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-04-22", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.78752324, - 49.14671702 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ACOVDL0ZZ4", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-08-23", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.137653, - 49.046195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUGQOG3Q0H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.137653, - 49.046195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUGQOG3Q0H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.137653, - 49.046195 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "UUGQOG3Q0H", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256181, - 48.956538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TULYZ5QK8S", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-11:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-29", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.256181, - 48.956538 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "TULYZ5QK8S", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo-Fr 09:00-11:00,Mo-Fr 14:00-17:00", - "start_date": "2021-12-29", + "opening_hours": "Mo-Fr 14:00-17:00", + "start_date": "2022-07-11", "socket:type2_cable": "false" } }, @@ -12508,6 +12354,58 @@ "socket:type2_cable": "false" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.120087, + 49.034662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LAN1EK83QC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.120087, + 49.034662 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LAN1EK83QC", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-30", + "socket:type2_cable": "false" + } + }, { "type": "Feature", "geometry": { @@ -12564,8 +12462,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.120087, - 49.034662 + 2.137653, + 49.046195 ] }, "properties": { @@ -12574,14 +12472,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "LAN1EK83QC", + "ref": "UUGQOG3Q0H", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-12-30", + "start_date": "2022-12-20", "socket:type2_cable": "false" } }, @@ -12590,8 +12488,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.120087, - 49.034662 + 2.137653, + 49.046195 ] }, "properties": { @@ -12600,14 +12498,141 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "LAN1EK83QC", + "ref": "UUGQOG3Q0H", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.137653, + 49.046195 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "UUGQOG3Q0H", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22669529, + 47.49898491 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YNDBGQMNFP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.22669529, + 47.49898491 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YNDBGQMNFP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256181, + 48.956538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TULYZ5QK8S", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 09:00-11:00,Mo-Fr 14:00-17:00", + "start_date": "2021-12-29", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.256181, + 48.956538 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TULYZ5QK8S", "socket:type2_combo": "yes", "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-12-30", + "opening_hours": "Mo-Fr 09:00-11:00,Mo-Fr 14:00-17:00", + "start_date": "2021-12-29", "socket:type2_cable": "false" } }, @@ -12616,8 +12641,8 @@ "geometry": { "type": "Point", "coordinates": [ - 1.22669529, - 47.49898491 + 2.07815007, + 49.033704 ] }, "properties": { @@ -12626,13 +12651,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "YNDBGQMNFP", + "ref": "AEFATBNYGL", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-09-26", + "start_date": "2022-05-03", "socket:type2_cable": "false" } }, @@ -12641,8 +12666,8 @@ "geometry": { "type": "Point", "coordinates": [ - 1.22669529, - 47.49898491 + 2.12308566, + 49.05785284 ] }, "properties": { @@ -12651,13 +12676,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "YNDBGQMNFP", + "ref": "C0EV8XYVBH", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-09-26", + "start_date": "2023-02-13", "socket:type2_cable": "false" } }, @@ -12666,8 +12692,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.21888, - 49.1121 + 2.12308566, + 49.05785284 ] }, "properties": { @@ -12676,14 +12702,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "PESMYK", + "ref": "C0EV8XYVBH", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2019-10-22", + "start_date": "2023-02-13", "socket:type2_cable": "false" } }, @@ -12692,8 +12718,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.21888, - 49.1121 + 2.12308566, + 49.05785284 ] }, "properties": { @@ -12702,14 +12728,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "PESMYK", + "ref": "C0EV8XYVBH", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2019-10-22", + "start_date": "2023-02-13", "socket:type2_cable": "false" } }, @@ -12718,8 +12744,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.21648656, - 49.11128239 + 2.12308566, + 49.05785284 ] }, "properties": { @@ -12728,14 +12754,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "QEVDN4ZT1R", + "ref": "C0EV8XYVBH", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-02", + "start_date": "2023-02-13", "socket:type2_cable": "false" } }, @@ -12744,8 +12770,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.21648656, - 49.11128239 + 2.12308566, + 49.05785284 ] }, "properties": { @@ -12754,14 +12780,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "QEVDN4ZT1R", + "ref": "C0EV8XYVBH", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-07-02", + "start_date": "2023-02-13", "socket:type2_cable": "false" } }, @@ -12770,25 +12796,25 @@ "geometry": { "type": "Point", "coordinates": [ - 2.1165115, - 49.0227649 + 2.12308566, + 49.05785284 ] }, "properties": { "amenity": "charging_station", - "operator": "EVBOX", - "owner:ref:FR:SIREN": "392291167", - "email": "contact@secal-electricite.fr", - "phone": "0134201124", - "network": "SKYMAT", - "ref": "EVB-P1941339", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C0EV8XYVBH", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", - "opening_hours": "Mo-fr 08:00-12:00,MO-FR14:00-18:00", - "start_date": "2022-01-20" + "opening_hours": "24/7", + "start_date": "2023-02-13", + "socket:type2_cable": "false" } }, { @@ -12796,25 +12822,25 @@ "geometry": { "type": "Point", "coordinates": [ - 2.2, - 48.91 + 2.12308566, + 49.05785284 ] }, "properties": { "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "813164282", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "Station Mattieu et Pauline", - "ref": "0", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C0EV8XYVBH", "socket:typee": "yes", "socket:type2": "yes", - "fee": "0", - "authentication:none": "1", + "fee": "false", + "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-09-29" + "start_date": "2023-02-13", + "socket:type2_cable": "false" } }, { @@ -12822,25 +12848,50 @@ "geometry": { "type": "Point", "coordinates": [ - 2.2, - 48.91 + 2.12308566, + 49.05785284 ] }, "properties": { "amenity": "charging_station", - "operator": "NVH", - "owner:ref:FR:SIREN": "813164282", - "email": "supervision@nvh-france.fr", - "phone": "972626373", - "network": "Station Mattieu et Pauline", - "ref": "0", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C0EV8XYVBH", "socket:typee": "yes", "socket:type2": "yes", - "fee": "0", - "authentication:none": "1", + "fee": "false", + "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-09-29" + "start_date": "2023-02-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.07815007, + 49.033704 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AEFATBNYGL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-05-03", + "socket:type2_cable": "false" } }, { @@ -12938,13 +12989,13 @@ "email": "advenir@zeborne.com", "phone": "0252072597", "network": "GCA ERAGNY", - "ref": "128751", + "ref": "E161583", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" + "start_date": "2022-10-26" } }, { @@ -12963,38 +13014,13 @@ "email": "advenir@zeborne.com", "phone": "0252072597", "network": "GCA ERAGNY", - "ref": "128766", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": " Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128710", + "ref": "E161582", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" + "start_date": "2022-10-26" } }, { @@ -13013,32 +13039,7 @@ "email": "advenir@zeborne.com", "phone": "0252072597", "network": "GCA ERAGNY", - "ref": "128711", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128703", + "ref": "128771", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -13072,31 +13073,6 @@ "start_date": "2022-04-13" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128712", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, { "type": "Feature", "geometry": { @@ -13138,7 +13114,82 @@ "email": "advenir@zeborne.com", "phone": "0252072597", "network": "GCA ERAGNY", - "ref": "128752", + "ref": "128712", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", + "start_date": "2022-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref": "128770", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", + "start_date": "2022-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref": "128703", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", + "start_date": "2022-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref": "128758", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -13188,132 +13239,7 @@ "email": "advenir@zeborne.com", "phone": "0252072597", "network": "GCA ERAGNY", - "ref": "128765", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128774", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128773", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": " Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128758", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128757", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "yes", - "opening_hours": " Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-04-13" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1056502, - 49.0245985 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "ZEborne", - "owner:ref:FR:SIREN": "302695325", - "email": "advenir@zeborne.com", - "phone": "0252072597", - "network": "GCA ERAGNY", - "ref": "128790", + "ref": "128711", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -13347,6 +13273,56 @@ "start_date": "2022-04-13" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref": "128790", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", + "start_date": "2022-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref": "128757", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": " Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", + "start_date": "2022-04-13" + } + }, { "type": "Feature", "geometry": { @@ -13388,13 +13364,13 @@ "email": "advenir@zeborne.com", "phone": "0252072597", "network": "GCA ERAGNY", - "ref": "E161582", + "ref": "128773", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", - "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-10-26" + "opening_hours": " Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", + "start_date": "2022-04-13" } }, { @@ -13413,7 +13389,7 @@ "email": "advenir@zeborne.com", "phone": "0252072597", "network": "GCA ERAGNY", - "ref": "128770", + "ref": "128752", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -13438,7 +13414,7 @@ "email": "advenir@zeborne.com", "phone": "0252072597", "network": "GCA ERAGNY", - "ref": "128771", + "ref": "128774", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -13463,13 +13439,88 @@ "email": "advenir@zeborne.com", "phone": "0252072597", "network": "GCA ERAGNY", - "ref": "E161583", + "ref": "128710", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "yes", "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", - "start_date": "2022-10-26" + "start_date": "2022-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref": "128765", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", + "start_date": "2022-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref": "128751", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": "Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", + "start_date": "2022-04-13" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.1056502, + 49.0245985 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "ZEborne", + "owner:ref:FR:SIREN": "302695325", + "email": "advenir@zeborne.com", + "phone": "0252072597", + "network": "GCA ERAGNY", + "ref": "128766", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "yes", + "opening_hours": " Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00", + "start_date": "2022-04-13" } }, { @@ -13497,32 +13548,6 @@ "opening_hours": "mo-fr 8:00-12:00,mo-fr 14:00-18:0,Th 8:00-18:00" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006706", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, { "type": "Feature", "geometry": { @@ -13549,6 +13574,32 @@ "start_date": "2023-06-10" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref": "FRC2P006706", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-10" + } + }, { "type": "Feature", "geometry": { @@ -13601,6 +13652,58 @@ "start_date": "2023-06-10" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref": "FRC2P006704", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.020918899999999, + 49.0335246 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "CAR2PLUG", + "owner:ref:FR:SIREN": "449170455", + "email": "contact@car2plug.fr", + "phone": "988991011", + "network": "INTERMARCHÉ VAURÉAL", + "ref": "FRC2P006704", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-10" + } + }, { "type": "Feature", "geometry": { @@ -13669,33 +13772,7 @@ "email": "contact@car2plug.fr", "phone": "988991011", "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006704", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006704", + "ref": "FRC2P006702", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -13783,32 +13860,6 @@ "start_date": "2023-06-10" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020918899999999, - 49.0335246 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "CAR2PLUG", - "owner:ref:FR:SIREN": "449170455", - "email": "contact@car2plug.fr", - "phone": "988991011", - "network": "INTERMARCHÉ VAURÉAL", - "ref": "FRC2P006702", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-06-10" - } - }, { "type": "Feature", "geometry": { @@ -14047,8 +14098,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.212336, - 48.931356 + 2.212311, + 48.931373 ] }, "properties": { @@ -14058,7 +14109,6 @@ "email": "acelec@acelec-france.com", "phone": "01 81 73 03 50", "network": "HOTEL KYRIAD PARIS BEZONS", - "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -14072,8 +14122,8 @@ "geometry": { "type": "Point", "coordinates": [ - 2.212311, - 48.931373 + 2.212336, + 48.931356 ] }, "properties": { @@ -14083,6 +14133,7 @@ "email": "acelec@acelec-france.com", "phone": "01 81 73 03 50", "network": "HOTEL KYRIAD PARIS BEZONS", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -14276,7 +14327,6 @@ "email": "exploitation@waat.fr", "network": "WAAT", "ref": "747282", - "socket:typee": "yes", "socket:type2": "yes", "fee": "False", "authentication:none": "True", @@ -14323,75 +14373,7 @@ "email": "exploitation@waat.fr", "network": "WAAT", "ref": "747282", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.65352, - 49.138592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741648", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.65352, - 49.138592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741648", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.65352, - 49.138592 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WA6", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "741648", + "socket:typee": "yes", "socket:type2": "yes", "fee": "False", "authentication:none": "True", @@ -14424,6 +14406,169 @@ "socket:type2_cable": "False" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65352, + 49.138592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741648", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65352, + 49.138592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741648", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 1.65352, + 49.138592 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WA6", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "741648", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.526772, + 49.061943 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "577493", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.526772, + 49.061943 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "577493", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.526772, + 49.061943 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "577496", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.526772, + 49.061943 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "577496", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, { "type": "Feature", "geometry": { @@ -14517,29 +14662,6 @@ "socket:type2_cable": "False" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526772, - 49.061943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577496", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, { "type": "Feature", "geometry": { @@ -14587,100 +14709,6 @@ "socket:type2_cable": "False" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.238002, - 48.978759 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "706244", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526772, - 49.061943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577493", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526772, - 49.061943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577493", - "socket:type2": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.526772, - 49.061943 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "WAAT SAS | FR*WAT", - "email": "exploitation@waat.fr", - "network": "WAAT", - "ref": "577496", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "False", - "authentication:none": "True", - "reservation": "no", - "opening_hours": "24/7", - "socket:type2_cable": "False" - } - }, { "type": "Feature", "geometry": { @@ -14705,6 +14733,29 @@ "socket:type2_cable": "False" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 2.238002, + 48.978759 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "WAAT SAS | FR*WAT", + "email": "exploitation@waat.fr", + "network": "WAAT", + "ref": "706244", + "socket:type2": "yes", + "fee": "False", + "authentication:none": "True", + "reservation": "no", + "opening_hours": "24/7", + "socket:type2_cable": "False" + } + }, { "type": "Feature", "geometry": { diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_971.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_971.json new file mode 100644 index 00000000..81095762 --- /dev/null +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_971.json @@ -0,0 +1,559 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5681025, + 16.24180386 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BNCC1SH0T1", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5413194, + 16.25249499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BGK8U5EEDE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5413194, + 16.25249499 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BGK8U5EEDE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.2751846, + 16.25790761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TA9HIA7WJP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E2ZYVDEZCI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E2ZYVDEZCI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.2751846, + 16.25790761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TA9HIA7WJP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.2751846, + 16.25790761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TA9HIA7WJP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E2ZYVDEZCI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E2ZYVDEZCI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E2ZYVDEZCI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E2ZYVDEZCI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.2751846, + 16.25790761 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "TA9HIA7WJP", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E2ZYVDEZCI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.5892723, + 16.25229414 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "E2ZYVDEZCI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.41, + 16.01 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "428801658", + "email": "odile.coumau@ezdrive.fr", + "network": "Bananes Vertes St Claude", + "ref": "FREZDE28287", + "socket:typee": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.72048039949465, + 15.999101989340252 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "819761883", + "email": "odile.coumau@ezdrive.fr", + "network": "Mc Donald's Basse Terre", + "ref": "FREZDE63396", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "false", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-20" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.72, + 16 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "434675906", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696901897", + "network": "McDonald's Basse terre", + "ref": "FR*EZD*E63395, FR*EZD*E63396", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.52, + 16.26 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "819761883", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696901897", + "network": "BEBE 9 Les Abymes", + "ref": "VRT_NB_1290", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.61, + 16.2 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "819761883", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696901897", + "network": "ETS POMMEZ", + "ref": "FR*EZD*E38642, FR*EZD*E38643", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-15" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.56, + 16.24 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "819761883", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696901897", + "network": "Fitness park Jarry", + "ref": "FR*EZD*E26743, FR*EZD*E8102", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.69, + 16.03 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "428801658", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696901897", + "network": "Bananes Vertes St Claude", + "ref": "FR*EZD*E28286, FR*EZD*E28287", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-23" + } + } + ] +} \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_972.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_972.json new file mode 100644 index 00000000..4d5100d4 --- /dev/null +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_972.json @@ -0,0 +1,782 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.139421, + 14.650675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B9F5WIHHBL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.139421, + 14.650675 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "B9F5WIHHBL", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-08-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.9737496, + 14.55460115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJ6XHLSS2QBEH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.9737496, + 14.55460115 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LLJ6XHLSS2QBEH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-06-22", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.18036, + 14.697624 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "484506555", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Petibonum", + "ref": "FR*EZD*E20883, FR*EZD*E20884", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.972756, + 14.601781 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "431416288", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "DIGICEL ANTILLES FRANCAISES GUYANE", + "ref": "FR*EZD*E95818, FR*EZD*E95819", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.00386, + 14.607184 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "788896082", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Colibri", + "ref": "FR*EZD*E20881, FR*EZD*E20882", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.07342, + 14.60317 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "334174190", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Socanparc - Pointe Simon", + "ref": "FR*EZD*E28314, FR*EZD*E28315", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 06:00-20:00,Sa 07:00-14:00", + "start_date": "2021-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.06751, + 14.608331 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "334174190", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Socanparc - Lafcadio", + "ref": "FR*EZD*E28312, FR*EZD*E28313", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 06:00-20:00,Sa 07:00-14:00", + "start_date": "2021-12-27" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.04232, + 14.472874 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "842762346", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Le chill", + "ref": "FR*EZD*E20771, FR*EZD*E20772", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.02208, + 14.813607 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "842796641", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Koud'pouss", + "ref": "FR*EZD*E66784, FR*EZD*E66785", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.0255406, + 14.62847996 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "328490685", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Antilles Téléphone", + "ref": "FR*EZD*E38638,FR*EZD*E38639", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.027682, + 14.615813 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "331647602", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "BUT ", + "ref": "FR*EZD*E63049,FR*EZD*E63050,FR*EZD*E63057,FR*EZD*E63058", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-03-06" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.04633536, + 14.59493306 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "841748551", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Hôtel B&B", + "ref": "FR*EZD*E63047,FR*EZD*E63048,FR*EZD*E93917,FR*EZD*E93918,FR*EZD*E63053,FR*EZD*E63054", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.00997, + 14.604876 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "500634688", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "SEEN ", + "ref": "FR*EZD*E45697,FR*EZD*E45709", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-12" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.0238, + 14.616381 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "824352322", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "Norauto", + "ref": "FR*EZD*E20869,FR*EZD*E20870", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-29" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.99128, + 14.612948 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "391279924", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "GIE CENTREAUTODIS", + "ref": "FR*EZD*E63031, FR*EZD*E63032, FR*EZD*E112993, FR*EZD*E112994", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.04941, + 14.608132 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "539439463", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Diet Vert ", + "ref": "FR*EZD*E45695", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-08" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.03312, + 14.614933 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "833393184", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "GHP", + "ref": "FR*EZD*E38632,FR*EZD*E38633", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-11" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.2253515, + 14.8023925 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "219722196", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Mairie du Prêcheur", + "ref": "FR*EZD*E28306,FR*EZD*E28307", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-19" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.13439, + 14.772175 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "813107943", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696 901 897", + "network": "New Peleen", + "ref": "FR*EZD*E28298,FR*EZD*E28299", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-18" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.02603, + 14.61776 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "341861367", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Sodiva Citroên", + "ref": "FR*EZD*E26669, FR*EZD*E26670", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-24" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.99089, + 14.631557 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "380129866", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Orange OGC", + "ref": "FR*EZD*E20775,FR*EZD*E20776", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.04474, + 14.603169 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "380129866", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Orange Pointe de Grives", + "ref": "FR*EZD*E20873, FR*EZD*E20874,fr*ezd*e45685", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-14" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.99684, + 14.609692 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "485186019", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Mr Bricolage Petit Manoir", + "ref": "FR*EZD*E63135,FR*EZD*E63136", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-26" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.08122, + 14.615527 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "303188528", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Simar les Cycas", + "ref": "FR*EZD*E139858", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-01" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.09407341836829, + 14.607158013009274 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GREEN TECHNOLOGIE", + "owner:ref:FR:SIREN": "393628136", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696295629", + "network": "CASINO BATELIERE PLAZZA", + "ref": "VRT_NB_935, VRT_NB_936", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-04-04" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.93685837866524, + 14.560713873777255 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GREEN TECHNOLOGIE", + "owner:ref:FR:SIREN": "219722238", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696295629", + "network": "COMMUNE DE SAINT ESPRIT", + "ref": "VRT_NB_1392", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-16" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -60.902208073487955, + 14.486405978847023 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GREEN TECHNOLOGIE", + "owner:ref:FR:SIREN": "219722204", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696295629", + "network": "MARCHE DE RIVIERE PILOTE", + "ref": "VRT_NB_243_2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-08-10" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -61.0396036414057, + 14.670001347489613 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "GREEN TECHNOLOGIE", + "owner:ref:FR:SIREN": "219740123", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696295629", + "network": "972 - SAINT JOSEPH", + "ref": "VRT_NB_933", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-01" + } + } + ] +} \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_973.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_973.json new file mode 100644 index 00000000..0d134137 --- /dev/null +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_973.json @@ -0,0 +1,264 @@ +{ + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.31936, + 4.903192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L5AB9NSGAH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.31936, + 4.903192 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L5AB9NSGAH", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.32188977802357, + 4.909708809721746 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "500754130", + "email": "odile.coumau@ezdrive.fr", + "phone": "0696901897", + "network": "MIDAS - 973", + "ref": "FR*EZD*E45628", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo-Fr 07:30-17:15, Sa 07:30-12:15", + "start_date": "2022-05-10", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.27712, + 4.8580774 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "350072666", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Argos", + "ref": "FR*EZD*E20791,FR*EZD*E20792", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-01-05" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.272843, + 4.909545 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "529558108", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Jo Froid", + "ref": "FR*EZD*E20887,FR*EZD*E20888", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.36621, + 4.8792952 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "503449878", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Hôtel La Chaumière", + "ref": "FR*EZD*E45643", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.33534, + 4.846775 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "337770341", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Hôtel La Marmotte", + "ref": "FR*EZD*E45632", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-28" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.305634, + 4.938339 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "789951456", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Hôpital privé Saint Adrien", + "ref": "FR*EZD*E26679,FR*EZD*E26680", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-22" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.32731, + 4.9351181 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "793418542", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Agence 973", + "ref": "FR*EZD*E45629", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-21" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + -52.27651, + 4.9046378 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Green Technologie", + "owner:ref:FR:SIREN": "219733094", + "email": "odile.coumeau@greentechnologie.net", + "phone": "696901897", + "network": "Maire de Remire-Montjoly", + "ref": "FR*EZD*E65528, FR*EZD*E65529", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-12-30" + } + } + ] +} \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_974.json b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_974.json index 1c22e482..7624a3d5 100644 --- a/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_974.json +++ b/mapping_geojson_to_osm_tags/output/my_converted_data_set_filtered_zipcode_974.json @@ -6,8 +6,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.4906, - -20.8901 + 55.6346, + -20.9288 ] }, "properties": { @@ -16,1269 +16,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "MMGYMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4906, - -20.8901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMGYMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3183, - -20.9455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RLWJHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4906, - -20.8901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMGYMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4602, - -21.3343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNCRPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4602, - -21.3343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNCRPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4602, - -21.3343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNCRPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3183, - -20.9455 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RLWJHC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4602, - -21.3343 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LNCRPQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4906, - -20.8901 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "MMGYMF", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-12-27", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.26599292, - -21.0141679 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "PIPHPE34WD", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5002, - -20.8906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZWNSB", + "ref": "Speedyreusuz", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2018-11-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5002, - -20.8906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZWNSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.471785, - -21.327415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6DAT3JJ7M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.471785, - -21.327415 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "L6DAT3JJ7M", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-09-07", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5002, - -20.8906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZWNSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5002, - -20.8906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZWNSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5002, - -20.8906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZWNSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5002, - -20.8906 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "CZWNSB", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2018-11-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.632901, - -20.9292757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSZO153YAE", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.632901, - -20.9292757 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WSZO153YAE", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6343988, - -20.929436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSBWTUJWGI", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6343988, - -20.929436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSBWTUJWGI", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6343988, - -20.929436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSBWTUJWGI", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6343988, - -20.929436 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZSBWTUJWGI", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-06-14", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.475221, - -20.896466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OSU51U9FJZ", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-24", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.475221, - -20.896466 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OSU51U9FJZ", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-04-24", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.50175, - -20.898202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCGRS7CQWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.50175, - -20.898202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCGRS7CQWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.50175, - -20.898202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCGRS7CQWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.50175, - -20.898202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCGRS7CQWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.50175, - -20.898202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCGRS7CQWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.50175, - -20.898202 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FCGRS7CQWI", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-11-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46906132, - -21.3386997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKR9MTGPDS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46906132, - -21.3386997 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YKR9MTGPDS", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.45680189, - -21.3325437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DRECSOIEMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.45680189, - -21.3325437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DRECSOIEMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4593, - -21.334427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FRILS7BK9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4593, - -21.334427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FRILS7BK9O", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.45680189, - -21.3325437 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "DRECSOIEMU", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4684, - -21.3289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTVTHJ", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.70402909, - -21.033494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWGRIN70CW", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.70402909, - -21.033494 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EWGRIN70CW", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-10", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4684, - -21.3289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTVTHJ", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4684, - -21.3289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTVTHJ", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4684, - -21.3289 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BTVTHJ", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2019-01-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46775447, - -21.3275523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLIDF9PFDM", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46775447, - -21.3275523 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BLIDF9PFDM", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4984624, - -20.8949185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HOT2JOEZEY", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4984624, - -20.8949185 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "HOT2JOEZEY", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-02-03", + "start_date": "2017-11-13", "socket:type2_cable": "false" } }, @@ -1308,442 +53,6 @@ "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47332648, - -21.3245085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AK6LDZLLUO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-18", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.44710048, - -21.3238889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPSOXWJL5C", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.44710048, - -21.3238889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPSOXWJL5C", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.44710048, - -21.3238889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPSOXWJL5C", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-08", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.44710048, - -21.3238889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPSOXWJL5C", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.44710048, - -21.3238889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPSOXWJL5C", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-09", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.44710048, - -21.3238889 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "EPSOXWJL5C", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-03-17", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.495491, - -20.895464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LI6JTMDSG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-21", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6346, - -20.9288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Speedyreusuz", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6346, - -20.9288 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Speedyreusuz", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-11-13", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.495491, - -20.895464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LI6JTMDSG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-21", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.495491, - -20.895464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LI6JTMDSG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-21", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.495491, - -20.895464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LI6JTMDSG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-21", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.495491, - -20.895464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LI6JTMDSG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.495491, - -20.895464 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LI6JTMDSG0", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-15", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47332648, - -21.3245085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AK6LDZLLUO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-18", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47332648, - -21.3245085 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AK6LDZLLUO", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "true", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-02-18", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -1848,6 +157,266 @@ "socket:type2_cable": "false" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.495491, + -20.895464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LI6JTMDSG0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.495491, + -20.895464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LI6JTMDSG0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47332648, + -21.3245085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AK6LDZLLUO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47332648, + -21.3245085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AK6LDZLLUO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47332648, + -21.3245085 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AK6LDZLLUO", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.495491, + -20.895464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LI6JTMDSG0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.495491, + -20.895464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LI6JTMDSG0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.495491, + -20.895464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LI6JTMDSG0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.495491, + -20.895464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LI6JTMDSG0", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6346, + -20.9288 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Speedyreusuz", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-11-13", + "socket:type2_cable": "false" + } + }, { "type": "Feature", "geometry": { @@ -1879,8 +448,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.5726, - -21.204 + 55.44710048, + -21.3238889 ] }, "properties": { @@ -1889,14 +458,38 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "Engencafres", - "socket:typee": "yes", + "ref": "EPSOXWJL5C", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2017-09-19", + "start_date": "2023-03-17", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.44710048, + -21.3238889 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EPSOXWJL5C", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-03-08", "socket:type2_cable": "false" } }, @@ -1905,8 +498,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.2307, - -21.0828 + 55.44710048, + -21.3238889 ] }, "properties": { @@ -1915,14 +508,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "Engenlagon", - "socket:typee": "yes", - "socket:type2": "yes", + "ref": "EPSOXWJL5C", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2017-09-19", + "start_date": "2023-03-08", "socket:type2_cable": "false" } }, @@ -1931,8 +523,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.439, - -21.2976 + 55.44710048, + -21.3238889 ] }, "properties": { @@ -1941,14 +533,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "Engenstpier", - "socket:typee": "yes", - "socket:type2": "yes", + "ref": "EPSOXWJL5C", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2017-09-19", + "start_date": "2023-03-17", "socket:type2_cable": "false" } }, @@ -1957,8 +548,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.4741, - -21.1373 + 55.44710048, + -21.3238889 ] }, "properties": { @@ -1967,14 +558,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "Engencilaos", - "socket:typee": "yes", - "socket:type2": "yes", + "ref": "EPSOXWJL5C", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2017-09-19", + "start_date": "2023-03-08", "socket:type2_cable": "false" } }, @@ -1983,8 +573,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.304, - -21.04 + 55.44710048, + -21.3238889 ] }, "properties": { @@ -1993,14 +583,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "Engenguill", - "socket:typee": "yes", - "socket:type2": "yes", + "ref": "EPSOXWJL5C", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2017-09-19", + "start_date": "2023-03-09", "socket:type2_cable": "false" } }, @@ -2009,8 +598,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.25128, - -21.0427 + 55.6787, + -20.9961 ] }, "properties": { @@ -2019,14 +608,67 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "RITQEFPOJM", + "ref": "braspanon2002", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-06-21", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.618326, + -20.914099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SHRWKOFQRZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.447557, + -20.883698 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SKSFD8QFSZ", + "socket:type2": "yes", "socket:type2_combo": "yes", "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-10-30", + "start_date": "2022-12-12", "socket:type2_cable": "false" } }, @@ -2035,8 +677,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.31783, - -20.9791 + 55.618326, + -20.914099 ] }, "properties": { @@ -2045,13 +687,64 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "O2JITRMIMN", + "ref": "SHRWKOFQRZ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.618326, + -20.914099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SHRWKOFQRZ", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.618326, + -20.914099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "SHRWKOFQRZ", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-01-20", + "start_date": "2022-09-26", "socket:type2_cable": "false" } }, @@ -2060,8 +753,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.29748, - -20.9429 + 55.618326, + -20.914099 ] }, "properties": { @@ -2070,13 +763,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "EQRCK1OHOC", + "ref": "ZPQVODGTYL", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-01-19", + "start_date": "2022-09-26", "socket:type2_cable": "false" } }, @@ -2085,8 +778,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.29748, - -20.9429 + 55.64261895, + -20.9385849 ] }, "properties": { @@ -2095,14 +788,15 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "EQRCK1OHOC", + "ref": "THLHDS2GGN", + "socket:type2": "yes", "socket:type2_combo": "yes", "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-10-30", + "start_date": "2022-12-12", "socket:type2_cable": "false" } }, @@ -2111,8 +805,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.47581, - -21.3136 + 55.64261895, + -20.9385849 ] }, "properties": { @@ -2121,64 +815,15 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "GWXQ3IKEQL", + "ref": "THLHDS2GGN", "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3292, - -20.9426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZCT8UV6EN8", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47581, - -21.3136 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GWXQ3IKEQL", "socket:type2_combo": "yes", "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-10-30", + "start_date": "2022-12-12", "socket:type2_cable": "false" } }, @@ -2187,8 +832,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.3292, - -20.9426 + 55.3191, + -20.9499 ] }, "properties": { @@ -2197,15 +842,17 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "ZCT8UV6EN8", + "ref": "leportzac2000", + "socket:typee": "yes", + "socket:type2": "yes", "socket:type2_combo": "yes", "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2020-10-30", - "socket:type2_cable": "false" + "start_date": "2020-10-12", + "socket:type2_cable": "1" } }, { @@ -2213,8 +860,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.5298, - -20.9172 + 55.3261, + -20.9621 ] }, "properties": { @@ -2223,342 +870,7 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "AVGUJC2YHB", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.31783, - -20.9791 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "O2JITRMIMN", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.25128, - -21.0427 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RITQEFPOJM", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5298, - -20.9172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "AVGUJC2YHB", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-01-20", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.492163, - -20.893393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LG2QVY6WC6", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.492163, - -20.893393 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LG2QVY6WC6", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-11", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.7149, - -21.0522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Engenstben", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5298, - -20.9172 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "Engenstemari", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-09-19", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.33345, - -21.2441 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "VORHPZSFUA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-14", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46099, - -21.3341 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "LQAKGFHXPA", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.29748, - -20.9429 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "RR8JDRWME6", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4886, - -20.8928 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "JPMAOIPEVR", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3292, - -20.9426 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "GHOQAEUSKQ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.7171, - -21.0381 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stbenoitjaures", + "ref": "possessjolizac", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -2601,8 +913,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.257, - -21.0889 + 55.5014, + -21.28043 ] }, "properties": { @@ -2611,14 +923,204 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "salinetamarin", + "ref": "J2WYHZVZ7P", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-31", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.2237, + -21.0401 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "stgillestama", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-18", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.503491, + -21.257457 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BMMQ9BPZYD", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.49691, + -20.9015 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CNMYXQ1FIG", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-18", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.446, + -21.3213 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "pierrefondsrn", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-18", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6487, + -20.9511 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "standreidf", + "socket:typee": "yes", + "socket:type2": "yes", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-05-31", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.618326, + -20.914099 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZPQVODGTYL", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5675, + -20.8982 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "saintemarien2", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2017-06-20", + "start_date": "2017-06-21", "socket:type2_cable": "false" } }, @@ -2653,8 +1155,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.5675, - -20.8982 + 55.7171, + -21.0381 ] }, "properties": { @@ -2663,7 +1165,7 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "saintemarien2", + "ref": "stbenoitjaures", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", @@ -2757,8 +1259,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.49691, - -20.9015 + 55.257, + -21.0889 ] }, "properties": { @@ -2767,515 +1269,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "CNMYXQ1FIG", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.446, - -21.3213 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "pierrefondsrn", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.447557, - -20.883698 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SKSFD8QFSZ", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.503491, - -21.257457 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BMMQ9BPZYD", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-10-26", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.2237, - -21.0401 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stgillestama", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-18", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.4001, - -21.2831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "stpierrelegol", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3191, - -20.9499 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "leportzac2000", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.5014, - -21.28043 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "J2WYHZVZ7P", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.6487, - -20.9511 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "standreidf", - "socket:typee": "yes", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-05-31", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHRWKOFQRZ", + "ref": "salinetamarin", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-09-26", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHRWKOFQRZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.3261, - -20.9621 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "possessjolizac", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-21", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHRWKOFQRZ", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "SHRWKOFQRZ", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZPQVODGTYL", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZPQVODGTYL", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZPQVODGTYL", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZPQVODGTYL", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.618326, - -20.914099 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ZPQVODGTYL", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-09-26", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.64261895, - -20.9385849 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "THLHDS2GGN", - "socket:type2": "yes", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-12", + "start_date": "2017-06-20", "socket:type2_cable": "false" } }, @@ -3310,8 +1311,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.64261895, - -20.9385849 + 55.618326, + -20.914099 ] }, "properties": { @@ -3320,7 +1321,32 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "THLHDS2GGN", + "ref": "ZPQVODGTYL", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-09-26", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4001, + -21.2831 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "stpierrelegol", "socket:type2": "yes", "socket:type2_combo": "yes", "socket:chademo": "yes", @@ -3328,7 +1354,7 @@ "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-12-12", + "start_date": "2021-05-31", "socket:type2_cable": "false" } }, @@ -3337,8 +1363,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.6787, - -20.9961 + 55.618326, + -20.914099 ] }, "properties": { @@ -3347,92 +1373,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "braspanon2002", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2017-06-21", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30042911, - -21.2188338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OF2V5RUQC2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47542465, - -21.3231281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2AJENOGKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47474772, - -21.3225547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QIGUDGQUCV", + "ref": "ZPQVODGTYL", "socket:type2_combo": "yes", - "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-12-28", + "start_date": "2022-09-26", "socket:type2_cable": "false" } }, @@ -3441,8 +1388,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.47542465, - -21.3231281 + 55.618326, + -20.914099 ] }, "properties": { @@ -3451,169 +1398,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "C2AJENOGKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47542465, - -21.3231281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2AJENOGKE", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30042911, - -21.2188338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OF2V5RUQC2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47542465, - -21.3231281 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "C2AJENOGKE", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30042911, - -21.2188338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OF2V5RUQC2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30042911, - -21.2188338 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OF2V5RUQC2", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2023-01-31", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.366612, - -21.265831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BUE8MYS7P9", + "ref": "ZPQVODGTYL", "socket:type2_combo": "yes", - "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-12-28", + "start_date": "2022-09-26", "socket:type2_cable": "false" } }, @@ -3622,8 +1413,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.366612, - -21.265831 + 55.475221, + -20.896466 ] }, "properties": { @@ -3632,14 +1423,64 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "BUE8MYS7P9", + "ref": "OSU51U9FJZ", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.475221, + -20.896466 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OSU51U9FJZ", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-04-24", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.471785, + -21.327415 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "L6DAT3JJ7M", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-12-28", + "start_date": "2021-09-07", "socket:type2_cable": "false" } }, @@ -3648,8 +1489,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.39766347, - -21.2820316 + 55.471785, + -21.327415 ] }, "properties": { @@ -3658,39 +1499,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "PDIWE44BBM", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.366612, - -21.265831 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "BUE8MYS7P9", + "ref": "L6DAT3JJ7M", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-12-28", + "start_date": "2021-09-07", "socket:type2_cable": "false" } }, @@ -3699,8 +1515,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.46983122, - -21.3170725 + 55.5002, + -20.8906 ] }, "properties": { @@ -3709,14 +1525,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "ASJPOGWDW9", + "ref": "CZWNSB", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-02", + "start_date": "2018-11-15", "socket:type2_cable": "false" } }, @@ -3725,8 +1541,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.660558, - -20.961651 + 55.5002, + -20.8906 ] }, "properties": { @@ -3735,65 +1551,14 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "M8SKCP6RWC", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.660558, - -20.961651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M8SKCP6RWC", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46983122, - -21.3170725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASJPOGWDW9", + "ref": "CZWNSB", "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-06-02", + "start_date": "2018-11-15", "socket:type2_cable": "false" } }, @@ -3802,8 +1567,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.366612, - -21.265831 + 55.5002, + -20.8906 ] }, "properties": { @@ -3812,13 +1577,424 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "BUE8MYS7P9", + "ref": "CZWNSB", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-12-28", + "start_date": "2018-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.632901, + -20.9292757 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WSZO153YAE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.632901, + -20.9292757 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WSZO153YAE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6343988, + -20.929436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZSBWTUJWGI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6343988, + -20.929436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZSBWTUJWGI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6343988, + -20.929436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZSBWTUJWGI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.6343988, + -20.929436 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZSBWTUJWGI", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-06-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5002, + -20.8906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CZWNSB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5002, + -20.8906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CZWNSB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5002, + -20.8906 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "CZWNSB", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2018-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.45680189, + -21.3325437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DRECSOIEMU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.45680189, + -21.3325437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DRECSOIEMU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4593, + -21.334427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FRILS7BK9O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4593, + -21.334427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FRILS7BK9O", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46906132, + -21.3386997 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKR9MTGPDS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.45680189, + -21.3325437 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "DRECSOIEMU", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-13", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46906132, + -21.3386997 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YKR9MTGPDS", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-10-13", "socket:type2_cable": "false" } }, @@ -3853,8 +2029,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.39766347, - -21.2820316 + 55.366612, + -21.265831 ] }, "properties": { @@ -3863,59 +2039,7 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "PDIWE44BBM", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-12-28", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.46983122, - -21.3170725 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "ASJPOGWDW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.47474772, - -21.3225547 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "QIGUDGQUCV", + "ref": "BUE8MYS7P9", "socket:type2": "yes", "fee": "false", "authentication:none": "true", @@ -3930,8 +2054,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.46983122, - -21.3170725 + 55.366612, + -21.265831 ] }, "properties": { @@ -3940,197 +2064,17 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "ASJPOGWDW9", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2021-06-02", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.63067564, - -21.1329182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FE7WITDLPX", + "ref": "BUE8MYS7P9", "socket:type2_combo": "yes", "socket:chademo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-11-02", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.63067564, - -21.1329182 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "FE7WITDLPX", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-02", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.660558, - -20.961651 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "M8SKCP6RWC", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", "start_date": "2022-12-28", "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.65178355, - -20.9630462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPC00KCZXZ", - "socket:type2_combo": "yes", - "socket:chademo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.65178355, - -20.9630462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPC00KCZXZ", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.65178355, - -20.9630462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPC00KCZXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.65178355, - -20.9630462 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "WPC00KCZXZ", - "socket:typee": "yes", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-10-31", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -4157,6 +2101,802 @@ "socket:type2_cable": "false" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.65178355, + -20.9630462 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WPC00KCZXZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.366612, + -21.265831 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BUE8MYS7P9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47474772, + -21.3225547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QIGUDGQUCV", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47542465, + -21.3231281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C2AJENOGKE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47542465, + -21.3231281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C2AJENOGKE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46983122, + -21.3170725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ASJPOGWDW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46983122, + -21.3170725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ASJPOGWDW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46983122, + -21.3170725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ASJPOGWDW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46983122, + -21.3170725 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ASJPOGWDW9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-06-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.660558, + -20.961651 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M8SKCP6RWC", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.660558, + -20.961651 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M8SKCP6RWC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.65178355, + -20.9630462 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WPC00KCZXZ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.39766347, + -21.2820316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PDIWE44BBM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.39766347, + -21.2820316 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PDIWE44BBM", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.65178355, + -20.9630462 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WPC00KCZXZ", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.65178355, + -20.9630462 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "WPC00KCZXZ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-10-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.660558, + -20.961651 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "M8SKCP6RWC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47474772, + -21.3225547 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "QIGUDGQUCV", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47542465, + -21.3231281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C2AJENOGKE", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47542465, + -21.3231281 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "C2AJENOGKE", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30042911, + -21.2188338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OF2V5RUQC2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30042911, + -21.2188338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OF2V5RUQC2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.63067564, + -21.1329182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FE7WITDLPX", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.366612, + -21.265831 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BUE8MYS7P9", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-12-28", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.63067564, + -21.1329182 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FE7WITDLPX", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-02", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30042911, + -21.2188338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OF2V5RUQC2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30042911, + -21.2188338 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OF2V5RUQC2", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-31", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4984624, + -20.8949185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HOT2JOEZEY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4984624, + -20.8949185 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "HOT2JOEZEY", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46775447, + -21.3275523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BLIDF9PFDM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46775447, + -21.3275523 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BLIDF9PFDM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-02-03", + "socket:type2_cable": "false" + } + }, { "type": "Feature", "geometry": { @@ -4240,8 +2980,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.365753, - -21.279779 + 55.70402909, + -21.033494 ] }, "properties": { @@ -4250,63 +2990,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "POYTUZYBZT", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2022-11-18", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.7149, - -21.0522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJHMGCHDSF", + "ref": "EWGRIN70CW", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-12-12", - "socket:type2_cable": "1" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.7149, - -21.0522 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "OJHMGCHDSF", - "socket:type2_combo": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "24/7", - "start_date": "2020-10-30", + "start_date": "2022-11-10", "socket:type2_cable": "false" } }, @@ -4315,8 +3005,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.365753, - -21.279779 + 55.70402909, + -21.033494 ] }, "properties": { @@ -4325,13 +3015,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "POYTUZYBZT", + "ref": "EWGRIN70CW", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-11-18", + "start_date": "2022-11-10", "socket:type2_cable": "false" } }, @@ -4340,8 +3030,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.7149, - -21.0522 + 55.4684, + -21.3289 ] }, "properties": { @@ -4350,13 +3040,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "OJHMGCHDSF", - "socket:type2_combo": "yes", + "ref": "BTVTHJ", + "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2021-01-20", + "start_date": "2019-01-17", "socket:type2_cable": "false" } }, @@ -4365,8 +3055,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.365753, - -21.279779 + 55.4684, + -21.3289 ] }, "properties": { @@ -4375,13 +3065,138 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "POYTUZYBZT", - "socket:type2_combo": "yes", + "ref": "BTVTHJ", + "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-11-18", + "start_date": "2019-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4684, + -21.3289 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTVTHJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4684, + -21.3289 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "BTVTHJ", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-01-17", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30127614, + -21.21755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQWPOFVGFO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00", + "start_date": "2022-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30127614, + -21.21755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQWPOFVGFO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00", + "start_date": "2022-06-06", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.30127614, + -21.21755 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "YQWPOFVGFO", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00", + "start_date": "2022-06-06", "socket:type2_cable": "false" } }, @@ -4486,81 +3301,6 @@ "socket:type2_cable": "false" } }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30127614, - -21.21755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQWPOFVGFO", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00", - "start_date": "2022-06-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30127614, - -21.21755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQWPOFVGFO", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00", - "start_date": "2022-06-06", - "socket:type2_cable": "false" - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 55.30127614, - -21.21755 - ] - }, - "properties": { - "amenity": "charging_station", - "operator": "Freshmile SAS", - "email": "web@freshmile.com", - "phone": "0369246732", - "network": "Freshmile", - "ref": "YQWPOFVGFO", - "socket:type2": "yes", - "fee": "false", - "authentication:none": "true", - "reservation": "no", - "opening_hours": "Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00", - "start_date": "2022-06-06", - "socket:type2_cable": "false" - } - }, { "type": "Feature", "geometry": { @@ -4951,6 +3691,472 @@ "socket:type2_cable": "false" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.50175, + -20.898202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FCGRS7CQWI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.50175, + -20.898202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FCGRS7CQWI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.50175, + -20.898202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FCGRS7CQWI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.50175, + -20.898202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FCGRS7CQWI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.50175, + -20.898202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FCGRS7CQWI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.50175, + -20.898202 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "FCGRS7CQWI", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-11-15", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4906, + -20.8901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MMGYMF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4906, + -20.8901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MMGYMF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4906, + -20.8901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MMGYMF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4602, + -21.3343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNCRPQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4602, + -21.3343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNCRPQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4602, + -21.3343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNCRPQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3183, + -20.9455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RLWJHC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.26599292, + -21.0141679 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "PIPHPE34WD", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-02-03", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3183, + -20.9455 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RLWJHC", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4602, + -21.3343 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LNCRPQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4906, + -20.8901 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "MMGYMF", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "true", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2019-12-27", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4681296, + -21.3289561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JNNF0FAFIC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12", + "socket:type2_cable": "false" + } + }, { "type": "Feature", "geometry": { @@ -4976,6 +4182,56 @@ "socket:type2_cable": "false" } }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46815089, + -21.3289561 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JNNF0FAFIC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46814331, + -21.3289464 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JNNF0FAFIC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12", + "socket:type2_cable": "false" + } + }, { "type": "Feature", "geometry": { @@ -5006,7 +4262,32 @@ "geometry": { "type": "Point", "coordinates": [ - 55.46814331, + 55.46813475, + -21.3289361 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JNNF0FAFIC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-07-12", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46815448, -21.3289464 ] }, @@ -5056,8 +4337,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.46815448, - -21.3289464 + 55.365753, + -21.279779 ] }, "properties": { @@ -5066,13 +4347,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "JNNF0FAFIC", - "socket:type2": "yes", + "ref": "POYTUZYBZT", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-07-12", + "start_date": "2022-11-18", "socket:type2_cable": "false" } }, @@ -5081,8 +4362,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.4681296, - -21.3289561 + 55.7149, + -21.0522 ] }, "properties": { @@ -5091,13 +4372,38 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "JNNF0FAFIC", + "ref": "OJHMGCHDSF", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-07-12", + "start_date": "2022-12-12", + "socket:type2_cable": "1" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.365753, + -21.279779 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "POYTUZYBZT", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-18", "socket:type2_cable": "false" } }, @@ -5106,8 +4412,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.46813475, - -21.3289361 + 55.7149, + -21.0522 ] }, "properties": { @@ -5116,13 +4422,13 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "JNNF0FAFIC", - "socket:type2": "yes", + "ref": "OJHMGCHDSF", + "socket:type2_combo": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-07-12", + "start_date": "2020-10-30", "socket:type2_cable": "false" } }, @@ -5131,8 +4437,8 @@ "geometry": { "type": "Point", "coordinates": [ - 55.46815089, - -21.3289561 + 55.365753, + -21.279779 ] }, "properties": { @@ -5141,13 +4447,707 @@ "email": "web@freshmile.com", "phone": "0369246732", "network": "Freshmile", - "ref": "JNNF0FAFIC", + "ref": "POYTUZYBZT", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2022-11-18", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.7149, + -21.0522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "OJHMGCHDSF", + "socket:type2_combo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4886, + -20.8928 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "JPMAOIPEVR", + "socket:typee": "yes", "socket:type2": "yes", "fee": "false", "authentication:none": "true", "reservation": "no", "opening_hours": "24/7", - "start_date": "2022-07-12", + "start_date": "2020-10-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.492163, + -20.893393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LG2QVY6WC6", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.4741, + -21.1373 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Engencilaos", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.304, + -21.04 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Engenguill", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5726, + -21.204 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Engencafres", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.439, + -21.2976 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Engenstpier", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.2307, + -21.0828 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Engenlagon", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5298, + -20.9172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Engenstemari", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.7149, + -21.0522 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "Engenstben", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2017-09-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.29748, + -20.9429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RR8JDRWME6", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.33345, + -21.2441 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "VORHPZSFUA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-14", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3292, + -20.9426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GHOQAEUSKQ", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.46099, + -21.3341 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LQAKGFHXPA", + "socket:typee": "yes", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.492163, + -20.893393 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "LG2QVY6WC6", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2023-01-11", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.31783, + -20.9791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O2JITRMIMN", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.31783, + -20.9791 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "O2JITRMIMN", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47581, + -21.3136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GWXQ3IKEQL", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.29748, + -20.9429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EQRCK1OHOC", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.29748, + -20.9429 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "EQRCK1OHOC", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-19", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3292, + -20.9426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZCT8UV6EN8", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5298, + -20.9172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AVGUJC2YHB", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.3292, + -20.9426 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "ZCT8UV6EN8", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.5298, + -20.9172 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "AVGUJC2YHB", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.25128, + -21.0427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RITQEFPOJM", + "socket:type2": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2021-01-20", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.25128, + -21.0427 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "RITQEFPOJM", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30", + "socket:type2_cable": "false" + } + }, + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [ + 55.47581, + -21.3136 + ] + }, + "properties": { + "amenity": "charging_station", + "operator": "Freshmile SAS", + "email": "web@freshmile.com", + "phone": "0369246732", + "network": "Freshmile", + "ref": "GWXQ3IKEQL", + "socket:type2_combo": "yes", + "socket:chademo": "yes", + "fee": "false", + "authentication:none": "true", + "reservation": "no", + "opening_hours": "24/7", + "start_date": "2020-10-30", "socket:type2_cable": "false" } }, diff --git a/mapping_geojson_to_osm_tags/output/variance.csv b/mapping_geojson_to_osm_tags/output/variance.csv index 4e7fb5c1..a0f61e21 100644 --- a/mapping_geojson_to_osm_tags/output/variance.csv +++ b/mapping_geojson_to_osm_tags/output/variance.csv @@ -1,7 +1,41832 @@ -variance de ./etalab_data/small.csv +;variance de ./etalab_data/all.csv;Mon Aug 07 2023 16:24:39 GMT+0200 (heure d’été d’Europe centrale) ;nom_amenageur;siren_amenageur;contact_amenageur;nom_operateur;contact_operateur;telephone_operateur;nom_enseigne;id_station_itinerance;id_station_local;nom_station;implantation_station;adresse_station;code_insee_commune;coordonneesXY;nbre_pdc;id_pdc_itinerance;id_pdc_local;puissance_nominale;prise_type_ef;prise_type_2;prise_type_combo_ccs;prise_type_chademo;prise_type_autre;gratuit;paiement_acte;paiement_cb;paiement_autre;tarification;condition_acces;reservation;horaires;accessibilite_pmr;restriction_gabarit;station_deux_roues;raccordement;num_pdl;date_mise_en_service;observations;date_maj;cable_t2_attache;last_modified;datagouv_dataset_id;datagouv_resource_id;datagouv_organization_or_owner;consolidated_longitude;consolidated_latitude;consolidated_code_postal;consolidated_commune;consolidated_is_lon_lat_correct;consolidated_is_code_insee_verified +;2679;798;622;307;328;374;2739;18528;14298;15141;5;14433;3994;15008;42;41827;36503;107;8;8;8;7;6;9;8;8;9;238;2;7;385;4;175;6;3;2706;1778;167;717;8;887;736;887;229;14860;14845;2401;3787;2;2 ;ELECTRA;891624884;help@electra.com;ELECTRA;help@electra.com;;ELECTRA;FRELCPBROHI;;Bron - Hôtel Ibis Lyon Est;Station dédiée à la recharge rapide;36 avenue du Doyen Jean Lépine 69500 Bron;69029;[4.90415400,45.74800500];4;FRELCE2JW9;;225;false;false;true;false;false;false;true;true;true;;Accès libre;true;24/7;Accessibilité inconnue;Inconnu;false;Direct;N/A;2023-05-04;Télécharger l'application ELECTRA pour réserver et payer sur go-electra.com;2023-08-06;;2023-08-06T03:05:25.841000+00:00;623ca46c13130c3228abd018;e9bb3424-77cd-40ba-8bbd-5a19362d0365;electra;4.904154;45.748005;69500;Bron;True;True -;;;;;;;;FRELCPBLOHM;;Blotzheim - Hôtel Mercure Bâle Mulhouse Aéroport;;3 rue de l'industrie 68730 Blotzheim;68042;[7.50290400,47.60821400];8;FRELCEXY9P;;150;;;;;;;;;;;;;;;;;;;2022-09-22;;;;;;;;7.502904;47.608214;68730;Blotzheim;; -;;;;;;;;FRELCPSMCLE;;Saint-Magne-de-Castillon - E.Leclerc;;2 chemin de Perrin 33350 Saint-Magne-de-Castillon;33437;[-0.06340700,44.85401900];;FRELCEEEAW;;;;;;;;;;;;;;;;;;;;;2023-04-28;;;;;;;;-0.063407;44.854019;33350;Saint-Magne-de-Castillon;; \ No newline at end of file +;ARCACHON;213300098;responsable.proprete@ville-arcachon.fr;Izivia;sav@izivia.com;0972668001;ARCACHON;FRELCPBLOHM;FR*SOD*S*OTHR*181*3*_*_;Blotzheim - Hôtel Mercure Bâle Mulhouse Aéroport;Voirie;3 rue de l'industrie 68730 Blotzheim;68042;[7.50290400,47.60821400];8;FRELCEXY9P;FR*SOD*E*OTHR*181*3*1*_;150;true;true;false;true;true;true;0;false;;0.59€ / kwh;Accès réservé;false;Mo 06:30-19:00,Tu 06:30-19:00,We 06:30-19:00,Th 06:30-19:00,Fr 06:30-19:00;Accessible mais non réservé PMR;Aucune Restriction;true;;;2022-09-22;Conditions accès aux bornes dépendantes des accords et formules de votre EMSP;2023-08-04;false;2023-08-06T02:54:51.486000+00:00;61126f9cf52dc5cf5c3e78c9;884762be-51f3-44c3-b811-1e14c5d89262;izivia;7.502904;47.608214;68730;Blotzheim;False;False +;GARENNE;219200359;Fabrice.Chaillet@lagarennecolombes.fr;SOREGIES;support@modulo-energies.fr;0800 37 37 40;GARENNE;FRELCPSMCLE;FR*SOD*S*OTHR*181*5*_*_;Saint-Magne-de-Castillon - E.Leclerc;Parking privé à usage public;2 chemin de Perrin 33350 Saint-Magne-de-Castillon;33437;[-0.06340700,44.85401900];6;FRELCEEEAW;FR*SOD*E*OTHR*181*5*1*_;50;0;TRUE;0;0;0;0;1;0;false;inconnu;;0;Mo 00:00-08:00,Mo 17:00-24:00,Tu 00:00-08:00,Tu 17:00-24:00,We 00:00-08:00,We 17:00-24:00,Th 00:00-08:00,Th 17:00-24:00,Fr 00:00-08:00,Fr 17:00-24:00,Sa 00:00-24:00,Su 00:00-24:00;Non accessible;inconnu;0;Indirect;14419102590843;2023-04-28;;2023-08-03;true;2023-08-06T02:54:50.830000+00:00;61127b1e16fc6a7ef98a0950;425f7bfb-c12e-499d-a61b-03d3d619ad50;eco-movement;-0.063407;44.854019;33350;Saint-Magne-de-Castillon;; +;MOBIVE - SDEEG 33;253303473;nathalie.lalanne@sdeeg33.fr;;support@iecharge.io;+33 1 84 88 68 00;MOBIVE - SDEEG 33;FRELCPSORDD;FR*SOD*S*OTHR*181*1*_*_;Sorgues - Décor Discount;Parking public;Zone commerciale Avignon Nord, avenue François Mauriac 84700 Sorgues;84129;[4.88630000,43.98450100];10;FRELCEVDA7;FR*SOD*E*OTHR*181*1*1*_;300;1;1;False;False;False;False;False;False;0;0.40€ / kwh;;False;Mo 05:30-24:00,Tu 05:30-24:00,We 05:30-24:00,Th 05:30-24:00,Fr 05:30-24:00;Réservé PMR;Hauteur maximale 3m;False;;12345678912345;2022-06-20;EF connector is available at the site separately;2023-06-12;FALSE;2023-08-06T02:54:50.230000+00:00;6167e5428bdbf4343e86fd75;da7d05e7-78fa-4cab-9b9a-8632b21f0e97;gene-elec-35;4.8863;43.984501;84700;Sorgues;; +;FLEX-E;419070180;lucas.malacarne@izivia.com;GENE ELEC 35;info@chargepoint.com;+(33)-(1)-87210891;FLEX-E;FRELCPRENNO;FR*SOD*S*OTHR*181*4*_*_;Rennes - Novotel Rennes Alma;Parking privé réservé à la clientèle;48 avenue du Canada 35000 Rennes;35238;[-1.68291900,48.08224400];2;FRELCE88NP;FR*SOD*E*OTHR*181*4*1*_;22;False;True;FALSE;FALSE;FALSE;FALSE;false;FALSE;True;0,50;;TRUE;Mo 07:00-18:00,Tu 07:00-18:00,We 07:00-18:00,Th 07:00-18:00,Fr 07:00-18:00,Sa 07:00-18:00;;pas de de restriction au gabarit;FALSE;;06534442736903;2022-11-28;Recharge disponible au horaire suivante : 14H00-18H00;2023-07-31;0;2023-08-06T02:54:49.646000+00:00;635794f684a0afb9e2b40ce7;e53488a8-15df-416f-a749-75ee8f588342;equipe-transport-data-gouv-fr;-1.682919;48.082244;35000;Rennes;; +;MOBIVE - SDEER 17;251702197;f-a.de-ferrieres@sdeer17.fr;Société Y;info@ionity.eu;+(33)-(9)-69366018;MOBIVE - SDEER 17;FRELCPGONHI;FR*SOD*S*OTHR*181*2*_*_;Gonesse - Hôtel Ibis;;2 Rue de Montservon, Zac des Tulipes 95500 Gonesse;95277;[2.46338400,48.96867200];12;FRELCE5DNY;FR*SOD*E*OTHR*181*2*1*_;24;FALSE;FALSE;TRUE;TRUE;True;TRUE;TRUE;;TRUE;0.30;;FALSE;Mo 07:00-20:00,Tu 07:00-20:00,We 07:00-20:00,Th 07:00-20:00,Fr 07:00-20:00,Sa 07:00-12:00;;Hauteur maximale 2m;True;;06554124457231;2022-09-30;24/7;2023-07-29;TRUE;2023-08-06T02:54:48.998000+00:00;6167e63c2dd57c81abe574e9;83f7eeca-6644-4e61-ab2a-0654f2948c2d;ekoplug;2.463384;48.968672;95500;Gonesse;; +;SIGEIF;200050433;christophe.provot@sigeif.fr;LEGELEUX;klantenservice@newmotion.com;+(33) 184710062;SIGEIF;FRELCPEYSPC;FR*SOD*S*OTHR*180*5*_*_;Eysines - Hôtel Première Classe;;74 avenue du Médoc 33320 Eysines;33162;[-0.62896900,44.88076600];16;FRELCE5KQP;FR*SOD*E*OTHR*180*5*1*_;7;TRUE;0;1;True;;;True;True;1;0.64€/kWh;;True;Mo 06:00-20:00,Tu 06:00-20:00,We 06:00-20:00,Th 06:00-20:00,Fr 06:00-20:00,Sa 06:00-20:00,Su 06:00-20:00;;3m;;;50041059380763;2022-12-09;0;2023-07-26;False;2023-08-06T02:54:47.742000+00:00;600ae6cc4095e0da6953cdbd;8a4ffe92-c958-4f0d-b5ba-47aac80ab4ec;ma-borne-auto;-0.628969;44.880766;33320;Eysines;; +;MOBIVE - TE 47;254701824;berenger.blanquet@sdee47.fr;garage Henry herve;support@fastned.nl;0603158007;MOBIVE - TE 47;FRELCPSDRPG;FR*SOD*S*OTHR*180*3*_*_;Sérézin-du-Rhône - Peugeot;;12 chemin départemental 12, Peugeot 69360 Sérézin-du-Rhône;69294;[4.82215900,45.63507900];28;FRELCEFJDG;FR*SOD*E*OTHR*180*3*1*_;3;True;False;True;;;1;FALSE;TRUE;False;0.25€+0.35/kWh;;;Mo 08:30-17:30,Tu 08:30-17:30,We 08:30-17:30,Th 08:30-17:30,Fr 08:30-17:30;;Aucune restriction;;;50083590923203;2022-10-27;Présence d'une prise type E dans la station. Paiement via l'application Electromaps ou équivalent.;2023-06-15;True;2023-08-06T02:54:47.034000+00:00;6167e9180c37f181b91af113;7f429e61-ca85-4db3-bb7e-c3ceba419a9e;lumiin;4.822159;45.635079;69360;Sérézin-du-Rhône;; +;CPS;200056232;Eva.PINEAU@paris-saclay.com;Non concerné;gene.elec35@gmail.com;0111111111;CPS;FRELCPSDEHF;FR*SOD*S*OTHR*180*1*_*_;Saint-Denis - Hôtel F1 Centre Basilique;;11 avenue Lénine 93200 Saint-Denis;93066;[2.36852100,48.93834600];5;FRELCE9PS7;FR*SOD*E*OTHR*180*1*1*_;120;;;;;;True;;;FALSE;0,55 € / min;;;Mo 00:00-09:00,Mo 19:00-24:00,Tu 19:00-24:00,Tu 00:00-09:00,We 19:00-24:00,We 00:00-09:00,Th 19:00-24:00,Th 00:00-09:00,Fr 19:00-24:00,Fr 00:00-09:00,Sa 19:00-24:00,Sa 00:00-09:00,Su 19:00-24:00,Su 00:00-09:00;;2M;;;inconnu;2023-05-22;Présence d'une prise E sur la station;2023-06-01;;2023-08-06T02:54:46.170000+00:00;61127acad5521800a4036c29;5fcc5974-5490-4cb7-9296-9cf6ef7e5ce1;zeborne;2.368521;48.938346;93200;Saint-Denis;; +;IZIVIA EXPRESS;254001399;lucas.malacarme@izivia.com;LUMI'IN;contact@societe-operateur.com;0618687523;IZIVIA EXPRESS;FRELCPMARHC;FR*SOD*S*OTHR*180*4*_*_;Marseille - Hôtel Campanile Saint-Antoine;;59 avenue Anne Marie 13015 Marseille;13055;[5.35631900,43.37938300];7;FRELCEG6ZR;FR*SOD*E*OTHR*180*4*1*_;43;;;;;;;;;;0,20€ / kwh + 0,025€ / min;;;Mo 00:00-02:00,Mo 03:30-24:00,Tu 00:00-02:00,Tu 03:30-24:00,We 00:00-02:00,We 03:30-24:00,Th 00:00-02:00,Th 03:30-24:00,Fr 00:00-02:00,Fr 03:30-24:00;;non concerné;;;30000140205802;2022-12-15;Presence d'une prise type E sur la station. Paiement via l'application Electromaps ou equivalent;2023-08-01;;2023-08-06T02:54:45.522000+00:00;61421c6d291bf55b465b0f59;95f96484-c602-4b2f-996d-702f61b2e8ab;nvh;5.356319;43.379383;13015;Marseille;; +;MOBIVE - SYDEC 40;352860639;eric.dubertrand@sydec40.fr;ZEBORNE;legeleuxbenoit@gmail.com;0381590075;MOBIVE - SYDEC 40;FRELCPSJVHC;FR*SOD*S*OTHR*179*4*_*_;Saint-Jean-de-Védas - Kyriad Direct;;Rue Robert Schuman 34430 Saint-Jean-de-Védas;34270;[3.83571000,43.56750500];1;FRELCEYVQX;FR*SOD*E*OTHR*179*4*1*_;4;;;;;;;;;;0,48;;;Mo 00:00-07:00,Mo 19:00-24:00,Tu 00:00-07:00,Tu 19:00-24:00,We 00:00-07:00,We 19:00-24:00,Th 00:00-07:00,Th 19:00-24:00,Fr 00:00-07:00,Fr 19:00-24:00,Sa 00:00-24:00,Su 00:00-24:00;;0;;;50030192008362;2022-09-29;Ouvert 24/7;2022-09-20;;2023-08-06T02:54:43.786000+00:00;6167e8bb8bdbf4343e86fd77;664ea96d-97c7-4b89-a382-21a95656df83;wallbox-france;3.83571;43.567505;34430;Saint-Jean-de-Védas;; +;AVIA TD;450889225;H.Adam@thevenin-ducrot.fr;NVH;garage.henry25@orange.fr;361626161;AVIA TD;FRELCPVILHC;FR*SOD*S*OTHR*179*2*_*_;Villepinte - Hôtel Campanile;;2-8 avenue Jean Fourgeaud 93420 Villepinte;93078;[2.55363000,48.96130000];3;FRELCEUR96;FR*SOD*E*OTHR*179*2*1*_;350;;;;;;;;;;0.40;;;Mo 00:00-06:00,Mo 21:00-24:00,Tu 00:00-06:00,Tu 21:00-24:00,We 00:00-06:00,We 21:00-24:00,Th 00:00-06:00,Th 21:00-24:00,Fr 00:00-06:00,Fr 21:00-24:00,Sa 00:00-24:00,Su 00:00-24:00;;Aucune (hors poids lourd);;;30002581185212;2022-12-07;RAS;2021-04-05;;2023-08-06T02:54:43.118000+00:00;61683f36d97ca2ffae21a83c;cac885bb-a148-4d8e-99c1-3618f119f156;kallista-bdr;2.55363;48.9613;93420;Villepinte;; +;SOREGIES;682024096;lyonel.gilli@soregies.fr;LMS Informatique;e.barre@maborneauto.com;0754374751;SOREGIES;FRELCPSEGBU;FR*SOD*S*OTHR*179*1*_*_;Saint-Égrève - BUT;;3 avenue de l'Île Brune 38120 Saint-Égrève;38382;[5.68210800,45.21631400];9;FRELCE2EGB;FR*SOD*E*OTHR*179*1*1*_;36;;;;;;;;;;15;;;Mo 07:30-18:30,Tu 07:30-18:30,We 07:30-18:30,Th 07:30-18:30,Fr 07:30-18:30;;Poids maximal 3,5t;;;1;2023-04-21;paiement par QC possible;2022-09-1;;2023-08-06T02:54:42.546000+00:00;61127f2f322c75c6722205c4;2fffeeda-57ac-47b8-a3b0-37f7db098958;metzger-alain;5.682108;45.216314;38120;Saint-Égrève;; +;IZIVIA FMET 1;353347222;thomas.berto@izivia.com;Royal Champagne;secretariat@lumi-in.fr;0252072597;GRAND LYON;FRELCPCSRKY;FR*SOD*S*OTHR*179*3*_*_;Chasse-sur-Rhône - Kyriad Direct;;Zone de Charnevaux, Rue Pasteur 38670 Chasse-sur-Rhône;38087;[4.79007700,45.58502700];14;FRELCE458E;FR*SOD*E*OTHR*179*3*1*_;180;;;;;;;;;;0.22 kwh + 0.06 e/min;;;Mo 08:30-17:00,Tu 08:30-17:00,We 08:30-17:00,Th 08:30-17:00,Fr 08:30-17:00;;Pas de restrictions d'accès liées au gabarit des véhicules.;;;30001611983645;2022-12-20;Autre paiements : compte prépayé.;2022-09-01;;2023-08-06T02:54:41.986000+00:00;5ef224ffd1f31055eed973dd;904f02da-7052-47d8-aedb-bc2dfd94faf5;secal;4.790077;45.585027;38670;Chasse-sur-Rhône;; +;UNIBAIL;258708585;berangere.soler@urw.com;HABT;advenir@zeborne.com;972626373;UNIBAIL;FRELCPLTOHI;FR*SOD*S*OTHR*179*5*_*_;Le Touquet-Paris-Plage - Hôtel Ibis;;4 avenue Louison Bobet 62520 Le Touquet-Paris-Plage;62826;[1.57864000,50.51596100];11;FRELCE6PYB;FR*SOD*E*OTHR*179*5*1*_;200;;;;;;;;;;0;;;Mo 06:30-18:00,Tu 06:30-18:00,We 06:30-18:00,Th 06:30-18:00,Fr 06:30-18:00;;3M;;;50083154441545;2023-07-11;Autre connecteurs : IEC_62196_T3CAutre paiements : compte prépayé.;2022-06-22;;2023-08-06T02:54:41.066000+00:00;61127fc7322c75c6722205c6;ffbfef60-902a-4ec0-8d98-49bba26df564;pharmacie-meyer-hundling;1.57864;50.515961;62520;Le Touquet-Paris-Plage;; +;LEVAPARC;240600585;FGIUSTIOLI@semarelp.com;Kallista BDR;supervision@nvh-france.fr;0633221487;LEVAPARC;FRELCPORAPG;FR*SOD*S*OTHR*178*4*_*_;Orange - Peugeot Orange;;Rue d'Allemagne 84100 Orange;84087;[4.83868100,44.11893000];13;FRELCEBB3P;FR*SOD*E*OTHR*178*4*1*_;54;;;;;;;;;;2,50€ par acte de recharge, 0,5€ par kWh, paiement via carte RFID, QR Code ou application;;;Mo 00:00-24:00,Tu 00:00-24:00,We 00:00-24:00,Th 00:00-24:00,Fr 00:00-24:00,Sa 00:00-24:00,Su 00:00-24:00;;2;;;25630390734206;2022-12-02;DISPONIBLE 24/7;2022-08-30;;2023-08-06T02:54:40.498000+00:00;61127bcb16fc6a7ef98a0951;233cdfc4-fef0-4532-9d1d-840092b509d1;christophe-ohl;4.838681;44.11893;84100;Orange;; +;MOBIVE - SEHV87;411207012;valerie.geay@sehv.fr;FRESHMILE;olivier@eqos.fr;0689573165;MOBIVE - SEHV87;FRELCPPLRBO;FR*SOD*S*OTHR*178*3*_*_;Le Plessis-Robinson - La Boursidière;;Rue de la Boursidière 92350 Le Plessis-Robinson;92060;[2.23839200,48.77325000];22;FRELCEQD8U;FR*SOD*E*OTHR*178*3*1*_;175;;;;;;;;;;0.35 / kWh;;;Mo 08:00-12:00,Mo 14:00-18:00,Tu 08:00-12:00,Tu 14:00-18:00,We 08:00-12:00,We 14:00-18:00,Th 08:00-12:00,Th 14:00-18:00,Fr 08:00-12:00,Fr 14:00-18:00,Sa 08:00-12:00;;Non concerné;;;50016440743640;2022-06-15;Recharge uniquement disponible pendant les horaires d'ouverture du domaine;2021-09-02;;2023-08-06T02:54:39.874000+00:00;63242a06f0cbfb826a0c7014;580e2c01-2457-4b96-b54c-b0330c2e52a4;groff-sas;2.238392;48.77325;92350;Le Plessis-Robinson;; +;WIIIZ;200087955;a.cazal@agglo-casa.fr;JONNARD LES ISSAMBRES;bruno.tailly@royalchampagne.com;+33 0 800 96 00 80;WIIIZ;FRELCPSLMPC;FR*SOD*S*OTHR*178*1*_*_;Saint-Laurent-de-Mure - Hôtel Première Classe;;5 boulevard de l'Europe 69720 Saint-Laurent-de-Mure;69288;[5.06372600,45.68819600];40;FRELCEXKVU;FR*SOD*E*OTHR*178*1*1*_;7.4;;;;;;;;;;Payant;;;Mo-Fr 14:00-18:00;;Aucune;;;50017740643788;2022-11-29;Recharge disponible aux heures d'ouverture, Badge, QRcode, Conditions accès suivant les EMSP;2022-08-26;;2023-08-06T02:54:39.006000+00:00;6112801882206048b39452c2;87194f3d-57fb-4b0e-a81c-c22cc4aa59e3;installation-dune-borne-22kwa-hostellerie-des-ducs;5.063726;45.688196;69720;Saint-Laurent-de-Mure;; +;SIXT;251600060;marc.aubree@sixt.com;EVBOX;charley.bohy@mycharmy.net;0368781435;SIXT;FRELCPNANHC;FR*SOD*S*OTHR*178*2*_*_;Nanterre - Hôtel Campanile;;20-22 avenue Pablo Picasso 92000 Nanterre;92050;[2.21382200,48.89196800];17;FRELCECVUR;FR*SOD*E*OTHR*178*2*1*_;18;;;;;;;;;;Gratuit;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Th 08:00-18:00;;false;;;50098784132777;2023-06-20;Jour ouvré de 8H à 10H;2022-06-13;;2023-08-06T02:54:38.070000+00:00;61683bee4b4bf31da4405fba;0a1f959f-4a24-4c4b-becb-8b88cfd0d9ee;damien-berenguer;2.213822;48.891968;92000;Nanterre;; +;MOBIVE - FDEE 19;256402041;l.barthuel@fdee19.fr;PHARMACIE DE HUNDLING;exploitation@yaway-recharge.eu;0608740580;MOBIVE - FDEE 19;FRELCPAAVITE;FR*SOD*S*OTHR*178*5*_*_;A7 - Aire de Vitrolles Est (direction Orange);;A7 - Aire de Vitrolles Est 13127 Vitrolles;13117;[5.24311100,43.44689900];18;FRELCE96DZ;FR*SOD*E*OTHR*178*5*1*_;320;;;;;;;;;;0,55;;;Mo-sat 09:00-19:00;;Hauteur max 2m - Largeur max 2m;;;50056507247503;2023-06-15;Paiement par aplication mobile;2021-06-24;;2023-08-06T02:54:37.478000+00:00;6166a87a30873507fab99638;11b45832-b037-4fe0-94f4-369851d6e115;yonss-elaroui;5.243111;43.446899;13127;Vitrolles;; +;MOBIVE - SDEG 16;200089720;flandreau@sdeg16.fr;KIEHL;exploitation@freshmile.com;0134201124;MOBIVE - SDEG 16;FRELCPSMPHK;FR*SOD*S*OTHR*180*2*_*_;Saint-Martin-sur-le-Pré - Hôtel Kyriad;;Avenue du 8 mai 1945 51520 Saint-Martin-sur-le-Pré;51504;[4.35617600,48.97956600];24;FRELCEK3ZZ;FR*SOD*E*OTHR*180*2*1*_;160;;;;;;;;;;- Energie + Temps - de 8h à 22h – 0,35 € /kwh + 0,025 € /min - Energie – de 22h à 8h – 0,50 € à la connexion + 0,35€ /kwh - Collaborateur – de 10h à 16h – 0,15€ /kwh - Vehicule société charge Gratuit à tout heure;;;Mo-Fr 08:30-19:00,Sat 08:30-18:00;;2.2;;;30002312016170;2022-05-18;Recharge 24/24h 7/7j;2021-03-08;;2023-08-06T02:54:36.754000+00:00;6167e795b015c9c349638fcd;dd809ac7-1479-4857-a7f4-ca4424f78084;regie-municipale-delectricite-de-loos;4.356176;48.979566;51520;Saint-Martin-sur-le-Pré;; +;MOBIVE - SDEPA 64;433704889;c.iglesias@sdepa.fr;GROFF SAS;jonnard.pierre@wanadoo.fr;0387025097;MOBIVE - SDEPA 64;FRELCPMAUCC;FR*SOD*S*GACO*1*6*_*_;Maurepas - CC - Village des loisirs;;3 avenue Louis Pasteur 78310 Maurepas;78383;[1.91472400,48.76140200];20;FRELCERY7T;FR*SOD*E*GACO*1*6*1*_;21;;;;;;;;;;Non concerné;;;Mo-sat 09:00-19:00,Sun 09:00-18:00;;/;;;5,00E+13;2022-12-21;SO;2023-02-08;;2023-08-06T02:54:36.062000+00:00;6167e82fcaef06e5facf6fbd;01e7a95e-1ce4-481d-889f-02207b806fc7;maneo;1.914724;48.761402;78310;Maurepas;; +;SYDER;252401476;nlourenco@syder.fr;Masseria;contact@secal-electricite.fr;0388595225;SYDER;FRELCPANGHM;FR*SOD*S*GACO*1*3*_*_;Angers - Hôtel Mercure Lac de Maine;;2 allée du Grand Launay 49000 Angers;49007;[-0.59341900,47.46851100];19;FRELCEW4JJ;FR*SOD*E*GACO*1*3*1*_;25;;;;;;;;;;0.35 c/Kwh;;;Mo-Fr 09:00-19:00,Sat 09:00-18:00;;Pas de restrictions de gabarit;;;67498/E1/0749997 02;2022-12-08;PAIEMENT PAR QR CODE possible;2022-09-29;;2023-08-06T02:54:35.414000+00:00;61127f8644cc0c5776407fd1;53a046ca-66ce-4e0c-a766-44b91727f268;beev;-0.593419;47.468511;49000;Angers;; +;AVIA PICOTY;247800600;t.vidal@picoty.fr;Hostellerie;pharmacie.de.hundling@gmail.com;0389303060;AVIA PICOTY;FRELCPFREEH;FR*SOD*S*GACO*1*4*_*_;Fresnes - Euro Hôtel Orly Rungis;;63 avenue du Parc de Médicis 94260 Fresnes;94034;[2.33635700,48.75416000];15;FRELCEGPJY;FR*SOD*E*GACO*1*4*1*_;125;;;;;;;;;;0.45 kwh;;;Mo-Fr 19:00-08:00,Sa-Su 00:00-23:59;;02/02/2022;;;N° PDL 50097191839828;2023-04-12;PAIEMENT PAR QR CODE;2022-07-25;;2023-08-06T02:54:34.746000+00:00;61683fc2b63c3312a56a009e;ab854ac7-fb29-4a61-8185-0535a25b6705;freshmile-1;2.336357;48.75416;94260;Fresnes;; +;MOBIVE - SDE 24;912043676;y.huon@sde24.fr;Modulo;contact@kiehl.fr;0680338905;MOBIVE - SDE 24;FRELCPCAUIM;FR*SOD*S*GACO*2*6*_*_;Cauneille - Intermarché;;Plaine de la Règle 40300 Cauneille;40077;[-1.07595000,43.54415600];30;FRELCE2QPB;FR*SOD*E*GACO*2*6*1*_;63;;;;;;;;;;0.35;;;Mo-Su 00:00-23:59;;2m;;;015639651789105;2022-08-09;Recharge disponible uniquement pendant les horaires du magasin;2022-09-06;;2023-08-06T02:54:33.954000+00:00;6167e26f5a2a8bb270ea83f0;07301b5d-a013-4603-a92f-38e8bcc219ae;ibis;-1.07595;43.544156;40300;Cauneille;; +;RT78;200078947;c.forte@rt78.fr;REGIE MUNICIPALE D'ELECTRICITE DE LOOS;francoise.groff@deux-clefs.com;0553837458;RT78;FRELCPSFOMB;FR*SOD*S*GACO*1*5*_*_;Saint-Fons - Mercedes-Benz Lyon Saint-Fons;;65 boulevard Lucien Sampaix 69190 Saint-Fons;69199;[4.85455800,45.71459000];38;FRELCEVKAM;FR*SOD*E*GACO*1*5*1*_;48;;;;;;;;;;0,80€/kWh;;;Mo-fr 08:00-12:00,MO-FR14:00-18:00;;max 4m;;;25337771323464;2023-01-06;Recharge accessible aux clients du Restaurant Gastronomique Jérôme Nutile;2022-09-09;;2023-08-06T02:54:33.194000+00:00;61127dbd44cc0c5776407fcf;cef9dea2-d064-414d-8c94-0195f86a439b;spie-citynetworks;4.854558;45.71459;69190;Saint-Fons;; +;MAMP;780130175;sav@izivia.com;CHATEAU DE RONZIERE;sas.masseria@gmail.com;0475367519;MAMP;FRELCPSBARS;FR*SOD*S*GACO*1*2*_*_;Saint-Barthélemy-d'Anjou - RS Parc;;8 rue de Champfleur 49124 Saint-Barthélemy-d'Anjou;49267;[-0.50261700,47.48171600];46;FRELCEBZLG;FR*SOD*E*GACO*1*2*1*_;38;;;;;;;;;;0.20€/KW + 3.00€/Connection;;;Mo-Fr 08:30-19:00,Sat 09:00-18:00;;Hauteur maximal 2 m;;;50082004087103;2023-07-06;Paiement avec le stationnement du parking (Charge + Parking) en caisse ou en sortie;2022-07-19;;2023-08-06T02:54:32.446000+00:00;634030bbe43c678bc890be4d;c1de8cd4-1fa5-494e-b131-10f17b9d95e7;sdc-centre-medical-artzamendi;-0.502617;47.481716;49124;Saint-Barthélemy-d'Anjou;; +;MOBIVE LA DIEGE;537527145;;electromaps;hostellerie.des.ducs@wanadoo.fr;0247316868;MOBIVE LA DIEGE;FRELCPAUBFV;FR*SOD*S*GACO*4*1*_*_;Aubergenville - CC Family Village;;rue de Quarante Sous, Gémo 78410 Aubergenville;78029;[1.85935500,48.96404000];32;FRELCERCA7;FR*SOD*E*GACO*4*1*1*_;6;;;;;;;;;;0 pour utilisateur;;;Mo-Fr 08:00-12:00, Mo-Fr 14:00-17:00;;Hauteur maximal 3 m;;;67301/E1/079770127;2023-03-08;Recharge uniquement disponible pendant les horaires d'ouverture de l'enseigne;2022-09-08;;2023-08-06T02:54:31.718000+00:00;63ff919e0fb97fb92553d956;10b2411a-c0f9-4131-8000-5a7afb7d47b6;borneco;1.859355;48.96404;78410;Aubergenville;; +;SHELL;;support@modulo-energies.fr;freshmile;direction@camping-les-arches.com;0320075634;SHELL;FRELCPBIMHU;FR*SOD*S*GACO*5*2*_*_;Boulazac-Isle-Manoire - Hyper U;;Centre Commercial Périgord Blanc, Allée Jacques Duclos 24750 Boulazac-Isle-Manoire;24053;[0.77438600,45.18405700];34;FRELCEZV29;FR*SOD*E*GACO*5*2*1*_;45;;;;;;;;;;Voir acceuil Bat 1;;;Mo-sat 08:00-18:00;;Inconnue;;;68036/E1/008131408;2022-03-30;Ouverture du site 7/7 jours de 10h00 à 17h00 hors 25 décembre et 1 janvier;2023-01-24;;2023-08-06T02:54:29.870000+00:00;61127e5c44cc0c5776407fd0;3f0958ba-ac9d-4e10-ad7c-757bcb1c3ad8;nexteneo;0.774386;45.184057;24750;Boulazac Isle Manoire;; +;ZENPARK;853300010;support@iecharge.io;LA PRAIRIE;jferchaud@modulo-energies.fr;0694 495 065;ZENPARK;FRELCPDECPL;FR*SOD*S*GACO*5*1*_*_;Dechy - CC Le Parc du Luc;;Rue James Tobin 59187 Dechy;59170;[3.10677900,50.34270300];350;FRELCEGAUQ;FR*SOD*E*GACO*5*1*1*_;17;;;;;;;;;;0.3 AC : prix au kWh;;;Mo-Fr 08:00-17:00;;4;;;50027730883958;2022-10-20;Ouverture du site du lundi au samedi de 06h00 à 20h00 hors dimanche fermé;2022-11-08;;2023-08-06T02:54:29.026000+00:00;61128062f52dc5cf5c3e78cb;b038eb1a-f3ea-431c-8511-b8c43252a585;vinci-facilities-travaux-associes;3.106779;50.342703;59187;Dechy;; +;;819285149;info@chargepoint.com;Freshmile SAS;contact@electricite-loos.fr;0369246738;SAMPIGNY - 66354 - Rue Raymond Poincare;FRELCPBEAGH;FR*SOD*S*GACO*5*4*_*_;Beaune - Greet Hotel;;58 route de Verdun 21200 Beaune;21054;[4.85182600,47.00953800];505;FRELCE7M4D;FR*SOD*E*GACO*5*4*1*_;23;;;;;;;;;;2 AC- DC €/kWh - 6 AC- DC €/h;;;Mo-Fr 09:00-18:00; Sa:09:00-19:00;;non;;;50083588463252;2022-07-08;5€ par charge. La charge est offerte (5€) à partir de 50€ d’achat dans notre magasin Le Cotonnier Nieppe, dans la journée de la charge sur présentation du justificatif (écran application, facture numérique), remise immédiate sur ticket.;2022-11-15;;2023-08-05T12:06:27.747000+00:00;64060c2ac773dcf3fabbe5d2;b11113db-875d-41c7-8673-0cf8ad43e917;sci-les-ruisseaux;4.851826;47.009538;21200;Beaune;; +;Fastned France;130025265;info@ionity.eu;MEDIODENT;maximilien.kauffmann@wallbox.com;608862318;MUIDES SUR LOIRE 4326 - Rue du Tramway;FRELCPBLAPC;FR*SOD*S*GACO*5*3*_*_;Blagnac - Hôtel Première Classe Toulouse Aéroport;;2 rue René Rey 31700 Blagnac;31069;[1.37510300,43.63754800];21;FRELCE73Q7;FR*SOD*E*GACO*5*3*1*_;2;;;;;;;;;;0,32 €/ kWh;;;Mo-Fri 08:00-19:00,Sat 09:00-18:00;;1m80 max;;;50033665435595;2022-08-25;BORNE AUTOPARTAGE;2022-09-07;;2023-08-05T07:15:22.224000+00:00;6315aaa46e92fd09228ab29b;c4b3c509-bc65-4822-8aa7-8cdc5d3e2ddb;nm-securelec;1.375103;43.637548;31700;Blagnac;; +;MAGITEL;898168273;klantenservice@newmotion.com;Perrin;info@compinglabelleetoile.com;320075634;ST NICOLAS DES MOTETS 4340 - Rue de la poste;FRELCPPESPC;FR*SOD*S*GACO*5*6*_*_;Pessac - Hôtel Première Classe;;4 BIS avenue Antoine Becquerel 33600 Pessac;33318;[-0.64491500,44.78838600];241;FRELCEWYX2;FR*SOD*E*GACO*5*6*1*_;11;;;;;;;;;;0.0417 € à la minute;;;Mo-sat 08:30-19:00;;Hauteur max 2,4m;;;30001974072878;2023-06-27;Rue à sens unique à l'heure actuelle;2022-08-01;;2023-08-05T07:15:21.844000+00:00;6311c10ef4c191ab58c1d6b1;c58e9791-ba92-411d-b773-e2a37e985cb9;bornevo;-0.644915;44.788386;33600;Pessac;; +;Société X;880217922;support@fastned.nl;Automobile de l'Est;nadine.thal@secal.fr;0684262686;Montalieu-Vercieu;FRELCPVDOBH;FR*SOD*S*GACO*5*5*_*_;Villenave-d'Ornon - Best Hotel;;6 rue Salvador Dali 33140 Villenave-d'Ornon;33550;[-0.58726300,44.78378500];256;FRELCEM7R5;FR*SOD*E*GACO*5*5*1*_;90;;;;;;;;;;0.65/min;;;Mo-sat 08:00-19:00;;2 M;;;30001971098152;2022-10-14;HORAIRES D'OUVERTURES DE L'AGENCE LUNDI AU SAMEDI DE 08:45-12:15, 13:45-18:30,;2022-08-29;;2023-08-05T07:15:21.527000+00:00;63109329d666c16f0914d686;b4ae483a-485f-4681-92ec-fb65175ef26f;giguet-xavier;-0.587263;44.783785;33140;Villenave-d'Ornon;; +;EKOPLUG;807940069;sebastienricaud@aol.com;SPIE CITYNETWORKS;web@freshmile.com;0369246732;Saint MIHIEL - 66364 - Place Jaques Bailleux;FRELCPAAGART;FR*SOD*S*GACO*4*5*_*_;A62 - Aire de Garonne (direction Toulouse);;A62 - Aire de Garonne 82210 Saint-Nicolas-de-la-Grave;82169;[1.00478700,44.04062900];160;FRELCEEDB8;FR*SOD*E*GACO*4*5*1*_;44;;;;;;;;;;0.055€/min;;;Mo-Fri 08:00-19:00,Sat 09:00-17:00;;Aucun;;;50051604886309;2023-07-28;Recharge uniquement disponible pendant les horaires d'ouverture du garage;2021-10-27;;2023-08-05T07:15:16.141000+00:00;630fe5bfa713f1e7a812263a;12633b5b-fafe-4253-8fb9-3b1e8f4ee0d3;mea-energies;1.004787;44.040629;82210;Saint-Nicolas-de-la-Grave;; +;MA BORNE AUTO;410177661;contact@societe-amenageur.com;SDC CENTRE MEDICAL ARTZAMENDI;mediodent@gmail.com;03 81 60 06 00;VERDES 4328 - Place de l'église;FRELCPARGHC;FR*SOD*S*GACO*6*2*_*_;Argenteuil - Hôtel Campanile;;1 rue Ary Scheffer 95100 Argenteuil;95018;[2.24146100,48.93517100];64;FRELCENUQ2;FR*SOD*E*GACO*6*2*1*_;75;;;;;;;;;;https://www.e-vadea.fr/fr/tarifs;;;Mo-Fr 08:00-19:00,Sat 09:00-19:00;;Pas de restrictions;;;50077656643357;2023-07-31;Recharge durant les horaires d'ouverture du magasin;2022-08-24;;2023-08-05T07:15:15.711000+00:00;6310709a26ae2c71ed72a0a0;6b3facac-2205-437a-b4d2-74021b6be737;autorecharge;2.241461;48.935171;95100;Argenteuil;; +;LUMI'IN;344659941;contact@ekoplug.fr;BORNECO;nellyperrin@me.com;0610284454;PREUILLY SUR CLAISE 4338;FRELCPPARPPO;FR*SOD*S*GACO*6*1*_*_;Paris 18 - Porte des Poissonniers;;163 rue des Poissonniers 75018 Paris;75056;[2.35243700,48.89773000];448;FRELCE6TVA;FR*SOD*E*GACO*6*1*1*_;20;;;;;;;;;;0.6;;;Mo-Fr 09:00-18:00;;Hauteur maximale 2.5m;;;06336468773954;2023-01-12;Recharge uniquement pendant les heures d'ouverture de la concession;2020-12-03;;2023-08-05T07:15:15.092000+00:00;630db36b3889da49a383b58d;3b8e345b-b225-4421-ad0a-ed9155e61c8e;suraya;2.352437;48.89773;75018;Paris;; +;Bricomarché - Villard de lans- SARALAM;529221210;e.barre@maborneauto.com;NEXTENEO;a.tarridec@maborneauto.com;0679252167;L'ILE BOUCHARD 1338;FRELCPMEBHF;FR*SOD*S*GACO*6*6*_*_;Mons-en-Baroeul - Hôtel F1;;Avenue de la Sablière 59370 Mons-en-Baroeul;59410;[3.09741600,50.64468200];352;FRELCEYFCK;FR*SOD*E*GACO*6*6*1*_;325;;;;;;;;;;0.36€ AC /KW;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00;;Parking véhicules de tourisme;;;19000;2022-07-12;PARKING CLIENTELE;2022-09-12;;2023-08-05T07:15:14.313000+00:00;630dd54328774c1941bc7f61;c9eb8226-21aa-463f-b4cb-efe5cde87c32;weecharge;3.097416;50.644682;59370;Mons-en-Barœul;; +;AUTOS SELECTION - Mazda Laval;917756819;secretariat@lumi-in.fr;SCI LES RUISSEAUX;automobiledelest1@gmail.com;0673675388;55 VERDUN - Rue des Tanneries - 66477;FRELCPAXPHC;FR*SOD*S*GACO*6*5*_*_;Aix-en-Provence - Hôtel Campanile Pont de l'Arc;;1 rue Jean Andreani 13090 Aix-en-Provence;13001;[5.43628000,43.51220700];96;FRELCEA7WX;FR*SOD*E*GACO*6*5*1*_;56;;;;;;;;;;AC 1€/kWh - DC 5€/kWh;;;Mo-Th 07:00-17:00,Fr 07:00-16:00;;Hauteur maximal de 2m;;;19425325546891;2022-10-06;24/4;2020-11-18;;2023-08-05T07:15:14.045000+00:00;630dcb29d0396f747ba5f1d5;16d626fb-1661-494c-8003-fb351af08b0f;e-vadea;5.43628;43.512207;13090;Aix-en-Provence;; +;AUTO AVENIR RELAIS - CHÂTEAU THIERRY - VW;775657463;advenir@zeborne.com;NM SECURELEC;jeremie.ferre@spie.com;0559592669;Domfront;FRELCPULIHM;FR*SOD*S*GACO*6*3*_*_;Les Ulis - Hôtel Mercure;;3 rue Rio Salado 91940 Les Ulis;91692;[2.19833900,48.67884300];384;FRELCE4BXS;FR*SOD*E*GACO*6*3*1*_;12;;;;;;;;;;0.2AC €/kWh;;;Mo-Sa 08:00-12:00,Mo-Sa 14:00-18:00;;auncune;;;02af2893-256f-4124-8d58-c728dc38f720;2023-04-18;Charge disponible pendant les heures d'ouverture;2021-09-03;;2023-08-05T07:15:13.743000+00:00;630dca2ac1f90a12a8141434;78345a1d-e5b8-4a2f-a2fa-c20a4dd96f67;2ems;2.198339;48.678843;91940;Les Ulis;; +;Gring HUB;326765054;kamel.fekhart@gringhub.com;Bornevo;fcascino@agencecd6440.fr;0669684978;SONEPAR DOLE;FRELCPVITHK;FR*SOD*S*GACO*6*4*_*_;Vitrolles - Hôtel Kyriad Aéroport;;1-3 rue de Madrid 13127 Vitrolles;93064;[5.25193300,43.42547400];41;FRELCERZ4B;FR*SOD*E*GACO*6*4*1*_;360;;;;;;;;;;0.05AC/MIN;;;Mo-Fr 07:00-23:00,Sa-Su 08:00-23:00;;Aucunes;;;30002212569844;2023-06-28;Paiement via FRESHMILE;2021-07-01;;2023-08-05T07:15:13.386000+00:00;630db9e27765121adfefff3d;1af047bd-09dc-4b75-88e6-d20af428649e;vincent-moule;5.251933;43.425474;93110;Rosny-sous-Bois;; +;CSE-Central BDF;813164282;jacky.degroise@banque-france.fr;Bornevo Connect;freddy.borneco@gmail.com;null;CHEVERNY 4301 - Place de l'Eglise;FRELCPRONIH;FR*SOD*S*GACO*4*2*_*_;Rosny-sous-Bois - B&B Hotels;;1 rue de Lisbonne 93110 Rosny-sous-Bois;59163;[2.47552700,48.87816700];52;FRELCET6GY;FR*SOD*E*GACO*4*2*1*_;22.00;;;;;;;;;;0,20 €/kWh pour abonné ZEborne;;;Mo 09:00-17:00,Tu-Fr 09:00-19:00,Sa 09:00-18:00;;ras;;;50004717927720;2023-02-23;Ouverture de la station de recharge courant juin 2023.;2022-08-03;;2023-08-05T07:15:13.036000+00:00;6316139ed0826c2216a18404;9f2c82fe-3cf5-4469-8f29-e2bd03dd75da;m-a-j-u-restaurant-jerome-nutile;2.475527;48.878167;59170;Croix;; +;BM92;482399896;jcbbm92@gmail.com;EVERON;contact@nexteneo.com;0387885670;MOF BORNE 1;FRELCPCRXCC;FR*SOD*S*GACO*4*7*_*_;Croix - CC Gare de Croix - Wasquehal;;2 rue Jean Monnet 59170 Croix;77108;[3.14046000,50.67862000];;FRELCEXFYZ;FR*SOD*E*GACO*4*7*1*_;0.0;;;;;;;;;;0.2€/AC au kWh;;;Mo-Th 09:00-19:30,Fr-Sa 09:00-20:00;;Hauteur max 2 m;;;50055223223811;2023-02-03;Parking de la menuiserie Vollmer;2021-12-23;;2023-08-05T07:15:12.747000+00:00;63160e5652253504af2d407c;819549ec-1613-49c4-bcf2-cf29b5f392f4;skidata-france;3.14046;50.67862;77500;Chelles;; +;Mattieu et Pauline;444344469;matthieu@matthieupauline.com;Polybati;marc@fiskagroup.com;+33662651578;VAUCOULEURS - 66342 - Rue de la République;FRELCPCHEHC;FR*SOD*S*GACO*4*6*_*_;Chelles - Hôtel Campanile;;38 avenue Gendarme Castermant 77500 Chelles;11037;[2.60135000,48.87747000];;FRELCELWX8;FR*SOD*E*GACO*4*6*1*_;50.00;;;;;;;;;;0.54;;;Mo-Fr 08:00-11:00,Mo-Fr 14:00-18:00,Sa 09:00-11:00,Sa 14:00-17:00;;Hauteur max 2m;;;67304/E1/0705170 15;2023-01-04;Aucune;2022-04-12;;2023-08-05T07:15:12.433000+00:00;62e6f5e709890922a4a3c0c6;4b41deda-b2e1-4703-b10e-a941760e5e2d;i-bornes;2.60135;48.87747;11000;Berriac;; +;LMS Informatique;820235711;olivier@eqos.fr;MEA ENERGIES;infos@nmsecurelec.com;0184604870;ST PIERRE DES CORPS 4343 - Parking Despouy;FRELCPAAARZS;FR*SOD*S*GACO*3*5*_*_;A61 - Aire d'Arzens Sud (direction Narbonne);;A61 - Aire d'Arzens Sud 11000 Carcassonne;93013;[2.22056700,43.21718600];;FRELCEHEV8;FR*SOD*E*GACO*3*5*1*_;22.0;;;;;;;;;;0.5€/au kWh;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00;;1M;;;06535745214008;2023-03-22;Possibilité de paiement via QR CODE;2022-07-30;;2023-08-05T07:15:12.262000+00:00;6316158aaf74f6088204e5ea;526360a9-2d23-407f-8c9f-1e99957fba07;sanou-electricite;2.220567;43.217186;93350;Le Bourget;; +;Royal Champagne;820491314;bruno.tailly@royalchampagne.com;AUTORECHARGE;contact@bornevo.com;0141447047;55 VERDUN - Rue de Jeanne d'arc - 66578;FRELCPLBOHK;FR*SOD*S*GACO*1*1*_*_;Le Bourget - Hôtel Kyriad;;134-136 avenue de la Division Leclerc 93350 Le Bourget;33281;[2.43081300,48.93979000];;FRELCEMR3J;FR*SOD*E*GACO*1*1*1*_;100;;;;;;;;;;0,25 / Kw;;;Mo-Fr 09:00-12:00,Mo-Fr 14:00-17:00;;1m;;;50060144481419;2023-06-21;Accessible via App Electromaps, RFID Electropass et QR code paiement direct. Borne accessible pendant les heures d'ouverture du magasin.;2021-01-05;;2023-08-05T07:15:11.947000+00:00;6319a8e33dd7055e29a37fc3;75f4822c-874a-4f5e-8c3c-b2db4c27dba7;masselin-tertiaire;2.430813;48.93979;33700;Mérignac;; +;HABT;834439630;charley.bohy@mycharmy.net;WICKER TP;frsupport@ev-box.com;0428704850;LA LOUPE - Place de la gare - 134202;FRELCPGRAHC;FR*SOD*S*GACO*2*2*_*_;Gradignan - Hôtel Campanile;;1 allée des demoiselles 33700 Gradignan;93008;[-0.60280900,44.79029300];;FRELCEG3ZK;FR*SOD*E*GACO*2*2*1*_;60;;;;;;;;;;0.25€/KW + 1.50€/Connection;;;Mo-Fr 08:00-16:00;;HAUTEUR MAXIMALE 2 M;;;03216113837570;2022-06-22;recharge disponible aux horraire d'ouverture;2022-08-08;;2023-08-05T07:14:39.789000+00:00;631add4e325a5a2ed2d1cd97;2a79bfc0-4ec2-4b3c-8195-2f6c6988cef4;sb-energy;-0.602809;44.790293;75013;Bobigny;; +;Kallista BDR;392291167;hello@yaway-recharge.eu;Green Technologie;contact@polybati.fr;0970755400;55 VERDUN - Av général mangin - 66596;FRELCPPARIIT;FR*SOD*S*GACO*2*3*_*_;Paris 13 - Indigo Parking Porte d'Italie;;18/20 avenue de la Porte d'Italie 75013 Paris;93005;[2.35992000,48.81678400];;FRELCEJBF6;FR*SOD*E*GACO*2*3*1*_;30;;;;;;;;;;0.30€/KW + 1.50€/Connection;;;Mo-Sa 04:00-22:30;;aucune;;;30001980220572;2022-05-10;pendant les horaires d'ouverture;2022-08-13;;2023-08-05T07:14:39.416000+00:00;630cbeab91a023355b5f0029;ba02bde5-f39d-4250-8f60-296ad703219e;mathiot;2.35992;48.816784;93000;Aulnay-sous-Bois;; +;EARL CHRISTMANN - DOMAINE DES BUFFLONNES;388876997;info@domainedesbufflonnes.fr;WeeCharge;contact@meaenergies.com;0388915128;VERNOUILLET - Rue du Moulin Rouge - 139334;FRELCPBOBHC;FR*SOD*S*GACO*2*1*_*_;Bobigny - Hôtel Campanile;;304 Avenue Paul Vaillant Couturier 93000 Bobigny;31555;[2.45702800,48.90573600];;FRELCEW3QN;FR*SOD*E*GACO*2*1*1*_;210;;;;;;;;;;5€;;;Mo-Sa 08:00-12:00,Mo-Sa 13:30-18:00;;Parking interdit aux poids lourds;;;30001611926408;2023-06-22;t3c;2020-06-10;;2023-08-05T07:14:38.987000+00:00;6319fa41bc99877f75ffab3d;2ee1d8df-73a2-4ff7-bbe1-4e6c8ded2f9a;morbihan-energies;2.457028;48.905736;93600;Toulouse;; +;AUTO AVENIR RELAIS - MAGENTA - VW;813675287;Contact@secal-electricite.fr;ELECTROMAPS;contact@autorecharge.fr;0972649769;VERDUN - 66586 - Cité d'Anthouard;FRELCPAULCE;FR*SOD*S*GACO*4*4*_*_;Aulnay-sous-Bois - Carrefour de l'Europe;;150 rue Jacques Duclos 93600 Aulnay-sous-Bois;77058;[2.48696500,48.95119600];;FRELCE3236;FR*SOD*E*GACO*4*4*1*_;126;;;;;;;;;;0,58;;;Mo-Fr 09:00-12:30,Mo-Th 13:30-17:30;;Hauteur Maximale 2M;;;50020694590486;2022-06-30;Recharge autorisée uniquement pendant les horaires d'ouverture de la concession;2022-05-13;;2023-08-05T07:14:38.645000+00:00;6319f02d235885e6cff1cdfa;0f5693fd-88e9-4c77-9bcd-8fe4f4853002;a2bornes;2.486965;48.951196;31200;Bussy-Saint-Georges;; +;Ekoplug;342913449;pharmacie.de.hundling@gmail.com;Electromaps;contact@wickertp.fr;0 970 830 387;SOUILLY - 93386 - Voie Sacrée;FRELCPTOUCM;FR*SOD*S*GACO*2*5*_*_;Toulouse - Carrefour Market Minimes;;83 boulevard Silvio Trentin 31200 Toulouse;34172;[1.43238100,43.62731900];;FRELCEAY94;FR*SOD*E*GACO*2*5*1*_;80;;;;;;;;;;0,32 €/kWh;;;Mo 00:00-23:59,We-Su 00:00-23:59,Tu 12:00-23:59;;3;;;30002560336166;2023-06-30;recharge possible uniquement pendant les horaires d'ouverture de la concession;2021-01-06;;2023-08-05T07:14:38.412000+00:00;63161696d4fdb70bc924fb9d;ccdaeb6a-f7e3-437f-82e5-4af787b7bf76;sigma-tec;1.432381;43.627319;77600;Montpellier;; +;SKYMAT;390454155;contact@kiehl.fr;Freshmile;odile.coumau@ezdrive.fr;34 931.574.967;VOID VACON - 66350 - Rue du Stade;FRELCPBSGPC;FR*SOD*S*GACO*3*6*_*_;Bussy Saint Georges - Hôtel Première Classe;;8 avenue Marie Curie 77600 Bussy-Saint-Georges;26250;[2.70466000,48.83257000];;FRELCE4EAQ;FR*SOD*E*GACO*3*6*1*_;40;;;;;;;;;;0,36 €/kWh;;;Mo-Fr 08:00-19:00,Sa 08:00-12:00,Sa 14:00-18:00;;NON;;;50034298068205;2023-04-27;accessible a toute heure;2020-12-21;;2023-08-05T07:14:38.095000+00:00;6318a87038e28ec8d1e244ad;57ee4a46-cd0e-480d-9169-0d81cfc053b3;ev-map;2.70466;48.83257;34070;Pont-de-l'Isère;; +;KIA DENNEY AUTOMOBILES;405267402;francoise.groff@deux-clefs.com;Hôtel Restaurant Hubert Kieffer;hello@weecharge.fr;0034931574967;55 VERDUN - Rue du 8 mai 1945 - 66603;FRELCPMONHC;FR*SOD*S*GACO*2*4*_*_;Montpellier - Hôtel Campanile;;Avenue du Mas d'Argelliers 34070 Montpellier;33063;[3.89112700,43.58679900];;FRELCE79VQ;FR*SOD*E*GACO*2*4*1*_;70;;;;;;;;;;0.32 €/kWh;;;Mo-Sa 09:00-18:00;;hauteur maximal 1.80M;;;67309/E1/026970670;2023-06-12;Recharge uniquement accessible durant les horaires d'ouverture;2022-05-12;;2023-08-05T07:14:37.255000+00:00;631849eb49a46f702806cec4;487be9f4-d7d8-43e6-a0b9-cc05e85a6648;cegelec-reseaux-auvergne-drome-ardeche;3.891127;43.586799;26600;Bordeaux;; +;PHARMACIE DE HUNDLING;313643108;fady.dalmas@gmail.coma;ZEborne;assistance-commerciale@e-vadea.fr;0388257058;55 MONTMEDY-place Raymond Poincare-66592;FRELCPAAL45;FR*SOD*S*GACO*3*4*_*_;A7 - Aire Latitude 45 (direction Lyon);;A7 - Aire Latitude 45 26600 Pont-de-l'Isère;69081;[4.87610900,45.01915800];;FRELCE2U7H;FR*SOD*E*GACO*3*4*1*_;9;;;;;;;;;;0.40€/kWh;;;Mo-Sa 08:00-12:30,Mo-Sa 14:00-19:00;;Pas de restriction;;;30002560098211;2023-06-14;compte prépayé;2021-09-08;;2023-08-05T07:14:36.912000+00:00;63176942fd296cdd23145437;ac37560f-e02e-439a-bcbe-ed8f9da8a0da;dupuis-electricite;4.876109;45.019158;33300;Écully;; +;GARAGE DE BRETAGNE - MAZDA ALENÇON;917220985;hostellerie.des.ducs@wanadoo.fr;ChargePoint;oscar@electromaps.com;0388855309;SAINT CYR SUR LOIRE 1343 - Esplanade;FRELCPBLAAE4;FR*SOD*S*GACO*3*1*_*_;Blagnac - Aéroport de Toulouse;;Parking P4 - Aéroport Toulouse Blagnac 31700 Blagnac;34129;[1.37635900,43.63209800];;FRELCEXTGD;FR*SOD*E*GACO*3*1*1*_;115;;;;;;;;;;0,25€/kWh;;;Mo 08:00-18:00,Tu 09:00-18:00,Th-Sa 09:00-18:00,We 09:00-19:00;;aucune restriction;;;50026133199910;2022-12-19;Paiement via carte abonnement ou plateforme par scan QR code;2021-04-13;;2023-08-05T07:14:36.563000+00:00;63172b092f86c58400909d78;ac8e614e-9d0c-4ec4-b8bb-0f3dc425c81b;lg-electricite;1.376359;43.632098;69130;Lattes;; +;KIEHL;423313014;dam-elec@gmwx.fr;Zen Construction;support@electromaps.com;0764573775;SONEPAR CONNECT ROUSSET;FRELCPBORBL;FR*SOD*S*GACO*3*3*_*_;Bordeaux - Novotel Bordeaux Lac;;rue Jean Samazeuilh 33300 Bordeaux;74208;[-0.56711100,44.89088900];;FRELCE8EJ4;FR*SOD*E*GACO*3*3*1*_;62;;;;;;;;;;0.32€/kWh;;;Mo-Sa 08:30-18:00;;PAS DE RESTRCTION;;;30001422416774;2021-12-20;Recharge rapide disponibilité 24/7 - 1h maximum de stationnement autorisé;2022-08-22;;2023-08-05T07:14:35.887000+00:00;631650c466f91c4bcb188f38;262a5185-abf7-4c4d-a382-504e3696623a;nelec;-0.567111;44.890889;34970;Passy;; +;PMD AUTOMOBILES;877614388;sde.yea@vialis.net;M.A.J.U.;jean-charles-kieffer@wanadoo.fr;01 85 65 04 49;SONEPAR BELLEY;FRELCPECUSM;FR*SOD*S*GACO*3*2*_*_;Écully - Smart Lyon Écully;;4 chemin Jean-Marie Vianney 69130 Écully;73103;[4.78311100,45.78565100];;FRELCEQM2Y;FR*SOD*E*GACO*3*2*1*_;124;;;;;;;;;;0.40 €/kWh;;;Mo-Fr 09:00-18:00,Sa 09:00-17:00;;Non;;;50034242358332;2023-06-07;Situé en zone d'activité tertiaire;2022-07-21;;2023-08-05T07:14:35.550000+00:00;630cbf43676705f483d733a5;84be2e54-4d1d-4869-9b1b-25ca5b02a061;christian-marti;4.783111;45.785651;74190;Drumettaz-Clarafond;; +;Super U - Saint Barthelemy d'Anjou;317782282;contact@electricite-loos.fr;Ramsay Pole Lille métropole;contacte@zeborne.com;0388504888;55 VAUBECOURT - 13 rue Ernest Chaudron - 66185;FRELCPLATHF;FR*SOD*S*GACO*4*3*_*_;Lattes - Hôtel F1;;Chemin de Saint-Hubert 34970 Lattes;72260;[3.89605300,43.58672300];;FRELCE3RT2;FR*SOD*E*GACO*4*3*1*_;64;;;;;;;;;;3 €/heure;;;Mo-Fr 08:00-19:00,Sa 09:00-18:00;;Pas de hauteur maximal;;;50098929896623;2023-07-27;Ouverture du site du lundi au samedi de 06h00 à 20h00 hors dimanche;2021-02-22;;2023-08-05T07:14:35.278000+00:00;62ea56ffc59481a10c2210ff;ad0ca105-b66a-497a-8196-2ad6893215cf;e-totem;3.896053;43.586723;73420;Ruaudin;; +;Mazda Macon - ACT AUTOMOBILES;313283707;emmanuel-pointet@armstrong-france.fr;Provibat;support.eu@chargepoint.com;0466406565;SEUIL D'ARGONNE - 66173 - Place Poincaré;FRELCPPASDC;FR*SOD*S*MB33*162*2*_*_;Passy - Decathlon Mountain Store;;170 avenue Léman Mont-Blanc 74190 Passy;63198;[6.69171800,45.91665700];;FRELCEVHTV;FR*SOD*E*MB33*162*2*1*_;47;;;;;;;;;;1€ cout de connexion et 0,70cts/minutes;;;Mo-Fr 08:00-19:00,Sa 09:00-12:00,Sa 14:00-18:00;;sans objet;;;21407235761556;2023-06-16;recharge disponible uniquement aux heures d'ouverture;2022-03-24;;2023-08-05T07:14:34.928000+00:00;630cb38f867bcce6d66f6f85;405b01d8-0448-439f-b46a-4b86cf1abdb8;gf3e;6.691718;45.916657;72230;Loubeyrat;; +;EAM;853947687;mairie.vaudreuille@wanadoo.fr;M. Yannick PIERRE;zen.construction39@orange.fr;0359758758;Super Chargeur Sorigny A10 CCS;FRELCPAAGARB;FR*SOD*S*MB33*165*1*_*_;A62 - Aire de Garonne (direction Bordeaux);;214 chemin de la Boisière 73420 Drumettaz-Clarafond;76305;[1.00412700,44.04048500];;FRELCE8U6Z;FR*SOD*E*MB33*165*1*1*_;24.00;;;;;;;;;;0.2 AC €/kWh;;;Mo-Fr 00:00-07:00,Mo-Fr 18:00-23:45,Sa-Su 00:00-23:45;;Non communiqué;;;161 519 534 773 28;2023-08-03;Situé en centre ville/ accessible de 9h à 18h uniquement;2022-03-30;;2023-08-05T07:14:34.436000+00:00;62fe15bebcdb5dda421969a9;8000167d-fdae-4d52-9db0-00f92ba612c2;snmg2e;1.004127;44.040485;63410;Gonfreville-l'Orcher;; +;Hostellerie des ducs;430357152;dt@occitaniebasketball.org;SDC ORDINAL;bureau@jerome-nutile.com;0618922599;BLOIS 4383 - Place Jacques Lob;FRELCPDRULE;FR*SOD*S*MB33*164*1*_*_;Drumettaz-Clarafond - E.Leclerc;;1 boulevard des Hunaudières 72230 Ruaudin;93001;[5.91307100,45.65572600];;FRELCELRUA;FR*SOD*E*MB33*165*1*2*_;7.00;;;;;;;;;;0.04€ la minute;;;Mo-Fr 07:00-18:00;;50042629009564;;;50078089380014;2023-06-19;Recharge réservé au flottes de véhicule et clients atelier automobile;2022-08-25;;2023-08-05T07:14:34.175000+00:00;631ed0f56939d9c655f3f4e3;5fd7e7e2-655b-4be0-9965-fe66b3754a26;e-motum-sas-1;5.913071;45.655726;76700;Aubervilliers;; +;Mazda ROANNE;539245803;direction@hotel-dolcevita.com;TISSERANT;contact@ramsaygds.fr;034931574967;Val Neuvy;FRELCPRUAFV;FR*SOD*S*MB33*163*1*_*_;Ruaudin - CC Family Village les Hunaudières;;A89 - Aire de Manzat 63410 Manzat;94065;[0.23963700,47.94380700];;FRELCET9E4;FR*SOD*E*MB33*164*1*2*_;7.0;;;;;;;;;;0.5€/kwh;;;Mo-Su 08:00-22:30;;2m50;;;30001950816106;2023-04-17;recharge unique;2022-12-25;;2023-08-05T07:14:33.946000+00:00;62e7b8337c48ce7230f0753e;cb8709e9-9443-498b-b0f0-59e488133509;conectys;0.239637;47.943807;93300;Rungis;; +;Mercedes Benz - Cluses EMB74;379070832;info@compinglabelleetoile.com;jmd;contact@indigo-proprete.fr;0673679201;CONTRES 4440 - Rue dela libération;FRELCPAAMZT;FR*SOD*S*MB33*162*1*_*_;A89 - Aire de Manzat (double sens);;Avenue du Camp Dolent 76700 Gonfreville-l'Orcher;92073;[2.98933300,45.95702700];;FRELCEYA8X;FR*SOD*E*MB33*164*1*1*_;5.9;;;;;;;;;;0.3€ : prix au kWh;;;Mo-Fr 08:30-17:30;;Hauteur maximale 4m;;;30001950816103;2023-05-26;recharge uniquement disponible pendant les horaires de bureau;2022-09-10;;2023-08-05T07:14:33.699000+00:00;62ea365c6fb9cab050839b0c;79096782-58af-435f-898e-e92f1a082d7c;sergent;2.989333;45.957027;94150;Suresnes;; +;LITTORAL VENDEE AUTOMOBILES - MAZDA LA ROCHE SUR YON;390389344;nadine.thal@secal.fr;box;p.calcei@gmail.com;0329665414;LURAY - Rue Emile Zola - 130756;FRELCPGOOOC;FR*SOD*S*MB33*167*1*_*_;Gonfreville-l'Orcher - Centre commercial Océane;;102 rue du Port 93300 Aubervilliers;13088;[0.22374100,49.50678300];;FRELCEBSSE;FR*SOD*E*MB33*163*1*2*_;42;;;;;;;;;;0.3€ : prix au kWh0000000000;;;Mo-Th 10:00-16:30;;2,35 max;;;3,00021E+13;2022-12-30;Rechange disponible uniquement durant les heures d'ouverture du site;2022-09-28;;2023-08-05T07:14:32.895000+00:00;62ea923436309fb24d08c9e0;45bed59c-7745-4381-bd44-2d48eef5d96e;soregies;0.223741;49.506783;92150;Le Rove;; +;MAZDA VERDUN -JM AUTOMOBILES;517502365;nellyperrin@me.com;SARL BEAUDRE BAUDOT;sales@electromaps.com;0329306633;SALBRIS 4485 - Rue de la Convention;FRELCPAUBVM;FR*SOD*S*MB33*161*1*_*_;Aubervilliers - Lab Village mobilité;;4 avenue Charles Lindbergh 94150 Rungis;38151;[2.37351000,48.91973300];;FRELCECURS;FR*SOD*E*MB33*163*1*1*_;15;;;;;;;;;;0.7;;;Mo-Fr 09:00-17:00;;2.50;;;300002506911580;2023-05-16;Pendant les horraires d'ouverture de l'agence;2022-09-26;;2023-08-05T07:14:32.579000+00:00;62eb86a38257a735b7fb06ca;8ded55cc-04c8-4efc-b183-34db2f42bb29;wellborne;2.37351;48.919733;13740;Échirolles;; +;Mazda THIONVILLE - AZUR MOTORS;348753575;a.tarridec@maborneauto.com;Société Sigma Tec;Contact@secal-electricite.fr;0388688458;SALBRIS 4489 - Avenue de la Resistance;FRELCPRUNBW;FR*SOD*S*MB33*160*2*_*_;Rungis - Best Western Paris Orly Airport;;15 boulevard Henri Sellier 92150 Suresnes;11018;[2.35105600,48.75293100];;FRELCEB4ZB;FR*SOD*E*MB33*162*1*2*_;0;;;;;;;;;;0.70;;;Mo-We 00:00-23:45,Fr-Su 00:00-23:45,Th 14:00-23:45;;Restriction de gabarit non précisée;;;30001991125859;2022-11-22;Paiement par carte de recharge;2022-10-04;;2023-08-05T07:14:32.330000+00:00;62e4ef5e62a9ae4b8d94fe19;a1b53d9b-4c2a-451b-a4c6-a87b822119b7;julie-parent;2.351056;48.752931;38130;Arzens;; +;Kia Yffiniac - AUTO DESIGN;379198443;automobiledelest1@gmail.com;EV MAP SAS;contact@autorecharge.Fr;0231360606;LAMOTTE BEUVRON 4493 - Place du 11 Novembre;FRELCPSURHC;FR*SOD*S*MB33*160*1*_*_;Suresnes - Hôtel Campanile;;A55 - Aire de Gignac Rebuty 13740 Le Rove;79191;[2.22618200,48.86724500];;FRELCE6VCB;FR*SOD*E*MB33*162*1*1*_;19;;;;;;;;;;0,45€/kWh;;;Mo-Fr 07:00-19:00;;Hauteur 2m;;;30001991125523;2022-09-14;Recharge disponible uniquement pendant les horaires d'ouverture.;2022-10-02;;2023-08-05T07:14:32.111000+00:00;62ebca154fadff72d0f02768;3f732535-9771-47a7-9dcb-1719445feb6b;herve-thermique;2.226182;48.867245;11290;Niort;; +;Intermarché - Courtisols;812806461;jeremie.ferre@spie.com;Chargepoint;WILFRIED@HOVE.FR;0681375294;BRACIEUX 4436 - Rue de Candy;FRELCPAAGIR;FR*SOD*S*MB33*159*1*_*_;A55 - Aire de Gignac Rebuty (direction Martigues);;1 rue de Comboire 38130 Échirolles;19031;[5.25625700,43.39215200];;FRELCE9EV5;FR*SOD*E*MB33*162*2*2*_;22080;;;;;;;;;;FIXE;;;Mo-Fr 08:00-18:00;;2m maximum;;;123456789123456;2023-07-25;Hotel IBIS;2021-06-22;;2023-08-05T07:14:31.821000+00:00;62f0b89f291b7a197cf8b901;e9bec77a-3490-4ded-b1f0-aefd2603487e;volta-sas;5.256257;43.392152;79000;Brive-la-Gaillarde;; +;MAZDA MAREIL MARLY - TECHNIC AUTO SERVICES;309623783;fcascino@agencecd6440.fr;SNAM GROUPE;ggepetitjeanjmd@orange.fr;09 73 79 63 33;FRANKENBOURG BORNE GARAGE;FRELCPECHKF;FR*SOD*S*MB33*158*1*_*_;Échirolles - KFC;;A61 - Aire d'Arzens Nord 11290 Arzens;78644;[5.69601400,45.15080000];;FRELCEB7QB;FR*SOD*E*MB33*167*1*2*_;50000;;;;;;;;;;0.45;;;Mo-Sa 08:00-12:00,Mo-Sa 14:00-19:00;;pas de restriction;;;01184080914695;2023-05-30;Restaurant Keywest;2020-12-04;;2023-08-05T07:14:31.593000+00:00;62f0c00922aed4d3a6f524bc;e1603825-161c-45dd-b663-1ac5a1de916c;syndicat-departemental-des-energies-de-seine-et-marne-3;5.696014;45.1508;19100;La Verrière;; +;Mazda - Bourges;256802745;abdul.mansoura@orange.fr;E-TOTEM;romain.box@notaires.fr;03 69 24 67 32;MONTLIVAULT 4501 - Rue du Château d'eau;FRELCPAAARZN;FR*SOD*S*MB33*11*1*_*_;A61 - Aire d'Arzens Nord (direction Toulouse);;68 rue de Fontenay 79000 Niort;30189;[2.21676300,43.21998400];;FRELCELKR5;FR*SOD*E*MB33*161*1*2*_;300000;;;;;;;;;;De 8h à 22h 0,30cts KW après la charge 0,50cts par tranches de 5mn et de 21h à 8 h 0,05cts KW la facturation continue tant que le véhicule est branché;;;Mo-Su 08:00-22:00;;hauteur maximale 2m;;;67439/E1/063858527;2023-02-09;Garage Euromaster;2020-11-23;;2023-08-05T07:14:31.224000+00:00;62f0c6db1a686a44dc685c4a;35b7c262-4fc2-4d15-a4b2-0d035d3ff603;securecharge;2.216763;43.219984;78320;Nîmes;; +;Mazda HAGUENAU -GARAGE DU MOULIN;686850223;stephane@bubbletree.fr;GF3e;support@freshmile.com;0185650449;NEUILLE LE LIERRE 4503 - Place de la gare;FRELCPNIOLE;FR*SOD*S*MB33*168*1*_*_;Niort - E.Leclerc Centre;;Rue Général Pierre Pouyade 19100 Brive-la-Gaillarde;72181;[-0.46915400,46.33065500];;FRELCENM9B;FR*SOD*E*MB33*161*1*1*_;60000;;;;;;;;;;0,55 €/ kwh;;;Mo-Su 09:00-18:00;;hauteur 2 m;;;30002420395386;2021-04-13;Restaurant La Brasserie Gourmande;2021-06-25;;2023-08-05T07:14:30.803000+00:00;62f0d240556c284e1d904ab4;ec336a6b-a977-4900-8c60-c44837d5a60f;mobelec;-0.469154;46.330655;30900;Le Mans;; +;Territoire d'Energie Alsace;317898492;seikou.diakho@vinci-facilities.com;SARL JUMO;gohel.stephane@orange.fr;01 85 65 78 78;CHINON 4504 - Place Jeanne d'arc;FRELCPBLGHC;FR*SOD*S*MB33*174*2*_*_;Brive-la-Gaillarde - Hôtel Campanile;;6 rue Louis Lormand 78320 La Verrière;49246;[1.47490800,45.14604100];;FRELCEAJKN;FR*SOD*E*MB33*160*2*1*_;90000;;;;;;;;;;0,4€/Kwh;;;Mo-Su 00:00-07:00,Mo-Su 19:00-23:00;;Hauteur maximal 1.5;;;ICCGDJBBF312;2021-04-15;Restaurant Hippopotamus;2021-09-22;;2023-08-05T07:14:30.360000+00:00;62f7a0c740b8d985cfb9e0d4;7e0579da-dd66-4316-8fc6-09eb05a184d9;borne-de-recharge-ad-bauducel;1.474908;45.146041;72000;Les Ponts-de-Cé;; +;NOMBLOT VILLEFRANCHE;391060480;marc@fiskagroup.com;sas e-motum;contact@sigma-tec.fr;01 85 65 78 77;PORTS 4506 - Place Romain Rideau;FRELCPVERHC;FR*SOD*S*MB33*177*1*_*_;La Verrière - Hôtel The Originals City;;Rue de l'Hostellerie 30900 Nîmes;62239;[1.94541400,48.75730900];;FRELCE3Q4L;FR*SOD*E*MB33*160*2*2*_;63000;;;;;;;;;;0.20;;;Mo-Fr 00:00-07:00,Mo-Fr 19:00-23:45,Sa-Su 00:00-23:45;;HAUTEUR MAX 2M;;;032136519727;2021-05-04;Supermarché Leclerc Cran Gevrier;2022-04-15;;2023-08-05T07:14:30.107000+00:00;62fe22b8554fe35da01d83f7;f89d0b17-211f-4831-8f9c-4aebf40f985b;allcoms-technologies;1.945414;48.757309;49130;Coquelles;; +;Toyota GAP- AUTO DAUPHINE;783669831;dimitri.saintviteux@temmos.com;WeDoM.io;contact@evmap.fr;0565437730;LA CHAUSSEE ST VICTOR 4510 - Rue de Montprofond;FRELCPNIMHF;FR*SOD*S*MB33*176*2*_*_;Nîmes - Hôtel F1 Ouest;;Rue du Parc Manceau 72000 Le Mans;64304;[4.34344200,43.81485400];;FRELCEYLJY;FR*SOD*E*MB33*160*1*1*_;3.4;;;;;;;;;;1€/h;;;Mo-Fr 09:00-16:00;;Hauteur maximal 3 mètres.;;;17125325512931;2021-04-12;Garage Norauto;2021-04-28;;2023-08-05T07:14:29.874000+00:00;62fe2be408bca48c83c59235;74022414-75bb-4364-81e4-89ab0ab95a41;engie-mobilites-electriques;4.343442;43.814854;62231;Lahonce;; +;KIA Chalon sur Saone - ZENITH MOTORS;434543864;f.aime@nnrfr.com;RICOME ET SADOUL AXA FRANCE;n.elec71@gmail.com;0473256208;MENETOU-SALON - Place de la Mairie - 205372;FRELCPLMAPM;FR*SOD*S*MB33*175*1*_*_;Le Mans - Parc Manceau;;Allée de la Bergerie 49130 Les Ponts-de-Cé;83069;[0.18198600,48.03112600];;FRELCE5FNN;FR*SOD*E*MB33*160*1*2*_;5;;;;;;;;;;TTC : 0,6€/kWh + 2,5€/connexion > HT : 0,46728€/kWh + 1,94704€/connexion de 1 à 2h de recharge : 1,5€/kWh > HT : 1,16822€/kWh de 2 à 3h de recharge : 2,5€/kWh > H.T : 1,94704€/kWh à partir de 3h de recharge : 5€/h > H.T : 3,89408€/kWh;;;Mo-Su 00:00-07:30,Mo-Sa 19:00-23:59,Su 13:00-23:59;;Hauteur maximal 3 mètres;;;17205354528783;2021-05-19;Restaurant La Maison B;2023-07-11;;2023-08-05T07:14:29.477000+00:00;62fe485c0485addda80b7275;11911cd3-a4b4-4c85-9808-7d8d236b3104;we-sun;0.181986;48.031126;64990;Hyères;; +;REGIE MUNICIPALE D'ELECTRICITE DE LOOS;213105554;kamel.bouaita@cbre.fr;SATUJO;yoan.ramos@snam.com;0361626161;Brumath Bernolsheim;FRELCPPDCHK;FR*SOD*S*MB33*173*1*_*_;Les Ponts-de-Cé - Hôtel Kyriad;;Boulevard du Parc 62231 Coquelles;33013;[-0.51005600,47.43626800];;FRELCELETC;FR*SOD*E*MB33*159*1*1*_;122;;;;;;;;;;0.7€;;;Mo-Su 08:30-20:00;;restriction_gabarit;;;25431258947194;2020-12-09;pendant les heures d'ouvertures;2023-07-20;;2023-08-05T07:14:28.645000+00:00;62fe54622db1447ad06e7c80;4e01e463-dcdf-43c2-815e-ca711fc29d5a;irve-sied70-1;-0.510056;47.436268;83400;Artigues-près-Bordeaux;; +;Armstrong France;330187931;benjamin.barreau@cherbourgport.fr;RSDA mobility;contact@e-totem.fr;04 73 15 01 00;COUR CHEVERNY 4432 - Rue Gilette;FRELCPCOQCH;FR*SOD*S*MB33*172*1*_*_;Coquelles - Channel Outlet;;3 avenue du Portou 64990 Saint-Pierre-d'Irube;26347;[1.80738200,50.92726900];;FRELCER6C6;FR*SOD*E*MB33*159*1*2*_;72;;;;;;;;;;0,36€ TTC / kWh, puis 3,6€ TTC par minute complémentaire à compter de la 3ème heure de session et entre 8h et 21h.;;;Mo-Sa 08:00-19:00;;NA;;;25669898651659;2020-09-16;DISPONIBLE PENDANT LES HEURES OUVERTURES;2023-07-30;;2023-08-05T07:14:28.294000+00:00;62fe5f15db077c1debd3b20d;18c98ee3-d51a-4ce2-a4fc-4e4b020fab7d;normatech;1.807382;50.927269;33370;Tain-l'Hermitage;; +;Mairie Vaudreuille;418415642;contact@polybati.fr;Camping des graniers;gf3e@gf3e.com;0391830700;SAINT AUBIN LE DEPEINT 4345 - Place de la Mairie;FRELCPSPIAM;FR*SOD*S*MB33*170*1*_*_;Saint-Pierre-d'Irube - CC Ametzondo Shopping;;Allée de la Mer 83400 Hyères;74133;[-1.44596000,43.48195000];;FRELCEKQK8;FR*SOD*E*MB33*158*1*1*_;18.00;;;;;;;;;;Non communiqué;;;Mo-Fr 09:00-16:30;;Hauteur maximale 2M;;;30001952288598;2020-10-29;Prise T3-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr';2023-07-25;;2023-08-05T07:14:28.050000+00:00;62ff791fa62562dddf957907;fd5216bc-30f5-44a0-b901-e4162a9e8465;la-borne-electrique;-1.44596;43.48195;74240;Gaillard;; +;Ligue Occitanie Basketball;802241182;ndumoulin@novances.com;EURO TAXI LINE;mairie-saint-genest@wanadoo.fr;04 95 30 05 25;LES TROIS DOMAINES (droite) Centre d'affaires;FRELCPHYEHI;FR*SOD*S*MB33*169*1*_*_;Hyères - Hôtel Ibis Plage;;Avenue du Moulinat 33370 Artigues-près-Bordeaux;33009;[6.14774800,43.05755700];;FRELCETN3F;FR*SOD*E*MB33*167*1*1*_;3.22;;;;;;;;;;8€;;;Mo-Th 00:00-23:59,Su 00:00-23:59,Fr 00:00-18:00,Sa 15:00-00:00;;max 2m;;;50038435566429;2020-09-22;Prise T2-EF
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr
Informations disponibles sur le site www.e-charge50.fr';2023-07-27;;2023-08-05T07:14:27.699000+00:00;62ffa7072b2a106b289568e3;169654ce-14b2-4e95-b76b-566c2d18c2c5;eizmendi-restauration;6.147748;43.057557;33120;Arcachon;; +;hôtel dolce vita;444533103;contact@agape-hotel.fr;Leroux Damien;frederic.morales@cuisines-aviva.com;0367106538;CGED CGED MARSAC;FRELCPAPBHC;FR*SOD*S*MB33*154*1*_*_;Artigues-près-Bordeaux - Hôtel Campanile;;450 avenue des Lots 26600 Tain-l'Hermitage;92035;[-0.49805800,44.86747600];;FRELCEP3T8;FR*SOD*E*MB33*11*1*1*_;3.00;;;;;;;;;;0,44 ttc/kwh;;;Mo-Fr 08:30-19:00,Sa 08:30-18:00;;FALSE;;;30002211338113;2020-11-10;Prise T2
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr, soit d'un TPE sans contact
Informations disponibles sur le site www.e-charge50.fr';2023-07-17;;2023-08-05T07:14:27.424000+00:00;630337aa5cd1d6ba7d6e8b07;dc3df360-419d-4f79-b6b0-e59b5df96776;irve-territoire-denergie-90;-0.498058;44.867476;92250;La Garenne-Colombes;; +;SCI DE LA PRAIRIE;440793552;contact@wickertp.fr;PTBG et associés;contact@e-motum.net;754374751;SELLES SUR CHER 4350 - Allée de la Gravouille;FRELCPTLHIM;FR*SOD*S*MB33*157*1*_*_;Tain-l'Hermitage - Intermarché;;5 rue des Jardins 74240 Gaillard;92026;[4.86549700,45.06871200];;FRELCEHZ9B;FR*SOD*E*MB33*168*1*1*_;43.00;;;;;;;;;;0,60;;;Mo-Fr 08:30-19:00,Sa 09:00-18:00;;2 m;;;50044516005274;2020-10-28;Prise COMBO-CCS
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr, soit d'un TPE sans contact
Informations disponibles sur le site www.e-charge50.fr';2023-06-25;;2023-08-05T07:14:27.112000+00:00;630341b861e45ddfed4918e4;b9b1e845-718a-436a-b5c3-99080c4e0ca0;sap-labs-france;4.865497;45.068712;;;; +;KIA SENS;402343842;odile.coumau@ezdrive.fr;BH RESTAURATION;contact@wedom.io;0556372993;SELLES SUR CHER 4353 - Rue du Moulinet;FRELCPGAIKD;FR*SOD*S*MB33*82*1*_*_;Gaillard - Kyriad Direct Annemasse;;BOULEVARD DE LA CÔTE DARGENT;33243;[6.21994400,46.18388100];;FRELCEERQN;FR*SOD*E*MB33*174*2*3*_;11.00;;;;;;;;;;0,4;;;Mo-Fr 08:00-12:00,Mo-Tu 13:30-17:30,We-Fr 13:00-17:30;;sans;;;06372503564234;2022-01-27;Prise CHADEMO
Service accessible
- aux abonnés disposant d'un badge de mobilité électrique
- aux non abonnés disposant d'une carte bancaire, via le site www.e-charge50.fr, soit d'un TPE sans contact
Informations disponibles sur le site www.e-charge50.fr';2023-07-22;;2023-08-05T07:14:26.854000+00:00;630482069ddbc2735be31f82;99bb35db-f6b1-44ce-9443-8b343691328e;irvee;6.219944;46.183881;33500;Libourne;; +;Mazda - Colmar;403547102;hello@weecharge.fr;Bouygues Energies et Services;agence.ricome@axa.fr;04 66 91 03 11;BLOIS - Place Saint Honoré -139113;FROTHPOTHR18131;FR*SOD*S*MB33*83*1*_*_;ARCACHON - MOULLEAU;;AVENUE DU PARC PÉREIRE;33199;[-1.201663, 44.641716];;FRELCEFT5L;FR*SOD*E*MB33*11*1*2*_;230;;;;;;;;;;0,35€/Kwh;;;Mo-Sa 08:00-12:00,Mo-Fr 14:00-19:00,Sa 14:00-18:00;;Hors PL;;;30001951216939;2021-03-08;Paiement par smartphone, et applications;2023-07-28;;2023-08-05T07:14:26.605000+00:00;63049f310ae41c88f5291a56;85415f3c-3363-4356-bbf0-ecff0bd789e5;reseau-alterbase-79;-1.201663;44.641716;33470;Gujan-Mestras;; +;Toyota - Metz;391581451;assistance-commerciale@e-vadea.fr;ANYOS;compta.ing@satujo.com;0466606854;BLOIS 4373 - Avenue du Maréchal Maunoury;FROTHPOTHR18151;FR*SOD*S*MB33*84*1*_*_;ARCACHON - PEREIRE;;AVENUE DU GÉNÉRAL DE GAULLE;33141;[-1.193047, 44.658496];;FRELCEVLFL;FR*SOD*E*MB33*177*1*1*_;400;;;;;;;;;;0.20€/KWH + 0.025€/MIN;;;Mo-Fr 08:30-12:00,Mo-Sa 14:00-18:00,Sa 09:00-12:00;;Maximum 2m;;;30002430503852;2021-07-16;Paiement par smartphone, applications et CB;2023-06-08;;2023-08-05T07:14:26.324000+00:00;6304f9dcf506f5fda56e96fe;66b4ae4b-ceee-4287-809b-56263a5750b3;citeos-boulogne-sur-mer;-1.193047;44.658496;33750;Croignon;; +;FORD LORIENT;451609978;m.levy@1pacte.com;Sanou électricité;vrousset@mobilease.fr;06 19 25 65 52;SONEPAR BOULAZAC;FROTHPOTHR18111;FR*SOD*S*MB33*85*1*_*_;ARCACHON - GARE;;RUE DE LA PÉCHERIE;33001;[-1.165259, 44.659664];;FRELCE43UP;FR*SOD*E*MB33*177*1*2*_;110;;;;;;;;;;0.50€;;;Mo-Fr 07:00-21:00;;2,5 m;;;30001954616566;2020-07-20;Recharge uniquement disponible pendant ouverture du camping;2023-05-26;;2023-08-05T07:14:25.961000+00:00;6305dafe8c494f53646334da;22c845e1-ed0b-4f6d-bf41-b0254606fb3f;charge-in;-1.165259;44.659664;33230;Abzac;; +;SNS SOLUTIONS MARSEILLE;323838110;claudel.philippe@gmail.com;MOBELEC;Campinggraniers@gmail.com;06 59 74 24 88;EPINAL - Parking La Louvière - 144239 - CCS;FROTHPOTHR18141;FR*SOD*S*MB33*86*1*_*_;ARCACHON - AIGUILLON;;BOULEVARD DE LA RÉPUBLIQUE;33330;[-1.146988, 44.656649];;FRELCE9FKT;FR*SOD*E*MB33*176*2*3*_;2.3;;;;;;;;;;0.,49€/kWh;;;Mo-Fr 08:00-17:30;;parking sous terrain;;;02591461646614;2020-08-27;24/7, 0,30 € kwh;2023-05-25;;2023-08-05T07:14:25.530000+00:00;6307af9771e4666eb1e9f217;72fdf5dc-cfce-4ec6-95fa-c24487511cb3;recharger-mon-auto;-1.146988;44.656649;33550;Pompignac;; +;AJACCIO NORD AUTOMOBILES - MAZDA AJACCIO;349214825;albarry@residence-lescalanques.fr;SECAL;eurotaxiline@free.fr;06 07 48 92 08;BLOIS 4387 - Rue des Alliés;FROTHPOTHR18121;FR*SOD*S*MB33*87*1*_*_;LA GARENNE-COLOMBES - 52 BOULEVARD DE LA REPUBLIQUE;;BOULEVARD NATIONAL;33226;[2.249567, 48.906326];;FRELCE8KAJ;FR*SOD*E*MB33*176*2*2*_;27;;;;;;;;;;0,39€/kWh + 1.5€ a l'acte;;;Mo-Fr 08:00-12:00,Mo-Fr 13:00-16:00;;hauteur maximale 3 m;;;30001951573996;2020-06-04;Borne 50KW DC ou 2x25KW DC +1x22KW AC;2023-06-07;;2023-08-05T07:14:25.137000+00:00;631bc1455db7afefd3ac4ef5;cf976797-e592-40ca-9244-b3907f80edf0;mablelec-e-carplug;2.249567;48.906326;33450;Langoiran;; +;MAZDA PERIGUEUX;393417522;manager.nogentsurmarne@campanile.fr;Wedom;damienleroux2@yahoo.fr;0624947678;LES BAGENELLES BORNE 1;FROTHPOTHR18051;FR*SOD*S*MB33*88*1*_*_;LA GARENNE-COLOMBES - 92 BOULEVARD NATIONAL;;RUE DE COLOMBES;33433;[2.237217, 48.908458];;FRELCEQGW2;FR*SOD*E*MB33*176*2*1*_;26;;;;;;;;;;0,2;;;Mo-Th 07:00-17:30,Fr 07:00-16:30;;Pas de restriction de hauteur;;;50049869814518;2020-04-03;Recharge uniquement disponible pendant les horaires d'ouvertures de la société;2023-06-17;;2023-08-05T07:14:24.528000+00:00;6335795670a257e334bf60be;967950b1-243b-439c-85ab-b12a987dadde;hopital-saint-camille;2.237217;48.908458;33510;Saint-Loubès;; +;Sezeo 60;408829224;r.ginder@comptoirdesfers.com;WeDoM;service-recharge@soregies.fr;05 49 44 79 00;55 BAR LE DUC-rue d'Alnois-66244;FROTHPOTHR18031;FR*SOD*S*MB33*89*1*_*_;LA GARENNE-COLOMBES - 126 RUE DE COLOMBES;;AVENUE DE VERDUN 1916;33485;[2.255774, 48.905086];;FRELCESKU5;FR*SOD*E*MB33*175*1*2*_;62500;;;;;;;;;;0.528;;;Mo-Sa 09:00-12:00,Mo-Fr 14:00-18:00,Sa 14:00-17:00;;Hauteur Maximum 3m;;;30001950269674;2023-07-03;RECHARGEMENT UNIQUEMENT DISPONNIBLE AUX HEURES D OUVERTURE;2023-06-02;;2023-08-05T07:14:24.183000+00:00;633c3d6a229b762d89073975;f1cbefd2-72c5-43ef-929b-b43537212d0c;ets-levezier-et-fils;2.255774;48.905086;33360;Sainte-Terre;; +;Semcoda Parking Belley Vieille Porte;330590449;l.leleu@groupegca.com;BAUDUCEL;f.dineur@groupeptbg.fr;5 49 44 79 00;EPINAL - Pkg Petit Champ de Mars - 144258 - CCS;FROTHPOTHR18011;FR*SOD*S*MB33*90*1*_*_;LA GARENNE-COLOMBES - 31 BOULEVARD NATIONAL;;RUE DU TRANSVAAL;33005;[2.239232, 48.903313];;FRELCEVZZA;FR*SOD*E*MB33*175*1*1*_;3.7;;;;;;;;;;0.3€/kWh et 0.5€/Session;;;Mo-Fr 09:00-19:00;;hauteur maximum 2m;;;01176121544650;2023-03-27;Parking réservé à la clientèle de l'hotel;2023-06-30;;2023-08-05T07:14:23.646000+00:00;633c2e48f5642b483a63d6ef;82751c7d-5d82-4d17-8778-190249fce27d;agglomeration-montargoise-et-rives-du-loing;2.239232;48.903313;33780;Andernos-les-Bains;; +;Servigny-Lès-Sainte-Barbe;909177295;jean-charles-kieffer@wanadoo.fr;non concerné;restaurantlasource@wanadoo.fr;0231291931;BLOIS 4430 - Square du 11 Novembre 1918;FROTHPOTHR18041;FR*SOD*S*MB33*91*1*_*_;LA GARENNE-COLOMBES - 41 AVENUE DE VERDUN;;CENTRE AQUATIQUE ZONE DES DAGUEYS;33045;[2.231137, 48.903906];;FRELCEXXUF;FR*SOD*E*MB33*174*2*2*_;11.04;;;;;;;;;;0.51€/kwh;;;Mo-Sa 08:00-12:00,Mo-Sa 14:00-17:30;;hauteur maximal 2m5;;;16173661316794;2023-04-11;Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise;2023-03-11;;2023-08-05T07:14:23.290000+00:00;633be3c3ded669b45f55a6cb;99535f59-95b9-49ca-8741-e1502897f115;r3;2.231137;48.903906;33210;Belvès-de-Castillon;; +;Société Joseph COSTAMAGNA;820731552;intervallauris@gmail.com;Last Mile Solutions;a.buffler@bouygues-es.com;0613510848;BONNEVAL - Rue de Chartres - 129245;FROTHPOTHR17941;FR*SOD*S*MB33*92*1*_*_;LA GARENNE-COLOMBES - 3 RUE DU TRANSVAAL;;B AV DU MARECHAL DE LATTRE DE TASSIGNY;33535;[2.257169, 48.913486];;FRELCEJQSL;FR*SOD*E*MB33*168*1*2*_;22.08;;;;;;;;;;3€/Kw;;;Mo-Sa 08:00-18:30;;VL;;;67309/E1/072237107;2022-11-10;Recharge uniquement pendant les horaires d'ouvertures;2023-06-24;;2023-08-05T07:14:22.992000+00:00;633be14c246157b0dba16b62;70b32316-d5b0-4244-be7b-187fd841be50;garage-chene-total-energie-citroen;2.257169;48.913486;33380;Tresses;; +;Sarreguemines;443171558;hugo.lebreton@envergureauto.net.bmw.fr;SARL LAFOURCADE;contact@anyos.fr;369246732;SUPER U SEM BORNE 8;FROTHPOTHR17921;FR*SOD*S*MB33*93*1*_*_;LIBOURNE - CENTRE AQUATIQUE ZONE DES DAGUEYS;;RUE DE LA MAIRIE;33049;[-0.244976, 44.944289];;FRELCEEC6Z;FR*SOD*E*MB33*174*2*1*_;7.36;;;;;;;;;;0,60€/kwh;;;Mo-Sa 08:30-20:30,Su 08:30-12:30;;Pas de restrictions.;;;50094320884629;2023-02-20;Recharge uniquement disponible pendant les horaires d'ouvertures;2023-07-24;;2023-08-05T07:14:22.777000+00:00;63394259eb3d474407c3dea1;35e84779-d302-4493-9997-a2395643445d;allego;-0.244976;44.944289;33240;Beychac-et-Caillau;; +;Sarrebourg;306092701;maintenance@campusadventiste.edu;HAEFELI;contact.sanouelectricite@gmail.com;03 68 78 14 35;MER 4053 - Rue de Mardeau;FROTHPOTHR17911;FR*SOD*S*MB33*94*1*_*_;GUJAN-MESTRAS - AV DU MARECHAL DE LATTRE DE TASSIGNY;;RUE DU CHEMINOT;33085;[-1.115768, 44.639867];;FRELCE9LZ7;FR*SOD*E*MB33*173*1*2*_;1.7;;;;;;;;;;0.45€/ kwh;;;Mo-Th 08:00-20:00,Sa 08:00-20:00,Fr 08:00-20:30;;1.9m;;;50072013136250;2020-06-02;Paiement autre - badge RFID Belib ou autre, application Belib, QRCode sur chaque PDC, site internet Belib|Plus d'information - https://belib.paris.fr;2023-07-23;;2023-08-05T07:14:22.384000+00:00;6336fdd9350155cb958056f6;54d4fa4c-323d-452a-8196-4b72b6c1030d;inouid-smart-mobility;-1.115768;44.639867;33290;Camblanes-et-Meynac;; +;Satoriz Grenoble;488482985;zen.construction39@orange.fr;SCI LA COLLINE;contact@groupe-mobelec.fr;07 60 88 38 03;Shell Aire de Béziers-Montblanc NORD;FROTHPOTHR17931;FR*SOD*S*MB33*95*1*_*_;CROIGNON - RUE DE LA MAIRIE;;AV DE LA MAIRIE;33514;[-0.345016, 44.81952];;FRELCE523H;FR*SOD*E*MB33*173*1*1*_;14;;;;;;;;;;0,22;;;Mo-Sa 07:00-20:30,Su 07:00-12:30;;1m80;;;30002540891092;2020-04-01;Recharge uniquement disponible pendant les horaires d'ouverture du Technopole de l'Arbois;2023-07-16;;2023-08-05T07:14:22.038000+00:00;63346ce315241bef2b86927a;4114031b-9570-41aa-b40a-93b15cc76f3a;auberge-st-walfrid;-0.345016;44.81952;33570;Soulac-sur-Mer;; +;Semcha;518528708;bureau@jerome-nutile.com;ATRACHATA;bauducel-christophe@orange.fr;0651530708;SONEPAR LIBOURNE;FROTHPOTHR17951;FR*SOD*S*MB33*96*1*_*_;ABZAC - RUE DU CHEMINOT;;PLACE DOCTEUR ABAUT;33241;[-0.128961, 45.015847];;FRELCE94XN;FR*SOD*E*MB33*172*1*1*_;22000;;;;;;;;;;https://www.seolis.net/alterbase/nos-tarifs/;;;Mo-Sa 08:30-20:30;;AUCUNE RESTRICTION;;;30000111085849;2020-04-02;-;2022-10-06;;2023-08-05T07:14:21.780000+00:00;63345399b27f3bf15b418db5;5645b474-ab55-4cd1-aa4f-24e205a7540c;tv-mosaik;-0.128961;45.015847;33620;Lestiac-sur-Garonne;; +;Seat Cupra Béziers;434085395;service.clients@skidata.com;LE REVE DE JANINE;info@electromaps.com;0602496954;SUPER U ARNAGE ARNAGE 5 DC;FROTHPOTHR17841;FR*SOD*S*MB33*97*1*_*_;POMPIGNAC - AV DE LA MAIRIE;;CHEMIN DE PELIGON;33504;[-0.438853, 44.85042];;FRELCEP8CJ;FR*SOD*E*MB33*172*1*2*_;7000;;;;;;;;;;0.25AC €/kWh;;;Mo-Sa 08:00-19:30;;2.5m;;;12145875500144;2020-03-31;Recharge uniquement à la clientèle;2023-01-23;;2023-08-05T07:14:21.411000+00:00;633452e50c0366eecca7df9d;acb47d07-9bb1-43be-ad7f-96de2094b44e;fournier-guy;-0.438853;44.85042;33650;Sauternes;; +;Sedd;801121096;contact@indigo-proprete.fr;Gamba et Rota;support@lastmilesolutions.com;0134222222;CGED CGED LONS;FROTHPOTHR17831;FR*SOD*S*MB33*81*1*_*_;LANGOIRAN - PLACE DE L’EGLISE;;LAVAGNAC - RUE DU GÉNÉRAL DE GAULLE;33099;[-0.400987, 44.708023];;FRELCE39HA;FR*SOD*E*MB33*170*1*2*_;3000;;;;;;;;;;0,45 € par kWh entamé De 6h à 23h, après 2h de branchement : 0,20 € par minute supplémentaires;;;Mo 12:00-20:30,Tu 08:30-19:00,We-Th 08:30-20:30,Fr-Sa 08:30-21:00,Su 08:30-12:00;;Hauteur maximale 1.5;;;30000161061393;2021-07-12;application E-mobility;2023-07-14;;2023-08-05T07:14:21.155000+00:00;6334483195c96a8f4ec9f604;2c4e1dda-7d6f-4c21-b7f0-6b19c48fc01f;irve-sm;-0.400987;44.708023;33580;Carignan-de-Bordeaux;; +;Scy-Chazelles;432152593;p.calcei@gmail.com;MABORNEAUTO;sarl.lafourcade@orange.fr;0131013103;CGED CGED VIENNE;FROTHPOTHR17811;FR*SOD*S*MB33*66*1*_*_;SAINT LOUBES - CENTRE NAUTIQUE;;GIRATOIRE QUERQUILLAS;33284;[-0.424664, 44.914339];;FRELCEVYWJ;FR*SOD*E*MB33*170*1*1*_;32;;;;;;;;;;0,60 € par kWh entamé De 6h à 23h, après 2h de branchement : 0,20 € par minute supplémentaires;;;Mo-Sa 09:00-20:00;;Hauteur Maximale2m;;;24370477447315;2020-08-25;Recharge uniquement disponible aux horaires d'ouverture de l'etablissement.;2023-07-06;;2023-08-05T07:14:20.897000+00:00;6332ff9d8420b360f12541f0;0bb0958d-6c80-4450-89df-2ed3aad072f0;territoire-denergie-alsace;-0.424664;44.914339;33138;Mios;; +;Semcha Ampere;891652950;m.morel@golf-caenlamer.fr;Borneco | FR*BHM;florent.mayery@citeos.com;0243986242;MER 4043 - Avenue Maréchal Maunoury;FROTHPOTHR17821;FR*SOD*S*MB33*67*1*_*_;SAINTE-TERRE - LAVAGNAC – RUE DU GENERAL DE GAULLE;;LE BOURG / PARKING PROCHE EGLISE;33366;[-0.135596, 44.819706];;FRELCEZ8CL;FR*SOD*E*MB33*169*1*2*_;4.6;;;;;;;;;;0.40€/kWh pour les visiteurs;;;Mo-Sa 06:00-19:30,Su 06:00-12:30;;Hauteur maximale 2 m;;;3000030000110744207;2020-07-23;Badge RFID à demander à l'accueil du magasin;2023-02-22;;2023-08-05T07:14:20.596000+00:00;6332fa5949dcf0554df5892d;1b054a83-b60e-4efc-8fe0-cac057983671;e-leclerc-millau;-0.135596;44.819706;33114;Saint-André-de-Cubzac;; +;Satoriz Vendenheim;818984221;natworthy@junobeach.org;ELEK BORDEAUX;p.georges@groupe-ipa.com;+31 10 312 6000;OUCQUES 4071 - Place du Château;FROTHPOTHR17851;FR*SOD*S*MB33*68*1*_*_;ANDERNOS LES BAINS - GIRATOIRE QUERQUILLAS;;AVENUE DES ÉCOLES;33256;[-1.050627, 44.776755];;FRELCECZGJ;FR*SOD*E*MB33*169*1*1*_;5.5;;;;;;;;;;De 7h à21h 0,05 CTS DE LA MN LES 2 ER HEURES PUIS 0,10CTS LES SUIVANTES DE 21H A 7H 0,025CTS DE LA MN;;;Mo-Fr 07:45-20:15,Sa 07:45-20:45;;False;;;30000121137499;2020-05-29;Recharge jusqu'à 350KW - CCS;2023-05-19;;2023-08-05T07:14:20.295000+00:00;6332ddab127895fc5785c307;60674723-e0fb-404b-ae2e-1a119b31df95;sodel;-1.050627;44.776755;33850;Ludon-Médoc;; +;Satoriz Léman;445403512;lemoulindepierre@hotmail.com;Normatech;direction@adonis-aleria.com;0558436633;AUNEAU - Rue Pasteur - 186530;FROTHPOTHR18021;FR*SOD*S*MB33*69*1*_*_;BELVES DE CASTILLON - LE BOURG / PARKING PROCHE EGLISE;;ROUTE DU FILEUR;33261;[-0.031351, 44.878628];;FRELCELTZA;FR*SOD*E*MB33*154*1*1*_;175.00;;;;;;;;;;0.50;;;Mo-Th 07:45-20:15,Sa 07:45-20:15,Fr 07:45-20:45;;1.9;;;12345687945612;2021-06-25;Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise OVERCHEM;2023-07-21;;2023-08-05T07:14:19.884000+00:00;633c63efd5f2b7c2a00178a0;e7d86dba-5931-4685-8f5a-0af3703b5fc2;area-tech;-0.031351;44.878628;33250;Lussac;; +;Schott VTF;796680668;be@sbenergy.fr;SNER RHONE-ALPES;pozzodimastri.adm@gmail.com;0381215444;FRETEVAL 4091 - Rue De Pont;FRLGCPGACO161;FR*SOD*S*MB33*70*1*_*_;TRESSES - AVENUE DES ECOLES;;ROUTE DE MORILLON;33264;[-0.463965, 44.847856];;FRELCES764;FR*SOD*E*MB33*157*1*1*_;100.00;;;;;;;;;;0.20€/kWh+0.025€/min;;;Mo-Sa 09:30-18:30;;Véhicules Particulier;;;12345678945612;2022-10-07;Recharge destinée uniquement au personnel et aux clients aux horaire d'ouverture de l'entreprise;2023-05-15;;2023-08-05T07:14:19.593000+00:00;633d6db1b1c22bf7d030b81a;4bad8a65-6079-4d09-b541-f894d627f057;impact-tomorrow;-0.463965;44.847856;33790;Maransin;; +;Scipittermall;380655548;contact@secal-electricite.fr;EIZMENDI TRAITEUR EVENEMENTS;stephane.bussiere@varennespie.fr;0680462242;BORNES SAVIGNY LE MILLENAIRE 2;FRLGCPGACO131;FR*SOD*S*MB33*71*1*_*_;BEYCHAC-ET-CAILLAU - ROUTE DU FILEUR;;RUE DE LHÔTEL DE VILLE;33555;[-0.369699, 44.882555];;FRELCEKD8Y;FR*SOD*E*MB33*82*1*1*_;6.9;;;;;;;;;;0,30;;;Mo-Fr 10:00-14:00;;3.5;;;123456789AC;2022-06-01;Recharge uniquement pendant les horaires d'ouverture. Frais d'accès de 5€ + tarif à l'heure. Toute heure commencée est due.;2023-07-05;;2023-08-05T07:14:19.320000+00:00;633e96128ff9e7d15594ba19;3dcccb69-57c6-4de9-90ee-3e356217dbc3;qowatt;-0.369699;44.882555;33910;Marcheprime;; +;Singer BTP;538302092;contact@dajimmo.com;Lacotte Pierre;technique.borneco@gmail.com;0495570393;55 ANCERVILLE-87 rue de st Dizier-66213;FRLGCPGACO141;FR*SOD*S*MB33*72*1*_*_;CAMBLANES ET MEYNAC - ROUTE DE MORILLON;;RUE DU CARDINAL DONNET;33272;[-0.486943, 44.765249];;FRELCEDG96;FR*SOD*E*MB33*83*1*2*_;240;;;;;;;;;;0,55€/kWh;;;Mo-Fr 07:30-19:00;;3,5m;;;12345678932;2022-06-08;Recharge disponible uniquement pendant les heures d'ouverture;2023-02-25;;2023-08-05T07:14:19.038000+00:00;633ea48684dc7c8d03f06b2f;98552632-89b4-485a-a6ad-05d321129143;france-solar-sas;-0.486943;44.765249;33820;Marsas;; +;Speedy Réunion;879486520;c.aubron@campingstjean.fr;MAS DU TERME;contact@lodmi.com;04 95 71 02 65;55 BAR LE DUC-boulevard des flandres-66198;FRLGCPGACO261;FR*SOD*S*MB33*73*1*_*_;SOULAC-SUR-MER - PARKING DE LA MAIRIE;;CHEMIN DE LÉGLISE;33274;[-1.122837, 45.515089];;FRELCE59SX;FR*SOD*E*MB33*83*1*1*_;149;;;;;;;;;;0,36€/kWh;;;Mo-Sa 08:00-20:15;;4,0m;;;05449927582046;2020-10-14;Point de recharge uniquement disponible aux horaires d'ouverture;2022-11-03;;2023-08-05T07:14:18.747000+00:00;6343f4966d27978e360fc516;c2a86ef3-647e-4c5c-b0cd-95feacee8010;imac2;-1.122837;45.515089;33330;Martillac;; +;Speedy Sarreguemines;829900414;WILFRIED@HOVE.FR;Lacotte;b.pajou@sner-ra.fr;0689771003;55 COMMERCY-rue du cardinal de Retz;FRLGCPGACO151;FR*SOD*S*MB33*74*1*_*_;SOULAC-SUR-MER - PARKING DU MARCHE;;PLACE DE LA MAIRIE;33289;[-1.123766, 45.513463];;FRELCERHUT;FR*SOD*E*MB33*84*1*1*_;16;;;;;;;;;;DC 69 cts/Kwh AC 60 cts/KWh;;;Tu-Sa 08:00-12:00,Tu-Fr 14:00-18:00,Sa 14:00-17:00;;Aucune restriction connue;;;50009207882936;2020-09-29;Accès par Badge;2023-03-12;;2023-08-05T07:14:18.319000+00:00;63480718db3ed7858fc6732a;0c5c19e1-d36d-4caa-853e-b09fb27c669c;sas-berelec;-1.123766;45.513463;33127;Monségur;; +;Sport 2000 - Gourdan Polignan;735550048;ggepetitjeanjmd@orange.fr;SAP LABS FRANCE;contact@eizmenditraiteur.fr;669684978;Vrigny;FRLGCPGACO121;FR*SOD*S*MB33*75*1*_*_;LESTIAC SUR GARONNE - PARKING ECOLE;;RUE DE VERDUN;33290;[-0.373517, 44.692539];;FRELCEMT6M;FR*SOD*E*MB33*84*1*2*_;;;;;;;;;;;voir tarif gireve;;;Mo-Su 07:00-19:00;;3,3m;;;05471924696356;2021-02-17;Prix MOBIVE à la minute;2023-07-12;;2023-08-05T07:14:17.755000+00:00;634cfd14e679a2a5163ca136;9170918f-5de3-47ca-9e74-47f20fbab17e;easycharge-services;-0.373517;44.692539;33112;Montagne;; +;St Denis, JCA;552008914;romain.box@notaires.fr;Séolis;Lacotte.p@gmail.com;0374830250;SAINT GERVAIS LA FORET 3780;FRLGCPGACO411;FR*SOD*S*MB33*75*2*_*_;SAUTERNES - PLACE DE LA MAIRIE;;ALLÉE MOZART;33499;[-0.342405, 44.53057];;FRELCEWHYW;FR*SOD*E*MB33*85*1*2*_;;;;;;;;;;;59 cts/kWh;;;Mo-Sa 09:00-12:00,Mo-Sa 14:00-17:30;;3,5;;;14865412324403;2020-08-20;Parking Privé du SDEC;2023-05-23;;2023-08-05T07:14:17.346000+00:00;634d01fb1ceab22f9a8fd5ea;b82b0ae2-14ba-4ae1-be22-1a52dbb2740f;dubois-1;-0.342405;44.53057;33660;Les Salles-de-Castillon;; +;St Germain Automobile;717280473;opendata56@morbihan-energies.fr;MAS GALOFFRE;info@masduterme.com;0472904173;GARNAY - Parking mairie - 137368;FRLGCPGACO521;FR*SOD*S*MB33*76*1*_*_;CARIGNAN-DE-BORDEAUX - PARKING CENTRE CULTUREL;;ECHANGEUR MASQUET;33229;[-0.474491, 44.812994];;FRELCERMGJ;FR*SOD*E*MB33*85*1*1*_;;;;;;;;;;;49 cts/kWh;;;Mo-Sa 08:45-20:00,Su 09:00-12:30;;3.50 m;;;14824167751792;2020-08-21;Recharges réservées aux clients, aux fournisseurs, aux partenaires , aux personnels d'Electriox Groupe - Demander un badge à l'accueil.;2023-02-02;;2023-08-05T07:14:16.953000+00:00;634e99a767ae58abba61f5f0;c282efc9-ab3d-4a9b-853a-ea1161125ea9;groupe-balas;-0.474491;44.812994;33113;Lanton;; +;Star Food;530787852;gohel.stephane@orange.fr;Festilight;lacotte.p@gmail.com;+34 931 574 967;Vernouillet;FRLGCPGACO511;FR*SOD*S*MB33*77*1*_*_;GUJAN-MESTRAS - ALL. MOZART;;GIRATOIRE DE LA GAROSSE;33233;[-1.074516, 44.618461];;FRELCEA4LN;FR*SOD*E*MB33*86*1*2*_;;;;;;;;;;;HC DC 69 cts/Kwh HP DC 79 cts/KwhAC 60 cts/KWh;;;Mo-Fr 08:00-19:30,Sa 08:00-19:00;;3.3;;;14853545465177;2021-01-14;Télécharger l'application e-nergyze;2023-07-18;;2023-08-05T07:14:16.552000+00:00;634ec64b10c2a12817f7d885;eab3373f-fd7b-47f2-83c1-4a8113be092d;bertrand-rochefort;-1.074516;44.618461;33890;Laruscade;; +;Starterre;348002718;contact@sigma-tec.fr;Est Auto;e-mobility@sap.com;0559292392;SONEPAR PAU;FRLGCPGACO541;FR*SOD*S*MB33*78*1*_*_;MIOS - ECHANGEUR MASQUET;;ALLÉES ROBERT BOULIN;33234;[-0.960185, 44.627885];;FRELCEKPZK;FR*SOD*E*MB33*86*1*1*_;;;;;;;;;;;0.308€/KW + 1.50€/Connection;;;Mo-Fr 07:00-20:00;;2,5m;;;14890159067614;2021-02-15;Recharge uniquement disponible pendant les horaires d'ouverture, Carte de recharge à demander;2023-07-19;;2023-08-05T07:14:16.119000+00:00;634ec8bd8a20e243f9908605;841f5663-73b6-4efa-bf9a-6185a7ea47fc;communaute-de-communes-dourdannais-en-hurepoix-ccdh;-0.960185;44.627885;33220;Latresne;; +;Station Astouin;490457447;direction@favret-automobiles.fr;GROUPE COURTOIS SOCOHY;contact@none.com;0637334173;BORNE SAFER BORNE 2;FRLGCPGACO531;FR*SOD*S*MB33*79*1*_*_;SAINT-ANDRE-DE-CUBZAC - GIRATOIRE DE LA GAROSSE;;ANGLE PLACE JOFFRE;33029;[-0.436955, 45.005005];;FRELCEUJYK;FR*SOD*E*MB33*87*1*2*_;;;;;;;;;;;0,31;;;Mo-Sa 08:30-19:30;;SO;;;14831837795896;2021-01-15;Recharge disponible uniquement pour les salariés et clients durant les heures d'ouverture;2023-02-14;;2023-08-05T07:14:15.776000+00:00;634f9f773db93e9c6210a727;380e3c68-4abc-4c1c-97fd-e9b549ba58e3;autopro;-0.436955;45.005005;33720;Le Barp;; +;Station Marchand;418152302;h.gilloux@groupegca.com;RONALEV;bo_dgic@seolis.net;0466245631;BELHOMERT-GUEHOUVILLE - De Gaulle - 137374;FRLGCPGACO561;FR*SOD*S*MB33*80*1*_*_;LIBOURNE - ALLEES ROBERT BOULIN;;AVENUE GALLIENI;33166;[-0.241218, 44.91774];;FRELCEH332;FR*SOD*E*MB33*87*1*1*_;;;;;;;;;;;0,40 €/kWh;;;Mo 08:00-15:00,We 08:00-23:00,Fr 08:00-23:00,Th 08:00-10:00,Th 13:00-20:00;;3,3;;;14847033164190;2020-05-28;OUVERT AUX HORAIRES D'ACCUEIL;2023-06-13;;2023-08-05T07:14:15.532000+00:00;634fa57f12bd84e3692b0d7c;708dcf10-7fab-4b23-8431-16d39f910bae;absolut;-0.241218;44.91774;33640;Le Fieu;; +;Sparkoh;812267318;j.bastos@hyundai-tarn.com;RechargerMonAuto;contact@mas-galoffre.com;0492286200;PARKING CAMPING BORNE 3;FRLGCPGACO551;FR*SOD*S*MB33*98*1*_*_;LIBOURNE - ANGLE PLACE JOFFRE;;RUE MICHEL MONTAIGNE;33527;[-0.241469, 44.911701];;FRELCE3YCR;FR*SOD*E*MB33*88*1*1*_;;;;;;;;;;;0.40 e/kwh+0.06 e/min;;;Mo-Fr 14:00-17:00;;aucune restriction connue;;;14831114205749;2020-06-18;ouvert aux horaires d'accueil;2023-07-03;;2023-08-05T07:14:15.294000+00:00;62e25dffc220bf5b02af8696;f541a6bf-7538-48ee-8fe1-80dba45e5de8;alc-car;-0.241469;44.911701;33920;Le Teich;; +;Société Marchande de Carburant;487080210;t.kolifrath@groupegca.com;MONTA;advenir@freshmile.com;0969397906;ITM ST JEOIRE BORNE 1;FRLGCPGACO451;FR*SOD*S*MB33*99*1*_*_;LIBOURNE - AVENUE GALLIENI;;PLACE JEAN JAURÈS;33236;[-0.23693, 44.916817];;FRELCEMG3U;FR*SOD*E*MB33*88*1*2*_;;;;;;;;;;;0.38€/kWh;;;Mo-Fr 00:00-08:00,Mo-Fr 18:30-23:45,Sa-Su 00:00-23:45;;<3,5m;;;14810130124691;2020-06-08;Recharge uniquement disponible pendant les horaires d'ouverture du BBJ, Carte de recharge à demander à l'accueil;2023-04-17;;2023-08-05T07:14:15.003000+00:00;634fa2ec82c8b3071f19216f;1333193e-5314-47f8-ad41-9505ca8f5ce7;gedibois-bati-colman;-0.23693;44.916817;33420;Lège-Cap-Ferret;; +;Société Rivière;790127815;fabien.raymond@raymond.net.bmw.fr;ART DECO FINITION;ismael@electromaps.com;0466381536;Vérités;FRLGCPGACO621;FR*SOD*S*MB33*115*1*_*_;LIBOURNE - RUE MICHEL MONTAIGNE;;IMPASSE DE LA CONFRÉRIE;33238;[-0.243664, 44.91433];;FRELCE9QSU;FR*SOD*E*MB33*89*1*1*_;;;;;;;;;;;Energie Tous les jours 0,29 €/kWh Stationnement à la borne Pendant la recharge Gratuit En dehors des sessions de recharge 0,04 €/min Après 1 h période de grâce;;;Mo-Fr 07:00-18:00,Sa 07:00-12:30;;2,60m (ombrière);;;14804775563611;2021-02-10;Recharge uniquement disponible pendant les horaires d'ouverture du centre Auto, Carte de recharge à demander à l'accueil;2023-02-21;;2023-08-05T07:14:14.710000+00:00;6332c8176047247e50722388;60f3a63b-95d5-4260-aa6b-eff1495b6535;allenergies;-0.243664;44.91433;33390;Léognan;; +;Société d'Exploitation de l'Hôtel de Samazan (SEHSAM);812535870;lejardindelice@orange.fr;SCP ACANTHE DRIMARACCI;didier.maroilley@festilight.fr;03 88 68 84 58;L'ISLE EN RIGAULT - 66259 - Rue Henri Chevalier;FRLGCPGACO611;FR*SOD*S*MB33*116*1*_*_;LUDON-MEDOC - PLACE JEAN JAURES;;RD N°120/ LD LE BOURG/PARKING EGLISE;33315;[-0.603403, 44.982456];;FRELCEZ73X;FR*SOD*E*MB33*89*1*2*_;;;;;;;;;;;2€/kw;;;Mo-We 05:00-06:00,Fr 05:00-06:00,Mo-Fr 21:00-22:00,Th 06:00-07:00;;2,80 m;;;14869174987207;2020-09-11;Recharge uniquement disponible sur les heures d'ouverture du site;2023-07-01;;2023-08-05T07:14:14.299000+00:00;6332adfd4e7a5fa229cf4832;0a845ff8-dc89-4750-be83-b6560af69a55;petiteau;-0.603403;44.982456;33710;Les Peintures;; +;Sofibrie Automobiles;538798570;Frederic.jayot@branfere.com;SELARL PHARMACIE CEVENOLE;cjarriaux@amplitude-auto.com;34 931 574 967;BELLEVILLE SUR MEUSE - 66276 - Pl Maginot;FRLGCPGACO661;FR*SOD*S*MB33*117*1*_*_;LUSSAC - IMPASSE DE LA CONFRERIE;;AVENUE DE LA CÔTE DARGENT;33314;[-0.095814, 44.948994];;FRELCE9ZY7;FR*SOD*E*MB33*90*1*2*_;;;;;;;;;;;0,45;;;Mo-Fr 12:00-14:00;;Hauteur maximale 1.90m;;;14847033160609;2023-02-13;Recharge uniquement disponible pendant les horaires d'ouverture de l'entreprise TENTE;2020-07-13;;2023-08-05T07:14:13.918000+00:00;6331cab2437b5d05a9d51ccf;299091f1-f408-4b00-843c-cff1ef1ad3ac;scache-garage-de-la-senia;-0.095814;44.948994;33610;Pauillac;; +;Sogemo;434734455;accueil@provencewines.com;IFERRO;dimitri.courtois@groupe-courtois.fr;0325832300;55 DIEUX SUR MEUSE-rue des dames-66466;FRLGCPGACO651;FR*SOD*S*MB33*118*1*_*_;MARANSIN - RD N°120/ LD LE BOURG/PARKING EGLISE;;RUE DE LA GARE;33316;[-0.26885, 45.070889];;FRELCECD2G;FR*SOD*E*MB33*90*1*1*_;;;;;;;;;;;0,49€ / kWh puis 15mn de parking gratuite une fois la charge terminée. Après 15mn, 0,30€/mn de parking supplémentaire.;;;Mo-We 08:00-12:30,Fr 08:00-12:30,Mo-Fr 13:30-19:00,Th 08:00-12:00,Sa 09:00-12:00,Sa 14:00-19:00;;Hauteur maximale 1.85m;;;14838784249250;2022-06-27;Badge RFID à demander à l'accueil du magasin - aux heures d'houverture;2023-03-28;;2023-08-05T07:14:13.596000+00:00;6328505eca2a232c92c29d90;8cce5d5f-88b9-4581-891c-945e9ed78ea3;grse-garage-de-la-mariniere;-0.26885;45.070889;33840;Pellegrue;; +;Soultz-Haut-Rhin;531669737;yoan.ramos@snam.com;Sud Camargue;dimitri.courtois@groupe-courtois.fr>;0381477878;LA CROIX SUR MEUSE - 66450 - Place 40ème RA;FRLGCPGACO631;FR*SOD*S*MB33*119*1*_*_;MARCHEPRIME - AVENUE DE LA COTE DARGENT;;PLACE DE L ECOLE;33387;[-0.855523, 44.692165];;FRELCEDJ5S;FR*SOD*E*MB33*91*1*1*_;;;;;;;;;;;0,39€ / kWh puis 15mn de parking gratuite une fois la charge terminée. Après 15mn, 0,15€/mn de parking supplémentaire.;;;Mo 08:30-12:00,Mo-Fr 13:30-18:30,Tu-Fr 08:00-12:00,Sa 09:00-12:00,Sa 14:00-17:30;;Hauteur maximale 1,90m;;;14861939096780;2022-06-29;Badge RFID à demander à l'accueil de l'Hôtel;2022-10-25;;2023-08-05T07:14:13.211000+00:00;6322eb85d273df424133b9d7;4c2b5ff2-0650-4807-a6a9-33199b9e9430;volta-charging;-0.855523;44.692165;33480;Saint-Ciers-d'Abzac;; +;Soultzmatt;831156278;programmes@srdev-immo.fr;E-totem;leclercq.ronalev@orange.fr;0776075550;LAMOTTE BEUVRON 4228 - La Gare;FRLGCPGACO641;FR*SOD*S*MB33*120*1*_*_;MARCHEPRIME - RUE DE LA GARE;;PARKING DU PAS DE L ANE;33389;[-0.85433, 44.690495];;FRELCE6NCT;FR*SOD*E*MB33*91*1*2*_;;;;;;;;;;;0.37;;;Mo-Su 08:30-18:00;;Hauteur maximale 1,9m;;;14846164856108;2022-09-26;Abonnement Ezdrive;2023-05-16;;2023-08-05T07:14:12.953000+00:00;63230eb29a0d98b1e51a1be0;99b8b2b8-c26c-49e4-a4ad-b3d431c7ac12;inforomu;-0.85433;44.690495;33980;Saint-Ciers-sur-Gironde;; +;Skoda Alès Laganier;351440078;mairie-saint-genest@wanadoo.fr;R3;tech@eoliberty.com;0610013878;55 DAMVILLERS - Pl des Martyrs - 66369;FRLGCPGACO421;FR*SOD*S*MB33*121*1*_*_;MARSAS - PLACE DE L ECOLE;;PARKING SITE MONTESQUIEU - ALLÉE ROSTAND;33393;[-0.384012, 45.067467];;FRELCE87TD;FR*SOD*E*MB33*92*1*1*_;;;;;;;;;;;false;;;Mo-Fr 09:00-12:00,Mo-Fr 14:00-16:00;;Hauteur maximale 1.8m;;;14896381932324;2021-12-14;Station ouverte 24/7 sur le parking de l'hôtel - connexion 2,40€ + 0,30€/kW - Paiement carte bancaire via application EVBOX charge;2023-05-13;;2023-08-05T07:14:12.575000+00:00;632330cb503d4b0d85391ce7;9fd6509a-c2e3-43cf-8b92-fd00e61b537e;e-charge50;-0.384012;45.067467;33740;Saint-Denis-de-Pile;; +;Siège SOREA;833702582;frederic.morales@cuisines-aviva.com;Pascal Chene;contact@rechargermonauto.com;0972114955;CHAUMONT SUR THARONNE 4231 - Place Robert Mottu;FRLGCPGACO471;FR*SOD*S*MB33*122*1*_*_;MARTILLAC - PARKING DU PAS DE L ANE;;RUE JACQUES MONOD - TECHNOPOLE;33394;[-0.542552, 44.714039];;FRELCELJAQ;FR*SOD*E*MB33*92*1*2*_;;;;;;;;;;;0,49;;;Mo-Fr 08:00-19:00;;Hauteur maximale 1.22m;;;14852387722385;2022-01-11;Recharge uniquement disponible durant les horaires d'ouverture du cabinet;2023-05-11;;2023-08-05T07:14:12.142000+00:00;63238eba7c6c978913b044b8;ac3c0aaf-27f0-43f2-aa7f-c650c8aaecc8;car2plug;-0.542552;44.714039;33190;Saint-Émilion;; +;Siège SODM;849533070;mairie.aubigny62@wanadoo.fr;Green To Wheel;amgh@monta.com;+33 662 64 36 90;CGED CGED VAULX;FRLGCPGACO461;FR*SOD*S*MB33*123*1*_*_;MARTILLAC - PARKING SITE MONTESQUIEU - ALLEE ROSTAND;;AVENUE DE LA RÉPUBLIQUE MAIRIE;33414;[-0.581216, 44.712681];;FRELCE83ZU;FR*SOD*E*MB33*93*1*1*_;;;;;;;;;;;0.45€/kwh;;;Mo-Sa 09:00-12:00,Mo-Fr 14:00-18:00;;hauteur max 1,95m;;;Non renseigné;2022-05-19;Abonnement EZdrive;2023-06-19;;2023-08-05T07:14:11.793000+00:00;6324084f51e24d436fd5bc1a;f167c7c1-c64f-4371-ae07-f033e299884e;virta;-0.581216;44.712681;33680;Saint-Germain-de-la-Rivière;; +;Silly-sur-Nied;678500950;contact@e-motum.net;Allego;silva.adf@orange.fr;06 14 08 56 90;55 FRESNES EN WORVRE-place Clemenceau-66387;FRLGCPGACO351;FR*SOD*S*MB33*124*1*_*_;MARTILLAC - RUE JACQUES MONOD - TECHNOPOLE;;PLACE DU 8 MAI;33422;[-0.584632, 44.709854];;FRELCETEAU;FR*SOD*E*MB33*93*1*2*_;;;;;;;;;;;0.25€ / kWh + 0.65€ / transaction;;;Mo-Fr 09:00-11:00,Mo-Fr 14:00-17:00;;hauteur max 1,9m;;;14885383380303;2022-03-09;Recharge ouverte uniquement aux clients;2022-11-01;;2023-08-05T07:14:11.454000+00:00;63240cfd51e24d436fd5bc1b;6f492aa7-6369-4333-9c1a-356cea859f4b;zeenco;-0.584632;44.709854;33690;Saint-Jean-d'Illac;; +;Sicae Somme;808872097;wingenerhof@gmail.com;INOUID;xavier.drimaracci@wanadoo.fr;04 66 85 31 68;SONEPAR CCF GENAS;FRLGCPGACO111;FR*SOD*S*MB33*125*1*_*_;MIOS - AVENUE DE LA REPUBLIQUE MAIRIE;;CENTRE BOURG;33424;[-0.939739, 44.606319];;FRELCEHHJS;FR*SOD*E*MB33*94*1*1*_;;;;;;;;;;;0,35;;;Mo-Sa 08:00-20:00;;Hauteur max 1,9m;;;14831982512556;2021-11-10;Se renseigner à l'accueil;2023-06-23;;2023-08-05T07:14:11.077000+00:00;6324279cb094fed6c905b7af;7c21935f-e85f-449b-b8c5-4dcf2ef6272c;bulle-de-linge;-0.939739;44.606319;33126;Saint-Laurent-Médoc;; +;Smile;318226974;agence.ricome@axa.fr;MODULO;pharma.cevenole@gmail.com;06 64 22 11 43;55 DAMMARIE SUR SAULX-2 chemin des gendarmes-66300;FRLGCPGACO221;FR*SOD*S*MB33*126*1*_*_;MONSEGUR - PLACE DU 8 MAI;;MAIRIE;33447;[0.083541, 44.650417];;FRELCE4ZVU;FR*SOD*E*MB33*94*1*2*_;;;;;;;;;;;5€/H;;;Mo-Sa 08:00-17:45;;hauteur max 1,8m;;;14884804509187;2023-05-24;Hôtel Kyriad Angers Beaucouzé - 4 bornes de recharge ALFEN 22kW ouvertes au public + prise E/F (accès via Badge RFID);2022-10-19;;2023-08-05T07:14:10.669000+00:00;6324812a556eb573f6774ab6;cb9f71a5-c047-4b82-ae0d-492f2fc0b8ed;guillaume;0.083541;44.650417;33133;Saint-Médard-de-Guizières;; +;Station Montaner;428801658;compta.ing@satujo.com;Leclerc Millau;nicolas.sebert@iferro.fr;0689198608;55 ETAIN-place Rouillon-66462;FRLGCPGACO231;FR*SOD*S*MB33*127*1*_*_;MONTAGNE - CENTRE BOURG;;AVENUE DE LA LIBÉRATION MAIRIE;33474;[-0.126781, 44.929531];;FRELCETYSD;FR*SOD*E*MB33*95*1*1*_;;;;;;;;;;;0.55;;;Mo-Su 08:00-10:00;;Hauteur maximale 1,85m;;;Eclairage;2023-07-10;Recharge disponible pendant les horaires d'ouverture du Golf;2023-04-05;;2023-08-05T07:14:10.417000+00:00;63283b8220ba00032ddfe08a;a390f755-e650-459a-9414-89f54f4358e2;didier-briand;-0.126781;44.929531;33870;Saint-Selve;; +;Station U Franqueville;819761883;vrousset@mobilease.fr;AREA Tech;info@sudcamargue.fr;0665050816;SONEPAR PRIVAS;FRLGCPGACO211;FR*SOD*S*MB33*128*1*_*_;LES SALLES-DE-CASTILLON - MAIRIE;;AVENUE DE LA RÉPUBLIQUE CASSY;33478;[-0.001139, 44.91209];;FRELCEZCVN;FR*SOD*E*MB33*95*1*2*_;;;;;;;;;;;20 € POUR CHARGE COMPLETE;;;Mo-Fr 08:00-12:00,Mo-Fr 13:30-17:00;;4m;;;14824312465627;2023-07-01;Paiement par CB via application mobile + Lecture token RFID;2023-05-05;;2023-08-05T07:14:09.540000+00:00;6328409dcf95cab5ef4f0bfa;7aa442d1-454b-421e-82b1-f399d9a6baae;les-jardins-de-la-sud;-0.001139;44.91209;33540;Saint-Seurin-sur-l'Isle;; +;Société Générale Annecy public;902305556;Campinggraniers@gmail.com;Vincent;exploitation@r3-charge.fr;04 28 04 42 05;55 CLERMONT EN ARGONNE - Pl de la Malsenez - 66240;FRLGCPGACO441;FR*SOD*S*MB33*129*1*_*_;LANTON - AVENUE DE LA LIBERATION MAIRIE;;LE BOURG - RD N°22 / PARKING SALLE DES FETES;33480;[-1.033432, 44.701801];;FRELCE48X9;FR*SOD*E*MB33*96*1*1*_;;;;;;;;;;;0,40€ pour les non abonnés;;;Mo-Fr 08:00-18:30,Sa 09:00-17:30;;Pas de réstriction;;;14834732150381;2023-07-05;Recharge uniquement pendant l'ouverture du gaage;2023-02-28;;2023-08-05T07:14:09.224000+00:00;63284aaa79029cd59a0e589e;38c5025f-0831-4f34-af30-2a498036099e;brach-nicolas;-1.033432;44.701801;33770;Saint-Sulpice-de-Faleyrens;; +;Societe de Distribution Alimentaire et de Carburant;917546251;eurotaxiline@free.fr;ma borne auto;garage.chene@gmail.com;321509292;L'aquitaine Sainte-Maure-de-Touraine CCS4166;FRLGCPGACO251;FR*SOD*S*MB33*114*1*_*_;LANTON - AVENUE DE LA REPUBLIQUE CASSY;;RUE DE LA SALARGUE;33484;[-1.056711, 44.712387];;FRELCEBLPY;FR*SOD*E*MB33*96*1*2*_;;;;;;;;;;;0,40€/kwh pour les non abonnés;;;Mo-Th 07:30-21:30,Fr 07:00-23:45,Sa-Su 00:00-01:00,Sa 10:00-23:45,Su 10:00-22:00;;VL uniquement;;;14898986854156;2023-07-04;Recharge public payante et gratuite pour les clients du restaurant sous réserve de disponibilité;2020-08-19;;2023-08-05T07:14:08.941000+00:00;63288051be072fe24259180c;82016ea7-546e-4061-a163-f4f81af4a66b;waat;-1.056711;44.712387;33760;Saint-Symphorien;; +;Sobio Cavalaire;803719277;damienleroux2@yahoo.fr;Vigot;info.allego.france@allego.eu;04 78 08 21 22;55 LIGNY EN BAROIS-rue du général de Gaulle-66282;FRLGCPGACO361;FR*SOD*S*MB33*106*1*_*_;LARUSCADE - LE BOURG - RD N°22 / PARKING SALLE DES FETES;;PLACE DU CENTRE BOURG;33386;[-0.343015, 45.107861];;FRELCEKGR9;FR*SOD*E*MB33*97*1*2*_;;;;;;;;;;;1.5750€ la connexion + 0.5739€ par kwh;;;Mo-Fr 08:00-11:00;;RAS;;;14845875421609;2023-06-05;Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique;2021-06-03;;2023-08-05T07:14:08.626000+00:00;6331531758c0970059922f36;d99e9a82-40f9-4133-bfd6-d533affac29c;sas-durand-etasse;-0.343015;45.107861;33560;Saint-Cibard;; +;Auberge Saint Walfrid;379629447;service-recharge@soregies.fr;SCI LA GRANGE DESSOUS;Contact@inouid.com;01 40 70 06 17;55 BELLE VILLE SUR MEUSE - Av Miribel - 66287;FRLGCPGACO241;FR*SOD*S*MB33*100*1*_*_;LATRESNE - RUE DE LA SALARGUE;;LE BOURG PARKING ANGLE RUE DE LA GRAVETTE;33347;[-0.498521, 44.785572];;FRELCEG9U9;FR*SOD*E*MB33*82*1*2*_;;;;;;;;;;;0,33€ / kwh pour les non abonnés.;;;Mo-Fri 08:30-19:00,Sat 09:00-18:00;;Gabarit type véhicule léger;;;14813169198732;2023-04-26;Paiement carte abonnement;2022-08-19;;2023-08-05T07:14:08.384000+00:00;632987d3c81e0c4efbb67754;63160966-86c4-4ef9-9d33-b5ee44f8eb45;see-you-sun;-0.498521;44.785572;26500;Puynormand;; +;Auberge du Père Bise;812328128;g.gauclin@sner.net;GARAGE HENRY;CONTACT@AUTORECHARGE.FR;0682800152;GD BORNE 3;FRLGCPGACO341;FR*SOD*S*MB33*101*1*_*_;LE BARP - PLACE DU CENTRE BOURG;;PARKING GARE;33319;[-0.770521, 44.607964];;FRELCENNPD;FR*SOD*E*MB33*81*1*1*_;;;;;;;;;;;0,25€ / kwh pour les non abonnés.;;;Mo-Fri 08:00-19:00,Sat 09:00-19:00;;Hauteur Maximale 2m;;;50018488825689;2023-05-25;Recharge accessible pendant les horaires d'ouverture du site;2023-07-07;;2023-08-05T07:14:07.925000+00:00;6329c2b5e8673beb9c54225f;372fe828-8494-412c-9b65-236fda919095;stations-e;-0.770521;44.607964;17190;Pessac-sur-Dordogne;; +;Auberge du Pont des Fées;349009423;restaurantlasource@wanadoo.fr;QoWatt;thomas.millerand@millau.leclerc;+33 1 76 46 09 15;55 CONSENVOYE - Rue du port - 66323;FRLGCPGACO311;FR*SOD*S*MB33*102*1*_*_;LE FIEU - LE BOURG PARKING ANGLE RUE DE LA GRAVETTE;;PARKING MAIRIE;33320;[-0.032427, 45.059238];;FRELCET5W8;FR*SOD*E*MB33*66*1*2*_;;;;;;;;;;;0,30€ / kwh pour les non abonnés.;;;Mo-FR 08:00-17:00;;15m²;;;14800144596640;2021-12-07;Recharge accessible 24/7, multiopérateurs;2023-07-13;;2023-08-05T07:14:07.640000+00:00;6329ceb74ae7f92d3038eb9c;1d761b0a-10b5-478d-9793-aea2da79ea75;totalenergies-marketing-france;-0.032427;45.059238;17640;Petit-Palais-et-Cornemps;; +;Auberge du Cheval Blanc;725620751;Axel.peigne@ouest-location.fr;Guerin;contact@area-tech.fr;0565590103;55 BURE-rond point andra-66333;FRLGCPGACO331;FR*SOD*S*MB33*103*1*_*_;LE TEICH - PARKING GARE;;RUE DE LA PETITE FORET;33324;[-1.025833, 44.632778];;FRELCEWGZR;FR*SOD*E*MB33*81*1*2*_;;;;;;;;;;;0,40€ / kwh pour les non abonnés.;;;Mo-Fri 08:00-19:00,Sat 08:00-18:00;;HAUT MAX 2M;;;14837337070103;2021-06-29;Recharge ouverte au public de 9h00 à 20h00, paiement par stripe;2023-05-02;;2023-08-05T07:14:07.219000+00:00;632a5dfb63ac73f1a8a1f2b6;9f41c755-711f-4401-a64a-2fb50973072c;energie-eure-et-loir;-1.025833;44.632778;17580;Pineuilh;; +;Auberge d'Aranc;424095370;franck.berruer@starterre.fr;perrin;tat.vincent@gmail.com;0628061367;55 BRAS SUR MEUSE - Av du douaumont - 66306;FRLGCPGACO321;FR*SOD*S*MB33*104*1*_*_;LE TEICH - PARKING MAIRIE;;AVENUE DE LA GARE - MAIRIE;33327;[-1.021466, 44.635406];;FRELCENZG7;FR*SOD*E*MB33*67*1*2*_;;;;;;;;;;;0,85€ / kwh pour les non abonnés.;;;Mo-sat 08:30-20:00;;Haut 2m;;;14800578750017;2022-03-01;Recharge uniquement disponible pendant l'ouverture de l'hôtel;2023-04-25;;2023-08-05T07:14:06.816000+00:00;632ac2f8710e91f922f47f40;346bbb52-6cfc-4ae8-9375-19c1c6bd5a5a;hfood-villenave-hippopotamus;-1.021466;44.635406;17240;Podensac;; +;Auberge du président Cormeilles;448310771;marc.boitel@sdesm.fr;TANAY Electricité;davidvigot@sfr.fr;0684970823;55 GONDRECOURT-rue de la grande fontaine-66326;FRLGCPGACO431;FR*SOD*S*MB33*105*1*_*_;LE TEICH - RUE DE LA PETITE FORET;;AVENUE DES HALLES - CLAOUEY;33334;[-1.026443, 44.631077];;FRELCEVSLP;FR*SOD*E*MB33*68*1*1*_;;;;;;;;;;;10 € tarif de départ. Des frais supplémentaires peuvent s'appliquer;;;Mo-Sa 10:00-19:00, Su 10:00-13:00;;hauteur maximal 2m;;;14879739386547;2021-04-29;Paiement par carte d'abonnement opérateur de service de mobilité électrique;2023-03-01;;2023-08-05T07:14:06.376000+00:00;632b2ade5aaa680c6ed925de;fadc2e04-8e9d-404a-903c-c797a7968680;l2b-lorette-beaucamp-bonnet;-1.026443;44.631077;17139;Portets;; +;Auberge Metzger;309004331;nassim.boudjenane@eiffage.com;arteco44;mp-morel@wanadoo.fr;‭06 85 80 08 33‬;55 DUN SUR MEUSE-rue faubourg st Martin-66576;FRS33PMB3316221;FR*SOD*S*MB33*113*1*_*_;LEGE - CAP-FERRET - AVENUE DE LA GARE - MAIRIE;;AVENUE DU MONUMENT SALIENS PARKING - CAP-FERRET;33342;[-1.14603, 44.795773];;FRELCEC8CT;FR*SOD*E*MB33*68*1*2*_;;;;;;;;;;;0,15€ / kwh pour les non abonnés.;;;Mo-Fr 09:00-19:00,Sat 09:00-18:30;;6;;;50010239537871;2021-10-28;Paiement par carte d'abonnement op�rateur de service de mobilit� �lectrique;2021-08-22;;2023-08-05T07:14:05.649000+00:00;632d8e34a95ea99311c42a76;44831653-abf4-4dbe-85be-5f5419575592;debelec;-1.14603;44.795773;17410;Puisseguin;; +;Auberge Fritsch;534056148;staff@charriere-distribution.com;Le Grand Large;contact@qowatt.com;0765762350;Sorgues;FRS33PMB3316511;FR*SOD*S*MB33*107*1*_*_;LEGE - CAP-FERRET - AVENUE DES HALLES - CLAOUEY;;PARKING EGLISE;33382;[-1.181364, 44.749344];;FRELCEZUHK;FR*SOD*E*MB33*69*1*1*_;;;;;;;;;;;0,66kwh TTC;;;Mo-Fr 08:30-19:00,Sat 09:00-19:00;;Sans restriction;;;14878292208187;2021-03-29;Recharge pendant les heures d'ouverture de la cuverie;2023-03-15;;2023-08-05T07:14:05.191000+00:00;632ecdb89abf8cae8a608d7a;ea1c8a45-df2f-450e-8c81-76e3a8d5bfd1;yann-gouriou;-1.181364;44.749344;17520;Saint-Christoly-de-Blaye;; +;Au Panier de la Pommeraye;257702613;laurent.specht@volta-sas.com;Easycharge services;yannick@2ed.fr;0643099223;Vidauban Sud;FRS33PMB3316512;FR*SOD*S*MB33*108*1*_*_;LEGE - CAP-FERRET - AVENUE DU MONUMENT SALIENS PARKING - CAP-FERRET;;PLACE MAIRIE;33349;[-1.245858, 44.650799];;FRELCES5X5;FR*SOD*E*MB33*69*1*2*_;;;;;;;;;;;0,60cts/KWh TTC;;;Mo-Sun 08:30-20:00;;3 m;;;14832271948160;2021-02-16;Recharge uniquement disponible pendant l'ouverture de l'entreprise SARL RUITER;2023-03-20;;2023-08-05T07:14:04.817000+00:00;6330785fae290350d3d5d95e;3e01e825-aece-4142-a8a1-8705f9b0355c;evzen-smeg-developpement;-1.245858;44.650799;17200;Quinsac;; +;Au Boulot de Mick;751468612;contact@firex.fr;Virta;mcelette@lumilec-electricité.fr;0600000000;Saint-Jean-le-Vieux;FRS33PMB3316412;FR*SOD*S*MB33*109*1*_*_;LEOGNAN - PARKING EGLISE;;RUE LUCIEN LACOUR - PARKING MAIRIE;33350;[-0.601472, 44.727711];;FRELCELSPW;FR*SOD*E*MB33*70*1*2*_;;;;;;;;;;;0,42€/KWH TTC;;;Mo-Fr 06:30-19:00,Sat 08:00-18:00;;Pas de restriction particulière;;;14827785697423;2021-10-19;Recharge disponible uniquement pendant les heures d'ouvertures du site;2023-06-05;;2023-08-05T07:14:04.597000+00:00;62e3b9e7207858ed4453048e;189f0789-a8da-47f3-9dbe-c8d5fb185a1e;syndicat-intercommunal-delectricite-et-de-gaz-du-puy-de-dome-irve;-0.601472;44.727711;17150;Rauzan;; +;Atolon Park Hôtel;339741381;cedric.giovanini@secal-electricite.fr;SCI OLYMPE;bains@wanadoo.fr;0240193230;MAINVILLIERS - Rue des acacias - 137397;FRS33PMB3316411;FR*SOD*S*MB33*110*1*_*_;LEOGNAN - PLACE MAIRIE;;RUE JULES FERRY;33362;[-0.598145, 44.727558];;FRELCESWX9;FR*SOD*E*MB33*70*1*1*_;;;;;;;;;;;0,35cts/KWH HT;;;Mo-Fr 12:00-18:00;;Sans;;;VOIR CAPITAINERIE;2021-12-03;Recharge disponible;2023-05-09;;2023-08-05T07:14:04.318000+00:00;6295b7b1d1ad84e74523fb5f;67f2edaf-4f6e-40fc-8268-0ab4286675c7;chargepoly;-0.598145;44.727558;17260;Sablons;; +;Auberge du Ruxelier;330117821;alain@vollmer.fr;EGE NOEL BERANGER;robotic@rcc.fr;0616517174;Baud;FRS33PMB3316312;FR*SOD*S*MB33*111*1*_*_;LES PEINTURES - RUE LUCIEN LACOUR - PARKING MAIRIE;;PARKING DU CIMETIÈRE;33473;[-0.097568, 45.069656];;FRELCEHBJL;FR*SOD*E*MB33*71*1*2*_;;;;;;;;;;;0,45cts/KWH;;;Mo-sat 09:30-19:00;;HAUTEUR MAXIMALE 2M;;;14821128675019;2021-10-12;";2023-05-08;;2023-08-05T07:14:03.964000+00:00;62e25c28bd6eba19d963448b;5057e851-2389-41f7-9c6c-ab7b2c70a790;frederic-bourdy;-0.097568;45.069656;17360;Saint-Savin;; +;Autopark de Bresse;827876251;compta@svi30.fr;Securecharge;epgml@epgmllongwy.fr;3 67 47 06 40;Carquefou;FRS33PMB3316311;FR*SOD*S*MB33*112*1*_*_;PAUILLAC - RUE JULES FERRY;;RUE MONTAIGNE;33373;[-0.747904, 45.199554];;FRELCEJXQY;FR*SOD*E*MB33*71*1*1*_;;;;;;;;;;;0,30cts/KWh;;;Mo-Fr 08:30-12:30,Mo-Fr 14:00-19:00,Sat 09:00-18:00;;hauteur max 2m;;;14831837794771;2022-02-02;Recharge réservée à la clientèle de l'hôtel et du restaurant;2023-06-22;;2023-08-05T07:14:03.623000+00:00;62a99a3e8cb42d491a384dbf;4f764675-90f0-422e-94e0-9096ac529f5c;hfood-pessac-hippopotamus;-0.747904;45.199554;17310;Saint-Antoine-sur-l'Isle;; +;Audi Tomblaine;444910418;finances@ville-seltz.fr;COMMUNAUTE DE COMMUNE LE DOURDANNAIS EN HUREPOIX (CCDH);tanayelectricite@hotmail.com;+33 (0)6 12912998;Riscle;FRS33PMB3316212;FR*SOD*S*MB33*130*1*_*_;PELLEGRUE - PARKING DU CIMETIERE;;RUE GEORGES PICOTIN;33374;[0.077091, 44.742752];;FRELCEU2QR;FR*SOD*E*MB33*72*1*1*_;;;;;;;;;;;0,40cts/KWh HT;;;Mo-Sa 06:00-20:00;;Véhicules légers;;;14878292207499;2021-10-13;recharge uniquement pendant les horaires d'ouverture du site;2023-07-08;;2023-08-05T07:14:03.395000+00:00;62a9d8ac32cb9d5454eda35a;4d6cc29a-3a08-4519-80ac-9315ab899cb4;alre-bobinage;0.077091;44.742752;17160;Saint-Aubin-de-Blaye;; +;Automobile Delahaye;337877534;bauducel-christophe@orange.fr;GROUPE LGE SOCIETE AUTOPLUG;meuzenat@arteco.fr;+33 (0)6 12912997;AZAY SUR INDRE 1204;FRS33PMB3316211;FR*SOD*S*MB33*16*1*_*_;SAINT CIERS D ABZAC - RUE MONTAIGNE;;RUE DU CHAMPS DE FOIRE - SALLE DES FËTES - AU BOURG;33058;[-0.276985, 45.030991];;FRELCEBR7H;FR*SOD*E*MB33*72*1*2*_;;;;;;;;;;;0,39cts/KWh;;;Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 09:00-17:45;;<3.5T;;;14881186565092;2021-07-28;recharge uniquement pendant les horaires d'ouverture;2023-03-26;;2023-08-05T07:14:02.975000+00:00;62a9c21ee5bcb7786ba3b51d;16a84975-fb05-4c9b-aad5-3016ecbc8160;systemes-solaires;-0.276985;45.030991;17600;Blaye;; +;Auto Services Pixien;303217368;direction@nicecheval.com;GROUPE LGE;girardhotel@gmail.com;+33 (0)6 12913000;Bléré;FRS33PMB3316222;FR*SOD*S*MB33*17*1*_*_;SAINT CIERS SUR GIRONDE - RUE GEORGES PICOTIN;;PARKING RUE DU GRAND PONTET;33067;[-0.609335, 45.290096];;FRELCER38U;FR*SOD*E*MB33*73*1*1*_;;;;;;;;;;;0,35cts/KWh;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-19:00;;Hauteur max 2,50m;;;14868017245136;2021-08-27;Recharge avec badge RFID à demander à l'accueil de l'Hôtel;2023-05-30;;2023-08-05T07:14:02.628000+00:00;62a9ba04e92d8149223c82ef;3eb22097-01e4-46d1-8e6c-73b3e350a209;brasserie-castelain;-0.609335;45.290096;17940;Bourg;; +;Auto Hall;397554791;patrice.leblan@engie.com;2Ed Coutances;exploitation@easycharge-vinci.COM;+33 (0)6 12912999;Centre de la France Sud;FRS33PMB3316712;FR*SOD*S*MB33*19*1*_*_;SAINT DENIS DE PILE - RUE DU CHAMPS DE FOIRE - SALLE DES FETES - AU BOURG;;PARKING MAISON DU FRONSADAIS;33073;[-0.204426, 44.9921];;FRELCEGWQR;FR*SOD*E*MB33*73*1*2*_;;;;;;;;;;;0,25cts/KWh;;;Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 08:30-19:00;;2,4m;;;50031202406425;2021-07-29;Recharge uniquement pendant les horaires d'ouverture;2023-07-15;;2023-08-05T07:14:02.212000+00:00;62a9b4265adfc53fa2248dbd;45cb61ab-c873-42b4-b7df-07496b0a70bb;kevin-declerck;-0.204426;44.9921;17800;Braud-et-Saint-Louis;; +;Audi Troyes;424472298;sarl.lafourcade@orange.fr;PAS DITINERANCE;philippe.voisin@virta.global;+33 (0)6 12913002;Aubigné-sur-Layon;FRS33PMB3316112;FR*SOD*S*MB33*20*1*_*_;SAINT EMILION - PARKING RUE DU GRAND PONTET;;GIRATOIRE DE LA FONTAINE;33080;[-0.156992, 44.896271];;FRELCEQCHW;FR*SOD*E*MB33*74*1*2*_;;;;;;;;;;;0,40cts/KWh;;;Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00;;Pas de restriciton;;;14850651107501;2021-07-22;Recharge uniquement disponible pendant les horaires d'ouverture;2023-04-18;;2023-08-05T07:14:01.839000+00:00;62a9a5fa6cf25c3fcb7a28e7;b50d7e68-339d-4dfb-9999-6f3b2be901cb;spbr1;-0.156992;44.896271;17100;Cadaujac;; +;Audi Besançon;330489261;g.mignot@sied70.fr;GEDIBOIS BATI COLMAN;pierremarinere489@yopmail.com;+33 (0)6 12913001;La Ferté-Bernard;FRS33PMB3316111;FR*SOD*S*MB33*21*1*_*_;SAINT GERMAIN LA RIVIERE - PARKING MAISON DU FRONSADAIS;;PLACE DE L’EGLISE;33088;[-0.327441, 44.94614];;FRELCEV8CL;FR*SOD*E*MB33*74*1*1*_;;;;;;;;;;;0,42€/KWHTTC;;;Mo-Fr 08:00-12:00;;Hauteur maximal 2m;;;14826772671183;2021-09-21;Uniquement disponible au heure ouverture bureau;2023-03-02;;2023-08-05T07:14:01.544000+00:00;62a9a119f8795c901b9d0864;31e5c145-f45c-4378-9a5b-f58f17d447e0;le-reseau-de-recharge-pour-vehicules-electriques-de-la-metropole-du-grand-paris;-0.327441;44.94614;17620;Camps-sur-l'Isle;; +;Audi Rouen;348714403;h.rachi@sas-alr.com;Normatech Lodmi;eabdi@balas.net;0149454545;Glonville;FRS33PMB3316021;FR*SOD*S*MB33*22*1*_*_;SAINT JEAN DILLAC - GIRATOIRE DE LA FONTAINE;;RUE CAMILLE MAUMEY / PARKING PLACE DU 8 MAI-RUE FONTAIN;33090;[-0.784099, 44.809963];;FRELCEPBZ8;FR*SOD*E*MB33*75*1*2*_;;;;;;;;;;;0,60€/KWH TTC;;;Mo-FR 07:30-12:00, Mo-Fr 13:30-17:30, Sa 08:00-12:00;;Hauteur maximale inconnue;;;50058141514426;2021-08-24;Cette borne en îlot est accessible aux PL;2023-05-06;;2023-08-05T07:14:01.129000+00:00;62a8b12b0e723da8611617d5;a287a13a-a771-4f19-b809-bf79dc95bd2f;plus-de-bornes;-0.784099;44.809963;17700;Canéjan;; +;Audi Laon;411793177;nancy@friendlyauberge.com;ALLENERGIES;b.rochefort@noelberanger.fr;0491432450;WAAT 4 CHENES 16;FRS33PMB3316022;FR*SOD*S*MB33*23*1*_*_;SAINT JEAN DILLAC - PLACE DE L’EGLISE;;RUE DU 14 JUILLET / PARKING MAIRIE;33095;[-0.780595, 44.812153];;FRELCEENRN;FR*SOD*E*MB33*75*2*2*_;;;;;;;;;;;0.50? 2.5 CONNECTION;;;Mo-Sa 07:30-18:00;;Uniquement VL;;;50053052430350;2021-10-01;Recharge uniquement pendant les heures d'ouvertures;2023-01-19;;2023-08-05T07:14:00.827000+00:00;62c3ff89c166b28d983baf68;013c4d0b-3ce2-4cd6-bb05-cb3c4992c84f;sydev;-0.780595;44.812153;17250;Captieux;; +;As Hôtel;435088919;agentford.riom@orange.fr;SOLIDARAUTO 49;contact@securecharge.fr;0160811222;Rue;FRS33PMB3316011;FR*SOD*S*MB33*24*1*_*_;SAINT LAURENT MEDOC - RUE CAMILLE MAUMEY / PARKING PLACE DU 8 MAI-RUE FONTAIN;;GRAND RUE - SALLE POLYVALENTE;33104;[-0.822102, 45.149315];;FRELCEXM9R;FR*SOD*E*MB33*75*1*1*_;;;;;;;;;;;Voir accueil Hotel;;;Mo-sat 08:00-22:00,Sun 08:00-21:00;;Non accessible;;;14885528099607;2021-05-17;Recharge disponible uniquement durant les heures d'ouverture des bureaux;2023-07-10;;2023-08-05T07:14:00.545000+00:00;62a7223ed87979a2662ff0cd;b8642586-63fc-4d70-a36f-1afef2648f08;alban-raffray;-0.822102;45.149315;17430;Castelnau-de-Médoc;; +;Arthur Bonnet Cuisines Thionville;338385685;p.georges@groupe-ipa.com;Volta Charging;gael.kergroach@ccdourdannais.com;0612105307;Giberville Sud;FRS33PMB3316012;FR*SOD*S*MB33*25*1*_*_;SAINT LOUBES - PARKING MAIRIE;;AV GEORGES CLEMENCEAU / PARKING MEDIATHEQUE;33108;[-0.426206, 44.916077];;FRELCEEGPU;FR*SOD*E*MB33*75*2*1*_;;;;;;;;;;;Voir facturation interne;;;Mo-Fr 08:00–12:00,Mo-Fr 14:00–19:00,Sat 09:00-18:00;;4 m;;;14850361672327;2020-11-05;Recharge uniquement disponible pendant les horaires d'ouverture du Prieuré;2023-06-18;;2023-08-05T07:14:00.353000+00:00;62a7210bd147f15f3bac8e28;63bc44e2-79e5-4d44-b77d-d59408d40951;syndicat-departemental-denergie-de-la-haute-garonne;-0.426206;44.916077;17180;Castillon-la-Bataille;; +;Altair - Viry Chatillon;307016121;direction@adonis-aleria.com;total énergie;cindyt@groupelge.com;0970266332;Reims - 43118 - Place Luton;FRS33PMB3315911;FR*SOD*S*MB33*26*1*_*_;SAINT MEDARD DE GUIZIERES - RUE DU 14 JUILLET / PARKING MAIRIE;;PLACE GENERAL RAOUL SALAN;33114;[-0.056675, 45.014774];;FRELCETTJ5;FR*SOD*E*MB33*76*1*2*_;;;;;;;;;;;0,32 € / kWh pour les non abonnées;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:00;;accès tout type de VL;;;14826193800097;2020-10-15;Recharge uniquement disponible pendant les horaires d'ouverture du magasin et à la clientèle (demander badge à l'accueil);2023-06-29;;2023-08-05T07:14:00.061000+00:00;62a6f335fd25ed9be9dd4a96;c6f406ae-1209-4d5d-b7c2-fc2eaee20912;communaute-dagglomeration-sophia-antipolis-casa;-0.056675;45.014774;17550;Cavignac;; +;Andilly;429354541;pozzodimastri.adm@gmail.com;NON CONCERNE;PASDITINENERANCE@gmail.com;0612345678;Guerlesquin;FRS33PMB3315912;FR*SOD*S*MB33*27*1*_*_;SAINT SELVE - GRAND RUE - SALLE POLYVALENTE;;AV DU GENERAL DE GAULLE;33122;[-0.478578, 44.671124];;FRELCEDQD9;FR*SOD*E*MB33*76*1*1*_;;;;;;;;;;;0.79 €/minute;;;Mo-Fr 08:00–12:30,Mo-Fr 13:30–19:00,Sat 09:00-19:00;;PAS DE RESTRICTION;;;14838494813103;2020-10-16;Non concerné;2023-06-09;;2023-08-05T07:13:59.735000+00:00;62a3262235ccb34401fe81f0;4574da0a-da95-4501-bea2-b062f7fd3905;ionity-gmbh;-0.478578;44.671124;17400;Cestas;; +;Ancy-Dornot;378536593;l.romei@aubelec.fr;GABORIT BOCAGE SERVICES;a.tarridec@mabornauto.com;0387956778;SUBLAINES 1577;FRS33PMB3315811;FR*SOD*S*MB33*28*1*_*_;SAINT SEURIN SUR L ISLE - AV GEORGES CLEMENCEAU / PARKING MEDIATHEQUE;;PLACE MICHELET;33227;[-0.000992, 45.015003];;FRELCE8CN3;FR*SOD*E*MB33*77*1*2*_;;;;;;;;;;;0,29 €/kWh + 1€/session;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:30,Sat 09:00-18:00;;HAUTEUR MAXIMALE 2m;;;14868306680726;2021-02-23;Recharge uniquement disponible pour la clientèle de l'hôtel;2023-05-21;;2023-08-05T07:13:59.447000+00:00;62a31118ee9811885680d371;53b8cd8d-07bd-4dab-83c2-2c73b6572859;abe-electricite;-0.000992;45.015003;17650;Langon;; +;Alouette Steakhouse;775753148;contact@lodmi.com;Total marketing france;commercial@bati-colman.fr;+31 10 312 6001;Ste MARIE DU LAC - 42657 - Rue de Nuisement;FRS33PMB3316711;FR*SOD*S*MB33*29*1*_*_;SAINT SEURIN SUR L ISLE - PLACE GENERAL RAOUL SALAN;;RD N°21/LD PIMPINE/PARKING MAIRIE;33037;[-0.003134, 45.01342];;FRELCEQS4T;FR*SOD*E*MB33*77*1*1*_;;;;;;;;;;;https://belib.paris;;;Mo-sat 09:00-19:00,Sun 10:00-19:00;;Parking ouvert au VL;;;14873082367057;2021-02-04;4 T2/ 2 PRISE RENFORCEE;2022-10-12;;2023-08-05T07:13:59.167000+00:00;62b1efc2e84dbb603489ad73;f8f21eb6-fec9-4916-9521-8fa08be0c465;overchem;-0.003134;45.01342;17630;Beautiran;; +;Alliance Automobile;480819705;contact@laborneelectrique.com;CAR2PLUG;contact@allenergies.fr;+31 10 312 6002;LE PETIT PRESSIGNY 1270;FRS33PMB331111;FR*SOD*S*MB33*30*1*_*_;SAINT SULPICE DE FALEYRENS - AV DU GENERAL DE GAULLE;;RD N°123 /ANGLE VC DU BOURG / LD BOURG SUD OUEST;33019;[-0.190544, 44.876118];;FRELCE2SEH;FR*SOD*E*MB33*78*1*2*_;;;;;;;;;;;https://apps.total-ev-charge.com/charge-points;;;Mo-Fr 08:00-22:00;;Hauteur maximale 2,5 m;;;14885962251510;2021-03-11;Charge uniquement accessible pendant les horaires d'ouverture du garage;2023-03-23;;2023-08-05T07:13:58.681000+00:00;62b8fe4f19cc3f5741443bfa;133d31a3-5f11-425a-962c-c69267de15ae;syndicat-intercommunal-de-lelectricite-et-du-gaz-de-leure;-0.190544;44.876118;17220;Audenge;; +;Alectron energy;315044321;contact@eizmenditraiteur.fr;ZEENCO;solidarauto49@orange.fr;+31 10 312 6003;BEAULIEU LES LOCHES 1561;FRS33PMB3316811;FR*SOD*S*MB33*31*1*_*_;SAINT SYMPHORIEN - PLACE MICHELET;;PLACE DU PONT;33011;[-0.488382, 44.429783];;FRELCE8G5G;FR*SOD*E*MB33*78*1*1*_;;;;;;;;;;;0,50 € + 0,30 €/KWH;;;Mo-Fr 08:00–12:30,Mo-Fr 13:30–18:30,Sat 09:00-18:00;;VL/VUL;;;14848335624261;2020-10-07;Recharge uniquement pendant les périodes d'ouverture de Thibal Ditribution;2022-12-03;;2023-08-05T07:13:58.411000+00:00;62b956c8c3316d336b285c39;9313fd1d-7752-4cdd-a65c-3d8892263c6b;lionel-czimer;-0.488382;44.429783;17770;Arès;; +;Aiseau - Presles;813846359;Lacotte.p@gmail.com;SGA Industries;garage.senia@scache.fr;+31 10 312 6004;CGED NOISY LE SEC;FRS33PMB3317423;FR*SOD*S*MB33*32*1*_*_;SAINT CIBARD - RD N°21/LD PIMPINE/PARKING MAIRIE;;PLACE GAMBETTA;33051;[-0.023352, 44.939892];;FRELCECXMN;FR*SOD*E*MB33*79*1*2*_;;;;;;;;;;;2 € / heure pour les abonnés;;;Tu-Fr 08:00–12:00,Tu-Fr 14:00–19:00,Sat 09:00-17:00;;VL/VUL/PL;;;14857308127021;2020-10-12;Rechargement uniquement disponible aux clients de l'Hôtel KYRIAD VICHY;2022-12-02;;2023-08-05T07:13:57.722000+00:00;62baf11b513fc6677f917ba7;1cb4a46a-d112-4be1-b58e-e95bf4138bfe;jean-vincent-saulnier;-0.023352;44.939892;17110;Biganos;; +;Andros La Raufie Public;401802087;info@masduterme.com;ma Borne Auto;garage.mariniere@scache.fr;+31 10 312 6005;THIEBLEMONT-FAREMONT - 42689 - Rue Laurent Gerard;FRS33PMB331112;FR*SOD*S*MB33*65*1*_*_;PUYNORMAND - RD N°123 /ANGLE VC DU BOURG / LD BOURG SUD OUEST;;LIEU-DIT AU BARAIL - PARKING MAIRIE;33142;[-0.001493, 44.981499];;FRELCE362X;FR*SOD*E*MB33*79*1*1*_;;;;;;;;;;;2,09 €HT/h;;;Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sat 09:00-19:00;;8m;;;Ecole;2020-10-08;Recharge uniquement disponible pendant les horaires d'ouverture de l'agence et réservée à la clientèle, badge à demander à l'accueil;2023-06-10;;2023-08-05T07:13:57.396000+00:00;62bafa89e0c6951c5f3dad61;2bbec3e6-32a4-4879-8ead-f64f5cec35c8;lionel-gaillard;-0.001493;44.981499;17210;Cubnezais;; +;Arthur Bonnet Augny;328582713;lacotte.p@gmail.com;EGSM;support.france@voltacharging.com;+31 10 312 6006;Villaines la Gonais;FRS33PMB3317711;FR*SOD*S*MB33*15*1*_*_;PESSAC-SUR-DORDOGNE - PLACE DU PONT;;VC N°6 LE BOURG;33352;[0.078747, 44.820744];;FRELCEUVWP;FR*SOD*E*MB33*80*1*1*_;;;;;;;;;;;http://www.sieg63.orios-infos.com/tarifs;;;Mo-Fr 07:45-12:00,Mo-Fr 13:45-19:00,Sat 09:00-19:00;;Hauteur Maximale 2ml;;;14820405088078;2021-03-17;Recharge uniquement pendent les heures d'ouverture. Recharge pas QRcode, RFID....;2023-07-09;;2023-08-05T07:13:57.062000+00:00;62bd5954ef0e46eebfdb630a;df7e3b6e-2708-4c70-a08d-fb296a82bf4e;infelec;0.078747;44.820744;17120;La Réole;; +;Art Esthétique;795006733;contact@territoiredenergie90.fr;COPRODEX;service.pro@mail.totalenergies.fr;+31 10 312 6007;Saint-Pierre-le-Moûtier;FRS33PMB3317712;FR*SOD*S*MB33*10*1*_*_;PETIT-PALAIS-ET-CORNEMPS - CENTRE BOURG;;RUE HENRI CHIVALEY CENTRE BOURG;33529;[-0.064026, 44.981812];;FRELCELNEJ;FR*SOD*E*MB33*80*1*2*_;;;;;;;;;;;0,79 €/kWh;;;Mo-Fr 07:45-12:00,Mo-Fr 13:45-19:00,Sat 09:00-18:00;;Hauteur 3m;;;Mairie (14819247454050);2020-11-17;Recharge uniquement destinée aux clients du Mas.;2023-06-26;;2023-08-05T07:13:56.773000+00:00;62bd6b4e55b3d8d989993668;598eab68-da4a-4896-91e9-12e2e7d96242;remy-sergent;-0.064026;44.981812;17130;La Teste-de-Buch;; +;Aquarium Systems;802608372;e-mobility@sap.com;WAAT;estrade.huart@gmail.com;+31 10 312 6009;GIFFAUMONT CHAMPAUBERT - 42644 - LA CACHOTTE;FRS33PMB3317623;FR*SOD*S*MB33*9*1*_*_;PINEUILH - PLACE DE LA MAIRIE;;PLACE DU CHAMPS DE FOIRE;33214;[0.226371, 44.830223];;FRELCEHPQF;FR*SOD*E*MB33*97*1*1*_;;;;;;;;;;;2,09 €HT/h;;;Mo-Fr 08:30-12:00,Mo-Fr 13:00-19:00,Sat 08:30-19:00;;Hauteur max 1m80;;;14809261811851;2020-11-13;Le P4 électrique est accessible par réservation sur le site https://store.lyonaeroports.com/ et se situe dans le parking P4 face à la Gare et à proximité des Terminaux. Câble adaptateur à apporter par l'utilisateur.;2023-05-12;;2023-08-05T07:13:56.324000+00:00;62bd80dfac987f0c38bd871e;a7b94bdd-3ba7-430f-bccb-0e33d93c1ff2;nathalie-estavoyer;0.226371;44.830223;17670;Lacanau;; +;Aqua Resort;324104935;ploulmet@gmail.com;DALTONER CHERBOURG;A.TARRIDEC@MABORNEAUTO.COM;+31 10 312 6008;CHAUMUSSAY 1220;FRS33PMB3317622;FR*SOD*S*MB33*8*1*_*_;PODENSAC - PLACE GAMBETTA;;VILLAGE DENFANTS - GRANDE LANDE;33225;[-0.354772, 44.650349];;FRELCEBG5H;FR*SOD*E*MB33*98*1*1*_;;;;;;;;;;;true;;;Mo-Fr 07:45-17:00;;Vehicules Légers;;;14813603352145;2021-06-10;;2023-06-28;;2023-08-05T07:13:56.050000+00:00;62bd868e7d7c80ed9e2af1e8;29f5db7c-5148-4353-a78c-25085a119394;syndicat-intercommunal-denergie-des-communes-de-flandre-territoire-denergie-flandre;-0.354772;44.650349;17590;Landiras;; +;Aptar CSP Technologies;419992706;sigil@sieds.fr;See You Sun;flavien.gaborit@o2.fr;02 41 35 10 50;CGED VALENCE;FRS33PMB3317621;FR*SOD*S*MB33*7*1*_*_;PORTETS - MAIRIE;;PLACE DE LA LIBERATION;33213;[-0.423946, 44.696251];;FRELCEQ4NR;FR*SOD*E*MB33*98*1*2*_;;;;;;;;;;;0.20 €/KWh pour les non abonnés;;;Th-Mo 12:00-23:30;;Hauteur max 3m;;;50097649465522;2021-05-21;;2023-03-31;;2023-08-05T07:13:55.796000+00:00;62beb0523b6be3c156809630;71e4a762-bd87-4a74-ad8a-746aa70bd7c3;sogestran;-0.423946;44.696251;17370;La Brède;; +;Andros SNC Public;382547677;bo_dgic@seolis.net;STATIONS-E;e-charge50@sdem50.fr;805080056;Mornas les Adrets;FRS33PMB3317512;FR*SOD*S*MB33*6*1*_*_;PUISSEGUIN - LIEU-DIT AU BARAIL - PARKING MAIRIE;;AVENUE DE LA LIBÉRATION / RUE BARTEBRUNE;33195;[-0.074422, 44.925064];;FRELCEXVZG;FR*SOD*E*MB33*99*1*2*_;;;;;;;;;;;0.20 €/KWh;;;Mo-Fr 07:00-20:00,Sa 09:00-18:00,Su 10:30-17:30;;Pas de limitation de hauteur, ni de largeur;;;14892329829460;2020-12-15;;2023-06-20;;2023-08-05T07:13:55.523000+00:00;62beba6f835152fe416850f3;759755f3-43f7-453a-bd44-71c9c020d517;thibault-prouin;-0.074422;44.925064;17270;Grignols;; +;Axians - Vern Sur Seiche public;339106783;contact@mas-galoffre.com;TotalEnergies Charging Services;contact@car2plug.fr;34694495065;MAINVILLIERS - Place du marché - 137401;FRS33PMB3317511;FR*SOD*S*MB33*5*1*_*_;SAINT CHRISTOLY DE BLAYE - VC N°6 LE BOURG;;BRASSE MISERE / PARKING PEPINIERE D ENTREPRISE;33159;[-0.507449, 45.130127];;FRELCEFL8C;FR*SOD*E*MB33*115*1*2*_;;;;;;;;;;;9,90 € ttc / Charge;;;Mo-sat 08:30-19:00, Sun 09:00-12:30;;longueur maximal 6m;;;14845585980136;2021-03-19;;2023-06-27;;2023-08-05T07:13:55.121000+00:00;62bedce34fff628937a8a880;43c0b54f-ae06-4ee4-a144-a4414717b805;paul-vurli;-0.507449;45.130127;17300;Étauliers;; +;Aéroport d'Orléans;349429472;opale@citeos.com;TotalEnergies Marketing France;support@virta.global;0696901897;Champniers;FRS33PMB3317422;FR*SOD*S*MB33*4*1*_*_;QUINSAC - RUE HENRI CHIVALEY CENTRE BOURG;;ALLÉE LOUISE MICHEL;33165;[-0.488296, 44.755913];;FRELCEJW7N;FR*SOD*E*MB33*116*1*1*_;;;;;;;;;;;https://www.metropolis-recharge.fr/;;;Mo-Fr 08:00-19:00,Sat 09:00-17:00;;H=2.30m / L=2.00m;;;14818813192681;2021-01-07;;2023-01-13;;2023-08-05T07:13:54.823000+00:00;62c2fcf0ad1c984ba4fe562e;800357e3-b827-4327-b4b5-1b8f1f82b98f;e-nergyze;-0.488296;44.755913;17470;Fargues-Saint-Hilaire;; +;Ay-Champagne;848595880;alain@daubier.com;ENERGIE Eure-et-Loir;franck.legardeur@zeenco.tech;09 77 40 50 60;Maen Roch;FRS33PMB3316812;FR*SOD*S*MB33*3*3*_*_;RAUZAN - PLACE DU CHAMPS DE FOIRE;;COURS DE LA REPUBLIQUE;33173;[-0.126184, 44.778473];;FRELCEBPXE;FR*SOD*E*MB33*116*1*2*_;;;;;;;;;;;0€;;;Mo-Su 10:00-17:00;;largeur maximale portail 3m;;;14848625058180;2021-06-23;;2022-12-17;;2023-08-05T07:13:54.363000+00:00;62c30707659f5babb9bb0824;6b7411d9-37bf-4bb0-94db-2d7885b4cefb;voltania;-0.126184;44.778473;17230;Francs;; +;Axione;393617964;contact@sbei.eu;ENERGIE EURE-ET-LOIR;psasupport@evbox.com;0243720202;VEIGNE 1328 - Les Gués;FRS33PMB3317421;FR*SOD*S*MB33*3*1*_*_;SABLONS - VILLAGE DENFANTS - GRANDE LANDE;;COURS DU GENERAL DE GAULLE;33174;[-0.176874, 45.025108];;FRELCETA2X;FR*SOD*E*MB33*117*1*2*_;;;;;;;;;;;https://www.ouestcharge-paysdelaloire-moncompte.fr/fr/tarifs;;;Tu-Sa 10:00-12:30,Tu-Sa 14:00-18:30;;pas de restrictions;;;VVF (30001480289674);2020-11-04;;2023-03-25;;2023-08-05T07:13:53.879000+00:00;62a203fe463b459b3ebb5e9a;cc9a17a5-25be-4049-b441-ef1626301bd4;tente-sas;-0.176874;45.025108;17340;Fronsac;; +;Axiome;440967651;e.kilic@electro-mob.com;HFOOD VILLENAVE;contact@sga-automation.com;0809107584;Molompize;FRS33PMB3317312;FR*SOD*S*MB33*2*1*_*_;SAINT - SAVIN - PLACE DE LA LIBERATION;;AV DE LA REPUBLIQUE - PARKING CDC ESTUAIRE;33179;[-0.44713, 45.139946];;FRELCE5TX5;FR*SOD*E*MB33*117*1*1*_;;;;;;;;;;;Tarification à la minute en fonction de la puissance moyenne (www.mobisdec.fr);;;MO-FR 08:00-12:00,MO-FR 14:00-18:00;;Restriction de gabarit non précisée;;;Toilettes (3176211223728);2020-11-25;;2023-06-16;;2023-08-05T07:13:53.467000+00:00;62a1caabc6b8b8af8f1b8bfb;91e42553-388b-4953-99d5-3356a2260490;alain-eltzer-ville-de-riquewihr;-0.44713;45.139946;17390;Galgon;; +;Axians - Saint-Lo Public;903227221;pascal.boileau@live.fr;EVzen (SMEG Développement);contact@evbox.com;0988991011;Aire de Ostwald Ouest;FRS33PMB3317311;FR*SOD*S*MB33*1*1*_*_;SAINT ANTOINE SUR L ISLE - AVENUE DE LA LIBERATION / RUE BARTEBRUNE;;AV DE LA REPUBLIQUE - PARKING MUSIQUE PROCHE PHARMACIE;33191;[0.040668, 45.027435];;FRELCEALYD;FR*SOD*E*MB33*118*1*1*_;;;;;;;;;;;0.69€ / kwh;;;Mo-Fri: 07:30-19:00;;;;;14853690182919;2023-03-09;;2023-01-02;;2023-08-05T07:13:53.068000+00:00;62a1bb440e31efd85bcac8c1;7749ff55-06f4-46df-b280-caa0340b4e31;nw-iecharge;0.040668;45.027435;17350;Gours;; +;Axians - Carquefou;057202046;leclercq.ronalev@orange.fr;CHARGEPOLY;lesjardinsdelasud@orange.fr;988991011;Saint-Rénan;FRS33PMB3317211;FR*SOD*S*MB33*12*1*_*_;SAINT AUBIN DE BLAYE - BRASSE MISERE / PARKING PEPINIERE D ENTREPRISE;;LES NOUVELLES POSSESSIONS - TERRES D OISEAUX;33198;[-0.557763, 45.248619];;FRELCEQ32V;FR*SOD*E*MB33*118*1*2*_;;;;;;;;;;;3€/h;;;Mo-Fr 08:00-19:00,Sat 09:00-18:00;;;;;14829088154062;2023-03-07;;2023-02-13;;2023-08-05T07:13:52.772000+00:00;6298581668544c06efbed77e;1f1072e4-7747-4862-9759-2f6df0375e86;reve;-0.557763;45.248619;17111;Guîtres;; +;Aéroport de Strasbourg;502097868;quentinfsm@gmail.com;2F Production;jf.de@egsm.fr;0186472691;ESTERNAY - 42869 - PLACE DES TILLEULS;FRS33PMB3317212;FR*SOD*S*MB33*13*1*_*_;SAINT-ANDRE-DE-CUBZAC - ALLEE LOUISE MICHEL;;PARKING ÉGLISE;33207;[-0.443644, 44.996262];;FRELCEKR2K;FR*SOD*E*MB33*119*1*2*_;;;;;;;;;;;9€/h;;;Mo-Sa 07:00-21:00;;;;;14846309574078;2023-03-02;;2023-02-20;;2023-08-05T07:13:52.402000+00:00;6290e554de153b911b403fa9;f5688c80-6223-42af-b013-9e6fcbe6f403;momatech-sarl-techoffice;-0.443644;44.996262;17137;Izon;; +;Autopièces N7;390599611;silva.adf@orange.fr;HFOOD PESSAC;coprodex@coprodex.com;0186472720;Taden;FRS33PMB3317012;FR*SOD*S*MB33*14*1*_*_;BLAYE - COURS DE LA REPUBLIQUE;;AV DE LA REPUBLIQUE;33161;[-0.662261, 45.129269];;FRELCEHXMH;FR*SOD*E*MB33*119*1*1*_;;;;;;;;;;;0,40€;;;Mo-Fr 08:45-18:30;;;;;14895513626390;2023-04-06;;2023-04-16;;2023-08-05T07:13:51.746000+00:00;634fca163514b6a21e26a52d;2620e882-ac7d-4175-a9e6-7ea32fa544ab;sas-bois-cheri-hotel-du-porge;-0.662261;45.129269;17480;Eyrans;; +;BENNES SERVICES;968504480;xavier.drimaracci@wanadoo.fr;La dilettante;g.uppilirajan@waat.fr;0186472718;SEZANNE - 42863 - Place du Champ Benoist;FRS33PMB3317011;FR*SOD*S*MB33*33*1*_*_;BLAYE - COURS DU GENERAL DE GAULLE;;CHE DE BARBICADGE;33539;[-0.664302, 45.124519];;FRELCENLZQ;FR*SOD*E*MB33*120*1*2*_;;;;;;;;;;;7 €;;;Mo-sat 08:00-19:00,Sun 09:00-18:00;;;;;14835455739769;2023-03-24;;2023-01-17;;2023-08-05T07:13:51.324000+00:00;6290f49cbb13166ac18e556c;ebb7a382-290c-419f-bdd5-f546bbdac064;domoelec;-0.664302;45.124519;17570;Vayres;; +;BFC-SDEY - CITEOS Vds Accéléré;038893756;pharma.cevenole@gmail.com;HERVE THERMIQUE;denis.lot@daltoner.fr;0186472717;Dormans;FRS33PMB3316912;FR*SOD*S*MB33*34*1*_*_;BOURG SUR GIRONDE - PLACE DE LA MAIRIE;;CHEMIN LA HOUSE;33380;[-0.560364, 45.039116];;FRELCEUGA8;FR*SOD*E*MB33*120*1*1*_;;;;;;;;;;;Abonnés : 0,70€ / 20min (de 7h à 21h) et 0,10€ / 20min (de 21h à 7h) / Service gratuitau-delà de 40€ /mois
Non abonnées : 0,75€ / 20min (de 7h à 21h) / 0,15€ / 20min (de 21h à 7h);;;Mo-Fr 08:30-19:00,Sat 09:00-18:30;;;;;14870911600815;2023-03-23;;2023-01-06;;2023-08-05T07:13:50.939000+00:00;629458429705c431a897c96c;2cdc7feb-aa4f-4398-8655-deea8fa3c597;optimea;-0.560364;45.039116;17610;Val-de-Livenne;; +;B&B Hôtel Grésy-sur-Aix;377956636;nicolas.sebert@iferro.fr;ESPACE AUTO COURNON;aguerin@seeyousun.fr;0186472716;CAAPIMMOPERTUIS BORNE 7-8;FRS33PMB3316911;FR*SOD*S*MB33*51*1*_*_;BRAUD ET SAINT LOUIS - AV DE LA REPUBLIQUE - PARKING CDC ESTUAIRE;;PLACE DE LEGLISE;33506;[-0.624, 45.251667];;FRELCE7HGD;FR*SOD*E*MB33*121*1*1*_;;;;;;;;;;;A la minute;;;Mo-sat 08:30-19:30;;;;;14861215508415;2023-03-06;;2022-12-20;;2023-08-05T07:13:50.697000+00:00;6294a73392b4df126e484aa9;cdffaec8-e9a1-473c-b3d4-a2d6fe275b56;hapogys;-0.624;45.251667;17740;Sauveterre-de-Guyenne;; +;B&B Bollène;833914799;info@sudcamargue.fr;Société LEVAROY, Monsieur LEROY;support@stations-e.com;0186472715;Champfleury;FRS33PMB3315411;FR*SOD*S*MB33*52*1*_*_;BRAUD ET SAINT LOUIS - AV DE LA REPUBLIQUE - PARKING MUSIQUE PROCHE PHARMACIE;;EGLISE;33498;[-0.626513, 45.246693];;FRELCESGCP;FR*SOD*E*MB33*121*1*2*_;;;;;;;;;;;1.23cts / min;;;Mo-Fr 09:00-19:00; Sa:08:00-19:00;;;;;14859044740686;2023-03-30;;2022-11-21;;2023-08-05T07:13:50.438000+00:00;6294cec43c5a2cd973bc3820;9a051df1-2301-44e4-89f5-ef4736460dd6;cap-emploi-sarreguemines;-0.626513;45.246693;17290;Salles;; +;Avignon Tourisme;489800680;i.levezier@levezier.fr;SPBR1;supervision-ev.france@totalenergies.com;0186472714;CAAPIMMOPERTUIS BORNE 9-10;FRS33PMB3315711;FR*SOD*S*MB33*53*1*_*_;BRAUD ET SAINT LOUIS - LES NOUVELLES POSSESSIONS - TERRES D OISEAUX;;PLACE DU 14 JUILLET;33533;[-0.700727, 45.284054];;FRELCEMVX3;FR*SOD*E*MB33*122*1*2*_;;;;;;;;;;;0,50 € / kwh;;;Mo-Sat 09:00-20:00,Sun 09:00-13:00;;;;;14834587433065;2023-04-07;;2023-05-24;;2023-08-05T07:13:50.153000+00:00;6294d30e52d639e70ee7c687;a2c3fc61-a947-40f8-b58d-7b04036bc2ec;elec-econnect;-0.700727;45.284054;92230;Toulenne;; +;Auxerre;835032848;contact@agglo-montargoise.fr;SAS Sabo;lionel.chauvet@energie28.fr;0186472713;AUNEAU - Complexe Sportif - 139678;FRS33PMB338211;FR*SOD*S*MB33*54*1*_*_;CADAUJAC - PARKING EGLISE;;RTE DE PARIS - PLACE DES ROSES-PROCHE LA POSTE;33523;[-0.529436, 44.755657];;FRELCEPKYJ;FR*SOD*E*MB33*122*1*1*_;;;;;;;;;;;gratuit;;;Mo-Fr 08:15-19:00,Sat 09:00-18:00;;;;;14884659789802;2020-09-30;;2023-07-04;;2023-08-05T07:13:49.802000+00:00;6294df1ed1eb563179b52000;488ade07-d780-424a-9574-32ccea91d477;sarl-le-moulin-de-laboirie;-0.529436;44.755657;77290;Targon;; +;Autrement Lieux de Pause à Carnac;897638383;info@r3-charge.fr;ELECTRIC 55 CHARGING;hippo.villenave@groupeflo.franchises.fr;0186472712;SONEPAR MONDEVILLE 2;FRS33PMB338312;FR*SOD*S*MB33*55*1*_*_;CAMPS SUR L ISLE - AV DE LA REPUBLIQUE;;BOURG;33397;[-0.030508, 45.015129];;FRELCE2TLK;FR*SOD*E*MB33*123*1*1*_;;;;;;;;;;;60min gratuit, après 0.20€/kWh + 0.01€/min;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 0900-12:00,Sa14:00-18:00;;;;;14812300892278;2020-10-06;;2023-05-31;;2023-08-05T07:13:49.417000+00:00;6295d71cbe13c8c33a0299aa;2d536a5c-4c79-4042-b89e-3a4bc4638619;steg;-0.030508;45.015129;95580;Sainte-Eulalie;; +;Airtec;388179236;garage.chene@gmail.com;Sodetrel;contact@sga-industries.com;0186472711;Mézidon Vallée d'Auge;FRS33PMB338311;FR*SOD*S*MB33*56*1*_*_;CANEJAN - CHE DE BARBICADGE;;PLACE KENNEDY;33461;[-0.654258, 44.763481];;FRELCEC92A;FR*SOD*E*MB33*124*1*1*_;;;;;;;;;;;2.5€ à la connexion et 2€/Kwh;;;Lu- Ve 08:00-19:00, Sa 08:00-18:00;;;;;14879884103207;2020-09-25;;2023-07-02;;2023-08-05T07:13:48.907000+00:00;629600744bac60a89358bb4e;681478d0-4868-48bb-a753-ba8f0310b8a6;ubitricity;-0.654258;44.763481;77360;Saint-Philippe-d'Aiguille;; +;Saint-Louis Agglomération - Bornes accélérées;843336207;fabien.lepeytre@allego.eu;IONITY;service@ev-box.com;0186472710;CGED OLORON-STE-MARI;FRS33PMB338411;FR*SOD*S*MB33*57*1*_*_;CANEJAN - CHEMIN LA HOUSE;;PLACE DES  CONES / ANGLE ESPLANADE DE LA CITADELLE;33406;[-0.64122, 44.750343];;FRELCEV3AF;FR*SOD*E*MB33*124*1*2*_;;;;;;;;;;;0.30€ / kWh;;;Mo-Su 08:00-20:00;;;;;14855282077824;2020-09-24;;2023-03-18;;2023-08-05T07:13:48.561000+00:00;6297276f57e9b01f66569cf6;8c8df2f0-7f35-4092-9a4d-74a2708bf6b8;carelec;-0.64122;44.750343;91570;Saint-Genès-de-Castillon;; +;Saint-Louis Agglomération - Bornes lentes;803191147;lagroup@allouis-faceintec.com;La jabotte;support@evzen.com;0186472709;NOUAN LE FUZELIER 4571 - Avenue de Toulouse;FRS33PMB338412;FR*SOD*S*MB33*58*1*_*_;CAPTIEUX - PLACE DE LEGLISE;;RUE DE LA PAPETERIE / ANGLE PLACE DE VERDUN;33492;[-0.261004, 44.292];;FRELCEPSYA;FR*SOD*E*MB33*125*1*1*_;;;;;;;;;;;Connexion 2,40€ + 0,30€/kW;;;Lu- Ve 08:00-19:00, Sa- Di 09:00-18:00;;;;;14875832005873;2023-05-02;;2022-11-17;;2023-08-05T07:13:48.161000+00:00;629733655813c083b660630a;8658b21e-ecfc-47a5-baeb-816e9ddfd9bc;properphi;-0.261004;44.292;92310;Saint-Yzan-de-Soudiac;; +;Aigues Mortes, Bazarland;512803495;contact@stwalfrid.fr;SIEGE 27;info-usager.silene@spie.com;0186472708;BLOIS 4531 - Mail Pierre Sudreau;FRS33PMB338512;FR*SOD*S*MB33*59*1*_*_;CASTELNAU DE MEDOC - PARKING MAIRIE;;PARKING RUE DES HORTENSIAS;33390;[-0.797203, 45.025738];;FRELCEY5SA;FR*SOD*E*MB33*125*1*2*_;;;;;;;;;;;offert aux clients;;;Mo 08:00-08:15;;;;;14809551253432;2023-05-11;;2023-02-03;;2023-08-05T07:13:47.678000+00:00;6297390a08d6bf5d4b2fecf5;b414a3ae-155d-4cc4-873e-a409dfbefd03;sarl-guego-electricite;-0.797203;45.025738;94700;Sainte-Colombe;; +;Saint-Gobain Vitrage Bâtiment Coutras Public;780096376;contact@mosaik-cristal.tv;Avomarks;operator@chargepoly.com;0186472707;BLOIS 4539 - Quai Saint Jean;FRS33PMB338511;FR*SOD*S*MB33*60*1*_*_;CASTILLON-LA-BATAILLE - EGLISE;;MAIRIE - RUE PIERRE PAUILLHAC;33385;[-0.043266, 44.852478];;FRELCEJJVC;FR*SOD*E*MB33*126*1*2*_;;;;;;;;;;;1€/kWh;;;MO-FR 08:00-12:00;;;;;14800868185600;2020-08-03;;2023-06-04;;2023-08-05T07:13:47.266000+00:00;62978ceee10d746ab2f3dc25;fe7cd2ad-5c48-4373-b09f-0e6166c95793;dropn-plug;-0.043266;44.852478;92130;Saint-Christophe-de-Double;; +;Saint-Avold;477827653;guy.fournier@gmx.net;AQUA LOISIRS;benjamin@2fproduction.fr;0186472706;SAINT GERVAIS LA FORET 4543 - Rue du clouseaux;FRS33PMB338612;FR*SOD*S*MB33*61*1*_*_;CASTILLON-LA-BATAILLE - PLACE DU 14 JUILLET;;AVENUE DE LA PLAGE - PLACE WEISS;33496;[-0.042146, 44.85408];;FRELCE23WH;FR*SOD*E*MB33*126*1*1*_;;;;;;;;;;;0.32€ / kW;;;Mo-Fr 8:30-12:30, Mo-Fr 13:30-18:30;;;;;14875253134870;2020-07-31;;2023-04-28;;2023-08-05T07:13:46.952000+00:00;6298a554630cbfbb6e725f13;575606a1-db3c-4017-b717-52575c032c1b;apeira-technologies;-0.042146;44.85408;92210;Sallebœuf;; +;Saint-Dié-des-Vosges;255601106;Vincent.Fasciana@saint-gobain.com;Ispo france;hippo.pessac@groupeflo.franchises.fr;0186472705;ROMORANTIN LANTHENAY 4547;FRS33PMB338611;FR*SOD*S*MB33*62*1*_*_;CAVIGNAC - RTE DE PARIS - PLACE DES ROSES-PROCHE LA POSTE;;PLACE PEYNEAU;91479;[-0.389539, 45.101608];;FRELCEN457;FR*SOD*E*MB33*127*1*1*_;;;;;;;;;;;Voir sur site;;;Lu- Sa 08:30-19:30, Di 09:00-12:30;;;;;14869030267906;2021-06-07;;2022-11-29;;2023-08-05T07:13:46.645000+00:00;62a0cea0abd5c0a5718b947b;8e1f7840-1320-4b47-93e2-2c7e304c9e70;tanguy-clavel;-0.389539;45.101608;92270;Paray-Vieille-Poste;; +;Saint-Etienne-lès-Remiremont;421659764;benoit.prat@yahoo.fr;ENTREPRISE ADAM;cpo@lumi-in.fr;0186472704;ROMORANTIN LANTHENAY 4549 - Place de la paix;FRS33PMB338712;FR*SOD*S*MB33*63*1*_*_;CESTAS - BOURG;;PLACE CARNOT;26058;[-0.684628, 44.741707];;FRELCEEY8Q;FR*SOD*E*MB33*127*1*2*_;;;;;;;;;;;0,45€ par Kwh;;;Lu- Sa 09:00-19:00;;;;;14869609139898;2021-06-16;;2023-03-22;;2023-08-05T07:13:46.322000+00:00;6299b002d824b8fc4dafb44d;86436dc1-351e-43ed-9593-2f252c5162b2;sarl-ruiter;-0.684628;44.741707;92100;Bourg-lès-Valence;; +;Saint-Germain Laprade;485169692;jerome@winling.fr;EDFRAY;europa.hotel.entretien@gmail.com;0186472703;Méru Amblainville;FRS33PMB338711;FR*SOD*S*MB33*64*1*_*_;LANGON - PLACE KENNEDY;;GARE SNCF;17337;[-0.248891, 44.553619];;FRELCEYB64;FR*SOD*E*MB33*128*1*1*_;;;;;;;;;;;0,5;;;mo-fr 08:00-12:00,13:30-18:00;;;;;14862228532329;2021-06-08;;2023-05-04;;2023-08-05T07:13:46.003000+00:00;629a213832e9006ad4ac9c25;926b6fc9-3d23-44c9-9475-bbe0e0cba644;hugo-meyer;-0.248891;44.553619;78220;Saint-Georges-d'Oléron;; +;Saint-Just-de-Claix;511748881;y.el-aroui@te.alsace;Daltoner Granville;jb@brasserieladilettante.com;0186472702;CHARTRES - Rue du grand faubourg - 134789;FRS33PMB338811;FR*SOD*S*MB33*50*1*_*_;BLAYE -  PLACE DES  CONES / ANGLE ESPLANADE DE LA CITADELLE;;ESPLANADE DE BROUSTIC/ALLEE MAX ET PAULETTE FAYE;17461;[-0.663159, 45.131039];;FRELCECJZB;FR*SOD*E*MB33*128*1*2*_;;;;;;;;;;;0,44€ par Kwh;;;Mo-Fr 8:00-19:00;;;;;14880318258158;2021-04-26;;2023-04-07;;2023-08-05T07:13:45.642000+00:00;629a2f065f2410a8a40c04ff;5b714b2f-bc47-4eed-8afb-6a25e991ad99;gaz-de-bordeaux;-0.663159;45.131039;95880;Vaux-sur-Mer;; +;Saint-Léonard;394083984;thomas.millerand@millau.leclerc;le Relais;bornederecharge@herve-thermique.com;0186472701;RILLY LA MONTAGNE;FRS33PMB338812;FR*SOD*S*MB33*49*1*_*_;BEAUTIRAN - RUE DE LA PAPETERIE / ANGLE PLACE DE VERDUN;;BOULEVARD DE LA PLAGE/ PARKING PORT OSTREICOLE;17051;[-0.449122, 44.703663];;FRELCES3KE;FR*SOD*E*MB33*129*1*1*_;;;;;;;;;;;0.20 €/kWh + 0.50 € lancement pour les utilisateurs ZEbornes;;;Lu- Ve 09:00-18:00;;;;;Parking;2021-05-10;;2022-11-22;;2023-08-05T07:13:45.333000+00:00;629dc374046f295ee425a2ab;0a439dc2-6d2b-4822-9a4c-716b46452529;societe-d-installation-de-plomberie-electricite-chauffage-et-climatisation;-0.449122;44.703663;92320;Le Bois-Plage-en-Ré;; +;Saint-Maur, Leclerc Cap Sud;400447710;jp.bonneville12@gmail.com];BOUYGUES ENERGIES ET SERVICES;espaceautocournon@orange.fr;0186472700;MONTBOISSIER - Les Rues Neuves - 129294;FRS33PMB338911;FR*SOD*S*MB33*41*1*_*_;AUDENGE - PARKING RUE DES HORTENSIAS;;PEI GARE;17331;[-1.014052, 44.682381];;FRELCELZEG;FR*SOD*E*MB33*129*1*2*_;;;;;;;;;;;0,43€ KwH;;;Lu- Ve 08:00-19:00, Sa 09:00-18:00;;;;;14801012902064;2021-05-12;;2022-11-25;;2023-08-05T07:13:40.079000+00:00;629dd955323018e81d181b39;b4617c19-4f20-42c7-b41e-1f61ea87b8e5;benoit-boulanger-1;-1.014052;44.682381;92170;Saint-Genis-de-Saintonge;; +;Saint-Nicolas-de-Port;785550138;tat.vincent@gmail.com;MOVIVE_Izivia;levaroy@orange.fr;0186472699;Saint-Amour;FRS33PMB338912;FR*SOD*S*MB33*35*1*_*_;AUDENGE - PARKING MAIRIE;;RUE DE LA RÉSISTANCE;17142;[-1.015976, 44.683964];;FRELCEKCXC;FR*SOD*E*MB33*115*1*1*_;;;;;;;;;;;0 POUR UTILISATEUR ZEBORNE;;;Mo-Fr 8:00-18:00;;;;;14842546911342;2021-07-13;;2023-02-19;;2023-08-05T07:13:39.661000+00:00;629de68e2d0044fffae6a1d9;9a0e8f15-1e7e-4ea5-bd0c-b24cc3eaf657;be-cable-irve-1;-1.015976;44.683964;91460;Dompierre-sur-Mer;; +;Saint-Sulpice Automobiles;401060496;davisvigot@sfr.fr;Electriox Groupe;contact@reseau-eborn.fr;0186472698;SONEPAR AED CROLLES;FRS33PMB339012;FR*SOD*S*MB33*36*1*_*_;ARES - MAIRIE - RUE PIERRE PAUILLHAC;;PLACE DE LA RÉBUBLIQUE;17369;[-1.138983, 44.765343];;FRELCEEPS3;FR*SOD*E*MB33*114*1*1*_;;;;;;;;;;;0,40 € / kWh;;;Mo-Fr 20:00-07:00,Mo-Fr 20:00-07:00,Th 20:00-08:00;;;;;14811577300705;2021-02-09;;2023-04-22;;2023-08-05T07:13:39.220000+00:00;629e1be8a392f50b485e453e;12ef779f-e008-44b5-8a3d-92d2601edd90;sandrine-araujo;-1.138983;44.765343;78290;Saint-Martin-de-Ré;; +;Samins, Marché Gare Strasbourg;378183818;directeur@hotel-crequi.com;e-nergyze;assistance-commerciale@metropolis-recharge.fr;0186472697;ST-REMY-SUR-AVRE - Place des Dodots - 139435;FRS33PMB339011;FR*SOD*S*MB33*37*1*_*_;ARES - AVENUE DE LA PLAGE - PLACE WEISS;;RUE DE L ABREVOIR / PARKING CIMETIERE;17016;[-1.141424, 44.764664];;FRELCE6KR8;FR*SOD*E*MB33*114*1*2*_;;;;;;;;;;;0,25€/kwh;;;Mo-Fr 20:00-06:00,Th 08:00-00:00;;;;;50072179135266;2021-10-22;;2023-04-03;;2023-08-05T07:13:38.820000+00:00;629e22eb5f7c29593c3b0ee4;5aaca563-ad67-4e9d-82a1-c247707500f3;gregory-stoops;-1.141424;44.764664;91320;Archiac;; +;San-Martino-di-Lota, Hôtel Pietracap;487923724;benjamin@impacttomorrow.fr;270 AGENCY;romainmarcon@outlook.fr;0186472696;VERNOUILLET - Place du 8 mai 1945 - 139037;FRS33PMB339111;FR*SOD*S*MB33*38*1*_*_;ARCACHON - PLACE PEYNEAU;;PARKING - AVENUE CARNOT;17306;[-1.163121, 44.663528];;FRELCEMB87;FR*SOD*E*MB33*106*1*2*_;;;;;;;;;;;0,3;;;Lu- Sa 08:30-20:00, Di 08:30-12:30;;;;;14892474547226;2021-09-17;;2022-11-09;;2023-08-05T07:13:38.443000+00:00;629f0a98068143523ad3776b;a77b33d0-3946-4b2e-84d4-c1155ee7c9c5;k-helios;-1.163121;44.663528;95560;Royan;; +;Sarl Accendi Pipa;384794418;contact@qowatt.com;ALU GRANON;contact@e55c.com;0186472695;WAAT 4 CHENES 30;FRS33PMB339112;FR*SOD*S*MB33*39*1*_*_;ARCACHON - PLACE CARNOT;;PARKING - RUE DES JACOBINS;17236;[-1.172374, 44.663364];;FRELCEUX32;FR*SOD*E*MB33*99*1*1*_;;;;;;;;;;;00;;;Lu- Ve 08:00-19:00, Sa 09:00-19:00;;;;;14838205375579;2021-07-21;;2022-11-23;;2023-08-05T07:13:37.967000+00:00;62a05c91c76f1aaac8fabbbf;cd790467-c119-4535-a806-7a7518c1ce69;laerodrome-de-la-baie-de-somme;-1.172374;44.663364;95320;Mirambeau;; +;Sarl In Terra Corsa;349542977;yannick@2ed.fr;LANGON DISTRIBUTION;assistance-technique@ouestcharge-paysdelaloire-moncompte.fr;0186472694;CGED MONTATAIRE;FRS33PMB339211;FR*SOD*S*MB33*40*1*_*_;ARCACHON - GARE SNCF;;RUE GILBERT SORE - PARKING;17172;[-1.16609, 44.659492];;FRELCE744S;FR*SOD*E*MB33*100*1*2*_;;;;;;;;;;;0.2€ / kwh;;;Mo-Fr 00:00-23:59;;;;;14864399300704;2021-02-18;;2023-06-21;;2023-08-05T07:13:37.562000+00:00;62a064a7877a70fa1411cd8d;26d24daf-029e-4196-b551-b7d7038aedd3;eric-dalverny;-1.16609;44.659492;95370;Gémozac;; +;AUTO 33;420023616;contact@autorecharge.fr;PLAGECO DISTRIBUTION;info@jabotte.com;0186472693;Chazey-Bons;FRS33PMB339212;FR*SOD*S*MB33*42*1*_*_;ANDERNOS LES BAINS - ESPLANADE DE BROUSTIC/ALLEE MAX ET PAULETTE FAYE;;ALLÉE DU GARDE-FEU DU JUGE;17309;[-1.098947, 44.74308];;FRELCEXGC6;FR*SOD*E*MB33*100*1*1*_;;;;;;;;;;;0.38€ / kwh;;;Mo-Sa 09:00-12:00 14:00-19:00, Su 9:00-12:30;;;;;14818957909720;2021-06-17;;2023-06-03;;2023-08-05T07:13:37.264000+00:00;62a06b30528e25ccfd1435e3;72e09a71-ea8b-4036-8483-e75ff9723e12;cedric-lemaitre-1;-1.098947;44.74308;95130;Saint-Aigulin;; +;AUTO NORD;398027235;s.julienne@rivieracarcenter.fr;BIARS DISTRIBUTION;bornes.overchem@laposte.net;0186472692;TREON - Rue Jean Michel Herault - 134347;FRS33PMB339311;FR*SOD*S*MB33*43*1*_*_;ANDERNOS LES BAINS - BOULEVARD DE LA PLAGE/ PARKING PORT OSTREICOLE;;AVENUE DU BANC DARGUIN PYLA;17385;[-1.106562, 44.74374];;FRELCEJECC;FR*SOD*E*MB33*101*1*2*_;;;;;;;;;;;0,20€ / kwh + 0,025 € / minute et 0,10€ / minute après 60 minutes;;;tu-sa 08:30-12:00,tu-sa 14:00-18:00;;;;;14820549805682;2021-06-15;;2023-03-21;;2023-08-05T07:13:36.930000+00:00;62a07a155e07ba9e6a93d5af;1e0f2c9c-d942-4920-b931-273e5998334b;tanguy-fomel;-1.106562;44.74374;95110;Saint-Pierre-d'Oléron;; +;ASL Cap Mermoz;377922208;meuzenat@arteco.fr;SAS Miodis;gerald.seiler@sap.com;0186472719;La Roche-sur-Yon;FRS33PMB339312;FR*SOD*S*MB33*44*1*_*_;BIGANOS - MAIRIE;;AVENUE VERDUN CAZAUX;17224;[-0.975692, 44.64143];;FRELCE2KUM;FR*SOD*E*MB33*101*1*1*_;;;;;;;;;;;";;;tu-sa 09:00-12:00,14:00-18:00;;;;;14894211166769;2023-07-20;;2023-01-28;;2023-08-05T07:13:36.500000+00:00;62a08198f79949e254a99249;ef54bafe-decd-43d8-a40e-276c547170e8;novabio;-0.975692;44.64143;95150;Matha;; +;ASL Marmoutier Ilot 3;530271162;girardhotel@gmail.com;SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX;pascal.lhermitte@siege27.fr;0186472749;Noyal-Pontivy;FRS33PMB339411;FR*SOD*S*MB33*45*1*_*_;BIGANOS - PEI GARE;;RUE DE LYSER;17421;[-0.965542, 44.637932];;FRELCEVMH7;FR*SOD*E*MB33*102*1*2*_;;;;;;;;;;;0,35€/kWh + 2€/session;;;Mo-Fr 8:00-18:04;;;;;14848480342028;2021-07-02;;2023-04-26;;2023-08-05T07:13:36.145000+00:00;62c3fca4c166b28d983baf67;58871f67-9d10-437e-ab60-d6a1167a040a;jerome-cicile;-0.965542;44.637932;92410;Saujon;; +;AUTO PORT;394452973;exploitation@easycharge-vinci.COM;Ville de Riquewihr;contact@pha.fr;0186472721;Gétigné;FRS33PMB339412;FR*SOD*S*MB33*46*1*_*_;BIGANOS - RUE DE LA RESISTANCE;;RUE DU GÉNÉRAL GALLIENI - PARKING LA POSTE;17300;[-0.965469, 44.639351];;FRELCEXW99;FR*SOD*E*MB33*102*1*1*_;;;;;;;;;;;0,45€/kWh + 2€/session;;;Mo-Fr 8:00-18:07;;;;;14867583089928;2021-07-05;;2023-06-06;;2023-08-05T07:13:35.732000+00:00;62c401f47d70c63f5204ada2;3fd41fca-309d-4d6c-a77c-8b9c1099e6ff;borne-is-born;-0.965469;44.639351;95550;Rivedoux-Plage;; +;Agence Rexel Nanterre;533577581;cedric.omnes@groupama.com;SAS Lujasy;direction@gambus.fr;0186472722;WAAT 4 CHENES 28;FRS33PMB339511;FR*SOD*S*MB33*47*1*_*_;CESTAS - PLACE DE LA REPUBLIQUE;;ALLÉE DU MATELOT;17297;[-0.701827, 44.771759];;FRELCED92B;FR*SOD*E*MB33*103*1*2*_;;;;;;;;;;;forfait de recharge;;;Mo-Fr 8:00-18:06;;;;;14825180776389;2023-06-09;;2023-05-28;;2023-08-05T07:13:35.370000+00:00;62e258cd452951eaf821515b;b410a4f9-1c26-41f4-970a-fa394950d973;alexnadre-durand;-0.701827;44.771759;95290;Pons;; +;Agence Cascino Daugareil;727350183;thomas.simian@liger-belair.fr;Hôtel MACCHI;stephane@avomarks.fr;0186472748;Saint-Père-en-Retz;FRS33PMB339512;FR*SOD*S*MB33*48*1*_*_;CUBNEZAIS - RUE DE L ABREVOIR / PARKING CIMETIERE;;RUE DU MARÉCHAL LECLERC;17283;[-0.408791, 45.075554];;FRELCEGSLW;FR*SOD*E*MB33*103*1*1*_;;;;;;;;;;;0,25CTS KW ET 0,025CTS DE LA MIN;;;Mo-Fr 8:00-18:05;;;;;14811577303294;2023-05-15;;2023-02-09;;2023-08-05T07:13:35.002000+00:00;62d66af16b8684e7a1402c2c;33b8fed9-e1f8-44bb-8e19-f823cc92eba5;aintelec;-0.408791;45.075554;94520;Saintes;; +;Adéquate;399919927;pierremarinere489@yopmail.com;NW IECharge;loisirs.acqua@orange.fr;0186472747;Orignolles;FRS33PMB339611;FR*SOD*S*MB33*131*1*_*_;LA REOLE - PARKING - AVENUE CARNOT;;PLACE DE LEGLISE;17415;[-0.035621, 44.584213];;FRELCEN56W;FR*SOD*E*MB33*104*1*1*_;;;;;;;;;;;20CTSKWH ET 0,25€ TEMPS MINUTES;;;Mo-Fr 8:00-18:03;;;;;14877279184036;2023-05-09;;2023-03-07;;2023-08-05T07:13:34.717000+00:00;62d7e4661517ae6fa6790230;b00358e7-8fd5-4b61-9b63-8852bca1d257;electricite-veit;-0.035621;44.584213;78420;Saint-Agnant;; +;Adefi;489249144;eabdi@balas.net;REVE;info@ispo-group.com;0186472746;Avrillé;FRS33PMB339612;FR*SOD*S*MB33*153*1*_*_;LA REOLE - PARKING - RUE DES JACOBINS;;PLACE DE LA MAIRIE;17308;[-0.034757, 44.582245];;FRELCEJ2CM;FR*SOD*E*MB33*104*1*2*_;;;;;;;;;;;0,348 € par kWh puis 0,012 € par minute après la fin de la charge;;;Mo-Fr 8:00-18:02;;;;;14884949226907;2021-06-18;;2023-06-14;;2023-08-05T07:13:34.424000+00:00;62d7cf9de6037a84998e20e0;864f7c32-4581-4449-8324-0e1e57dceebc;christian-olivier;-0.034757;44.582245;92700;Surgères;; +;Adapei Doubs;302695325;dduterte@gagneraud.fr;Prodici;sas.adam@wanadoo.fr;0186472745;NEUIL 3567 - Parking Impasse des Lizas;FRS33PMB339712;FR*SOD*S*MB33*151*1*_*_;LA TESTE DE BUCH - RUE GILBERT SORE - PARKING;;PLACE DU FOIRAIL;17434;[-1.150912, 44.63129];;FRELCEEB6Y;FR*SOD*E*MB33*105*1*1*_;;;;;;;;;;;0,456 € par kWh puis 0,06 € par minute après la fin de la charge;;;Mo-Fr 8:00-18:01;;;;;50034262689648;2021-06-24;;2023-02-16;;2023-08-05T07:13:34.136000+00:00;62d6d13971943515d23b4d9a;3ced5b57-ade8-4ca6-83f7-7bbaf965123c;jcpelec;-1.150912;44.63129;93190;Beurlay;; +;Actipolis Béthune;877380394;silvie.ferriol@ca-aquitaine.fr;Green Diffusion;aurelien@evasion-moto.fr;0186472744;SONEPAR CONNECT BEZIERS_;FRS33PMB338212;FR*SOD*S*MB33*152*1*_*_;LA TESTE-DE-BUCH - ALLEE DU GARDE-FEU DU JUGE;;AVENUE JEAN DELSOL;17045;[-1.202032, 44.632652];;FRELCECTCH;FR*SOD*E*MB33*105*1*2*_;;;;;;;;;;;0.48;;;Mo-Su 08:00-18:00;;;;;14830390616749;2021-06-21;;2023-01-29;;2023-08-05T07:13:33.799000+00:00;62d6c19a73ad87660daad7eb;77b4faf7-769e-47f8-9052-6dbf4d47994b;4m-retail;-1.202032;44.632652;93340;Tonnay-Charente;; +;Actalia;451070197;gael.kergroach@ccdourdannais.com;SCI NOKI;contact@lerelaisdelaperle.fr;0186472743;SOUVIGNY DE TOURAINE 1462;FRS33PMB338111;FR*SOD*S*MB33*150*1*_*_;LA TESTE-DE-BUCH - AVENUE DU BANC DARGUIN PYLA;;PARKING DE LA BRÉDINIÈRE;17449;[-1.207559, 44.606632];;FRELCEH2C3;FR*SOD*E*MB33*106*1*1*_;;;;;;;;;;;0.20 €;;;Mo-Fr 09:00-13:00, Mo-Fr 16:00-18:00;;;;;14847177878407;2021-07-27;;2022-11-19;;2023-08-05T07:13:33.509000+00:00;62d68487662f7a78439945d7;a5f660d4-a38e-4d03-949f-3e68e0e21d9d;soleco;-1.207559;44.606632;93320;Périgny;; +;Abbaye de Royaumont;843277609;ericbenhamou98@gmail.com;CHARRIERE DISTRIBUTION;support@passpasselectrique.fr;0186472742;THILOUZE 1464;FRS33PMB336612;FR*SOD*S*MB33*155*1*_*_;LA TESTE-DE-BUCH - AVENUE VERDUN CAZAUX;;RUE DU CHÂTEAU DEAU;17274;[-1.152655, 44.537663];;FRELCESQME;FR*SOD*E*MB33*113*1*1*_;;;;;;;;;;;La tarification sera forfaitaire;;;Mo-Fr 09:00-12:15, Mo-Fr13:30-17:00;;;;;14862662685769;2022-08-12;;2023-04-13;;2023-08-05T07:13:33.293000+00:00;62d6741373f1f1ac1e3833eb;9889ab23-11f2-4533-8994-f4d4c5318510;thibal-distribution;-1.152655;44.537663;95330;Dolus-d'Oléron;; +;AWP Sud Dépannage;799065628;direction@absolutautomobiles.com;ATELIERS PROVENCE LOISIRS;contact@mobive.fr;0186472741;SONEPAR CONNECT AGDE;FRS33PMB338112;FR*SOD*S*MB33*156*1*_*_;LA TESTE-DE-BUCH - RUE DE LYSER;;AVENUE DE LA LAURENCE;17140;[-1.144855, 44.638229];;FRELCE98AA;FR*SOD*E*MB33*107*1*1*_;;;;;;;;;;;0.30€ HT kWh pour abonnés Z-E-N + frais si autres eMSP;;;Mo-Fr 09:00-12:15, Mo-Fr 13:30-17:00;;;;;14838350093335;2021-06-11;;2023-05-17;;2023-08-05T07:13:32.913000+00:00;62d57c8194ccba52ad5702fe;3a036bd1-8ddb-4bd6-aaf4-8596d9c7a602;tem53;-1.144855;44.638229;77181;Saint-Jean-d'Angély;; +;AWP City Car Services - ECOLE VALENTIN;210302337;contact@yellow-car.fr;H alu concept;groupe@electriox.fr;0186472740;BRIDORE 1467;FRS33PMB336712;FR*SOD*S*MB33*144*1*_*_;LA TESTE-DE-BUCH - RUE DU GENERAL GALLIENI - PARKING LA POSTE;;AV DE L ISLE / PARKING L ANGLE RUE DE LA GRAVETTE;17347;[-1.148236, 44.631668];;FRELCE2WEY;FR*SOD*E*MB33*107*1*2*_;;;;;;;;;;;0,40€/kwh;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:30,Sat 08:00-17:30;;;;;14832850819386;2021-01-11;;2023-01-31;;2023-08-05T07:13:32.421000+00:00;62c4071e0c8e172a3d0c6d82;0294c783-56c2-42a7-81ae-a3b7977b54be;sebalyo-solar;-1.148236;44.631668;92390;Saint-Denis-d'Oléron;; +;Communauté de communes des Portes de Sologne;809154008;accueil@armonial-immobilier.fr;SCI Lounapiou;service.client@e-nergyze.com;0186472739;PARCAY MESLAY 1469;FRS33PMB336811;FR*SOD*S*MB33*142*1*_*_;LACANAU - ALLEE DU MATELOT;;PARKING DOCTEUR BEZIAN;17323;[-1.195334, 45.001762];;FRELCEAHU2;FR*SOD*E*MB33*108*1*2*_;;;;;;;;;;;0.221;;;Th 08:00-18:00;;;;;14815050531000;2021-01-05;;2023-04-14;;2023-08-05T07:13:32.027000+00:00;62d569c747657d798af2130c;83ed6db2-cd0a-494f-8877-4016c83dd67a;sieml;-1.195334;45.001762;95630;Saint-Sulpice-de-Royan;; +;7 Hotel & SPA;341545531;lareservederilhat@gmail.com;Bastide beaudinard & tours (BBT);contact@270agency.com;0186472738;SONEPAR CONNECT SAINT-LÔ;FRS33PMB336812;FR*SOD*S*MB33*143*1*_*_;LACANAU - RUE DU MARECHAL LECLERC;;PEM RUE DE LYSER 2;17409;[-1.074968, 44.977234];;FRELCESVDG;FR*SOD*E*MB33*108*1*1*_;;;;;;;;;;;La première heure est gratuite puis 0,20 € par kWh et 0,01 € par minute;;;Mo-Su 08:00-19:00;;;;;14838639528905;2021-03-02;;2023-03-16;;2023-08-05T07:13:31.529000+00:00;62d54d4249a6632dd031502a;049c7644-2dc8-404b-bfa9-fd03e6e19f67;sydela;-1.074968;44.977234;95840;La Flotte;; +;ARTS FABRIK;216200451;a.tarridec@mabornauto.com;Vegetalis;cedric.granon@wanadoo.fr;0186472737;CGED BEZIERS;FRS33PMB336911;FR*SOD*S*MB33*145*1*_*_;LANDIRAS - PLACE DE LEGLISE;;PEM RUE DE LYSER;17161;[-0.41494, 44.567455];;FRELCEWEN4;FR*SOD*E*MB33*109*1*1*_;;;;;;;;;;;0,30€ / Kwh;;;Lu- Sa 09:00-19:30;;;;;14860057765278;2021-02-19;;2023-05-22;;2023-08-05T07:13:31.066000+00:00;62d52bdb0964404f835e3837;4cb91aa3-7859-4e7b-8117-35723f6ebf27;sas-saem;-0.41494;44.567455;95590;Saint-Rogatien;; +;APHM, Hôpitaux universitaires de Marseille;314684572;commercial@bati-colman.fr;Le Capelan;SLANTELME@GMAIL.COM;0186472736;PARKING N-1 SAVENAY 4;FRS33PMB336912;FR*SOD*S*MB33*149*1*_*_;LANGOIRAN - PLACE DE LA MAIRIE;;RUE EDMOND DAUTRIC;17391;[-0.400897, 44.708164];;FRELCEUQFV;FR*SOD*E*MB33*109*1*2*_;;;;;;;;;;;1€ la connexion + (0.45€/Kwh pendant 2 heures et 0.55€/min après les 2 heures);;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:06;;;;;50044952271586;2021-01-06;;2023-04-27;;2023-08-05T07:13:30.564000+00:00;62d52b0213a32c116ec0a170;98d2bedc-1d4d-4a1f-8d81-67867556471f;alexandre-metivier;-0.400897;44.708164;95620;Échillais;; +;AMK public;752982645;david.lelivec@groupe-pandora.com;CAP EMPLOI;contact@metallerieperrut.fr;0186472735;UNILABS BIO CT EPERNAY;FRS33PMB337012;FR*SOD*S*MB33*146*1*_*_;LANGON - PLACE DE LA MAIRIE;;AV DU GEN DE GAULLE - PARKING MAIRIE;17146;[-0.245125, 44.553131];;FRELCE3WVD;FR*SOD*E*MB33*110*1*1*_;;;;;;;;;;;0,50 HT / kWh;;;Lu- Di 08:30-19:30;;;;;14809985407119;2021-01-08;;2023-03-17;;2023-08-05T07:13:30.162000+00:00;62d5104ea66cd6b2f4b6f66b;be0f4725-babd-41f6-8aa1-6ccbdb0d1580;flyops;-0.245125;44.553131;95380;Pisany;; +;AG Garage;834982183;contact@s-design.candas.fr;AUTORECHARGE SAS;accueil-brico.langon@scaso.fr;0186472734;DORMANS -70244 - Gare;FRS33PMB337011;FR*SOD*S*MB33*148*1*_*_;LANGON - PLACE DU FOIRAIL;;IMPASSE DU PAS DE MONNAC;17278;[-0.248037, 44.555328];;FRELCE6ETX;FR*SOD*E*MB33*110*1*2*_;;;;;;;;;;;0,40€ / Kwh;;;Mo-Th 00:00-23:59;;;;;14828364567001;2021-01-13;;2023-04-10;;2023-08-05T07:13:29.883000+00:00;62d7fbe7a40735cee531f15d;96a7d67d-8be4-4655-8a0f-422c4f9ff231;manubob-industrie;-0.248037;44.555328;93410;Écoyeux;; +;AFORIA / CFAI Rouen Dieppe;909177297;g.ferrat@greenprovence.fr;Hotel Le Moulin;sylvie.at@scaso.fr;0186472733;SEIGY 211885 - RUE MARCEL COTTEREAU;FRS33PMB337112;FR*SOD*S*MB33*135*1*_*_;LA REOLE - AVENUE JEAN DELSOL;;RUE ETIENNE TURPIN;17147;[-0.037012, 44.581619];;FRELCEA98S;FR*SOD*E*MB33*111*1*2*_;;;;;;;;;;;0,40€/KWH;;;mo-fr 08:00-12:00,mo-fr 13:30-18:00;;;;;50059857553689;2020-11-30;;2021-05-06;;2023-08-05T07:13:29.565000+00:00;62d807072f7a84f543ffd942;c94b51ef-0e4e-4e9a-a8bd-258ef46b5894;acelec-charge;-0.037012;44.581619;92800;Saint-Césaire;; +;ADH;438060501;contact@allenergies.fr;ELEC eCONNECT;franck.pothin@scaso.fr;0186472732;STATION SUPER U BELLEVIGNY DC;FRS33PMB337111;FR*SOD*S*MB33*138*1*_*_;LA BREDE - PARKING DE LA BREDINIERE;;LIEU-DIT PONTET;17314;[-0.531089, 44.679783];;FRELCEGYK6;FR*SOD*E*MB33*111*1*1*_;;;;;;;;;;;0,20€ / Kwh + 0,70€ par session;;;Mo-Fr 08:00-18:30;;;;;14873227086153;2020-11-27;;2023-03-09;;2023-08-05T07:13:29.219000+00:00;62d9477837cd9af331d04345;b3d4abb9-83c4-46ce-9611-fa6fe3acfd49;pascal-perrin;-0.531089;44.679783;95270;Burie;; +;ACM Ingénierie;308452051;solidarauto49@orange.fr;Golf de La Wantzenau;stephane.henry@scaso.fr;0186472731;STATION SUPER U BELLEVIGNY 4;FRS33PMB337211;FR*SOD*S*MB33*137*1*_*_;GRIGNOLS - RUE DU CHATEAU DEAU;;RUE SCHWANDORF - DAGUEYS;17072;[-0.041403, 44.39061];;FRELCE844G;FR*SOD*E*MB33*112*1*2*_;;;;;;;;;;;0.50€ / Kwh;;;Tue-Fri 12:00-22:00,Sat 16:00-23:00;;;;;14894790037300;2020-12-01;;2023-02-10;;2023-08-05T07:13:28.946000+00:00;62d95d5867e8bddc9e3eda56;446fdc2f-c71d-497c-b969-05b19eb73393;aeroport-de-lyon;-0.041403;44.39061;78400;Saint-Georges-de-Didonne;; +;ABW Auto Epinal;949243562;garage.senia@scache.Fr;Sud Hotel;lucas.ribelles@scaso.fr;0186472730;SAVONNIERES 1460 - Place du Faisan;FRS33PMB337212;FR*SOD*S*MB33*136*1*_*_;ETAULIERS - MAIRIE;;PARKING DU GESTAS;17333;[-0.573481, 45.224117];;FRELCE6CY9;FR*SOD*E*MB33*112*1*1*_;;;;;;;;;;;0.2€ / kWh + 0.0733€ / minute + 0.65€ / transaction;;;Mo-sat 08:00-18:00,Sun 09:00-18:00;;;;;14829522311054;2020-12-18;;2021-07-29;;2023-08-05T07:13:28.691000+00:00;62dab62abec185caba7bfc0a;35167ef4-fd0b-45af-9398-f9eb07cd5a5d;gireve-2;-0.573481;45.224117;92110;Montlieu-la-Garde;; +;ABM MONTAUBAN;508754181;garage.mariniere@scache.fr;Garage lefebvre;cmoya@girondins.com;0186472729;PARKING N-1 SAVENAY 3;FRS33PMB337311;FR*SOD*S*MB33*134*1*_*_;FARGUES-SAINT-HILAIRE - AVENUE DE LA LAURENCE;;ECHANGEUR PELOUNEYRES;17243;[-0.445306, 44.824787];;FRELCE4ATU;FR*SOD*E*MB33*113*1*2*_;;;;;;;;;;;non connu;;;Mo-Fr 07:45-18:00,Sat 09:00-18:00;;;;;14835166304195;2021-04-27;;2023-05-29;;2023-08-05T07:13:28.224000+00:00;62dad5659263f78c677ac699;ca80b342-a654-44c7-92c4-e129c5f1608a;;-0.445306;44.824787;92420;Talmont-sur-Gironde;; +;A l'Aube des Volcans;403825722;olivier.justinien-adh@mousquetaires.com;Pilotage Maritime;tente.bornes@laposte.net;0186472728;Montbartier;FRS33PMB337312;FR*SOD*S*MB33*139*1*_*_;FRANCS - MAIRIE;;PARKING DE FERCHAUD;17437;[-0.007033, 44.945431];;FRELCEWF8E;FR*SOD*E*MB33*67*1*1*_;;;;;;;;;;;Gratuit pour nos clients, venez visiter notre magasin;;;Mo-Fr 9:00-12:00,Mo-Fr 14:00-17:30;;;;;14809551254008;2020-12-23;;2023-05-03;;2023-08-05T07:13:27.944000+00:00;62de4e29fd78c33b21a3aa35;679cdd22-006a-4a37-89ab-27ed0533ef2c;;-0.007033;44.945431;78350;Cozes;; +;BFC-SDEY - CITEOS Viry Châtillon Accéléré;899892202;operation.eu@voltacharging.com;UBITRICITY GMBH;mairie@riquewihr.fr;0186472727;AMBILLOU 1444;FRS33PMB337412;FR*SOD*S*MB33*133*1*_*_;FRONSAC - PARKING MAIRIE;;PARKING GENDARMERIE;17131;[-0.271769, 44.924076];;FRELCERAG4;FR*SOD*E*MB33*66*1*1*_;;;;;;;;;;;0,40;;;Mo-Fr 08:00-18:00,Sat 09:00-18:00;;;;;Maison des associations (14875687394628);2020-12-17;;2023-03-29;;2023-08-05T07:13:27.659000+00:00;62de65b1c56ef6de8a07e846;15dd9b19-2745-46d3-b91e-f826ad1004ac;;-0.271769;44.924076;95200;La Jarrie;; +;Transdev - parking Marché Saint-Germain;898843719;edallaines@valmagne.com;GREEN TECHNOLOGIE;lujasy74@gmail.com;0186472726;PARKING N-1 SAVENAY 1;FRS33PMB337411;FR*SOD*S*MB33*132*1*_*_;GALGON - PARKING MAIRIE;;ALLEE DU CHAMP DE FOIRE;17194;[-0.274073, 44.992256];;FRELCEQVLC;FR*SOD*E*MB33*130*1*1*_;;;;;;;;;;;1.00 / KW;;;Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:01;;;;;14838928963619;2020-12-16;;2023-03-13;;2023-08-05T07:13:27.271000+00:00;62de70c6e821abf5172d320f;958721e0-d7c7-4f95-8d12-c4bf6928d944;;-0.274073;44.992256;94430;Coux;; +;Cigoland;336450051;caroline.demba@midas-guyane.com;LIDL, Nicolas Barbarin;contact@hotelmacchi.com;0186472725;CHÂTEAU LA VALLIERE 1446;FRS33PMB337512;FR*SOD*S*MB33*140*1*_*_;GOURS - PARKING EGLISE;;PARKING CIMETIÈRE;17130;[0.022342, 44.992886];;FRELCE66P3;FR*SOD*E*MB33*16*1*2*_;;;;;;;;;;;0,2668 / kwh;;;Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:00;;;;;14868740833208;2021-03-23;;2023-01-07;;2023-08-05T07:13:26.919000+00:00;62de7aca08013cd8b745a908;17c6513f-48a8-4963-8fde-494fb6793a0d;;0.022342;44.992886;92370;Chevanceaux;; +;Touquet Normal;478236318;bpetrogalli@seay.fr;Ecophi mobility;contact@nw-joules.fr;0186472724;LA CELLE GUENAND 1449;FRS33PMB337522;FR*SOD*S*MB33*141*1*_*_;GUITRES - AV DE L ISLE / PARKING L ANGLE RUE DE LA GRAVETTE;;LAMÉLIE - 4 RUE DU 8 MAI;17104;[-0.185352, 45.040447];;FRELCENHWH;FR*SOD*E*MB33*17*1*1*_;;;;;;;;;;;Non Concerné;;;Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:03;;;;;14854558488163;2021-04-28;;2023-01-14;;2023-08-05T07:13:26.242000+00:00;62df9c20e93587e035728972;a5632082-0c2b-474b-8329-0577894a21d5;;-0.185352;45.040447;94200;La Couarde-sur-Mer;; +;Touquet Semi-Rapide;323873174;A.TARRIDEC@MABORNEAUTO.COM;EcoPhi mobility;odile.coumeau@greentechnologie.net;0186472723;VERNEUIL SUR INDRE 1453;FRS33PMB337511;FR*SOD*S*OAZS*222*1*_*_;GUJAN-MESTRAS - PARKING DOCTEUR BEZIAN;;AVENUE DU 8 MAI 1945 - PARKING COMMERCES;17121;[-1.0602, 44.63863];;FRELCEWKLH;FR*SOD*E*MB33*19*1*2*_;;;;;;;;;;;0.299€/kWh+0.0230€/min pour les recharge en roaming;;;Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:02;;;;;14896237216166;2021-03-03;;2023-01-11;;2023-08-05T07:13:25.873000+00:00;62dfb1540373f9c1009a6109;46bf8a55-8986-45de-9c61-3f344a7cf1ee;;-1.0602;44.63863;77270;Saint-Clément-des-Baleines;; +;Track Complex;388727844;flavien.gaborit@o2.fr;ProperPhi;contact@reve-mobilite.com;0186472690;PARKING N-1 SAVENAY 6;FRS33PMB337521;FR*SOD*S*OAZS*223*1*_*_;GUJAN-MESTRAS - PARKING MAIRIE;;PARKING DE LA BALEINE;17318;[-1.071506, 44.635715];;FRELCE4GAD;FR*SOD*E*MB33*19*1*1*_;;;;;;;;;;;0.27€/kWh+0.10€/min pour les non abonnées;;;Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:05;;;;;14803038953556;2021-05-18;;2023-03-10;;2023-08-05T07:13:25.566000+00:00;62d1550f7c3729d442b96255;edc0c9cd-ce30-422c-866e-f61151ed37d7;;-1.071506;44.635715;95190;Le Gua;; +;Transdev Park Bordeaux Salinières;437983224;mairie@cherbourg.fr;société La Clérine;contact@techoffice.fr;0618727251;RAZINES 1441;FRS33PMB337612;FR*SOD*S*OAZS*222*3*_*_;GUJAN-MESTRAS - PEM RUE DE LYSER - DROITE;;RUE DU POIDS PUBLIC - PLACE DU 11 NOVEMBRE;17185;[-1.0694, 44.640648];;FRELCEN2GD;FR*SOD*E*MB33*20*1*2*_;;;;;;;;;;;Tarif lié à la durée de stationnement. Paiement uniquement sur Internet au moment de la réservation.;;;Mo-Fr 09:00-12:00, Mo-Fr 14:00-17:04;;;;;14876121441617;2021-01-19;;2023-01-09;;2023-08-05T07:13:25.241000+00:00;62d150536085299bc581dda1;74d2c1c9-ad1e-4631-819a-d9980ad035ab;;-1.0694;44.640648;94440;Saint-Trojan-les-Bains;; +;Châtenois;200041309;sdem@sdem50.fr;GABMAG17;contact@hotel-du-porge.com;0986877186;SAINT MARTIN LE BEAU 1456;FRS33PMB337611;FR*SOD*S*OAZS*223*3*_*_;GUJAN-MESTRAS - PEM RUE DE LYSER - GAUCHE;;RUE DE LESTEY FLEURI;17411;[-1.069077, 44.64072];;FRELCEL7FJ;FR*SOD*E*MB33*20*1*1*_;;;;;;;;;;;;;;MO-SU 08:00-18:00;;;;;14823299444946;2021-01-18;;2022-11-04;;2023-08-05T07:13:24.808000+00:00;62ce0dcc5e174b1a3ff49333;dce62b84-af6c-4f71-83d6-e83792732ad0;;-1.069077;44.64072;95570;Montguyon;; +;Transdev Park Marseille - Euromed public;897541264;mairie@avranches.fr;Les jardins maraichers des bords de rance;lahalledesproducteurs@gmail.com;0232103853;COTEAUX-SUR-LOIRE 1458;FRS33PMB337712;FR*SOD*S*MB17*16*1*_*_;GUJAN-MESTRAS - RUE EDMOND DAUTRIC;;RUE EUGENE COLETTE;17241;[-1.068484, 44.640541];;FRELCEHWU8;FR*SOD*E*MB33*21*1*2*_;;;;;;;;;;;;;;mo-fr 8:00-12:00,mo-fr 14:00-18:0,Th 8:00-18:00;;;;;14886975276194;2021-02-25;;2022-10-31;;2023-08-05T07:13:24.400000+00:00;62c6e09021ea42b5c021c695;12aff2b6-65e0-4d58-97a9-6937d3295454;;-1.068484;44.640541;91370;Rochefort;; +;Université de Bourgogne public;349578872;hotel.ville@mairie-saint-lo.fr;LA CONCIERGERIE D'ISA.;b.magnier34@gmail.com;038776969;PARKING N-1 SAVENAY 5;FRS33PMB337711;FR*SOD*S*MB17*18*1*_*_;IZON - AV DU GEN DE GAULLE - PARKING MAIRIE;;PARKING MÉDIATHÈQUE;17299;[-0.361701, 44.91988];;FRELCEANK2;FR*SOD*E*MB33*21*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00;;;;;14844428243558;2021-11-17;;2023-01-10;;2023-08-05T07:13:23.999000+00:00;62c521eb72442635c30cc49b;ca52be45-5447-46be-9928-c837115acec3;;-0.361701;44.91988;93160;Aulnay;; +;Châteauform, Château de Mery;801177528;hotelletilbury@gmail.com;IXINA Le Cres;staff@charriere-distribution.com;038729007;GIZEUX 15744 - Place de la Mairie;FRS33PMB337812;FR*SOD*S*MB17*19*1*_*_;SAINT-ANDRE-DE-CUBZAC - IMPASSE DU PAS DE MONNAC;;RUE PIERRE SÉMARD;17024;[-0.430289, 44.992447];;FRELCEDVEU;FR*SOD*E*MB33*22*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00, Mo-Fr 13:30-18:00;;;;;14878292209639;2021-11-18;;2023-03-08;;2023-08-05T07:13:23.732000+00:00;62c53ddaac66fafbc2558332;4def3c86-0646-4631-a37e-6ec9810a25bb;;-0.430289;44.992447;78600;Charron;; +;Châteauform de Rosay;802892794;contact@easyplug.re;ixina Villeneuve-lès-Béziers;aploisirs84@orange.fr;146421897;SAINT EPAIN 1565;FRS33PMB337811;FR*SOD*S*MB17*17*1*_*_;LA TESTE-DE-BUCH - PLAINE DES SPORTS;;CENTRE BOURG - AV DE LA TOUR;17091;[-1.124493, 44.618902];;FRELCEUYQF;FR*SOD*E*MB33*22*1*2*_;;;;;;;;;;;;;;Mo-Fr 09:00-12:00,Mo-Fr 13:30-17:30;;;;;14844862397998;2021-11-19;;2022-11-24;;2023-08-05T07:13:23.363000+00:00;62c5408177e815ef243965dd;dd0ca8ca-4b48-4365-8fe5-7af605fba3f0;;-1.124493;44.618902;95160;Châtelaillon-Plage;; +;Châteauform des Prés d'Écoublay;507771335;les.amarines@orange.fr;IXINA Saint Jean de Védas;h.aluconcept@gmail.com;146421898;LES ARCHES BORNE 1;FRS33PMB337912;FR*SOD*S*MB17*15*1*_*_;EYRANS - LIEU-DIT PONTET;;AVENUE DE LAÉROPORT;17094;[-0.601418, 45.190145];;FRELCE25CJ;FR*SOD*E*MB33*23*1*2*_;;;;;;;;;;;;;;Mo-fr 7:00-19:00,Sa 8:00-12:00;;;;;50061903789450;2021-11-25;;2022-09-21;;2023-08-05T07:13:22.921000+00:00;62c542e477e815ef243965de;f2007d95-5d19-4960-adca-b1ecfbe7edcc;;-0.601418;45.190145;95210;Corme-Royal;; +;Châteauneuf-sur-Loire;892771049;campingleploaveyron@gmail.com;ubitricity;isa.pluta@orange.fr;146421899;Culhat;FRS33PMB337911;FR*SOD*S*MB17*14*1*_*_;LIBOURNE - RUE SCHWANDORF - DAGUEYS;;AIRE DE COVOITURAGE VINCI AUTOROUTES VALENCE NORD;17120;[-0.244545, 44.946975];;FRELCEG78A;FR*SOD*E*MB33*23*1*1*_;;;;;;;;;;;;;;Lundi-Samedi 11:00-23:00;;;;;14843849371639;2021-11-23;;2023-04-21;;2023-08-05T07:13:22.486000+00:00;62c550033ea733e9c2861091;0ebcfadf-bedc-44ca-ac99-62252ae9c3b8;;-0.244545;44.946975;78390;La Tremblade;; +;Châteaux de Gizeux;530148816;info@kallistemolini.com;Dropnplug;contact@bastidebeaudinard.fr;02 23 25 08 86;COMMUNE NOUVELLE - Eglise Langey - 137316;FRS33PMB338011;FR*SOD*S*MB17*25*1*_*_;VAYRES - PARKING DU GESTAS;;CHERAY PARKING GODEAU;17452;[-0.316924, 44.897648];;FRELCEXD2R;FR*SOD*E*MB33*24*1*1*_;;;;;;;;;;;;;;Lundi-Vendredi 08:00-18:00;;;;;14829522307434;2021-09-22;;2023-04-15;;2023-08-05T07:13:21.979000+00:00;62c579e7c1c56903e1bbfafa;dd175e82-82f0-4e7a-966e-6d28e7b58e15;;-0.316924;44.897648;92220;Saint-Savinien;; +;UEM Neuf-Brisach;309134476;campinglabourie@gmail.com;Daltoner Avranches;d.genre@groupegenre.com;0233440404;CLERE LES PINS 1563;FRS33PMB338012;FR*SOD*S*MB17*20*1*_*_;MIOS - ECHANGEUR PELOUNEYRES;;PLACE FRANÇOIS COURTOT;17397;[-0.826756, 44.664279];;FRELCECLTD;FR*SOD*E*MB33*24*1*2*_;;;;;;;;;;;;;;Dimanche-Jeudi 11:30-23:00 / Vendredi - Samedi : 11:30-23:30;;;;;14898407981814;2023-02-22;;2023-02-24;;2023-08-05T07:13:21.577000+00:00;62c5b04c4560d40d94a88868;3cf9ea95-9647-4a4e-973b-062af35d4c33;;-0.826756;44.664279;92430;Loix;; +;U Express Ceyzeriat;522202977;jeanbrunet@lhippocampe.pro;DIDIER CHARTON-VACHET;camping.le.capelan@orange.fr;Stations-e;PACAZAC BORNE 2;FRS33PMB339711;FR*SOD*S*MB17*13*1*_*_;SAINT CAPRAIS DE BLAYE - PARKING DE FERCHAUD;;RUE DES BARGOTTES PARKING LAZZATE;17207;[-0.569409, 45.29116];;FRELCEBWNB;FR*SOD*E*MB33*25*1*1*_;;;;;;;;;;;;;;Lundi-Vendredi 09:00-19:00 / Samedi : 09:00-17:00;;;;;14831548356602;2021-12-01;;2023-03-03;;2023-08-05T07:13:21.243000+00:00;62c5b5f29b4741d365f51f77;fafa3b6c-8c65-4d5d-86d6-1f1bca9bf11e;;-0.569409;45.29116;95700;L'Houmeau;; +;U Express Grand-Fougeray;388067670;info@lumi-in.fr;Technic Elec;eses.bire@hapogys.fr;01 85 16 94 02;3C CLIM ST OUEN;FRS33PMB339811;FR*SOD*S*MB17*24*1*_*_;SAUVETERRE DE GUYENNE - PARKING GENDARMERIE;;RUE DU PONT BOUCHARD;17190;[-0.083812, 44.692291];;FRELCEAWKP;FR*SOD*E*MB33*25*1*2*_;;;;;;;;;;;;;;Mo-Fr 07:30-17:15, Sa 07:30-12:15;;;;;14853256029562;2021-08-19;;2022-04-26;;2023-08-05T07:13:20.867000+00:00;62c68f2b63821a34605e9fe3;cc5d199a-00e0-405b-938a-32df01185b64;;-0.083812;44.692291;94470;Le Château-d'Oléron;; +;U Express Oradour;216704635;jack.c@clubcolombier.com;LE BISTRO D'HUGO;dany.capemploi@gmail.com;01 41 35 40 00;VALLERES 1567;FRS33PMB339812;FR*SOD*S*MB17*23*1*_*_;SALLES - ALLEE DU CHAMP DE FOIRE;;ESPACE MICHEL CRÉPEAU;17093;[-0.867027, 44.550583];;FRELCEZJXQ;FR*SOD*E*MB33*26*1*2*_;;;;;;;;;;;;;;Mo-Fr 08:00–12:00,Mo-Fr 14:00–18:30,Sat 08:00-17:00;;;;;14824891339207;2021-08-18;;2023-02-07;;2023-08-05T07:13:20.465000+00:00;62c69482d24f673a6206d01d;55efa1fe-51e7-4c66-90fc-add6951f642f;;-0.867027;44.550583;78210;Les Mathes;; +;ULM Lozere;803410844;nbretton@chateaumentone.com;Mickael Auto;m.drif@autorecharge.fr;04 83 56 80 09;CHARGE 1558;FRS33PMB339912;FR*SOD*S*MB17*22*1*_*_;SAUVETERRE DE GUYENNE - PARKING CIMETIERE;;RUE DU PÈRE IGNACE;17225;[-0.088728, 44.694389];;FRELCE4H9H;FR*SOD*E*MB33*26*1*1*_;;;;;;;;;;;;;;Mo-Sun 06:00-22:00;;;;;14850940545569;2021-08-20;;2023-05-10;;2023-08-05T07:13:20.087000+00:00;62c6ba57f893208d377d1073;5f8606f0-853b-44a8-9ae0-f3f5b56e4d52;;-0.088728;44.694389;78170;Montendre;; +;Transdev Park Paris;501380570;contact@sundeveloppement.fr;Société SIPECC;infos@moulin-wantzenau.com;0483568009;HPSM BORNE 1 ET 2;FRS33PMB3311512;FR*SOD*S*MB17*21*1*_*_;SOULAC SUR MER - LAMELIE - 4 RUE DU 8 MAI;;RUE DE LA PART DES ANGES;17240;[-1.15, 45.484943];;FRELCEFCT2;FR*SOD*E*MB33*27*1*2*_;;;;;;;;;;;;;;Mo-Sun 07:00-19:00;;;;;14899855160908;2022-05-21;;2023-04-19;;2023-08-05T07:13:19.730000+00:00;62c6c0657e924ef6c89f759d;fe55f2a1-abcc-488d-9823-0b2f475ea39a;;-1.15;45.484943;78330;Chaniers;; +;Ungersheim;909073363;vestaolivier@yahoo.fr;JAV INVESTISSEMENT;contact@elec-econnect.fr;03568009;MAZIERES DE TOURAINE 15734 - Rue du Stade;FRS33PMB3311611;FR*SOD*S*MB17*1*1*_*_;TOULENNE - AVENUE DU 8 MAI 1945 - PARKING COMMERCES;;PARKING AVENUE DE PARIS;17086;[-0.260849, 44.55788];;FRELCE8JHH;FR*SOD*E*MB33*27*1*1*_;;;;;;;;;;;;;;Mo-Th 7:30-12:00,Mo-Th 13:15-18:00,Fr 7:30-12:00,Fr13:15-17:00;;;;;14898407982939;2022-05-24;;2022-11-05;;2023-08-05T07:13:19.075000+00:00;62c6c3d7bb0d97279738b7ec;e0074386-bd03-47a5-a0f7-0203567ea029;;-0.260849;44.55788;94270;Sainte-Marie-de-Ré;; +;Turing 22;433220761;gl.dossantos@outlook.fr;SIPECC;accueil@golf-wantzenau.fr;3 56 80 09;CGED LENS;FRS33PMB3311612;FR*SOD*S*MB17*7*1*_*_;SOULAC SUR MER - PARKING DE LA BALEINE;;RUE DES ÉCOLES;17360;[-1.126126, 45.514442];;FRELCEBCJ4;FR*SOD*E*MB33*28*1*2*_;;;;;;;;;;;;;;Mo-TH 8:00-12:00,Mo-TH 14:00-19:00,Fr 9:00-12:00,Fr14:00-18:00,Sa 09:00-12:00,Sa14:00-17:00;;;;;14829811745503;2023-01-11;;2023-01-18;;2023-08-05T07:13:18.749000+00:00;62c7ef9e3585190d3001ef1d;52e3507f-9f08-4ee6-89b9-0a570013a620;;-1.126126;45.514442;95250;Aigrefeuille-d'Aunis;; +;Transdev Park Services Bordeaux;200078111;cedric.genet@cielavillage.fr;SARL VAHE;contact@zeborne.com;0675389808;HU CHALLANS U LOCATION;FRS33PMB3311712;FR*SOD*S*MB17*6*1*_*_;TARGON - RUE DU POIDS PUBLIC/PLACE DU 11 NOVEMBRE;;PLACE DE VERDUN;17003;[-0.265181, 44.734566];;FRELCEX53T;FR*SOD*E*MB33*28*1*1*_;;;;;;;;;;;;;;Mo 8:30-12:00,Mo 14:00-18:00,Tu-Fr 8:00-12:00,Tu-Fr14:00-18:00,Sa 08:30-12:00,Sa14:30-17:30;;;;;50018324144297;2022-04-01;;2023-02-01;;2023-08-05T07:13:18.432000+00:00;62cd9b6ef269a1a93a803dbd;be7cd908-9985-47db-8913-e3dc97895326;;-0.265181;44.734566;95240;Gennevilliers;; +;Transdev Park St Quentin;830836599;sebastien_chevite@carrefour.com;FITP SARL;info@moulindelaboirie.fr;237840785;SONEPAR CONNECT MURET;FRS33PMB3311711;FR*SOD*S*MB17*5*1*_*_;SAINTE EULALIE - RUE DE LESTEY FLEURI;;RUE GAMBETTA PLACE JULES FERRY;92036;[-0.485241, 44.907875];;FRELCE4FYE;FR*SOD*E*MB33*29*1*2*_;;;;;;;;;;;;;;Mo-FR 8:00-12:00,Mo-FR 14:00-18:00;;;;;14880173540520;2022-04-06;;2022-11-18;;2023-08-05T07:13:18.192000+00:00;62c7fc63de26270b971322f2;2cc70fac-6b5e-4753-ba5c-002d32ff4eef;;-0.485241;44.907875;95600;Mitry-Mory;; +;Transport Billy;799445309;claire.davidrachel@agaphone.com;SAS DE L'AILETTE;sud-hotel-alsace@orange.fr;+31887755450;Aire de Wancourt Est;FRS33PMB3311811;FR*SOD*S*MB17*4*1*_*_;SAINT-PHILIPPE-DAIGUILHE - CENTRE BOURG;;RUE DE LA BOULINE PLACE GAMBETTA;77294;[-0.031379, 44.914112];;FRELCEF3WK;FR*SOD*E*MB33*29*1*1*_;;;;;;;;;;;;;;Mo-Fr 8:00-12:00,Mo-Fr 14:00-18:00;;;;;14805643873496;2022-03-15;;2022-11-14;;2023-08-05T07:13:17.909000+00:00;62c82d24921b05d6864b0e82;70c9e906-e05b-4929-bc9d-d2c518656f88;;-0.031379;44.914112;93140;Margency;; +;Treffert;523903433;steniole@wanadoo.fr;sa les broyers;garage.lefebvre62560@orange.fr;37792050403;COMMUNE NOUVELLE D'ARROU - Place Rillé - 137295;FRS33PMB3311812;FR*SOD*S*MB17*3*1*_*_;SAINT-GENES-DE-CASTILLON - CENTRE BOURG;;PLACE DU CHÂTEAU DEAU;95369;[-0.063501, 44.898205];;FRELCE54RG;FR*SOD*E*MB33*30*1*2*_;;;;;;;;;;;;;;MO-FR 08:00-12:00, MO-FR 14:00-18:00,TH 08:00-19:00;;;;;14840520859240;2022-04-29;;2023-04-12;;2023-08-05T07:13:17.600000+00:00;62cbdcf49ab2c46f624923e8;6b22b1dc-7a6c-41ae-970d-51c24f15ce08;;-0.063501;44.898205;77177;Vaires-sur-Marne;; +;Châteauform de Crécy la Chapelle;333284743;vincent.lehmann@lhotelparticulier.fr;evzen (SMEG Développement);thierry.marchisio@pilotagedunkerque.com;0 970 830 213;SONEPAR CONNECT DREUX;FRS33PMB3311912;FR*SOD*S*MB17*2*1*_*_;SAINTE EULALIE - RUE EUGENE COLETTE;;PLACE RICHELIEU;77479;[-0.473356, 44.908749];;FRELCEDU5C;FR*SOD*E*MB33*30*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00, 14:00-17:00;;;;;14812879762446;2022-05-05;;2023-03-14;;2023-08-05T07:13:17.144000+00:00;62cc09bddc3b0af335e3b941;bdbab65f-e0e6-4e19-98c8-5c0cdab7751d;;-0.473356;44.908749;95220;Bièvres;; +;Total Réunion;752044479;sgrave@theoriginals-foix.fr;CHAPITEAUX SERVICE;contact@ubitricity.com;0788984775;CHÂTEAU RENAULT 1551 - Avenue du Maine;FRS33PMB3311911;FR*SOD*S*MB17*26*1*_*_;SAINTE EULALIE - PARKING MEDIATHEQUE;;PLACE JEAN FLIPPI;91064;[-0.473999, 44.904659];;FRELCE8Z9R;FR*SOD*E*MB33*31*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00,Mo Fr 14:00-17:00;;;;;Compagnie des ports (34186424972394);2022-03-10;;2023-05-27;;2023-08-05T07:13:16.763000+00:00;62cc11de4cbd0f5568fb5b92;647f7d69-4563-402c-8d97-4e542ae08aca;;-0.473999;44.904659;95120;Sèvres;; +;Territoires Charente;531181220;minotti1962@outlook.com;Kotelon;vgaillon@lidl.fr;0237840785;Montélimar Est;FRS33PMB3312012;FR*SOD*S*MB17*12*1*_*_;SAINT-YZAN-DE-SOUDIAC - PARKING MAIRIE;;PLACE DES LIONS;92072;[-0.410028, 45.139877];;FRELCELC6U;FR*SOD*E*MB33*31*1*2*_;;;;;;;;;;;;;;Mo-Th 08:00-22:00;;;;;50037446863102;2022-06-07;;2023-01-12;;2023-08-05T07:13:16.363000+00:00;62cc48b4dcecbe95c212c559;8c497d89-19f3-433a-b7d9-46ecffd973c9;;-0.410028;45.139877;95530;Maisons-Alfort;; +;Thermes de Vernet les Bains;301213476;contact@camping-portedesvosges.com;web services advenir;contact@properphi.com;03 84 87 64 40;FONDETTES 1376 - Gustave Eiffel;FRS33PMB3312011;FR*SOD*S*MB17*11*1*_*_;SAINTE COLOMBE - PARKING MAIRIE;;PLACE DES MARRONNIERS;94046;[-0.06199, 44.879169];;FRELCEYRJL;FR*SOD*E*MB33*32*1*2*_;;;;;;;;;;;;;;Mo-Th 08:00-19:00;;;;;Compagnie des ports (14814471717567);2022-04-07;;2022-12-30;;2023-08-05T07:13:16.019000+00:00;62cd41bb10b689853bcb9a44;87e5a1f3-10b9-463d-8d5e-8d1e2fc4ad17;;-0.06199;44.879169;95740;Issy-les-Moulineaux;; +;Thionville, Aire de covoiturage de Buchel;901360602;contact@car2plug.fr;Rencontre-handi;contacta@properphi.com;04 82 79 82 82;Auzouer de Touraine - 53927 - Pl Général Leclerc;FRS33PMB3312111;FR*SOD*S*MB17*10*1*_*_;SAINT-CHRISTOPHE-DE-DOUBLE - CENTRE BOURG;;ZI DE LORMEAU DE PIED;92040;[0.014856, 45.079998];;FRELCEVFTR;FR*SOD*E*MB33*32*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa-Su 09:00-12:00,Sa-Su 14:00-17:30;;;;;14838784245870;2022-03-08;;2023-04-04;;2023-08-05T07:13:15.806000+00:00;62cd64e3007b5abb8634e54a;ffe4a3d5-0e14-4836-a50c-db4b427a7852;;0.014856;45.079998;91420;Saint-Cloud;; +;Thionville, Parking P+R Metzange;907612352;contact@hepoitiers.com;Le Manoir de l'Isle;contact@hotel-le-bon-cap.com;03.68.78.14.35;SONEPAR CONNECT CAUDEBEC;FRS33PMB3312112;FR*SOD*S*MB17*9*1*_*_;SAINT-YZAN-DE-SOUDIAC - RUE PIERRE SEMARD;;AVENUE CHARLES DE GAULLE;92064;[-0.392749, 45.140446];;FRELCEAQAG;FR*SOD*E*MB33*17*1*2*_;;;;;;;;;;;;;;Mo-Su 10:00-01:00;;;;;14839363120409;2021-12-22;;2022-12-19;;2023-08-05T07:13:15.496000+00:00;62cd68a4b42f9cb9a821ec0f;e3f8e8ac-9920-4e79-8d9f-43b08a40545c;;-0.392749;45.140446;95170;Bois-Colombes;; +;Tohmelec;333245181;squashsaintetienne@icloud.com;PROVIRIDIS;contact@hoteltrecelin.com;0610166210;CHATEAUNEUF-sur-Cher - Parking La Poste - 202094;FRS33PMB3312212;FR*SOD*S*MB17*8*1*_*_;SALLEBOEUF - CENTRE BOURG - AV DE LA TOUR;;PLACE DU CHÂTEAU;92009;[-0.396709, 44.842957];;FRELCEB6DT;FR*SOD*E*MB33*16*1*1*_;;;;;;;;;;;;;;Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:01;;;;;14823878316187;2021-12-16;;2022-07-05;;2023-08-05T07:13:15.139000+00:00;62cd6c41e038fd1bb9b7100c;77350255-a5d9-4445-92a9-4035ec603262;;-0.396709;44.842957;95400;Meudon;; +;Châteauform Saint Just;810682740;itmvaureal@gmail.com;Societe moderne d'isolation;jerome.desegogne@fulton.fr;247682000;SAINT AVERTIN 1442;FRS33PMB3312211;FR*SOD*S*MB17*60*1*_*_;IZIVIA | STATION ORLY;;RUE DE LÉGLISE;92048;[2.365344, 48.732587];;FRELCEGMKK;FR*SOD*E*MB33*65*1*2*_;;;;;;;;;;;;;;Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-18:02;;;;;14854269052902;2022-01-03;;2021-07-23;;2023-08-05T07:13:14.814000+00:00;62cd75e2430b238845d8e32b;bc8e96a7-46e1-45f8-a562-9eb742d56c96;;2.365344;48.732587;95410;Boulogne-Billancourt;; +;Châteauform Romainville;829417435;blagnac@fasthotel.com;ABSOLUT CONCEPT;laconciergeriedisa@gmail.com;33186472690;SONEPAR CONNECT AURILLAC;FRS33PMB3312311;FR*SOD*S*MB17*58*1*_*_;IZIVIA | AIRE DE COVOITURAGE DE VALENCE NORD;;PLACE CHARLES DE GAULLE;92012;[4.888315, 44.966278];;FRELCEPPQA;FR*SOD*E*MB33*15*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-19:00;;;;;14855426796573;2022-02-18;;2022-12-09;;2023-08-05T07:13:14.382000+00:00;62cd96939047bf0b4fcfdf8f;e211803c-a75a-4a2f-b8df-ae9dac803439;;4.888315;44.966278;47180;Viroflay;; +;Toul;418935680;d.bellavia@mairie-herserange.fr;EDF;montpellierlescres@ixina.com;0473848307;CGED PHOCEA;FRS33PMB3312411;FR*SOD*S*MB17*56*1*_*_;SAINT GEORGES DOLERON - CHERAY PARKING GODEAU;;PARKING DE LA MAIRIE;78686;[-1.351954, 45.972849];;FRELCEYEK9;FR*SOD*E*MB33*10*1*1*_;;;;;;;;;;;;;;Mo-Th 08:00-03:00,Fr-Sa 08:00-04:00,Su 08:00-03:00;;;;;14897973828440;2021-08-25;;2021-06-29;;2023-08-05T07:13:13.965000+00:00;62cd9911c0f97379d7b2213c;c9635e73-3a09-4e32-814c-5a83c4315bed;;-1.351954;45.972849;47300;Enghien-les-Bains;; +;Toulouse Logistique Urbain (TLU) public;259000966;parcleduc@orange.fr;Bénédictines du Sacré-Coeur de Montmartre;beziers@ixina.com;+‭33 1 41 44 70 47‬;SONEPAR CONNECT FOIX;FRS33PMB3312412;FR*SOD*S*MB17*55*1*_*_;VAUX SUR MER;;PASSAGE DE LA CURE;95210;[-1.060593, 45.64539];;FRELCE2LBE;FR*SOD*E*MB33*10*1*2*_;;;;;;;;;;;;;;Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:30;;;;;14843704653345;2021-08-23;;2021-06-02;;2023-08-05T07:13:13.580000+00:00;649c3a06a205e081ce3181eb;217e49e4-6637-45c2-9e57-e274e1b9db05;;-1.060593;45.64539;47000;Châtillon;; +;Université de Liège Public;419855127;nathalie.pilleniere@campilo.com;SAS CHATEAU DE MEMANAT;montpellierstjean@ixina.com;0624854294;LE LIEGE 1268;FRS33PMB3312511;FR*SOD*S*MB17*54*1*_*_;LE BOIS PLAGE EN RE - RUE DES BARGOTTES PARKING LAZZATE;;PLACE DES MARTYRS;92020;[-1.392039, 46.183592];;FRELCEVQYU;FR*SOD*E*MB33*9*1*2*_;;;;;;;;;;;;;;Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:35;;;;;14857597562608;2022-02-25;;2021-07-27;;2023-08-05T07:13:13.316000+00:00;64538cd38a2ebfd178b92b4e;ae212269-05b7-422a-a09b-bb726c23ff2f;;-1.392039;46.183592;47310;Vanves;; +;Clinique le Val d'Orb;419855131;campinglapeyrugue@gmail.com;SARL LES BAINS DE ROYAN;claude.lebrize@dropnplug.fr;33423100350;CGED AGEN;FRS33PMB3312512;FR*SOD*S*MB17*53*1*_*_;SAINT GENIS DE SAINTONGE - RUE DU PONT BOUCHARD;;RUE MARC GUYONNET;92075;[-0.568038, 45.480921];;FRELCEHCQC;FR*SOD*E*MB33*9*1*1*_;;;;;;;;;;;;;;Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:33;;;;;14852243004001;2022-01-18;;2021-08-30;;2023-08-05T07:13:12.939000+00:00;645e3dbdd57cf2918391a81e;7af40d69-3e11-4e6d-9267-9a3bf17b91ca;;-0.568038;45.480921;47360;Marcoussis;; +;Clinique de l'Union;419855134;patrick.paradou@gmail.com;alterna energie;contact@chartonvachet.fr;0450345512;Aire de la Plaine du Forez;FRS33PMB3312612;FR*SOD*S*MB17*52*1*_*_;DOMPIERRE SUR MER - ESPACE MICHEL CREPEAU;;RUE YVES DU MANOIR;91363;[-1.064226, 46.188736];;FRELCE3Z9Y;FR*SOD*E*MB33*8*1*1*_;;;;;;;;;;;;;;Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:34;;;;;50038604611421;2020-08-04;;2022-10-13;;2023-08-05T07:13:12.675000+00:00;645e3534ca182ab025971d1c;3bad8d82-e160-458a-9197-1938d85f4f4f;;-1.064226;46.188736;47480;Croissy-sur-Seine;; +;Clinique vétérinaire du Pigeonnier;419855133;contact@campingledouzou.com;La jardinerie d'aveze sarl;secretariat.technic@orange.fr;33975891501;Nogent-le-Rotrou - Place St Pol -128531;FRS33PMB3312611;FR*SOD*S*MB17*27*1*_*_;SAINT MARTIN DE RE - RUE DU PERE IGNACE;;ROUTE DE SAINT-PALAIS;78190;[-1.367359, 46.200984];;FRELCEPADV;FR*SOD*E*MB33*8*1*2*_;;;;;;;;;;;;;;Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:32;;;;;14811143148589;2020-07-08;;2022-10-17;;2023-08-05T07:13:12.272000+00:00;645bb6e50a5d5ad508a4ce9f;7c64c388-3fcb-41ac-a49f-31a43bae3a8b;;-1.367359;46.200984;47130;Wissous;; +;Coeur de Garonne;419855132;info@yellohvillage-la-plaine.com;ENNESSER ET FILS;contact@porte90.fr;33369246732;LE FRESNE BORNE 1;FRS33PMB3312711;FR*SOD*S*MB17*51*1*_*_;ARCHIAC - RUE DE LA PART DES ANGES;;RUE JEAN MOULIN;78650;[-0.303649, 45.527902];;FRELCEMUNB;FR*SOD*E*MB33*7*1*1*_;;;;;;;;;;;;;;Mo-We 08:00-03:00,Th 08:00-03:30,Fr-Sa 08:00-04:00,Su 08:00-03:31;;;;;14850506391311;2020-10-01;;2022-10-18;;2023-08-05T07:13:11.852000+00:00;645a3236bf50478590245df5;c7a2a861-c66e-4569-9a5b-9a8f20700290;;-0.303649;45.527902;47140;Montsoult;; +;Colombes Village (SMA);419855130;VINCENT@LEPINARELLO.COM;VIRTA;contact@lebistrodhugo.com;33187210891;SONEPAR CONNECT CABESTANY;FRS33PMB3312712;FR*SOD*S*MB17*50*1*_*_;ROYAN - PARKING AVENUE DE PARIS;;RUE DE LA ROCHELLE;91689;[-1.050769, 45.62793];;FRELCEZ5Q3;FR*SOD*E*MB33*7*1*2*_;;;;;;;;;;;;;;Mo-Sa 07:30-19:30;;;;;14884804507600;2020-08-05;;2022-06-06;;2023-08-05T07:13:11.501000+00:00;64576c2b147546c59e60402d;3cc89878-5be8-4910-b337-733e7b916d7f;;-1.050769;45.62793;47600;Pierrelaye;; +;Clinique de l'Anjou;419855129;philippeponton.soleilvivarais@gmail.com;F.B. AUTOMOBILES;clients@gazdebordeaux.fr;0681167047;CGED PARIS 18;FRS33PMB3312811;FR*SOD*S*MB17*49*1*_*_;MIRAMBEAU - RUE DES ECOLES;;BD GEORGES CLÉMENCEAU GARE;95430;[-0.569505, 45.373002];;FRELCEPTJD;FR*SOD*E*MB33*6*1*1*_;;;;;;;;;;;;;;Mo-Fr 07:45-12:15,Mo-Fr 13:30-17:30;;;;;14879884104321;2021-02-28;;2022-06-21;;2023-08-05T07:13:11.182000+00:00;6454c64b926276134c2af8f7;d3c0074f-ae19-47ce-ad96-e3af3f3d195d;;-0.569505;45.373002;47400;Saint-Leu-la-Forêt;; +;Clinique ELSAN-Fontvert;419855128;gael@ms-vacances.com;Thibal Distribution;mickaelauto@wanadoo.fr;0232398200;SONEPAR CONNECT LA ROCHELLE 2;FRS33PMB3312812;FR*SOD*S*MB17*48*1*_*_;GEMOZAC - PLACE DE VERDUN;;AVENUE DES CONGRÈS;95488;[-0.678903, 45.568583];;FRELCEY2KR;FR*SOD*E*MB33*6*1*2*_;;;;;;;;;;;;;;Mo-Sa 09:00-12:00,Mo-Sa 14:00-18:00;;;;;14845296548237;2021-07-19;;2022-07-28;;2023-08-05T07:13:10.922000+00:00;64493602aee955d13a3edde5;44140cac-6f11-430e-8c39-b47de4a253c3;;-0.678903;45.568583;47380;Montigny-lès-Cormeilles;; +;Clinique Rhéna;791318157;HA314-GM@accor.com;Ekoplug;contact@sipecc.fr;04 50 69 47 52;PANORAMA 360 HOTEL & SPA 2;FRS33PMB3312911;FR*SOD*S*MB17*61*1*_*_;SAINT AIGULIN - RUE GAMBETTA PLACE JULES FERRY;;PLACE DE LEUROPE RUE DE LÉGLISE;95563;[-0.013245, 45.157408];;FRELCEK2QQ;FR*SOD*E*MB33*5*1*2*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:01;;;;;50055825641826;2021-07-20;;2021-11-16;;2023-08-05T07:13:10.426000+00:00;64479c0c1c48b9593b72b54f;352fd18d-f6f5-4c08-bdb6-b9bac01c1aa8;;-0.013245;45.157408;47250;Le Plessis-Bouchard;; +;ComCom du Provinois;200091049;cabaretpv@gmail.com;ENERGEM;peggy.orssaud@jav.fr;0474808989;SONEPAR CONNECT ROUEN SUD;FRS33PMB3312912;FR*SOD*S*MB17*74*1*_*_;SAINT PIERRE DOLERON - RUE DE LA BOULINE PLACE GAMBETTA;;ALLÉE DES SPORTS;95424;[-1.30677, 45.941801];;FRELCEQW4G;FR*SOD*E*MB33*5*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:02;;;;;14846164855960;2021-07-15;;2021-05-05;;2023-08-05T07:13:09.836000+00:00;644694e13aa848e381de92f5;0a56986a-dd10-44f5-b029-6672435e1415;;-1.30677;45.941801;47450;Sannois;; +;Communauté de communes de Combrailles;492041066;niels@vigiers.com;Daltoner Caen;eknacat@hotmail.fr;0390556161;Rousset;FRS33PMB3311511;FR*SOD*S*MB17*73*1*_*_;MATHA - PLACE DU CHATEAU DEAU;;RUE DES ARTISANS;95491;[-0.31735, 45.869989];;FRELCEEK2G;FR*SOD*E*MB33*4*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:30;;;;;14867293656136;2021-09-03;;2021-04-01;;2023-08-05T07:13:09.447000+00:00;6442832a390ab7a106977cb3;c590dc5e-9b36-46a2-af29-279e17dda17d;;-0.31735;45.869989;47110;Taverny;; +;Communauté d'Agglomération de Forbach;317191617;r.bartoli@arinellabianca.com;Grunzke Beate;sas.fitp@yahoo.com;0388962573;SONEPAR CONNECT CHAUMONT;FRS33PMB3311411;FR*SOD*S*MB17*72*1*_*_;SAUJON - PLACE RICHELIEU;;LES BUJOLIERS LAC;95582;[-0.925464, 45.676244];;FRELCEHLCX;FR*SOD*E*MB33*4*1*2*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00,Mo-Fr 13:30-19:00,Sa 09:00-12:00,Sa 14:00-18:00;;;;;14852098286976;2021-10-08;;2022-01-10;;2023-08-05T07:13:08.439000+00:00;64413d1f9ffe73fe031df93f;b73e7f76-39ed-49df-8ed9-580c85317e24;;-0.925464;45.676244;47200;Ville-d'Avray;; +;Comcom Hanau - La Petite Pierre;329295786;camping-des-dunes@orange.fr;Daltoner Vire;ronan.pieyns@ailette.fr;0683805728;CGED ALES;FRS33PMB3311412;FR*SOD*S*MB17*71*1*_*_;PUILBOREAU - PLACE JEAN FLIPPI;;RUE DE VERDUN PLACE DES PLATANES;95607;[-1.116179, 46.185988];;FRELCETCHJ;FR*SOD*E*MB33*3*3*1*_;;;;;;;;;;;;;;Mo-Th 08:00-12:00,14:00-18:00,Fr 08:00-12:00,14:00-17:00,Sa 08:00-12:00;;;;;14861649661197;2021-09-27;;2020-07-14;;2023-08-05T07:13:07.807000+00:00;64411c91be7d69d6ea378da0;33448d85-0bed-48ab-9426-77ca15f2d9fe;;-1.116179;46.185988;47520;Bessancourt;; +;Comcom Mad et Moselle public;528932627;contact@hotel-restau-archambeau.com;ICS Scgilthigheim;pcoquard@chateaudesbroyers.fr;0608471175;CGED METZ;FRS33PMB3310612;FR*SOD*S*MB17*70*1*_*_;RIVEDOUX - PLACE DES LIONS;;RUE DU PROFESSEUR LANGEVIN;95051;[-1.276077, 46.159822];;FRELCEA65G;FR*SOD*E*MB33*3*3*2*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00,14:00-18:00,Sa 08:00-12:00;;;;;14893053423753;2021-12-02;;2022-12-13;;2023-08-05T07:13:07.436000+00:00;643fb8e478ccea8fb1aa1f58;5f41d0bf-22d4-49e5-93a8-d6a3e305263a;;-1.276077;46.159822;47430;Franconville;; +;Valthoparc;320342975;b.gilbert@campeole.com;FReshmile;contact@evzen.com;0384259552;JANUS RUOMS BORNE 1;FRS33PMB339911;FR*SOD*S*MB17*69*1*_*_;PONS - PLACE DES MARRONNIERS;;ROUTE DE MONTENDRE;92077;[-0.548559, 45.577977];;FRELCEXUC3;FR*SOD*E*MB33*3*1*2*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-19:00,Sa 08:00-12:00,Sa 14:00-18:00;;;;;14843994088915;2021-10-05;;2020-08-27;;2023-08-05T07:13:07+00:00;6461febac39ad43f601c5669;e6205cb1-004e-415d-946f-e15c91441a4b;;-0.548559;45.577977;47390;L'Isle-Adam;; +;Valmotors;213105695;info@laplagefleurie.com;Ambroise Avocat;chapiteaux-service@wanadoo.fr;0 805 02 14 80;CGED CAGNES;FRS33PMB3310012;FR*SOD*S*MB17*68*1*_*_;SAINTES - ZI DE LORMEAU DE PIED;;AVENUE DE LESTUAIRE;95060;[-0.663373, 45.747971];;FRELCE6QNX;FR*SOD*E*MB33*3*1*1*_;;;;;;;;;;;;;;Mo-Th 08:00-12:00,Mo-Th 14:00-19:00,Fr 08:00-19:00,Sa 09:00-12:00;;;;;14818234318001;2020-07-07;;2021-06-01;;2023-08-05T07:13:06.619000+00:00;64620284064fdafcab9e2b6c;220b3f3c-6c30-4f6e-b2fe-1843cf94dc5b;;-0.663373;45.747971;47230;Mandres-les-Roses;; +;Vallée de Villé;527529119;info@hotel-compostelle-sarlat.com;themis;hotelrestaurant@laerodrome.com;969324747;SONEPAR CONNECT GONESSE;FRS33PMB3310011;FR*SOD*S*MB17*67*1*_*_;SAINT-AGNANT - AVENUE CHARLES DE GAULLE;;ROUTE DE TALMONT;95252;[-0.961041, 45.870702];;FRELCEJVMV;FR*SOD*E*MB33*2*1*2*_;;;;;;;;;;;;;;Mo 13:00-18:30,Tu-Fr 09:00-12:00,Tu-Fr 13:30-18:30,Sa 08:00-12:00;;;;;14868306679910;2020-10-21;;2022-09-15;;2023-08-05T07:13:06.351000+00:00;646215d07e91781c03e6bbee;1b331604-d99a-4c6e-8551-a568b2deba9d;;-0.961041;45.870702;47410;Carrières-sur-Seine;; +;Vallée Carburant, Castres Equipement;840017446;VPEYRUSE@ORANGE.FR;LEGA;marc.kotelon@montblanc-hotel.fr;0472104595;BLERE 1387 - Camping;FRS33PMB3310112;FR*SOD*S*MB17*66*1*_*_;SURGERES - PLACE DU CHATEAU;;RUE DE LA PROVIDENCE;95313;[-0.752427, 46.104744];;FRELCEWJ5P;FR*SOD*E*MB33*2*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00,14:00-18:00,Sa 09:00-12:00,14:00-19:00;;;;;14821707547900;2020-08-17;;2022-09-16;;2023-08-05T07:13:05.937000+00:00;646499eb1e5c4fae583e42f4;b4ecdb0a-fc4f-442d-84d5-56d980b34f8b;;-0.752427;46.104744;47340;Colombes;; +;VOLVO CAP NORD;215901687;agens@campeole.com;OCR MAINTENANCE ELECTRONIQUE;advenir@avere-France.org;186476800;CGED AIX;FRS33PMB3310111;FR*SOD*S*MB17*65*1*_*_;BEURLAY - PLACE DE LA MAIRIE;;AVENUE DE LA RÉPUBLIQUE;94047;[-0.838119, 45.8611];;FRELCENPQG;FR*SOD*E*MB33*1*1*2*_;;;;;;;;;;;;;;Mo-Fr 07:45-12:30,Mo-Fr 13:30-19:00,Sa 08:30-12:00,Sa 14:00-18:00;;;;;VOIR ST;2021-09-23;;2022-07-27;;2023-08-05T07:13:05.575000+00:00;6469c1d397296fef6320e881;ba5b09fa-e6af-4ecc-bd9b-e7b94ea2eae0;;-0.838119;45.8611;47500;Livry-Gargan;; +;Valauto Lambersart borne accélérée;449926302;info@camping-viginet.com;Acelec Charge;aspad71@orange.fr;0547745020;CERE LA RONDE 1371 - Château;FRS33PMB3310212;FR*SOD*S*MB17*64*1*_*_;TONNAY CHARENTE - RUE DE LEGLISE;;AVENUE DE PARIS;78124;[-0.892793, 45.943879];;FRELCE2Y3R;FR*SOD*E*MB33*1*1*1*_;;;;;;;;;;;;;;Mo-Th 08:00-12:00,Mo-Th 13:30-17:30,Fr 09:00-12:00,Fr 13:30-17:30;;;;;14847467317415;2023-02-16;;2021-05-07;;2023-08-05T07:13:05.162000+00:00;646dab28a94bcc6c7d1265c2;38a83333-cdbc-4fb6-af30-2dcf55fc92c4;;-0.892793;45.943879;47150;Le Raincy;; +;Valauto Lambersart borne rapide;417948882;vdelmon@andretriganogroupe.com;MAS DES OLIVES;contact@manoirdelisle.com;0608639398;CHANCEAUX SUR CHOISILLE 1373;FRS33PMB3310211;FR*SOD*S*MB17*63*1*_*_;ROYAN - PLACE CHARLES DE GAULLE;;COURS DES POILUS;92025;[-1.029349, 45.624614];;FRELCEA3WA;FR*SOD*E*MB33*12*1*2*_;;;;;;;;;;;;;;Mo-Sa 07:30-19:00;;;;;14808827662520;2023-02-08;;2021-06-16;;2023-08-05T07:13:04.411000+00:00;646f27d3b0c109e9c30a8c81;70d69fda-920b-4e19-aac0-5cb5fb96066a;;-1.029349;45.624614;47800;Les Pavillons-sous-Bois;; +;Valauto Roncq;800654774;BERTRAND@MS-VACANCES.COM;Aeroports de lyon;novabio.labo@laposte.net;0490765190;SONEPAR CONNECT VILLENEUVE-LOT;FRS33PMB3310312;FR*SOD*S*MB17*62*1*_*_;PERIGNY - PARKING DE LA MAIRIE;;RUE DU CENTRE;93046;[-1.094403, 46.152379];;FRELCECPC6;FR*SOD*E*MB33*12*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sa 09:00-12:00,Sa 14:00-17:00;;;;;14867583091746;2023-02-14;;2021-02-24;;2023-08-05T07:13:04.138000+00:00;646f72ae21052108202eb172;6552bed0-5e13-49d8-a06f-b2944ad01670;;-1.094403;46.152379;47170;Domont;; +;Cité des Climats et des Vins;480169119;amarot@campeole.com;Autel Netherlands B.V. | FR*AUT;hello@v-gas.fr;0557980830;SAINT CHRISTOPHE SUR LE NAIS 1383;FRS33PMB3310311;FR*SOD*S*MB17*47*1*_*_;DOLUS - PASSAGE DE LA CURE;;RUE SAMUEL CHAMPLAIN;93062;[-1.265068, 45.91099];;FRELCE4XHD;FR*SOD*E*MB33*13*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:30-12:00,Mo-Fr 13:30-19:00,Su-Sa 09:00-18:00;;;;;14882489024282;2023-02-17;;2021-10-29;;2023-08-05T07:13:03.838000+00:00;6475ded7edd5f9b39797db26;d1130269-9992-419f-9909-1e816d57acbb;;-1.265068;45.91099;47550;Courtry;; +;Citivia Sélestat;785665126;c.massarin@campeole.com;WAAT SAS | FR*WA3;emilio@electromaps.com;0558090404;IRVE CAGPS ECO PEPINIERE 3;FRS33PMB3310411;FR*SOD*S*MB17*33*1*_*_;SAINT JEAN DANGELY - PLACE DES MARTYRS;;RUE DES PÊCHEURS;93057;[-0.517812, 45.94568];;FRELCEFUCS;FR*SOD*E*MB33*13*1*2*_;;;;;;;;;;;;;;Mo-Fr 24/24,Sa-Su 08:00-21:00;;;;;14860491918187;2023-04-03;;2020-12-22;;2023-08-05T07:13:03.498000+00:00;64760863654d8c6f40a6228d;560395b4-9034-4e04-9ba2-db3ac3246dd1;;-0.517812;45.94568;47440;Villeneuve-la-Garenne;; +;City Saone;478846231;lchampion@campeole.com;WAAT SAS | FR*WA1;mmartignoni@smiso.com;0558830083;LAMBLORE - Le Plessis -176251;FRS33PMB3310412;FR*SOD*S*MB17*37*1*_*_;SAINT DENIS DOLERON - RUE MARC GUYONNET;;PLACE DU CHAMP DE FOIRE;95199;[-1.378539, 46.027521];;FRELCEG23W;FR*SOD*E*MB33*14*1*2*_;;;;;;;;;;;;;;Mo-Fr 07:00-17:30;;;;;14850506391535;2022-12-14;;2019-12-10;;2023-08-05T07:13:03.115000+00:00;64788c36f561afcee744b74a;c19b43f1-8708-41f7-89da-9a8270096252;;-1.378539;46.027521;47160;Mériel;; +;Cité du train - Mulhouse;442767026;sophie@interlude.fr;WAAT SAS | FR*WA4;duquesne@absolutconcept.com;0565102200;SONEPAR CONNECT THIONVILLE;FRS33PMB3310511;FR*SOD*S*MB17*36*1*_*_;SAUJON - PARKING GARE SNCF;;RUE DU COCA;77139;[-0.929732, 45.666839];;FRELCE8T9J;FR*SOD*E*MB33*14*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:30-16:30;;;;;14824746622909;2023-01-09;;2021-03-23;;2023-08-05T07:13:02.759000+00:00;6478bb590d4fca5477e6799b;50f3a7eb-a2a5-4b52-a46b-6b466775bb8f;;-0.929732;45.666839;47320;Béthemont-la-Forêt;; +;Clinique Château de Vernhes;822405973;Philippe.Zimmerer@wurth.fr;WAAT SAS | FR*W11;rcgc@edf.fr;0556827837;SUPERU PLOUARZE BORNE 2;FRS33PMB3310512;FR*SOD*S*MB17*35*1*_*_;SAINT SULPICE DE ROYAN - ROUTE DE SAINT-PALAIS;;AV CAMILLE PELLETAN LES THERMES;92078;[-1.01114, 45.67263];;FRELCER56Q;FR*SOD*E*MB33*15*1*2*_;;;;;;;;;;;;;;Mo-Fr 08:00-20:00;;;;;14837047633139;2023-01-31;;2022-08-18;;2023-08-05T07:13:02.495000+00:00;64799a4b25823abc2bd21f33;71df204a-fb26-4958-aff8-d52c41ef72b2;;-1.01114;45.67263;47220;Presles;; +;Citeos Cayenne;843380148;s.moretto@groupemoretto.com;WAAT SAS | FR*W10;economatbscm@orange.fr;0630861420;CGED CHENNEVIÈRES;FRS33PMB3310611;FR*SOD*S*MB17*34*1*_*_;LA FLOTTE EN RE - RUE JEAN MOULIN;;RUE DU CHÂTEAU ZONE DES MORINES;95039;[-1.33143, 46.19102];;FRELCEDMZ2;FR*SOD*E*MB33*33*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-17:00,Th 08:00-17:00;;;;;14855426796136;2023-02-07;;2022-08-31;;2023-08-05T07:13:02.194000+00:00;643825a5fdbe873e3a437cfc;9a9e3f62-bc28-4dee-8adc-c0f356221b5c;;-1.33143;46.19102;47330;Parmain;; +;Citeos Réunion - Siège Sainte Clotilde;332944032;franck.legardeur@zeenco.tech;WAAT SAS | FR*WA6;info@chateaudememenat.com;0389490910;SONEPAR CONNECT ST-AUNES;FRS33PMB3311311;FR*SOD*S*MB17*32*1*_*_;SAINT ROGATIEN - RUE DE LA ROCHELLE;;PARKING HAUT RILLON;95392;[-1.06977, 46.14952];;FRELCE8BXT;FR*SOD*E*MB33*33*1*2*_;;;;;;;;;;;;;;Mo-Sa 10:00-20:00;;;;;14828364565086;2023-03-01;;2022-09-24;;2023-08-05T07:13:01.936000+00:00;64381e4f26d77a785e5e993c;d368f62a-6184-4132-9894-54e24ade1893;;-1.06977;46.14952;47260;Puiseux-en-France;; +;Citeos Val de Saône;802393371;Cedric.Bonhomme@wurth.fr;WAAT SAS | FR*WA5;svp.maroquinerie@hotmail.fr;0450970432;SUPER CHARGEUR 1414 - CHÂTEAU RENAULT A10;FRS33PMB3310711;FR*SOD*S*MB17*38*1*_*_;ROYAN - BD GEORGES CLEMENCEAU GARE;;RÉSIDENCE DES ORMEAUX;95061;[-1.018217, 45.62523];;FRELCEVCZ7;FR*SOD*E*MB33*34*1*1*_;;;;;;;;;;;;;;Mo-Fr 09:00-12:00,Mo-Fr 14:00-19:00;;;;;14811722020409;2023-03-03;;2022-12-04;;2023-08-05T07:13:01.626000+00:00;64381ccf23fe36c97d25114b;c2df9743-7d15-4c0b-9b8d-005088b9d855;;-1.018217;45.62523;47700;Vaujours;; +;Territoire de Belfort;314481250;contact.marcotte@orange.fr;evZen | FR*EVZ;electricite@alterna-energie.fr;0450732412;SONEPAR CONNECT ETAMPES;FRS33PMB3310712;FR*SOD*S*MB17*31*1*_*_;ROYAN - AVENUE DES CONGRES;;PLACE JEAN NOEL DE LIPKOWSKI;95504;[-1.033112, 45.620421];;FRELCEETW9;FR*SOD*E*MB33*34*1*2*_;;;;;;;;;;;;;;Mo-Sa 09:00-18:30;;;;;14841678604506;2023-03-16;;2022-07-20;;2023-08-05T07:13:01.312000+00:00;642559fb821acfbf9a24cfa9;2c874af7-294e-4a89-8663-1b71cad07192;;-1.033112;45.620421;47240;Puteaux;; +;Super U Montluel;244500203;dulamon.auto@orange.fr;Atlante | FR*ATL;contact@jardinerieaveze.fr;184605641;CERE LA RONDE1369 - Salle Socioculturel;FRS33PMB3310812;FR*SOD*S*MB17*30*1*_*_;ECHILLAIS - PLACE DE LEUROPE RUE DE LEGLISE;;PLACE DE LA GARE;95480;[-0.955017, 45.898288];;FRELCEJ37W;FR*SOD*E*MB33*51*1*2*_;;;;;;;;;;;;;;Mo-Su 7:30-12:00,Mo-Su 15:00-20:00;;;;;14873371801439;2023-05-03;;2022-04-08;;2023-08-05T07:13:00.958000+00:00;641c76c7316d49e5c5295c10;0847ee3d-73cd-448a-9812-255fb158afdb;;-0.955017;45.898288;47270;Belloy-en-France;; +;Super U Malemort;902726488;lpautomobile@orange.fr;WAAT SAS | FR*WAT;info@peinture-ennesser.com;696 901 897;CERE LA RONDE 1367 - Alfred de Vigny;FRS33PMB3310811;FR*SOD*S*MB17*28*1*_*_;PISANY - ALLEE DES SPORTS;;PARKING DE LA BERNARDIÉRE;95509;[-0.779485, 45.700818];;FRELCET4BC;FR*SOD*E*MB33*51*1*1*_;;;;;;;;;;;;;;LUN-VEN 08:00-12:30,LUN-VEN 13:30-18:00;;;;;14809985406879;2023-02-28;;2022-05-25;;2023-08-05T07:13:00.600000+00:00;641d9b5ab1593d45908a1f29;1f18f154-9f8c-4590-bfa4-de60f0f2dfb3;;-0.779485;45.700818;47290;Chatou;; +;Super U Montarnaud;539474817;contact@segab.fr;WattzHub | FR*SMI;contact@mambhome.com;0490620673;BORNE U RAPIDE;FRS33PMB3310911;FR*SOD*S*MB17*43*1*_*_;ECOYEUX - RUE DES ARTISANS;;PLACE GABY COLL;93074;[-0.505448, 45.817534];;FRELCEGK4C;FR*SOD*E*MB33*52*1*1*_;;;;;;;;;;;;;;LUN-JEU 08:00-12h00,LUN-JEU 13:00-17:00,VEN 8:00-12,VEN 13:00-16:00;;;;;14879449950939;2023-02-21;;2020-08-17;;2023-08-05T07:13:00.242000+00:00;6421ac9d152b31f5c938d603;e8db16ae-795b-42ba-9cba-232649317489;;-0.505448;45.817534;47120;Clichy;; +;Super U Léguevin;842718512;garagedelsalle@orange.fr;GreenYellow | FR*GYM;contact@securecharge.com;04 90 74 19 71;AZAY SUR CHER 1362;FRS33PMB3310912;FR*SOD*S*MB17*46*1*_*_;SAINT CESAIRE - LES BUJOLIERS LAC;;PLACE DE LA RÉPUBLIQUE;92062;[-0.496067, 45.764361];;FRELCEDHDM;FR*SOD*E*MB33*52*1*2*_;;;;;;;;;;;;;;Mo-su 08:00-18:00;;;;;Hotel;2023-02-27;;2022-06-24;;2023-08-05T07:12:59.828000+00:00;6421af16a92f579e223b4189;e90fa72e-d43c-4284-8110-486604facb43;;-0.496067;45.764361;47510;Vaucresson;; +;Super U Nexon;330465550;nramos@opel-am5.com;Proviridis | FR*PVD;filippi.gl@gmail.com;0625311024;BLERE 1363 - Chardonnerets;FRS33PMB3311011;FR*SOD*S*MB17*45*1*_*_;BURIE - RUE DE VERDUN PLACE DES PLATANES;;AVENUE DU POITOU - LA PALMYRE;95056;[-0.422257, 45.774072];;FRELCEQPFX;FR*SOD*E*MB33*53*1*1*_;;;;;;;;;;;;;;Lu-Ve 09:00-12:00,Lu-Ve 14:00-18:00;;;;;14800578755408;2022-06-05;;2021-09-09;;2023-08-05T07:12:59.545000+00:00;6421c0f0460621dcc9c84ae7;4309b46d-f9a8-47cd-a51c-4c5188c619ac;;-0.422257;45.774072;47190;Jouy-en-Josas;; +;Super U Plougastel;424397297;2aautomobiles@free.fr;WAAT SAS | FR*WA9;sdavid@thibal-distribution.fr;04 42 29 84 29;SONEPAR CONNECT SOISSONS;FRS33PMB3311012;FR*SOD*S*MB17*44*1*_*_;SAINT GEORGES DE DIDONNE - RUE DU PROFESSEUR LANGEVIN;;PLACE RAYMOND PAILLÉ;78146;[-0.991936, 45.603029];;FRELCETMR9;FR*SOD*E*MB33*53*1*2*_;;;;;;;;;;;;;;mo-fr 08:00-12:00,mo-fr 14:00-19:00;;;;;14886251693106;2022-06-09;;2021-03-30;;2023-08-05T07:12:59.247000+00:00;64244be8a980c38a8d0cf695;f604d871-382e-4dc1-8ac3-d8fef7e7b41d;;-0.991936;45.603029;47210;Sarcelles;; +;Super U Ille-Sur-Tet;483048492;citroen.puyricard@wanadoo.fr;WAAT SAS | FR*WA8;contact@ekoplug.fr;0490403816;Comercy rue de la gare 134164;FRS33PMB3311112;FR*SOD*S*MB17*42*1*_*_;MONTLIEU LA GARDE - MAISON DE LA FORET;;FAUBOURG DAUNIS;92024;[-0.272743, 45.243324];;FRELCEW5PJ;FR*SOD*E*MB33*54*1*1*_;;;;;;;;;;;;;;mo-fr 09:00-12:00,mo-fr 14:00-18:00;;;;;50019501856048;2022-05-13;;2021-03-24;;2023-08-05T07:12:58.877000+00:00;64244f68b390338d4ee10b32;7844524e-01d2-4dc7-b546-7291e1c2cd6d;;-0.272743;45.243324;47470;Chennevières-sur-Marne;; +;Super U Truchtersheim;420326597;andrieux-bourcerie@orange.fr;;edfentreprises-ile-de-france-31@edf.fr;696901897;SONEPAR CONNECT CHERBOURG;FRS33PMB3311111;FR*SOD*S*MB17*41*1*_*_;TALMONT - AVENUE DE LESTUAIRE;;AV ARISTIDE BRIAND;92076;[-0.906058, 45.536148];;FRELCEJK7X;FR*SOD*E*MB33*54*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:00;;;;;14826049080207;2022-05-25;;2022-01-04;;2023-08-05T07:12:58.471000+00:00;64245ebd6e4baad70489ac7d;59dcddcb-e90b-449b-a613-d921bcc6fd34;;-0.906058;45.536148;47370;Chaville;; +;Super U Igoville;310818000;Julien.Fossat@wurth.fr;;contact@energem.fr;0762989875;BOSSAY SUR CLAISE 1365;FRS33PMB3311212;FR*SOD*S*MB17*39*1*_*_;COZES - ROUTE DE TALMONT;;AV CHARLES DE GAULLE;78322;[-0.834953, 45.582125];;FRELCEVVLQ;FR*SOD*E*MB33*55*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:17;;;;;14834587434078;2022-05-23;;2022-01-24;;2023-08-05T07:12:56.699000+00:00;6425442e23a01b2a0c07e6e0;587d3ae2-ef87-4358-bdd6-b67f7fa3c6fd;;-0.834953;45.582125;91160;Ivry-sur-Seine;; +;Super U Guipavas;897811865;siege@bulledelinge.com;;bg@lavicomterie.com;0661485975;CGED CALAIS _;FRS33PMB3311211;FR*SOD*S*MB17*40*1*_*_;LA JARRIE - PLACE DE LA MAIRIE;;AVENUE MARCEL DASSAULT;95585;[-1.008851, 46.128313];;FRELCELMBR;FR*SOD*E*MB33*55*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:19;;;;;Bâtiment ME;2022-06-03;;2022-05-14;;2023-08-05T07:12:56.324000+00:00;64254db7562e5b313ae2cfd3;f1f15fbe-64ee-4228-adf2-fbeb7cbfdbcd;;-1.008851;46.128313;91430;Le Thillay;; +;Super U Hoenheim;493964464;christophe.perry@huissier-justice.fr;;benoit.denjean0121@orange.fr;0611342795;CGED TOULON;FRS33PMB3311312;FR*SOD*S*SIGE*177*3*_*_;LA JARRIE - RUE DE LA PROVIDENCE;;PARKING DE LA GALISSONIÉRE;94019;[-1.004244, 46.127379];;FRELCE2XDF;FR*SOD*E*MB33*56*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:20;;;;;14883791483019;2022-06-14;;2022-05-16;;2023-08-05T07:12:55.921000+00:00;6425617494ee40df4b2c1e1b;d16fb127-119a-4631-9f08-a7800d9a74b9;;-1.004244;46.127379;91310;Villeparisis;; +;Super U Saint-Donat-sur-l'Herbasse;341760148;contact@quincy-requin-avocats.com;;info@ics-sa.com;04 66 45 60 51;SONEPAR CONNECT AUBERGENVILLE;FRS33PMB336711;FR*SOD*S*SIGE*178*1*_*_;COUX - AVENUE DE LA REPUBLIQUE;;CHEMIN DES SABLES;92022;[-0.403964, 45.312323];;FRELCEX8FF;FR*SOD*E*MB33*56*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:21;;;;;14832561383332;2022-05-20;;2022-06-10;;2023-08-05T07:12:55.617000+00:00;6438134b5295755f6dfdeaac;5471af52-ea05-44fc-ae84-2e30febb1071;;-0.403964;45.312323;91400;Fontenay-en-Parisis;; +;Super U St Jacques de la Lande;200096824;info@hotel-europeangleterre-macon.com;;karine.ambroise@ambroise-avocat.fr;0466896051;CHATEAUNEUF EN THYMERAIS - Jean Moulin - 134302;FRS33PMB336611;FR*SOD*S*SIGE*177*4*_*_;CHEVANCEAUX - AVENUE DE PARIS;;RUE DE LA POSTE;94041;[-0.238763, 45.294596];;FRELCEZK86;FR*SOD*E*MB33*57*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:22;;;;;14832850818924;2022-08-16;;2020-12-01;;2023-08-05T07:12:55.377000+00:00;64257012c1c8643a8539c562;e41070dc-cdd3-43aa-a2d4-74e501e6299c;;-0.238763;45.294596;91120;Marolles-en-Brie;; +;Super U Saint Jean de Monts;312707391;lnurier@axstone.fr;;lodgesdureynou@gmail.com;0387986009;SENONCHES - Rue de la ferté Vidame - 134317;FRS33PMB3313011;FR*SOD*S*SIGE*177*2*_*_;LA COUARDE SUR MER - COURS DES POILUS;;AVENUE DES GRÉSILLONS;95612;[-1.422367, 46.195531];;FRELCE28HT;FR*SOD*E*MB33*57*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:24;;;;;14849638084110;2022-07-13;;2019-10-25;;2023-08-05T07:12:55.003000+00:00;6425f9a753bc8348776ae2b2;0fbd39a7-8f37-414e-a57c-353e7d9437f8;;-1.422367;46.195531;91140;Bouffémont;; +;Super U Saint Geneviève;479337107;lesjardinsdelasud@orange.fr;;contact@flyops.net;0388592222;ST PIAT - Place Vauvillers - 130523;FRS33PMB331612;FR*SOD*S*SIGE*177*1*_*_;SAINT CLEMENT DES BALEINES - RUE DU CENTRE;;RUE PAUL GAUGUIN;77514;[-1.542199, 46.22903];;FRELCEGNKY;FR*SOD*E*MB33*58*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:25;;;;;14876121441178;2022-06-04;;2022-06-27;;2023-08-05T07:12:54.589000+00:00;64270aba8e3a48d923771415;a6807ee7-83cf-484c-aa9f-29a9b26dcaa3;;-1.542199;46.22903;91620;Verrières-le-Buisson;; +;Super U Grenade;901527333;jf.de@egsm.fr;;contact@manubob-industrie.fr;0475079175;AJM ENERGIE BUROCLUB;FRS33PMB331711;FR*SOD*S*SIGE*174*1*_*_;LE GUA - RUE SAMUEL CHAMPLAIN;;RUE DU 18 JUIN;95241;[-0.944979, 45.726395];;FRELCEYP2H;FR*SOD*E*MB33*58*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:26;;;;;14886685840586;2022-03-29;;2022-06-15;;2023-08-05T07:12:54.106000+00:00;64270d654af4ea2810d84867;36422b48-4464-48cd-9849-5cc622bfdb35;;-0.944979;45.726395;91440;Noisy-le-Grand;; +;Super U Fouras;811743335;coprodex@coprodex.com;;ssznek@themis-experts.com;0388963773;SENONCHES - Rue de Verdun - 134278;FRS33PMB331912;FR*SOD*S*SIGE*176*1*_*_;SAINT TROJAN LES BAINS - RUE DES PECHEURS;;AVENUE JEAN JAURES;94048;[-1.209274, 45.844284];;FRELCEZ3Q4;FR*SOD*E*MB33*59*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:27;;;;;14870332730713;2022-06-23;;2022-06-28;;2023-08-05T07:12:53.742000+00:00;6427eb1da4fc7826f0cadb1e;09ba4c37-e2fd-43bf-8c9f-3310c1ffe640;;-1.209274;45.844284;91300;Maisons-Laffitte;; +;Suez;848969044;gael.tulic@domainedefontenille.com;;contact@greenhomeimmobilier.fr;0388743065;LUISANT - Avenue de la république - 137351;FRS33PMB331911;FR*SOD*S*SIGE*175*1*_*_;MONTGUYON - PLACE DU CHAMP DE FOIRE;;RUE MARCEL PAUL;95091;[-0.187188, 45.216866];;FRELCE7ZSS;FR*SOD*E*MB33*59*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:28;;;;;14895513627303;2022-06-12;;2022-05-04;;2023-08-05T07:12:53.396000+00:00;642ac32595f1bb9f998c7406;dd6147dd-157e-4e60-a3e8-56ef1d101a4a;;-0.187188;45.216866;91190;Montmorency;; +;Strasbourg Pierre;317802106;pierre.eon@wanadoo.fr;;g.arpino@ocr.fr;0321395098;POCE SUR CISSE 3105 - Route des Industries;FRS33PMB332012;FR*SOD*S*SIGE*179*1*_*_;SAINT GEORGES DE DIDONNE - RUE DU COCA;;AVENUE JEAN JAURÈS;91645;[-1.001935, 45.60287];;FRELCEMXX4;FR*SOD*E*MB33*60*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:29;;;;;14839363114761;2022-07-18;;2022-04-25;;2023-08-05T07:12:53.016000+00:00;642d3edadeabe14d5f034cc7;1f5c9569-5483-434e-b437-303f8a4c530e;;-1.001935;45.60287;49610;Saint-Gratien;; +;Sturzelbronn;819452657;denis.lot@daltoner.fr;;acelec@acelec-france.com;0683622707;ST PIERRE DES CORPS 3107 - Place Maurice Thorez;FRS33PMB332011;FR*SOD*S*SIGE*183*2*_*_;ROCHEFORT - AV CAMILLE PELLETAN LES THERMES;;RUE GEORGES BONNEFOUS;93051;[-0.962153, 45.94209];;FRELCEYZPY;FR*SOD*E*MB33*60*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:30;;;;;14826772671295;2022-10-24;;2022-04-19;;2023-08-05T07:12:52.751000+00:00;642d7297eca7fc0440ef6e7f;9482738a-51aa-4894-9734-1488cdfcd8ae;;-0.962153;45.94209;76290;Bois-d'Arcy;; +;Super U Binic;904273802;aguerin@seeyousun.fr;;info@masdesolives.com;02 52 07 25 97;CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs;FRS33PMB332112;FR*SOD*S*SIGE*180*1*_*_;AULNAY DE SAINTONGE - PLACE CHARLES DE GAULLE;;RUE DANIELLE CASANOVA;78358;[-0.345935, 46.019559];;FRELCEK6YA;FR*SOD*E*MB33*61*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:31;;;;;14872937650520;2022-09-19;;2022-06-30;;2023-08-05T07:12:52.429000+00:00;642eac8b32d051e3915cdc9e;ba1a697c-361d-470a-a70d-051944a5240e;;-0.345935;46.019559;27200;Bagneux;; +;Super U Bonsecours;904074713;contact@stations-e.com;;christophe.langlet@lyonaeroports.com;0696295629;Giberville Nord;FRS33PMB332111;FR*SOD*S*SIGE*181*1*_*_;CHARRON - RUE DU CHATEAU ZONE DES MORINES;;RUE DE LÉGALITÉ;95428;[-1.096399, 46.300894];;FRELCEZBDK;FR*SOD*E*MB33*61*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:32;;;;;14846599010583;2022-09-16;;2021-11-12;;2023-08-05T07:12:52.133000+00:00;64326d8b5648df92770a2328;c5195c10-ef05-4ba3-a5f6-4f5b1fb07e41;;-1.096399;46.300894;35400;Marnes-la-Coquette;; +;Steco;512913518;supervision-ev.france@totalenergies.com;;evsupport.eu@autel.com;603062098;CIVRAY DE TOURAINE 1836 - Z.A. Bois Pataud;FRS33PMB332211;FR*SOD*S*SIGE*182*1*_*_;CHATELAILLON - PARKING HAUT RILLON;;RUE EMILE ZOLA;95555;[-1.079027, 46.08067];;FRELCEN6XE;FR*SOD*E*MB33*62*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:33;;;;;14882778460448;2022-10-13;;2022-07-01;;2023-08-05T07:12:51.871000+00:00;64368598744036925f03bfb7;591c223e-a3f7-4c1b-8a6b-fc119de4e593;;-1.079027;46.08067;76360;Roissy-en-France;; +;Station-service Groffal;347412850;groupefal@gpfal.fr;;exploitation@waat.fr;0296524033;WAAT 4 CHENES 6;FRS33PMB332212;FR*SOD*S*SIGE*183*1*_*_;CORME ROYAL - RESIDENCE DES ORMEAUX;;BOULEVARD SÉNARD;78073;[-0.813299, 45.740856];;FRELCEWUEF;FR*SOD*E*MB33*62*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:18;;;;;14884080920668;2022-09-13;;2021-03-19;;2023-08-05T07:12:51.451000+00:00;6436be5864493e29b179dc5a;d3e00e51-4f9d-4b9a-9d50-137fffa32221;;-0.813299;45.740856;44240;Boissy-Saint-Léger;; +;Stationeo Blois;342583796;g.geffroy@saemes.fr;;operations.france@atlante.energy;0681475113;JULSOL BORNE 1;FRS33PMB332312;FR*SOD*S*SIGE*183*3*_*_;LA TREMBLADE - PLACE JEAN NOEL DE LIPKOWSKI;;PLACE JEAN MERMOZ;92007;[-1.142896, 45.768927];;FRELCE9HP6;FR*SOD*E*MB33*63*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:23;;;;;14865267606511;2022-11-09;;2021-05-20;;2023-08-05T07:12:51.142000+00:00;64380e75c6942bb166b0d337;22ee621b-13bb-436c-9f66-9bd8bb4b74af;;-1.142896;45.768927;14120;Saint-Cyr-l'École;; +;Steak 'n Shake Perpignan;508150463;bruno.cavagni@caravenue.com;;contact@wattzhub.com;0296807121;CGED CGED ST DIZIER;FRS33PMB332311;FR*SOD*S*SIGE*183*4*_*_;SAINT SAVINIEN - PLACE DE LA GARE;;RUE DU GÉNÉRAL LECLERC;92047;[-0.678354, 45.876197];;FRELCEKTS2;FR*SOD*E*MB33*63*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:16;;;;;14863096839989;2022-11-15;;2022-05-19;;2023-08-05T07:12:50.788000+00:00;641c03092ad08579b045da07;3d0975e2-2e99-4ce7-a88a-117298fd284b;;-0.678354;45.876197;77100;La Celle-Saint-Cloud;; +;Super U Evreux;420783946;mgrasset@interparking.com;;emobility.exploit@greenyellow.fr;0698807582;FRANCUEIL 2770 - Parking rue Charles de Gaulles;FRS33PMB332411;FR*SOD*S*SIGE*173*1*_*_;LOIX EN RE - PARKING DE LA BERNARDIERE;;RUE RAOUL NORDLING;95527;[-1.432498, 46.224022];;FRELCEC7RD;FR*SOD*E*MB33*64*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:08;;;;;14830680052373;2022-12-01;;2021-06-14;;2023-08-05T07:12:50.382000+00:00;6491939e9b1866e8854bf52b;788d7415-e273-481b-abfe-6de82cc91eb5;;-1.432498;46.224022;77200;Fontenay-le-Fleury;; +;Super U Feytiat;265401422;rscordia@interparking.com;;data.gouv@proviridis.fr;04 99 77 01 24;ATHEE SUR CHER 2772 - ZA de la Ferriere;FRS33PMB332412;FR*SOD*S*SIGE*1*1*_*_;LHOUMEAU - PLACE GABY COLL;;RUE DE PARIS;94004;[-1.188403, 46.193318];;FRELCEQ52Y;FR*SOD*E*MB33*64*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:01;;;;;14826338515248;2022-11-30;;2021-04-29;;2023-08-05T07:12:50.026000+00:00;64948c8609da489f3fd5cb05;ed298de1-9974-4973-b6c9-2c24a080911f;;-1.188403;46.193318;37400;Le Kremlin-Bicêtre;; +;Super U Contres;672009628;t.guers@casino-secbu.fr;;;0467351021;TAUXIGNY 2782 - ZA Node Park;FRS33PMB332511;FR*SOD*S*SIGE*44*4*_*_;LE CHATEAU DOLERON - PLACE DE LA REPUBLIQUE;;BOULEVARD JEAN JAURÈS;78545;[-1.194709, 45.886536];;FRELCEBMLB;FR*SOD*E*MB33*65*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:15;;;;;14820115650444;2023-01-18;;2022-05-30;;2023-08-05T07:12:49.780000+00:00;6494617d457ae6085e200e5b;b166c63c-df39-481e-85fc-0df842915e7e;;-1.194709;45.886536;14800;Beauchamp;; +;Super U Bricquebec;421334566;H7927-GM@ACCOR.COM;;;0434080706;MENNETOU SUR CHER 2924 - Place du 11 Novembre;FRS33PMB332512;FR*SOD*S*SIGE*42*1*_*_;LES MATHES - AVENUE DU POITOU - LA PALMYRE;;28 RUE CHANZY;78126;[-1.178706, 45.691602];;FRELCEMP3S;FR*SOD*E*MB33*50*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:03;;;;;25846599127011;2022-07-22;;2021-02-17;;2023-08-05T07:12:49.401000+00:00;649458c8849e08ae34be910e;9e095613-f06e-4da2-b31d-771ee9c095d1;;-1.178706;45.691602;64600;Cormeilles-en-Parisis;; +;Super U Chabanais;842477895;nicolas.bouyer@riester.fr;;;0698729394;VILLEHERVIERS 2926 - Rue de la Gare;FRS33PMB332612;FR*SOD*S*SIGE*42*4*_*_;MONTENDRE - PLACE RAYMOND PAILLE;;AVENUE DE LA CRISTALLERIE;78242;[-0.406388, 45.284856];;FRELCE5ZZP;FR*SOD*E*MB33*50*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:04;;;;;50022807270201;2022-09-08;;2021-05-19;;2023-08-05T07:12:48.770000+00:00;6491a795896af20ad8986ac8;7e2edd6b-1202-4b3b-ab88-0bd7de7b6fdd;;-0.406388;45.284856;59554;Eaubonne;; +;Super U Chemillé;429186844;t.zuccolotto@casino-secf.fr;;;0643487753;VERNOU EN SOLOGNE 2928 - Place de l'Eglise;FRS33PMB332611;FR*SOD*S*SIGE*43*1*_*_;SAINT JEAN DANGELY - FAUBOURG DAUNIS;;AVENUE DE LA DIVISION LECLERC;94043;[-0.529733, 45.948627];;FRELCEWNJM;FR*SOD*E*MB33*49*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:05;;;;;16121852307745;2022-08-26;;2022-05-31;;2023-08-05T07:12:48.465000+00:00;6491a101319568fa48991f82;4b6f25a8-5c1b-42ba-81d4-64d0210e3673;;-0.529733;45.948627;36250;Bondy;; +;System B - Tryba;901772400;cerra@orange.fr;;;0495337506;OUZOUER LE MARCHE 2932 - Place du 8 Mai;FRS33PMB332712;FR*SOD*S*SIGE*43*3*_*_;SAINT JEAN DANGELY - AV ARISTIDE BRIAND;;AVENUE DE VERDUN;95176;[-0.510211, 45.940547];;FRELCEGT2T;FR*SOD*E*MB33*41*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:06;;;;;30000141232922;2020-03-30;;2021-09-13;;2023-08-05T07:12:48.141000+00:00;64919bd6a4dd551a8f2b3a38;24210eff-cdff-407a-9ef2-4798ea9f359d;;-0.510211;45.940547;63360;Goussainville;; +;Synerglace;410546957;g.russo@casino-secsm.fr;;;0384477147;MOREE 2935 - Place du 8 Mai;FRS33PMB332711;FR*SOD*S*SIGE*43*2*_*_;CHANIERS - AV CHARLES DE GAULLE;;RUE DE LA COUSSAYE;95203;[-0.556037, 45.717543];;FRELCEFEG5;FR*SOD*E*MB33*35*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:07;;;;;30000121270480;2020-03-11;;2022-06-01;;2023-08-05T07:12:47.890000+00:00;64900e4c538fcb2880560621;adaa1d05-78b9-419f-aab7-705906885626;;-0.556037;45.717543;21320;Brou-sur-Chantereine;; +;Synlab Normandie Maine;410546956;cedric.thomas@te61.fr;;;0233616130;COUR CHEVERNY 2937 - Avenue Anciens combattants;FRS33PMB332812;FR*SOD*S*SIGE*43*6*_*_;ROCHEFORT - AVENUE MARCEL DASSAULT;;BOULEVARD DE VANVES;93010;[-0.96002, 45.944355];;FRELCER9D8;FR*SOD*E*MB33*35*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:02;;;;;02482778491819;2020-03-09;;2022-06-02;;2023-08-05T07:12:47.525000+00:00;64900462d6b905ad3b24885e;bf8e63ed-6984-43c0-931c-9d83fed3cdce;;-0.96002;45.944355;02000;Herblay-sur-Seine;; +;THEG;410546959;louis.desfossey@gdhr.fr;;;0442786952;SAINT GERVAIS LA FORET 2945 - Route de Chambord;FRS33PMB332811;FR*SOD*S*SIGE*43*4*_*_;ROCHEFORT - PARKING DE LA GALISSONIERE;;RUE PRUVOT;95280;[-0.958623, 45.934373];;FRELCEDTAS;FR*SOD*E*MB33*36*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:09;;;;;25488422553837;2020-06-23;;2022-06-03;;2023-08-05T07:12:47.191000+00:00;648b31288f2d4c97dfcd9c58;461c4273-49f7-4c4f-9101-1c2f540e8afc;;-0.958623;45.934373;77183;Ermont;; +;Sète exploitation Auto;410546958;isabelle@lareservedupresbytere.fr;;;0486687630;NEUILLE PONT PIERRE 2947 - Place de la mairie;FRS33PMB332912;FR*SOD*S*SIGE*43*5*_*_;SAINTE MARIE DE RE - CHEMIN DES SABLES;;RUE LARMEROUX;77055;[-1.317532, 46.155851];;FRELCE9SJW;FR*SOD*E*MB33*36*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:11;;;;;50034535418680;2020-03-10;;2021-04-08;;2023-08-05T07:12:46.783000+00:00;648b204be51a4efa50270560;fbd94221-a810-4b1f-9834-166436d10082;;-1.317532;46.155851;77380;La Frette-sur-Seine;; +;Sélestat;410546961;f.cailly@vikings-casinos.fr;;;0612666006;CELLETTES 2958 - Rue de l'Angevinière;FRS33PMB332911;FR*SOD*S*SIGE*44*3*_*_;AIGREFEUILLE - RUE DE LA POSTE;;34, RUE ANTOINE FRATACCI;95306;[-0.936192, 46.114931];;FRELCEBD8E;FR*SOD*E*MB33*37*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:12;;;;;02207655773008;2023-07-19;;2022-05-11;;2023-08-05T07:12:46.417000+00:00;648b1e671cab588335ec2371;6042426a-6ec8-4449-911d-bc4e11e8a2a7;;-0.936192;46.114931;44700;Frépillon;; +;TC Toulonnais;410546960;philippedubois@mac.com;;;0465059822;VANDOEUVRE - PISCINE MICHEL BERTRAND - 187014;FRS33PMB333012;FR*SOD*S*SIGE*44*5*_*_;SIGEIF - 215 AVENUE DES GRESILLONS - GENNEVILLIERS - 2;;PARKING DES ACACIAS;95219;[2.313813, 48.919804];;FRELCEVXXF;FR*SOD*E*MB33*37*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:13;;;;;50071866942340;2020-05-14;;2021-02-19;;2023-08-05T07:12:46.042000+00:00;6489cdb3cdc8890e82c85402;9df6c1bc-2879-4f77-8577-241eb3534113;;2.313813;48.919804;68120;Morangis;; +;Syndicat mixte des Transports du bassin de Briey;830699930;nicolas-savoyet@samse.fr;;;0323248485;SONEPAR SIX-FOURS;FRS33PMB333011;FR*SOD*S*SIGE*44*6*_*_;SIGEIF - 3 RUE PAUL GAUGUIN - MITRY-MORY;;RUE DE MEUDON;95257;[2.642232, 48.974569];;FRELCEK8LT;FR*SOD*E*MB33*38*1*2*_;;;;;;;;;;;;;;Mo-Su 00:00-00:14;;;;;30000111369672;2020-06-05;;2021-05-24;;2023-08-05T07:12:45.644000+00:00;6495655dfd278550f82042a5;e6fa5eb6-caa2-4c97-85b0-cd4fb56e4f07;;2.642232;48.974569;86000;Deuil-la-Barre;; +;Super U, Ligné;791408040;qparot@maisondesentreprises.com;;;0385367034;SAINT SENOCH 3571 - Rue Charles de Gaulle;FRS33PMB333111;FR*SOD*S*SIGE*44*2*_*_;SIGEIF - RUE DU 18 JUIN - MARGENCY;;AVENUE ANDRÉ MORIZET;95256;[2.288179, 49.003723];;FRELCE7VRN;FR*SOD*E*MB33*38*1*1*_;;;;;;;;;;;;;;Mo-Su 00:00-00:10;;;;;50005585251110;2019-11-28;;2021-05-04;;2023-08-05T07:12:45.187000+00:00;6499cf1c3be8062f42a96e9e;eb215bd8-cd32-445d-892e-b590362e840c;;2.288179;49.003723;73000;Villiers-le-Bel;; +;Syndicat des Copropriétaires Maison de l'Agriculture;844817650;H1407-GM@ACCOR.COM;;;0387099123;BRANFERE BORNE 2;FRS33PMB333112;FR*SOD*S*SIGE*44*1*_*_;SIGEIF - 30 AVENUE JEAN JAURES - VAIRES-SUR-MARNE;;RUE DE SÈVRES;91432;[2.637631, 48.873611];;FRELCE4LEY;FR*SOD*E*MB33*39*1*2*_;;;;;;;;;;;;;;Mo-Fr 08:30-12:00,Mo-Fr 14:00-17:00;;;;;50086482186239;2019-12-17;;2021-04-16;;2023-08-05T07:12:43.903000+00:00;649c64943b0f283c81d89b86;91943401-877d-43ce-ac73-f244e1e5fcd4;;2.637631;48.873611;03000;Les Loges-en-Josas;; +;Territoire d'Energies Alsace;692012552;gge-beal-et-fils@orange.fr;;;0450038655;LOCHE SUR INDROIS 3573 - Place du Mail;FRS33PMB333212;FR*SOD*S*SIGE*42*5*_*_;SIGEIF - PLACE DE LA GARE - BIEVRES;;BOULEVARD FERDINAND HOSTACHY;95197;[2.216118, 48.751964];;FRELCEPJLX;FR*SOD*E*MB33*39*1*1*_;;;;;;;;;;;;;;Mo 9:00-18:00, Tu 9:00-18:00, We 9:00-18:00, Th 9:00-18:00, Fr 9:00-18:00;;;;;Inconnu;2019-11-27;;2022-06-07;;2023-08-05T07:12:43.623000+00:00;649db19da0106ae4cee17837;a527a4dd-88c9-40ea-982f-84651c69a8f7;;2.216118;48.751964;94380;Groslay;; +;Technifutur;434651246;egletons-automobiles@orange.fr;;;0153250068;VILLEBOURG 3578 - Place de la mairie;FRS33PMB333211;FR*SOD*S*SIGE*45*1*_*_;SIGEIF - RUE MARCEL PAUL - MITRY-MORY;;CHEMIN DE RONDE;95680;[2.612309, 48.98021];;FRELCEZQTG;FR*SOD*E*MB33*40*1*2*_;;;;;;;;;;;;;;MO-SAT 09:00-18:30;;;;;30001724000932;2019-12-05;;2021-02-05;;2023-08-05T07:12:43.319000+00:00;64a279cb493a00b27bc7c318;568fcad0-6960-45b7-b8f3-5e4b3f2927c7;;2.612309;48.98021;33170;Sainte-Bazeille;; +;Teractem;249100595;gouzon.automobiles@orange.fr;;;0385783358;SONEPAR CHALLANS;FRS33PMB331712;FR*SOD*S*SIGE*46*1*_*_;SIGEIF - 21 AVENUE JEAN JAURES - SURESNES;;BOULEVARD DE LA RÉPUBLIQUE, BOULOGNE-BILLANCOURT;78343;[2.209007, 48.863623];;FRELCE3C7T;FR*SOD*E*MB33*40*1*1*_;;;;;;;;;;;;;;Mo 08:00-20:00, Tu 08:00-20:00, We 08:00-20, Fr 08:00-20:00, Sa 08:00-20:00, Su 0:00, Th 08:00-20:008:00-20:00;;;;;50039155610987;2020-01-27;;2021-07-22;;2023-08-05T07:12:42.977000+00:00;64a2baad870cc59d59a0bc7c;0b399a5e-fd94-435f-9869-935575d38f7e;;2.209007;48.863623;90000;Pujols;; +;Technocity Public;393755962;denisauthier@wanadoo.fr;;;0661150201;SONEPAR VIRY-CHATILLON;FRS33PMB331611;FR*SOD*S*SIGE*47*1*_*_;SIGEIF - RUE GEORGES BONNEFOUS - SEVRES;;RUE FINOT;95288;[2.213168, 48.821562];;FRELCE9WCP;FR*SOD*E*MB33*41*1*1*_;;;;;;;;;;;;;;Mo 08:00-21:00, Tu 08:00-21:00, We 08:00-21:00, Th 08:00-21:00, Fr 08:00-21:00, Sa 08:00-21:00, Su 08:00-21:00;;;;;01513458671810;2020-03-26;;2021-04-26;;2023-08-05T07:12:42.662000+00:00;64a42ecca81225316c16e19a;9b3a25ab-75a0-4b79-9789-714c74ca1cd8;;2.213168;48.821562;44400;Agen;; +;Châteauform Les Mesnuls;499954717;jb.lecomte@lvautomobiles.fr;;;06 71 32 75 81;MONTS 3569 - Place de la Fontaine;FRS33PMB336512;FR*SOD*S*SIGE*48*1*_*_;SIGEIF - RUE DANIELLE CASANOVA - MAISONS-ALFORT;;RUE DE LA VERRERIE;47233;[2.456492, 48.808336];;FRELCEJ4ED;FR*SOD*E*MB33*42*1*1*_;;;;;;;;;;;;;;Mo-Su 8:00-19:00;;;;;01540376239693;2019-11-26;;2022-03-18;;2023-08-05T07:12:42.350000+00:00;64a6d36a64a65b7e12c41944;9e215729-f58b-4572-86fc-a601edff6a2f;;2.456492;48.808336;95350;Sainte-Colombe-en-Bruilhois;; +;Belambra Les Terrasses de St Paul de Vances;799415070;christophe.brusset@ampmetropole.fr;;;+34 931.574.967;SAINT OUEN 3717 - Allée du Parc de Bel Air;FRS33PMB331511;FR*SOD*S*SIGE*49*1*_*_;SIGEIF - 1 RUE DE LEGALITE - ISSY-LES-MOULINEAUX;;RUE AUGUSTE SIMON;47215;[2.265278, 48.819562];;FRELCEPFFS;FR*SOD*E*MB33*49*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:30-17:00;;;;;50026856514407;2020-07-06;;2022-02-23;;2023-08-05T07:12:41.906000+00:00;64a6e2f5a6f51df5d22dcb88;e78c9610-beb9-4481-acc5-0789fe930f6d;;2.265278;48.819562;77170;Prayssas;; +;Belambra Presqu'ile du Ponant;834148611;dupin@casino-secba.fr;;;0472901949;CGED MONT-DE-MARSAN;FRS33PMB331011;FR*SOD*S*SIGE*51*1*_*_;SIGEIF - 66 RUE EMILE ZOLA - FRESNES;;PARKING ESPACE SAINT EXÉPURY;47001;[2.326942, 48.762217];;FRELCEBT4H;FR*SOD*E*MB33*42*1*2*_;;;;;;;;;;;;;;Mo-Fr 08:30-19:45,Su 08:30-12:45;;;;;50027725622803;2019-12-23;;2021-10-01;;2023-08-05T07:12:41.531000+00:00;64a8f8512176512e13f807a1;8196e12c-8199-4a72-bd90-7e7c558c5a02;;2.326942;48.762217;72200;Pont-du-Casse;; +;Belambra Riviera Beach Club;909790511;garage.plissonneau@orange.fr;;;0139157451;MANUTAN 19;FRS33PMB331012;FR*SOD*S*SIGE*42*2*_*_;SIGEIF - 32 BOULEVARD SENARD - SAINT-CLOUD;;PARKING RELAIS FOURCADE;47238;[2.220406, 48.85466];;FRELCEFFXG;FR*SOD*E*MB33*43*1*2*_;;;;;;;;;;;;;;Mo-Su 08:00-20:30;;;;;2,57E+13;2020-01-14;;2022-07-18;;2023-08-05T07:12:41.160000+00:00;64b6f958cb3be39c7d8688ce;d2c1ad2b-17d5-400c-b829-bf2c29b6169e;;2.220406;48.85466;95520;Port-Sainte-Marie;; +;Belleville;817537236;foyerlogprimeveres@wanadoo.fr;;;0426700227;MANUTAN 9;FRS33PMB33912;FR*SOD*S*SIGE*42*3*_*_;SIGEIF - PLACE JEAN MERMOZ - BOIS-COLOMBES;;3 RUE DES TILLEULS;47213;[2.270931, 48.921611];;FRELCEX6CC;FR*SOD*E*MB33*43*1*1*_;;;;;;;;;;;;;;Mo-Fr 06:00-20:00,Sa 07:00-14:00;;;;;25700000001841;2020-02-12;;2020-03-04;;2023-08-05T07:12:40.811000+00:00;64ba2e1c2e3043aa3afb7baf;8a5e9f60-6962-42af-9033-1d2a5038e9bc;;2.270931;48.921611;72700;Penne-d'Agenais;; +;Benoit Pneumatique Albi;909073364;cucis.cucis@wanadoo.fr;;;+34 931 190 242;SELIGNY 3557 - Place Drapeau Caillault;FRS33PMB33911;FR*SOD*S*SIGE*36*5*_*_;SIGEIF - 45 RUE DU GENERAL LECLERC - BOIS-COLOMBES;;RUE MARCEL BONTEMPS;47209;[2.269387, 48.915407];;FRELCES86N;FR*SOD*E*MB33*44*1*2*_;;;;;;;;;;;;;;Mo-Su 8:00-20:00;;;;;15286396416899;2020-02-19;;2022-04-27;;2023-08-05T07:12:40.447000+00:00;64ba71adfca3b4f697b20092;8c189815-dc1b-460a-af93-6e8a9654d71a;;2.269387;48.915407;29200;Nérac;; +;Benvengudo;909073365;contact@le-ranch.fr;;;0146069000;BOURNAN 3559 - Rue Principale;FRS33PMB33811;FR*SOD*S*SIGE*39*6*_*_;SIGEIF - 16 RUE RAOUL NORDLING - BOIS-COLOMBES;;RUE HENRI MARTIN;47210;[2.264081, 48.905256];;FRELCEKBL5;FR*SOD*E*MB33*44*1*1*_;;;;;;;;;;;;;;Mo-Sa 08:00-12:00, Mo-Sa 14:00-18:00, Su 09:00-13:00;;;;;24551664215982;2020-09-02;;2022-07-22;;2023-08-05T07:12:40.143000+00:00;64ca7a356393a1def44d9a69;9de7fc26-e81e-4af4-8eab-58d5fb6a1e2d;;2.264081;48.905256;37540;Tonneins;; +;Best Western Paris Saclay;909073366;roberto.dacosta@hotmail.fr;;;0786661820;EPEIGNE LES BOIS 3561 - Parking du plan d'eau;FRS33PMB33812;FR*SOD*S*SIGE*37*4*_*_;SIGEIF - 6 RUE DE PARIS - MEUDON;;66 BOULEVARD RODIN;47203;[2.247755, 48.816826];;FRELCEPYTL;FR*SOD*E*MB33*45*1*2*_;;;;;;;;;;;;;;Mo-Fr 9:00-18:00;;;;;50023878427657;2020-09-01;;2022-12-28;;2023-08-05T07:12:39.801000+00:00;6290a0d9c6ea67eca23d14c1;b732ffb4-fe72-4357-aacd-49238986d5ab;;2.247755;48.816826;40100;Tombebœuf;; +;BigMat Besse;909073367;tachardautomobile@orange.fr;;;06 60 44 30 37;LIGRE 3563 - Rue Saint Martin;FRS33PMB33711;FR*SOD*S*SIGE*37*5*_*_;SIGEIF - 10 BOULEVARD JEAN JAURES - BOULOGNE-BILLANCOURT;;AVENUE DES DIABLOTS;47195;[2.237223, 48.844739];;FRELCE2PVU;FR*SOD*E*MB33*45*1*1*_;;;;;;;;;;;;;;Mo-Fr 9:00-17:00;;;;;19135021651250;2021-06-01;;2023-01-16;;2023-08-05T07:12:39.410000+00:00;6489a5773fe5a3ad80a23cae;23972d18-1d00-4f6f-b6b0-340b99e68bff;;2.237223;48.844739;40210;Samazan;; +;Beaune Côte & Sud;909073368;contact@hotel-restaurant-valdevienne.com;;;0179356309;Suèvres;FRS33PMB33712;FR*SOD*S*SIGE*37*6*_*_;SIGEIF - 28 RUE CHANZY - VIROFLAY;;RUE GABRIEL FAURE;47310;[2.177418, 48.798292];;FRELCEJNY3;FR*SOD*E*MB33*46*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:30-12:00,Mo-Fr 14:00-19:00,Sat 09:00-18:30;;;;;24504341471593;2022-11-16;;2021-11-05;;2023-08-05T07:12:39.028000+00:00;64888c77afc450ad09f45dee;13ff1e3c-6f03-41fe-a2e3-8929e6b1b5c5;;2.177418;48.798292;40260;Saint-Hilaire-de-Lusignan;; +;Beauvallet;909073369;dimeo.jerome@neuf.fr;;;0243600020;MONTREUIL EN TOURAINE 3565 - Rue du Bourg;FRS33PMB33611;FR*SOD*S*SIGE*37*2*_*_;SIGEIF - 15 AVENUE CHARLES DE GAULLE - BOULOGNE-BILLANCOURT;;PLACE MARECHAL FOCH;47309;[2.237767, 48.850211];;FRELCEY98P;FR*SOD*E*MB33*46*1*2*_;;;;;;;;;;;;;;Mo-Sat 08:30-20:00, Sun 8:30-12:30;;;;;24 333 719 137 472;2020-01-06;;2022-07-11;;2023-08-05T07:12:38.777000+00:00;647f1c6c5021d9b17af386e0;5603fb79-3eb0-4402-b90b-4770c3c54f1b;;2.237767;48.850211;40110;Saint-Sylvestre-sur-Lot;; +;Becablé Bayonne;909073370;directeur@nantesbeaujoire.com;;;0388513049;SONEPAR DOL-DE-BRETAGNE;FRS33PMB33612;FR*SOD*S*SIGE*37*1*_*_;SIGEIF - 2 AVENUE DE LA CRISTALLERIE - SEVRES;;CHAUSSÉE JULES CÉSAR;47285;[2.222437, 48.826646];;FRELCE5GUC;FR*SOD*E*MB33*47*1*1*_;;;;;;;;;;;;;;MO-FR 08:00-17:00;;;;;25700000325328;2020-03-12;;2022-07-12;;2023-08-05T07:12:38.333000+00:00;647d952dc515fc641ed9447a;82a9b973-31c3-4068-bee7-47ba13c18f9e;;2.222437;48.826646;40230;Sainte-Livrade-sur-Lot;; +;Belambra La Chambre d'Amour;909073372;xavier.lamyrousseau@leclerc-automobile.com;;;0612912997;LA VILLE AUX DAMES 2698 - Place du 8 mai 1945;FRS33PMB33512;FR*SOD*S*SIGE*38*2*_*_;SIGEIF - 147 AVENUE DE LA DIVISION LECLERC - ENGHIEN-LES-BAINS;;RUE DES JARDINS;47246;[2.308342, 48.974918];;FRELCEM2TY;FR*SOD*E*MB33*47*1*2*_;;;;;;;;;;;;;;Mo-Su 9:00-19:00;;;;;168242;2020-02-10;;2020-12-08;;2023-08-05T07:12:37.915000+00:00;647dd48358681965d6033561;c80cd02e-8dc8-478c-8289-04cf4d4b5819;;2.308342;48.974918;40700;Marmande;; +;Belambra Les Criques;909073371;renaud.jeanne@accor.com;;;06 17 67 06 24;AMBOISE 1688 - Rue André Huard;FRS33PMB33511;FR*SOD*S*SIGE*38*1*_*_;SIGEIF - 76 AVENUE DE VERDUN - CHATILLON;;WENDLINGEN AM NACKER;47280;[2.282806, 48.809681];;FRELCE6AXS;FR*SOD*E*MB33*48*1*2*_;;;;;;;;;;;;;;Mo-Su 8:00-12:00,Mo-Su 14:00-18:00;;;;;157869;2020-05-19;;2016-11-29;;2023-08-05T07:12:37.500000+00:00;647e0e36d6a31bc97fe0dfd0;830c1228-5b91-405c-9fb9-529b3c8f0fa3;;2.282806;48.809681;40530;Le Passage;; +;BigMat Clermont L'Hérault;818110629;thierry.mocchetti@caravenue.com;;;0675357392;SONELOG CHÂTEAUBOURG 4;FRS33PMB33411;FR*SOD*S*SIGE*38*3*_*_;SIGEIF - 2 RUE DE LA COUSSAYE - ENGHIEN-LES-BAINS;;RUE DES OSIERS;47252;[2.301669, 48.966448];;FRELCEN7MM;FR*SOD*E*MB33*48*1*1*_;;;;;;;;;;;;;;Mo-Fr 8:00-17:00;;;;;159118;2019-12-27;;2016-09-30;;2023-08-05T07:12:37.101000+00:00;647efb80ce1460a38d1dd2a4;23188445-8506-49ac-9a29-69e1de50f082;;2.301669;48.966448;40130;Le Mas-d'Agenais;; +;Bitche, Intermarché;007220338;alexandre.demunck@mamashelter.com;;;0565490240;RICHELIEU 16553 - Route de Chinon;FRS33PMB33412;FR*SOD*S*SIGE*38*4*_*_;SIGEIF - 97 BOULEVARD DE VANVES - CHATILLON;;RUE VINCENT VAN GOGH;47157;[2.282812, 48.809693];;FRELCEDZLL;FR*SOD*E*MB33*130*1*2*_;;;;;;;;;;;;;;Tu-Fr 12:00-14:00,Su 12:00-15:00;;;;;164467;2019-12-12;;2016-10-28;;2023-08-05T07:12:36.628000+00:00;647f1e5c5021d9b17af386e2;6f943e78-4b06-45bb-8f4a-d8184952b1e8;;2.282812;48.809693;40180;Layrac;; +;Bordeaux Métropole accéléré;387523038;H1625-GM@accor.com;;;0980770104;SUSAINTCONTEST BORNE 2;FRS33PMB33331;FR*SOD*S*SIGE*38*6*_*_;SIGEIF - 21 AVENUE DE PARIS - CHATILLON;;PASSAGE DE LA GRANDE COUR;47201;[2.289905, 48.804568];;FRELCEC3D7;FR*SOD*E*MB33*123*1*2*_;;;;;;;;;;;;;;Mo-Thu 8:15-17:30;;;;;155189;2020-02-11;;2016-12-01;;2023-08-05T07:12:36.234000+00:00;648758ebd41d68c851fa15c4;081b5317-2302-40c7-a7ba-634afc97ac4d;;2.289905;48.804568;40290;Lavardac;; +;Bordeaux Métropole lent;402682991;x.alexandre.rothacker@orange.fr;;;0812041592;SAINT CYR SUR LOIRE 16781 - rue Maurice Genevoix;FRS33PMB33332;FR*SOD*S*SIGE*38*5*_*_;SIGEIF - RUE PRUVOT - VANVES;;RUE JOHN LENNON;47159;[2.284057, 48.822254];;FRELCEYYHH;FR*SOD*E*MB33*131*1*1*_;;;;;;;;;;;;;;Mo-Su 08:00-23:00;;;;;166905;2023-06-01;;2016-10-06;;2023-08-05T07:12:35.950000+00:00;647f31090324fff08b760ed1;a7acea98-a42c-49be-bd90-ff75557d653f;;2.284057;48.822254;40270;Lauzun;; +;Bigmat Cusset;912904109;treced@orange.fr;;;0969390239;SONEPAR NANCY;FRS33PMB33312;FR*SOD*S*SIGE*39*3*_*_;SIGEIF - 14 RUE LARMEROUX - VANVES;;AVENUE ARISTIDE MAILLOL;47145;[2.280009, 48.816557];;FRELCERV58;FR*SOD*E*MB33*153*1*1*_;;;;;;;;;;;;;;8:00-19:00;;;;;1,54E+13;2023-03-14;;2016-09-26;;2023-08-05T07:12:35.658000+00:00;6481e8252c3f68c24e26fe24;bd61f36e-e2ee-4071-99d5-faa2b030941a;;2.280009;48.816557;40480;Laroque-Timbaut;; +;BigMat Maringues;522614148;H2192-GL3@ACCOR.COM;;;+33 1 76 34 09 41;CHARNIZAY 1690;FRS33PMB33311;FR*SOD*S*SIGE*39*1*_*_;SIGEIF - 34 RUE ANTOINE FRATACCI - VANVES;;RUE ALBERT ALLINE;47143;[2.288422, 48.821077];;FRELCEZFEH;FR*SOD*E*MB33*151*1*1*_;;;;;;;;;;;;;;Mo-fr 8:00-12:00,13:00-17:00;;;;;156539;2023-03-17;;2016-09-09;;2023-08-05T07:12:35.350000+00:00;6481efd90e0fc4ec9de6de47;1c220f34-626c-4c90-8daf-48d158218b5c;;2.288422;48.821077;40150;Montayral;; +;BigMat Thiers;309553154;H0858-GM@accor.com;;;0681114330;CIVRAY DE TOURAINE 1691 - Salle des fêtes;FRS33PMB33212;FR*SOD*S*SIGE*41*2*_*_;SIGEIF - PARKING DES ACACIAS - MARCOUSSIS;;PLACE SALVADOR ALLENDE;47142;[2.232979, 48.642979];;FRELCEGBLC;FR*SOD*E*MB33*152*1*1*_;;;;;;;;;;;;;;Mo-FR 09:00-17:00;;;;;158271;2023-04-05;;2016-08-31;;2023-08-05T07:12:34.938000+00:00;6482dee36f59398677ee80e2;6ae62ab9-1eed-4d7e-a2e4-b0031aa41c84;;2.232979;48.642979;40510;Monsempron-Libos;; +;Biofrais;320758378;l.noble@warning.fr;;;0390202636;MONTLOUIS SUR LOIRE 1693 - Rue Leonard de Vinci;FRS33PMB33211;FR*SOD*S*SIGE*39*2*_*_;SIGEIF - 40 RUE DE MEUDON - BOULOGNE-BILLANCOURT;;PLACE DES 7 FONTAINES;47138;[2.241986, 48.828194];;FRELCEKHYA;FR*SOD*E*MB33*150*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00, Mo-Fr 14:00-18:00;;;;;75011;2023-07-13;;2016-06-15;;2023-08-05T07:12:34.291000+00:00;6482fcded85cb00625cfd926;999080f2-3b7d-4404-9c59-91d6a9abbeca;;2.241986;48.828194;40460;Monflanquin;; +;BMW Mini - Station 7;380363291;H7413-Te@accor.com;;;0688405729;MONTLOUIS SUR LOIRE 1694 - Maison communautaire;FRS33PMB33112;FR*SOD*S*SIGE*39*5*_*_;SIGEIF - 121 AVENUE ANDRE MORIZET - BOULOGNE-BILLANCOURT;;SQUARE GEORGES VALLEREY;47185;[2.229152, 48.840172];;FRELCET2H8;FR*SOD*E*MB33*155*1*1*_;;;;;;;;;;;;;;Mo-Sa 08:30-17:00;;;;;167996;2023-05-12;;2016-06-27;;2023-08-05T07:12:33.894000+00:00;648304bef97528efa30d251d;2639fa25-4ef6-4f53-ba0c-da1bcfae009b;;2.229152;48.840172;40320;Moirax;; +;BMW Namur;394623235;ducrocq.francois.pro@gmail.com;;;Non concerné;NAZELLES NEGRON 1696 - Boulevard de l'Avenir;FRS33PMB33111;FR*SOD*S*SIGE*39*4*_*_;SIGEIF - 80 RUE DE SEVRES - BOULOGNE-BILLANCOURT;;AVENUE DE BOISSY;47179;[2.230145, 48.831536];;FRELCE5AW8;FR*SOD*E*MB33*150*1*2*_;;;;;;;;;;;;;;Mo-Sa 10:00-19:00;;;;;158250;2023-04-20;;2018-07-20;;2023-08-05T07:12:33.627000+00:00;648326a01672db58327c4920;129ff4e7-9695-4e33-a5a0-672148d2e976;;2.230145;48.831536;40280;Miramont-de-Guyenne;; +;BMW Nogent la Phaye;898582432;H5484-gm@accor.com;;;0662093978;SONEPAR ST-MARTIN-DE-RE;FRS33PMB331212;FR*SOD*S*SIGE*40*5*_*_;SIGEIF - 35 BOULEVARD FERDINAND HOSTACHY - CROISSY-SUR-SEINE;;D928;47175;[2.143236, 48.878289];;FRELCELBWH;FR*SOD*E*MB33*156*1*1*_;;;;;;;;;;;;;;Mo-Sa 09:30-12:00,Mo-Sa 14:00-18:30,Su 10:00-12:30,Su 14:30-18:30;;;;;1,55E+13;2022-11-07;;2016-11-04;;2023-08-05T07:12:33.210000+00:00;64834c5198108a75372663da;b457845b-75db-4afe-a74d-e1f400b7d9d9;;2.143236;48.878289;40430;Mézin;; +;BMW Puilboreau;410561666;castres.direction@gmail.com;;;0680074537;CHÂTEAU RENAULT 1700 - Parking rue Gambetta;FRS33PMB331211;FR*SOD*S*SIGE*40*3*_*_;SIGEIF - 20 AVENUE DU GENERAL DE GAULLE - CROISSY-SUR-SEINE;;RUE LADY ASHBURTON;47169;[2.140268, 48.880798];;FRELCEX4NL;FR*SOD*E*MB33*144*1*2*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00,Sa 09:00-12:00;;;;;159105;2020-11-12;;2016-12-22;;2023-08-05T07:12:27.764000+00:00;64871d67e416730eb500141f;430c2423-82fb-448a-b511-96ed69ee6fcc;;2.140268;48.880798;40990;Meilhan-sur-Garonne;; +;BMW Reims;500754130;h0714-gm@accor.com;;;01 81 73 03 50;Mirecourt;FRS33PMB331311;FR*SOD*S*SIGE*40*1*_*_;SIGEIF - 1 CHEMIN DE RONDE - CROISSY-SUR-SEINE;;MAIL HENRI DUNANT;47168;[2.119152, 48.887603];;FRELCE6WH8;FR*SOD*E*MB33*131*1*2*_;;;;;;;;;;;;;;Mo-Fr 07:30-12:00,Mo-Fr 13:30-18:00,Th 07:30-12:00;;;;;157873;2022-10-21;;2016-12-07;;2023-08-05T07:12:27.410000+00:00;6487298b58a7a84e04bb8301;8b70a8be-6bdf-4b5f-a69b-48d434b5fef2;;2.119152;48.887603;40170;Boé;; +;BMW Saint Lô;775688732;h0691-gm@accor.com;;;0490673411;CADETEL BORNE PARKING;FRS33PMB331312;FR*SOD*S*SIGE*40*2*_*_;SIGEIF - 24 BOULEVARD DE LA REPUBLIQUE BOULOGNE-BILLANCOURT - BOULOGNE-BILLANCOURT;;CHEMIN DES AVOLLÉES;47167;[2.254615, 48.832364];;FRELCEQ26U;FR*SOD*E*MB33*142*1*1*_;;;;;;;;;;;;;;06:00-00:00;;;;;164730;2022-08-30;;2017-01-04;;2023-08-05T07:12:26.549000+00:00;6487370da6f180c52d169011;58afe4a7-4c1b-4fe9-8dc3-16c7feec505b;;2.254615;48.832364;40120;Casseneuil;; +;BMW Saint-Quentin;315708974;H7011-gm@accor.com;;;;Logis Belle Hôtel - 59270 - 2;FRS33PMB331412;FR*SOD*S*SIGE*40*4*_*_;SIGEIF - RUE FINOT - MARCOUSSIS;;BOULEVARD MAURICE BERTEAUX;47165;[2.230529, 48.640338];;FRELCEDC4H;FR*SOD*E*MB33*142*1*2*_;;;;;;;;;;;;;;mo-fr09:00-12:30,mo-fr14:00-18:00;;;;;167019;2022-10-19;;2016-11-30;;2023-08-05T07:12:26.104000+00:00;64873c35e33c8ee7e55ce510;6cd2205b-5de7-4458-af56-7305e3170492;;2.230529;48.640338;40600;Damazan;; +;BMW Soissons;819501768;celinebidard@fbservice.fr;;;;SAINT LAURENT EN GATINES 1581;FRS33PMB331411;FR*SOD*S*SIGE*41*3*_*_;SIGEIF - 10 RUE DE LA VERRERIE - MEUDON;;ALLÉE DE CORMEILLES;47031;[2.234965, 48.820297];;FRELCEUSP8;FR*SOD*E*MB33*143*1*2*_;;;;;;;;;;;;;;Mo-Fr 00:00-12:00,Mo-Fr 12:00-23:59,Th 00:00-23:59;;;;;174549;2022-11-25;;2016-12-06;;2023-08-05T07:12:25.705000+00:00;641c0fb4eccb817b83c57af5;86bf5232-c742-47e8-b72f-9784fe832a68;;2.234965;48.820297;40140;Colayrac-Saint-Cirq;; +;BMW Châlons-en-Champagne;317804144;Jean-Michel.LIETTA@accor.com;;;;SUPER U 72170 BORNE 2;FRS33PMB331512;FR*SOD*S*SIGE*41*1*_*_;SIGEIF - 12 RUE AUGUSTE SIMON - MAISONS-ALFORT;;RUE DU LIEUTENANT GEORGES KEISER;47049;[2.427408, 48.802789];;FRELCEAFL8;FR*SOD*E*MB33*143*1*1*_;;;;;;;;;;;;;;Mo-Fr 8:30-17:00;;;;;166579;2022-09-09;;2019-08-01;;2023-08-05T07:12:25.205000+00:00;6419cf434cf95cafb51055c3;6de802b7-6249-4e9f-be63-68901101adec;;2.427408;48.802789;40190;Cocumont;; +;BMW Compiègne;200056844;daviddassin@yahoo.fr;;;;COURVILLE SUR EURE - 1 Rue Des Planches - 137731;FRS33PMB333311;FR*SOD*S*SIGE*41*5*_*_;SIGEIF - PARKING ESPACE SAINT EXEPURY - WISSOUS;;ALLÉE JEAN MOULIN;47078;[2.324704, 48.73466];;FRELCE3GVQ;FR*SOD*E*MB33*144*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:00-12:00,Mo-Fr 14:00-18:00, Th 08:00-18:00;;;;;158802;2022-10-26;;2022-12-12;;2023-08-05T07:12:24.588000+00:00;6353b63ac72714106e9ce0ac;19555c41-6591-40d2-9a6f-465d0d41079d;;2.324704;48.73466;40160;Clairac;; +;BMW Distribution - Vélizy public;255002883;hb0l8-gm@accor.com;;;;VARIZE - Rue du Châteaux - 130758;FRS33PMB333312;FR*SOD*S*SIGE*41*4*_*_;SIGEIF - PARKING RELAIS FOURCADE - MONTSOULT;;RUE DU CHÂTEAU;47069;[2.320821, 49.067314];;FRELCEB2KP;FR*SOD*E*MB33*145*1*1*_;;;;;;;;;;;;;;Mo-Fr 08:00-19:01;;;;;159102;2022-11-03;;2017-05-16;;2023-08-05T07:12:24.113000+00:00;638f231b521c6d54411fcfb2;13956ab9-e28d-4b52-92d7-34eb5c2ad88b;;2.320821;49.067314;40220;Caudecoste;; +;BMW Granville;200083640;H0368-GM@accor.com;;;;MERCK SITES EUR P4-02;FRS33PMB333411;FR*SOD*S*SIGE*52*1*_*_;SIGEIF - 3 RUE DES TILLEULS - MONTSOULT;;RUE CHARLES DE GAULLE;47068;[2.307657, 49.06973];;FRELCE47MK;FR*SOD*E*MB33*149*1*1*_;;;;;;;;;;;;;;Mo-Su 08:00-08:00;;;;;167179;2022-10-28;;2016-09-27;;2023-08-05T07:12:23.681000+00:00;63934c5fb39223bcb334da1d;d6d00e48-97e1-4615-b7f6-5600ca563de6;;2.307657;49.06973;40390;Castillonnès;; +;BMW Magny-Cours public;215005026;lionel.chauvet@energie28.fr;;;;MAINVILLIERS - Rue de la république - 137395;FRS33PMB333412;FR*SOD*S*SIGE*53*1*_*_;SIGEIF - 30 RUE MARCEL BONTEMPS - BOULOGNE-BILLANCOURT;;217 RUE DE VERSAILLES;47065;[2.240936, 48.826296];;FRELCEQLVW;FR*SOD*E*MB33*145*1*2*_;;;;;;;;;;;;;;Mo,Tu,We,Th,Fr,Sa 08:00-20:00;;;;;173164;2020-11-16;;2014-03-18;;2023-08-05T07:12:23.235000+00:00;639348a2316669375089fce8;fb32b4a8-588f-408a-93d9-1e08e58570f9;;2.240936;48.826296;40440;Castelmoron-sur-Lot;; +;BMW Mareuil-les-Meaux;340119411;hippo.villenave@groupeflo.franchises.fr;;;;CANGEY 1643;FRS33PMB335112;FR*SOD*S*SIGE*67*2*_*_;SIGEIF - 2 RUE HENRI MARTIN - BOULOGNE-BILLANCOURT;;AVENUE GÉNÉRAL DE GAULLE;47060;[2.252363, 48.83684];;FRELCER7CZ;FR*SOD*E*MB33*146*1*1*_;;;;;;;;;;;;;;Mo,Tu,We,Th,Fr,Sa 08:00-18:59;;;;;154932;2022-10-05;;2016-09-08;;2023-08-05T07:12:22.706000+00:00;6391c79579e5b9c7e13d11da;380e76c6-d557-45d6-8893-18d0865685c7;;2.252363;48.83684;40465;Casteljaloux;; +;BMW, Dreux;901985804;contact@l2b-avocats.fr;;;;CHINON 1644 - Parking de la forteresse;FRS33PMB335111;FR*SOD*S*SIGE*65*6*_*_;SIGEIF - 66 BOULEVARD RODIN - ISSY-LES-MOULINEAUX;;NONE;47057;[2.258038, 48.819081];;FRELCED2V8;FR*SOD*E*MB33*146*1*2*_;;;;;;;;;;;;;;Mo,Tu,We,Su 07:00-21:00,Th,Fr,Sa 07:00-23:45;;;;;156807;2021-01-29;;2017-01-27;;2023-08-05T07:12:22.361000+00:00;639056d1c202fa02eaa1ff55;87fc91a9-00c2-4c8e-bd0d-72df29dbfbb3;;2.258038;48.819081;40090;Castelculier;; +;BUROGEST Office Park;798043659;damien.defossez@groupe-comelec.com;;;;NOIZAY 1646;FRS33PMB335211;FR*SOD*S*SIGE*65*5*_*_;SIGEIF - RUE EMILE ZOLA - PIERRELAYE;;RUE ANDRÉ GUILLAUMIE;47054;[2.1413, 49.0223];;FRELCEEAKF;FR*SOD*E*MB33*148*1*1*_;;;;;;;;;;;;;;Mo,Tu,We,Th,Fr,Sa 08:00-19:00;;;;;158536;2021-04-20;;2016-06-30;;2023-08-05T07:12:22.024000+00:00;639043d69f89c4e02e7aa33e;9b6faca3-8527-49ad-982e-f24bcba68309;;2.1413;49.0223;40240;Dausse;; +;BUT - ACTION Vernon;539500546;hotel.orchidees@wanadoo.fr;;;;RESTIGNE 1701;FRS33PMB335212;FR*SOD*S*SIGE*66*4*_*_;SIGEIF - MEDIATHEQUE - SAINT-LEU-LA-FORET;;GRANDE RUE;47052;[2.238, 49.0107];;FRELCEF443;FR*SOD*E*MB33*148*1*2*_;;;;;;;;;;;;;;Mo,Tu,We,Th,Fr 08:00-17:00;;;;;157535;2023-07-26;;2016-06-28;;2023-08-05T07:12:21.557000+00:00;63a43d14831ccafb69b537e2;cb182625-8605-4d84-8932-cfa62a690487;;2.238;49.0107;40200;Gontaud-de-Nogaret;; +;Bagatelle;537855009;larecharge@ampmetropole.fr;;;;LIGUEIL 2579 - Allée des Cyclamens;FRS33PMB335311;FR*SOD*S*SIGE*66*1*_*_;SIGEIF - HOTEL DES IMPOTS - SAINT-LEU-LA-FORET;;PARKING TERRE NEUVE, MEUDON;47051;[2.2484, 49.0057];;FRELCELYCG;FR*SOD*E*MB33*149*1*2*_;;;;;;;;;;;;;;;;;;;169476;2023-07-12;;2016-10-12;;2023-08-05T07:12:21.089000+00:00;638e12a4c422a602a6280726;f96e4894-ed6a-4c09-aebe-f0e24aea8a8a;;2.2484;49.0057;40550;Puymirol;; +;Baldenheim;793042086;bienvenue@ccvba.fr;;;;CHÂTEAU RENAULT 1842 - Gare Boulevard National;FRS33PMB335312;FR*SOD*S*SIGE*66*6*_*_;SIGEIF - PARKING DU JUBILE - SAINT-LEU-LA-FORET;;RUE DU GÉNÉRAL LECLERC PARKING CENTRE VILLE;47079;[2.25216, 49.0132];;FRELCEZYMZ;FR*SOD*E*MB33*135*1*2*_;;;;;;;;;;;;;;;;;;;156401;2023-06-29;;2016-10-04;;2023-08-05T07:12:20.580000+00:00;638a03534353630044710a70;2d14f65f-2193-4a8e-8e03-f31e2946f23b;;2.25216;49.0132;40660;Sauveterre-la-Lémance;; +;Barbaroux Golf Hôtel & Spa;324577816;INFOSMED13@SMED13.FR;;;;SONEPAR PONTARLIER;FRS33PMB335411;FR*SOD*S*SIGE*66*3*_*_;SIGEIF - POSTE - SAINT-LEU-LA-FORET;;RUE MARTEL;47110;[2.24271, 49.0197];;FRELCEF56C;FR*SOD*E*MB33*138*1*1*_;;;;;;;;;;;;;;;;;;;153468;2020-05-27;;2017-09-06;;2023-08-05T07:12:19.468000+00:00;638858d8f71cc03cc1b282b8;1116a7c4-e2ff-4974-b138-d74011f135ae;;2.24271;49.0197;40000;Monbahus;; +;Bati Colman;778151290;sieg63@sieg63.com;;;;CHINON 2572 - Parking de la gare;FRS33PMB335412;FR*SOD*S*SIGE*66*2*_*_;SIGEIF - PARKING GARE NORD - SAINT-LEU-LA-FORET;;RUE CLAUDE MONET;47217;[2.2424, 49.0158];;FRELCERW8K;FR*SOD*E*MB33*138*1*2*_;;;;;;;;;;;;;;;;;;;174696;2020-05-26;;2017-01-19;;2023-08-05T07:12:19.012000+00:00;63849cea3d97cf8fc490d413;51c09882-6127-4948-8a9f-831d57a9a669;;2.2424;49.0158;40370;Duras;; +;BREWSTER SCA Le Millénaire;451611909;info.request@chargepoly.com;;;;NEUILLE LE LIERRE 2575 - Place de la mairie;FRS33PMB335512;FR*SOD*S*SIGE*66*5*_*_;SIGEIF - PARKING PISCINE - PIERRELAYE;;RUE DU MARECHAL JOFFRE;47292;[2.16317, 49.0203];;FRELCEC4D8;FR*SOD*E*MB33*137*1*1*_;;;;;;;;;;;;;;;;;;;156950;2020-06-09;;2022-12-06;;2023-08-05T07:12:18.626000+00:00;63848003147b1e5d3308e9b9;3c9d6842-de2e-4f44-bc96-666f50cf9515;;2.16317;49.0203;40500;Fourques-sur-Garonne;; +;BMW-MINI Flers de l'Orne;402143747;contact@evecarplug.com;;;;LA TOUR SAINT GELIN 2576 - Rue de l'Eglise;FRS33PMB335511;FR*SOD*S*SIGE*67*4*_*_;SIGEIF - SALLE POLYVALENTE - PIERRELAYE;;PLACE DU GÉNÉRAL LECLERC;47170;[2.15733, 49.0218];;FRELCELXGP;FR*SOD*E*MB33*137*1*2*_;;;;;;;;;;;;;;;;;;;167006;2020-06-03;;2017-08-29;;2023-08-05T07:12:18.238000+00:00;6396d6203bde5c47f445080d;f4671d62-b927-410f-be22-2ff05dbca0b7;;2.15733;49.0218;40400;Foulayronnes;; +;BORDEAUX SUD AUTOMOBILES;448848283;frederic.bourdy@spie.com;;;;BEAUMONT LA RONCE 2577 - Rue des Prés;FRS33PMB335611;FR*SOD*S*SIGE*67*3*_*_;SIGEIF - ECOLE LE VILLAGE - SAINT-LEU-LA-FORET;;AVENUE DU GÉNÉRAL LECLERC;47086;[2.24591, 49.0186];;FRELCESBJ8;FR*SOD*E*MB33*136*1*2*_;;;;;;;;;;;;;;;;;;;157007;2020-06-10;;2016-09-20;;2023-08-05T07:12:17.938000+00:00;6396ec8ce14adb9d0ffb46ea;7731344c-dc51-4c86-a8bd-d2f31871c699;;2.24591;49.0186;40310;Feugarolles;; +;BOREAL AUTOMOBILES;898839386;hippo.pessac@groupeflo.franchises.fr;;;;SONEPAR AVRANCHES;FRS33PMB335612;FR*SOD*S*SIGE*67*1*_*_;SIGEIF - PARKING DE LA GARE - PIERRELAYE;;RUE VICTOR HUGO;47101;[2.1552, 49.0194];;FRELCE3SJY;FR*SOD*E*MB33*135*1*1*_;;;;;;;;;;;;;;;;;;;170677;2020-04-15;;2015-07-21;;2023-08-05T07:12:17.441000+00:00;6396f8d36be195f13ddf6f8a;3e66c390-e484-472b-9c6a-5bac58965a38;;2.1552;49.0194;40330;Estillac;; +;Bordeaux Métropole rapide;896750254;cpo@lumi-in.fr;;;;VERETZ 1698;FRS33PMB335711;FR*SOD*S*SIGE*67*6*_*_;SIGEIF - PARKING PICASSO - MONTIGNY-LES-CORMEILLES;;RUE DE PONCEAU;47100;[2.1991, 48.9966];;FRELCEHV9D;FR*SOD*E*MB33*134*1*1*_;;;;;;;;;;;;;;;;;;;157355;2020-04-16;;2016-07-13;;2023-08-05T07:12:17.120000+00:00;639705a91b82bacc0dd467b6;2762c184-dd4b-45b5-a2e1-35c91080d3b2;;2.1991;48.9966;40350;Aiguillon;; +;BMW Cherbourg-en-Cotentin;851287862;europa.hotel.entretien@gmail.com;;;;BOUSSAY 2681 - Rue Notre Dame des Champs;FRS33PMB335712;FR*SOD*S*SIGE*67*5*_*_;SIGEIF - PARKING GRANDE RUE - MONTIGNY-LES-CORMEILLES;;RUE EUGENE VALLERAND;47097;[2.18857, 48.9854];;FRELCEM5T2;FR*SOD*E*MB33*139*1*1*_;;;;;;;;;;;;;;;;;;;165907;2020-06-14;;2016-11-03;;2023-08-05T07:12:16.727000+00:00;639742b1c53790c04e280e2f;220e4531-160e-42de-a334-ce6c255ce8b7;;2.18857;48.9854;40380;Buzet-sur-Baïse;; +;BFC-SICECO;412235319;cstpg@mairie-bouzonville.fr;;;;NAZELLES NEGRON 1287 - Avenue du Centre;FRS33PMB335812;FR*SOD*S*SIGE*68*1*_*_;SIGEIF - AVENUE DES TILLEULS - MONTIGNY-LES-CORMEILLES;;AVENUE GABRIEL PÉRI;47091;[2.1977, 49.007];;FRELCE5J9L;FR*SOD*E*MB33*134*1*2*_;;;;;;;;;;;;;;;;;;;169175;2020-08-06;;2016-12-09;;2023-08-05T07:12:16.347000+00:00;63988c071b8b3844674819fe;8aa4c680-e616-4357-846b-de2a4813a1f3;;2.1977;49.007;40360;Virazeil;; +;BFC-SIEEEN;521528141;jb@brasserieladilettante.com;;;;LUZE 2682 - Parking derrière la mairie;FRS33PMB335811;FR*SOD*S*SIGE*69*1*_*_;SIGEIF - ARISTIDE MAILLOL - MONTIGNY-LES-CORMEILLES;;BOULEVARD CAMÉLINAT;47004;[2.20313, 48.994];;FRELCEYUB8;FR*SOD*E*MB33*133*1*2*_;;;;;;;;;;;;;;;;;;;167664;2020-06-11;;2016-12-02;;2023-08-05T07:12:15.953000+00:00;639c0fbe84cf0fba810dfd00;d00cbec2-da39-4c19-882a-91c087f6e710;;2.20313;48.994;40250;Villeréal;; +;BFC-SDEY - CITEOS Viry Châtillon Rapide;324079086;bornederecharge@herve-thermique.com;;;;CINQ MARS LA PILE 2685 - Z.A. Actiloire;FRS33PMB335911;FR*SOD*S*SIGE*70*2*_*_;SIGEIF - CHAUSSEE JULES CESAR - LE PLESSIS-BOUCHARD;;RUE GEORGES CORETE;47043;[2.23283, 49.0022];;FRELCEEHKV;FR*SOD*E*MB33*133*1*1*_;;;;;;;;;;;;;;;;;;;173217;2016-02-09;;2017-06-14;;2023-08-05T07:12:15.590000+00:00;63a0189d4a04242d339b14e1;2cd2075c-6534-42d6-80b5-dc62b74e9356;;2.23283;49.0022;40410;Bias;; +;BFC-SYDESL;517676805;bruno.fort@ca-tourainepoitou.fr;;;;SAINT ANTOINE DU ROCHER 2686 - R. Seriniere;FRS33PMB335912;FR*SOD*S*SIGE*71*3*_*_;SIGEIF - PARKING DE LA GARE - SANNOIS;;BOULEVARD LOUISE MICHEL;47326;[2.2633, 48.9701];;FRELCES6EF;FR*SOD*E*MB33*132*1*1*_;;;;;;;;;;;;;;;;;;;156833;2021-03-24;;2019-10-02;;2023-08-05T07:12:15.204000+00:00;63a01aeadab48eb24bcdc254;f0d663e1-f844-43c5-9357-1914fce2e286;;2.2633;48.9701;38480;Beauville;; +;BMW Beauvais;422848515;espaceautocournon@orange.fr;;;;BEAUMONT EN VERON 2690 - Rue du Parc;FRS33PMB336011;FR*SOD*S*SIGE*71*6*_*_;SIGEIF - PLACE DES 7 FONTAINES - TAVERNY;;PLACE DE LA LIBÉRATION;47324;[2.2126, 49.0271];;FRELCEF299;FR*SOD*E*MB33*132*1*2*_;;;;;;;;;;;;;;;;;;;169657;2017-07-28;;2016-08-18;;2023-08-05T07:12:14.888000+00:00;63a0236a8d9f12088a66be4b;33b5173e-bc81-4e5a-8dbe-39222b9f40ee;;2.2126;49.0271;62147;Villeneuve-sur-Lot;; +;BMW Chantilly;829959089;contact@brasseriecastelain.com;;;;SAINT CYR SUR LOIRE 1838 -Parking Guy Raynaud;FRS33PMB336012;FR*SOD*S*SIGE*71*2*_*_;SIGEIF - PARKING DE LA PISCINE ET DE LA POSTE - TAVERNY;;24 AVENUE DE LA RÉSISTANCE;47027;[2.2108, 49.0173];;FRELCEUB48;FR*SOD*E*MB33*139*1*2*_;;;;;;;;;;;;;;;;;;;159127;2021-06-22;;2020-03-01;;2023-08-05T07:12:14.509000+00:00;63a039004e2d19edadf4b10d;4eef5adb-9151-4533-8ad8-7db7111eeace;;2.2108;49.0173;21000;Astaffort;; +;BMW Charleville-Mézières;750327231;rouxelmarine@wanadoo.fr;;;;MANOIR LE ROURE BORNE 2;FRS33PMB336111;FR*SOD*S*SIGE*71*4*_*_;SIGEIF - PARKING GYMNASE - TAVERNY;;PLACE DE LA RÉSISTANCE;47025;[2.20446, 49.0115];;FRELCEUZE5;FR*SOD*E*MB33*136*1*1*_;;;;;;;;;;;;;;;;;;;159129;2021-09-20;;2014-06-30;;2023-08-05T07:12:14.256000+00:00;63a03fbaad360ad8bcaa45f9;f256430c-d05f-4c6d-b63b-05129a7fce50;;2.20446;49.0115;21800;Bouglon;; +;BMW Amiens;797742442;levaroy@orange.fr;;;;LA VILLE AUX DAMES 1724 - Jacqueline Auriol;FRS33PMB336112;FR*SOD*S*SIGE*71*1*_*_;SIGEIF - PARKING DE LA MAIRIE - TAVERNY;;PARKING JACOBSEN;47323;[2.2249, 49.0264];;FRELCED8KN;FR*SOD*E*MB33*140*1*1*_;;;;;;;;;;;;;;;;;;;151704;2021-03-30;;2019-05-02;;2023-08-05T07:12:13.949000+00:00;63a1c2f226ac51f68f4ddf36;a64688ec-5137-4260-9328-cf19f7adb4c0;;2.2249;49.0264;58470;Bon-Encontre;; +;BMTI Beaucouzé;441361516;assistance-commerciale@metropolis-recharge.fr;;;;SONEPAR VULAINES;FRS33PMB336211;FR*SOD*S*SIGE*71*5*_*_;SIGEIF - GARE PARKING SUD - TAVERNY;;61 AVENUE DE LA RÉSISTANCE;47015;[2.221, 49.0254];;FRELCEGH29;FR*SOD*E*MB33*141*1*2*_;;;;;;;;;;;;;;;;;;;157872;2021-03-31;;2022-07-07;;2023-08-05T07:12:13.644000+00:00;637f50265f6cfe3bc33cbfc1;249b4aa2-01a7-406a-a3f2-bdd3a03a59d7;;2.221;49.0254;03170;Tournon-d'Agenais;; +;BH Atelier;803965110;romainmarcon@outlook.fr;;;;EPEIGNE LES BOIS 1737;FRS33PMB336212;FR*SOD*S*SIGE*65*2*_*_;SIGEIF - GARE PARKING NORD - TAVERNY;;RUE JEAN JAURÈS;47034;[2.2215, 49.0258];;FRELCEWDAY;FR*SOD*E*MB33*141*1*1*_;;;;;;;;;;;;;;;;;;;159188;2021-04-01;;2016-12-15;;2023-08-05T07:12:13.242000+00:00;637e36ecd7312cdc8c43b998;f413ac0f-02e9-45db-b909-8132b2361118;;2.2215;49.0258;52800;Cancon;; +;Chiche Plomberie;750986200;contact@e55c.com;;;;Aire de Changis sur Marne;FRS33PMB336312;FR*SOD*S*SIGE*65*1*_*_;SIGEIF - PARKING DU MARCHE - SANNOIS;;RUE SAINT-EXUPÉRY;47032;[2.25721, 48.9715];;FRELCEWW2T;FR*SOD*E*MB33*140*1*2*_;;;;;;;;;;;;;;;;;;;155190;2021-03-25;;2018-07-19;;2023-08-05T07:12:12.942000+00:00;636bae3334ef84eb40d3d9e8;8789a15f-354c-4dd7-b1c6-02292c231827;;2.25721;48.9715;26800;Ballainvilliers;; +;Chocolaterie de Puyricard public;881560676;accueil@sydev-vendee.fr;;;;DRB BORNE 1;FRS33PMB336311;FR*SOD*S*SIGE*65*3*_*_;SIGEIF - PARKING MAISON POUR TOUS - SAINT-LEU-LA-FORET;;CHEMIN DES PETITS MARAIS;47312;[2.24848, 49.0193];;FRELCEVA5N;FR*SOD*E*OAZS*222*1*2*_;;;;;;;;;;;;;;;;;;;157435;2021-03-12;;2019-07-12;;2023-08-05T07:12:12.685000+00:00;63552caeb9f683a23c570880;fc29a9b8-e1c4-4cf0-8be8-800a664cc402;;2.24848;49.0193;30320;Vauhallan;; +;Château Beauregard;217702380;energie@sdec-energie.fr;;;;RIVARENNES 1830;FRS33PMB336411;FR*SOD*S*SIGE*65*4*_*_;SIGEIF - PARKING ECOLE PASTEUR - SANNOIS;;BOULEVARD CARNOT;47048;[2.2661, 48.9686];;FRELCESPU3;FR*SOD*E*OAZS*223*1*2*_;;;;;;;;;;;;;;;;;;;164577;2021-03-10;;2016-10-05;;2023-08-05T07:12:12.328000+00:00;6356717c5fc359b5f5d7a77f;3b613e8d-9d35-4784-8424-4f4093c94d96;;2.2661;48.9686;89420;Linas;; +;Château La Grange Fort;402073597;contact@sdehg.fr;;;;NAZELLES NEGRON 1832 - Rue d'Amboise;FRS33PMB336412;FR*SOD*S*SIGE*54*2*_*_;SIGEIF - CORMEILLES - SANNOIS;;AVENUE GEORGES POMPIDOU;91044;[2.24037, 48.9686];;FRELCE6LTF;FR*SOD*E*OAZS*222*3*1*_;;;;;;;;;;;;;;;;;;;155438;2021-03-18;;2017-11-24;;2023-08-05T07:12:12.052000+00:00;6356b4b0430b7946bda1ec0e;cc6cea4e-6b83-47a7-97e0-9226da71182f;;2.24037;48.9761;86300;Orsay;; +;Château Léoube;327641361;info@jabotte.com;;;;SAINT LAURENT DE LIN 1834;FRS33PMB336511;FR*SOD*S*SIGE*58*1*_*_;SIGEIF - PARKING STADE DELAUNE - SANNOIS;;PLACE DU PÂTIS;91635;[2.2562, 48.9761];;FRELCEK5FD;FR*SOD*E*OAZS*222*1*1*_;;;;;;;;;;;;;;;;;;;151705;2016-12-13;;2016-12-12;;2023-08-05T07:12:11.701000+00:00;63570bf280e359c3e9e8ea36;963aa1dc-c1fc-4923-8cc3-76037c49abd5;;2.2562;48.9784;86160;Igny;; +;Château Paloumey;340379932;bornes.overchem@laposte.net;;;;RAW PARISGIVERNY 15;FRS33PMB335012;FR*SOD*S*SIGE*59*1*_*_;SIGEIF - PARKING JEAN MOULIN - SANNOIS;;AVENUE DU CHEMIN VERT;91339;[2.2423, 48.9784];;FRELCEMA58;FR*SOD*E*OAZS*223*3*1*_;;;;;;;;;;;;;;;;;;;157407;2016-06-09;;2016-12-14;;2023-08-05T07:12:11.198000+00:00;63596c48ddcb992cae36dd85;b907dd9b-de1d-4cf0-a4b7-79d521e42dfc;;2.2423;49.0236;86320;Saclay;; +;Château d'Artigny;444393441;gerald.seiler@sap.com;;;;SUPER U SEM BORNE 6;FRS33PMB335011;FR*SOD*S*SIGE*60*1*_*_;SIGEIF - PARKING CHATAIGNERAIE - SAINT-LEU-LA-FORET;;AVENUE MARCEL PERRIN;91471;[2.2521, 49.0236];;FRELCETXVA;FR*SOD*E*OAZS*222*3*2*_;;;;;;;;;;;;;;;;;;;156179;2016-03-04;;2016-05-27;;2023-08-05T07:12:10.874000+00:00;635a931d3aee389b1e89536d;42a53094-f8fa-481d-9eb9-bb67a82d3f44;;2.2521;49.0019;86410;Palaiseau;; +;Château de la Mentone;449170455;pascal.lhermitte@siege27.fr;;;;Baralle;FRS33PMB334912;FR*SOD*S*SIGE*61*1*_*_;SIGEIF - DE GAULLE - LE PLESSIS-BOUCHARD;;RUE DE L’ÉGLISE;91312;[2.23634, 49.0019];;FRELCE9YYG;FR*SOD*E*OAZS*223*3*2*_;;;;;;;;;;;;;;;;;;;154355;2016-03-21;;2017-01-11;;2023-08-05T07:12:10.492000+00:00;6362484fae8c7eeeb706f50e;22c3a176-4754-48a0-b4a1-70e596a920a5;;2.23634;48.818204;86340;Villebon-sur-Yvette;; +;Chez Michèle;750528960;jerome.klein2@grandnancy.eu;;;;Mâcon Saint-Albain;FRS33PMB334112;FR*SOD*S*SIGE*62*1*_*_;SIGEIF - 217 RUE DE VERSAILLES - VILLE-DAVRAY;;RUE DE LA CROIX FRILEUSE;91534;[2.165078, 48.818204];;FRELCE7YSA;FR*SOD*E*OAZS*223*1*1*_;;;;;;;;;;;;;;;;;;;154358;2016-03-23;;2016-09-07;;2023-08-05T07:12:10.158000+00:00;6364d39f4230949f88c15834;4ba1254a-f5d1-4f9d-874c-e03bd8149f19;;2.165078;48.787468;86530;Longjumeau;; +;Châteauform Le Grand Mello;215402611;contact@pha.fr;;;;JOUE LES TOURS 5907 - RUE DE LA GITONNIERE;FRS33PMB333511;FR*SOD*S*SIGE*63*6*_*_;SIGEIF - 19 AVENUE GENERAL DE GAULLE - MEUDON;;RUE DE LA RÉPUBLIQUE;91477;[2.227086, 48.787468];;FRELCEDK3J;FR*SOD*E*MB17*16*1*2*_;;;;;;;;;;;;;;;;;;;167180;2016-03-25;;2017-07-26;;2023-08-05T07:12:09.803000+00:00;6364ee3f04ee56393c439bef;6b1eb0af-1adb-4dd3-a674-fec05027e879;;2.227086;48.814263;86290;Nozay;; +;Champagne Mailly - Public;791245087;DIRECTION@GAMBUS.FR;;;;Verniolle | Super U, Parc Commercial Delta-Sud;FRS33PMB333512;FR*SOD*S*SIGE*63*4*_*_;SIGEIF - RUE WOLFENBUTTEL SEVRES;;PLACE GEORGES CLÉMENCEAU;91661;[2.213824, 48.814263];;FRELCE5PQB;FR*SOD*E*MB17*18*1*1*_;;;;;;;;;;;;;;;;;;;177401;2016-03-29;;2016-09-12;;2023-08-05T07:12:09.473000+00:00;6368bbb0ac327c8beeca95a4;216bfc48-f743-4ca1-8ba3-142edf7e8a66;;2.213824;48.9976;86400;Villejust;; +;Centre commercial Sens Sud;530797752;stephane@avomarks.fr;;;;Taponas;FRS33PMB333611;FR*SOD*S*SIGE*63*3*_*_;SIGEIF - GYMNASE GUILLAUMIE - LE PLESSIS-BOUCHARD;;AVENUE DE GRAFENBERG;91345;[2.2444, 48.9976];;FRELCETWBV;FR*SOD*E*MB17*18*1*2*_;;;;;;;;;;;;;;;;;;;167178;2016-12-08;;2016-10-19;;2023-08-05T07:12:09.156000+00:00;6368c912edd13969a2efb251;c4eda9b9-6d15-4250-bcca-3b433ec75640;;2.2444;48.799158;86330;Bures-sur-Yvette;; +;Centre de Loisirs Vétraz-Monthoux;834207672;contact@aevelec.fr;;;;WELDOM CASTRES BORNE 1;FRS33PMB333612;FR*SOD*S*SIGE*63*1*_*_;SIGEIF - 12 AVENUE DE LA DIVISION LECLERC - CHATILLON;;RUE DE MEAUX;91458;[2.284725, 48.799158];;FRELCEBVEE;FR*SOD*E*MB17*19*1*2*_;;;;;;;;;;;;;;;;;;;151707;2016-04-08;;2017-11-30;;2023-08-05T07:12:08.757000+00:00;636cfabcee2d38cc091ab92f;0b82586a-ed29-4ee1-a69a-4d8aaa37a84a;;2.284725;49.038771;86470;La Ville-du-Bois;; +;Ceres Immobilier;315501726;loisirs.acqua@orange.fr;;;;CHATEAUNEUF EN THYMERAIS - Halles - 134333;FRS33PMB333712;FR*SOD*S*SIGE*63*5*_*_;SIGEIF - 90 GRANDE RUE - BESSANCOURT;;92 AVENUE DU GÉNÉRAL LECLERC;91666;[2.218229, 49.038771];;FRELCEUM6C;FR*SOD*E*MB17*17*1*1*_;;;;;;;;;;;;;;;;;;;151706;2016-04-21;;2017-06-23;;2023-08-05T07:12:08.371000+00:00;637ca9cf1558ceb123c4de41;f80f0f91-2f02-4a48-8389-c7df99be0c27;;2.218229;48.807732;86600;Massy;; +;Certas;822373742;info@ispo-group.com;;;;Winnezeele;FRS33PMB333711;FR*SOD*S*SIGE*63*2*_*_;SIGEIF - PARKING TERRE NEUVE MEUDON - MEUDON;;RUE FRANCIS PRÉSSENSÉ;91122;[2.234801, 48.807732];;FRELCESZBG;FR*SOD*E*MB17*17*1*2*_;;;;;;;;;;;;;;;;;;;157935;2016-04-10;;2020-07-16;;2023-08-05T07:12:07.936000+00:00;6372606bcfd272034605fe4e;e1d1112b-9239-4faa-a3f4-2bfb3004d5cd;;2.234801;48.9843;86310;Montlhéry;; +;Certie;390825354;sas.adam@wanadoo.fr;;;;Périers;FRS33PMB333812;FR*SOD*S*SIGE*64*6*_*_;SIGEIF - 108 RUE DU GENERAL LECLERC PARKING CENTRE VILLE;;RUE RENÉ SAHORS;91665;[2.22748, 48.9843];;FRELCELVAZ;FR*SOD*E*MB17*15*1*2*_;;;;;;;;;;;;;;;;;;;#N/A;2016-04-04;;2017-08-28;;2023-08-05T07:12:07.511000+00:00;637287d7e1df1ad900fdd0d5;2b29dde7-ff95-4b35-81dc-a35467b596ed;;2.22748;49.112389;86190;Saint-Aubin;; +;Chaboud Automobiles;823002811;aurelien@evasion-moto.fr;;;;Sarthe Nord;FRS33PMB333811;FR*SOD*S*SIGE*64*4*_*_;SIGEIF - 45 GRANDE RUE - LISLE-ADAM;;RUE FAUBERT;91377;[2.218401, 49.112389];;FRELCE6MSS;FR*SOD*E*MB17*16*1*1*_;;;;;;;;;;;;;;;;;;;159120;2016-09-21;;2016-10-20;;2023-08-05T07:12:07.117000+00:00;63735db6a6e9ea5148003f98;6df89f28-547e-4567-995a-3b31fbcdbad2;;2.218401;49.111305;86350;Gif-sur-Yvette;; +;Champagne Castelnau;343756904;contact@lerelaisdelaperle.fr;;;;CHOUZE SUR LOIRE 5520 - PLACE DE L'EGLISE;FRS33PMB333912;FR*SOD*S*SIGE*64*5*_*_;SIGEIF - 15 RUE MARTEL - LISLE-ADAM;;11 AVENUE DU MARÉCHAL FOCH;91425;[2.216531, 49.111305];;FRELCEE6Z7;FR*SOD*E*MB17*15*1*1*_;;;;;;;;;;;;;;;;;;;155871;2016-06-07;;2016-11-22;;2023-08-05T07:12:06.690000+00:00;6373cae2c21e1408dd84f0cb;25514740-4130-4697-a4ab-a40b6b6cbafd;;2.216531;48.701192;86430;Champlan;; +;Château du Rivau;384598249;siecf@ville-hazebrouck.fr;;;;Athée sur Cher 10838 - Place de la Mairie 2;FRS33PMB333911;FR*SOD*S*SIGE*64*3*_*_;SIGEIF - 1B RUE DU GENERAL LECLERC - PLACE DE LA MAIRIE - MANDRES-LES-ROSES;;PLACE FRANÇOIS MITTERAND;91538;[2.542078, 48.701192];;FRELCED3R5;FR*SOD*E*MB17*14*1*2*_;;;;;;;;;;;;;;;;;;;156457;2016-02-18;;2016-12-21;;2023-08-05T07:12:06.397000+00:00;63749cf86d39304be1ef03da;8f772b8e-d962-467b-8e05-68a603fdcf45;;2.542078;48.905838;86480;Saulx-les-Chartreux;; +;Château du Rouët;815322201;bruno.menard@sogestran.com;;;;Cambarette Nord;FRS33PMB334012;FR*SOD*S*SIGE*64*2*_*_;SIGEIF - 11 RUE CLAUDE MONET AVANT LE RESTAURANT VAPORETTO - CARRIERES-SUR-SEINE;;RUE MARTRE;91272;[2.181177, 48.905838];;FRELCERJ9F;FR*SOD*E*MB17*14*1*1*_;;;;;;;;;;;;;;;;;;;167663;2016-02-26;;2016-06-21;;2023-08-05T07:12:06.121000+00:00;6374f85a35a1b5185cb0a92e;054c391e-cb15-4fa1-9e8f-06c07c6d1948;;2.181177;48.921798;86120;Gometz-le-Châtel;; +;Châteauform De Rochefort;883425084;t.prouin@sde23.fr;;;;SONEPAR SARREGUEMINES;FRS33PMB334011;FR*SOD*S*SIGE*64*1*_*_;SIGEIF - 30 RUE DU MARECHAL JOFFRE - COLOMBES;;19 RUE DE LARRIVÉE;91136;[2.256419, 48.921798];;FRELCEPXSD;FR*SOD*E*MB17*19*1*1*_;;;;;;;;;;;;;;;;;;;171073;2016-01-21;;2018-07-06;;2023-08-05T07:12:05.829000+00:00;637518cedad6c249324f76b4;f0275ba8-a5ed-4b25-8e91-87a48d14c8ae;;2.256419;48.922914;86110;Mûrs-Erigné;; +;Châteauform Faverges de la Tour;378020168;groupe@electriox.fr;;;;BOISVILLE LA SAINT PERE - Pl République - 129052;FRS33PMB334111;FR*SOD*S*SIGE*37*3*_*_;SIGEIF - 10 PLACE GENERAL LECLERC - COLOMBES;;AV CLAUDE DEBUSSY;91587;[2.252769, 48.922914];;FRELCE6Y9P;FR*SOD*E*MB17*25*1*1*_;;;;;;;;;;;;;;;;;;;169732;2016-01-25;;2016-08-05;;2023-08-05T07:12:05.549000+00:00;637b5ef12dd1bc530e641437;ec593c19-f378-4d55-b43c-b4deb58ad653;;2.252769;48.80911;86460;Montivilliers;; +;Châteauform Fillerval;301075065;sandrine.bareau@manuchar.fr;;;;CHARENTILLY 5579 - PLACE DE LA MAIRIE;FRS33PMB334211;FR*SOD*S*SIGE*36*2*_*_;SIGEIF - 22 AVENUE DU GENERAL LECLERC - MAISONS-ALFORT;;RUE VALITON;91275;[2.4336, 48.80911];;FRELCEPV8D;FR*SOD*E*MB17*20*1*2*_;;;;;;;;;;;;;;;;;;;169733;2016-01-11;;2016-10-14;;2023-08-05T07:12:05.244000+00:00;637b7375b4fac6b58eb0f476;5201523f-8543-4661-b851-501aa54fd303;;2.4336;48.82634;86150;Vernon;; +;Châteauform Le Domaine du Tremblay;440863561;aubergedupuytren@hotmail.fr;;;;AVORD - Bibliothèque -112685;FRS33PMB334911;FR*SOD*S*SIGE*72*2*_*_;SIGEIF - PLACE CHARLES DE GAULLE - VILLE-DAVRAY;;166 PROMENADE DU VERGER;49223;[2.189425, 48.82634];;FRELCEGV8G;FR*SOD*E*MB17*20*1*1*_;;;;;;;;;;;;;;;;;;;159139;2016-02-01;;2017-09-29;;2023-08-05T07:12:05.007000+00:00;637b82777a5c39fc38789e56;5d1d3495-36ae-4817-9f7e-7e95a0053d6b;;2.189425;48.90592;86170;Saint-Malo;; +;Châteauform Dareize;512117862;tesseron@wanadoo.fr;;;;BEAUMONT VILLAGE 5655 - Rue du Bourg neuf;FRS33PMB334212;FR*SOD*S*SIGE*398*1*_*_;SIGEIF - RUE VICTOR HUGO - CARRIERES-SUR-SEINE;;17/19 AVENUE JEAN JAURÈS;76447;[2.17596, 48.90592];;FRELCEK9PH;FR*SOD*E*MB17*13*1*1*_;;;;;;;;;;;;;;;;;;;156951;2016-03-10;;2016-10-13;;2023-08-05T07:12:04.646000+00:00;637b90db716716df2f4d48b5;89fe751b-435a-41b9-944d-089655fdd0ed;;2.17596;48.812485;86210;Barentin;; +;Châteauform Bellinglise;327438560;mairie.burie@wanadoo.fr;;;;Aire de Saint Hilaire Cottes;FRS33PMB334312;FR*SOD*S*SIGE*392*1*_*_;SIGEIF - 2 RUE DE PONCEAU - MEUDON;;PLACE DE LA MARNE;27681;[2.237844, 48.812485];;FRELCEF63H;FR*SOD*E*MB17*25*1*2*_;;;;;;;;;;;;;;;;;;;167177;2016-03-02;;2017-06-09;;2023-08-05T07:12:04.359000+00:00;637b9884fb651aba5c5ce77b;5633e6e0-5401-43ec-9472-4bddf45cab33;;2.237844;49.0211;86370;La Chapelle-sur-Erdre;; +;Châteauform Behoust;480123603;mairie@meursac.fr;;;;SAINT-MAURICE ESPACES VERTS;FRS33PMB334311;FR*SOD*S*SIGE*393*1*_*_;SIGEIF - PARKING GARE DE VAUCELLES - TAVERNY;;RUE ST ROCH;35288;[2.23112, 49.0211];;FRELCE8HS2;FR*SOD*E*MB17*24*1*1*_;;;;;;;;;;;;;;;;;;;167008;2016-03-15;;2016-09-06;;2023-08-05T07:12:04.026000+00:00;637c6b63d59e8582622b2fa7;15f84b17-5a2d-476c-b1b6-99da7a9a943a;;2.23112;48.922874;86200;Mondeville;; +;Châteauform Cély-en-Bière;384395516;FCARRION@HOTMAIL.FR;;;;Tavel Sud;FRS33PMB334412;FR*SOD*S*SIGE*394*1*_*_;SIGEIF - 169 AVENUE GABRIEL PERI - GENNEVILLIERS;;RUE IMPRIMEUR AU BLOC;76057;[2.294767, 48.922874];;FRELCET3W2;FR*SOD*E*MB17*24*1*2*_;;;;;;;;;;;;;;;;;;;158228;2016-03-01;;2016-10-21;;2023-08-05T07:12:03.762000+00:00;63a57032d0e2dc8bcc579262;6c40080f-a39e-4459-b297-a975b9b3ef83;;2.294767;48.930646;86260;Meaux;; +;Central Motor;828318204;mairie@mairie-tesson.fr;;;;VILLEMEUX SUR EURE - Rue de la libération - 134403;FRS33PMB334411;FR*SOD*S*SIGE*395*1*_*_;SIGEIF - 66 BOULEVARD CAMELINAT - GENNEVILLIERS;;RUE CHAMPS CHARDON;44035;[2.301197, 48.930646];;FRELCEB3D4;FR*SOD*E*MB17*23*1*1*_;;;;;;;;;;;;;;;;;;;169634;2016-02-12;;2016-08-29;;2023-08-05T07:12:02.884000+00:00;6418d8c450959f381f3db976;65ad4212-dbc3-4d82-8cf8-3331c4a2cefa;;2.301197;48.933824;86280;Torcy;; +;Carrefour Market Le Lavandou;529978405;Isabelle.RELAIX@ca-cmds.fr;;;;Rosny Nord;FRS33PMB334512;FR*SOD*S*SIGE*396*1*_*_;SIGEIF - 23 AVENUE DU GENERAL DE GAULLE - GENNEVILLIERS;;RUE MARTHE;14437;[2.306643, 48.933824];;FRELCEUEA9;FR*SOD*E*MB17*23*1*2*_;;;;;;;;;;;;;;;;;;;156116;2016-09-02;;2020-01-13;;2023-08-05T07:12:02.508000+00:00;63ecd9afe17b60de7612a69f;bfc6ed66-9c7e-4511-bb73-1c65ccf94714;;2.306643;48.92004;86240;Amboise;; +;Carrefour Market Legny;950016055;contact@ecoyeux.fr;;;;Plaines de Beauce;FRS33PMB334511;FR*SOD*S*SIGE*397*1*_*_;SIGEIF - 16 AVENUE DE LA REPUBLIQUE - GENNEVILLIERS;;RUE DE LA PÉPINIÈRE;77284;[2.297148, 48.92004];;FRELCEZTQX;FR*SOD*E*MB17*22*1*1*_;;;;;;;;;;;;;;;;;;;151708;2016-02-16;;2018-08-24;;2023-08-05T07:12:02.222000+00:00;63ef88bdf563bce035d8f210;bcce24d6-b09f-4786-b802-a70605d3e2da;;2.297148;48.920737;86250;Deauville;; +;Carrefour Plouay;329554851;camping-les-floralies@wanadoo.fr;;;;SAINVILLE - Place Farcot - 130159;FRS33PMB334611;FR*SOD*S*SIGE*399*1*_*_;SIGEIF - 1 RUE GEORGES CORETE - GENNEVILLIERS;;BD DE LA RÉPUBLIQUE;77468;[2.307748, 48.920737];;FRELCEESMG;FR*SOD*E*MB17*22*1*2*_;;;;;;;;;;;;;;;;;;;151709;2016-12-12;;2018-06-12;;2023-08-05T07:12:01.884000+00:00;63ef81e0c26f55a96a2b077c;c2a9dc44-5370-47c9-8df0-53bdc5805d1a;;2.307748;48.92301;86700;Anglet;; +;Carrosserie Palmieri;668502966;mairie-les-gonds@wanadoo.fr;;;;BEAUMONT-LES-AUTELS - Rue du Gal. de Gaulle-139133;FRS33PMB334612;FR*SOD*S*SIGE*391*1*_*_;SIGEIF - 36 BOULEVARD LOUISE MICHEL - GENNEVILLIERS;;BOULEVARD GUTENBERG;37003;[2.321018, 48.92301];;FRELCE7UC8;FR*SOD*E*MB17*21*1*2*_;;;;;;;;;;;;;;;;;;;158501;2017-01-12;;2016-11-02;;2023-08-05T07:12:01.368000+00:00;63ef5f15a11124e0c1d5d9f4;58b845f2-a566-4ed2-b38a-57e82f59b94a;;2.321018;48.922985;86100;Tilloy-lez-Cambrai;; +;Carrosserie Saint-Germain-Laprade;791432263;camping@lesflots.net;;;;ENVSN OUEST;FRS33PMB334711;FR*SOD*S*SIGE*400*1*_*_;SIGEIF - PLACE DE LA LIBERATION - LIVRY-GARGAN;;PARKING DE LA GARE;14220;[2.54441, 48.922985];;FRELCEH7C7;FR*SOD*E*MB17*21*1*1*_;;;;;;;;;;;;;;;;;;;154365;2017-02-27;;2021-01-12;;2023-08-05T07:12:01.096000+00:00;63ecdb83774679fa1cbda7bd;840fe7fc-a9e6-44ce-8dc7-22a8bce4d6de;;2.54441;48.892332;86180;Saint-Maur;; +;Casino Saint-Julien;852425289;accueil.mairie@sgdc17.fr;;;;JALIX VLG BORNE 1;FRS33PMB334712;FR*SOD*S*SIGE*401*1*_*_;SIGEIF - 24 AVENUE DE LA RESISTANCE - RAINCY;;AVENUE PAUL VALERY;64024;[2.512814, 48.892332];;FRELCEPRKG;FR*SOD*E*MB17*1*1*2*_;;;;;;;;;;;;;;;;;;;164675;2017-02-14;;2016-10-07;;2023-08-05T07:12:00.796000+00:00;63ecba415e7372f8ed5742cc;dfbbdf5f-a75b-47c5-8eb4-effc14ea5032;;2.512814;48.902835;86800;Gerzat;; +;Central Autos;415192202;mairie@montils.fr;;;;MONNAIE 6556 - Place Jean Baptiste Moreau;FRS33PMB334812;FR*SOD*S*SIGE*402*1*_*_;SIGEIF - PLACE DE LA RESISTANCE - PAVILLONS-SOUS-BOIS;;RUE GASTON LATOUCHE;69389;[2.508051, 48.902835];;FRELCED4AT;FR*SOD*E*MB17*13*1*2*_;;;;;;;;;;;;;;;;;;;157413;2017-01-25;;2016-07-21;;2023-08-05T07:12:00.390000+00:00;63a5b86c926f1f7ae24f6035;e797b42e-7e8e-41fe-8f64-1f3c79986223;;2.508051;48.909806;86500;Pouilly-en-Auxois;; +;Carosserie Lafay;397906264;contact@270agency.com;;;;SAVIGNE-SUR-LATHAN 6558 - Rue de la gare;FRS33PMB334811;FR*SOD*S*SIGE*403*1*_*_;SIGEIF - PLACE DE LA LIBERATION - PAVILLONS-SOUS-BOIS;;RUE PASTEUR;59597;[2.51808, 48.909806];;FRELCE75TD;FR*SOD*E*MB17*7*1*2*_;;;;;;;;;;;;;;;;;;;165966;2016-12-17;;2017-11-21;;2023-08-05T07:11:59.817000+00:00;63eb9d226dd81a84f6b4716a;bc9ec7bd-53f9-41e5-bcec-e0d475fe871f;;2.51808;49.033346;86420;Laon;; +;Camping municipal de Saint-Denis-D'Oléron;752933184;cedric.granon@wanadoo.fr;;;;Aire de Pont Val de Saône;FRS33PMB3313012;FR*SOD*S*SIGE*404*1*_*_;SIGEIF - AVENUE JEAN JAURES - DOMONT;;RUE DORLÉANS;36202;[2.339881, 49.033346];;FRELCE3FDH;FR*SOD*E*MB17*6*1*2*_;;;;;;;;;;;;;;;;;;;248689;2016-06-13;;2017-10-13;;2023-08-05T07:11:59.392000+00:00;63eb95551aa17f1c7f61c7be;3866babc-9339-4fc6-81da-4cfffa5b6ead;;2.339881;48.810455;86450;Croissy-Beaubourg;; +;Capiscol Distribution;409179926;SLANTELME@GMAIL.COM;;;;ENVSN NORD;FRS33PMB3312312;FR*SOD*S*SIGE*405*1*_*_;SIGEIF - 188 AVENUE DE PARIS - CHATILLON;;AVENUE DU MARÉCHAL LECLERC;63164;[2.299287, 48.810455];;FRELCEQ6KQ;FR*SOD*E*MB17*5*1*1*_;;;;;;;;;;;;;;;;;;;103491;2016-11-30;;2016-09-29;;2023-08-05T07:11:59.077000+00:00;63eb5f9ca5801795baf6c917;23afc717-190a-495d-987a-5c993e995f3b;;2.299287;48.806568;86220;Combs-la-Ville;; +;Car'dom Sud;489683078;contact@metallerieperrut.fr;;;;SONEPAR PERPIGNAN;FRS33PMB3313111;FR*SOD*S*SIGE*36*1*_*_;SIGEIF - 140 AVENUE DE LA REPUBLIQUE - CHATILLON;;PARKING DU SQUARE DE LA CROIX BLANCHE;21501;[2.298238, 48.806568];;FRELCE8PFC;FR*SOD*E*MB17*5*1*2*_;;;;;;;;;;;;;;;;;;;201712;2016-07-18;;2017-06-21;;2023-08-05T07:11:58.686000+00:00;63e7fc65d624ebb4b973b051;2295d14d-ab72-4a14-8acb-1680d446bda6;;2.298238;48.916773;86510;Limoges;; +;Care Promotion;512678558;accueil-brico.langon@scaso.fr;;;;SONEPAR CONNECT ST-ETIENNE3;FRS33PMB3315311;FR*SOD*S*SIGE*383*1*_*_;SIGEIF - PARKING JACOBSEN - COURTRY;;BD JEAN JAURÈS;02408;[2.604149, 48.916773];;FRELCEHGQG;FR*SOD*E*MB17*4*1*1*_;;;;;;;;;;;;;;;;;;;5,01E+13;2016-06-20;;2016-11-18;;2023-08-05T07:11:58.214000+00:00;63e7f90c294c76454ae80871;9ac35f58-7b57-4c51-bd12-9e9b03bba75d;;2.604149;48.894296;86360;Orvault;; +;Carlton SARL;830583381;sylvie.at@scaso.fr;;;;CHARTRES - Place Chatelet - 134784;FRS33PMB3315111;FR*SOD*S*SIGE*377*1*_*_;SIGEIF - 61 AVENUE DE LA RESISTANCE - RAINCY;;PARKING COSTES & BELLONTE;77146;[2.513482, 48.894296];;FRELCEPE47;FR*SOD*E*MB17*3*1*2*_;;;;;;;;;;;;;;;;;;;202631;2016-11-10;;2016-11-23;;2023-08-05T07:11:57.789000+00:00;63e7f19e294c76454ae80870;51587c40-ca83-42ed-b2b3-dbfc85edf393;;2.513482;48.80806;86270;Pfastatt;; +;Carrefour Market Anse;453406365;ingrid.labarrere@scaso.fr;;;;ESVRES SUR INDRE 6023 - RUE NATIONALE;FRS33PMB3315211;FR*SOD*S*SIGE*378*1*_*_;SIGEIF - RUE JEAN JAURES - MEUDON;;BD VICTOR HUGO;77122;[2.240595, 48.80806];;FRELCEXJNN;FR*SOD*E*MB17*3*1*1*_;;;;;;;;;;;;;;;;;;;15441401;2016-11-14;;2019-09-07;;2023-08-05T07:11:57.364000+00:00;63f346722a6779b7ac60da86;f61123c9-d10c-4819-baea-8d3ce37513ed;;2.240595;48.787877;86550;Poitiers;; +;Carplug;498014141;franck.pothin@scaso.fr;;;;SAINT-MAURICE BORNE 2;FRS33PMB3315011;FR*SOD*S*SIGE*379*1*_*_;SIGEIF - RUE SAINT-EXUPERY - MEUDON;;RUE DU MONT VALÉRIEN;87085;[2.227715, 48.787877];;FRELCEHY5K;FR*SOD*E*MB17*2*1*2*_;;;;;;;;;;;;;;;;;;;169779;2016-11-29;;2022-12-08;;2023-08-05T07:11:56.848000+00:00;63f44cfe5b621674526113f4;1e9f2341-5603-4c1e-81af-1fab70a5c011;;2.227715;48.946266;86130;Chambéry;; +;Carrefour Contact Bacqueville En Caux;428099022;stephane.henry@scaso.fr;;;;SONEPAR ANGERS;FRS33PMB3315511;FR*SOD*S*SIGE*380*1*_*_;SIGEIF - 4 CHEMIN DES PETITS MARAIS - GENNEVILLIERS;;PLACE MON IDÉE;44114;[2.303511, 48.946266];;FRELCE8NTB;FR*SOD*E*MB17*2*1*1*_;;;;;;;;;;;;;;;;;;;8E+13;2016-12-01;;2016-11-09;;2023-08-05T07:11:56.429000+00:00;63f4b69b4a63b58c6591c6bd;189a532b-130b-4491-bced-a522b45ee111;;2.303511;48.909418;86140;Avermes;; +;Carrefour Contact Val D’oingt;413171711;lucas.ribelles@scaso.fr;;;;Langres Noidant;FRS33PMB3315012;FR*SOD*S*SIGE*381*1*_*_;SIGEIF - 49 BOULEVARD CARNOT - CARRIERES-SUR-SEINE;;ROUTE DU PLESSIS;68256;[2.179013, 48.909418];;FRELCEE7Q2;FR*SOD*E*MB17*26*1*2*_;;;;;;;;;;;;;;;;;;;167175;2016-11-21;;2016-12-19;;2023-08-05T07:11:56.173000+00:00;63f7698c1fbf84659aaed6d5;6c17650a-4561-4066-a656-e999515358a8;;2.179013;48.941725;86380;Bonneuil-sur-Marne;; +;Carrefour Contact Veyre-Monton;523603819;cmoya@girondins.com;;;;SAG CHARGEPOINT BORNE 1;FRS33PMB3315611;FR*SOD*S*SIGE*382*1*_*_;SIGEIF - 29 AVENUE GEORGES POMPIDOU - VILLENEUVE-LA-GARENNE;;PARKING - RUE DU GÉNÉRAL DE GAULLE;86194;[2.323457, 48.941725];;FRELCEYJ6N;FR*SOD*E*MB17*1*1*1*_;;;;;;;;;;;;;;;;;;;154356;2016-12-05;;2017-01-13;;2023-08-05T07:11:55.844000+00:00;63fde00ccf2cd532727f2e1f;d3f7b36d-b2b5-4ef4-9908-4c9aefea6d88;;2.323457;48.935574;86580;Gradignan;; +;Centre Mondial de la Paix, des Libertés et des Droits de l'Homme;753827328;tente.bornes@laposte.net;;;;Narbonne-Vinassan Nord;FRS33PMB3314412;FR*SOD*S*SIGE*384*1*_*_;SIGEIF - 30 AVENUE DE VERDUN - VILLENEUVE-LA-GARENNE;;ROUTE DU PAVÉ DES GARDES;73065;[2.332291, 48.935574];;FRELCEADT4;FR*SOD*E*MB17*6*1*1*_;;;;;;;;;;;;;;;;;;;169658;2017-03-17;;2017-01-09;;2023-08-05T07:11:55.494000+00:00;64059b076884b8c0e7ff1d29;7be2860a-35f9-4534-87d1-a9b09b8a97d7;;2.332291;49.111643;86440;Metz;; +;Centre Commercial Grand Sud;828349175;a.eltzer@riquewihr.alsace;;;;St GERMAIN-DU-PUY - Eglise - 112986;FRS33PMB3313112;FR*SOD*S*SIGE*390*1*_*_;SIGEIF - 2 PLACE DU PATIS - LISLE-ADAM;;ROND-POINT DU SOUVENIR FRANÇAIS;03013;[2.212137, 49.111643];;FRELCEQZJ3;FR*SOD*E*MB17*7*1*1*_;;;;;;;;;;;;;;;;;;;156538;2016-11-22;;2017-05-24;;2023-08-05T07:11:55.174000+00:00;640706d1e1f88d38dc0ff071;ad8d311c-5dd8-4121-8410-a47112772948;;2.212137;49.121776;69380;Belfort;; +;Centre Commercial La Sablière;529349599;lujasy74@gmail.com;;;;PERNAY 5514 - RUE DE LA MAIRIE;FRS33PMB3314211;FR*SOD*S*SIGE*385*1*_*_;SIGEIF - AVENUE DU CHEMIN VERT - ZONE PORTUAIRE PARKING DU PORT DE PLAISANCE - LISLE-ADAM;;RUE ARMENGAUD;94011;[2.217951, 49.121776];;FRELCEC5L9;FR*SOD*E*MB17*12*1*2*_;;;;;;;;;;;;;;;;;;;151703;2017-04-10;;2016-09-23;;2023-08-05T07:11:54.776000+00:00;6409c3543b09bc59ce13d501;07dfa1bf-0907-4279-8aa9-b1dfdd3fdbb5;;2.217951;49.069632;69120;Rezé;; +;Centre Commercial Étrembières / Migros;399831809;contact@hotelmacchi.com;;;;VILLANDRY 5060 - Parking du potager;FRS33PMB3314212;FR*SOD*S*SIGE*386*1*_*_;SIGEIF - 5 AVENUE MARCEL PERRIN - PARKING DERRIERE - LA MAIRIE-MERY-SUR-OISE;;RUE BAUDIN;33192;[2.179001, 49.069632];;FRELCENDHU;FR*SOD*E*MB17*12*1*1*_;;;;;;;;;;;;;;;;;;;8,00E+13;2019-10-28;;2016-09-28;;2023-08-05T07:11:54.402000+00:00;640ca93fa500b404595b5c65;ebe3345d-9c3a-4a17-9654-9a8bc8a5d050;;2.179001;49.078548;69700;Saint-Brice-sous-Forêt;; +;Centre Hospitalier Henri Mondor;410514319;contact@nw-joules.fr;;;;Mouxy;FRS33PMB3314312;FR*SOD*S*SIGE*387*1*_*_;SIGEIF - 3 RUE DE L’EGLISE – PARKING DE LA PLACE JENTEL - MERIEL;;PLACE FRANÇOIS MAURIAC;57463;[2.207922, 49.078548];;FRELCESTX5;FR*SOD*E*MB17*11*1*1*_;;;;;;;;;;;;;;;;;;;165733;2019-01-31;;2017-06-28;;2023-08-05T07:11:54.103000+00:00;641198a471cc568020d05a3f;d6bdc4d4-b00f-4b1a-88bd-1c612ddd6b45;;2.207922;49.054005;69760;Brie-Comte-Robert;; +;Centre Commercial Grand Nord;842019317;petibonum@wanadoo.fr;;;;GVA LYON 9 ABB;FRS33PMB3314311;FR*SOD*S*SIGE*388*1*_*_;SIGEIF - 3 RUE DE LA CROIX FRILEUSE - PLACE DE LA POMPE - BETHEMONT-LA-FORET;;AVENUE EUGÈNE VARLIN;90010;[2.252206, 49.054005];;FRELCEVBZF;FR*SOD*E*MB17*11*1*2*_;;;;;;;;;;;;;;;;;;;165734;2018-06-22;;2016-08-03;;2023-08-05T07:11:53.800000+00:00;641864c809184e5b1950096f;51cbf765-402a-4808-bc97-3163318b8c5b;;2.252206;49.115166;69270;La Flèche;; +;Centre Commercial Cap Cythi;842019318;veronique.cevey@digicelgroup.com;;;;Tavel Nord;FRS33PMB3314411;FR*SOD*S*SIGE*389*1*_*_;SIGEIF - 9 RUE DE LA REPUBLIQUE - PRESLES;;RUE MARAT;44143;[2.284516, 49.115166];;FRELCELAMC;FR*SOD*E*MB17*10*1*2*_;;;;;;;;;;;;;;;;;;;167007;2018-06-04;;2018-07-26;;2023-08-05T07:11:53.446000+00:00;63e6201a2bcd772d453cbbf1;807739e6-98e0-4fcc-aebb-9c1b187e7b6f;;2.284516;49.11376;69300;Osny;; +;Centre Commercial Cap Bernard;842019319;gilles.morand@colibrispirit.com;;;;PRUNIERS EN SOLOGNE 5013 - Salle des Fêtes;FRS33PMB3314511;FR*SOD*S*SIGE*406*1*_*_;SIGEIF - 7 PLACE GEORGES CLEMENCEAU PARKING DEVANT LE BUREAU DE POSTE - PARMAIN;;RUE MICHELET;95539;[2.209352, 49.11376];;FRELCEE36Z;FR*SOD*E*MB17*10*1*1*_;;;;;;;;;;;;;;;;;;;173163;2018-03-26;;2017-03-22;;2023-08-05T07:11:53.007000+00:00;63e278017ff8bd8fff1d2556;d0097d28-8ace-4409-89ee-53479418f82e;;2.209352;49.059232;69100;Allonnes;; +;Centre Commercial Grand Est;753022086;pointe-simon@groupesoame.com;;;;ROMORANTIN LANTHENAY 5150;FRS33PMB3314911;FR*SOD*S*SIGE*33*3*_*_;SIGEIF - 2 AVENUE DE GRAFENBERG - PLACE JEAN MOULIN - PUISEUX-EN-FRANCE;;AVENUE SPINOZA;77053;[2.502954, 49.059232];;FRELCENCWE;FR*SOD*E*MB17*9*1*2*_;;;;;;;;;;;;;;;;;;;168387;2018-03-14;;2016-11-28;;2023-08-05T07:11:52.560000+00:00;63e22c42d9bca63e001adb9a;3a553b9a-dab2-4882-89fb-f6761622be92;;2.502954;48.934912;69140;Brest;; +;BFC-SDEY - CITEOS Vds Rapide;433188018;lafacadio-hearn@groupesoame.com;;;;LANGON 5162 - Route de Mennetou-Sur-Cher;FRS33PMB3314512;FR*SOD*S*SIGE*31*3*_*_;SIGEIF - 78 RUE DE MEAUX - VAUJOURS;;AVENUE DU MARÉCHAL PIERRE KOEING;72154;[2.569549, 48.934912];;FRELCEJYYU;FR*SOD*E*MB17*9*1*1*_;;;;;;;;;;;;;;;;;;;187683;2018-03-06;;2016-11-07;;2023-08-05T07:11:52.156000+00:00;63cfa0463a556169150c3337;61634c6e-7570-445b-abde-b47676aea0aa;;2.569549;48.804958;69370;Saint-Cyr-sur-Loire;; +;BFC-SDEY - CITEOS Vds Ultra Rapide;479246837;brice@nayaradouvoyages.com;;;;GVA ÉCULLY ABB;FRS33PMB3314611;FR*SOD*S*SIGE*31*4*_*_;SIGEIF - 92 AVENUE DU GENERAL LECLERC - MAISONS-ALFORT;;RUE MAITRE RENAUD;95476;[2.441778, 48.804958];;FRELCE537F;FR*SOD*E*MB17*8*1*2*_;;;;;;;;;;;;;;;;;;;168241;2018-02-26;;2016-08-13;;2023-08-05T07:11:51.787000+00:00;63b4047f27e81ee320f75cc7;c095460a-027a-4f10-8bc5-6968e498c51a;;2.441778;48.87624;69250;Orléans;; +;Châteauform Les Berges de Seine;824641294;g.annonay@orange.fr;;;;MAINTENON - Parking rue D'Harleville - 128960;FRS33PMB3314612;FR*SOD*S*SIGE*31*5*_*_;SIGEIF - 14 RUE FRANCIS PRESSENSE - PUTEAUX;;PLACE ANDRÉ GIDE;72003;[2.23608, 48.87624];;FRELCEYGFD;FR*SOD*E*MB17*8*1*1*_;;;;;;;;;;;;;;;;;;;175652;2018-02-09;;2020-01-21;;2023-08-05T07:11:51.522000+00:00;63b4092a5f4c4e9fce691e68;dd9b55a3-8f83-4013-9d4b-0997c91b5476;;2.23608;48.887726;69110;Dax;; +;Business Park Chartres;835124280;contact@hotel-labastide.fr;;;;MARBOUE - Avenue Aristide Briand - 134835;FRS33PMB3314811;FR*SOD*S*SIGE*31*6*_*_;SIGEIF - 70 AVENUE CHARLES DE GAULLE - PUTEAUX;;RUE DE RUZÉ;29019;[2.232187, 48.887726];;FRELCE4DEJ;FR*SOD*E*MB17*26*1*1*_;;;;;;;;;;;;;;;;;;;167997;2017-12-14;;2017-11-16;;2023-08-05T07:11:51.215000+00:00;63bbfeb5dfa6431f0e2e1963;ad9db55a-4906-4994-aa74-765757ef5f80;;2.232187;48.821902;69600;Escource;; +;CC Sel et Vermois;844192443;contact@reve-mobilite.com;;;;COURCOUE 5206 - Rue de Richelieu;FRS33PMB3314812;FR*SOD*S*SIGE*31*1*_*_;SIGEIF - 9 RUE RENE SAHORS - VANVES;;RUE CHANTE COQ;37214;[2.290551, 48.821902];;FRELCE4KVE;FR*SOD*E*MB17*60*1*2*_;;;;;;;;;;;;;;;;;;;30000241159025;2017-11-09;;2020-06-12;;2023-08-05T07:11:50.932000+00:00;63bfc552ac89e9e226b697c7;f83b0785-05ad-4b22-8e9d-4d5bac008d96;;2.290551;49.087523;69350;Castets;; +;Burger King - Pontchateau;489638338;contact@techoffice.fr;;;;CUSSAY 5207 - Place du 8 Mai;FRS33PMB3314912;FR*SOD*S*SIGE*31*2*_*_;SIGEIF - RUE FAUBERT - BELLOY;;PLACE DU CAPITAINE CHAUVELOT;45234;[2.36695, 49.087523];;FRELCEM84W;FR*SOD*E*MB17*58*1*2*_;;;;;;;;;;;;;;;;;;;50001267184759;2017-11-08;;2016-06-08;;2023-08-05T07:11:50.646000+00:00;63c50808e8830533cf1f5f14;b08b5c17-b695-4ec3-9ca6-c54c9c0181c8;;2.36695;48.885583;69680;Morcenx-la-Nouvelle;; +;Burger King - Rungis;317032993;contact@hotel-du-porge.com;;;;SCI FONTENAY BORNE 1;FRS33PMB3313512;FR*SOD*S*SIGE*32*5*_*_;SIGEIF - PLACE DE LA GARE - CHATOU;;PLACE DU 8 MAI 1945;40088;[2.155149, 48.885583];;FRELCEQXTB;FR*SOD*E*MB17*58*1*1*_;;;;;;;;;;;;;;;;;;;30000150615860;2017-10-16;;2016-08-04;;2023-08-05T07:11:50.342000+00:00;63c525a5eec7864395e7e0d7;450e0104-6948-49ff-9ac9-b5bbe6016171;;2.155149;48.918367;69280;Josse;; +;Burger King - Saint-Dié-des-Vosges;479081903;Joseph.Jolly@mq.mcd.com;;;;MEHARI COR BORNE SE;FRS33PMB3313811;FR*SOD*S*SIGE*32*1*_*_;SIGEIF - PLACE DU GENERAL LECLERC - COURTRY;;CHEMIN SAINT DENIS;40094;[2.604141, 48.918367];;FRELCE6Z2W;FR*SOD*E*MB17*56*1*2*_;;;;;;;;;;;;;;;;;;;30000150956392;2017-11-07;;2016-12-08;;2023-08-05T07:11:49.981000+00:00;63c545be54476f6496010f2d;94f05ea1-10c0-4a70-a557-95639feb4193;;2.604141;48.869505;69160;Hagetmau;; +;Burger King - Saint-Pierre-lès-Elbeuf;843206434;lahalledesproducteurs@gmail.com;;;;NAZELLES NEGRON 4899 - Place des patis;FRS33PMB3313812;FR*SOD*S*SIGE*32*3*_*_;SIGEIF - RUE DES PECHEURS - VAIRES-SUR-MARNE;;RUE AUGUSTE RENOIR;40075;[2.629187, 48.869505];;FRELCE8WPG;FR*SOD*E*MB17*56*1*3*_;;;;;;;;;;;;;;;;;;;01559334276412;2019-02-12;;2016-07-22;;2023-08-05T07:11:49.568000+00:00;63c820ea9483abae8cad54e6;4b44d975-10c5-41ad-99a1-e04fade603e0;;2.629187;48.889452;69540;Labenne;; +;Burger King - Saverne;692051113;b.magnier34@gmail.com;;;;SONEPAR CCF TOULOUSE;FRS33PMB3313711;FR*SOD*S*SIGE*32*2*_*_;SIGEIF - 11 AVENUE DU MARECHAL FOCH - CHATOU;;RUE DES CORDONNIERS;40197;[2.157368, 48.889452];;FRELCEGFMT;FR*SOD*E*MB17*56*1*1*_;;;;;;;;;;;;;;;;;;;50007753019678;2019-11-05;;2022-07-06;;2023-08-05T07:11:49.081000+00:00;63c8253dc837be93bd1ec596;76bce261-b649-45da-a138-b410972f24f7;;2.157368;48.919073;69410;Capbreton;; +;Burger King - Savigneux;478915374;aploisirs84@orange.fr;;;;NOYERS SUR CHER 4843 - Rue Saint Lazare;FRS33PMB3313712;FR*SOD*S*SIGE*32*4*_*_;SIGEIF - PLACE FRANCOIS MITTERAND - LIVRY-GARGAN;;RUE LOUISE MICHEL;40129;[2.536884, 48.919073];;FRELCE7DZ5;FR*SOD*E*MB17*55*1*1*_;;;;;;;;;;;;;;;;;;;1,23457E+13;2022-11-02;;2022-06-29;;2023-08-05T07:11:48.795000+00:00;63c91b99f1ad1082f260edd6;7cca69e3-8dc6-42da-8b6c-367fef8afd45;;2.536884;48.904369;69310;Hinx;; +;Burger King - Soufflenheim;523107621;ghenry@antillestelephone.com;;;;LA CHAPELLE SUR LOIRE 4864 - Place Albert Ruell;FRS33PMB3313612;FR*SOD*S*SIGE*32*6*_*_;SIGEIF - 87 RUE MARTRE - CLICHY;;BOULEVARD DU MARÉCHAL FOCH;40119;[2.304623, 48.904369];;FRELCEPQ59;FR*SOD*E*MB17*55*1*2*_;;;;;;;;;;;;;;;;;;;50003284996767;2022-02-09;;2021-04-30;;2023-08-05T07:11:48.500000+00:00;63ca822a4724c6b1b682dd9b;95e9e4ad-a4dd-461a-aca9-66f5666d67df;;2.304623;48.819004;69890;Habas;; +;Burger King - Tourville;805089158;mbaudouin@cafom.com;;;;VEUZAIN 4866 - Rue de l'Ecrevissière;FRS33PMB3313511;FR*SOD*S*SIGE*33*1*_*_;SIGEIF - 88 AVENUE DU GENERAL DE GAULLE - ISSY-LES-MOULINEAUX;;RUE RENÉ;40133;[2.277644, 48.819004];;FRELCE5882;FR*SOD*E*MB17*55*1*3*_;;;;;;;;;;;;;;;;;;;22102170604771;2022-02-10;;2020-12-02;;2023-08-05T07:11:48.155000+00:00;63cfa3c2f04ebd2363a89378;dc928b2f-ceab-42ce-adeb-ab93a2eb566b;;2.277644;48.837186;69650;Grenade-sur-l'Adour;; +;Burger King - Val de Reuil;533913497;buid.mq@outlook.fr;;;;CHS1 BORNE 4;FRS33PMB3313411;FR*SOD*S*SIGE*407*1*_*_;SIGEIF - 2 PLACE CHARLES DE GAULLE - VAUCRESSON;;1 RUE GOUNOD;40065;[2.152096, 48.837186];;FRELCE3UXZ;FR*SOD*E*MB17*54*1*1*_;;;;;;;;;;;;;;;;;;;22130390577697;2021-09-28;;2019-03-13;;2023-08-05T07:11:47.817000+00:00;63e110a93250852c10aa1cd9;5f2fafb6-fea4-4291-8dc9-8c0abcc05d82;;2.152096;48.972892;69230;Vieux-Boucau-les-Bains;; +;Burger King Challans;853114767;rodrigue.theodore@groupeseen.com;;;;VEUZAIN 4880 - Ruelle des Planches;FRS33PMB3313911;FR*SOD*S*SIGE*33*4*_*_;SIGEIF - 19 RUE DE LARRIVEE - ENGHIEN-LES-BAINS;;AVENUE AUDRA;40126;[2.306583, 48.972892];;FRELCEZREL;FR*SOD*E*MB17*54*1*3*_;;;;;;;;;;;;;;;;;;;22192619231571;2021-10-18;;2020-08-01;;2023-08-05T07:11:47.531000+00:00;63cff33169cd48d6b5eeaaac;b71ff0b2-d90f-4f51-83af-341034a31280;;2.306583;48.909744;69800;Saint-Vincent-de-Tyrosse;; +;CC L'Ecluse;524125036;patcharine.chaimoon@gbh.fr;;;;VALLOIRE SUR CISSE 4884 - Route de la Champagne;FRS33PMB3313412;FR*SOD*S*SIGE*33*2*_*_;SIGEIF - 7 AV CLAUDE DEBUSSY - CLICHY;;52 RUE DE SEINE;40118;[2.309161, 48.909744];;FROTHEOTHR18131;FR*SOD*E*MB17*54*1*2*_;;;;;;;;;;;;;;;;;;;22179884061901;2021-02-24;;2019-06-25;;2023-08-05T07:11:47.240000+00:00;63d15395bbe10646b2bba5d7;626c6cd0-364e-459b-97f7-ec7a862713d8;;2.309161;48.901286;69150;Soorts-Hossegor;; +;CC Pays Haut Val d'Alzette;256102922;m.delavigne@autodis.com;;;;NOYERS SUR CHER 4999 - Place des Guerriers;FRS33PMB3313312;FR*SOD*S*SIGE*33*5*_*_;SIGEIF - 4 RUE VALITON - CLICHY;;BOULVERARD DU GÉNÉRAL LECLERC;40117;[2.2987, 48.901286];;FROTHEOTHR18151;FR*SOD*E*MB17*53*1*3*_;;;;;;;;;;;;;;;;;;;22177713298805;2020-12-08;;2021-08-31;;2023-08-05T07:11:46.974000+00:00;63d25bb3a9c04e312f2b9695;f2f3107a-edcb-4ec6-8f95-cbb47cc48665;;2.2987;48.823132;69330;Seignosse;; +;CC Pays de Pange;901573139;daf@groupelespacesante.com;;;;SONEPAR VENISSIEUX;FRS33PMB3313311;FR*SOD*S*SIGE*35*5*_*_;SIGEIF - 22 AVENUE JEAN JAURES - ISSY-LES-MOULINEAUX;;PLACE DE SOUVENIR FRANCAIS;40328;[2.275604, 48.823132];;FROTHEOTHR18111;FR*SOD*E*MB17*53*1*1*_;;;;;;;;;;;;;;;;;;;22148046147142;2020-04-07;;2021-11-10;;2023-08-05T07:11:46.640000+00:00;63d27d9ce6261724a28da11a;adc82b8d-e416-47f9-86f1-77414a45a185;;2.275604;48.817549;69390;Saubrigues;; +;CC Grande Vallée de la Marne;480120203;gabriel.hillion@gmail.com;;;;SAINT AMAND LONGPRE 4911 - Place du 11 Out 1944;FRS33PMB3313211;FR*SOD*S*SIGE*35*2*_*_;SIGEIF - 166 PROMENADE DU VERGER - ISSY-LES-MOULINEAUX;;BOULEVARD DU LEVANT;40284;[2.270023, 48.817549];;FROTHEOTHR18141;FR*SOD*E*MB17*53*1*2*_;;;;;;;;;;;;;;;;;;;22103328351600;2020-06-12;;2022-10-26;;2023-08-05T07:11:46.309000+00:00;63d7c9ba22516c91aa29daf4;3c0e761c-aa7c-4e6e-a698-e1de30176cda;;2.270023;48.76463;69260;Sanguinet;; +;CA Béthune-Bruay;881834881;christophe.marie-rose@mairie-precheur.com;;;;VENDOME 4919 - Rue des Etats-unis;FRS33PMB3313212;FR*SOD*S*SIGE*35*3*_*_;SIGEIF - 17/19 AVENUE JEAN JAURES - JOUY-EN-JOSAS;;ROND-POINT DE MONTFERMEIL;40304;[2.169532, 48.76463];;FROTHEOTHR18121;FR*SOD*E*MB17*52*1*1*_;;;;;;;;;;;;;;;;;;;22195947739550;2020-02-28;;2022-04-13;;2023-08-05T07:11:46.013000+00:00;63da5e46c512cc092bc0d200;fdfa1c5d-f956-4396-bca3-690c2210138e;;2.169532;48.768693;69340;Samadet;; +;CAP NORD BEARN;379041379;a.pamphile@sm-aphp.com;;;;SAINT CLAUDE DE DIRAY 4922;FRS33PMB3313912;FR*SOD*S*SIGE*35*4*_*_;SIGEIF - RUE CHARLES DE GAULLE - JOUY-EN-JOSAS;;RUE GABRIEL PÉRI;40296;[2.152863, 48.768693];;FROTHEOTHR18051;FR*SOD*E*MB17*52*1*2*_;;;;;;;;;;;;;;;;;;;22136468726005;2020-03-02;;2022-12-31;;2023-08-05T07:11:45.740000+00:00;63da6585ecf886fa92d00208;33d50dda-ba9c-40d8-916d-3a23a13e6fc2;;2.152863;48.765481;69200;Saint-Pierre-du-Mont;; +;Burger King - Pont à Mousson;849691829;Jmjeunehomme@citadelle-sa.com;;;;COUTURE SUR LOIR 4929-4930;FRS33PMB3313611;FR*SOD*S*SIGE*35*1*_*_;SIGEIF - PLACE DE LA MARNE - JOUY-EN-JOSAS;;RUE DE LA DIGUE;40292;[2.167502, 48.765481];;FROTHEOTHR18031;FR*SOD*E*MB17*52*1*3*_;;;;;;;;;;;;;;;;;;;22192329795929;2019-11-07;;2023-04-24;;2023-08-05T07:11:45.106000+00:00;63da9af0c1056fc4ad46a11c;3f61c7ca-c650-41df-b8a7-372ecc1dae30;;2.167502;48.762795;69320;Sore;; +;Burger King - Mennecy;452873193;mariefrance.hilderald@orange.com;;;;MONTOIRE SUR LE LOIR 4931 - Rue Marecot;FRS33PMB3314011;FR*SOD*S*SIGE*416*1*_*_;SIGEIF - RUE ST ROCH - JOUY-EN-JOSAS;;RUE MARCEL MONGE;40287;[2.175402, 48.762795];;FROTHEOTHR18011;FR*SOD*E*MB17*27*1*2*_;;;;;;;;;;;;;;;;;;;22103038915862;2017-09-25;;2022-11-16;;2023-08-05T07:11:44.809000+00:00;63db84afef6b27b2a56d2852;4247b4ac-7cbe-4302-bcbe-e554fa002dea;;2.175402;48.77241;69580;Saint-Paul-lès-Dax;; +;Bricomarché Delle;779463223;Didier.Jacques-Sebastien@gbh.fr;;;;SONEPAR LE VINOUX;FRS33PMB3314112;FR*SOD*S*SIGE*36*6*_*_;SIGEIF - RUE IMPRIMEUR AU BLOC - JOUY-EN-JOSAS;;PLACE ARISTIDE BRIAND;40286;[2.164531, 48.77241];;FROTHEOTHR18041;FR*SOD*E*MB17*51*1*1*_;;;;;;;;;;;;;;;;;;;22197105483285;2017-09-20;;2023-05-01;;2023-08-05T07:11:44.464000+00:00;63db8a8f2e7e246420da55a3;debb590a-7b87-4298-9b27-c30e0422e17d;;2.164531;48.821956;69520;Saint-Julien-en-Born;; +;Borgo Equipements;352191910;jlamory@simar.mq;;;;WELDOM CASTRES BORNE 2;FRS33PMB3314111;FR*SOD*S*SIGE*36*4*_*_;SIGEIF - 44 RUE CHAMPS CHARDON - ISSY-LES-MOULINEAUX;;AVENUE DE LA 1ÈRE ARMÉE FRANÇAISE;40281;[2.252027, 48.821956];;FROTHEOTHR17941;FR*SOD*E*MB17*51*1*3*_;;;;;;;;;;;;;;;;;;;22167583052826;2017-05-05;;2023-04-08;;2023-08-05T07:11:44.200000+00:00;63db9f2672f3908f2dd0de06;a75baeb7-5f52-421c-b53b-06dbf2a349c8;;2.252027;48.900249;69290;Saint-Geours-de-Maremne;; +;Boulangerie Feuillette;812941052;h.aluconcept@gmail.com;;;;E.LECLERC BORNE 5 DC;FRS33PMB3314012;FR*SOD*S*SIGE*36*3*_*_;SIGEIF - 41 RUE MARTHE - CLICHY;;RUE JEAN MONNET;40307;[2.308363, 48.900249];;FROTHEOTHR17921;FR*SOD*E*MB17*51*1*2*_;;;;;;;;;;;;;;;;;;;22197105481922;2017-04-18;;2017-06-30;;2023-08-05T07:11:43.527000+00:00;63dd1f83fffeaa6afe7f6e28;baa7800c-372c-4260-8179-81c854e53131;;2.308363;48.99638;69660;Roquefort;; +;Bouzat Ets;383447927;isa.pluta@orange.fr;;;;E.LECLERC BORNE 3 DC;FRE04POAZS22212;FR*SOD*S*SIGE*30*6*_*_;SIGEIF - PLACE DE LA LIBERATION - SARCELLES;;RUE DU DOCTEUR DEMIRLEAU;40279;[2.377945, 48.99638];;FROTHEOTHR17911;FR*SOD*E*MB17*50*1*1*_;;;;;;;;;;;;;;;;;;;22129088114802;2017-05-03;;2017-01-31;;2023-08-05T07:11:42.921000+00:00;63e106877213241dacb76fa8;6994fca1-9e0c-4269-b255-bb9fdd951f19;;2.377945;48.806434;69960;Bénesse-Maremne;; +;Bouzonville;393397435;contact@bastidebeaudinard.fr;;;;NOUZILLY 5512 - RUE DU PRIEURE;FRE04POAZS22312;FR*SOD*S*SIGE*30*5*_*_;SIGEIF - 20 RUE DE LA PEPINIERE - VIROFLAY;;RUE DES RAGUENETS;40266;[2.163266, 48.806434];;FROTHEOTHR17931;FR*SOD*E*MB17*50*1*3*_;;;;;;;;;;;;;;;;;;;22123588840077;2017-04-11;;2017-03-15;;2023-08-05T07:11:42.640000+00:00;6290a9125ee1ab5ce237b6b0;735ec6ff-200a-4b73-b023-d141730ce88a;;2.163266;48.905451;69780;Biscarrosse;; +;Bradesi;442414207;d.genre@groupegenre.com;;;;CHATILLON CHARLES RIVER 2;FRE04POAZS22231;FR*SOD*S*SIGE*30*2*_*_;SIGEIF - 85 BD DE LA REPUBLIQUE - LIVRY-GARGAN;;RUE BERTHIE ALBRECHT;40261;[2.524608, 48.905451];;FROTHEOTHR17951;FR*SOD*E*MB17*50*1*2*_;;;;;;;;;;;;;;;;;;;22165267568035;2017-03-24;;2017-05-31;;2023-08-05T07:11:42.309000+00:00;5b45b48a88ee387e40bca90f;bd5496d8-97d2-4946-8b6b-6a4c50e5940e;;2.524608;48.91367;69570;Benquet;; +;Brit Hôtel;432412104;infocamping@jardindescevennes.com;;;;Saint-Rambert Est;FRE04POAZS22211;FR*SOD*S*SIGE*30*1*_*_;SIGEIF - 46 BOULEVARD GUTENBERG - LIVRY-GARGAN;;PARKING DU STADE MUNICIPAL;40245;[2.517099, 48.91367];;FROTHEOTHR17841;FR*SOD*E*MB17*49*1*2*_;;;;;;;;;;;;;;;;;;;22170043255406;2017-04-14;;2017-04-30;;2023-08-05T07:11:42.024000+00:00;6115428e312da5af8171de25;b40bfbe5-aebc-457b-aa86-d78126d97295;;2.517099;49.027391;93290;Soustons;; +;Burger King - Essey-lès-Nancy;414111310;rpernet@trajectoire-automobiles.fr;;;;MSP CLARENSAC BORNE 1;FRE04POAZS22331;FR*SOD*S*SIGE*408*1*_*_;SIGEIF - RUE DE LA MAIRIE - DOMONT;;12 RUE DES FUSILLÉ DE CHATEAUBRIAND;40036;[2.326929, 49.027391];;FROTHEOTHR17831;FR*SOD*E*MB17*49*1*1*_;;;;;;;;;;;;;;;;;;;22185962210460;2017-03-20;;2017-10-31;;2023-08-05T07:11:41.655000+00:00;611fd301d7456af7dff02a07;fc42518c-e08e-476c-b567-f244a738e506;;2.326929;49.032846;77127;Villeneuve-de-Marsan;; +;Burger King - Flers;447541541;sbruzeau@espace-auto.com;;;;SONEPAR CONNECT CLERMONT-FER 1;FRE04POAZS22232;FR*SOD*S*SIGE*409*1*_*_;SIGEIF - PARKING DE LA GARE - DOMONT;;52 RUE CARNOT;40046;[2.336956, 49.032846];;FROTHEOTHR17811;FR*SOD*E*MB17*48*1*2*_;;;;;;;;;;;;;;;;;;;22133719086403;2017-03-18;;2018-03-31;;2023-08-05T07:11:40.934000+00:00;6128cbe5b91d080a18337f19;551b844b-df63-4d17-9c02-2ed197a8c378;;2.336956;48.97929;78140;Ychoux;; +;Burger King - Joué-lès-Tours;330713108;eses.bire@hapogys.fr;;;;HANCHES - Rue de la barre - 134752;FRE04POAZS22332;FR*SOD*S*SIGE*410*1*_*_;SIGEIF - AVENUE PAUL VALERY - SARCELLES;;1 RUE CHARLES PÉGUY;40037;[2.380766, 48.97929];;FROTHEOTHR17821;FR*SOD*E*MB17*60*1*1*_;;;;;;;;;;;;;;;;;;;22159478852721;2017-06-06;;2017-09-30;;2023-08-05T07:11:40.452000+00:00;6113f1e633074dbf04a6432b;4ce27f3b-ff20-44a4-93c9-4f49836b4080;;2.380766;48.845411;78150;Tarnos;; +;Burger King - Labarthe sur Lèze;501584296;dany.capemploi@gmail.com;;;;GERANIUMS OPIO BORNE 1;FRE04POAZS22311;FR*SOD*S*SIGE*411*1*_*_;SIGEIF - 8 RUE GASTON LATOUCHE - SAINT-CLOUD;;AVENUE ARLETTY;40310;[2.218729, 48.845411];;FROTHEOTHR17851;FR*SOD*E*MB17*61*1*1*_;;;;;;;;;;;;;;;;;;;22197829072358;2017-08-17;;2018-03-15;;2023-08-05T07:11:40.031000+00:00;6111b15a8611d4881c3dd2a8;367989df-58b8-4f99-9e6a-e98ab1244394;;2.218729;48.842105;06800;Sainte-Marie-de-Gosse;; +;Burger King - Landivisiau;725721757;Gmd.34@outlook.com;;;;SONEPAR MARSEILLE;FRS17PMB171612;FR*SOD*S*SIGE*412*1*_*_;SIGEIF - RUE PASTEUR - SAINT-CLOUD;;RUE DES 4 SAISONS;40331;[2.203739, 48.842105];;FROTHEOTHR18021;FR*SOD*E*MB17*48*1*3*_;;;;;;;;;;;;;;;;;;;22196526610709;2017-09-11;;2017-07-31;;2023-08-05T07:11:39.655000+00:00;60fe63d38875258061bda14b;ce34c640-92ec-4071-926c-842e4a58cf36;;2.203739;48.841715;92300;Tosse;; +;Burger King - Laxou;838699742;tulliezamelie@gmail.com;;;;HU CHALLANS BORNE 1;FRS17PMB171811;FR*SOD*S*SIGE*413*1*_*_;SIGEIF - RUE DORLEANS - SAINT-CLOUD;;AVENUE MÉDÉRIC;40332;[2.219264, 48.841715];;FRLGCEGACO161;FR*SOD*E*MB17*61*1*2*_;;;;;;;;;;;;;;;;;;;22147756712082;2017-09-19;;2017-03-31;;2023-08-05T07:11:39.318000+00:00;6103096f61aa4e8478dec220;d176692c-213c-4855-b92a-e994cfe4c16d;;2.219264;48.7965;87640;Ondres;; +;Burger King - Le Muy;343123766;contact@hotel-lyon-est.com;;;;SUPERUPDC BORNE 4;FRS17PMB171812;FR*SOD*S*SIGE*414*1*_*_;SIGEIF - AVENUE DU MARECHAL LECLERC - CHENNEVIERES-SUR-MARNE;;8 AVENUE MENELOTTE;40312;[2.53094, 48.7965];;FRLGCEGACO131;FR*SOD*E*MB17*74*1*3*_;;;;;;;;;;;;;;;;;;;22152242963898;2017-09-28;;2019-02-15;;2023-08-05T07:11:38.925000+00:00;61040fe123291573fc9ca0ba;db100bdb-c3e8-4c13-8080-72ee65cdc537;;2.53094;48.838145;87410;Parentis-en-Born;; +;Burger King - Le Pecq;340725803;info@lesbananesvertes.fr;;;;SUPERUPDC BORNE 1;FRS17PMB171912;FR*SOD*S*SIGE*415*1*_*_;SIGEIF - PARKING DU SQUARE DE LA CROIX BLANCHE - VAUCRESSON;;BIS HAMEAU DU BEAU JAY;40271;[2.156808, 48.838145];;FRLGCEGACO141;FR*SOD*E*MB17*74*1*2*_;;;;;;;;;;;;;;;;;;;22196092457332;2017-09-14;;2018-06-30;;2023-08-05T07:11:38.506000+00:00;6107bb960c8b30eb5694ecff;29d39dc3-ebe5-4beb-b5af-d4d972706356;;2.156808;48.8288;23340;Pontonx-sur-l'Adour;; +;Burger King - Limas;321775769;direction@crishotel.fr;;;;BOURGES - Parc Comitec - 93955;FRS17PMB171711;FR*SOD*S*SIGE*26*1*_*_;SIGEIF - 245 BD JEAN JAURES - BOULOGNE-BILLANCOURT;;AV DE LATTRE DE TASSIGNY;40317;[2.246242, 48.8288];;FRLGCEGACO261;FR*SOD*E*MB17*74*1*1*_;;;;;;;;;;;;;;;;;;;22177423863201;2017-05-22;;2023-02-23;;2023-08-05T07:11:38.114000+00:00;610932492bc1f2aef476775f;39600c6e-c609-4512-89a8-e67166e9ee57;;2.246242;48.802012;87380;Saint-Avit;; +;Burger King - Lunéville;347638884;jerome.giardi@argos.co;;;;ALPTIS 25CAT PLACE 35 36;FRS17PMB171712;FR*SOD*S*SIGE*27*1*_*_;SIGEIF - 26 PARKING COSTES & BELLONTE - VIROFLAY;;AVENUE LOUIS PASTEUR;40209;[2.171623, 48.802012];;FRLGCEGACO151;FR*SOD*E*MB17*73*1*1*_;;;;;;;;;;;;;;;;;;;22173950638547;2017-06-29;;2022-11-02;;2023-08-05T07:11:37.807000+00:00;610b9b76fafb3963c26d86d4;d8bd6130-be1c-4d07-be92-002b60e013be;;2.171623;48.902349;87520;Saint-Justin;; +;Burger King - Mareuil les Meaux;345036750;infos@moulin-wantzenau.com;;;;MARCHENOIR 2930 - Route de Blois;FRS17PMB171512;FR*SOD*S*SIGE*29*2*_*_;SIGEIF - 123 BD VICTOR HUGO - CLICHY;;AVENUE DU MARÉCHAL FOCH;40217;[2.317644, 48.902349];;FRLGCEGACO121;FR*SOD*E*MB17*73*1*2*_;;;;;;;;;;;;;;;;;;;22178871041270;2017-05-29;;2021-09-24;;2023-08-05T07:11:37.490000+00:00;610bad0eb0b14f1f952a6549;cd2eda00-fd4e-41af-8631-5d942a0bdee1;;2.317644;48.968482;87290;Narrosse;; +;Burger King - Coutras;753105006;contact@elec-econnect.fr;;;;BOURGES - LAHITOLLE - 96889;FRS17PMB171611;FR*SOD*S*SIGE*29*1*_*_;SIGEIF - 2 PLACE DE VERDUN - ENGHIEN-LES-BAINS;;RUE DU MONT-VALÉRIEN;40230;[2.310159, 48.968482];;FRLGCEGACO411;FR*SOD*E*MB17*72*1*1*_;;;;;;;;;;;;;;;;;;;22197539635383;2015-09-29;;2020-04-30;;2023-08-05T07:11:37.112000+00:00;6110e8eef231c21c824acdb4;d5a3acad-a5ba-4575-a0b4-ffd24dd0d5e2;;2.310159;48.857159;87370;Mimizan;; +;Burger King - Bernolsheim;392231403;maconsud@fasthotel.com;;;;CHARENTON-du-Cher - Rue Nationale - 214305;FRS17PMB171511;FR*SOD*S*SIGE*29*4*_*_;SIGEIF - 38 RUE DU MONT VALERIEN - SAINT-CLOUD;;ALLÉE DES GYMNASES;40250;[2.215126, 48.857159];;FRLGCEGACO521;FR*SOD*E*MB17*72*1*2*_;;;;;;;;;;;;;;;;;;;22117365972199;2015-11-25;;2017-08-31;;2023-08-05T07:11:36.287000+00:00;6154c41aa48ed03a08961c4b;18cd8b7b-a9d3-49a8-848b-4d59994a4919;;2.215126;48.801016;87190;Léon;; +;Bruyères;791433501;accueil@golf-wantzenau.fr;;;;LA CELLE-CONDE - Mairie - 148843;FRS17PMB171412;FR*SOD*S*SIGE*29*3*_*_;SIGEIF - PLACE MON IDEE - CHENNEVIERES-SUR-MARNE;;RUE GALLIENI;40267;[2.532549, 48.801016];;FRLGCEGACO511;FR*SOD*E*MB17*71*1*1*_;;;;;;;;;;;;;;;;;;;22192763949301;2015-10-19;;2019-10-31;;2023-08-05T07:11:35.848000+00:00;61556c731edfc97c31a156dc;0ff8f284-6055-47de-ae41-667ed7a36d25;;2.532549;48.799648;87110;Magescq;; +;Bulgnéville;200054807;villefranche.Saone.Direction@balladins.com;;;;RAW PARISGIVERNY 10;FRS17PMB171411;FR*SOD*S*SIGE*30*3*_*_;SIGEIF - 13 ROUTE DU PLESSIS - CHENNEVIERES-SUR-MARNE;;RUE DES GRIMETTES;40202;[2.545659, 48.799648];;FRLGCEGACO541;FR*SOD*E*MB17*71*1*2*_;;;;;;;;;;;;;;;;;;;22191316771379;2015-11-06;;2018-05-31;;2023-08-05T07:11:35.416000+00:00;612dee492751be6123cfb85f;9b74fdc1-a7f2-49d2-a979-29a40742b208;;2.545659;48.798856;87260;Moliets-et-Maa;; +;Burger King - Ancenis;412973711;Jean-Christophe.Jomain@joriside.fr;;;;BONNEVAL - Promenade du Mail - 129287;FRS17PMB171911;FR*SOD*S*SIGE*30*4*_*_;SIGEIF - PARKING - RUE DU GENERAL DE GAULLE - CHENNEVIERES-SUR-MARNE;;AVENUE ROGER SALENGRO;40184;[2.531936, 48.798856];;FRLGCEGACO531;FR*SOD*E*MB17*70*1*2*_;;;;;;;;;;;;;;;;;;;22165991152513;2015-10-08;;2022-02-16;;2023-08-05T07:11:35.116000+00:00;614d936841a4ffe70f20286e;ab889f08-3ff4-4b02-a3fc-8afda49a2527;;2.531936;48.805695;87300;Mont-de-Marsan;; +;Burger King - Angers;377638911;contact@zeborne.com;;;;LA CHAPELLE ST URSIN - Mairie - 108359;FRS17PMB172511;FR*SOD*S*SIGE*72*3*_*_;SIGEIF - 33 ROUTE DU PAVE DES GARDES - CHAVILLE;;RUE ANATOLE FRANCE;40150;[2.185283, 48.805695];;FRLGCEGACO561;FR*SOD*E*MB17*70*1*1*_;;;;;;;;;;;;;;;;;;;22129666986005;2015-10-02;;2022-12-21;;2023-08-05T07:11:34.685000+00:00;614c92e850e25def19914e88;e9544f77-bd24-4d21-a27a-a954c829fdf6;;2.185283;48.840307;87420;Saint-Lon-les-Mines;; +;Burger King - Bollène;778168005;info@moulindelaboirie.fr;;;;SUPER U LA SUZE BORNE 2;FRS17PMB172012;FR*SOD*S*SIGE*72*4*_*_;SIGEIF - ROND-POINT DU SOUVENIR FRANCAIS - VAUCRESSON;;RUE CAMILLE DESMOULINS;40168;[2.164518, 48.840307];;FRLGCEGACO551;FR*SOD*E*MB17*69*1*1*_;;;;;;;;;;;;;;;;;;;22196671328559;2015-12-20;;2023-03-24;;2023-08-05T07:11:34.316000+00:00;6155aa7acb30d78ec81e3678;42cfc1a4-e787-4216-bd87-4e97bc861612;;2.164518;48.850512;87250;Rion-des-Landes;; +;Burger King - Chalon sur Saone;877150144;climatisation@jofroid.com;;;;NEUVY S/ BARANGEON - Mairie - 109655;FRS17PMB172011;FR*SOD*S*SIGE*376*1*_*_;SIGEIF - RUE ARMENGAUD - SAINT-CLOUD;;RUE VAUDÉTARD;40187;[2.217007, 48.850512];;FRLGCEGACO451;FR*SOD*E*MB17*69*1*2*_;;;;;;;;;;;;;;;;;;;22178726323404;2021-04-22;;2023-03-27;;2023-08-05T07:11:33.676000+00:00;615aec4d8361a410893539b1;ce1617d9-0273-42d6-b8d9-01d68117be81;;2.217007;48.817419;87510;Saint-Sever;; +;Burger King - Chelles;880708748;ph.quenecan@wanadoo.fr;;;;CHARTRES - Avenue Des Sablons - 129928;FRS17PMB171311;FR*SOD*S*SIGE*137*4*_*_;SIGEIF - 9 RUE BAUDIN - IVRY-SUR-SEINE;;RUE MARCEL ALLÉGOT;40192;[2.37428, 48.817419];;FRLGCEGACO621;FR*SOD*E*MB17*68*1*2*_;;;;;;;;;;;;;;;;;;;50043940108090;2015-09-23;;2022-12-01;;2023-08-05T07:11:33.313000+00:00;615af25b29390d8a8b8b4bf4;bcf25dea-b9bb-409e-8f9f-a4a2034eb2a7;;2.37428;49.002593;87330;Tartas;; +;Burger King - Châteaubriant;811425065;jmpierrot@groupecolombine.com;;;;NANCAY - Mairie - 109617;FRS17PMB172512;FR*SOD*S*SIGE*135*3*_*_;SIGEIF - 68 RUE DE PARIS - LE THILLAY;;RUE HOUDART;40269;[2.471163, 49.002593];;FRLGCEGACO611;FR*SOD*E*MB17*68*1*1*_;;;;;;;;;;;;;;;;;;;22177279145441;2016-03-16;;2023-02-27;;2023-08-05T07:11:32.986000+00:00;615c55806e28b8106e36c68c;6045a9e4-9391-425c-a963-df90a0466ef0;;2.471163;48.953031;87130;Saint-Martin-de-Seignanx;; +;Burger King - Concarneau;332574540;odile.coumeau@greentechnologie.net;;;;BOURGES - Plateau d'Auron - 98368;FRS17PMB172411;FR*SOD*S*SIGE*136*4*_*_;SIGEIF - PLACE FRANCOIS MAURIAC - VILLEPARISIS;;RÉSIDENCE PIERRE MENDÈS FRANCE;40243;[2.612862, 48.953031];;FRLGCEGACO661;FR*SOD*E*MB17*67*1*1*_;;;;;;;;;;;;;;;;;;;22129522268506;2015-12-14;;2023-03-30;;2023-08-05T07:11:32.601000+00:00;615f0d42dfe36a9d1d92c990;e3765d6a-41ba-4c6a-8e55-3a584fc02794;;2.612862;48.950792;87240;Saint-Martin-d'Oney;; +;CC Terres Touloises public;322591892;claude.plenet@wanadoo.fr;;;;MEREAU - Place de la Mairie - 112328;FRS17PMB172412;FR*SOD*S*SIGE*136*3*_*_;SIGEIF - 140 AVENUE EUGENE VARLIN - VILLEPARISIS;;PARKING PLACE DES FÊTES;40282;[2.601128, 48.950792];;FRLGCEGACO651;FR*SOD*E*MB17*67*1*2*_;;;;;;;;;;;;;;;;;;;22190593182399;2015-12-22;;2023-04-01;;2023-08-05T07:11:32.324000+00:00;615ffa3ab927f7e73bbc89bb;43fa4ca3-b0d8-4ea9-8607-f8a44571f1b8;;2.601128;48.81043;87700;Saint-Perdon;; +;Camping Le Bois de Valmarie - SAS Camping du Valmarie;805089159;sud-hotel-alsace@orange.fr;;;;RAW PARISGIVERNY 63;FRS17PMB172311;FR*SOD*S*SIGE*136*2*_*_;SIGEIF - 16 RUE MARAT - IVRY-SUR-SEINE;;RUE DE SUCY;40313;[2.3851, 48.81043];;FRLGCEGACO631;FR*SOD*E*MB17*66*1*2*_;;;;;;;;;;;;;;;;;;;22191027335001;2016-01-06;;2023-04-09;;2023-08-05T07:11:32.075000+00:00;61606900558502c87d0c9522;ff7d63e3-6f98-480f-ae83-e08fb5f130a0;;2.3851;48.807196;87210;Lüe;; +;Camping Le Florival;805089163;garage.lefebvre62560@orange.fr;;;;RAW PARISGIVERNY 21;FRS17PMB172312;FR*SOD*S*SIGE*136*6*_*_;SIGEIF - 27 RUE MICHELET - IVRY-SUR-SEINE;;AVENUE DE LA CELLE ST CLOUD;40273;[2.37586, 48.807196];;FRLGCEGACO641;FR*SOD*E*MB17*66*1*1*_;;;;;;;;;;;;;;;;;;;22196381892922;2016-01-07;;2023-10-01;;2023-08-05T07:11:31.745000+00:00;61641e06a1d2f6e03b6496e1;ab69ccd0-16dc-47d3-99f2-9d2ec9a8ff46;;2.37586;48.812972;87400;Lit-et-Mixe;; +;Camping Le Pré Bas;805089162;ld.thomasguffroy@gmail.com;;;;ITM PUYLAURENS BRVE ITM 81;FRS17PMB172211;FR*SOD*S*SIGE*136*5*_*_;SIGEIF - 5 AVENUE SPINOZA - IVRY-SUR-SEINE;;PLACE DE MADAME DE MAINTENON;40274;[2.389021, 48.812972];;FRLGCEGACO421;FR*SOD*E*MB17*65*1*1*_;;;;;;;;;;;;;;;;;;;22193198102790;2015-12-15;;2022-12-16;;2023-08-05T07:11:31.394000+00:00;6164276a6398b27b6a7bdf2f;67f6b83d-4179-409c-8948-ec633f6cec43;;2.389021;48.980861;87230;Labouheyre;; +;Camping Le Soleil;332834175;thierry.marchisio@pilotagedunkerque.com;;;;VILLEMAURY - Place Saint Martin - 134823;FRS17PMB172212;FR*SOD*S*SIGE*136*1*_*_;SIGEIF - 49 AVENUE DU MARECHAL PIERRE KOEING - SARCELLES;;23 ALLÉE DU COLLÈGE;40280;[2.383546, 48.980861];;FRLGCEGACO471;FR*SOD*E*MB17*65*1*2*_;;;;;;;;;;;;;;;;;;;22101881169148;2021-09-01;;2023-01-05;;2023-08-05T07:11:31.122000+00:00;616460fc554a323e04390335;862a3391-6d2a-42ab-88e4-8f3cd44a2bb6;;2.383546;49.049662;87500;Labastide-d'Armagnac;; +;Camping Le Soleil des Bastides;851779066;thierry.decrescenzo@groupecogit.com;;;;Gourdan Polignan;FRS17PMB172112;FR*SOD*S*SIGE*137*2*_*_;SIGEIF - RUE MAITRE RENAUD - FONTENAY-EN-PARISIS;;BVD RICHARD WALLACE;40163;[2.451673, 49.049662];;FRLGCEGACO461;FR*SOD*E*MB17*64*1*1*_;;;;;;;;;;;;;;;;;;;22191895642571;2022-07-19;;2022-09-19;;2023-08-05T07:11:30.804000+00:00;614c21fed581c66b3d8fb787;a3f4808d-5ed0-421f-aa25-cf3b5a731517;;2.451673;48.976697;87600;Geaune;; +;Camping Les Alizés;751131202;emeric.bertrac@mairie-saint-esprit.fr;;;;SONEPAR CESSON-SEVIGNE;FRS17PMB172111;FR*SOD*S*SIGE*137*3*_*_;SIGEIF - PLACE ANDRE GIDE - SARCELLES;;PARKING RUE LUCIEN SAMPAIX;40157;[2.370779, 48.976697];;FRLGCEGACO351;FR*SOD*E*MB17*64*1*2*_;;;;;;;;;;;;;;;;;;;22179449912470;2021-10-15;;2022-10-22;;2023-08-05T07:11:30.448000+00:00;61322403107ff83af50bbe3a;c4475f71-e101-4bda-a253-d6cb6becd39c;;2.370779;48.940606;06470;Gabarret;; +;Camping Les Genêts d'or;801484627;j.louismarie@wanadoo.fr;;;;RAW PARISGIVERNY 22;FRS17PMB17112;FR*SOD*S*SIGE*137*1*_*_;SIGEIF - RUE DE RUZE - VILLEPARISIS;;PARKING RÉPUBLIQUE;40134;[2.620085, 48.940606];;FRLGCEGACO111;FR*SOD*E*MB17*63*1*1*_;;;;;;;;;;;;;;;;;;;22192040360377;2022-11-24;;2022-12-22;;2023-08-05T07:11:30.155000+00:00;612f2793bc9d931ee2879ebd;81ffe552-8745-4a28-9b7f-af9429a1eed3;;2.620085;48.883921;06850;Amou;; +;Camping Les Ormes;746150218;courrier@stjoseph972.fr;;;;Lochères;FRS17PMB171312;FR*SOD*S*SIGE*137*6*_*_;SIGEIF - 23 RUE CHANTE COQ - PUTEAUX;;RUE RIOCREUX;40131;[2.236634, 48.883921];;FRLGCEGACO221;FR*SOD*E*MB17*63*1*2*_;;;;;;;;;;;;;;;;;;;22178292170054;2022-07-20;;2022-12-05;;2023-08-05T07:11:29.778000+00:00;6130c3b7d11487793b98f49a;f63240cb-8c2a-405f-a912-7e47981f0a3b;;2.236634;48.729206;06560;Pouillon;; +;Camping Les Pingouins - SAS Loisirs;808790224;joachim.marie@envergureauto.net.bmw.fr;;;;RAW PARISGIVERNY 23;FRS17PMB17712;FR*SOD*S*SIGE*137*5*_*_;SIGEIF - MAIL DE LA JUSTICE MAROLLES-EN-BRIE;;QUAI DE DION BOUTON;40110;[2.542244, 48.729206];;FRLGCEGACO231;FR*SOD*E*MB17*62*1*2*_;;;;;;;;;;;;;;;;;;;22168885512907;2022-11-21;;2022-09-22;;2023-08-05T07:11:29.164000+00:00;613134e194e2b9102ca20e1d;dab09f6c-9ee0-4319-95f9-9a177fc0a5a1;;2.542244;48.957323;06210;Montfort-en-Chalosse;; +;Camping Les Pêcheurs;325805547;cdelahaye@automobilesdelahaye.com;;;;FUSSY - La poste - 207176;FRS17PMB17612;FR*SOD*S*SIGE*138*6*_*_;SIGEIF - 7 PLACE DU CAPITAINE CHAUVELOT - ARGENTEUIL;;RUE JEAN MARIN NAUDIN;40102;[2.287242, 48.957323];;FRLGCEGACO211;FR*SOD*E*MB17*62*1*1*_;;;;;;;;;;;;;;;;;;;22102315322530;2022-09-12;;2022-11-30;;2023-08-05T07:11:28.874000+00:00;61313580e231768c797abad5;78c27f0c-694f-4919-9910-cb26d37c7b8c;;2.287242;48.940484;06370;Pontenx-les-Forges;; +;Camping Les Rives du Lac Veynes;341636918;benoitpneumatiques@gmail.com;;;;FARGES EN SEPTAINE - Mairie - 188336;FRS17PMB17511;FR*SOD*S*SIGE*135*1*_*_;SIGEIF - PLACE DU 8 MAI 1945 - ARGENTEUIL;;RUE DU DOCTEUR SCHWEITZER;40002;[2.247911, 48.940484];;FRLGCEGACO441;FR*SOD*E*MB17*48*1*1*_;;;;;;;;;;;;;;;;;;;22197394917515;2022-08-11;;2022-11-28;;2023-08-05T07:11:28.410000+00:00;6131d5b0ae8c4ab0f4b546b4;1c3ddcdd-e44f-400a-86b8-f1dde3fe078a;;2.247911;49.009207;06410;Messanges;; +;Camping Le Bois Joly;851381459;j.legrand@groupegca.com;;;;THENEUIL 16754 - Grande Rue;FRS17PMB17512;FR*SOD*S*SIGE*138*2*_*_;SIGEIF - CHEMIN SAINT DENIS - THILLAY;;RUE RENÉ CROS;40233;[2.479328, 49.009207];;FRLGCEGACO251;FR*SOD*E*MB17*49*1*3*_;;;;;;;;;;;;;;;;;;;22148625019158;2021-07-09;;2022-10-23;;2023-08-05T07:11:28.036000+00:00;6135c2cf2e3aebd439188e51;a22f7243-998a-4e8d-8322-b428040a4223;;2.479328;48.931418;06250;Pomarez;; +;Camping L'Hippocampe - SAS l'Hippocampe;821185634;contact@carelecelectricite.fr;;;;ARGENT-sur-Sauldre - Place du Marché - 207811;FRS17PMB17411;FR*SOD*S*SIGE*138*3*_*_;SIGEIF - RUE AUGUSTE RENOIR - COLOMBES;;PIERRE ET MARIE CURIE;40194;[2.260623, 48.931418];;FRLGCEGACO361;FR*SOD*E*MB17*47*1*1*_;;;;;;;;;;;;;;;;;;;22108972342929;2021-08-02;;2022-03-03;;2023-08-05T07:11:27.544000+00:00;6149ddcf7b9d1b7ec1ce8c20;ef94742e-0212-4e3c-a1dc-2a1a6e96f3c1;;2.260623;49.041152;06550;Peyrehorade;; +;Camping L'imprévu;380301317;christine.sgard@mauffrey.com;;;;LAMOTTE-BEUVRON- 117722- Rue Ernest Gaugiran;FRS17PMB17312;FR*SOD*S*SIGE*138*5*_*_;SIGEIF - 23 RUE DES CORDONNIERS - BOUFFEMONT;;RUE FERNAND LÉGER;40229;[2.310958, 49.041152];;FRLGCEGACO241;FR*SOD*E*MB17*33*1*1*_;;;;;;;;;;;;;;;;;;;22186396363804;2021-12-06;;2022-10-24;;2023-08-05T07:11:27.225000+00:00;613635096d60d31b84c00af6;761473f7-8cb0-442e-a257-d7990be5a843;;2.310958;49.045307;06260;Mugron;; +;Camping La Croix du Sud;434017455;nmavet@f3c-sa.com;;;;COURS-LES*BARRES - Grande Rue - 181472;FRS17PMB17311;FR*SOD*S*SIGE*138*4*_*_;SIGEIF - RUE LOUISE MICHEL - BOUFFEMONT;;RUE BELTRAME;40181;[2.322472, 49.045307];;FRLGCEGACO341;FR*SOD*E*MB17*37*1*2*_;;;;;;;;;;;;;;;;;;;22148480301306;2021-08-26;;2022-11-07;;2023-08-05T07:11:22.920000+00:00;61372c65ecf874da7c80da7d;bff4d7c9-9cf0-4fde-888e-66be1c4f1136;;2.322472;48.743228;83480;Moustey;; +;Camping La Parée du Both;349925362;raphael@rdle.fr;;;;HYPERU BORNE 3;FRS17PMB17212;FR*SOD*S*SIGE*138*1*_*_;SIGEIF - 54 BOULEVARD DU MARECHAL FOCH - VERRIERES-LE-BUISSON;;PLACE DU DOCTEUR BERTHET;40228;[2.264582, 48.743228];;FRLGCEGACO311;FR*SOD*E*MB17*37*1*3*_;;;;;;;;;;;;;;;;;;;22129377550407;2021-07-30;;2022-11-10;;2023-08-05T07:11:22.527000+00:00;613875b8cf66eb7aeedaba97;350f6fef-68a7-4dd5-abe2-c9e5176dd9b2;;2.264582;48.800118;06220;Romagnieu;; +;Camping La Petite Montagne;533390514;contact@hotel-le-bon-cap.com;;;;CGED CGED BRIGNAIS;FRS17PMB17211;FR*SOD*S*SIGE*139*1*_*_;SIGEIF - 1 RUE RENE - VIROFLAY;;AVENUE DES ETANGS;40224;[2.1842, 48.800118];;FRLGCEGACO331;FR*SOD*E*MB17*47*1*2*_;;;;;;;;;;;;;;;;;;;22156150335747;2021-08-06;;2022-10-28;;2023-08-05T07:11:21.624000+00:00;614305ca6e0cbbee72684a05;62fd61b1-911c-47fd-aaea-ef0261cd7241;;2.1842;48.923662;06270;Havrincourt;; +;Camping La Pinède;331996140;contact@hoteltrecelin.com;;;;CHATEAUMEILLANT - Place de l'église - 182394;FRS17PMB172612;FR*SOD*S*SIGE*139*4*_*_;SIGEIF - 1 RUE GOUNOD - COLOMBES;;BOULEVARD CARNOT PARKING;40201;[2.24842, 48.923662];;FRLGCEGACO321;FR*SOD*E*MB17*36*1*2*_;;;;;;;;;;;;;;;;;;;22156295053591;2021-09-15;;2022-10-11;;2023-08-05T07:11:21.291000+00:00;6148ab32783e9ea9c2d3cd52;b2eb835e-1b24-450d-9af1-fcd90a8ec5c0;;2.24842;48.927836;06140;Dijon;; +;Camping La Plage Verte;562013771;jerome.desegogne@fulton.fr;;;;GRACAY - Place Gapion - 206002;FRS17PMB17111;FR*SOD*S*SIGE*139*5*_*_;SIGEIF - AVENUE AUDRA - COLOMBES;;AVENUE DU MARÉCHAL JUIN;40200;[2.25284, 48.927836];;FRLGCEGACO431;FR*SOD*E*MB17*36*1*1*_;;;;;;;;;;;;;;;;;;;22186251646074;2021-08-04;;2021-08-05;;2023-08-05T07:11:20.916000+00:00;60f82f55ebf30fde46f07244;a851011d-a6de-43f1-9d66-b52d7d312432;;2.25284;48.922232;06110;Chevigny-Saint-Sauveur;; +;Camping La Plage du Dramont;490227402;laconciergeriedisa@gmail.com;;;;MANUTAN 16;FRS17PMB17611;FR*SOD*S*SIGE*139*3*_*_;SIGEIF - 52 RUE DE SEINE - COLOMBES;;PLACE OLIVIER MESSIAEN;38343;[2.228808, 48.922232];;FRS33EMB3316221;FR*SOD*E*MB17*35*1*2*_;;;;;;;;;;;;;;;;;;;22170911562227;2021-08-03;;2022-08-09;;2023-08-05T07:11:20.519000+00:00;5fd3afa95776168bad7db8d0;d8bb932c-8dfd-40de-ac3e-2b015101fef7;;2.228808;48.947107;06530;Magny-Cours;; +;Camping La Rivière;520393661;pierre.pazat@eremji.fr;;;;LEVET - Mairie - 150932;FRS17PMB17711;FR*SOD*S*SIGE*139*2*_*_;SIGEIF - 11 BOULVERARD DU GENERAL LECLERC - ARGENTEUIL;;AVENUE DU DOCTEUR ANTOINE LACROIX;62421;[2.239076, 48.947107];;FRS33EMB3316511;FR*SOD*E*MB17*35*1*3*_;;;;;;;;;;;;;;;;;;;22186541081684;2021-08-05;;2022-12-23;;2023-08-05T07:11:19.679000+00:00;5e9d5cfb1a7cd001b4eda135;ebb6f8b0-56af-4761-aeb9-3f447c89bcad;;2.239076;48.873871;06710;Doyet;; +;Camping Little Carpe Diem;441568748;rlefebvre@citelum.fr;;;;MÉNÉTRÉOL-SUR-SAULDRE - Place de l'Eglise - 147512;FRS17PMB171212;FR*SOD*S*SIGE*141*6*_*_;SIGEIF - 37 AVENUE GEORGES POMPIDOU - SURESNES;;FACE AU 7 ALLÉE DU VERGER - PARKING DE LORANGERIE;21231;[2.235762, 48.873871];;FRS33EMB3316512;FR*SOD*E*MB17*35*1*1*_;;;;;;;;;;;;;;;;;;;22192908667271;2022-03-03;;2023-02-15;;2023-08-05T07:11:19+00:00;6054b5221247124149d65773;30ee5554-ef99-447b-98ed-c4415ea9c871;;2.235762;48.883089;06910;Nogent;; +;Camping Lou Galip;888632957;claude.lebrize@dropnplug.fr;;;;THIRON-GARDAIS - Place du Marché - 130987;FRS17PMB171211;FR*SOD*S*SIGE*141*3*_*_;SIGEIF - 1 PLACE DE SOUVENIR FRANCAIS - PUTEAUX;;RUE HUCHÉ;21171;[2.232948, 48.883089];;FRS33EMB3316412;FR*SOD*E*MB17*34*1*2*_;;;;;;;;;;;;;;;;;;;22170187973220;2021-09-08;;2023-02-17;;2023-08-05T07:11:17.924000+00:00;605872993cf08cad1c4e9492;cd54731d-b9c9-43ef-aff2-d5722f369074;;2.232948;48.839452;06810;Portes-lès-Valence;; +;Camping de la Baie;800994055;niphis@wanadoo.fr;;;;MARMAGNE - Place de la mairie - 109050;FRS17PMB171111;FR*SOD*S*SIGE*135*2*_*_;SIGEIF - 2 BOULEVARD DU LEVANT - NOISY-LE-GRAND;;RUE ANTOINE VOLLON;58152;[2.549201, 48.839452];;FRS33EMB3316411;FR*SOD*E*MB17*34*1*1*_;;;;;;;;;;;;;;;;;;;22170477408832;2022-02-04;;2022-09-13;;2023-08-05T07:11:12.604000+00:00;60758c5f7cf40f41e196bec8;8f3fd29a-19ba-472e-9dba-f6be1546b24e;;2.549201;48.895792;06620;Marguerittes;; +;Camping de la Dune;339436917;contact@chartonvachet.fr;;;;CHAILLES 2956 - Rue des Cormiers;FRS17PMB171112;FR*SOD*S*SIGE*135*4*_*_;SIGEIF - ROND-POINT DE MONTFERMEIL - LE RAINCY;;CHEMIN DE LA VOIE BLANCHE PARKING PISCINE;;[2.526659, 48.895792];;FRS33EMB3316312;FR*SOD*E*MB17*34*1*3*_;;;;;;;;;;;;;;;;;;;22186106928208;2022-03-04;;2023-02-11;;2023-08-05T07:11:12.338000+00:00;60770ea7cf621e339904bd22;1854111e-d6d6-4c05-81f4-168b9e8c3f63;;2.526659;48.877078;06830;Créancey;; +;Camping de la Faz;500152780;elodie.princet@scalandes.fr;;;;BOSSEE - 117836 - PLACE DE LA MAIRIE;FRS17PMB171012;FR*SOD*S*SIGE*118*1*_*_;SIGEIF - 7 ALLEE DES SPORTS - PUTEAUX;;ROUTE STRATÉGIQUE;03104;[2.243501, 48.877078];;FRS33EMB3316311;FR*SOD*E*MB17*33*1*3*_;;;;;;;;;;;;;;;;;;;22139363078851;2022-09-20;;2022-07-26;;2023-08-05T07:11:12.039000+00:00;53cdf714a3a7292987895b28;d08db897-943e-43aa-a17e-d5a84b64fa71;;2.243501;48.816769;06590;Guillon-Terre-Plaine;; +;Camping du Jard;350416350;c.dimitri@gruissan-mediterranee.com;;;;St FLORENT SUR CHER - La Vigonnière - 179307;FRS17PMB171011;FR*SOD*S*SIGE*128*1*_*_;SIGEIF - 67 RUE GABRIEL PERI - IVRY-SUR-SEINE;;AVENUE PASTEUR;52353;[2.379583, 48.816769];;FRS33EMB3316212;FR*SOD*E*MB17*33*1*2*_;;;;;;;;;;;;;;;;;;;22102025886997;2021-11-03;;2023-03-06;;2023-08-05T07:11:11.696000+00:00;54b7ce3ec751df56d15fa5a2;3edfda80-8ea8-496d-b28f-6f90d63bf006;;2.379583;48.943852;06650;Chauvigny;; +;Camping le Brasilia public;433528734;jean-sebastien.durand@driveone.fr;;;;HENRICHEMONT - Eglise - 113070;FRS17PMB17912;FR*SOD*S*SIGE*119*1*_*_;SIGEIF - 23 RUE DE LA DIGUE - MAISONS-LAFFITTE;;AVENUE DU MARÉCHAL JOFFRE;26252;[2.151554, 48.943852];;FRS33EMB3316211;FR*SOD*E*MB17*32*1*2*_;;;;;;;;;;;;;;;;;;;22192619231683;2021-11-26;;2023-01-04;;2023-08-05T07:11:11.422000+00:00;57a4422988ee383ec3d73ff5;e715dc09-e2b4-4d6d-8417-92d0dc222637;;2.151554;48.861252;06740;Marnay;; +;Camping le Haras;878873942;hotel-alivi@wanadoo.fr;;;;RAW PARISGIVERNY 13;FRS17PMB17911;FR*SOD*S*SIGE*121*1*_*_;SIGEIF - 2 RUE MARCEL MONGE - SURESNES;;ANGLE RUE DE VERDUN/RUE DU CHÂTEAU PARKING;30156;[2.224059, 48.861252];;FRS33EMB3316222;FR*SOD*E*MB17*38*1*3*_;;;;;;;;;;;;;;;;;;;22191027335876;2021-08-31;;2022-01-03;;2023-08-05T07:11:11.048000+00:00;5821b44b88ee385387c65bb3;8aa92ea7-fd39-4720-be79-94435566950b;;2.224059;48.948752;06750;Lussac-les-Châteaux;; +;Camping le Parc de la Grève;478811458;benoit.ornaque@orange.fr;;;;VOVES - Bd Maurice Violette - 134417;FRS17PMB17812;FR*SOD*S*SIGE*122*1*_*_;SIGEIF - PLACE ARISTIDE BRIAND - ARGENTEUIL;;AVENUE LAMARTINE;21210;[2.257649, 48.948752];;FRS33EMB3316712;FR*SOD*E*MB17*32*1*1*_;;;;;;;;;;;;;;;;;;;22177858016668;2021-11-02;;2023-01-03;;2023-08-05T07:11:10.185000+00:00;5ae9d7aac751df5738c39823;20a3a45a-55af-42a0-890a-2a5826214342;;2.257649;48.87125;06510;Verrières;; +;Camping les Écureuils;521675777;donato.zuddas@scaso.fr;;;;LA GUERCHE - Place Auguste FOURNIER - 151547;FRS17PMB17811;FR*SOD*S*SIGE*123*1*_*_;SIGEIF - 15 RUE DE VERDUN - SURESNES;;AVENUE DE LÉGALITÉ;89197;[2.22766, 48.87125];;FRS33EMB3316112;FR*SOD*E*MB17*32*1*3*_;;;;;;;;;;;;;;;;;;;22191027335764;2021-12-15;;2022-06-09;;2023-08-05T07:11:09.914000+00:00;5b597823c751df57045198a4;006e5c03-42a1-41b2-9d75-e360e35d79a1;;2.22766;48.999316;06330;Nieuil-l'Espoir;; +;Camping de l'Abbatiale;200080869;contact@porte90.fr;;;;SAINT AIGNAN 2954 - Place du Président Wilson;FRS17PMB172611;FR*SOD*S*SIGE*124*1*_*_;SIGEIF - 23 AVENUE DE LA 1ERE ARMEE FRANCAISE - MONTMORENCY;;RUE CRISTINO GARCIA PLACE ETIENNE DOLET;86070;[2.321968, 48.999316];;FRS33EMB3316111;FR*SOD*E*MB17*31*1*1*_;;;;;;;;;;;;;;;;;;;22191172053520;2022-12-23;;2023-02-06;;2023-08-05T07:11:09.219000+00:00;609982f98ad8fc58470a2b1d;c4074688-0647-48fa-93de-54c5f68c42e4;;2.321968;48.973415;06580;Naintré;; +;Camping Millau Plage;881471791;contact@lebistrodhugo.com;;;;Lacq Audéjos Sud;FRS17PMB176012;FR*SOD*S*SIGE*125*1*_*_;SIGEIF - 4 RUE JEAN MONNET - MONTMORENCY;;RUE FLAMMARION PARKING PLAINE DU LUAT;86148;[2.312299, 48.973415];;FRS33EMB3316021;FR*SOD*E*MB17*31*1*3*_;;;;;;;;;;;;;;;;;;;22193776974543;2022-09-28;;2022-10-05;;2023-08-05T07:11:08.857000+00:00;60d9fd5d16a5a0baef3f38aa;df4063b3-aaab-436d-8b9f-334d1e9bc2d6;;2.312299;48.988914;06460;La Trimouille;; +;Camping Mané Guernehué;449431683;clients@gazdebordeaux.fr;;;;Dourdan;FRS17PMB175812;FR*SOD*S*SIGE*135*5*_*_;SIGEIF - RUE DU DOCTEUR DEMIRLEAU - MONTMORENCY;;RUE CRISTINO GARCIA;86140;[2.319999, 48.988914];;FRS33EMB3316022;FR*SOD*E*MB17*31*1*2*_;;;;;;;;;;;;;;;;;;;22193053384927;2022-07-21;;2023-02-05;;2023-08-05T07:11:08.545000+00:00;60e21bfc8ef139c23520fab3;7b78b3de-81b5-4b38-a414-3c3a8e6180ce;;2.319999;48.95965;06570;Savigné;; +;Camping Maïana Resort;507500775;mickaelauto@wanadoo.fr;;;;LE THIEULIN - Rue de la mairie - 134175;FRS17PMB175811;FR*SOD*S*SIGE*129*1*_*_;SIGEIF - 12 RUE DES RAGUENETS - SAINT GRATIEN;;RUE DES BUSSYS INTERSECTION RUE HENRI COUDERT;86285;[2.284159, 48.95965];;FRS33EMB3316011;FR*SOD*E*MB17*30*1*3*_;;;;;;;;;;;;;;;;;;;22152098246055;2022-03-02;;2022-06-23;;2023-08-05T07:11:07.711000+00:00;60db4d8dc29b78aecdaf7d50;b3786411-0a0d-4342-a492-853fe371a011;;2.284159;48.965992;06480;Saint-Jean-de-Sauves;; +;Camping Parc Bastide;349586859;agrandclaude@wanadoo.fr;;;;BIOPATH HDF BETHUNE;FRS17PMB175612;FR*SOD*S*SIGE*132*1*_*_;SIGEIF - 47 RUE BERTHIE ALBRECHT - SAINT GRATIEN;;RUE DES PENDANTS PARKING CTM;86178;[2.284068, 48.965992];;FRS33EMB3316012;FR*SOD*E*MB17*30*1*1*_;;;;;;;;;;;;;;;;;;;22197250199772;2022-09-02;;2021-05-17;;2023-08-05T07:11:07.333000+00:00;60d4818e7ce8843a8c10ade5;4ad03f4d-93d6-46df-a589-41bb161d7257;;2.284068;49.050178;59700;Boivre-la-Vallée;; +;Camping Pendruc Tregunc;241300375;contact@jav-investissement.fr;;;;LA CHAPELLE VENDOMOISE 3803;FRS17PMB175613;FR*SOD*S*SIGE*133*1*_*_;SIGEIF - PARKING DU STADE MUNICIPAL - FONTENAY EN PARISIS;;PARKING DES FAUVETTES;86174;[2.444934, 49.050178];;FRS33EMB3315911;FR*SOD*E*MB17*30*1*2*_;;;;;;;;;;;;;;;;;;;22191461489119;2022-08-23;;2022-07-04;;2023-08-05T07:11:06.677000+00:00;609a8e787755241db91d47fa;abfef847-3a85-4b81-b03e-4b1a2088380e;;2.444934;48.754676;19510;Martaizé;; +;Camping Sylvamar;251301545;philippe.bras@hexaom.fr;;;;BIOPATH HDF SAINT-OMER;FRS17PMB175611;FR*SOD*S*SIGE*134*3*_*_;SIGEIF - PLACE DE LA MAIRIE - BIEVRES;;AVENUE ALBERT SARRAUT;86273;[2.21486, 48.754676];;FRS33EMB3315912;FR*SOD*E*MB17*28*1*2*_;;;;;;;;;;;;;;;;;;;22192908667160;2022-05-12;;2021-07-28;;2023-08-05T07:10:59.478000+00:00;60d47ce9b5be8f32bef78fcc;0aee2488-4621-4e71-850e-5744b5732204;;2.21486;48.799087;19190;Saint-Macoux;; +;Camping Val Drome Soleil;256300146;eknacat@hotmail.fr;;;;CHATILLON EN DUNOIS - rue de Courtalain - 134208;FRS17PMB175511;FR*SOD*S*SIGE*134*5*_*_;SIGEIF - 12 RUE DES FUSILLE DE CHATEAUBRIAND - CHENNEVIERES-SUR-MARNE;;RUE LAZARE CARNOT;86255;[2.535132, 48.799087];;FRS33EMB3315811;FR*SOD*E*MB17*28*1*1*_;;;;;;;;;;;;;;;;;;;22109406496398;2022-07-06;;2021-11-23;;2023-08-05T07:10:59.097000+00:00;60d35e7343f04bca116961e2;2a8ace47-fbf1-4d38-a67d-f5fd8dc66712;;2.535132;48.874264;19140;Lusignan;; +;Camping Iscle de Prelles;850854993;sas.fitp@yahoo.com;;;;NEUNG SUR BEUVRON - Henry de Geoffre - 167613;FRS17PMB175512;FR*SOD*S*SIGE*134*2*_*_;SIGEIF - 52 RUE CARNOT - SURESNES;;RUE DESTIENNE DORVES;86225;[2.227553, 48.874264];;FRS33EMB3316711;FR*SOD*E*MB17*27*1*1*_;;;;;;;;;;;;;;;;;;;22169174948612;2022-06-26;;2021-12-15;;2023-08-05T07:10:58.814000+00:00;60d1f79bd066e6d22e53a911;6a321dc5-51c4-4d21-8629-c3427bfc40b1;;2.227553;48.868305;19000;Villemort;; +;CIVIS - SPL OPUS;879689750;ronan.pieyns@ailette.fr;;;;GALLARDON - Résidence de la tour - 129289;FRS17PMB175513;FR*SOD*S*SIGE*134*4*_*_;SIGEIF - 1 RUE CHARLES PEGUY - SURESNES;;AVENUE DE LA RÉSISTANCE;86123;[2.225601, 48.868305];;FRS33EMB331111;FR*SOD*E*MB17*37*1*1*_;;;;;;;;;;;;;;;;;;;22191606206980;2022-01-12;;2021-12-22;;2023-08-05T07:10:58.444000+00:00;60d1f1c726bcd1b3811eb3d6;68addd00-cff6-47ef-901d-ee84f2a86395;;2.225601;48.803085;19600;Villiers;; +;CER France public;881047948;ytricaud@betrom-se.com;;;;La Chapelle-Vendômoise | Chemin des Coulisses;FRS17PMB175411;FR*SOD*S*SIGE*134*1*_*_;SIGEIF - 8 AVENUE ARLETTY - BOIS-DARCY;;AVENUE DU PRÉSIDENT WILSON;86149;[2.011658, 48.803085];;FRS33EMB3316811;FR*SOD*E*MB17*36*1*3*_;;;;;;;;;;;;;;;;;;;22129522268270;2022-04-14;;2022-04-11;;2023-08-05T07:10:57.954000+00:00;60d1b7c67b34dc99f7aac03f;d5253106-9e7e-4fa7-987d-54e55495d5a2;;2.011658;48.847681;19240;Château-Garnier;; +;CERECO;450743398;pcoquard@chateaudesbroyers.fr;;;;DAMMARIE - Place de l'église - 137348;FRS17PMB175413;FR*SOD*S*SIGE*135*6*_*_;SIGEIF - RUE DES 4 SAISONS - NOISY-LE-GRAND;;ALLÉE DES CASTORS;86231;[2.549687, 48.847681];;FRS33EMB3317423;FR*SOD*E*MB17*38*1*1*_;;;;;;;;;;;;;;;;;;;22171056280097;2022-01-26;;2021-08-12;;2023-08-05T07:10:57.661000+00:00;60e31129b45a5de8ca5a4ea8;92f593e2-1105-408a-b818-a8032bdc6554;;2.549687;48.829448;19800;Adriers;; +;CGR Buxerolles;215701061;givenchy.dgs@orange.fr;;;;Charleval;FRS17PMB175412;FR*SOD*S*SIGE*141*1*_*_;SIGEIF - 71 AVENUE MEDERIC - NOISY-LE-GRAND;;MAIL DES PASSEMENTIÈRES;86139;[2.566347, 48.829448];;FRS33EMB331112;FR*SOD*E*MB17*43*1*3*_;;;;;;;;;;;;;;;;;;;22121418075963;2022-03-22;;2021-07-25;;2023-08-05T07:10:57.257000+00:00;60e99f881f52cc3de7b9f96f;7b8f7832-b0fe-414f-8074-19e88c6fd4bd;;2.566347;48.924688;19270;Saint-Léomer;; +;CGR Vitrolles;812439511;mairie.boisbernard@gmail.com;;;;Meyrargues;FRS17PMB175313;FR*SOD*S*SIGE*141*5*_*_;SIGEIF - 8 AVENUE MENELOTTE - COLOMBES;;AVENUE EMELIE;86291;[2.259156, 48.924688];;FRS33EMB3317711;FR*SOD*E*MB17*47*1*3*_;;;;;;;;;;;;;;;;;;;22169898537683;2022-01-19;;2022-03-21;;2023-08-05T07:10:56.876000+00:00;60ec114a8d02ab804b74e2bd;c890d14e-2784-4c23-b03c-9c6aa0a5c02c;;2.259156;49.079916;19500;Coulombiers;; +;CGS AUTO Chavelot;627220049;contact@evzen.com;;;;Aire de Pont Chêne d'Argent;FRS17PMB175311;FR*SOD*S*SIGE*141*2*_*_;SIGEIF - 2 BIS HAMEAU DU BEAU JAY - BELLOY-EN-FRANCE;;RUE BLANCHE;86292;[2.353092, 49.079916];;FRS33EMB3317712;FR*SOD*E*MB17*46*1*2*_;;;;;;;;;;;;;;;;;;;22165122850207;2022-03-31;;2022-06-08;;2023-08-05T07:10:56.103000+00:00;60ec72bb3d4891514c9bb6bf;b21accec-00fa-4a3a-804d-0a322bf7f344;;2.353092;48.78506;19360;Rouillé;; +;CCM;399780097;chapiteaux-service@wanadoo.fr;;;;SONEPAR CONNECT SAINT-JUNIEN;FRS17PMB175312;FR*SOD*S*SIGE*427*1*_*_;SIGEIF - AV DE LATTRE DE TASSIGNY - MEUDON;;AVENUE DES FRÈRES LUMIÈRE;86064;[2.223497, 48.78506];;FRS33EMB3317623;FR*SOD*E*MB17*46*1*3*_;;;;;;;;;;;;;;;;;;;22190882618007;2022-03-07;;2022-12-15;;2023-08-05T07:10:50.446000+00:00;60f06c3ce995d019f0e37816;8dd4e64f-6481-42c1-8d17-2feae7369a64;;2.223497;48.798756;19700;Les Trois-Moutiers;; +;CC du Val d'Amour;490391620;design@studio30.fr;;;;SONEPAR CONNECT SOISY;FRS17PMB175211;FR*SOD*S*SIGE*152*2*_*_;SIGEIF - 17 AVENUE LOUIS PASTEUR - BAGNEUX;;RUE EMY LES PRÉS;86001;[2.317675, 48.798756];;FRS33EMB3317622;FR*SOD*E*MB17*46*1*1*_;;;;;;;;;;;;;;;;;;;22133863804819;2020-06-17;;2022-01-11;;2023-08-05T07:10:50.077000+00:00;60f19b3ea3a5c967820e7181;98cdb6e6-9b64-4ba8-a166-7fb77482a1f5;;2.317675;48.839897;19460;Chouppes;; +;CC du Pays du Saintois;315255752;david.connan@sde22.fr;;;;Shell Aire du Domaine d'Harcourt HW;FRS17PMB175212;FR*SOD*S*SIGE*152*3*_*_;SIGEIF - 61 BOULEVARD JEAN JAURES - BOULOGNE-BILLANCOURT;;RUE DU NOYER DE LIMAGE;86230;[2.240082, 48.839897];;FRS33EMB3317621;FR*SOD*E*MB17*45*1*1*_;;;;;;;;;;;;;;;;;;;22133574369200;2020-08-12;;2023-01-30;;2023-08-05T07:10:49.678000+00:00;60f7e4bea739f08ebe2c6044;c60d0865-87d5-4fb9-bc41-0b8c31aace2d;;2.240082;48.857063;19300;Pressac;; +;CC du Sud-Artois;415183680;david.dorman@sdef.fr;;;;Troyes Sud;FRS17PMB175213;FR*SOD*S*SIGE*152*6*_*_;SIGEIF - 199 BOULEVARD DE LA REPUBLIQUE - SAINT-CLOUD;;RUE DES CARRIÈRES;86083;[2.210997, 48.857063];;FRS33EMB3317512;FR*SOD*E*MB17*45*1*3*_;;;;;;;;;;;;;;;;;;;22169464384247;2020-12-24;;2021-08-20;;2023-08-05T07:10:49.229000+00:00;60d04ba06cc14b6e59b33eaf;9dde22fe-bd93-4de5-a213-5417c52ee468;;2.210997;48.847778;19230;Gizay;; +;CC du Ternois;499606739;hotelrestaurant@laerodrome.com;;;;Fondettes 7613 - Rue de l'Aubrière;FRS17PMB172712;FR*SOD*S*SIGE*153*3*_*_;SIGEIF - 52 AVENUE DU MARECHAL FOCH - SAINT-CLOUD;;RUE DE SOISY PARKING ESPACE JEUNESSE ET FAMILLES;86213;[2.207391, 48.847778];;FRS33EMB3317511;FR*SOD*E*MB17*45*1*2*_;;;;;;;;;;;;;;;;;;;22134732111685;2020-09-17;;2020-11-17;;2023-08-05T07:10:48.872000+00:00;60ccbe268c32d25577e1c08a;0f91017b-5989-4bfe-bbc6-7a777668d499;;2.207391;48.855042;19430;Usson-du-Poitou;; +;Camping Figurotta;848778429;marc.kotelon@montblanc-hotel.fr;;;;Launois sur Vence - 1 rue Louis Joly - 129231;FRS17PMB175111;FR*SOD*S*SIGE*153*4*_*_;SIGEIF - 8 RUE DU MONT-VALERIEN - SAINT-CLOUD;;CHEMIN DE MONTIGNY ESPACE ANDRÉ MALRAUX;86274;[2.215528, 48.855042];;FRS33EMB3317422;FR*SOD*E*MB17*44*1*2*_;;;;;;;;;;;;;;;;;;;22170622126612;2020-11-26;;2021-06-15;;2023-08-05T07:10:48.399000+00:00;60c4b484098ecb70105ab69b;6275f764-da66-4e4c-a8e3-c127fdbb4130;;2.215528;48.843157;19330;Le Vigeant;; +;Cabinet Pautrat - ASL LE SUPERNOVA;885354860;chistophe.cousty@audi-nimes.com;;;;Fondettes 7736 - Rue Alfred de Musset;FRS17PMB175113;FR*SOD*S*SIGE*153*1*_*_;SIGEIF - 8 BOULEVARD DE LA REPUBLIQUE - SAINT-CLOUD;;MAIL JEAN-BAPTISTE POQUELIN PARKING DU SUPER MARCHÉ;86075;[2.207385, 48.843157];;FRS33EMB3316812;FR*SOD*E*MB17*44*1*1*_;;;;;;;;;;;;;;;;;;;22149203890378;2020-07-24;;2021-03-29;;2023-08-05T07:10:47.976000+00:00;60a3944dcfd5c832b2b47bc4;5d8faa3c-0a6a-4341-944e-63195fe79c31;;2.207385;48.859722;19130;Cissé;; +;Camif Habitat;399171545;alban.durier@gmail.com;;;;TREMBLAY LES VILLAGES - Rue Taugourdeau - 130903;FRS17PMB175112;FR*SOD*S*SIGE*153*2*_*_;SIGEIF - ALLEE DES GYMNASES - SAINT-CLOUD;;RUE FRANÇOIS TRUFFAUT PARKING DE LA PISCINE;86200;[2.212253, 48.859722];;FRS33EMB3317421;FR*SOD*E*MB17*38*1*2*_;;;;;;;;;;;;;;;;;;;22134442676057;2020-10-30;;2021-08-27;;2023-08-05T07:10:47.580000+00:00;60ad2fcd47bc3dd2aabcc5ac;daf36da4-85c9-40e9-9f6c-5a01dbe1ca0a;;2.212253;48.836639;19370;Bonnes;; +;Camping Bella Vista;832489801;christophe.cousty@audi-nimes.com;;;;l'Isle-d'Abeau;FRS17PMB175011;FR*SOD*S*SIGE*430*1*_*_;SIGEIF - 114 RUE GALLIENI - BOULOGNE-BILLANCOURT;;ROUTE DE PIERRELAYE COMPLEXE DES SPORTS DES BEAUREGARDS;86105;[2.239694, 48.836639];;FRS33EMB3317312;FR*SOD*E*MB17*44*1*3*_;;;;;;;;;;;;;;;;;;;22169753819839;2020-11-24;;2022-03-16;;2023-08-05T07:10:47.290000+00:00;60af46d40c237d62a5c73bf2;aee3e8a9-383a-49e9-a2fc-4f4328a7185b;;2.239694;48.808116;19310;Archigny;; +;Camping Cala Gogo;200042489;lamine.eurodiscountfrais@outlook.com;;;;Les Aix d'Angillon - Rte de Bourges - 205346;FRS17PMB175013;FR*SOD*S*SIGE*429*1*_*_;SIGEIF - 1 RUE DES GRIMETTES - MEUDON;;MAIL DES OMBRAGES;86276;[2.241748, 48.808116];;FRS33EMB3317311;FR*SOD*E*MB17*43*1*1*_;;;;;;;;;;;;;;;;;;;22169030230804;2020-12-07;;2022-08-17;;2023-08-05T07:10:46.928000+00:00;60bbbbaa8548bec5b094d6ae;4e22c83b-6536-4e2b-852e-fdf62776f198;;2.241748;48.813019;19120;Millac;; +;Camping Creuse Nature;200045938;e.dalverny@dalcoupe.fr;;;;ALLOGNY - Rue de l'abreuvoir - 186205;FRS17PMB175012;FR*SOD*S*SIGE*141*4*_*_;SIGEIF - 705 AVENUE ROGER SALENGRO - CHAVILLE;;PLACE DE LAPPEL DU 18 JUIN 1940;86289;[2.192191, 48.813019];;FRS33EMB3317211;FR*SOD*E*MB17*43*1*2*_;;;;;;;;;;;;;;;;;;;22148190865763;2020-12-02;;2022-03-17;;2023-08-05T07:10:46.548000+00:00;60bbbc9f06f31a9ef3644e2c;18eeb752-6cde-4121-be34-cb38b5b8cfbc;;2.192191;48.82991;19260;Saint-Laurent-de-Jourdes;; +;Camping Europa;200075240;aspad71@orange.fr;;;;APREMONT - Parking de l'église - 201975;FRS17PMB174912;FR*SOD*S*SIGE*426*1*_*_;SIGEIF - 28 RUE ANATOLE FRANCE - CHAVILLE;;CHEMIN RURAL DES CHENNEVIÈRES PARKING DU DOJO;86076;[2.188014, 48.805695];;FRS33EMB3317212;FR*SOD*E*MB17*42*1*1*_;;;;;;;;;;;;;;;;;;;22199855119934;2020-11-02;;2021-12-27;;2023-08-05T07:10:46.255000+00:00;60c0c9f9e3e387d964e18c05;256640ef-a750-43c5-b503-2021b67d7723;;2.188014;48.827045;19210;Marigny-Chemereau;; +;COOK'S BAY 1;838436145;contact@manoirdelisle.com;;;;AUBIGNY-SUR-NERE - Gymnase - 147205;FRS17PMB174911;FR*SOD*S*SIGE*425*1*_*_;SIGEIF - 31 RUE CAMILLE DESMOULINS - ISSY-LES-MOULINEAUX;;PLACE DE LA HALLE PARKING PLACE DE LA HALLE;86031;[2.264953, 48.82991];;FRS33EMB3317012;FR*SOD*E*MB17*41*1*2*_;;;;;;;;;;;;;;;;;;;22170332689180;2020-10-27;;2021-10-28;;2023-08-05T07:10:45.984000+00:00;6166c7d36f8323ae8d7edd8c;2bdfcf3d-b8d2-48cd-91f7-ab3706370883;;2.264953;48.830567;19320;Cloué;; +;CMA Ain;440591782;novabio.labo@laposte.net;;;;SONEPAR CHANAS;FRS17PMB174812;FR*SOD*S*SIGE*424*1*_*_;SIGEIF - 7 RUE VAUDETARD - ISSY-LES-MOULINEAUX;;AVENUE DE LA PREMIÈRE ARMÉE FRANCAISE AUDIENCE;86009;[2.276657, 48.827045];;FRS33EMB3317011;FR*SOD*E*MB17*39*1*3*_;;;;;;;;;;;;;;;;;;;22149059172508;2020-12-14;;2021-09-23;;2023-08-05T07:10:45.362000+00:00;625ea777ebc23289820f98ce;20e3e860-7eaf-4033-aeb8-a207feb08982;;2.276657;48.821484;16150;Loudun;; +;CMGO Cournon-d'Auvergne;328170113;hello@v-gas.fr;;;;AVORD - Alouettes - 206381;FRS17PMB176011;FR*SOD*S*SIGE*421*1*_*_;SIGEIF - PLACE DE LA MAIRIE - MARNES-LA-COQUETTE;;RUE MARCELIN BERTHELOT PARKING DE LA GARE;86159;[2.178067, 48.830567];;FRS33EMB3316912;FR*SOD*E*MB17*39*1*1*_;;;;;;;;;;;;;;;;;;;22109261778532;2020-09-09;;2021-09-17;;2023-08-05T07:10:44.056000+00:00;6260636500d765fd8631d2f8;442f7d5a-226d-47b6-9101-283c07ac433d;;2.178067;49.006211;16380;Saint-Maurice-la-Clouère;; +;CORA;252701974;secretariat@royanravalementservices.fr;;;;CGED DEAUVILLE;FRS17PMB176111;FR*SOD*S*SIGE*420*1*_*_;SIGEIF - 12 RUE MARCEL ALLEGOT - MEUDON;;AVENUE DES LILAS PARKING DE LA BASE DE LOISIRS;86228;[2.227161, 48.821484];;FRS33EMB3316911;FR*SOD*E*MB17*39*1*2*_;;;;;;;;;;;;;;;;;;;22143415179703;2020-10-19;;2021-08-11;;2023-08-05T07:10:43.565000+00:00;625ee3929a4fea23a8b46e17;96fe8a1f-e76f-4716-8276-482d5ef1d396;;2.227161;48.923959;16230;Angles-sur-l'Anglin;; +;CR Elec;245400676;mmartignoni@smiso.com;;;;BAUGY - Rue de la Halle - 206419;FRS17PMB174813;FR*SOD*S*SIGE*419*1*_*_;SIGEIF - RUE HOUDART - ROISSY-EN-FRANCE;;QUAI DE SEINE PARKING DE LA MAIRIE;86147;[2.515321, 49.006211];;FRS33EMB3315411;FR*SOD*E*MB17*40*1*1*_;;;;;;;;;;;;;;;;;;;22192474513815;2020-10-22;;2021-07-30;;2023-08-05T07:10:43.238000+00:00;625ee2d63fc2d8e49d9440cb;da35da16-5ce7-4f8c-98f8-dc42395953f4;;2.515321;48.929952;16410;Saint-Benoît;; +;Domaine Saint Thomas;313029928;duquesne@absolutconcept.com;;;;BLANCAFORT-Place de la Mairie-150331;FRS17PMB176112;FR*SOD*S*SIGE*172*1*_*_;SIGEIF - 20 RESIDENCE PIERRE MENDES FRANCE - LIVRY-GARGAN;;VILLA FORESTIER;86080;[2.518227, 48.923959];;FRS33EMB3315711;FR*SOD*E*MB17*40*1*2*_;;;;;;;;;;;;;;;;;;;22150651067549;2020-02-04;;2021-08-02;;2023-08-05T07:10:41.983000+00:00;625ee100089dd0f9e7eaba68;04f0ef47-3bdd-47b1-9332-727208fda401;;2.518227;48.748812;16140;Mirebeau;; +;Logis Auberge Larressingle;305206211;superu.truchtersheim.directeur@systeme-u.fr;;;;NOGENT-LE-ROI -Pkg du Marché aux Chevaux - 139383;FRS17PMB177413;FR*SOD*S*SIGE*152*5*_*_;SIGEIF - PARKING PLACE DES FETES - VAUJOURS;;AVENUE ALBERT PETIT;86137;[2.569549, 48.929952];;FRS33EMB338211;FR*SOD*E*MB17*40*1*3*_;;;;;;;;;;;;;;;;;;;22156873923785;2020-02-25;;2021-08-04;;2023-08-05T07:10:41.687000+00:00;625ec4eda5f5023221d1d3a3;a670d1b2-8133-44a3-9642-3c54a12aa842;;2.513673;48.846574;16500;Ligugé;; +;Logis Auberge du Poids Public;442556452;technique.villebon@ehpad91.fr;;;;BLET - Château - 186579;FRS17PMB177412;FR*SOD*S*SIGE*152*1*_*_;SIGEIF - RUE DE SUCY - BOISSY-SAINT-LEGER;;RUE DE COUDRAY;86235;[2.513673, 48.748812];;FRS33EMB338312;FR*SOD*E*MB17*41*1*3*_;;;;;;;;;;;;;;;;;;;22193632256270;2020-02-06;;2021-06-21;;2023-08-05T07:10:41.101000+00:00;62582fb31bb91cb62e368f73;3eb7b060-392a-4062-9798-e506fd82650d;;2.169688;48.803135;16260;Civray;; +;Logis Château Fleur de Roques;404675878;secratariat@sap-peinture.fr;;;;Rodez;FRS17PMB177411;FR*SOD*S*SIGE*152*4*_*_;SIGEIF - 44 AVENUE DE LA CELLE ST CLOUD - VAUCRESSON;;RUE DE LA HALTE PARKING GARE ERMONT HALTE;86004;[2.169688, 48.846574];;FRS33EMB338311;FR*SOD*E*MB17*41*1*1*_;;;;;;;;;;;;;;;;;;;22159768288330;2020-11-19;;2021-08-09;;2023-08-05T07:10:40.693000+00:00;625817023af17cf357a0941e;16d2763c-6936-40cb-b769-cdc7bb22f2ad;;2.064108;48.833635;16480;Saint-Martin-la-Pallu;; +;Logis Château de Bellevue Cazaubon;443891056;respmaint@letempsdescerises.fr;;;;ARTANNES SUR INDRE 9051 - Place de la Liberté;FRS17PMB177311;FR*SOD*S*SIGE*151*1*_*_;SIGEIF - PLACE DE MADAME DE MAINTENON - SAINT-CYR-LECOLE;;RUE JEAN JAURÈS PARKING DE CERNAY;86214;[2.064108, 48.803135];;FRS33EMB338411;FR*SOD*E*MB17*42*1*3*_;;;;;;;;;;;;;;;;;;;22170766844447;2020-02-05;;2021-10-14;;2023-08-05T07:10:40.305000+00:00;624d8fe89794660d8da82213;4efd1b35-a206-460d-92e5-77638af1b6f6;;2.149957;48.879812;16310;Charroux;; +;Logis Clos de Mutigny;799732292;economatbscm@orange.fr;;;;LE GAULT SAINT DENIS - Place de l'église - 134509;FRS17PMB177312;FR*SOD*S*SIGE*142*3*_*_;SIGEIF - 23 ALLEE DU COLLEGE - VAUCRESSON;;RUE JEAN ESPRANGLE PARKING GARE DERMONT-EAUBONNE;86160;[2.149957, 48.833635];;FRS33EMB338412;FR*SOD*E*MB17*42*1*2*_;;;;;;;;;;;;;;;;;;;22159334137699;2020-02-20;;2021-09-14;;2023-08-05T07:10:39.702000+00:00;624175e866976f19d22c383e;b90785f0-b97d-4ae4-8376-8786085f090c;;2.23971;48.803114;16200;Lhommaizé;; +;Logis Hotel de France Arudy;329021760;info@chateaudememenat.com;;;;SONEPAR LILLE;FRS17PMB177211;FR*SOD*S*SIGE*142*6*_*_;SIGEIF - 23 BVD RICHARD WALLACE - PUTEAUX;;RUE MAURICE BERTEAUX;86133;[2.23971, 48.879812];;FRS33EMB338512;FR*SOD*E*SIGE*177*3*1*_;;;;;;;;;;;;;;;;;;;22134587393887;2020-06-19;;2021-10-22;;2023-08-05T07:10:39.296000+00:00;6243088e713498a3eb8ec66c;6f882a58-0f09-40ce-8267-22cd85fb8ddf;;2.059222;48.799693;16720;Valence-en-Poitou;; +;Logis Hotels - Au comté d'Ornon;390478139;svp.maroquinerie@hotmail.fr;;;;CHARTRES - Bd Foch - 129905;FRS17PMB177212;FR*SOD*S*SIGE*142*1*_*_;SIGEIF - PARKING RUE LUCIEN SAMPAIX - SAINT-CYR-LECOLE;;RUE DU 18 JUIN PARKING;86078;[2.059222, 48.803114];;FRS33EMB338511;FR*SOD*E*SIGE*178*1*1*_;;;;;;;;;;;;;;;;;;;22157452808300;2020-01-20;;2021-10-25;;2023-08-05T07:10:38.931000+00:00;62440f18e41cbffb5ec2b01b;acdbd5d2-39af-4ae2-8262-f28d6fe23cb4;;2.069517;48.827906;16440;Iteuil;; +;Logis Hôtel Arvor;504961152;jsoulier@tryba.fr;;;;SONEPAR VESOUL;FRS17PMB177111;FR*SOD*S*SIGE*142*5*_*_;SIGEIF - PARKING REPUBLIQUE - SAINT-CYR-LECOLE;;RUE DES POMMIERS SAULNIERS PARKING DU STADE;86281;[2.069517, 48.799693];;FRS33EMB338612;FR*SOD*E*SIGE*177*4*1*_;;;;;;;;;;;;;;;;;;;22129666986320;2019-12-10;;2021-09-21;;2023-08-05T07:10:38.476000+00:00;6244121a2d2ee1ae1db36367;39202483-a987-436f-bcb6-acaa5475ce83;;2.199466;48.797861;16170;Senillé-Saint-Sauveur;; +;Logis - Hôtel L'escapade;810219006;contact@jardinerieaveze.fr;;;;HYPER U BORNE 1 DC;FRS17PMB177112;FR*SOD*S*SIGE*142*2*_*_;SIGEIF - 10 RUE RIOCREUX - SEVRES;;RUE CHARLES BÜRGER PARKING DE LA GARE;86061;[2.199466, 48.827906];;FRS33EMB338611;FR*SOD*E*SIGE*177*2*1*_;;;;;;;;;;;;;;;;;;;22158031676494;2020-02-18;;2022-08-02;;2023-08-05T07:10:38.061000+00:00;6245c717b95e818f49522d0d;889a4c00-5d39-4ba5-a226-d7793b12208b;;2.432908;48.880643;16340;Champigny en Rochereau;; +;Logis l'Atelier d'Epicure;200036895;info@peinture-ennesser.com;;;;Loire;FRS17PMB177012;FR*SOD*S*SIGE*142*4*_*_;SIGEIF - 166 AVENUE JEAN JAURES - MAISONS-ALFORT;;AVENUE DES MARAIS PARKING DE LA PISCINE ET DE LA PATINOIRE;86131;[2.432908, 48.797861];;FRS33EMB338712;FR*SOD*E*SIGE*177*1*1*_;;;;;;;;;;;;;;;;;;;22134153240469;2020-06-16;;2022-09-05;;2023-08-05T07:10:37.381000+00:00;6246b0023ab171a1857f1e20;ea7cea4c-2b85-49d8-8d84-7a81665736c1;;2.244992;48.884208;16120;Cuhon;; +;Lidl DR26;304891641;b.rochefort@noelberanger.fr;;;;CHS1 BORNE 3;FRS17PMB177011;FR*SOD*S*SIGE*144*3*_*_;SIGEIF - QUAI DE DION BOUTON - PUTEAUX;;TROISIÈME AVENUE PARKING;86082;[2.244992, 48.880643];;FRS33EMB338711;FR*SOD*E*SIGE*174*1*1*_;;;;;;;;;;;;;;;;;;;22169609102023;2020-02-14;;2023-01-27;;2023-08-05T07:10:36.889000+00:00;624c3ba668192e4675e13a46;449cda8e-d3d9-4593-adc3-d298d4d6b1c0;;2.245622;48.822094;16110;Quinçay;; +;Lidl, bornes à attribuer;252309646;autoservices.pixien@orange.fr;;;;ST MARTIN/PRE - 40811 - Rte Louvois;FRS17PMB176911;FR*SOD*S*SIGE*144*2*_*_;SIGEIF - 48 RUE JEAN JAURES - PUTEAUX;;RUE DE LA RONCE;86113;[2.245622, 48.884208];;FRS33EMB338811;FR*SOD*E*SIGE*176*1*2*_;;;;;;;;;;;;;;;;;;;22166425310489;2021-05-26;;2021-11-09;;2023-08-05T07:10:36.598000+00:00;624c4cffa296afc7193399fd;ddf7beb7-a7e5-4439-b4a5-ed3bb824960f;;2.20638;48.824499;16210;Chalandray;; +;Lido Appart Hotel;753202431;contact@mambhome.com;;;;SERMAIZE LES BAINS - 40907 - Rue de Saint Dizier;FRS17PMB176912;FR*SOD*S*SIGE*144*5*_*_;SIGEIF - 123 GRANDE RUE - SEVRES;;RUE GARDENAT LAPOSTOL;86245;[2.20638, 48.822094];;FRS33EMB338812;FR*SOD*E*SIGE*176*1*1*_;;;;;;;;;;;;;;;;;;;22170477406929;2021-05-31;;2022-06-17;;2023-08-05T07:10:36.170000+00:00;624c4f328e2f9d06968baab3;de894a02-e19d-4ffd-b1d4-407514df3c0c;;2.212834;48.805902;16220;Bouresse;; +;Lily of the Valley;352001069;bfournier@pt.lu;;;;GIVRY EN ARGONNE - 40897 - Pkg Centre Commercial;FRS17PMB176812;FR*SOD*S*SIGE*144*4*_*_;SIGEIF - 53 GRANDE RUE - SEVRES;;PLACE STALINGRAD;86053;[2.212834, 48.824499];;FRS33EMB338911;FR*SOD*E*SIGE*175*1*1*_;;;;;;;;;;;;;;;;;;;22133719087079;2021-06-04;;2021-12-30;;2023-08-05T07:10:35.771000+00:00;624c501b205436d386af46da;367aba6d-98b2-4a3a-a83d-30e2609a3d72;;2.31427;48.790097;16320;Châtellerault;; +;Line Optic;521763912;hoteldupontvieux@wanadoo.fr;;;;Gevrey-Chambertin Est;FRS17PMB176811;FR*SOD*S*SIGE*144*6*_*_;SIGEIF - 5 RUE JEAN MARIN NAUDIN - BAGNEUX;;RUE PIERRE BROSSOLETTE;86089;[2.31427, 48.805902];;FRS33EMB338912;FR*SOD*E*SIGE*179*1*1*_;;;;;;;;;;;;;;;;;;;22108104033769;2021-05-28;;2021-09-30;;2023-08-05T07:10:35.538000+00:00;624d8b759794660d8da82211;d1bc0edc-fef0-4fc6-b492-26e16cb3245b;;2.313149;48.80181;16510;Civaux;; +;Logis Hôtel Beau site;343865937;maximeo@maneoreseaux.com;;;;STE MENEHOULD - 40867 - Place d'Austerlitz;FRS17PMB176711;FR*SOD*S*SIGE*144*1*_*_;SIGEIF - RUE DU DOCTEUR SCHWEITZER - BAGNEUX;;AVENUE JEAN LURCAT;86204;[2.313149, 48.790097];;FRS33EMB339012;FR*SOD*E*SIGE*175*1*2*_;;;;;;;;;;;;;;;;;;;22180028775062;2021-05-20;;2021-10-04;;2023-08-05T07:10:35.207000+00:00;624d8e7db2c2de7490aac57b;3390b155-0b2f-4e3a-add4-17f4301b9ead;;2.321975;48.799297;16300;Mauprévoir;; +;Logis Hôtel Le Nuage;211700729;filippi.gl@gmail.com;;;;ST MEMMIE - 40802 - Rue de Poix;FRS17PMB176712;FR*SOD*S*SIGE*145*1*_*_;SIGEIF - 127 RUE DE VERDUN - BAGNEUX;;ALLÉE ROMAIN ROLLAND;86050;[2.321975, 48.80181];;FRS33EMB339011;FR*SOD*E*SIGE*178*1*2*_;;;;;;;;;;;;;;;;;;;22198407943570;2021-05-03;;2022-03-08;;2023-08-05T07:10:34.820000+00:00;624d91992e9ae994cc305586;cb9ab85b-0046-4e4e-9809-c91fb610ba6b;;2.304591;48.755884;16490;Château-Larcher;; +;Logis Hôtel les bains de secours;211702329;p.lecrique@wanadoo.fr;;;;PONTGOUIN - Place des halles - 137387;FRS17PMB176612;FR*SOD*S*SIGE*146*1*_*_;SIGEIF - 65 RUE RENE CROS - BAGNEUX;;CHEMIN DESVALLIÈRES;86034;[2.304591, 48.799297];;FRS33EMB339111;FR*SOD*E*SIGE*183*2*1*_;;;;;;;;;;;;;;;;;;;22198263225721;2021-07-01;;2021-10-05;;2023-08-05T07:10:32.949000+00:00;624d92733b61cb240a4a1d99;6d711df5-5539-4f4d-bee2-b6d45f13f996;;2.322484;48.739087;16600;Saint-Pierre-de-Maillé;; +;Logis La Brèche;902039528;sdavid@thibal-distribution.fr;;;;Epernon - Rue du Général Leclerc;FRS17PMB176611;FR*SOD*S*SIGE*147*2*_*_;SIGEIF - PIERRE ET MARIE CURIE - FRESNES;;AVENUE ARISTIDE BRIAND;86066;[2.322484, 48.755884];;FRS33EMB339112;FR*SOD*E*SIGE*179*1*2*_;;;;;;;;;;;;;;;;;;;22156439780005;2021-06-14;;2021-05-31;;2023-08-05T07:10:32.639000+00:00;624d93692e9ae994cc305587;fc71e5ea-9ddf-4a57-8dd5-7e774bec40c9;;2.329537;48.799939;16400;Buxerolles;; +;Logis La Promenade;211704416;a.garcia@ramsaygds.fr;;;;CAUDRY MUSEE;FRS17PMB176511;FR*SOD*S*SIGE*148*1*_*_;SIGEIF - 11 RUE FERNAND LEGER - WISSOUS;;AVENUE DE LIVRY;86077;[2.329537, 48.739087];;FRS33EMB339211;FR*SOD*E*SIGE*180*1*2*_;;;;;;;;;;;;;;;;;;;22186541086516;2021-02-11;;2022-09-27;;2023-08-05T07:10:32.386000+00:00;624d94b9b2c2de7490aac57d;6e71186d-aecf-470a-a3ad-069d0a6a7024;;2.028097;48.82598;16420;Sèvres-Anxaumont;; +;Logis Le Magny;833922693;l.schneider@pouchard.fr;;;;NANCY - Parking PZ stade marcel picot - 187497;FRS17PMB176512;FR*SOD*S*SIGE*149*1*_*_;SIGEIF - 4 RUE BELTRAME - BOIS DARCY;;RUE DE LA BARRE;86152;[2.028097, 48.799939];;FRS33EMB339212;FR*SOD*E*SIGE*180*1*1*_;;;;;;;;;;;;;;;;;;;22155860908872;2021-06-30;;2021-06-30;;2023-08-05T07:10:32.086000+00:00;624da32542006765f8f66a3e;a8e71873-a597-4b30-a0f3-865f994c57cc;;2.290181;48.848957;16700;La Grimaudière;; +;Logis Le Quincangogne;211701479;contact@meaconsult.com;;;;CROUZILLES - 56267 - Parking Ronsard;FRS17PMB176411;FR*SOD*S*SIGE*150*1*_*_;SIGEIF - 101 RUE JEAN JAURES - VANVES;;ROUTE DE SAINT DENIS;86065;[2.290181, 48.82598];;FRS33EMB339311;FR*SOD*E*SIGE*181*1*2*_;;;;;;;;;;;;;;;;;;;22199710402120;2021-02-26;;2022-03-02;;2023-08-05T07:10:30.534000+00:00;624e97296dee168d8bc93d50;beb9d6db-09eb-4306-854d-b59c36a3f2f5;;2.15031;48.84512;16390;Pindray;; +;Logis Le relays du Chasteau;381032770;accueil@territoire-energie53.fr;;;;FAYE LA VINEUSE 19690 - Place de la Huchette;FRS17PMB176412;FR*SOD*S*SIGE*117*1*_*_;SIGEIF - PLACE DU DOCTEUR BERTHET - LA CELLE-SAINT-CLOUD;;RUELLE DES PATISSIERS;86226;[2.15031, 48.848957];;FRS33EMB339312;FR*SOD*E*SIGE*181*1*1*_;;;;;;;;;;;;;;;;;;;22199565684322;2021-04-08;;2012-09-10;;2023-08-05T07:10:30.015000+00:00;624e9a4348e7de81e3506971;0e6fe07e-c290-45fc-899f-c50c27d3cff9;;2.131865;48.90953;16450;Monts-sur-Guesnes;; +;Logis Terre de Loire;520236522;contact@sebalyosolar.com;;;;MONTBAZON 19674 - Route Nationale;FRS17PMB176311;FR*SOD*S*SIGE*72*5*_*_;SIGEIF - AVENUE DES ETANGS - LA CELLE-SAINT-CLOUD;;PLACE DE LA REPUBLIQUE;86236;[2.131865, 48.84512];;FRS33EMB339411;FR*SOD*E*SIGE*182*1*2*_;;;;;;;;;;;;;;;;;;;22179305194628;2021-04-21;;2021-06-07;;2023-08-05T07:10:29.674000+00:00;624eecd56d17fa44c0166abd;28b835f3-9e4b-47a6-b7e7-51f76f5a9062;;2.17895;48.912132;16330;Magné;; +;Logis Villa C Hôtel;211701792;bg@lavicomterie.com;;;;LA CHAUSSEE-D'IVRY - Place de l'Eglise - 139414;FRS17PMB176312;FR*SOD*S*SIGE*85*3*_*_;SIGEIF - BOULEVARD CARNOT PARKING - CARRIERES-SUR-SEINE;;RUE DE LISBONNE;86041;[2.17895, 48.90953];;FRS33EMB339412;FR*SOD*E*SIGE*182*1*1*_;;;;;;;;;;;;;;;;;;;22193053383251;2021-05-27;;2021-09-16;;2023-08-05T07:10:29.344000+00:00;624fe106f68a3666d6fe7af2;6883d53d-ab86-4460-b91e-2ad64fa54cc7;;2.177236;48.80807;16190;Cenon-sur-Vienne;; +;Logis Hôtel les Vagues Biscarosse;828245407;sieml@sieml.fr;;;;LA RICHE 1257;FRS17PMB176212;FR*SOD*S*SIGE*81*1*_*_;SIGEIF - AVENUE DU MARECHAL JUIN - CARRIERES-SUR-SEINE;;RUE CLAUDE PERNÈS;86261;[2.177236, 48.912132];;FRS33EMB339511;FR*SOD*E*SIGE*183*1*1*_;;;;;;;;;;;;;;;;;;;22147033123031;2021-02-05;;2022-01-21;;2023-08-05T07:10:27.397000+00:00;6253fea7020d1bcfb664309c;ddbbbc35-0e59-4bd9-8c2f-e3ea697c2276;;2.05212;48.81287;16270;Vouzailles;; +;Logis Hôtel l'Enclos;211703368;contacts@sydela.fr;;;;GRANDPRE - Rue de Montlix - 144223;FRS17PMB176211;FR*SOD*S*SIGE*83*5*_*_;SIGEIF - 1 PLACE OLIVIER MESSIAEN - FONTENAY-LE-FLEURY;;RUE JULES GUESDE;86108;[2.05212, 48.80807];;FRS33EMB339512;FR*SOD*E*SIGE*183*3*1*_;;;;;;;;;;;;;;;;;;;22179015759018;2019-06-07;;2021-09-07;;2023-08-05T07:10:25.024000+00:00;625407dd466539082f99d094;a31ecea6-5d99-46a5-a397-2ccfd28c2837;;2.35707;49.001676;16350;Leigné-les-Bois;; +;Logis Hôtel Victor Hugo;353634504;benoit.denjean0121@orange.fr;;;;Piffonds;FRS17PMB174811;FR*SOD*S*SIGE*83*4*_*_;SIGEIF - 12 AVENUE DU DOCTEUR ANTOINE LACROIX - LE KREMLIN-BICETRE;;RUE DE LA POSTE PROLONGÉ;86191;[2.35707, 48.81287];;FRS33EMB339611;FR*SOD*E*SIGE*183*4*1*_;;;;;;;;;;;;;;;;;;;22157018651247;2021-01-27;;2021-07-21;;2023-08-05T07:10:23.658000+00:00;62540d2b0dfbace9e3f0d463;f406e28c-1f83-4912-8884-6ae49c5ddc90;;2.519465;48.8768;16360;Vivonne;; +;Logis Hôtel Moulin de la Pipe;211702428;info@ics-sa.com;;;;Super Chargeur Sublaines A85 CCS;FRS17PMB174913;FR*SOD*S*SIGE*83*3*_*_;SIGEIF - FACE AU 7 ALLEE DU VERGER - PARKING DE LORANGERIE - ROISSY-EN-FRANCE;;RUE DE VERSAILLES;86167;[2.519465, 49.001676];;FRS33EMB339612;FR*SOD*E*SIGE*173*1*1*_;;;;;;;;;;;;;;;;;;;22152532399409;2020-03-24;;2023-04-02;;2023-08-05T07:10:23.335000+00:00;6254201b03d3b38fc3d43177;c9b96df6-a6a9-4d7f-9b31-8c71db7f169c;;2.221831;49.0369;16460;Dangé-Saint-Romain;; +;Logis Hôtel Restaurant Gilles Moreau;538041732;xavier.bourjon@keolis.com;;;;Caumont-sur-Aure;FRS17PMB174711;FR*SOD*S*SIGE*83*2*_*_;SIGEIF - 26 RUE HUCHE - SURESNES;;RUE DE MARNES;86141;[2.221831, 48.8768];;FRS33EMB339712;FR*SOD*E*SIGE*1*1*2*_;;;;;;;;;;;;;;;;;;;22156005626656;2019-06-05;;2023-02-12;;2023-08-05T07:10:19.788000+00:00;625679263c0ef8aa745e52e1;20418e5c-7ae3-477d-8d25-1e6efd368ba5;;2.20896;49.0134;16250;Vouillé;; +;Logis Hôtel de l'Abbaye;323119099;juridique.socadi@scapest.fr;;;;PIERRES - Place Marcel Rouleau - 128891;FRS17PMB173311;FR*SOD*S*SIGE*83*1*_*_;SIGEIF - 9 RUE ANTOINE VOLLON PARKING DE LA GARE - BESSANCOURT;;AVENUE THIERRY;86046;[2.20896, 49.0369];;FRS33EMB338212;FR*SOD*E*SIGE*174*1*2*_;;;;;;;;;;;;;;;;;;;22168451357191;2018-11-08;;2023-02-26;;2023-08-05T07:10:19.405000+00:00;6283678588d916a28f655439;89b0280c-0f35-4003-82e1-da53e5a07a21;;2.19591;48.9835;64200;Thollet;; +;Logis Hôtel du Commerce;450528526;karine.ambroise@ambroise-avocat.fr;;;;ILLIERS-COMBRAY - place Maunoury - 134925;FRS17PMB173712;FR*SOD*S*SIGE*84*1*_*_;SIGEIF - 47-49 AVENUE ROGER SALENGRO - BEAUCHAMP;;RUE FELIX FAURE;86299;[2.19591, 49.0134];;FRS33EMB338111;FR*SOD*E*SIGE*1*1*1*_;;;;;;;;;;;;;;;;;;;22185817492686;2020-12-22;;2023-03-04;;2023-08-05T07:10:15.975000+00:00;6287a704c996deadcb09f2de;d3d7eda1-3f6b-47cc-8dbf-240e9f084a3d;;2.1904;49.0108;64100;Chaunay;; +;Lidl DR25;350404380;lodgesdureynou@gmail.com;;;;JOUÉ-LES-TOURS 15746 - Hervé Thermique;FRS17PMB173713;FR*SOD*S*SIGE*84*2*_*_;SIGEIF - CHEMIN DE LA VOIE BLANCHE PARKING PISCINE - CORMEILLE-EN-PARISIS;;RUE D’ERMONT;86125;[2.1904, 48.9613];;FRS33EMB336612;FR*SOD*E*SIGE*173*1*2*_;;;;;;;;;;;;;;;;;;;22192329794477;2021-03-15;;2023-01-21;;2023-08-05T07:10:15.679000+00:00;6284985995e68d094143d5e8;9e6f5b16-eaaa-4ac2-8076-c1c64e9de993;;2.2001;49.0097;64800;Chasseneuil-du-Poitou;; +;Lidl DR15;390923175;contact@flyops.net;;;;LUMELEC NEUVILLE;FRS17PMB174712;FR*SOD*S*SIGE*84*4*_*_;SIGEIF - 4 ROUTE STRATEGIQUE - CORMEILLES-EN-PARISIS;;RUE HOCHE;86293;[2.2001, 48.9835];;FRS33EMB338112;FR*SOD*E*SIGE*44*4*1*_;;;;;;;;;;;;;;;;;;;22177568581056;2022-12-06;;2022-02-02;;2023-08-05T07:10:14.908000+00:00;6283b4feafb1d09cd7e0003c;19d019d4-f914-48d1-9ca9-c5630e1f7617;;2.1996;49.038018;64490;Beaumont Saint-Cyr;; +;Mairie de Grayan et l'Hôpital;394121545;contact@manubob-industrie.fr;;;;SONZAY 1584;FRS17PMB173612;FR*SOD*S*SIGE*84*6*_*_;SIGEIF - 22 AVENUE PASTEUR - BEAUCHAMP;;BOULEVARD DE BRANDEBOURG;86246;[2.1996, 49.0108];;FRS33EMB336712;FR*SOD*E*SIGE*42*1*1*_;;;;;;;;;;;;;;;;;;;22197684354590;2022-06-19;;2022-01-31;;2023-08-05T07:10:12.444000+00:00;62838e54bffd882f3e8db342;186b09db-4aab-4212-8b86-b3ba796a5505;;2.19769;49.0408;64140;La Roche-Posay;; +;Mairie de Hem;341055705;ssznek@themis-experts.com;;;;BLANCS COTEAUX - 40985 - Boulebard Jean Brion;FRS17PMB173611;FR*SOD*S*SIGE*84*5*_*_;SIGEIF - 4-6 AVENUE DU MARECHAL JOFFRE - BEAUCHAMP;;63 RUE DE TORCY;86092;[2.19769, 49.0097];;FRS33EMB336811;FR*SOD*E*SIGE*42*4*1*_;;;;;;;;;;;;;;;;;;;22178581605646;2021-11-09;;2022-02-01;;2023-08-05T07:10:07.715000+00:00;628385be2cd69016c77c63bf;5f2e4e91-ae95-485b-bc30-087640573f54;;2.211656;49.0179;64210;Latillé;; +;Mairie de Jonzac;810800268;contact@greenhomeimmobilier.fr;;;;MAROLLES - 40928 - Rue Saint Hubert;FRS17PMB173512;FR*SOD*S*SIGE*84*3*_*_;SIGEIF - ANGLE RUE DE VERDUN/RUE DU CHATEAU PARKING - BESSANCOURT;;ALLÉE PIERRE CORNEILLE;86294;[2.211656, 49.038018];;FRS33EMB336812;FR*SOD*E*SIGE*43*1*1*_;;;;;;;;;;;;;;;;;;;22198552661336;2022-05-28;;2022-01-28;;2023-08-05T07:10:06.705000+00:00;62836e9b88d916a28f65543a;78356665-f3f2-4588-aca0-a5cb1606d86d;;2.2047;48.9917;64510;Chenevelles;; +;Mairie de Kerbach;383872892;g.arpino@ocr.fr;;;;SELOMMES 3964 - Rue de la Mairie;FRS17PMB173513;FR*SOD*S*SIGE*85*5*_*_;SIGEIF - 22 AVENUE LAMARTINE PARKING LAMARTINE - BESSANCOURT;;RUE PABLO NERUDA;86270;[2.2047, 49.0408];;FRS33EMB336911;FR*SOD*E*SIGE*43*3*1*_;;;;;;;;;;;;;;;;;;;22104196656390;2019-04-08;;2022-01-29;;2023-08-05T07:10:03.628000+00:00;627df0d0f9e4282d6545d55b;30e64828-6716-47d9-b6e6-5522eaa00d71;;2.1851;48.98;64320;Champagné-Saint-Hilaire;; +;Mairie de La Roche-Guyon;973203284;acelec@acelec-france.com;;;;PARGNY SUR SAULX - 40915 - Place Jean Monet;FRS17PMB173511;FR*SOD*S*SIGE*81*2*_*_;SIGEIF - 6 AVENUE DE LEGALITE PARKING DU STADE - BEAUCHAMP;;RUE GUYNEMER;86068;[2.1851, 49.0179];;FRS33EMB336912;FR*SOD*E*SIGE*43*2*1*_;;;;;;;;;;;;;;;;;;;22179594630237;2017-06-14;;2022-01-30;;2023-08-05T07:10:03.022000+00:00;627bbeab3a1b78bbf0716710;e77892c2-6ce5-40df-8750-30da06b581be;;2.27736;48.995;64780;Leignes-sur-Fontaine;; +;Mairie de Lorris;216802777;info@masdesolives.com;;;;YEVRES - Rue du pont - 134257;FRS17PMB173412;FR*SOD*S*SIGE*85*4*_*_;SIGEIF - 4 RUE CRISTINO - GARCIA PLACE ETIENNE DOLET - EAUBONNE;;PARKING DE LEUROPE;86062;[2.27736, 48.9917];;FRS33EMB337012;FR*SOD*E*SIGE*43*6*1*_;;;;;;;;;;;;;;;;;;;22184080879899;2018-01-15;;2022-01-26;;2023-08-05T07:10:02.595000+00:00;627bb00a20358400f316d0b3;cc3355f6-1d7d-49e8-b649-117dd4a2d84f;;2.27636;48.900927;64520;Morton;; +;Logis l'Ayguelade;838439180;directeur.barroidis@scapest.fr;;;;RAW PARISGIVERNY 01;FRS17PMB173411;FR*SOD*S*SIGE*85*2*_*_;SIGEIF - 32 RUE FLAMMARION PARKING PLAINE DU LUAT - EAUBONNE;;RUE DE LA TUILERIE;86019;[2.27636, 49.0022];;FRS33EMB337011;FR*SOD*E*SIGE*43*4*1*_;;;;;;;;;;;;;;;;;;;22108248751593;2019-02-18;;2022-01-25;;2023-08-05T07:10:00.817000+00:00;627a91b53d277f84601b6f0a;43d76198-954a-40a1-a717-4efb678b69c7;;2.27439;49.025174;64230;Availles-en-Châtellerault;; +;Mairie de Goetzenbruck;302330246;jp.regnault@bna-auto.fr;;;;NOGENT-LE-ROTROU - Rue Maison Maraine - 139030;FRS17PMB173413;FR*SOD*S*SIGE*85*1*_*_;SIGEIF - 4 RUE CRISTINO GARCIA - PLACE ETIENNE DOLET - PARKING MEDIATHEQUE 2 - EAUBONNE;;VOIE DE LAULNE;86207;[2.27439, 48.98];;FRS33EMB337112;FR*SOD*E*SIGE*43*5*1*_;;;;;;;;;;;;;;;;;;;22184225597668;2018-01-26;;2022-01-06;;2023-08-05T07:10:00.496000+00:00;627398ff199ba8677025c9c8;cb72b435-08a7-4f0d-afd9-ce2da75a5b02;;2.26679;49.029892;64400;Moncontour;; +;Mairie de Bourg-en-Bresse Voirie;418031977;christophe.langlet@lyonaeroports.com;;;;SONEPAR GRESY;FRS17PMB173313;FR*SOD*S*SIGE*86*1*_*_;SIGEIF - 22 RUE DES BUSSYS INTERSECTION RUE HENRI COUDERT - EAUBONNE;;RUE DU MARÉCHAL MAUNOURY;86121;[2.26679, 48.995];;FRS33EMB337111;FR*SOD*E*SIGE*44*3*1*_;;;;;;;;;;;;;;;;;;;22178436887861;2019-11-29;;2022-01-20;;2023-08-05T07:10:00.210000+00:00;6272339196abde9d2646397d;0832728c-7ecf-4b79-ac44-a3d8df660658;;2.478607;48.882366;64290;Joussé;; +;Mairie de Charleval;898270251;regis.reynaud.diragce@axa.fr;;;;YVOY LE MARRON-Parking de l’église-200504;FRS17PMB173312;FR*SOD*S*SIGE*86*2*_*_;SIGEIF - 2 RUE DES PENDANTS - PARKING CTM - EAUBONNE;;AVENUE DE MONTMORENCY;86072;[2.478607, 48.900927];;FRS33EMB337211;FR*SOD*E*SIGE*44*5*1*_;;;;;;;;;;;;;;;;;;;22178147452298;2022-07-11;;2022-01-09;;2023-08-05T07:09:59.735000+00:00;628b24f2281bca67d8b3dc3a;ccf6321f-dc7c-47dd-b55e-2fa5d9bef6c3;;2.340589;48.740984;64260;Mignaloux-Beauvoir;; +;Mairie de Corny;484506555;;;;;SONEPAR BETHUNE 1;FRS17PMB173212;FR*SOD*S*SIGE*86*3*_*_;SIGEIF - PLACE CHARLES DE GAULLES - BONDY;;RUE DU PETIT JOUY;86052;[2.340589, 49.025174];;FRS33EMB337212;FR*SOD*E*SIGE*44*6*1*_;;;;;;;;;;;;;;;;;;;22109117060702;2022-06-21;;2022-01-18;;2023-08-05T07:09:59.382000+00:00;628c783b25bab0db96c17285;cec8c3fd-c5ac-4fa6-8912-dbd869583a21;;2.460008;48.898465;64310;Saulgé;; +;Mairie de Couzeix;431416288;;;;;XONRUPT LONGEMER - All des Ecoliers - 145648-CCS;FRS17PMB173813;FR*SOD*S*SIGE*86*4*_*_;SIGEIF - PARKING DES FAUVETTES - DOMONT;;AVENUE DE LA PAIX;86126;[2.460008, 49.029892];;FRS33EMB337311;FR*SOD*E*SIGE*44*2*1*_;;;;;;;;;;;;;;;;;;;22198118507965;2022-09-06;;2022-01-07;;2023-08-05T07:09:59.018000+00:00;628ca7452b6ed3d975d5808f;92731582-cb1b-4035-8509-0ad41d872e9e;;2.631761;48.918278;64410;Ayron;; +;Mairie de Dollon;788896082;;;;;TINCQUES BORNE 2 AC;FRS17PMB173211;FR*SOD*S*SIGE*87*5*_*_;SIGEIF - 11 AVENUE ALBERT SARRAUT - GOUSSAINVILLE;;BOULEVARD CONSTANT MELET;86169;[2.631761, 48.882366];;FRS33EMB337312;FR*SOD*E*SIGE*44*1*1*_;;;;;;;;;;;;;;;;;;;22147467276450;2022-10-10;;2022-01-27;;2023-08-05T07:09:58.677000+00:00;628e3cdb9ca333323ae59545;3714797b-1d86-4dee-ba5b-8047ec6eb210;;2.252401;48.755734;64570;Nouaillé-Maupertuis;; +;Mairie de Montagny;334174190;;;;;NOGENT-LE-ROTROU - Rue du château - 139015;FRS17PMB173213;FR*SOD*S*SIGE*87*3*_*_;SIGEIF - 17 RUE LAZARE CARNOT - BROU-SUR-CHANTEREINE;;RUE JEAN MERMOZ;86014;[2.252401, 48.740984];;FRS33EMB337412;FR*SOD*E*SIGE*42*5*1*_;;;;;;;;;;;;;;;;;;;22193198101014;2022-10-11;;2022-02-15;;2023-08-05T07:09:57.810000+00:00;6270e4b514f8d6a639a4cacb;e8f06858-f37f-49c0-b183-acbd239f9e99;;2.516052;49.030229;64420;Celle-Lévescault;; +;Mairie de Montluel;842762346;;;;;St Brice Courcelles - 93668 - 4 août 1789;FRS17PMB173111;FR*SOD*S*SIGE*87*1*_*_;SIGEIF - 204 RUE DESTIENNE DORVES - VERRIERES-LE-BUISSON;;AVENUE HENRI VARAGNAT;86161;[2.516052, 48.898465];;FRS33EMB337411;FR*SOD*E*SIGE*45*1*1*_;;;;;;;;;;;;;;;;;;;22179160476860;2022-11-18;;2021-10-06;;2023-08-05T07:09:57.541000+00:00;6260fcdec54b091c25fc4f42;495076ae-6e5c-4d53-b5c9-138a40a78ae6;;2.357092;48.976976;64370;Saint-Georges-lès-Baillargeaux;; +;Mairie de Sotzeling;842796641;;;;;SONEPAR SAINT-QUENTIN;FRS17PMB173113;FR*SOD*S*SIGE*87*4*_*_;SIGEIF - 121 AVENUE DE LA RESISTANCE - LE RAINCY;;BOULEVARD SALVADOR ALLENDE;86119;[2.357092, 48.918278];;FRS33EMB337512;FR*SOD*E*SIGE*45*1*2*_;;;;;;;;;;;;;;;;;;;22195658303962;2021-07-26;;2021-06-28;;2023-08-05T07:09:56.354000+00:00;626101a2d818d910ad45c033;76833107-a3b1-470b-a4a8-f9ba77afbdd5;;2.219674;48.972443;64340;Saint-Léger-de-Montbrillais;; +;Mairie de Terville;904902186;;;;;COMBRES - Place de l'Église - 139348;FRS17PMB173112;FR*SOD*S*SIGE*87*2*_*_;SIGEIF - 102-104 AVENUE DU PRESIDENT WILSON - PAVILLONS-SOUS-BOIS;;AVENUE HENRI BARBUSSE;86157;[2.219674, 48.755734];;FRS33EMB337522;FR*SOD*E*SIGE*46*1*1*_;;;;;;;;;;;;;;;;;;;22151664092689;2021-09-30;;2021-06-23;;2023-08-05T07:09:55.990000+00:00;6261058800881360c5244b17;bb8df4f5-ff6a-4647-85b3-cddd5bc866bf;;2.338942;48.958165;64440;Savigny-sous-Faye;; +;Mairie de Tignes;904712833;;;;;GERARDMER - Place des Déportés - 145636 - CCS;FRS17PMB173013;FR*SOD*S*SIGE*81*5*_*_;SIGEIF - 1 ALLEE DES CASTORS - EMPLACEMENT 2 - BIEVRES;;RUE PIERRE CURIE;86254;[2.338942, 49.030229];;FRS33EMB337511;FR*SOD*E*SIGE*46*1*2*_;;;;;;;;;;;;;;;;;;;22152387681645;2022-06-02;;2021-07-02;;2023-08-05T07:09:55.304000+00:00;62610b26b2e8dadbc6387e08;19ff4f10-2a7a-4586-9577-98fea352f229;;2.199478;48.976037;64350;Béruges;; +;Mairie de Valréas;519644280;;;;;FONDETTES 1248 - Rue Edouard Branly;FRS17PMB173011;FR*SOD*S*SIGE*81*4*_*_;SIGEIF - MAIL DES PASSEMENTIERES - DOMONT;;RUE DU DR GOLDSTEIN;86017;[2.199478, 48.976976];;FRS33EMB337521;FR*SOD*E*SIGE*47*1*2*_;;;;;;;;;;;;;;;;;;;22197973790104;2022-11-17;;2021-07-10;;2023-08-05T07:09:54.802000+00:00;62611eb671cc783f72a5a633;39429d22-e6c3-4bf5-9e00-bc478856d12d;;2.309573;48.965775;64250;Angliers;; +;Maison de l'Agriculture - Verdun;850830043;;;;;WITRY LES REIMS - 41643 - Place Gambetta;FRS17PMB173012;FR*SOD*S*SIGE*74*1*_*_;SIGEIF - 9 AVENUE EMELIE PARKING DE LHOTEL DE VILLE - CORMEILLES-EN-PARISIS;;QUAI DASNIÈRES;86180;[2.309573, 48.972443];;FRS33EMB337612;FR*SOD*E*SIGE*47*1*1*_;;;;;;;;;;;;;;;;;;;22199999837769;2022-08-17;;2021-09-26;;2023-08-05T07:09:54.308000+00:00;62612b1b69d2fdbaf5c989ae;f6665f51-b4f8-4bc7-a3e3-f3c48cc7f7b9;;2.197618;48.973692;64120;Ingrandes;; +;Maisons Lassalas;434675906;;;;;GERARDMER - Av. de la Ville de Vichy - 145510-CCS;FRS17PMB172812;FR*SOD*S*SIGE*72*1*_*_;SIGEIF - 11 RUE BLANCHE - PARKING MISTINGUETT - ENGHIEN-LES-BIENS;;AVENUE DESAIX;86045;[2.197618, 48.958165];;FRS33EMB337611;FR*SOD*E*SIGE*48*1*2*_;;;;;;;;;;;;;;;;;;;22192185078105;2022-07-26;;2021-07-07;;2023-08-05T07:09:52.541000+00:00;6262648f2b9462c3f367f22a;4bbee970-ef36-4976-8e83-d06fa0be4bc5;;2.205439;48.9913;64170;Neuville-de-Poitou;; +;March’et Bio;848946000;;;;;BROU - place de l'hôtel de ville - 134921;FRS17PMB172811;FR*SOD*S*SIGE*72*6*_*_;SIGEIF - 3 AVENUE DES FRERES LUMIERE PARKING DES ARTS - CORMEILLES-EN-PARISIS;;PLACE REUX;86222;[2.205439, 48.976037];;FRS33EMB337712;FR*SOD*E*SIGE*48*1*1*_;;;;;;;;;;;;;;;;;;;22179015757653;2021-11-30;;2021-12-09;;2023-08-05T07:09:52.154000+00:00;6266ce1186157bdf788364de;574a6278-8abf-4820-ab54-98156869c98e;;2.209218;48.9915;64390;Montmorillon;; +;Marckolsheim;788660116;;;;;Damery - 93748 - Place rue Paul Douce;FRS17PMB172711;FR*SOD*S*SIGE*73*5*_*_;SIGEIF - 27 RUE EMY LES PRES PARKING SALLE DES FETES - CORMEILLES EN PARISIS;;PARKING PISCINE MALBENTRE;86229;[2.209218, 48.965775];;FRS33EMB337711;FR*SOD*E*SIGE*49*1*1*_;;;;;;;;;;;;;;;;;;;22196237175198;2021-10-29;;2021-07-15;;2023-08-05T07:09:51.595000+00:00;6268ee7b7155fc615f8bdd0d;027e189b-39cc-4500-9d2f-9a4ead88b0ad;;2.202975;49.004227;64130;Romagne;; +;Mairie de Scorbe Clairvaux;824263024;;;;;SAINT MAX - Parking Champlain - 203728;FRS17PMB173711;FR*SOD*S*SIGE*73*3*_*_;SIGEIF - 42 RUE DU NOYER DE LIMAGE PARKING - CORMEILLES EN PARISIS;;GÉNÉRAL DE GAULLE - CONTREPOINT;86257;[2.202975, 48.973692];;FRS33EMB337812;FR*SOD*E*SIGE*49*1*2*_;;;;;;;;;;;;;;;;;;;22176989709801;2021-11-05;;2022-08-16;;2023-08-05T07:09:51.196000+00:00;62693e7066898fe81dcf90bc;b3138ac5-8284-4cbb-9c0e-661b6aac0a48;;2.28509;49.0004;64190;Saint-Sauvant;; +;Mairie de Peisey-Nancroix;398695585;;;;;Aire de Jonchets - La Grande Paroisse;FRS17PMB173613;FR*SOD*S*SIGE*73*1*_*_;SIGEIF - 7 RUE DES CARRIERES EN FACE DU 10B PARKING - CORMEILLES-EN-PARISIS;;PLACE DOCTEUR BELOT;86024;[2.28509, 48.9913];;FRS33EMB337811;FR*SOD*E*SIGE*51*1*2*_;;;;;;;;;;;;;;;;;;;22156873933463;2022-04-05;;2021-07-19;;2023-08-05T07:09:50.715000+00:00;62694082123dba06a8d5cac4;51cd6651-4576-4fed-abba-db1231c011d5;;2.176;49.0025;64160;Saint-Secondin;; +;Mairie de Muntzenheim;523942498;;;;;BORNE HU LOCATION U;FRS17PMB173811;FR*SOD*S*SIGE*73*2*_*_;SIGEIF - 16 RUE DE SOISY PARKING ESPACE JEUNESSE ET FAMILLES - EAUBONNE;;CARRERE DE BRAX;86005;[2.176, 48.9915];;FRS33EMB337912;FR*SOD*E*SIGE*51*1*1*_;;;;;;;;;;;;;;;;;;;22198697379164;2022-04-21;;2021-06-17;;2023-08-05T07:09:50.357000+00:00;626949d18f21dd210f6d9175;53d02c5f-24a8-491e-a9e6-eb4c5a52d484;;2.127156;49.0169;64450;Chabournay;; +;Mairie de Oignies;328490685;;;;;L'Epine - 40008 - Rue des Moissons;FRS17PMB174313;FR*SOD*S*SIGE*73*4*_*_;SIGEIF - 7 CHEMIN DE MONTIGNY ESPACE ANDRE MALRAUX - HERBLAY;;PLACE AVENUE JEAN JAURES;86111;[2.127156, 49.004227];;FRS33EMB337911;FR*SOD*E*SIGE*42*2*1*_;;;;;;;;;;;;;;;;;;;50025417553451;2022-08-14;;2021-05-18;;2023-08-05T07:09:50.040000+00:00;626a833bf5febf594c9fb4c9;ea6ca3e8-740d-4494-976b-4bfcd503a0b1;;2.14247;48.99;64150;Valdivienne;; +;Mairie de Peuplingues;331647602;;;;;SUIPPES - 39992 - Place de l'Hotel de Ville;FRS17PMB174713;FR*SOD*S*SIGE*74*5*_*_;SIGEIF - 5 MAIL JEAN-BAPTISTE POQUELIN PARKING DU SUPER MARCHE - HERBLAY;;PARKING CENTRE COMMERCIAL;86177;[2.14247, 49.0004];;FRS33EMB338011;FR*SOD*E*SIGE*42*3*1*_;;;;;;;;;;;;;;;;;;;22190737900155;2022-07-28;;2021-05-25;;2023-08-05T07:09:49.696000+00:00;626a8573e72e3fb9588b863b;1d7cc05b-7458-4cc2-9883-452622d31739;;2.15787;48.998;64121;Biard;; +;Mairie de Rollainville;841748551;;;;;TINCQUES BORNE 1 DC;FRS17PMB174612;FR*SOD*S*SIGE*74*6*_*_;SIGEIF - 1 RUE FRANCOIS TRUFFAUT PARKING DE LA PISCINE - HERBLAY;;PARKING RUE PASTEUR;86165;[2.15787, 49.0025];;FRS33EMB338012;FR*SOD*E*SIGE*36*5*1*_;;;;;;;;;;;;;;;;;;;22156150344412;2023-01-27;;2021-05-27;;2023-08-05T07:09:49.449000+00:00;623dbee1e816497c87293d26;91d8854c-ca5b-4f7d-bfb7-2f6ae48af7d6;;2.12663;48.9914;64360;Fontaine-le-Comte;; +;Mairie de Santenay;500634688;;;;;Couesmes;FRS17PMB174613;FR*SOD*S*SIGE*74*3*_*_;SIGEIF - 7 ROUTE DE PIERRELAYE COMPLEXE DES SPORTS DES BEAUREGARDS - HERBLAY;;PARKING CENTRE BOURG;86211;[2.12663, 49.0169];;FRS33EMB339711;FR*SOD*E*SIGE*39*6*1*_;;;;;;;;;;;;;;;;;;;22156729215617;2023-01-05;;2021-06-05;;2023-08-05T07:09:47.425000+00:00;61a60c0b58077783017f358c;5b5d3450-bdef-4fe5-a6d2-970dd48a774e;;2.1658;48.9796;64110;Roches-Prémarie-Andillé;; +;MC Automobile;824352322;;;;;MEUSNES-121603-Rue Paul Couton;FRS17PMB174611;FR*SOD*S*SIGE*74*2*_*_;SIGEIF - 9 MAIL DES OMBRAGES - HERBLAY;;THÉATRE DEAU;86244;[2.1658, 48.99];;FRS33EMB339811;FR*SOD*E*SIGE*37*4*1*_;;;;;;;;;;;;;;;;;;;22197539636723;2023-07-18;;2021-06-09;;2023-08-05T07:09:46.983000+00:00;61b269857116e5f2fcc9cc07;f965b78c-ed73-4ed8-a082-68cd94ceeaae;;2.1449;48.9621;64240;Fleuré;; +;Louvre Hôtel Tours;391279924;;;;;VILLEMAURY - Rue de Murgers - 134810;FRS17PMB174511;FR*SOD*S*SIGE*74*4*_*_;SIGEIF - PLACE DE LAPPEL DU 18 JUIN 1940 - HERBLAY;;PARKING CAPITAINERIE;86248;[2.1449, 48.998];;FRS33EMB339812;FR*SOD*E*SIGE*37*5*1*_;;;;;;;;;;;;;;;;;;;22177134427607;2023-03-10;;2021-05-10;;2023-08-05T07:09:46.511000+00:00;61b08c3f501fef93525d53c2;ec86b8c6-80f3-46b8-af7b-c329d2300567;;2.26089;48.9747;64500;Migné-Auxances;; +;Ls Group Chartres public;539439463;;;;;VITTEL - Rue Robert de Flers - 145771 - CCS;FRS17PMB174513;FR*SOD*S*SIGE*75*1*_*_;SIGEIF - CHEMIN RURAL DES CHENNEVIERES PARKING DU DOJO - HERBLAY;;MÉDIATHÈQUE - GAUCHE;86048;[2.1658, 48.9914];;FRS33EMB339912;FR*SOD*E*SIGE*37*6*1*_;;;;;;;;;;;;;;;;;;;22150795785373;2023-06-13;;2022-04-20;;2023-08-05T07:09:46.143000+00:00;61ae38dbb2a2119f6c52222b;aaea89d0-5b30-44a9-8602-34001e5e6acc;;2.181;48.9795;64460;Smarves;; +;Lysadis;833393184;;;;;Carcassonne;FRS17PMB174512;FR*SOD*S*SIGE*81*3*_*_;SIGEIF - 4 PLACE DE LA HALLE PARKING PLACE DE LA HALLE - HERBLAY;;POLE SPORTIF BÉCADE;86233;[2.26089, 48.9913];;FRS33EMB3311512;FR*SOD*E*SIGE*37*2*1*_;;;;;;;;;;;;;;;;;;;22156295062267;2023-01-20;;2022-05-17;;2023-08-05T07:09:45.790000+00:00;61a638b606094fcc03bf5418;8c52043c-5059-49ac-97f5-1162c3a80e6a;;2.1813;48.795472;64330;Pleumartin;; +;Lons-le-Saulnier, Start'N Move;219722196;;;;;ANET - 1 Rue LENOTRE - 139423;FRS17PMB174412;FR*SOD*S*SIGE*76*1*_*_;SIGEIF - AVENUE DE LA PREMIERE ARMEE FRANCAISE AUDIENCE - ERMONT;;MARÉCHAL FOCH;86027;[2.181, 48.9796];;FRS33EMB3311611;FR*SOD*E*SIGE*37*1*1*_;;;;;;;;;;;;;;;;;;;50042629009564;2023-02-01;;2022-04-14;;2023-08-05T07:09:45.267000+00:00;61a612484466c30f754dd42b;31f21bf8-20cb-416b-bf5b-95bf1fd17883;;2.17747;49.0509;64480;Bonneuil-Matours;; +;Logis le Moulin Calme;813107943;;;;;TINQUEUX - 41686 -Rue Sarah Bernhardt;FRS17PMB174411;FR*SOD*S*SIGE*77*1*_*_;SIGEIF - 2 RUE MARCELIN BERTHELOT PARKING DE LA GARE - LA FRETTE-SUR-SEINE;;PARKING CINÉMA;86100;[2.1813, 48.9621];;FRS33EMB3311612;FR*SOD*E*SIGE*38*2*1*_;;;;;;;;;;;;;;;;;;;01597105632680;2023-01-23;;2022-04-21;;2023-08-05T07:09:44.913000+00:00;61a60acb0dd7cb2734b73bc9;46221a9c-245a-470d-8980-78ee52c7fd67;;2.29046;48.9842;64700;Vouneuil-sous-Biard;; +;Logis le Rivage;341861367;;;;;Combourg;FRS17PMB173812;FR*SOD*S*SIGE*78*1*_*_;SIGEIF - 38 AVENUE DES LILAS - PARKING DE LA BASE DE LOISIRS - LA FRETTE-SUR-SEINE;;RUE DE SEVIN;86209;[2.17747, 48.9747];;FRS33EMB3311712;FR*SOD*E*SIGE*38*1*1*_;;;;;;;;;;;;;;;;;;;300003099847;2022-10-31;;2022-04-22;;2023-08-05T07:09:43.097000+00:00;61cc70507662adf86a4aca1d;eb099a82-5e10-4631-897f-0a2bed30345d;;2.313771;48.9898;64640;Lissieu;; +;Logistique , Combronde public;380129866;;;;;ARROU - rue du docteur Vaisbuch - 134214;FRS17PMB174413;FR*SOD*S*SIGE*79*1*_*_;SIGEIF - 64 QUAI DE SEINE PARKING DE LA MAIRIE - LA FRETTE SUR SEINE;;PLACE DU BASKET;86099;[2.29046, 48.9795];;FRS33EMB3311711;FR*SOD*E*SIGE*38*3*1*_;;;;;;;;;;;;;;;;;;;50025431503697;2023-03-20;;2022-04-28;;2023-08-05T07:09:42.727000+00:00;61a604ad615b0669494f18c0;6f0f573d-874f-4070-804b-c4c1bd28fde5;;2.206;48.985;64530;Vaulx-en-Velin;; +;Louvigny;485186019;;;;;CGED CAEN;FRS17PMB174311;FR*SOD*S*SIGE*80*3*_*_;SIGEIF - VILLA FORESTIER PARKING GARE DU CHAMP DE COURSE - EAUBONNE;;PLACE FALLIÈRES;86158;[2.313771, 48.795472];;FRS33EMB3311811;FR*SOD*E*SIGE*38*4*1*_;;;;;;;;;;;;;;;;;;;12345678987456;2022-09-07;;2022-04-29;;2023-08-05T07:09:41.295000+00:00;61a4f69e8aaa0a61ab5d0c9e;63a0ef8c-dc0c-4884-a5b7-d0a37e8012b3;;2.2277;48.9797;64300;Givors;; +;Lorry-lès-Metz;303188528;;;;;PONTFAVERGER - 42468 - Rue de la gare;FRS17PMB174312;FR*SOD*S*SIGE*80*4*_*_;SIGEIF - 89 AVENUE ALBERT PETIT - BAGNEUX;;PARKING PARCELLE EAUX PLUVIALE;86263;[2.206, 49.0509];;FRS33EMB3311812;FR*SOD*E*SIGE*38*6*1*_;;;;;;;;;;;;;;;;;;;4567/E1/456235682;2022-08-08;;2022-05-02;;2023-08-05T07:09:40.979000+00:00;61a4ba143f9f273936e65c74;5d3ddd2e-16f6-40ba-8b90-648e828a26a6;;2.26261;48.9852;64470;Limonest;; +;MGR Robuchon Automobiles;907465017;;;;;Mayenne;FRS17PMB174211;FR*SOD*S*SIGE*80*2*_*_;SIGEIF - 2 RUE DE COUDRAY - FREPILLON;;PIERRE DE COUBERTIN;86193;[2.2277, 48.9842];;FRS33EMB3311912;FR*SOD*E*SIGE*38*5*1*_;;;;;;;;;;;;;;;;;;;50047322666608;2022-08-05;;2022-05-10;;2023-08-05T07:09:39.454000+00:00;61a0b5e9423b0ea185c249e8;53eef407-1f92-448d-84e1-8b2cbdaa81e4;;2.25678;48.9895;64270;Saint-Romain-au-Mont-d'Or;; +;MY Palmeraie Plan de Campagne;844956771;;;;;St MARTIN D'ABLOIS - 42569 - Rue Julien Ducos;FRS17PMB174112;FR*SOD*S*SIGE*80*1*_*_;SIGEIF - 106 RUE DU GENERAL LECLERC PARKING CENTRE VILLE - FRANCONVILLE;;GÉNÉRAL DE GAULLE - GRAND CAFÉ FOY;86032;[2.26261, 48.9898];;FRS33EMB3311911;FR*SOD*E*SIGE*39*3*1*_;;;;;;;;;;;;;;;;;;;5089084521401;2022-09-15;;2022-05-20;;2023-08-05T07:09:38.769000+00:00;619fb58c55bffb8759c2611d;77d9ef46-cf74-410b-92fc-d8a2e77eb55c;;2.27183;48.9986;64220;Caluire-et-Cuire;; +;Mairie de Batilly;908822836;;;;;CHARTRES - Place Morard - 130744;FRS17PMB173913;FR*SOD*S*SIGE*88*6*_*_;SIGEIF - 43 RUE DE LA HALTE PARKING GARE ERMONT HALTE - ERMONT;;PARKING PLACE DU LOT;86297;[2.25678, 48.985];;FRS33EMB3312012;FR*SOD*E*SIGE*39*1*1*_;;;;;;;;;;;;;;;;;;;67463/E1/0805759;2022-08-03;;2022-08-05;;2023-08-05T07:09:37.702000+00:00;61b6f47103d797320b9d146d;85bd0617-eb1c-44d3-bdfa-1c8d5df2ad92;;2.26332;48.9911;64000;Fontaines-sur-Saône;; +;Mairie de Berg;753765957;;;;;Montmirail - 93789 - Parking Rochefoucauld;FRS17PMB173911;FR*SOD*S*SIGE*88*5*_*_;SIGEIF - 2 RUE JEAN JAURES PARKING DE CERNAY - ERMONT;;MONSEIGNEUR PROUZET - CÔTÉ CATHÉDRALE;69117;[2.27183, 48.9797];;FRS33EMB3312011;FR*SOD*E*SIGE*41*2*1*_;;;;;;;;;;;;;;;;;;;30002530281452;2022-08-04;;2022-03-27;;2023-08-05T07:09:36.860000+00:00;61b89b81fa74b1c73f4f8065;eb87991d-e2e9-4f2d-a0f2-3ecee2eb1d91;;2.25776;48.705907;64680;Villeurbanne;; +;Mairie de Beynost;340688076;;;;;TINQUEUX - 66955 - Pl du commerce;FRS17PMB173912;FR*SOD*S*SIGE*88*3*_*_;SIGEIF - 8 RUE JEAN ESPRANGLE PARKING GARE DERMONT-EAUBONNE - ERMONT;;MONSEIGNEUR PROUZET - CÔTÉ CARNOT;69256;[2.26332, 48.9852];;FRS33EMB3312111;FR*SOD*E*SIGE*39*2*1*_;;;;;;;;;;;;;;;;;;;50048130937704;2021-01-26;;2021-03-28;;2023-08-05T07:09:36.388000+00:00;61b9ad11b15de4f399d9f371;c8da37d2-af9f-4753-9477-475458d967e0;;2.22189;48.822768;64430;Rillieux-la-Pape;; +;Mairie de Bourg-en-Bresse Parking;803540210;;;;;18B95097;FRS17PMB174011;FR*SOD*S*SIGE*110*1*_*_;SIGEIF - 56 RUE MAURICE BERTEAUX - ERMONT;;FAUBOURG GARDETTE;69387;[2.25776, 48.9895];;FRS33EMB3312112;FR*SOD*E*SIGE*39*5*1*_;;;;;;;;;;;;;;;;;;;09264254676750;2018-05-28;;2022-03-29;;2023-08-05T07:09:36.109000+00:00;61bb160c988670be88e6188c;1669c5c9-6279-4720-b6b6-0dd552b8a218;;2.2338;48.87384;69400;Saint-Didier-au-Mont-d'Or;; +;Mairie La Ferté-sous-Jouarre;849244645;;;;;Orléans Nord;FRS17PMB174012;FR*SOD*S*SIGE*102*2*_*_;SIGEIF - 16 RUE DU 18 JUIN PARKING - ERMONT;;MÉDIATHÈQUE - DROITE;69091;[2.22189, 48.9986];;FRS33EMB3312212;FR*SOD*E*SIGE*39*4*1*_;;;;;;;;;;;;;;;;;;;50068969449358;2018-07-04;;2022-03-22;;2023-08-05T07:09:35.652000+00:00;61bb521974cea4ded3549d7d;a121ef6d-6321-447c-a8f7-ab777e83c0db;;2.2229;48.863165;69420;Fontaines-Saint-Martin;; +;Magic Manor;781880372;;;;;REIMS René THYS - 41688 -Chaussée Bocquaine;FRS17PMB174013;FR*SOD*S*SIGE*102*1*_*_;SIGEIF - RUE DES POMMIERS SAULNIERS PARKING DU STADE - FRANCONVILLE;;PLACE DE LA LAICITÉ;69388;[2.2338, 48.994];;FRS33EMB3312211;FR*SOD*E*SIGE*40*5*1*_;;;;;;;;;;;;;;;;;;;50036267717960;2018-05-23;;2021-12-16;;2023-08-05T07:09:35.227000+00:00;61c04560f1d6aff05c94c28c;5a815733-0c04-411f-984d-f53c52a67002;;2.2361;48.90954;42220;Poleymieux-au-Mont-d'Or;; +;Mairie d'Uzemain;345406565;;;;;FOECY - Rue Gaston Cornavin - 143319;FRS17PMB174113;FR*SOD*S*SIGE*103*1*_*_;SIGEIF - 4-6 RUE CHARLES BURGER PARKING DE LA GARE - FRANCONVILLE;;PLACE DE LA COURONNE;69116;[2.2229, 48.9911];;FRS33EMB3312311;FR*SOD*E*SIGE*40*3*1*_;;;;;;;;;;;;;;;;;;;25880318333090;2020-01-10;;2022-03-01;;2023-08-05T07:09:34.912000+00:00;61c052e5a372048817c55df8;75e86723-439b-40c0-b03f-5dbeeecfdc46;;2.339336;48.811175;69620;Sainte-Foy-lès-Lyon;; +;Mairie Novéant-sur-Moselle;828619346;;;;;CHARTRES - Rue Pierre Mendes France - 130752;FRS17PMB174111;FR*SOD*S*SIGE*105*1*_*_;SIGEIF - 4-6 RUE CHARLES BURGER PARKING DE LA GARE 2 - FRANCONVILLE;;PLACE BIRAC;69384;[2.2361, 48.9843];;FRS33EMB3312411;FR*SOD*E*SIGE*40*1*1*_;;;;;;;;;;;;;;;;;;;2023-05-26;2018-07-03;;2022-04-06;;2023-08-05T07:09:34.210000+00:00;61c4a6f86cd90fa11006771a;ed1156da-18a4-48f3-af63-b1eb6256bc50;;2.188821;48.950894;69460;Oullins;; +;Mairie d'Aime-La-Plagne;450015250;;;;;SAINTE GEMME MORONVAL - Rte de Moronval - 130561;FRS17PMB174213;FR*SOD*S*SIGE*106*1*_*_;SIGEIF - 25 AVENUE DES MARAIS PARKING DE LA PISCINE ET DE LA PATINOIRE - FRANCONVILLE;;PARKING PISCINE;69386;[2.339336, 48.705907];;FRS33EMB3312412;FR*SOD*E*SIGE*40*2*1*_;;;;;;;;;;;;;;;;;;;2023-04-21;2018-07-05;;2022-03-04;;2023-08-05T07:09:33.925000+00:00;61976dca8bfb9fe2dc27496f;2f95e02b-db62-47b9-81ac-8990813ce705;;2.223943;48.82341;69840;Albigny-sur-Saône;; +;Mairie d'Igney;317803443;;;;;CHAMPILLON - 42589 - Rue Jean Jaurés;FRS17PMB174212;FR*SOD*S*SIGE*107*1*_*_;SIGEIF - 25 AVENUE DES MARAIS PARKING DE LA PISCINE ET DE LA PATINOIRE 2 - FRANCONVILLE;;LA GRAVETTE;69233;[2.188821, 48.822768];;FRS33EMB3312511;FR*SOD*E*SIGE*40*4*1*_;;;;;;;;;;;;;;;;;;;2023-04-07;2018-06-05;;2022-04-01;;2023-08-05T07:09:33.549000+00:00;619671ab6c7fb13fce39a3dd;4b3b979b-cec4-4dcd-b966-0308399c5535;;2.201931;48.700535;69970;La Mulatière;; +;Lidl DR19;793681313;;;;;Maizières-lès-Metz | Route de Mézière;FRSIGPSIGE17731;FR*SOD*S*SIGE*108*1*_*_;SIGEIF - 117 TROISIEME AVENUE PARKING - FRANCONVILLE;;PLACETTE RICARD;69034;[2.223943, 48.87384];;FRS33EMB3312512;FR*SOD*E*SIGE*41*3*1*_;;;;;;;;;;;;;;;;;;;2023-05-25;2018-06-13;;2022-02-25;;2023-08-05T07:09:33.134000+00:00;616d719cea0e1130726e8b35;eaaf2d3d-3962-4bb6-a872-420354f09b02;;2.238681;48.902239;69870;Chassieu;; +;Lidl DR20;950396598;;;;;BREZOLLES - Rue de la Ferté - 128792;FRSIGPSIGE17811;FR*SOD*S*SIGE*88*4*_*_;SIGEIF - 36 RUE DE LEGLISE - MORANGIS;;ALLÉE DU LUXEMBOURG;69385;[2.201931, 48.863165];;FRS33EMB3312612;FR*SOD*E*SIGE*41*1*1*_;;;;;;;;;;;;;;;;;;;2023-05-12;2018-06-12;;2022-05-01;;2023-08-05T07:09:32.621000+00:00;6167e9cf6f3b8205d843d437;13eea949-0a46-4328-9b65-7a3c8e459a19;;2.046263;48.972669;69690;Montanay;; +;Lidl DR18;839910783;;;;;Soissons Ouest;FRSIGPSIGE17741;FR*SOD*S*SIGE*111*1*_*_;SIGEIF - 10 RUE DE LA RONCE - VILLE-DAVRAY;;PLACE DES FOSSES DE LA VILLE;69088;[2.238681, 48.90954];;FRS33EMB3312611;FR*SOD*E*SIGE*41*5*1*_;;;;;;;;;;;;;;;;;;;2023-05-31;2018-05-30;;2022-05-18;;2023-08-05T07:09:31.830000+00:00;6167eaedad7f8bdc33655890;33bf25de-7498-4ae6-a5e8-a263da99685b;;2.230882;48.965586;69790;Curis-au-Mont-d'Or;; +;Lidl DR16;350072666;;;;;SONEPAR SAINT HERBLAIN;FRSIGPSIGE17721;FR*SOD*S*SIGE*112*1*_*_;SIGEIF - 42 RUE GARDENAT LAPOSTOL - SURESNES;;RUE DU 19 MARS 1962;69266;[2.046263, 48.811175];;FRS33EMB3312711;FR*SOD*E*SIGE*41*4*1*_;;;;;;;;;;;;;;;;;;;2023-03-20;2018-06-08;;2022-05-06;;2023-08-05T07:09:31.302000+00:00;61683e74d97ca2ffae21a83a;496505e4-0670-477f-aeff-036f2c794bd3;;2.196674;49.006074;69210;Marcy-l'Étoile;; +;Lidl DR17;839367117;;;;;YMONVILLE - Rue du Haut C hemin - 134341;FRSIGPSIGE17711;FR*SOD*S*SIGE*113*1*_*_;SIGEIF - 1 PLACE STALINGRAD - SURESNES;;PLACE DU FOIRAIL;69286;[2.230882, 48.950894];;FRS33EMB3312712;FR*SOD*E*SIGE*52*1*2*_;;;;;;;;;;;;;;;;;;;2023-05-17;2018-06-14;;2022-05-05;;2023-08-05T07:09:30.876000+00:00;61697febc0738daa3ba51167;065775d2-c6ef-485f-981d-5ba5f9993337;;2.324774;48.642808;69220;Tassin-la-Demi-Lune;; +;Lidl DR24;853251635;;;;;VERZY - 42108 - Rue Chanzy;FRSIGPSIGE17411;FR*SOD*S*SIGE*114*1*_*_;SIGEIF - 42 RUE PIERRE BROSSOLETTE - COLOMBES;;AVENUE DE SCHLIERBACH;69383;[2.196674, 48.82341];;FRS33EMB3312811;FR*SOD*E*SIGE*52*1*1*_;;;;;;;;;;;;;;;;;;;2023-06-22;2018-06-11;;2022-05-23;;2023-08-05T07:09:30.435000+00:00;616d28910492f2922d3288cc;262624be-e545-4a97-9a10-4da836908dcc;;2.519994;48.882559;69430;Irigny;; +;Lidl DR23;802207779;;;;;Bonvillet;FRSIGPSIGE17612;FR*SOD*S*SIGE*115*1*_*_;SIGEIF - 4 AVENUE JEAN LURCAT - FONTENAY-LE-FLEURY;;PLACE DE LHÔTEL DE VILLE;69194;[2.324774, 48.700535];;FRS33EMB3312812;FR*SOD*E*SIGE*53*1*1*_;;;;;;;;;;;;;;;;;;;2023-03-30;2018-06-19;;2022-04-30;;2023-08-05T07:09:29.934000+00:00;6195298d094061efd7016394;127505d7-aa12-4b98-a382-d899ca42558b;;2.322788;48.873236;69850;Champagne-au-Mont-d'Or;; +;Lidl DR22;350349916;;;;;LA BAZOCHE-GOUET - Rue des fossés - 134878;FRSIGPSIGE17611;FR*SOD*S*SIGE*116*1*_*_;SIGEIF - ALLEE ROMAIN ROLLAND - ARGENTEUIL - 2;;LE PIN;69087;[2.519994, 48.902239];;FRS33EMB3312911;FR*SOD*E*SIGE*67*2*1*_;;;;;;;;;;;;;;;;;;;2023-05-04;2018-06-06;;2020-07-01;;2023-08-05T07:09:29.523000+00:00;616edd3cbbdab730f12987a7;ef3f2453-aa64-4377-a2ab-96b81f11e473;;2.320497;48.822302;69440;Fleurieu-sur-Saône;; +;Lidl DR21;350758504;;;;;MOURMELON LE GRAND - 42093 -Rue du Maréchal Joffre;FRSIGPSIGE17511;FR*SOD*S*SIGE*101*1*_*_;SIGEIF - 15 CHEMIN DESVALLIERES - VILLE-DAVRAY;;FOIRAIL - GAUCHE;69153;[2.322788, 48.972669];;FRS33EMB3312912;FR*SOD*E*SIGE*65*6*1*_;;;;;;;;;;;;;;;;;;;2023-06-06;2018-05-31;;2020-11-10;;2023-08-05T07:09:29.075000+00:00;61810c78469cb308e3119ae6;ad8a30b6-3e92-4b80-8b01-b25f8b342527;;2.388748;48.902376;69740;Pierre-Bénite;; +;MobiSDEC;405213398;;;;;Reuil;FRSIGPSIGE17911;FR*SOD*S*SIGE*88*1*_*_;SIGEIF - 88 AVENUE ARISTIDE BRIAND - MORANGIS;;FOIRAIL - DROITE;69202;[2.320497, 48.965586];;FRS33EMB3311511;FR*SOD*E*SIGE*65*5*1*_;;;;;;;;;;;;;;;;;;;30002450845208;2018-04-09;;2022-09-25;;2023-08-05T07:09:28.707000+00:00;618adb3e8e2bf60f8f603efb;02fcf69f-4fb2-4db0-884f-5a905643386f;;2.229802;48.945741;69820;La Tour-de-Salvagny;; +;Mobilize Power Solution - Hôtel Grandes Rousses;489359067;;;;;ILLIERS-COMBRAY - Rue des trois mariés - 137321;FRSIGPSIGE17512;FR*SOD*S*SIGE*88*2*_*_;SIGEIF - 29 AVENUE DE LIVRY - LE RAINCY;;PLACE PIERRE CAUMONT;69382;[2.388748, 49.006074];;FRS33EMB3311411;FR*SOD*E*SIGE*66*4*1*_;;;;;;;;;;;;;;;;;;;25700000001225;2018-04-19;;2022-04-05;;2023-08-05T07:09:28.434000+00:00;618bc9606b39ebe2d3a1752e;f74f3ff5-043c-4ece-98dc-f46c93a21432;;2.468985;48.811271;69510;Saint-Germain-au-Mont-d'Or;; +;Mobilize Power Solutions - Golf Plus Orgeval public;749823597;;;;;SAINT HIPPOLYTE 15629 - Parking du Stade;FRSIGPSIGE17812;FR*SOD*S*SIGE*89*5*_*_;SIGEIF - 62 RUE DE LA BARRE - DEUIL-LA-BARRE;;RUE DES ECOLES;69149;[2.229802, 48.642808];;FRS33EMB3311412;FR*SOD*E*SIGE*66*1*1*_;;;;;;;;;;;;;;;;;;;25700000158891;2018-04-16;;2022-03-25;;2023-08-05T07:09:28.021000+00:00;618be000d00299997f01c108;002538e6-071b-415f-8613-8d016267c229;;2.48729;48.821396;69910;Saint-Genis-Laval;; +;Molsheim - Mutzig;529558108;;;;;MARGON - Rue de la Cloche - 139073;FRSIGPSIGE18321;FR*SOD*S*SIGE*89*1*_*_;SIGEIF - 120 ROUTE DE SAINT DENIS - DEUIL-LA-BARRE;;PLACE YVES BALSÉGUR;69003;[2.468985, 48.882559];;FRS33EMB3310612;FR*SOD*E*SIGE*66*6*1*_;;;;;;;;;;;;;;;;;;;50079119043696;2018-04-04;;2021-11-26;;2023-08-05T07:09:27.593000+00:00;618be506b720746cc7aed887;d61d301f-8941-49ae-a180-23d0d45d0116;;2.194656;48.827427;69560;Solaize;; +;Marina Di Lava;503449878;;;;;EPERNON - Avenue de la Prairie - 130906;FRSIGPSIGE17912;FR*SOD*S*SIGE*89*3*_*_;SIGEIF - RUELLE DES PATISSIERS - VILLERS-LE-BEL;;ABATTOIR;69142;[2.48729, 48.873236];;FRS33EMB339911;FR*SOD*E*SIGE*66*3*1*_;;;;;;;;;;;;;;;;;;;7815328555;2020-12-21;;2021-12-08;;2023-08-05T07:09:27.190000+00:00;618e26256226f741643dafdd;900e5f7b-8fc6-4f76-b221-bbdeca107a02;;2.482415;48.827704;69480;Saint-Priest;; +;Melun;337770341;;;;;VAL DE VESLE - 41910 -Rue du Général de Gaulle;FRSIGPSIGE18012;FR*SOD*S*SIGE*89*4*_*_;SIGEIF - PLACE DE LA REPUBLIQUE - MARCOUSSIS;;PLACE DU BRUILHOIS;69271;[2.194656, 48.822302];;FRS33EMB3310012;FR*SOD*E*SIGE*66*2*1*_;;;;;;;;;;;;;;;;;;;BT33036000800;2018-04-05;;2021-11-30;;2023-08-05T07:09:26.848000+00:00;618e76a85f42518cc9c1cdac;2429e86f-5513-4f1d-a6e3-40697a4b5e63;;2.250294;48.915111;69770;Décines-Charpieu;; +;Marlenheim;789951456;;;;;SARRY - 41698 - Rue Basse;FRSIGPSIGE18011;FR*SOD*S*SIGE*89*2*_*_;SIGEIF - 16 RUE DE LISBONNE - ROSNY-SOUS-BOIS;;BOULEVARD ARISTIDE BRIAND;69284;[2.482415, 48.902376];;FRS33EMB3310011;FR*SOD*E*SIGE*66*5*1*_;;;;;;;;;;;;;;;;;;;01642257590911;2018-01-23;;2021-10-26;;2023-08-05T07:09:26.391000+00:00;61936c20234a11993f42df2b;3940f788-d4ec-4dac-a079-9af4d80efdbd;;2.044941;48.972823;69590;Meyzieu;; +;Marty Hôtel Bordeaux, Tapestry Collection By Hilton;793418542;;;;;LE GAULIAT BORNE 1;FRSIGPSIGE18112;FR*SOD*S*SIGE*91*1*_*_;SIGEIF - 1 RUE CLAUDE PERNES - ROSNY-SOUS-BOIS;;PLACE DU CLUB;69071;[2.250294, 48.945741];;FRS33EMB3310112;FR*SOD*E*SIGE*67*4*1*_;;;;;;;;;;;;;;;;;;;50030332133095;2018-01-29;;2021-11-29;;2023-08-05T07:09:26.039000+00:00;61c4acd69e5a8634ddb1e291;310b0418-b812-4ffd-a060-efeefe5ed048;;2.179316;48.870292;69930;Vernaison;; +;Mazingarbe;219733094;;;;;REIMS St Thomas - 41690 -Rue Perin;FRSIGPSIGE18111;FR*SOD*S*SIGE*92*1*_*_;SIGEIF - 30 CHEMIN DESVALLIERES - VILLE-DAVRAY;;PLACE DE LHOTEL DE VILLE;69127;[2.044941, 48.811271];;FRS33EMB3310111;FR*SOD*E*SIGE*67*3*1*_;;;;;;;;;;;;;;;;;;;30002451040620;2018-01-24;;2021-12-10;;2023-08-05T07:09:25.632000+00:00;61d425fc9121518e382a1297;9bab044e-afc0-44ff-b5ef-2f3ae8940c23;;2.184659;48.812103;59113;Charbonnières-les-Bains;; +;Mc Donald's - Cagnes-sur-Mer;490020765;;;;;CERNAY-LES-REIMS - 42110 -Rue Saint Martin;FRSIGPSIGE18212;FR*SOD*S*SIGE*93*1*_*_;SIGEIF - 91 RUE JULES GUESDE - BONDY;;RUE DUCOURNEAU;69244;[2.179316, 48.821396];;FRS33EMB3310212;FR*SOD*E*SIGE*67*1*1*_;;;;;;;;;;;;;;;;;;;50064480388431;2018-04-10;;2021-12-14;;2023-08-05T07:09:25.218000+00:00;6213c94ab9fe60765d7c4ab4;1deffb87-133a-419d-bc59-bf5f608fe748;;2.181596;48.814589;27210;Cailloux-sur-Fontaines;; +;McDonald's Lons-le-Saunier;817450646;;;;;Montélimar Ouest;FRSIGPSIGE18211;FR*SOD*S*SIGE*94*1*_*_;SIGEIF - 1 RUE DE LA POSTE PROLONGE - ARGENTEUIL;;RUE RIGOULET;69100;[2.184659, 48.827427];;FRS33EMB3310211;FR*SOD*E*SIGE*67*6*1*_;;;;;;;;;;;;;;;;;;;197249;2018-05-24;;2021-12-20;;2023-08-05T07:09:24.895000+00:00;621de95a1d80d36a9a8fed01;6642c6f4-ca8f-4e3d-8bb5-ce8fa8956fac;;2.253396;48.866405;24600;Jonage;; +;Meaux Victoire B&B Hotels;422491902;;;;;HYPER U BORNE 5;FRSIGPSIGE18311;FR*SOD*S*SIGE*95*1*_*_;SIGEIF - 5 PLACE DU 8 MAI 1945 - FONTENAY-LE-FLEURY;;CHEMIN DE PASCALET;69040;[2.181596, 48.827704];;FRS33EMB3310312;FR*SOD*E*SIGE*67*5*1*_;;;;;;;;;;;;;;;;;;;15474529612165;2018-05-21;;2021-11-18;;2023-08-05T07:09:24.505000+00:00;6217af011e9d58c98bf413d9;d8e22ed5-f7b0-4afa-bee7-4f4d60e0424c;;2.279536;49.000478;24000;Francheville;; +;Marineland;783595028;;;;;METTRAY 1285 - Les Gaudières;FRSIGPSIGE18331;FR*SOD*S*SIGE*97*1*_*_;SIGEIF - 67 RUE DE VERSAILLES - VILLE-DAVRAY;;SALLE DES FÊTES;69085;[2.253396, 48.915111];;FRS33EMB3310311;FR*SOD*E*SIGE*53*1*2*_;;;;;;;;;;;;;;;;;;;191066;2018-05-22;;2021-10-18;;2023-08-05T07:09:24.155000+00:00;6215006e4c78a85d6f4d0714;5a514c96-7f97-4eac-ae48-20ac76900c56;;2.486329;49.031974;24220;Neuville-sur-Saône;; +;Menuiserie Olry;332009471;;;;;CORMONTREUIL - 42377 - Rue Manoel Pinto;FRSIGPSIGE18341;FR*SOD*S*SIGE*98*1*_*_;SIGEIF - 21 RUE DE MARNES - VILLE-DAVRAY;;PARKING COVOITURAGE;69152;[2.279536, 48.972823];;FRS33EMB3310411;FR*SOD*E*SIGE*68*1*2*_;;;;;;;;;;;;;;;;;;;187110;2018-04-18;;2021-10-15;;2023-08-05T07:09:23.269000+00:00;6214f1fad36421094a930f45;6ff6fb2c-a5a3-4273-8f9d-68f03449ab0e;;2.371545;48.944501;24270;Vénissieux;; +;Mirebel, Parking rue du Visenay;524678711;;;;;VERNOUILLET - Rue de ROME - 139351;FRSIGPSIGE17311;FR*SOD*S*SIGE*100*2*_*_;SIGEIF - 29 AVENUE THIERRY - VILLE-DAVRAY;;PLACE MAURICE TISSERAND;69250;[2.486329, 48.870292];;FRS33EMB3310412;FR*SOD*E*SIGE*68*1*1*_;;;;;;;;;;;;;;;;;;;190148;2018-04-12;;2021-11-17;;2023-08-05T07:09:22.960000+00:00;61d5eba630b24930e576c64c;eaf5c9bd-ddc0-4beb-b303-29274a7e1c53;;2.399729;48.872049;24590;Feyzin;; +;Mirecourt;501208680;;;;;CP 6000 BORNE 1;FRSIGPSIGE112;FR*SOD*S*SIGE*100*1*_*_;SIGEIF - 7 RUE FELIX FAURE - COLOMBES;;PLACE DE LÉGLISE;69207;[2.371545, 48.812103];;FRS33EMB3310511;FR*SOD*E*SIGE*69*1*1*_;;;;;;;;;;;;;;;;;;;236599;2018-06-26;;2021-12-07;;2023-08-05T07:09:22.599000+00:00;6213a75077fb14224ccd9f0d;4f18db76-054e-462b-a694-59dad466ad4b;;2.642961;48.86188;24800;Sathonay-Camp;; +;Midas Noyon;310505771;;;;;Bonneville;FRSIGPSIGE17412;FR*SOD*S*SIGE*35*6*_*_;SIGEIF - 26 RUE DERMONT - SAINT-GRATIEN;;PLACE VICOZE;69204;[2.399729, 48.814589];;FRS33EMB3310512;FR*SOD*E*SIGE*69*1*2*_;;;;;;;;;;;;;;;;;;;190123;2021-01-20;;2021-10-19;;2023-08-05T07:09:21.960000+00:00;621339cbd29cc099f28b9eec;585b885b-f478-4174-b6d5-9a8c0c827132;;2.413664;48.752064;24370;Grigny;; +;Michel Vacheron Automobiles;393628136;;;;;SAINT LAURENT NOUAN 4615 - Rue des écoles;FRSIGPSIGE111;FR*SOD*S*SIGE*209*1*_*_;SIGEIF - 9 AVENUE JEAN JAURES - ROSNY-SOUS-BOIS - 2;;PARKING TIVOLI;69296;[2.642961, 48.866405];;FRS33EMB3310611;FR*SOD*E*SIGE*70*2*1*_;;;;;;;;;;;;;;;;;;;209662;2020-06-22;;2021-10-31;;2023-08-05T07:09:21.625000+00:00;6210db39ad31bf9304d67d43;55b3822e-d527-4972-ab16-ceb12319a0c7;;2.47388;48.871722;24290;Sathonay-Village;; +;Metropole Auto Saint Gely;219722238;;;;;THEILLAY 4582 - Rue de la Pierre;FRSIGPSIGE17312;FR*SOD*S*SIGE*203*1*_*_;SIGEIF - 111 RUE HOCHE - IVRY-SUR-SEINE - 2;;ROUTE DE GIMBREDE;69290;[2.413664, 49.000478];;FRS33EMB3311311;FR*SOD*E*SIGE*70*2*2*_;;;;;;;;;;;;;;;;;;;229360;2020-02-26;;2021-10-13;;2023-08-05T07:09:21.332000+00:00;621f3aa94edff5c1682b5515;2d76dd21-4229-4409-94bf-314276efd944;;2.146948;49.02965;24250;Couzon-au-Mont-d'Or;; +;Mercedes Saint-Brieuc;219722204;;;;;ROMORANTIN LANTHENAY 4586;FRSIGPSIGE4441;FR*SOD*S*SIGE*204*1*_*_;SIGEIF - 23 BOULEVARD DE BRANDEBOURG - IVRY-SUR-SEINE;;PLACE JASMIN;69275;[2.47388, 49.031974];;FRS33EMB3310711;FR*SOD*E*SIGE*71*3*1*_;;;;;;;;;;;;;;;;;;;226602;2020-03-05;;2021-10-21;;2023-08-05T07:09:21.066000+00:00;621f8d975b5d02b6b7bed333;6931e523-5dac-4649-afea-e90b3d299a7b;;2.486793;48.766087;24470;Charly;; +;Mercedes Nivolas-Vermelle Public;219740123;;;;;Romorantin 24592 - Rue de Sabard;FRSIGPSIGE4211;FR*SOD*S*SIGE*205*1*_*_;SIGEIF - RUE DE TORCY - VAIRES-SUR-MARNE;;PARKING BRANSOUILLÉ;69259;[2.146948, 48.944501];;FRS33EMB3310712;FR*SOD*E*SIGE*71*6*1*_;;;;;;;;;;;;;;;;;;;50084749613226;2021-06-03;;2021-07-13;;2023-08-05T07:09:20.737000+00:00;62205a7f7357edcd07f98a69;d90e1d6b-654e-4cdf-a6e0-aff653783868;;2.213465;48.869794;24620;Craponne;; +;Mercier SAS;306300344;;;;;SAINT LAURENT NOUAN 4605 - Place du Soleil d'Or;FRSIGPSIGE4241;FR*SOD*S*SIGE*206*1*_*_;SIGEIF - 4 ALLEE PIERRE CORNEILLE - VILLIERS-LE-BEL;;PLACE JOSÉ BES;69282;[2.486793, 48.872049];;FRS33EMB3310812;FR*SOD*E*SIGE*71*2*1*_;;;;;;;;;;;;;;;;;;;192179;2021-05-07;;2021-06-04;;2023-08-05T07:09:20.492000+00:00;6220831013ba1081c6cf4a69;16d74df3-a64f-4472-b8fb-5c4c884c15b0;;2.270501;48.760628;24260;Collonges-au-Mont-d'Or;; +;Merxheim;514882372;;;;;SAINT LAURENT NOUAN 4613 - Place Saint-Aignan;FRSIGPSIGE4311;FR*SOD*S*SIGE*207*1*_*_;SIGEIF - RUE PABLO NERUDA - GOUSSAINVILLE;;RUE LESBOULBENES;69260;[2.213465, 48.86188];;FRS33EMB3310811;FR*SOD*E*SIGE*71*4*1*_;;;;;;;;;;;;;;;;;;;161061;2021-04-09;;2022-02-28;;2023-08-05T07:09:20.217000+00:00;62261b33123f8e2df8c4a9e1;d2e13523-1a56-4c15-b3d1-9ced757dc98d;;2.484066;48.873308;24580;Corbas;; +;Icade - PdP public - Autres;387880602;;;;;NOGENT-LE-ROTOU - Rue du Commandant Charcot-138014;FRSIGPSIGE4331;FR*SOD*S*SIGE*208*1*_*_;SIGEIF - 33 RUE GUYNEMER - MAISONS-LAFFITTE;;RUE DES DOCTEURS DE SAMONDES;69044;[2.270501, 48.752064];;FRS33EMB3310911;FR*SOD*E*SIGE*71*1*1*_;;;;;;;;;;;;;;;;;;;207639;2019-12-13;;2022-02-24;;2023-08-05T07:09:19.895000+00:00;62270c014fbc4cd1a94dfdfe;17e087dd-9f47-4e1f-a5e0-a9135bec7fee;;2.457298;48.947895;24170;Quincieux;; +;La Garde Freinet;334836608;;;;;VILLIERS SUR LOIR 4664 - Avenue du Petit Thouars;FRSIGPSIGE4321;FR*SOD*S*SIGE*210*1*_*_;SIGEIF - PARKING DE LEUROPE - ROSNY-SOUS-BOIS;;PLACE DU MARECHAL LECLERC;69033;[2.484066, 48.871722];;FRS33EMB3310912;FR*SOD*E*SIGE*71*5*1*_;;;;;;;;;;;;;;;;;;;208703;2018-06-27;;2022-02-22;;2023-08-05T07:09:19.557000+00:00;622b6271d0ac23a6e00d13e3;fdb54315-f816-4180-97ac-c82461259e80;;2.141333;48.914985;24230;Saint-Genis-les-Ollières;; +;La Maison Rouge;852602259;;;;;SAVIGNY SUR BRAYE - Avenue de la Braye - 153650;FRSIGPSIGE4361;FR*SOD*S*SIGE*202*1*_*_;SIGEIF - 33 RUE DE LA TUILERIE - SURESNES;;AVENUE DE GAULLE;69279;[2.457298, 49.02965];;FRS33EMB3311011;FR*SOD*E*SIGE*65*2*1*_;;;;;;;;;;;;;;;;;;;191098;2018-06-18;;2022-01-05;;2023-08-05T07:09:19.212000+00:00;62304c3db85bd9ebcf909f51;bac714d7-5aff-499e-98b6-91a4f4d860b1;;2.640961;48.832916;24110;Mions;; +;La Rôtisserie - ROTISSARL;837717909;;;;;VENDOME 4674 - Geoffrey Martel;FRSIGPSIGE4341;FR*SOD*S*SIGE*211*1*_*_;SIGEIF - 1 VOIE DE LAULNE - VERRIERES-LE-BUISSON;;RUE DE LEGLISE;69089;[2.141333, 48.766087];;FRS33EMB3311012;FR*SOD*E*SIGE*65*1*1*_;;;;;;;;;;;;;;;;;;;222484;2018-06-29;;2022-02-21;;2023-08-05T07:09:18.912000+00:00;62308f48b0672f06443be1ab;3aafed57-2430-4492-89d8-c728685a8f72;;2.330149;49.004398;24410;Rochetaillée-sur-Saône;; +;La ferme des Moines;830266722;;;;;LA VILLE AUX CLERCS 4676 - Rue de l'Abreuvoir;FRSIGPSIGE4351;FR*SOD*S*SIGE*212*1*_*_;SIGEIF - 6 RUE DU MARECHAL MAUNOURY - ROSNY-SOUS-BOIS;;AVENUE DE LA CONFLUENCE;69143;[2.640961, 48.869794];;FRS33EMB3311112;FR*SOD*E*SIGE*65*3*1*_;;;;;;;;;;;;;;;;;;;191074;2019-10-01;;2022-02-17;;2023-08-05T07:09:18.681000+00:00;6231fb0e15df4f48f8afeb99;3cf69681-8432-4cee-a3e6-3cb7c821782e;;2.640491;48.80169;24150;Dardilly;; +;La tour Pom'pin;830297222;;;;;VENDOME 4678 - Square des Anciens d'Indochine;FRSIGPSIGE4431;FR*SOD*S*SIGE*213*1*_*_;SIGEIF - 21 AVENUE DE MONTMORENCY - GOUSSAINVILLE;;PLACE DE LUNION;69276;[2.330149, 48.760628];;FRS33EMB3311111;FR*SOD*E*SIGE*65*4*1*_;;;;;;;;;;;;;;;;;;;191073;2019-02-28;;2022-02-19;;2023-08-05T07:09:18.326000+00:00;62320e50f981bc2b57bcc044;f60e3195-1a22-451c-98b2-af75ffa1a167;;2.141711;49.003741;24360;Tremblay-en-France;; +;Labeyrie;802549295;;;;;EPUISAY 4680 - Rue des Bleuets;FRSIGPSIGE4451;FR*SOD*S*SIGE*214*1*_*_;SIGEIF - RUE DU PETIT JOUY - LOGES-EN-JOSAS;;ZAE FOULAYRONNES;69292;[2.640491, 48.873308];;FRS33EMB3311212;FR*SOD*E*SIGE*54*2*2*_;;;;;;;;;;;;;;;;;;;187112;2018-07-09;;2022-03-07;;2023-08-05T07:09:18.025000+00:00;62325d661445739bdebfc6b6;8c44ec68-c414-4470-a1b8-3efcf640d49d;;2.484081;48.975383;24430;Lieusaint;; +;Lajoux, Quartier Le Village;879276491;;;;;VENDOME 4682 - Route du Dr Faton;FRSIGPSIGE4461;FR*SOD*S*SIGE*215*1*_*_;SIGEIF - PLACE DE LA REPUBLIQUE - VAIRES-SUR-MARNE;;PLACE DU MARCHÉ;69096;[2.141711, 48.947895];;FRS33EMB3311211;FR*SOD*E*SIGE*54*2*1*_;;;;;;;;;;;;;;;;;;;190147;2018-06-07;;2022-03-11;;2023-08-05T07:09:17.731000+00:00;62344e3656dbd19aae0838f4;78db3188-2232-4f87-acd2-7b5b688809ad;;2.241634;48.814008;24240;Vélizy-Villacoublay;; +;La Isla Bonita;479159261;;;;;Vaupillon;FRSIGPSIGE4421;FR*SOD*S*SIGE*216*1*_*_;SIGEIF - 42 AVENUE DE LA PAIX - FRESNES;;AVENUE DE LA GARE;69293;[2.484081, 48.914985];;FRS33EMB3311312;FR*SOD*E*SIGE*58*1*1*_;;;;;;;;;;;;;;;;;;;190319;2018-06-28;;2022-03-15;;2023-08-05T07:09:17.395000+00:00;6239e173aba21be3dbe82e48;155402b8-a84b-4168-8865-2e398cf05fb9;;2.392918;48.965435;24130;Le Chesnay-Rocquencourt;; +;Le Hall Lacroix;389643859;;;;;St Hilaire de Gondilly - Le Golf - 126241;FRSIGPSIGE4411;FR*SOD*S*SIGE*194*1*_*_;SIGEIF - 4 BOULEVARD CONSTANT MELET - VAIRES-SUR-MARNE;;RUE DE VISE;69068;[2.241634, 48.832916];;FRS33EMB336711;FR*SOD*E*SIGE*58*1*2*_;;;;;;;;;;;;;;;;;;;4967;2021-02-22;;2022-03-14;;2023-08-05T07:09:17.077000+00:00;620fb1c36a23d4fde43aba1a;40c9df51-13c1-44a7-9a35-19230dd22405;;2.315636;48.961764;24210;Cagnes-sur-Mer;; +;La Fontaine aux Grives;882060387;;;;;Lacq Audéjos Nord;FRSIGPSIGE4251;FR*SOD*S*SIGE*199*6*_*_;SIGEIF - RUE JEAN MERMOZ - MAISONS-LAFFITTE;;PARKING DU MARCHÉ;69046;[2.392918, 49.004398];;FRS33EMB336611;FR*SOD*E*SIGE*59*1*1*_;;;;;;;;;;;;;;;;;;;219483;2022-07-05;;2022-03-10;;2023-08-05T07:09:16.789000+00:00;620fa1624959620541f11568;b589e662-d32f-4888-b2fe-dcd695afad95;;2.514439;48.986303;24140;Villeneuve-d'Ascq;; +;La Cabane De Marie;419599980;;;;;CGED EPC SOLUTIONS;FRSIGPSIGE4511;FR*SOD*S*SIGE*195*1*_*_;SIGEIF - 32 AVENUE HENRI VARAGNAT - BONDY;;ROND POINT DE THIVRAS;69069;[2.315636, 48.80169];;FRS33EMB3313011;FR*SOD*E*SIGE*59*1*2*_;;;;;;;;;;;;;;;;;;;187105;2023-01-16;;2022-02-18;;2023-08-05T07:09:16.467000+00:00;620e534301b735a2a44b31b8;1e2e9fb5-9660-4bc1-be11-d92025255e7b;;2.325135;48.792163;24530;Levallois-Perret;; +;La Caberte;448187617;;;;;LE SUBDRAY - Salle des Fêtes - 212076;FRSIGPSIGE4512;FR*SOD*S*SIGE*196*1*_*_;SIGEIF - 15 AVENUE DU GENERAL LECLERC - BOULOGNE-BILLANCOURT;;AVENUE DES PYRÉNÉES;69063;[2.514439, 49.003741];;FRS33EMB331612;FR*SOD*E*SIGE*60*1*2*_;;;;;;;;;;;;;;;;;;;191072;2023-01-26;;2022-02-26;;2023-08-05T07:09:16.076000+00:00;61f95e1df963cf9bd28b1d92;0cb7fd37-b354-4b65-9ddb-5ae2cf60908a;;2.04919;48.935119;24610;Razès;; +;La Casse;812676997;;;;;UZAY-LE-VENON - Eglise - 212026;FRSIGPSIGE4611;FR*SOD*S*SIGE*375*4*_*_;SIGEIF - 5 BOULEVARD SALVADOR ALLENDE - VILLIERS-LE-BEL;;DOJO;69273;[2.325135, 48.975383];;FRS33EMB331711;FR*SOD*E*SIGE*60*1*1*_;;;;;;;;;;;;;;;;;;;187106;2022-02-08;;2021-01-28;;2023-08-05T07:09:15.748000+00:00;61d6e0020cb9cb86e5057e75;4faef7aa-a71d-40e5-89d1-9e2719c8af62;;2.314644;48.989537;24550;Le Palais-sur-Vienne;; +;La Cave d'Aléria;310162417;;;;;RIANS - Place de l'Eglise - 205324;FRSIGPSIGE4612;FR*SOD*S*SIGE*197*1*_*_;SIGEIF - 43 AVENUE HENRI BARBUSSE - BAGNEUX;;AIRE DE COVOITURAGE;69163;[2.04919, 48.814008];;FRS33EMB331912;FR*SOD*E*SIGE*61*1*1*_;;;;;;;;;;;;;;;;;;;191071;2022-01-13;;2022-02-05;;2023-08-05T07:09:15.421000+00:00;61ddb8cfb66aa4f8ff202a0f;c41a11b7-7913-45d4-a69d-d2d70e91c7f9;;2.324662;48.959082;24100;Gentioux-Pigerolles;; +;La Ceriseraie;425127685;;;;;SAINT DENIS LANNERAY - Rue Jean Moulin - 134842;FRSIGPSIGE4712;FR*SOD*S*SIGE*198*4*_*_;SIGEIF - 21 RUE HOUDART - ROISSY-EN-FRANCE;;CHEMIN DES ÉCOLIERS;69205;[2.314644, 48.965435];;FRS33EMB331911;FR*SOD*E*SIGE*61*1*2*_;;;;;;;;;;;;;;;;;;;245578;2022-07-04;;2022-02-09;;2023-08-05T07:09:15.165000+00:00;61ddbcd55e3a2eb0a9c0799c;c27e4493-7646-4e05-85b6-de69b8f56047;;2.351968;44.530308;24660;Saint-Germain-les-Belles;; +;La Couscoussière;811290642;;;;;RAYMOND -Le Far West -117401;FRSIGPSIGE4711;FR*SOD*S*SIGE*198*1*_*_;SIGEIF - 3 RUE CHARLES DE GAULLE - DEUIL-LA-BARRE;;PARKING ATELIER TECHNIQUE;69283;[2.324662, 48.961764];;FRS33EMB332012;FR*SOD*E*SIGE*62*1*1*_;;;;;;;;;;;;;;;;;;;219482;2023-03-15;;2022-02-11;;2023-08-05T07:09:14.797000+00:00;61e18c7462abbabd4e790eaa;27171ea8-5d30-4e04-bea3-829c86da713e;;2.320078;44.386063;24340;Cieux;; +;La Fabrique à Poupées;350493102;;;;;EPERNON - Rue Nouvelle du Sycomore - 130887;FRSIGPSIGE4812;FR*SOD*S*SIGE*198*2*_*_;SIGEIF - 8 RUE PIERRE CURIE - FONTENAY-LE-FLEURY;;PARKING DU DOJO;69168;[2.351968, 48.986303];;FRS33EMB332011;FR*SOD*E*SIGE*62*1*2*_;;;;;;;;;;;;;;;;;;;283414;2021-01-04;;2023-01-20;;2023-08-05T07:09:14.559000+00:00;61e1a41c0f2d5e99178e8fe6;51e2a566-6bb9-4b69-84ff-845f53ae74a7;;2.335975;44.39468;24320;Châteauponsac;; +;Lamballe Carrelage;329572549;;;;;JOUET-sur-L'Aubois - Mairie - 205672;FRSIGPSIGE4811;FR*SOD*S*SIGE*198*3*_*_;SIGEIF - 37 RUE DE LA BARRE - ENGHIEN-LES-BAINS;;BOULEVARD ALPHONSE DE POITIERS;69381;[2.320078, 48.792163];;FRS33EMB332112;FR*SOD*E*SIGE*63*6*1*_;;;;;;;;;;;;;;;;;;;187108;2021-01-28;;2022-09-23;;2023-08-05T07:09:14.262000+00:00;61f1aa8abba8b34ef29e65ab;bf3a594e-ad55-4270-a3d3-305f84f647f8;;2.344589;44.203403;24120;Saint-Sulpice-Laurière;; +;Le Bistrot d'ici;510125842;;;;;Jura;FRSIGPSIGE4911;FR*SOD*S*SIGE*199*3*_*_;SIGEIF - 27 ROUTE DE SAINT DENIS - DEUIL-LA-BARRE;;PLACE CARRÉ;69072;[2.335975, 48.935119];;FRS33EMB332111;FR*SOD*E*SIGE*63*4*1*_;;;;;;;;;;;;;;;;;;;187104;2021-01-25;;2022-09-02;;2023-08-05T07:09:13.591000+00:00;61f275cff256c9132372aba1;a0194a06-b158-4e4c-b531-87c3d527105e;;2.150202;44.530373;24400;Magnac-Laval;; +;Le Bois d'Imbert;494457062;;;;;JANVILLE-EN-BEAUCE - Parking Bretonnerie - 130534;FRSIGPSIGE4912;FR*SOD*S*SIGE*199*4*_*_;SIGEIF - 6 RUE DU DR GOLDSTEIN - GROSLAY;;PARKING PLATEAU;93073;[2.344589, 48.989537];;FRS33EMB332211;FR*SOD*E*SIGE*63*5*1*_;;;;;;;;;;;;;;;;;;;220599;2020-12-10;;2022-05-28;;2023-08-05T07:09:13.252000+00:00;61f2cb9ac6248559ad59ede3;a1ccdfe3-1f86-4c72-b5d0-a721b6c1dbdb;;0.095448;44.194412;24350;Bosmie-l'Aiguille;; +;Le Château des Broyers;828451815;;;;;TROO 4684;FRSIGPSIGE5112;FR*SOD*S*SIGE*199*5*_*_;SIGEIF - 230 AVENUE ARISTIDE BRIAND - BAGNEUX;;PARKING DE LA POSTE;75114;[2.150202, 48.959082];;FRS33EMB332212;FR*SOD*E*SIGE*63*3*1*_;;;;;;;;;;;;;;;;;;;192180;2020-07-29;;;;2023-08-05T07:09:12.528000+00:00;61f3d18450b8216fcabb9f4f;291e6936-82dc-4cd3-9494-72ebc4880676;;0.690809;44.28891;24390;Saint-Paul;; +;Le Clos Auvergnat;502941479;;;;;VENDOME 4745 - AVENUE JEAN MOULIN;FRSIGPSIGE5111;FR*SOD*S*SIGE*201*2*_*_;SIGEIF - 7 QUAI DASNIERES - VILLENEUVE-LA-GARENNE;;AVENUE JEAN-FRANCOIS PONCET;77251;[0.095448, 44.530308];;FRS33EMB332312;FR*SOD*E*SIGE*63*1*1*_;;;;;;;;;;;;;;;;;;;212499;2020-07-22;;;;2023-08-05T07:09:12.113000+00:00;61f783c53466c1be407798b7;e040aeb3-f810-44f6-add8-0c29877a1c0e;;0.68865;44.230488;24420;Blanzac;; +;Le Colibri;488263203;;;;;SALBRIS 4717 - Place du 11 Novembre;FRSIGPSIGE4221;FR*SOD*S*SIGE*199*1*_*_;SIGEIF - 2 RUE DES CARRIERES - GROSLAY;;LAC DE CLARENS;78640;[0.690809, 44.386063];;FRS33EMB332311;FR*SOD*E*SIGE*63*2*1*_;;;;;;;;;;;;;;;;;;;207865;2020-09-03;;;;2023-08-05T07:09:11.772000+00:00;61f7b529835ebb76caed533f;f5e5b9df-19ba-4efa-805f-cb73fdc9e6db;;0.611634;44.249722;24200;Saint-Victurnien;; +;Le Domaine du Val;830690715;;;;;PIERREFITTE SUR SAULDRE 4719 - Rue des Fossés;FRSIGPSIGE4231;FR*SOD*S*SIGE*199*2*_*_;SIGEIF - 13 AVENUE DESAIX - MAISONS-LAFFITTE;;PARKING AIRE DE REPOS;78158;[0.68865, 44.39468];;FRS33EMB332411;FR*SOD*E*SIGE*64*6*1*_;;;;;;;;;;;;;;;;;;;207863;2020-07-02;;;;2023-08-05T07:09:11.494000+00:00;61f94d7af082da0ddc0a7d2f;1d33f87a-5383-4a85-be31-1e5a3d7f590c;;0.095533;44.23138;24500;Bessines-sur-Gartempe;; +;Le Florival;479774051;;;;;SENONCHES - Rue du four banal - 134263;FRSIGPSIGE3651;FR*SOD*S*SIGE*200*3*_*_;SAINTE BAZEILLE - PLACE DOCTEUR BELOT - DROITE;;SQUARE BIR HAKEIM;06027;[0.611634, 44.203403];;FRS33EMB332412;FR*SOD*E*SIGE*64*4*1*_;;;;;;;;;;;;;;;;;;;207860;2020-06-01;;;;2023-08-05T07:09:11.141000+00:00;61fa52642588d0e7e9ba4cb3;408ca228-09b8-4df9-8574-4d623dd97af8;;0.542454;44.384762;24460;Saint-Jouvent;; +;Le Centenaire & L'Albionnaise;095720314;;;;;FOSSE 4816 - Rue de Vendome;FRSIGPSIGE3961;FR*SOD*S*SIGE*200*1*_*_;PUJOLS - PARKING MAIRIE;;PARKING DU CREDIT AGRICOLE;59009;[0.095533, 44.530373];;FRS33EMB332511;FR*SOD*E*SIGE*64*5*1*_;;;;;;;;;;;;;;;;;;;207861;2020-05-23;;;;2023-08-05T07:09:10.838000+00:00;620e4bd58f46a7495b99da0e;e8bb254d-dd57-4e13-be73-c67c7affb141;;0.509986;44.394165;24300;Val-d'Oire-et-Gartempe;; +;Le Cheverny;509530572;;;;;DHUIZON - Rue de la ferte st cyr - 167439;FRSIGPSIGE3741;FR*SOD*S*SIGE*200*4*_*_;PUJOLS - PARKING PISCINE MALBENTRE;;PARKING TORTIS;75101;[0.542454, 44.194412];;FRS33EMB332512;FR*SOD*E*SIGE*64*3*1*_;;;;;;;;;;;;;;;;;;;50002115768544;2020-05-05;;;;2023-08-05T07:09:10.446000+00:00;61fbf00a372234074fb7ed35;7f0198e8-3654-45dc-8947-92037eb07491;;0.67833;44.134995;24380;Val d'Issoire;; +;Le Château d'Ygrande;384614921;;;;;HUISSEAU SUR COSSON 4739 - Champs de Ligny;FRSIGPSIGE3751;FR*SOD*S*SIGE*200*5*_*_;AGEN - GENERAL DE GAULLE - CONTREPOINT;;PARKING REDON;92044;[0.509986, 44.28891];;FRS33EMB332612;FR*SOD*E*SIGE*64*2*1*_;;;;;;;;;;;;;;;;;;;199828;2020-07-27;;;;2023-08-05T07:09:10.057000+00:00;61fe789fb006933c9c1f2b51;f2886ade-e545-49f1-9bf8-94cd18326a03;;0.399167;44.17889;24510;La Croisille-sur-Briance;; +;La Butte;394533632;;;;;RIGNY USSE 4741 - Chemin du pont Félicie;FRSIGPSIGE3761;FR*SOD*S*SIGE*200*2*_*_;SAINTE BAZEILLE - PLACE DOCTEUR BELOT - GAUCHE;;JARDIN PUBLIC;87122;[0.67833, 44.230488];;FRS33EMB332611;FR*SOD*E*SIGE*64*1*1*_;;;;;;;;;;;;;;;;;;;219481;2020-05-04;;;;2023-08-05T07:09:09.646000+00:00;6202980e8ce8d1b7836aa87d;c4ee2934-191c-4487-a441-ad0a6c3472b5;;0.681062;44.390133;24440;Ambazac;; +;LS Group Chatou public;833942725;;;;;AVRILLE LES PONCEAUX 4747 - Rue basse;FRSIGPSIGE3721;FR*SOD*S*SIGE*201*3*_*_;SAINTE COLOMBE EN BRUILHOIS - CARRERE DE BRAX;;MASCARON BASILIQUE;87113;[0.399167, 44.249722];;FRS33EMB332712;FR*SOD*E*SIGE*37*3*1*_;;;;;;;;;;;;;;;;;;;181339;2020-06-26;;;;2023-08-05T07:09:08.983000+00:00;6203d93133518c9ae860a4b9;7e843ce1-74d2-4be6-b2d2-4e1ffb126229;;0.810305;44.205681;24650;Aixe-sur-Vienne;; +;L'Incantu;451685689;;;;;LA FERTE-VIDAME - Place de la Mairie - 128756;FRSIGPSIGE3711;FR*SOD*S*SIGE*201*6*_*_;PRAYSSAS - PLACE AVENUE JEAN JAURES;;ALLÉE DES CÉTOINES;23090;[0.681062, 44.23138];;FRS33EMB332711;FR*SOD*E*SIGE*36*2*1*_;;;;;;;;;;;;;;;;;;;15485094011968;2020-05-06;;;;2023-08-05T07:09:08.550000+00:00;6206751195a42c8cc3c1c5fa;542d316f-e17b-4a8b-9fbc-b3a2ce4afc8b;;0.806667;44.191933;24570;Le Dorat;; +;L'Isle-Adam;216203711;;;;;CLOSEAU1 BORNE 2;FRSIGPSIGE3821;FR*SOD*S*SIGE*201*5*_*_;PONT-DU-CASSE - PARKING CENTRE COMMERCIAL;;GRANDE RUE DU 8 MAI 1945;87146;[0.810305, 44.384762];;FRS33EMB332812;FR*SOD*E*SIGE*72*2*1*_;;;;;;;;;;;;;;;;;;;15485238729790;2020-09-23;;;;2023-08-05T07:09:08.077000+00:00;620b8b29ba667d23a10df9c7;c543c475-74a6-4ebd-9ef7-a33e7f626bcc;;0.342304;44.505325;24640;Châteauneuf-la-Forêt;; +;LR Habitat;216207241;;;;;MAIRIE SMDL HOTEL DE VILLE;FRSIGPSIGE3811;FR*SOD*S*SIGE*201*4*_*_;PORT SAINTE MARIE - PARKING RUE PASTEUR;;RUE DU FIEF;87045;[0.806667, 44.394165];;FRS33EMB332811;FR*SOD*E*SIGE*398*1*2*_;;;;;;;;;;;;;;;;;;;169761;2020-06-25;;;;2023-08-05T07:09:07.731000+00:00;620d220566daca0cb793ec2e;2685fcb2-76be-441d-99ea-6c4c3a8d7bd5;;0.516944;44.199535;24160;Bellac;; +;LS Group Avranches public;950559567;;;;;LA FERTE BEAUHARNAIS 4727;FRSIGPSIGE3831;FR*SOD*S*SIGE*201*1*_*_;PONT-DU-CASSE - PARKING CENTRE BOURG;;RUE ROBERT THOMAS;87041;[0.342304, 44.134995];;FRS33EMB332912;FR*SOD*E*SIGE*392*1*1*_;;;;;;;;;;;;;;;;;;;171501;2021-06-09;;;;2023-08-05T07:09:07.315000+00:00;620d242c0d6f10cff81959ab;b3a9dac3-2354-4887-8f95-cf1ee14ca531;;0.310212;44.435215;24560;Saint-Léonard-de-Noblat;; +;LS Group Brie public;799669155;;;;;SAINT GEORGES SUR CHER 4715 - Place Bretonneau;FRSIGPSIGE3841;FR*SOD*S*SIGE*217*1*_*_;PENNE DAGENAIS - THEATRE DEAU;;RUE DAUVERGNE;87181;[0.516944, 44.17889];;FRS33EMB332911;FR*SOD*E*SIGE*393*1*2*_;;;;;;;;;;;;;;;;;;;187101;2021-05-05;;;;2023-08-05T07:09:06.995000+00:00;620e0c5f4fca38412e424b58;f92f0a35-cb54-430f-8125-3f16610929ab;;0.627324;44.192516;24680;Châlus;; +;LS Group Cesson public;408663763;;;;;MONTRICHARD VAL DE CHER (B1) 4713;FRSIGPSIGE3861;FR*SOD*S*SIGE*241*1*_*_;PENNE DAGENAIS - PARKING CAPITAINERIE;;RUE DU COMMANDANT MARIN LA MESLÉE;87089;[0.310212, 44.390133];;FRS33EMB333012;FR*SOD*E*SIGE*393*1*1*_;;;;;;;;;;;;;;;;;;;207640;2021-07-08;;;;2023-08-05T07:09:06.570000+00:00;620e0e95a29bf3696333dd08;8ea52793-7e3c-4985-b6b5-657cef5bfa7d;;0.616868;44.225597;24540;Saint-Yrieix-la-Perche;; +;LS Group Chateaudun public;479244576;;;;;SOING EN SOLOGNE 4690 - Rue de la Salle des Fêtes;FRSIGPSIGE3851;FR*SOD*S*SIGE*234*1*_*_;NERAC - MEDIATHEQUE - GAUCHE;;LÉHONTINE SOHIER;87021;[0.627324, 44.205681];;FRS33EMB333011;FR*SOD*E*SIGE*394*1*1*_;;;;;;;;;;;;;;;;;;;206041;2020-07-01;;;;2023-08-05T07:09:06.232000+00:00;620e0fc59023edc23d0a6eae;d82bea84-848d-497c-993a-2aa27b44e999;;0.451676;44.203743;24310;Rochechouart;; +;L'Hostellerie des Bas Rupts;200046175;;;;;CONTRES 4692 - Rue de la Gare;FRSIGPSIGE3931;FR*SOD*S*SIGE*236*1*_*_;SAINTE COLOMBE EN BRUILHOIS - POLE SPORTIF BECADE;;RUE DES PYLANDRIES;87174;[0.616868, 44.191933];;FRS33EMB333111;FR*SOD*E*SIGE*394*1*2*_;;;;;;;;;;;;;;;;;;;187102;2020-07-09;;;;2023-08-05T07:09:05.821000+00:00;620e15fef100514f18bed7a6;ff78969a-f3f4-4c8d-94e0-3b7739d408e8;;0.616936;44.396168;24480;Oradour-sur-Glane;; +;Klima Ingenierie;252901145;;;;;GVA VÉNISSIEUX AC2;FRSIGPSIGE3911;FR*SOD*S*SIGE*237*1*_*_;TONNEINS - MARECHAL FOCH;;HAMEAU DES COUDRAYE;87017;[0.451676, 44.505325];;FRS33EMB333112;FR*SOD*E*SIGE*395*1*2*_;;;;;;;;;;;;;;;;;;;189699;2020-07-17;;;;2023-08-05T07:09:05.550000+00:00;63dccb1307e9b2f213a5130c;e9c0a726-c3f6-4a2a-8b46-bb39b456bca0;;0.130918;44.206921;24630;Guillaumes;; +;Keybas - ITAL AUTO 49;304602956;;;;;MONDOUBLEAU 4700-4701;FRSIGPSIGE4121;FR*SOD*S*SIGE*238*1*_*_;AGEN - PARKING CINEMA;;ALLÉE VICTOR HUGO;87185;[0.616936, 44.199535];;FRS33EMB333212;FR*SOD*E*SIGE*395*1*1*_;;;;;;;;;;;;;;;;;;;187103;2021-08-12;;;;2023-08-05T07:09:05.203000+00:00;;02cc17f4-4f21-4c41-8cbe-e23aab5cd221;;0.618712;44.400085;24450;Antibes;; +;Keybas - ITAL AUTO 87;824255509;;;;;FOUGERES SUR BIEVRE 17065 - Rue Aimable Quenioux;FRSIGPSIGE3921;FR*SOD*S*SIGE*239*1*_*_;AGEN - RUE DE SEVIN;;RUE DE LOR MÉTÉ;87014;[0.130918, 44.435215];;FRS33EMB333211;FR*SOD*E*SIGE*396*1*2*_;;;;;;;;;;;;;;;;;;;191070;2020-07-14;;;;2023-08-05T07:09:04.867000+00:00;;6c978f36-cd2f-4f69-b01f-81ffa6bb394b;;0.513095;44.206848;24490;Péone;; +;Kia - Delta Savoie;431559483;;;;;MONTOIRE SUR LE LOIR 4704 - Place Clémenceau;FRSIGPSIGE3951;FR*SOD*S*SIGE*240*1*_*_;TOMBEBOEUF - PLACE DU BASKET;;RUE DE LA DIVISION LECLERC;87152;[0.618712, 44.192516];;FRS33EMB331712;FR*SOD*E*SIGE*396*1*1*_;;;;;;;;;;;;;;;;;;;189698;2020-08-07;;;;2023-08-05T07:09:01.720000+00:00;;7aa069bf-111c-47d5-9896-152e343f91c1;;0.611923;44.398441;24700;Gars;; +;Kia SFB;385279609;;;;;Nesle-Normandeuse;FRSIGPSIGE3941;FR*SOD*S*SIGE*242*1*_*_;AGEN - PLACE FALLIERES;;ALLÉE DE LA SOLOGNE;87028;[0.513095, 44.225597];;FRS33EMB331611;FR*SOD*E*SIGE*397*1*1*_;;;;;;;;;;;;;;;;;;;220121;2020-05-12;;;;2023-08-05T07:09:01.260000+00:00;;67009d9f-281d-473c-83c0-10cb2b2b2dd6;;0.805496;44.503887;24190;Valbonne;; +;Kon Tiki Riviera Villages;809313760;;;;;MAVES 4706 - Rue du Cèdre;FRSIGPSIGE4051;FR*SOD*S*SIGE*218*1*_*_;SAMAZAN - PARKING PARCELLE EAUX PLUVIALE;;ROUTE DE VILLEBON;87097;[0.611923, 44.203743];;FRS33EMB336512;FR*SOD*E*SIGE*397*1*2*_;;;;;;;;;;;;;;;;;;;190125;2020-07-30;;;;2023-08-05T07:09:00.923000+00:00;;c01e7ee2-86fa-4750-9b61-4ed685ee533a;;0.619786;44.134975;78690;Saint-Auban;; +;LS Group Conflans-Sainte-Honorine public;338773492;;;;;MUR DE SOLOGNE 4709 - Place de la Poste;FRSIGPSIGE4031;FR*SOD*S*SIGE*243*1*_*_;AGEN - PIERRE DE COUBERTIN;;RUE DU CLOS BOUQUET;87051;[0.805496, 44.396168];;FRS33EMB331511;FR*SOD*E*SIGE*398*1*1*_;;;;;;;;;;;;;;;;;;;211984;2020-05-11;;;;2023-08-05T07:09:00.089000+00:00;;4e1fd2cd-f492-4d5f-9aba-1833bace2652;;0.586944;44.498611;78610;Sauze;; +;La Bonne Pointure;502997935;;;;;VINEUIL 4711 - Place Gaspard Imbert;FRSIGPSIGE4011;FR*SOD*S*SIGE*244*1*_*_;SAINT-HILAIRE DE LUSIGNAN - PLACE DE LA MAIRIE;;RUE DU DOCTEUR MORERE;87002;[0.619786, 44.206921];;FRS33EMB331011;FR*SOD*E*SIGE*399*1*1*_;;;;;;;;;;;;;;;;;;;15407669990044;2020-05-09;;;;2023-08-05T07:08:59.725000+00:00;;ad8fb14f-2c7c-4b5b-af17-21e992fe2b0b;;0.619894;44.501667;78125;Cannes;; +;LS Group Saint Germain en Laye public;889299442;;;;;BROU - route de Chartres (intermarché) - 134902;FRSIGPSIGE4021;FR*SOD*S*SIGE*245*1*_*_;AGEN - GENERAL DE GAULLE - GRAND CAFE FOY;;AVENUE STALINGRAD;87001;[0.586944, 44.400085];;FRS33EMB331012;FR*SOD*E*SIGE*391*1*2*_;;;;;;;;;;;;;;;;;;;15451664201051;2020-10-23;;;;2023-08-05T07:08:59.076000+00:00;;6a81494a-2a94-4cb0-a837-31759fe65e6c;;0.591341;44.496666;78730;Mandelieu-la-Napoule;; +;LS Group St Malo public;813050820;;;;;MAISON DES VINS RH CH STATION 2;FRSIGPSIGE4041;FR*SOD*S*SIGE*246*1*_*_;SAINTE SYLVESTRE SUR LOT - PARKING PLACE DU LOT;;CHEMIN DE LA GUY ENTRÉE STADE;87059;[0.619894, 44.206848];;FRS33EMB33912;FR*SOD*E*SIGE*399*1*2*_;;;;;;;;;;;;;;;;;;;205594;2020-05-07;;;;2023-08-05T07:08:58.427000+00:00;;6504195a-52a0-4ea6-8d65-49b083a5299f;;0.163333;44.507633;78120;Mouans-Sartoux;; +;LS Group Vernouillet public;842369456;;;;;BORNE CAMPING LE RIVAGE;FRSIGPSIGE4131;FR*SOD*S*SIGE*248*1*_*_;AGEN - MONSEIGNEUR POUZET - COTE CATHEDRALE;;RUE DU GROS CHÊNE;87040;[0.591341, 44.398441];;FRS33EMB33911;FR*SOD*E*SIGE*400*1*2*_;;;;;;;;;;;;;;;;;;;219480;2020-04-13;;;;2023-08-05T07:08:58.146000+00:00;;a465f497-c49a-4d30-97bb-32613555a6a4;;0.34265;44.500938;78660;Biot;; +;LS PROXI PUNAAUIA 1;497795005;;;;;ABB Office du tourisme;FRSIGPSIGE4111;FR*SOD*S*SIGE*249*1*_*_;SAINTE LIVRADE SUR LOT - PARKING GENDARMERIE;;RUE DU RELAIS DE POSTE;87011;[0.163333, 44.503887];;FRS33EMB33811;FR*SOD*E*SIGE*400*1*1*_;;;;;;;;;;;;;;;;;;;187121;2020-04-10;;;;2023-08-05T07:08:57.822000+00:00;;8a5cf00f-0b65-42fe-8d5a-3d211e89e9c1;;0.168611;44.190453;78830;Mougins;; +;LS PROXI TARAVAO 1;750938722;;;;;Roanne;FRSIGPSIGE4151;FR*SOD*S*SIGE*232*1*_*_;AGEN - MONSEIGNEUR POUZET - COTE CARNOT;;JACQUES BREL;87161;[0.34265, 44.134975];;FRS33EMB33812;FR*SOD*E*SIGE*401*1*2*_;;;;;;;;;;;;;;;;;;;199174;2020-04-14;;;;2023-08-05T07:08:57.103000+00:00;;67b1fe5c-93d5-4be6-886a-7ea877491868;;0.169167;44.192799;78720;La Roquette-sur-Siagne;; +;LSB Martillac;409596244;;;;;DANGEAU - Rue de Brou - 129205;FRSIGPSIGE4141;FR*SOD*S*SIGE*231*1*_*_;SAINTE LIVRADE SUR LOT - FAUBOURG GARDETTE;;AVENUE DU NOYER LAMBERT;87032;[0.168611, 44.498611];;FRS33EMB33711;FR*SOD*E*SIGE*401*1*1*_;;;;;;;;;;;;;;;;;;;279162;2020-04-11;;;;2023-08-05T07:08:56.750000+00:00;;c7f3e474-5c1d-41a1-9a9f-e27a78576c65;;0.167222;44.201248;13700;Puget-Théniers;; +;La Bastide de Grignan;332455427;;;;;SUPER U SABLE BORNE 3;FRSIGPSIGE5212;FR*SOD*S*SIGE*220*4*_*_;MARMANDE - PLACE DU 14 JUILLET;;ROUTE DU VAL DE COURCELLES;87187;[0.169167, 44.501667];;FRS33EMB33712;FR*SOD*E*SIGE*402*1*1*_;;;;;;;;;;;;;;;;;;;220119;2020-11-18;;;;2023-08-05T07:08:56.369000+00:00;;df8fd885-164f-4b45-b7db-dc662472b471;;0.15449;44.194824;13190;Daluis;; +;LS Group Rennes Alma public;490792348;;;;;AZAY LE RIDEAU 1202;FRSIGPSIGE5211;FR*SOD*S*SIGE*220*2*_*_;NERAC - MEDIATHEQUE - DROITE;;BOULEVARD DE BRETAGNE;87126;[0.167222, 44.496666];;FRS33EMB33611;FR*SOD*E*SIGE*402*1*2*_;;;;;;;;;;;;;;;;;;;226600;2020-09-18;;;;2023-08-05T07:08:55.914000+00:00;;a2a2765b-d1d8-4b39-bfc7-ceadd793432b;;0.177198;44.409389;13380;Puget-sur-Argens;; +;LS Group Mantes La Ville public;343172227;;;;;LUMELEC MAZEROLLES;FRSIGPSIGE5311;FR*SOD*S*SIGE*220*3*_*_;MARMANDE - PLACE DE LA LAICITE;;RUE PIERRE PICARD;87110;[0.15449, 44.507633];;FRS33EMB33612;FR*SOD*E*SIGE*403*1*1*_;;;;;;;;;;;;;;;;;;;188221;2021-06-02;;;;2023-08-05T07:08:55.439000+00:00;;80c70c66-1798-4cb8-b974-ea3757855567;;0.5974;44.132675;13420;Roquebrune-sur-Argens;; +;LS Group Dinar Public;200034460;;;;;LE HAUT DICK BORNE 1;FRSIGPSIGE6721;FR*SOD*S*SIGE*220*1*_*_;MARMANDE - PLACE DE LA COURONNE;;ALLÉE DE QUÉBEC;06071;[0.177198, 44.500938];;FRS33EMB33512;FR*SOD*E*SIGE*403*1*2*_;;;;;;;;;;;;;;;;;;;191063;2022-12-22;;;;2023-08-05T07:08:54.985000+00:00;;a20ae4bd-fe71-4e65-aaa6-edb90fcb96fb;;0.604511;44.179165;13600;Fréjus;; +;LS Group Dinan public;823893938;;;;;VIERZON - Gare - 148664;FRSIGPSIGE6561;FR*SOD*S*SIGE*220*5*_*_;MARMANDE - PLACE BIRAC;;CHEMIN DE LA BUTTE;06004;[0.5974, 44.190453];;FRS33EMB33511;FR*SOD*E*SIGE*404*1*2*_;;;;;;;;;;;;;;;;;;;193603;2023-01-08;;;;2023-08-05T07:08:54.711000+00:00;;1e4928ed-33cc-4e5a-9170-097bf2e521e6;;0.606086;44.630516;13820;Vallauris;; +;LS Group Granville public;409966223;;;;;VIERZON - Rue Eugène Pottier - 112365;FRSIGPSIGE6551;FR*SOD*S*SIGE*224*1*_*_;MARMANDE - PARKING PISCINE;;RUE DE LYVETTE;06094;[0.604511, 44.192799];;FRS33EMB33411;FR*SOD*E*SIGE*404*1*1*_;;;;;;;;;;;;;;;;;;;50013982017331;2022-11-04;;;;2023-08-05T07:08:54.480000+00:00;;8d4995e8-9613-4710-b59f-81ea5498286a;;0.603436;44.283054;13240;Villeneuve-Loubet;; +;LS Group Maintenon public;785032780;;;;;VIERZON - Parking Gaucherie - 109669;FRSIGPSIGE6641;FR*SOD*S*SIGE*225*1*_*_;MARMANDE - LA GRAVETTE;;ROUTE DE SACLAY;06063;[0.606086, 44.201248];;FRS33EMB33412;FR*SOD*E*SIGE*405*1*1*_;;;;;;;;;;;;;;;;;;;15448190972865;2022-12-12;;;;2023-08-05T07:08:54.107000+00:00;;47c6f356-06c6-4939-aa43-ec731722ec7b;;0.218302;44.13789;19250;Saint-Raphaël;; +;Le Jardin des Cevennes;824075683;;;;;RAW PARISGIVERNY 31;FRSIGPSIGE6611;FR*SOD*S*SIGE*226*1*_*_;LE PASSAGE - RUE ANATOLE FRANCE;;RUE DE BOUGAINVILLE;06152;[0.603436, 44.194824];;FRS33EMB33331;FR*SOD*E*SIGE*392*1*2*_;;;;;;;;;;;;;;;;;;;199168;2019-04-11;;;;2023-08-05T07:08:53.753000+00:00;;5845c638-8656-4ee9-9765-537a61046903;;0.659898;44.134117;19160;Coursegoules;; +;Les commerces de la Bastide;534148804;;;;;RUPT SUR MOSELLE - Rue Louis Courroy - 145479-CCS;FRSIGPSIGE6661;FR*SOD*S*SIGE*227*1*_*_;LE PASSAGE - PLACETTE RICARD;;RUE DE LA BUHOTERIE;06116;[0.218302, 44.409389];;FRS33EMB33332;FR*SOD*E*SIGE*391*1*1*_;;;;;;;;;;;;;;;;;;;50054069523585;2023-01-17;;;;2023-08-05T07:08:53.369000+00:00;;9e362d0f-7f60-46bf-a15c-eb8a480c1ec8;;0.298611;44.134357;19170;Le Cannet;; +;Leverrier;905250809;;;;;Vrigny | A4, Aire de Gueux;FRSIGPSIGE6631;FR*SOD*S*SIGE*228*1*_*_;LE PASSAGE - PLACE DE LA REPUBLIQUE;;RUE DU GRAND NOYER;06133;[0.659898, 44.132675];;FRS33EMB33312;FR*SOD*E*SIGE*36*1*1*_;;;;;;;;;;;;;;;;;;;169600;2020-09-15;;;;2023-08-05T07:08:52.974000+00:00;;45cb00eb-f527-4240-9f8c-582613cc9481;;0.459611;44.480385;19340;Saint-Cézaire-sur-Siagne;; +;Libera Hotel;479271074;;;;;BORNE ROCBARON BORNE 2;FRSIGPSIGE6621;FR*SOD*S*SIGE*229*1*_*_;LE PASSAGE - ALLEE DU LUXEMBOURG;;RUE DES BOURGUIGNONS;06029;[0.298611, 44.179165];;FRS33EMB33311;FR*SOD*E*SIGE*383*1*2*_;;;;;;;;;;;;;;;;;;;210223;2022-01-31;;;;2023-08-05T07:08:52.624000+00:00;;3c7c6e02-238e-4bab-b534-ea36fb206013;;0.763611;44.482044;19200;Touët-sur-Var;; +;Lidl DR02;301466967;;;;;REIMS - Place Alfred Brouette;FRSIGPSIGE6651;FR*SOD*S*SIGE*229*3*_*_;LE MAS DAGENAIS - PLACE DES FOSSES DE LA VILLE;;RUE PIPIEN;06079;[0.459611, 44.630516];;FRS33EMB33212;FR*SOD*E*SIGE*377*1*2*_;;;;;;;;;;;;;;;;;;;191064;2022-09-21;;;;2023-08-05T07:08:51.880000+00:00;;781f45f0-b787-426d-bb3e-0eb240837aa5;;0.333498;44.530869;67540;Pierrefeu;; +;Lidl DR03;072802689;;;;;BROU - place de la matrassière - 134890;FRSIGPSIGE6741;FR*SOD*S*SIGE*229*5*_*_;LAYRAC - RUE DU 19 MARS 1962;;PLACE SAINT FIACRE;06084;[0.763611, 44.283054];;FRS33EMB33211;FR*SOD*E*SIGE*378*1*1*_;;;;;;;;;;;;;;;;;;;158767;2022-11-08;;;;2023-08-05T07:08:51.534000+00:00;;4e2f77d8-5cba-4659-90a8-39ba776008bc;;0.335646;44.527367;43360;Thiéry;; +;Les cliniques universitaires Saint-Luc (CUSL);484429550;;;;;SOURS - Place du docteur Bouclet - 127349;FRSIGPSIGE6731;FR*SOD*S*SIGE*229*2*_*_;LAVARDAC - PLACE DU FOIRAIL;;RUE JOLIOT CURIE;06018;[0.333498, 44.13789];;FRS33EMB33112;FR*SOD*E*SIGE*378*1*2*_;;;;;;;;;;;;;;;;;;;209664;2022-07-27;;;;2023-08-05T07:08:51.220000+00:00;;23e5027c-343b-4c3c-b13a-4aee01d6885d;;0.335512;44.141376;28310;Sigale;; +;Les Hameaux de Lozère;879220374;;;;;TAISSY - 41147 - Rue du Saussais;FRSIGPSIGE6711;FR*SOD*S*SIGE*229*4*_*_;LAUZUN - AVENUE DE SCHLIERBACH;;PLACE DU MARCHÉ NEUF;06085;[0.335646, 44.134117];;FRS33EMB33111;FR*SOD*E*SIGE*379*1*1*_;;;;;;;;;;;;;;;;;;;209663;2019-11-21;;;;2023-08-05T07:08:50.840000+00:00;;9040664f-5d88-489c-9e0e-d5497d9b644d;;0.985842;44.602715;42440;Aiglun;; +;Les Jardins de Bakea;655781276;;;;;SILLERY - 41135 - Rue Nicolas Brulart;FRSIGPSIGE6761;FR*SOD*S*SIGE*229*6*_*_;LAROQUE TIMBAUT - PLACE DE LHOTEL DE VILLE;;RUE DES TEMPLIERS;06108;[0.335512, 44.134357];;FRS33EMB331212;FR*SOD*E*SIGE*379*1*2*_;;;;;;;;;;;;;;;;;;;209666;2020-09-08;;;;2023-08-05T07:08:50.549000+00:00;;2335e91b-8328-4143-8946-599f91c5b654;;0.943916;44.056007;42600;Massoins;; +;Les Pralets Gîtes ruraux et chambre d’hôtes Colette et Roland Sappey;802704445;;;;;DAME MARIE DES BOIS 1238;FRSIGPSIGE6751;FR*SOD*S*SIGE*230*1*_*_;NERAC - LE PIN;;RUE DU FROMENTEAU;06099;[0.985842, 44.480385];;FRS33EMB331211;FR*SOD*E*SIGE*380*1*1*_;;;;;;;;;;;;;;;;;;;209670;2019-10-29;;;;2023-08-05T07:08:50.165000+00:00;;1c229355-0bce-4ae7-ba1c-841154ed3ad5;;0.767955;44.056679;67260;Villars-sur-Var;; +;Les Rousses, Office de Tourisme;831530365;;;;;POGNY - 40935 - RD 54;FRSIGPSIGE5312;FR*SOD*S*SIGE*193*2*_*_;NERAC - FOIRAIL - GAUCHE;;PL. DU GÉNÉRAL LECLERC;06053;[0.943916, 44.482044];;FRS33EMB331311;FR*SOD*E*SIGE*380*1*2*_;;;;;;;;;;;;;;;;;;;209665;2019-10-14;;;;2023-08-05T07:08:49.798000+00:00;;b7b92821-74f8-46d6-adbf-631f4bd02ff5;;0.760762;44.519165;35500;Roquestéron;; +;Le Phénix;844623611;;;;;DREUX - Rue de la fontaine - 134368;FRSIGPSIGE6812;FR*SOD*S*SIGE*251*1*_*_;NERAC - FOIRAIL - DROITE;;RUE DU ROUILLON;83099;[0.767955, 44.530869];;FRS33EMB331312;FR*SOD*E*SIGE*381*1*1*_;;;;;;;;;;;;;;;;;;;176559;2019-10-03;;;;2023-08-05T07:08:49.527000+00:00;;f853274a-850e-45a3-bf0e-e1b2b0f008bb;;0.609229;44.391033;75001;Beuil;; +;Le Pal;434036653;;;;;La Chapelle-sur-Loire/A85;FRSIGPSIGE6811;FR*SOD*S*SIGE*8*1*_*_;MONTAYRAL - PLACE PIERRE CAUMONT;;ALLÉE DU PARC;83107;[0.760762, 44.527367];;FRS33EMB331412;FR*SOD*E*SIGE*381*1*2*_;;;;;;;;;;;;;;;;;;;191069;2019-11-22;;;;2023-08-05T07:08:49.248000+00:00;;fcae991f-874f-463e-a430-88a734456fc5;;0.359663;44.179935;70700;Pierlas;; +;Le Pan de Bois;509605184;;;;;RAW PARISGIVERNY 45;FRSIGPSIGE6911;FR*SOD*S*SIGE*2*1*_*_;MONSEMPRON-LIBOS - RUE DES ECOLES;;RUE SAINT NICOLAS;83061;[0.609229, 44.141376];;FRS33EMB331411;FR*SOD*E*SIGE*382*1*2*_;;;;;;;;;;;;;;;;;;;168899;2020-09-07;;;;2023-08-05T07:08:49.029000+00:00;;419844da-e5b0-4892-a96c-2d74dfc50570;;0.256566;44.442345;25770;Lieuche;; +;Le Mas Bazan;746951292;;;;;TROUY - Place du Marché - 188401;FRSIGPSIGE6912;FR*SOD*S*SIGE*3*1*_*_;MONFLANQUIN - PLACE YVES BALSEGUR;;RUE AMBROISE CROIZAT;06155;[0.359663, 44.602715];;FRS33EMB331512;FR*SOD*E*SIGE*382*1*1*_;;;;;;;;;;;;;;;;;;;214199;2020-05-18;;;;2023-08-05T07:08:48.703000+00:00;;7fa673c6-3585-49a4-9881-b96de9d5b23a;;0.261792;44.291206;13210;Rigaud;; +;Le Manaslu, Val Thorens;849442132;;;;;SANCHEVILLE - Place du Pâtis - 134359;FRSIGPSIGE7021;FR*SOD*S*SIGE*4*1*_*_;MONFLANQUIN - ABATTOIR;;RUE VALENTIN DES ORMEAUX;06161;[0.256566, 44.056007];;FRS33EMB333311;FR*SOD*E*SIGE*383*1*1*_;;;;;;;;;;;;;;;;;;;190020;2020-02-27;;;;2023-08-05T07:08:48.272000+00:00;;2c84da41-6192-4336-ba56-545a02d672fa;;0.032222;44.286812;38250;Auribeau-sur-Siagne;; +;Le Manoir de Gavrelle;451766877;;;;;SANCOINS - Place du champ de Foire - 117712;FRSIGPSIGE7022;FR*SOD*S*SIGE*5*1*_*_;MOIRAX - PLACE DU BRUILHOIS;;CENTRE COMMERCIAL LA LEZARDE;83118;[0.261792, 44.056679];;FRS33EMB333312;FR*SOD*E*SIGE*384*1*1*_;;;;;;;;;;;;;;;;;;;15487409495606;2019-08-06;;;;2023-08-05T07:08:47.876000+00:00;;768d849f-7a74-4ce0-a0d7-c596422bfae1;;0.30878;44.220078;62000;Grasse;; +;Le P'tit Cham;751925579;;;;;SANCERRE - Rempart des Abreuvoirs - 151321;FRSIGPSIGE7131;FR*SOD*S*SIGE*6*1*_*_;MIRAMONT DE GUYENNE - BOULEVARD ARISTIDE BRIAND;;RUE DE LARTISANAT;06050;[0.032222, 44.519165];;FRS33EMB333411;FR*SOD*E*SIGE*390*1*2*_;;;;;;;;;;;;;;;;;;;187109;2019-07-02;;;;2023-08-05T07:08:42.197000+00:00;;d442e7ba-af54-4782-a41d-1466632a67bc;;0.630348;44.221779;53000;Amirat;; +;Les Halles Milona;200082477;;;;;OUARVILLE - Rue de le République - 129076;FRSIGPSIGE7161;FR*SOD*S*SIGE*7*1*_*_;MEZIN - PLACE DU CLUB;;AV. DE LAUNAY BRETON;06030;[0.30878, 44.391033];;FRS33EMB333412;FR*SOD*E*SIGE*384*1*2*_;;;;;;;;;;;;;;;;;;;277587;2019-08-14;;;;2023-08-05T07:08:41.748000+00:00;;9793934e-cec9-4eba-87ec-5c50b3d793d2;;0.621467;44.447399;02400;Cipières;; +;Le Vésinet;809172166;;;;;ST MAURICE - Rue de Lorraine - 145495 - CCS;FRSIGPSIGE7121;FR*SOD*S*SIGE*157*1*_*_;MEZIN - PARKING PISCINE;;BD DE NORMANDIE;06118;[0.630348, 44.179935];;FRS33EMB335112;FR*SOD*E*SIGE*385*1*1*_;;;;;;;;;;;;;;;;;;;232619;2019-07-29;;;;2023-08-05T07:08:41.061000+00:00;;5d5021c6-1aca-406e-a0db-85b5db055c71;;0.274231;44.361179;34420;Saint-Antonin;; +;Leclerc Chambry;821842481;;;;;SAINT-JUST - Mairie - 150513;FRSIGPSIGE7141;FR*SOD*S*SIGE*9*1*_*_;MEILHAN SUR GARONNE - PLACE DE LHOTEL DE VILLE;;CENTRE COMMERCIAL VIV ERDRE LA BERANGERAIS;06143;[0.621467, 44.442345];;FRS33EMB335111;FR*SOD*E*SIGE*385*1*2*_;;;;;;;;;;;;;;;;;;;187100;2019-07-04;;;;2023-08-05T07:08:40.405000+00:00;;b78f2816-4923-464b-9043-0e934e3cd33e;;0.270507;44.360611;05560;Revest-les-Roches;; +;Leroy Merlin Monsoult;254901309;;;;;SONEPAR CONNECT CHATELLERAULT;FRSIGPSIGE7111;FR*SOD*S*SIGE*10*1*_*_;TONNEINS - RUE DUCOURNEAU;;CENTRE NORAUTO CC RÉGIONAL MONDEVILLE 2;06097;[0.274231, 44.291206];;FRS33EMB335211;FR*SOD*E*SIGE*386*1*2*_;;;;;;;;;;;;;;;;;;;15423588946802;2019-09-30;;;;2023-08-05T07:08:40.120000+00:00;;c0305946-47c6-4ffc-ad74-134fa0b12ef8;;0.552938;44.115276;95870;Toudon;; +;Les Ateliers de Marc K;840290183;;;;;Poitiers Jaunay-Clan;FRSIGPSIGE7151;FR*SOD*S*SIGE*11*1*_*_;BOE - RUE RIGOULET;;AV. DE LA VICTOIRE;06139;[0.270507, 44.286812];;FRS33EMB335212;FR*SOD*E*SIGE*386*1*1*_;;;;;;;;;;;;;;;;;;;191067;2019-09-20;;;;2023-08-05T07:08:39.285000+00:00;;fb45a65e-98ba-4014-bc63-e58cea5432e0;;0.554053;44.651669;33270;La Penne;; +;Les Belleville;452522204;;;;;VEAUGUES - Eglise - 200482;FRSIGPSIGE6521;FR*SOD*S*SIGE*12*1*_*_;CASSENEUIL - CHEMIN DE PASCALET;;LE BOTANIC 52 AV. DE LINGENFELD;06135;[0.552938, 44.220078];;FRS33EMB335311;FR*SOD*E*SIGE*387*1*2*_;;;;;;;;;;;;;;;;;;;219485;2019-09-17;;;;2023-08-05T07:08:38.914000+00:00;;9764137c-4c67-4c40-b28d-086fdce03797;;0.025985;44.397484;04120;Théoule-sur-Mer;; +;Les Comptoirs de la Bio Saint Genis;480339068;;;;;VALLENAY - Place Bascoulard - 117415;FRSIGPSIGE6511;FR*SOD*S*SIGE*13*1*_*_;DAMAZAN - SALLE DES FETES;;C.CIAL E.LECLERC AV. LÉONARD DE VINCI;06001;[0.554053, 44.221779];;FRS33EMB335312;FR*SOD*E*SIGE*387*1*1*_;;;;;;;;;;;;;;;;;;;181378;2019-06-24;;;;2023-08-05T07:08:38.545000+00:00;;f12cec6b-f7e3-45cd-abfe-d8256f4766cf;;0.378629;44.31319;04700;Le Rouret;; +;Les Frangins;310336367;;;;;VALLY SUR SAULDRE-Mairie-150315;FRSIGPSIGE6531;FR*SOD*S*SIGE*15*1*_*_;DAMAZAN - PARKING COVOITURAGE;;BD DES SPORTS;06082;[0.025985, 44.447399];;FRS33EMB335411;FR*SOD*E*SIGE*388*1*1*_;;;;;;;;;;;;;;;;;;;192178;2019-06-26;;;;2023-08-05T07:08:38.130000+00:00;;d59375cf-186b-407d-8cb1-ce4e402d700c;;0.376292;44.313465;51160;Châteauneuf-Grasse;; +;Les Granges de Bigose;015450596;;;;;S.U VAL DURANCE BORNE 1-2;FRSIGPSIGE6541;FR*SOD*S*SIGE*156*1*_*_;COLAYRAC - PLACE MAURICE TISSERAND;;PL. JOSEPHINE BAKER;06158;[0.378629, 44.361179];;FRS33EMB335412;FR*SOD*E*SIGE*388*1*2*_;;;;;;;;;;;;;;;;;;;15447612101685;2019-07-19;;;;2023-08-05T07:08:37.732000+00:00;;4c7d0b20-84db-4ccf-8f48-2561ab19f927;;0.7375;44.175274;27120;Gourdon;; +;Le Saltimbanque;716980297;;;;;CGED ALFORTVILLE;FRSIGPSIGE5422;FR*SOD*S*SIGE*166*1*_*_;COLAYRAC - PLACE DE LA MAIRIE;;AV. DU GÉNÉRAL DE GAULLE;06106;[0.376292, 44.360611];;FRS33EMB335512;FR*SOD*E*SIGE*389*1*1*_;;;;;;;;;;;;;;;;;;;15400289381887;2019-05-28;;;;2023-08-05T07:08:37.379000+00:00;;b3c9629e-d51d-41bf-a444-d86cd9c76a06;;0.591389;44.38361;67350;Caille;; +;Le Relais de l'Abbaye;810880088;;;;;Volvestre;FRSIGPSIGE5421;FR*SOD*S*SIGE*171*1*_*_;COCUMONT - PLACE DE LEGLISE;;QUAI DE LIMPÉRATRICE EUGÉNIE;06016;[0.7375, 44.115276];;FRS33EMB335511;FR*SOD*E*SIGE*389*1*2*_;;;;;;;;;;;;;;;;;;;187113;2019-07-05;;;;2023-08-05T07:08:36.947000+00:00;;d7823cb2-31db-44c3-9775-e48dd6271391;;0.493029;44.455635;59210;Andon;; +;Le Reverdi Villages Clubs Du Soleil;812067841;;;;;Vallée de la vire Gouvets;FRSIGPSIGE5811;FR*SOD*S*SIGE*170*1*_*_;CLAIRAC - PLACE VICOZE;;AV. DES MARÉCHAUX;06096;[0.591389, 44.651669];;FRS33EMB335611;FR*SOD*E*SIGE*390*1*1*_;;;;;;;;;;;;;;;;;;;190320;2021-04-02;;;;2023-08-05T07:08:36.646000+00:00;;a825fd2a-dc7a-4fdd-afd8-18dffe8b86c8;;0.088177;44.187102;51530;Le Bar-sur-Loup;; +;Le Tholy;511679896;;;;;Aire des Crêts Blancs;FRSIGPSIGE5812;FR*SOD*S*SIGE*169*1*_*_;CLAIRAC - PARKING TIVOLI;;AV. DE LA RÉPUBLIQUE;06076;[0.493029, 44.397484];;FRS33EMB335612;FR*SOD*E*SIGE*405*1*2*_;;;;;;;;;;;;;;;;;;;210684;2021-04-19;;;;2023-08-05T07:08:36.233000+00:00;;8e442708-0e25-4b2a-905c-b4447e5a02e0;;0.090439;44.204935;90160;Bouyon;; +;Le Val d'Ajol;401833322;;;;;NONSARD LAMARCHE - 66378 - Base Loisirs de Madine;FRSIGPSIGE5911;FR*SOD*S*SIGE*168*1*_*_;CAUDECOSTE - ROUTE DE GIMBREDE;;IMP. FLORIAN DE KERGORLAY;06101;[0.088177, 44.31319];;FRS33EMB335711;FR*SOD*E*SIGE*406*1*1*_;;;;;;;;;;;;;;;;;;;187114;2020-04-06;;;;2023-08-05T07:08:35.940000+00:00;;a459eb8b-40cf-40f1-ae2b-ae3220a28d06;;0.689687;44.5904;57990;Séranon;; +;Keolis Bourgogne;330816877;;;;;ARVILLE 4926;FRSIGPSIGE5912;FR*SOD*S*SIGE*167*1*_*_;CASTILLONNES - PLACE JASMIN;;QUAI DE LA TOUQUES;06007;[0.090439, 44.313465];;FRS33EMB335712;FR*SOD*E*SIGE*406*1*2*_;;;;;;;;;;;;;;;;;;;187115;2020-04-09;;;;2023-08-05T07:08:35.508000+00:00;;c6723047-5ec7-4cb1-81e7-736334a992cb;;0.890833;44.54946;61000;Roquefort-les-Pins;; +;Intermarché Aulnay-Sous-Bois;339625477;;;;;Longué la Couaille;FRSIGPSIGE6012;FR*SOD*S*SIGE*165*1*_*_;CASTELMORON SUR LOT - PARKING BRANSOUILLE;;RUE MIRABEAU PROLONGÉE;06069;[0.689687, 44.175274];;FRS33EMB335812;FR*SOD*E*SIGE*33*3*1*_;;;;;;;;;;;;;;;;;;;187116;2020-04-08;;;;2023-08-05T07:08:34.818000+00:00;;3e6a91f1-4d26-4eec-bbc0-84b97290f150;;0.293672;44.290688;67670;Tourrettes-sur-Loup;; +;Intermarché Bormes-Les-Mimosas;881418917;;;;;Quevilloncourt;FRSIGPSIGE6011;FR*SOD*S*SIGE*158*1*_*_;CASTELJALOUX - PLACE JOSE BES;;RUE DU BOIS BELIN;06002;[0.890833, 44.38361];;FRS33EMB335811;FR*SOD*E*SIGE*31*3*1*_;;;;;;;;;;;;;;;;;;;15448914561840;2023-06-06;;;;2023-08-05T07:08:34.347000+00:00;;5c6689b7-00c3-446a-93ea-9583cb723d2c;;0.795556;44.675556;59267;Gréolières;; +;Intermarché Bégard;402923643;;;;;RAW PARISGIVERNY 67;FRSIGPSIGE6111;FR*SOD*S*SIGE*164*1*_*_;CASTELJALOUX - PLACE DE LEGLISE;;AV. BARTHÉLÉMY BUYER;06041;[0.293672, 44.455635];;FRS33EMB335911;FR*SOD*E*SIGE*31*4*1*_;;;;;;;;;;;;;;;;;;;224620;2023-06-08;;;;2023-08-05T07:08:34.048000+00:00;;052579b9-69f4-4301-ba07-d5a5568371b1;;0.611846;44.448612;68600;Opio;; +;Intermarché Canohes;301192464;;;;;SONEPAR BELFORT CONNECT;FRSIGPSIGE6112;FR*SOD*S*SIGE*163*1*_*_;CASTELCULIER - RUE LESBOULBENES;;BD EUGÈNE CORNUCHE;06115;[0.795556, 44.187102];;FRS33EMB335912;FR*SOD*E*SIGE*31*5*1*_;;;;;;;;;;;;;;;;;;;219484;2018-12-11;;;;2023-08-05T07:08:28.707000+00:00;;bd6cba10-00f4-42b8-94f4-012f57d2a218;;1.01301;44.245251;71000;Pégomas;; +;Intermarché Chalus;834246738;;;;;Couleuvre;FRSIGPSIGE6211;FR*SOD*S*SIGE*162*1*_*_;DAUSSE - PLACE DU 8 MAI 1945;;RUE ROBERT FOSSORIER;06100;[0.611846, 44.204935];;FRS33EMB336011;FR*SOD*E*SIGE*31*6*1*_;;;;;;;;;;;;;;;;;;;50074615551477;2019-03-05;;;;2023-08-05T07:08:28.286000+00:00;;7dca8f06-d925-4327-a2ea-9c53e56c6bbe;;0.53505;44.238674;42300;Le Mas;; +;Intermarché Clermont-l'Hérault;513254920;;;;;TERRA_54_013;FRSIGPSIGE6212;FR*SOD*S*SIGE*160*1*_*_;GONTAUD DE NOGARET - RUE DES DOCTEURS DE SAMONDES;;TROUVILLE-DEAUVILLE PL. LOUIS ARMAND;06141;[1.01301, 44.5904];;FRS33EMB336012;FR*SOD*E*SIGE*31*1*1*_;;;;;;;;;;;;;;;;;;;75698541;2017-08-03;;;;2023-08-05T07:08:27.877000+00:00;;eacd1b81-b20f-4c88-8fc5-1f91315d76e6;;0.267636;44.222729;07110;Escragnolles;; +;Intermarché - Latour-Bas-Elne;338980675;;;;;SDS BORNE 2;FRSIGPSIGE6361;FR*SOD*S*SIGE*159*1*_*_;PUYMIROL - 2 PLACE DU MARECHAL LECLERC;;RUE DES LILAS;06093;[0.53505, 44.54946];;FRS33EMB336111;FR*SOD*E*SIGE*31*2*1*_;;;;;;;;;;;;;;;;;;;24520984057371;2019-12-18;;;;2023-08-05T07:08:27.578000+00:00;;b1a73f86-ac8e-4049-a7e4-78d86004b790;;0.181111;44.16872;84870;Spéracèdes;; +;Keolis Beaune;493425136;;;;;Brou;FRSIGPSIGE6341;FR*SOD*S*SIGE*16*1*_*_;AGEN - 32 AVENUE DE GAULLE;;BD VICTOR BORDIER;06138;[0.267636, 44.290688];;FRS33EMB336112;FR*SOD*E*SIGE*32*5*1*_;;;;;;;;;;;;;;;;;;;04223600041119;2018-11-27;;;;2023-08-05T07:08:27.283000+00:00;;834083a0-f0e8-4407-bcfb-3d505354a95a;;0.159444;44.442253;13460;Le Tignet;; +;Ingerop;877596866;;;;;REIMS - 49177 - Parking St Remi Place Lenoncourt;FRSIGPSIGE6351;FR*SOD*S*SIGE*17*1*_*_;SAUVETERRE LA LEMANCE - RUE DE LA GARE;;AV. DE TOURS;06112;[0.181111, 44.675556];;FRS33EMB336211;FR*SOD*E*SIGE*32*1*1*_;;;;;;;;;;;;;;;;;;;25700000330284;2019-06-13;;;;2023-08-05T07:08:26.928000+00:00;;d368b7a6-4a8b-4958-be13-df1c2b590aee;;0.640469;44.301109;07170;Saint-Paul-de-Vence;; +;Institut Vermorel;;;;;;Asia Automotive;FRSIGPSIGE6331;FR*SOD*S*SIGE*188*3*_*_;MONBAHUS - RUE DE LEGLISE;;RUE MENDÈS FRANCE;06038;[0.159444, 44.448612];;FRS33EMB336212;FR*SOD*E*SIGE*32*3*1*_;;;;;;;;;;;;;;;;;;;03207602402378;2018-12-10;;;;2023-08-05T07:08:26.625000+00:00;;6a50c8dd-975c-4b81-b369-7ca2cf8e087b;;0.644147;44.258472;07580;Peymeinade;; +;Intergest;;;;;;Labastide-Saint-Pierre | Avenue du Pech;FRSIGPSIGE6311;FR*SOD*S*SIGE*185*4*_*_;DAMAZAN - AVENUE DE LA CONFLUENCE;;LE SEUIL A. DU SOLEIL;06068;[0.640469, 44.245251];;FRS33EMB336312;FR*SOD*E*SIGE*32*2*1*_;;;;;;;;;;;;;;;;;;;19452821908155;2018-12-13;;;;2023-08-05T07:08:26.407000+00:00;;99ef8f54-a001-4333-929d-9c45f2c43202;;0.347643;44.50922;74300;Collongues;; +;Intermarché - Aups;;;;;;LA GUERCHE - Parking NETTO - 146807;FRSIGPSIGE6321;FR*SOD*S*SIGE*186*2*_*_;DURAS - PLACE DE LUNION;;AV. PIERRE MENDÈS FRANCE;06028;[0.644147, 44.238674];;FRS33EMB336311;FR*SOD*E*SIGE*32*4*1*_;;;;;;;;;;;;;;;;;;;17157018711766;2019-06-28;;;;2023-08-05T07:08:24.886000+00:00;;bcff5539-4d08-48aa-a0da-837447e769ba;;0.577217;44.160133;85000;Cabris;; +;Intermarché Donzy;;;;;;Shell Aire de Haras HW;FRSIGPSIGE6461;FR*SOD*S*SIGE*186*5*_*_;FOURQUES SUR GARONNE - BOURG;;RDPT ROCCASECCA;06003;[0.347643, 44.222729];;FRS33EMB336411;FR*SOD*E*SIGE*32*6*1*_;;;;;;;;;;;;;;;;;;;7815328551;2017-12-21;;;;2023-08-05T07:08:24.129000+00:00;;8e5dc7f2-78ce-4c8d-a73d-495d25a34e02;;0.625405;44.170858;55430;La Colle-sur-Loup;; +;Intermarché Draguignan;;;;;;Pays de Brives Sud;FRSIGPSIGE6441;FR*SOD*S*SIGE*186*4*_*_;FOULAYRONNES - ZAE FOULAYRONNES;;AV. DAUNIS;06010;[0.577217, 44.16872];;FRS33EMB336412;FR*SOD*E*SIGE*33*1*1*_;;;;;;;;;;;;;;;;;;;78165854123;2017-09-04;;;;2023-08-05T07:08:23.769000+00:00;;35e7c498-7b09-48c5-8b11-abf67a92d0f6;;0.340556;44.170834;57100;Saint-Vallier-de-Thiey;; +;Intermarché Le Passage;;;;;;RAW PARISGIVERNY 72;FRSIGPSIGE6451;FR*SOD*S*SIGE*186*1*_*_;FOULAYRONNES - PLACE DU MARCHE;;RUE FRANKLIN;06022;[0.625405, 44.442253];;FRS33EMB336511;FR*SOD*E*SIGE*407*1*2*_;;;;;;;;;;;;;;;;;;;24578002796083;2017-08-02;;;;2023-08-05T07:08:23.049000+00:00;;0739aa02-cfa5-4f95-90f0-851f5b12afaf;;0.299375;44.506062;22120;Marcq-en-Barœul;; +;Intermarché Les Andélys;;;;;;Pays de Brives Nord;FRSIGPSIGE6431;FR*SOD*S*SIGE*186*3*_*_;FEUGAROLLES - PARKING DE LA MAIRIE;;RUE CHARLES FABRY PARKING INTERMARCHÉ;06134;[0.340556, 44.301109];;FRS33EMB335012;FR*SOD*E*SIGE*33*4*1*_;;;;;;;;;;;;;;;;;;;24510998441502;2017-08-23;;;;2023-08-05T07:08:21.440000+00:00;;4ddb0310-e12d-42e4-8295-6651ce54492d;;0.14084;44.181389;51460;Masseret;; +;Intermarché Lessay;;;;;;LAXOU - Centre commercial la cascade - 187763;FRSIGPSIGE6421;FR*SOD*S*SIGE*186*7*_*_;ESTILLAC - PLACE DE LA MAIRIE;;RUE BERNART DE VENTADOUR;06105;[0.299375, 44.258472];;FRS33EMB335011;FR*SOD*E*SIGE*33*2*1*_;;;;;;;;;;;;;;;;;;;50047694776082;2017-10-04;;;;2023-08-05T07:08:21.031000+00:00;;5069eb62-939d-47e2-bf2f-19331e7000c6;;0.62705;44.638332;78750;Aubazines;; +;Intermarché Lugrin;;;;;;NANCY - Parking mail de l'horloge - 187727;FRSIGPSIGE6411;FR*SOD*S*SIGE*187*2*_*_;CASSENEUIL - AVENUE DE LA GARE;;RUE DE LA CONRAIE;06148;[0.14084, 44.50922];;FRS33EMB334912;FR*SOD*E*SIGE*33*5*1*_;;;;;;;;;;;;;;;;;;;24302170609490;2018-07-24;;;;2023-08-05T07:08:19.992000+00:00;;281d11a6-e6de-49a3-8ace-28b367e1e94c;;0.608545;44.416508;18000;Uzerche;; +;Intermarché Hyper Aubenas et Drive;;;;;;LANEUVEVILLE - Parking de la piscine - 187442;FRSIGPSIGE3731;FR*SOD*S*SIGE*187*3*_*_;AIGUILLON - RUE DE VISE;;RUE DE THANN;06070;[0.62705, 44.160133];;FRS33EMB334112;FR*SOD*E*SIGE*35*5*1*_;;;;;;;;;;;;;;;;;;;50078810234576;2019-03-14;;;;2023-08-05T07:08:18.801000+00:00;;b36f2719-58ca-4d67-a59b-0ec20d16f6a5;;0.655556;44.277363;67500;Tulle;; +;Intermarché Guillestre;;;;;;Bourges Sainte Thorette;FRSIGPSIGE3621;FR*SOD*S*SIGE*187*4*_*_;BUZET SUR BAISE - PARKING DU MARCHE;;RTE DE PARTHENAY;06089;[0.608545, 44.170858];;FRS33EMB333511;FR*SOD*E*SIGE*35*2*1*_;;;;;;;;;;;;;;;;;;;50018319904371;2022-03-24;;;;2023-08-05T07:08:18.439000+00:00;;11061fd7-62b1-461c-8489-1b82a222f910;;0.216508;44.408772;68150;Nespouls;; +;Intermarché La Gorgue;;;;;;Fontanelles;FRSIGPSIGE7221;FR*SOD*S*SIGE*187*5*_*_;MARMANDE - ROND POINT DE THIVRAS;;AV. DES LANDIERS;06090;[0.655556, 44.170834];;FRS33EMB333512;FR*SOD*E*SIGE*35*3*1*_;;;;;;;;;;;;;;;;;;;031536300605;2022-03-23;;;;2023-08-05T07:08:18.136000+00:00;;01faaee8-0d9e-42a6-824e-7817640c9ec4;;0.663889;44.063637;68800;Allassac;; +;Icade - Rungis public;;;;;;RAW PARISGIVERNY 41;FRSIGPSIGE39812;FR*SOD*S*SIGE*187*1*_*_;BOE - PARKING DE LA MAIRIE;;ZAC LES PORTES DE L ALLIER AVERMES;06081;[0.216508, 44.506062];;FRS33EMB333611;FR*SOD*E*SIGE*35*4*1*_;;;;;;;;;;;;;;;;;;;50080257653502;2022-02-17;;;;2023-08-05T07:08:17.787000+00:00;;680bdefc-9e7b-40ff-b718-0c75f64b834c;;0.745556;44.405212;68520;Corrèze;; +;Icade - PdP public - Géomètres + Bateliers;;;;;;BORNE HYPER U STATION 2;FRSIGPSIGE39211;FR*SOD*S*SIGE*188*5*_*_;LE PASSAGE - BEAUREGARD - AVENUE DES PYRENEES;;RTE DU FIEF CORDELIER;06058;[0.663889, 44.181389];;FRS33EMB333612;FR*SOD*E*SIGE*35*1*1*_;;;;;;;;;;;;;;;;;;;50091837090589;2022-03-18;;;;2023-08-05T07:08:17.492000+00:00;;6c07222c-623e-4035-a878-b06f545bd3b6;;0.670505;44.295475;05000;Noailles;; +;Icade - PdP public - Avenue des arrimeurs;;;;;;Nemours;FRSIGPSIGE39312;FR*SOD*S*SIGE*188*6*_*_;BOE - DOJO;;AV. GEORGES DUHAMEL;06137;[0.745556, 44.638332];;FRS33EMB333712;FR*SOD*E*SIGE*416*1*2*_;;;;;;;;;;;;;;;;;;;50047846636027;2022-02-16;;;;2023-08-05T07:08:17.178000+00:00;;097f7073-5fd3-4814-956d-af523823fb16;;0.741111;44.295952;71100;Sainte-Féréole;; +;Incinéris Faulquemont;;;;;;SONEPAR ALDIANCE 1;FRSIGPSIGE39311;FR*SOD*S*SIGE*188*2*_*_;VIRAZEIL - AIRE DE COVOITURAGE;;AV. FAVARD;06140;[0.670505, 44.416508];;FRS33EMB333711;FR*SOD*E*SIGE*36*6*1*_;;;;;;;;;;;;;;;;;;;50029323478294;2022-04-04;;;;2023-08-05T07:08:16.745000+00:00;;8d9ff744-099c-4e46-89d4-de051f32c1ab;;0.882228;44.385929;59120;Sarran;; +;Inforomu;;;;;;Sarthe Sud;FRSIGPSIGE39411;FR*SOD*S*SIGE*188*4*_*_;BOE - CHEMIN DES ECOLIERS;;RUE ALBERT EINSTEIN;06128;[0.741111, 44.638332];;FRS33EMB333812;FR*SOD*E*SIGE*36*4*1*_;;;;;;;;;;;;;;;;;;;50020060817812;2022-08-24;;;;2023-08-05T07:08:16.341000+00:00;;68078fd8-92e5-480f-b3b5-10053b67aa07;;0.706495;44.186966;69490;Gimel-les-Cascades;; +;Intermarché Noisy le Grand;;;;;;Varennes-Changy | A77, Aire du Jardin des Arbres;FRSIGPSIGE39412;FR*SOD*S*SIGE*188*1*_*_;VILLEREAL - PARKING ATELIER TECHNIQUE;;RUE DU GÉNÉRAL METMAN;06095;[0.882228, 44.277363];;FRS33EMB333811;FR*SOD*E*SIGE*36*3*1*_;;;;;;;;;;;;;;;;;;;50052616553687;2022-10-25;;;;2023-08-05T07:08:15.962000+00:00;;e04e68c5-e922-472b-839d-519dd0a41c10;;0.650561;44.40205;43700;Turenne;; +;Joris Ide Saint-Caradec;;;;;;644a2ea935cf6d6b98b2a0b7;FRSIGPSIGE39512;FR*SOD*S*SIGE*190*1*_*_;BIAS - PARKING DU DOJO;;RUE DU FOYER;06045;[0.706495, 44.408772];;FRS33EMB333912;FR*SOD*E*SIGE*30*6*1*_;;;;;;;;;;;;;;;;;;;50031199941407;2022-09-05;;;;2023-08-05T07:08:10.166000+00:00;;c2801975-0eae-47bc-a987-f10e0c57dfa3;;0.707673;44.18615;77000;Ussac;; +;Joris Ide Bressuire;;;;;;E.LECLERC BORNE 2 DC;FRSIGPSIGE39511;FR*SOD*S*SIGE*191*1*_*_;VILLEREAL - BOULEVARD ALPHONSE DE POITIERS;;CENTRE COMMERCIAL LECLERC RTE DE PORNIC RUE ORDRONNEAU;06026;[0.650561, 44.063637];;FRS33EMB333911;FR*SOD*E*SIGE*30*5*1*_;;;;;;;;;;;;;;;;;;;50043938854688;2023-03-21;;;;2023-08-05T07:08:09.037000+00:00;;b131c777-a76d-463d-a712-f9723bb1a6e4;;0.339443;44.190346;88190;Varetz;; +;Joris Ide Centre-Baule;;;;;;St AMAND-MONTROND - Cours Manuel 2 - 171693;FRSIGPSIGE39612;FR*SOD*S*SIGE*192*1*_*_;BEAUVILLE - PLACE CARRE;;ZA DE LA HAIE PASSART;06044;[0.707673, 44.405212];;FRS33EMB334012;FR*SOD*E*SIGE*30*2*1*_;;;;;;;;;;;;;;;;;;;50074035865841;2023-08-02;;;;2023-08-05T07:08:08.550000+00:00;;42ff90d6-34e5-4557-8702-ba73cbce89d6;;0.07137;44.536303;89100;Donzenac;; +;Joris Ide Onnaing;;;;;;Diges;FRSIGPSIGE39611;FR*SOD*S*SIGE*193*1*_*_;VILLENEUVE SUR LOT - PARKING REPUBLIQUE;;NORAUTO, RUE DU LEVANT;06130;[0.339443, 44.295475];;FRS33EMB334011;FR*SOD*E*SIGE*30*1*1*_;;;;;;;;;;;;;;;;;;;5004950546949;2023-05-31;;;;2023-08-05T07:08:08.056000+00:00;;31666342-3da7-4d2b-a85c-4c52e62f4871;;0.102908;44.18623;68000;Malemort;; +;Joris Ide Auvergne;;;;;;BENGY-sur-Craon - Rte de Bourges - 186608;FRSIGPSIGE39711;FR*SOD*S*SIGE*185*1*_*_;ASTAFFORT - PARKING PLATEAU;;PARC DACTIVITE DE L OSERAIE;59378;[0.07137, 44.295952];;FRS33EMB334111;FR*SOD*E*SIGE*407*1*1*_;;;;;;;;;;;;;;;;;;;7.26316E+13;2022-07-01;;;;2023-08-05T07:08:07.506000+00:00;;f9c3d814-f25a-4d1b-a11a-0cb21098ad05;;0.669306;48.665501;57050;Larche;; +;Jarville La Malgrange;;;;;;Labenne Ouest;FRSIGPSIGE39712;FR*SOD*S*SIGE*185*3*_*_;VILLENEUVE SUR LOT - PARKING DE LA POSTE;;NORAUTO, AVENUE GEORGES DURAND;19129;[0.102908, 44.385929];;FRS33EMB334211;FR*SOD*E*SIGE*408*1*1*_;;;;;;;;;;;;;;;;;;;5.00655E+13;2023-02-24;;;;2023-08-05T07:08:06.907000+00:00;;b426c1e2-fb01-478e-b739-d9d48dc5669a;;0.999401;48.73402;56600;Beynat;; +;Karrgreen;;;;;;Labenne Est;FRSIGPSIGE39811;FR*SOD*S*SIGE*185*2*_*_;AIGUILLON - PARKING AVENUE JF PONCET;;NORAUTO, RUE DE LA RATERIE, ZONE DAMÉNAGEMENT COMMERCIALE DU VIVIER,;19013;[0.669306, 44.186966];;FRS33EMB334911;FR*SOD*E*SIGE*408*1*2*_;;;;;;;;;;;;;;;;;;;5.00587E+13;2022-01-21;;;;2023-08-05T07:08:06.503000+00:00;;54e984ae-0f32-4c3b-b8b4-2473bf3797cd;;0.676419;48.632023;25000;Seilhac;; +;KS Motorcycles;;;;;;SAS AUNAUDIS BORNE 1;FRSIGPSIGE39911;FR*SOD*S*SIGE*185*5*_*_;CASTELJALOUX - LAC DE CLARENS;;RUE AMIRAL ROMAIN DESFOSSES;19276;[0.999401, 44.40205];;FRS33EMB334212;FR*SOD*E*SIGE*409*1*2*_;;;;;;;;;;;;;;;;;;;7.26313E+13;2022-01-04;;;;2023-08-05T07:08:06.132000+00:00;;dae910b0-47d2-429e-9794-146b5b0512f8;;0.656492;48.703136;57600;Naves;; +;KIA Macon;;;;;;SAS AUNAUDIS BORNE 2;FRSIGPSIGE39112;FR*SOD*S*SIGE*19*1*_*_;BOUGLON - PARKING AIRE DE REPOS;;PARC D ACTIVITES DU CLOS DE LA LANDE;19272;[0.676419, 44.18615];;FRS33EMB334312;FR*SOD*E*SIGE*409*1*1*_;;;;;;;;;;;;;;;;;;;5.00332E+13;2022-01-10;;;;2023-08-05T07:08:05.862000+00:00;;42028a86-e790-40ed-82f2-afa510a89201;;0.624025;48.732231;51100;Égletons;; +;KFC - Armentières;;;;;;VANDOEUVRE-Parking relais du CHU Brabois - 187881;FRSIGPSIGE39912;FR*SOD*S*SIGE*20*1*_*_;BON ENCONTRE - SQUARE BIR HAKEIM;;AV. DE TALLINN;19147;[0.656492, 44.190346];;FRS33EMB334311;FR*SOD*E*SIGE*410*1*2*_;;;;;;;;;;;;;;;;;;;5.00251E+13;2022-03-14;;;;2023-08-05T07:08:05.463000+00:00;;97213130-2d4e-4106-a3da-75f771733d41;;0.67219;48.730614;25220;Arnac-Pompadour;; +;Joseph Perrier;;;;;;Aire de Saint-Nazaire les Eymes;FRSIGPSIGE40012;FR*SOD*S*SIGE*21*1*_*_;TOURNON DAGENAIS - PARKING DU CREDIT AGRICOLE;;ZONE COMMERCIALE EXPO SUD RN20;19005;[0.624025, 44.536303];;FRS33EMB334412;FR*SOD*E*SIGE*410*1*1*_;;;;;;;;;;;;;;;;;;;5.00228E+13;2022-06-28;;;;2023-08-05T07:08:04.721000+00:00;;4de60c7e-c63b-40e1-bb7a-a1be2eb495db;;2.279881;48.714756;32100;Moustier-Ventadour;; +;KFC Saint Quentin;;;;;;HMV SAINT DIE 4;FRSIGPSIGE40011;FR*SOD*S*SIGE*22*1*_*_;BON ENCONTRE - PARKING TORTIS;;RUE DE LA FOSSE AUX LOUPS;19062;[0.67219, 44.18623];;FRS33EMB334411;FR*SOD*E*SIGE*411*1*1*_;;;;;;;;;;;;;;;;;;;5.00913E+13;2019-04-26;;;;2023-08-05T07:08:04.452000+00:00;;2360782b-0a50-45a0-a266-e1dbbaff8f37;;2.20761;48.699745;42000;Camps-Saint-Mathurin-Léobazel;; +;Intermarché Romanèche - Thorins;;;;;;LA BOUCHERIE RESTAURANT;FRSIGPSIGE40112;FR*SOD*S*SIGE*23*1*_*_;BON ENCONTRE - PARKING REDON;;PLACE ST PIERRE;19151;[2.279881, 48.665501];;FRS33EMB334512;FR*SOD*E*SIGE*411*1*2*_;;;;;;;;;;;;;;;;;;;5.00601E+13;2019-03-18;;;;2023-08-05T07:08:03.814000+00:00;;dc20a19f-f2b3-4de4-a63d-9ff15d1d9762;;2.267462;48.695099;04340;Saint-Germain-les-Vergnes;; +;Intersport Annonay;;;;;;MONTMIRAIL - 48602 - Place de Montlean;FRSIGPSIGE40111;FR*SOD*S*SIGE*24*1*_*_;CANCON - JARDIN PUBLIC;;PLACE DE LA TORTE- RUE JOSEPH DE LAURENS;19202;[2.20761, 48.73402];;FRS33EMB334511;FR*SOD*E*SIGE*412*1*2*_;;;;;;;;;;;;;;;;;;;5.00298E+13;2022-10-12;;;;2023-08-05T07:08:03.522000+00:00;;9042429c-98ed-451d-ac62-a7d9466d4dea;;2.191479;48.661919;04140;Objat;; +;Intermarché Serres Castet;;;;;;HMV SAINT DIE 3;FRSIGPSIGE40211;FR*SOD*S*SIGE*25*1*_*_;BON ENCONTRE - MASCARON BASILIQUE;;ZONE DACTIVITÉS;19251;[2.267462, 48.632023];;FRS33EMB334611;FR*SOD*E*SIGE*412*1*1*_;;;;;;;;;;;;;;;;;;;5.00516E+13;2021-03-13;;;;2023-08-05T07:08:03.108000+00:00;;3c052344-23ef-4010-ab39-1c3ba3aa9edb;;2.221078;48.673862;67450;Chamberet;; +;Intermarché St-Vallier;;;;;;MASSAY - Avenue Marechal Foch - 205973;FRSIGPSIGE40212;FR*SOD*S*SIGE*155*1*_*_;BALLAINVILLIERS - HAUTS-FRESNAIS;;PARKING DE LA TANNERIE;19085;[2.191479, 48.703136];;FRS33EMB334612;FR*SOD*E*SIGE*413*1*1*_;;;;;;;;;;;;;;;;;;;5.00575E+13;2019-10-05;;;;2023-08-05T07:08:02.809000+00:00;;86b9456f-3fe4-44af-8b18-1f79d90d71a3;;2.168417;48.696949;10600;Ayen;; +;Intermarché, Mareil;;;;;;Aire de Ussy sur Marne;FRSIGPSIGE40311;FR*SOD*S*SIGE*153*6*_*_;VAUHALLAN - MAIRIE;;HOPITAL;19273;[2.221078, 48.732231];;FRS33EMB334711;FR*SOD*E*SIGE*413*1*2*_;;;;;;;;;;;;;;;;;;;5.00986E+13;2023-05-27;;;;2023-08-05T07:08:02.481000+00:00;;97bd80b6-8669-491d-ba7f-bab823d9ab08;;2.246326;48.657887;91150;Beaulieu-sur-Dordogne;; +;Intermarché, Saint-Loup;;;;;;PREVERANGES - Mairie - 148778;FRSIGPSIGE40312;FR*SOD*S*SIGE*153*5*_*_;LINAS - FIEF DE PLAINVILLE;;AVENUE DE L OCEAN;19274;[2.168417, 48.730614];;FRS33EMB334712;FR*SOD*E*SIGE*414*1*2*_;;;;;;;;;;;;;;;;;;;5.00371E+13;2023-07-07;;;;2023-08-05T07:08:02.227000+00:00;;635ed781-ee78-4868-9f73-60d508ca2770;;2.226933;48.739605;67110;Treignac;; +;Intermarché Saint-Jean-du-Désert;;;;;;GEORGES RENAULT BORNE 1;FRSIGPSIGE40412;FR*SOD*S*SIGE*184*2*_*_;ORSAY - LES PLANCHES;;ENTREE PARKING COVOITURAGE;19278;[2.246326, 48.714756];;FRS33EMB334812;FR*SOD*E*SIGE*414*1*1*_;;;;;;;;;;;;;;;;;;;5.00591E+13;2023-05-13;;;;2023-08-05T07:08:01.821000+00:00;;1a213dca-a394-4708-80c2-c70094949926;;2.294588;48.626686;89800;Meyssac;; +;Intermarché Saint-Genis-Pouilly;;;;;;CHEMERY 2952 - Rue du Balay;FRSIGPSIGE40411;FR*SOD*S*SIGE*184*4*_*_;IGNY - SARRAUT / FERRY;;PLACE GRAMONT;19072;[2.226933, 48.699745];;FRS33EMB334811;FR*SOD*E*SIGE*415*1*1*_;;;;;;;;;;;;;;;;;;;5.00852E+13;2019-04-12;;;;2023-08-05T07:08:01.501000+00:00;;2cc71980-bd54-4176-a45e-a005f90e8fcf;;2.242334;48.737225;44800;Argentat-sur-Dordogne;; +;Intermarché Sainte Marguerite;;;;;;SONEPAR VAULX-EN-VELIN;FRSIGPSIGE40511;FR*SOD*S*SIGE*184*3*_*_;SACLAY - STADE;;PARKING CÔTÉ PRESBYTERE;19123;[2.294588, 48.695099];;FRS33EMB3313012;FR*SOD*E*SIGE*26*1*2*_;;;;;;;;;;;;;;;;;;;5.00672E+13;2022-09-03;;;;2023-08-05T07:08:01.139000+00:00;;b202de33-9f5d-483a-babe-e631a460d04f;;2.216673;48.68372;59630;Lubersac;; +;Intermarché Sauviat-sur-Vige;;;;;;Aire de Saint Ambreuil;FRSIGPSIGE39212;FR*SOD*S*SIGE*184*5*_*_;PALAISEAU - AUVERGNE;;AVENUE DU MARECHAL LECLERC;19107;[2.242334, 48.661919];;FRS33EMB3312312;FR*SOD*E*SIGE*27*1*1*_;;;;;;;;;;;;;;;;;;;5.00392E+13;2023-05-10;;;;2023-08-05T07:08:00.798000+00:00;;b5009360-f234-43ac-b606-47efc1c88fca;;2.159423;48.641041;74200;Marcillac-la-Croisille;; +;JL Bourg;;;;;;LUMELEC SOFITOM1;FRSIGPSIGE39111;FR*SOD*S*SIGE*184*1*_*_;VILLEBON - LA POSTE;;LOTISSEMENT LA BARRAQUE;19023;[2.216673, 48.673862];;FRS33EMB3313111;FR*SOD*E*SIGE*27*1*2*_;;;;;;;;;;;;;;;;;;;5.00509E+13;2021-12-11;;;;2023-08-05T07:08:00.473000+00:00;;b30cf28f-1acd-48c8-94df-fd8dac01927d;;2.269996;48.711727;51470;Exideuil-sur-Vienne;; +;JP Automobiles;;;;;;Kergoët;FRSIGPSIGE3611;FR*SOD*S*SIGE*340*1*_*_;LONGJUMEAU - LEHONTINE SOHIER;;AVENUE DE HESINGUE;19255;[2.159423, 48.696949];;FRS33EMB3315311;FR*SOD*E*SIGE*29*2*1*_;;;;;;;;;;;;;;;;;;;5.007E+13;2021-12-23;;;;2023-08-05T07:08:00.234000+00:00;;5436b75a-b72e-46ea-8cd6-2500b709278c;;2.222766;48.713703;34830;Étagnac;; +;Jakle;;;;;;ITM SEYESSES 1 BRVE 1;FRSIGPSIGE38312;FR*SOD*S*SIGE*334*1*_*_;NOZAY - CENTRE CULTUREL HOSSEIN;;PARKING PLAGE - AVENUE BREMONTIER;19146;[2.269996, 48.657887];;FRS33EMB3315111;FR*SOD*E*SIGE*29*1*1*_;;;;;;;;;;;;;;;;;;;5.00515E+13;2022-05-11;;;;2023-08-05T07:08:00.003000+00:00;;f9282d8b-f808-423a-ad42-81f738c49b18;;2.262753;48.66151;74100;Marthon;; +;Jardinerie Tarnaise Fonlabour;;;;;;NANCY - PARKING PISCINE GENTILLY - 188610;FRSIGPSIGE37712;FR*SOD*S*SIGE*335*1*_*_;VILLEJUST - COUDRAYES;;RUE CLAIRACQ;19073;[2.222766, 48.739605];;FRS33EMB3315211;FR*SOD*E*SIGE*29*4*1*_;;;;;;;;;;;;;;;;;;;5.0037E+13;2020-10-31;;;;2023-08-05T07:07:59.689000+00:00;;9eabd42c-a2c0-4d1f-b08d-1db79f6121a3;;2.295414;48.675415;53940;Luxé;; +;Izernore;;;;;;Blois Ménars;FRSIGPSIGE37811;FR*SOD*S*SIGE*336*1*_*_;BURES - GRANDE MAISON;;BOULEVARD DE LA DUNE;19011;[2.262753, 48.626686];;FRS33EMB3315011;FR*SOD*E*SIGE*29*3*1*_;;;;;;;;;;;;;;;;;;;18100;2023-04-25;;;;2023-08-05T07:07:59.385000+00:00;;09baa21a-4258-4e37-9394-1d7be2b532bd;;2.236749;48.659538;57800;Dignac;; +;Issenheim;;;;;;Boinville-en-Mantois;FRSIGPSIGE37812;FR*SOD*S*SIGE*337*1*_*_;LA VILLE-DU-BOIS - PLACE BEAULIEU;;PLACE VICTOR GENTILLE;19145;[2.295414, 48.737225];;FRS33EMB3315511;FR*SOD*E*SIGE*30*3*1*_;;;;;;;;;;;;;;;;;;;5.00946E+13;2021-11-20;;;;2023-08-05T07:07:58.988000+00:00;;9b8b014b-6d7f-410f-b264-44e834d44820;;2.270542;48.714664;74400;Mansle-les-Fontaines;; +;Intersport Sélestat;;;;;;VILLEFRANCOEUR - 60409 - Aerodrome de BLOIS;FRSIGPSIGE37911;FR*SOD*S*SIGE*338*1*_*_;IGNY - LOR METE;;RUE DU MARÉCHAL FERRANT;19034;[2.236749, 48.68372];;FRS33EMB3315012;FR*SOD*E*SIGE*30*4*1*_;;;;;;;;;;;;;;;;;;;5.00522E+13;2020-12-11;;;;2023-08-05T07:07:58.675000+00:00;;cbe3faab-f459-4547-b347-4534272aa255;;2.243571;48.697381;85300;Maine-de-Boixe;; +;IrriJardin Phalsbourg;;;;;;Saint-Rambert Ouest;FRSIGPSIGE37912;FR*SOD*S*SIGE*339*1*_*_;LINAS - CHATEAU DEAU;;PARKING ZONE COMMERCIALE;19207;[2.270542, 48.641041];;FRS33EMB3315611;FR*SOD*E*SIGE*72*3*1*_;;;;;;;;;;;;;;;;;;;5.00212E+13;2020-09-26;;;;2023-08-05T07:07:58.455000+00:00;;0d5bbfda-c2e2-47c4-a3eb-7a49411947f3;;2.259299;48.73232;14200;Courcôme;; +;Lidl DR12;;;;;;Reims - 95878 - Rue Gambetta - Parking rectorat;FRSIGPSIGE38011;FR*SOD*S*SIGE*341*1*_*_;MASSY - SOLOGNE;;PARKING PLACE DE LA POSTE;19153;[2.243571, 48.711727];;FRS33EMB3314412;FR*SOD*E*SIGE*72*4*1*_;;;;;;;;;;;;;;;;;;;5.00017E+13;2023-03-31;;;;2023-08-05T07:07:57.806000+00:00;;c35c86ea-1fc7-467c-8b2e-d76e4ffa12e4;;2.268743;48.700953;42800;Charmé;; +;Lidl DR10;;;;;;CHOOZ - Rue Paul Emile Janson - 57639;FRSIGPSIGE38012;FR*SOD*S*SIGE*333*1*_*_;VILLEJUST - ROUTE DE VILLEBON;;PARKING JEAN ODDOS;19036;[2.259299, 48.713703];;FRS33EMB3313112;FR*SOD*E*SIGE*376*1*2*_;;;;;;;;;;;;;;;;;;;5.00441E+13;2021-04-14;;;;2023-08-05T07:07:57.554000+00:00;;3c885b14-f587-43c4-b31c-24504c0eab74;;2.298674;48.696736;59650;Confolens;; +;Lidl DR11;;;;;;Andel;FRSIGPSIGE38111;FR*SOD*S*SIGE*342*1*_*_;MONTHLERY - CLOS BOUQUET;;GYMNASE DE LINGRES;19191;[2.268743, 48.66151];;FRS33EMB3314211;FR*SOD*E*SIGE*137*4*1*_;;;;;;;;;;;;;;;;;;;5.006E+13;2023-06-26;;;;2023-08-05T07:07:56.385000+00:00;;bea31025-f85b-4b87-88d5-5d61315f9278;;2.24285;48.73428;78200;Chasseneuil-sur-Bonnieure;; +;Lidl DR14;;;;;;Shell Aire des Eglantiers - Ruffec;FRSIGPSIGE38112;FR*SOD*S*SIGE*343*1*_*_;PALAISEAU - DR MORERE;;PARKING RUE DES ECOLES;19015;[2.298674, 48.675415];;FRS33EMB3314212;FR*SOD*E*SIGE*135*3*1*_;;;;;;;;;;;;;;;;;;;5.00231E+13;2023-04-08;;;;2023-08-05T07:07:56.010000+00:00;;f9f544fe-e078-437b-9b84-44708415c19f;;2.142571;48.730587;27930;Chabanais;; +;Lidl DR13;;;;;;Super Chargeur Neuille-Pont-Pierre A28 CCS;FRSIGPSIGE38212;FR*SOD*S*SIGE*344*1*_*_;PALAISEAU - BD STALINGRAD;;RUE DU GAVE AYGUE BLUE;19019;[2.24285, 48.659538];;FRS33EMB3314312;FR*SOD*E*SIGE*136*4*1*_;;;;;;;;;;;;;;;;;;;5.0036E+13;2021-11-08;;;;2023-08-05T07:07:55.713000+00:00;;b2ee2434-96ed-4716-bb13-965e0fb66357;;2.233518;48.711114;88000;Brossac;; +;Lidl DR05;;;;;;SONEPAR CONNECT POITIERS;FRSIGPSIGE38211;FR*SOD*S*SIGE*345*1*_*_;LA VILLE-DU-BOIS - MAIRIE;;PARKING SQUARE JEAN CAILLUYE;19269;[2.142571, 48.714664];;FRS33EMB3314311;FR*SOD*E*SIGE*136*3*1*_;;;;;;;;;;;;;;;;;;;5.00474E+13;2023-08-01;;;;2023-08-05T07:07:55.281000+00:00;;9346ec22-dcf8-44fb-bf59-596028ed4566;;2.292326;48.700448;59200;Massignac;; +;Lidl DR06;;;;;;FUMAY - Place Aristide Briand - 57685;FRSIGPSIGE38311;FR*SOD*S*SIGE*346*1*_*_;BALLAINVILLIERS - STADE;;D28 AIRE DE COVOITURAGE;19138;[2.233518, 48.697381];;FRS33EMB3314411;FR*SOD*E*SIGE*136*2*1*_;;;;;;;;;;;;;;;;;;;5.00908E+13;2022-07-09;;;;2023-08-05T07:07:54.933000+00:00;;695e7a84-4e31-4a39-9383-b3b945ce5f4e;;2.106596;48.708309;67270;Saint-Même-les-Carrières;; +;Lidl DR07;;;;;;HYPER U AGDE BORNE 3;FRSIGPSIGE38411;FR*SOD*S*SIGE*317*1*_*_;NOZAY - MEDIATHEQUE;;PARKING DUFAU;19010;[2.292326, 48.73232];;FRS33EMB3314511;FR*SOD*E*SIGE*136*6*1*_;;;;;;;;;;;;;;;;;;;5.00856E+13;2020-03-14;;;;2023-08-05T07:07:54.643000+00:00;;40c80258-7607-4c30-bd51-4c6b6a0b0189;;2.29254;48.717192;66260;Nersac;; +;Lidl DR04;;;;;;Bolleville Est;FRSIGPSIGE39012;FR*SOD*S*SIGE*325*1*_*_;SAINT-AUBIN - ETAPE;;PARKING ECOLE;19121;[2.106596, 48.700953];;FRS33EMB3314911;FR*SOD*E*SIGE*136*5*1*_;;;;;;;;;;;;;;;;;;;68066/E1/000109060;2019-09-26;;;;2023-08-05T07:07:54.451000+00:00;;ae9bce8e-e245-4f06-8a55-3405841a49ee;;2.273265;48.725075;25640;Jarnac;; +;Lidl DR09;;;;;;MER 4037 - 1 Avenue Maréchal Maunoury;FRSIGPSIGE38412;FR*SOD*S*SIGE*319*1*_*_;VILLEBON - CENTRE JACQUES BREL;;PARKING SALLE ROGER HANIN;19125;[2.29254, 48.696736];;FRS33EMB3314512;FR*SOD*E*SIGE*136*1*1*_;;;;;;;;;;;;;;;;;;;68066/E1/000109061;2022-06-18;;;;2023-08-05T07:07:54.126000+00:00;;c4099336-1b64-47fc-8fc0-c4bce8bca503;;2.283376;48.689507;97100;Garat;; +;Lidl DR08;;;;;;SONEPAR 3CCLIM CROISSY;FRSIGPSIGE38511;FR*SOD*S*SIGE*320*1*_*_;MASSY - NOYER LAMBERT;;PLACE DE LA BOITERIE;16134;[2.273265, 48.73428];;FRS33EMB3314611;FR*SOD*E*SIGE*137*2*1*_;;;;;;;;;;;;;;;;;;;68066/E1/000109062;2022-12-03;;;;2023-08-05T07:07:53.831000+00:00;;b1145815-bbcf-4515-bae1-b413096fa8b9;;2.274164;48.664589;63170;Vaux-Rouillac;; +;SCI Les Soudanières;;;;;;HMV SAINT DIE 2;FRSIGPSIGE38512;FR*SOD*S*SIGE*321*1*_*_;GIF - GYMNASE COURCELLE;;PLACE FRANCK LAHARY;16132;[2.283376, 48.730587];;FRS33EMB3314612;FR*SOD*E*SIGE*137*3*1*_;;;;;;;;;;;;;;;;;;;5.00141E+13;2021-10-23;;;;2023-08-05T07:07:53.520000+00:00;;21cd932e-7257-437c-a8ec-b8e0f7bb59c8;;2.291233;48.644867;63700;Sigogne;; +;SCI Linard, Saint Germainmont;;;;;;SONEPAR MELUN;FRSIGPSIGE38612;FR*SOD*S*SIGE*322*1*_*_;LONGJUMEAU - PARKING BRETTEN;;AVENUE DE LA LIBERTÉ;16211;[2.274164, 48.711114];;FRS33EMB3314811;FR*SOD*E*SIGE*137*1*1*_;;;;;;;;;;;;;;;;;;;5.00341E+13;2023-04-04;;;;2023-08-05T07:07:53.205000+00:00;;965c9540-19a1-4a06-bb86-68b58c6d9b57;;2.274077;48.701866;21490;L'Isle-d'Espagnac;; +;SCI Ruisseau;;;;;;St MARTIN D'AUXIGNY - Place de la Mairie - 188179;FRSIGPSIGE38611;FR*SOD*S*SIGE*323*1*_*_;MASSY – RUE PIERRE PICARD;;PARKING ESPACE BERTIN;16196;[2.291233, 48.700448];;FRS33EMB3314812;FR*SOD*E*SIGE*137*6*1*_;;;;;;;;;;;;;;;;;;;5.00127E+13;2022-08-01;;;;2023-08-05T07:07:52.873000+00:00;;a14b8c9e-3b38-4c62-a875-faccbaaaaabc;;2.234448;48.730156;21350;Châteauneuf-sur-Charente;; +;SCI la Francilienne - Tradi-Art;;;;;;GUIFFAUMONT CHAMPAUBERT - 48890 - Casino;FRSIGPSIGE38712;FR*SOD*S*SIGE*324*1*_*_;MASSY - ALLEE DE QUEBEC;;PLACE SALLE ISIDORE;16119;[2.274077, 48.708309];;FRS33EMB3314912;FR*SOD*E*SIGE*137*5*1*_;;;;;;;;;;;;;;;;;;;5.00326E+13;2022-02-24;;;;2023-08-05T07:07:52.584000+00:00;;f96ad323-10f1-4355-a31c-9af2cc073439;;2.272193;48.735409;11480;La Rochefoucauld-en-Angoumois;; +;SCI Fanti Storage;;;;;;Sisteron;FRSIGPSIGE38711;FR*SOD*S*SIGE*326*1*_*_;CHAMPLAN - GYMNASE;;SALLE DES SPORTS;16206;[2.234448, 48.717192];;FRS33EMB3313512;FR*SOD*E*SIGE*138*6*1*_;;;;;;;;;;;;;;;;;;;5.00104E+13;2019-11-13;;;;2023-08-05T07:07:52.232000+00:00;;9442514a-f871-4df2-96ff-520e1fb90a36;;2.261823;48.687965;06240;Chalais;; +;SCI Gouesmat - Ma Cuisine Création;;;;;;HAYBES - Place de la mairie - 57561;FRSIGPSIGE38811;FR*SOD*S*SIGE*332*1*_*_;CHAMPLAN - JEAN JAURES;;PLACE RICHARD FEUILLET;16200;[2.272193, 48.725075];;FRS33EMB3313811;FR*SOD*E*SIGE*135*1*1*_;;;;;;;;;;;;;;;;;;;5.00493E+13;2022-07-07;;;;2023-08-05T07:07:51.876000+00:00;;cb54aaee-955d-4eff-b136-b33492dc0c26;;2.276495;48.684934;01250;Montbron;; +;SCI Kamiro;;;;;;Saint Hilaire du Harcouët;FRSIGPSIGE38812;FR*SOD*S*SIGE*327*1*_*_;CHAMPLAN - MAIRIE;;PARKING MAIRIE- AVENUE GERMINAL;16110;[2.261823, 48.689507];;FRS33EMB3313812;FR*SOD*E*SIGE*138*2*1*_;;;;;;;;;;;;;;;;;;;5.00345E+13;2022-12-16;;;;2023-08-05T07:07:51.562000+00:00;;a9ddc92d-6eed-4b4c-925a-efb1259ecb39;;2.273306;48.677479;13320;Villebois-Lavalette;; +;SCI LFG;;;;;;KRYS BORNE 1;FRSIGPSIGE38911;FR*SOD*S*SIGE*328*1*_*_;PALAISEAU - 9 ROUTE DE SACLAY;;RUE DE BALUHEC,PARKING DES ARÊNES;16083;[2.276495, 48.664589];;FRS33EMB3313711;FR*SOD*E*SIGE*138*3*1*_;;;;;;;;;;;;;;;;;;;8931080420034292418;2020-10-09;;;;2023-08-05T07:07:51.217000+00:00;;00cd3c11-5b72-4815-b314-2de331e9ce42;;2.294186;48.698582;37190;Verteuil-sur-Charente;; +;SCI TSPO;;;;;;NAVEIL 4933 - Rue de Montrieux;FRSIGPSIGE38912;FR*SOD*S*SIGE*329*1*_*_;MASSY - BOUGAINVILLE;;ALLEE MAMOURA;16106;[2.273306, 48.644867];;FRS33EMB3313712;FR*SOD*E*SIGE*138*5*1*_;;;;;;;;;;;;;;;;;;;50034533167121;2021-11-11;;;;2023-08-05T07:07:50.892000+00:00;;d432ac47-8cda-463e-9f9a-495f03305048;;2.259031;48.676964;77550;Barbezieux-Saint-Hilaire;; +;SCI du Golf;;;;;;PONTLEVOY 2950 - Rue de la Saulaie;FRSIGPSIGE39011;FR*SOD*S*SIGE*330*1*_*_;SAULX - BUHOTERIE;;PARKING DERRIERE EGLISE;16085;[2.294186, 48.701866];;FRS33EMB3313612;FR*SOD*E*SIGE*138*4*1*_;;;;;;;;;;;;;;;;;;;50033373504967;2023-01-24;;;;2023-08-05T07:07:50.541000+00:00;;24ee797f-4120-4e84-80aa-1a10759ba7da;;2.257871;48.701092;34690;Alloue;; +;SCI de la Combe;;;;;;Mionnay | A46, Aire De Mionnay;FRSIGPSIGE40512;FR*SOD*S*SIGE*331*1*_*_;LA VILLE-DU-BOIS - GRAND NOYER;;PARKING ALLÉE GASTON PHOEBUS;16070;[2.259031, 48.730156];;FRS33EMB3313511;FR*SOD*E*SIGE*138*1*1*_;;;;;;;;;;;;;;;;;;;50035690291483;2019-11-15;;;;2023-08-05T07:07:50.271000+00:00;;20cfc6f9-d8e5-4840-b533-3b37b096a10c;;2.116799;48.717692;88170;Aigre;; +;SCI Vertsenart;;;;;;Larzac;FRSIGPSIGE40611;FR*SOD*S*SIGE*347*1*_*_;MONTHLERY - BOURGUIGNONS;;RUE DU JARDIN PUBLIC;16066;[2.257871, 48.735409];;FRS33EMB3313411;FR*SOD*E*SIGE*139*1*1*_;;;;;;;;;;;;;;;;;;;50047412501261;2021-12-17;;;;2023-08-05T07:07:50.018000+00:00;;79c8cbd1-d62a-4cd7-9d1e-db5ef36f72cf;;2.316214;48.677201;31450;Ruelle-sur-Touvre;; +;SCI Tremblay;;;;;;BOURGES - PRADO - 109619;FRSIGPSIGE40612;FR*SOD*S*SIGE*369*1*_*_;LONGJUMEAU - GARE DE LONGJUMEAU;;PLACE DE LABBÉ DULONG;16212;[2.116799, 48.687965];;FRS33EMB3313911;FR*SOD*E*SIGE*139*4*1*_;;;;;;;;;;;;;;;;;;;50059134631234;2021-09-07;;;;2023-08-05T07:07:49.586000+00:00;;8e5487b0-2485-4ebd-ae0f-81b469059712;;2.132646;48.741585;13120;Vœuil-et-Giget;; +;SCI Denmat;;;;;;09911164;FRSIGPSIGE3331;FR*SOD*S*SIGE*363*1*_*_;MASSY - PLACE ST FIACRE;;PARKING DU TENNIS;16216;[2.316214, 48.684934];;FRS33EMB3313412;FR*SOD*E*SIGE*139*5*1*_;;;;;;;;;;;;;;;;;;;50053635356601;2023-06-23;;;;2023-08-05T07:07:48.846000+00:00;;3ef4a544-644b-49eb-a07e-4c4c47b708de;;2.187464;47.398424;34120;Saint-Christophe;; +;SCI Combsenart;;;;;;SONEPAR CLERMONT-FER 3;FRSIGPSIGE3131;FR*SOD*S*SIGE*364*1*_*_;MASSY - JOLIOT CURIE;;PARKING POLE DECHANGE MULTIMODAL;16340;[2.132646, 48.677479];;FRS33EMB3313312;FR*SOD*E*SIGE*139*3*1*_;;;;;;;;;;;;;;;;;;;50059858165718;2023-07-24;;;;2023-08-05T07:07:48.468000+00:00;;55edf535-62ca-4cf2-9272-45ed58ccf795;;2.293165;49.529647;94130;Ruffec;; +;SAS Cerza Safari Lodge;;;;;;SONEPAR ST-VULBAS 8;FRSIGPSIGE3141;FR*SOD*S*SIGE*365*1*_*_;GIFS -PEUPLIERS;;PARKING SUPERETTE;16244;[2.187464, 48.698582];;FRS33EMB3313311;FR*SOD*E*SIGE*139*2*1*_;;;;;;;;;;;;;;;;;;;50085328498506;2019-11-08;;;;2023-08-05T07:07:48.132000+00:00;;ce3b4aa4-d013-47cf-a26c-d7008e252b19;;2.134818;49.095829;10700;Pressignac;; +;SAS CERZA;;;;;;Aire de Vémars Ouest;FRSIGPSIGE3151;FR*SOD*S*SIGE*366*1*_*_;LONGJUMEAU - GARE GRAVIGNY-BALIZY;;AVENUE DES CHARPENTIERS;16167;[2.293165, 48.676964];;FRS33EMB3313211;FR*SOD*E*SIGE*141*6*1*_;;;;;;;;;;;;;;;;;;;50086775675532;2019-09-08;;;;2023-08-05T07:07:47.741000+00:00;;f7bcceb8-b2c2-4644-ba84-12b101507912;;2.232224;48.625582;13360;Saint-Séverin;; +;SAS C'est qui le patron;;;;;;BOURGES - Esprit 1 - 97832;FRSIGPSIGE3161;FR*SOD*S*SIGE*367*1*_*_;GOMETZ - SALLE BARBARA;;AVENUE DE TOURREN;16146;[2.134818, 48.701092];;FRS33EMB3313212;FR*SOD*E*SIGE*141*3*1*_;;;;;;;;;;;;;;;;;;;50028888590176;2022-12-26;;;;2023-08-05T07:07:47.248000+00:00;;a1c90c10-075b-4611-9d69-139db22e7a19;;2.134319;49.534125;77240;Saint-Fraigne;; +;SAS B2L;;;;;;SONEPAR CONNECT VAUX LE PENIL;FRSIGPSIGE3111;FR*SOD*S*SIGE*368*1*_*_;ORSAY - PARKING MAIRIE;;PLACE GUILLAUME FRONTON;16395;[2.232224, 48.717692];;FRS33EMB3313912;FR*SOD*E*SIGE*135*2*1*_;;;;;;;;;;;;;;;;;;;50074042275339;2019-03-26;;;;2023-08-05T07:07:46.848000+00:00;;76be0e58-816e-445a-966e-719d57ff4c57;;2.226447;47.284433;01960;Saint-Claud;; +;SARL RODA;;;;;;STENAY - 124570 - Parking Codécom;FRSIGPSIGE3121;FR*SOD*S*SIGE*370*1*_*_;BALLAINVILLIERS - CTRE CIAL ROUILLON;;PARKING LABOUYRIE;16369;[2.134319, 48.677201];;FRS33EMB3313611;FR*SOD*E*SIGE*135*4*1*_;;;;;;;;;;;;;;;;;;;67218267929468;2022-10-17;;;;2023-08-05T07:07:46.528000+00:00;;723c966c-fdb5-43d4-af91-0813c6531e15;;-0.530598;49.163926;29600;Saint-Amant-de-Boixe;; +;SARL FD Domaine de Roullet;;;;;;SUPER U ARNAGE ARNAGE 2;FRSIGPSIGE3251;FR*SOD*S*SIGE*349*1*_*_;GIF - MARCHE DU PARC;;PLACE DU TRIBUNAL;16166;[2.226447, 48.741585];;FRS33EMB3314011;FR*SOD*E*SIGE*118*1*2*_;;;;;;;;;;;;;;;;;;;50027002933394;2022-04-23;;;;2023-08-05T07:07:46.265000+00:00;;b6da742d-2817-440f-b8e1-9e9f02f12880;;0.189267;48.95821;67140;Rouillac;; +;SARL Folacci;;;;;;Bedenac Ouest;FRSIGPSIGE3211;FR*SOD*S*SIGE*371*1*_*_;PALAISEAU - 15 ROUTE DE SACLAY;;RUE LÉON BLUM;16090;[-0.530598, 47.398424];;FRS33EMB3314112;FR*SOD*E*SIGE*128*1*2*_;;;;;;;;;;;;;;;;;;;50073027658180;2022-04-10;;;;2023-08-05T07:07:45.969000+00:00;;70dde2a8-8498-4c8a-a28a-6e23631be45f;;1.466318;48.842721;82000;Oradour-Fanais;; +;SARL Joet;;;;;;Orbec;FRSIGPSIGE3231;FR*SOD*S*SIGE*372*1*_*_;GOMETZ - SAINT NICOLAS;;PARKING LAC DE CHRISTUS;16281;[0.189267, 49.529647];;FRS33EMB3314111;FR*SOD*E*SIGE*119*1*2*_;;;;;;;;;;;;;;;;;;;50034387077201;2022-12-13;;;;2023-08-05T07:07:45.091000+00:00;;3ab261ac-dd38-4f87-a142-17e69294572f;;-1.99055;47.403579;80290;Salles-de-Villefagnan;; +;SARL Relais Santa Maria, Corte;;;;;;SONEPAR DOUAI 2;FRSIGPSIGE3221;FR*SOD*S*SIGE*373*1*_*_;IGNY- PLACE FRANCOIS COLLET;;PARKING SUPER U;16073;[1.466318, 49.095829];;FRS33EMB3314012;FR*SOD*E*SIGE*119*1*1*_;;;;;;;;;;;;;;;;;;;50033230154347;2020-02-29;;;;2023-08-05T07:07:44.674000+00:00;;41a6bdc8-31fd-4f2d-b353-281d26d662d2;;0.968916;49.35703;01410;Mouthiers-sur-Boëme;; +;SARL SOMER;;;;;;Centre Médical de la Burlière;FRSIGPSIGE3241;FR*SOD*S*SIGE*374*1*_*_;HYPER U - MURS-ERIGNE;;PARKING PLACE;16223;[-1.99055, 48.625582];;FRE04EOAZS22212;FR*SOD*E*SIGE*121*1*1*_;;;;;;;;;;;;;;;;;;;50022088685193;2023-05-19;;;;2023-08-05T07:07:44.428000+00:00;;bffe9708-8572-44a0-9225-a18301b1c003;;-1.550342;49.36224;68110;Montrollet;; +;SCDC;;;;;;Aire de Loisy;FRSIGPSIGE3261;FR*SOD*S*SIGE*252*1*_*_;NORAUTO - MONTIVILLIERS;;RUE ANDRÉ FOURCADE;16408;[0.968916, 49.534125];;FRE04EOAZS22312;FR*SOD*E*SIGE*121*1*2*_;;;;;;;;;;;;;;;;;;;50008478529121;2023-04-22;;;;2023-08-05T07:07:44.119000+00:00;;396c2d84-c1fb-4abd-8cd4-65a7de530fad;;-0.298284;49.35691;07260;Montmoreau;; +;SCI ACN Distribution;;;;;;Montpellier Saint-Aunès;FRSIGPSIGE3311;FR*SOD*S*SIGE*375*3*_*_;NORAUTO - VERNON;;RUE DE LEGLISE-PARKING MAIRIE;16400;[-1.550342, 47.284433];;FRE04EOAZS22231;FR*SOD*E*SIGE*122*1*1*_;;;;;;;;;;;;;;;;;;;50037422089155;2022-08-20;;;;2023-08-05T07:07:43.832000+00:00;;5a384e3d-04bd-4939-8f2c-3aa46586f6cd;;2.917933;49.36005;14390;Montembœuf;; +;SCI AGC;;;;;;Saint Victor de Morestel;FRSIGPSIGE40712;FR*SOD*S*SIGE*375*2*_*_;NORAUTO - SAINT-MALO;;PARKING ARRIÈRE MAIRIE, RUE DES ARÈNES;16028;[-0.298284, 49.163926];;FRE04EOAZS22211;FR*SOD*E*SIGE*122*1*2*_;;;;;;;;;;;;;;;;;;;000237997;2019-11-03;;;;2023-08-05T07:07:43.493000+00:00;;029a7a45-e277-42d2-a6c7-2d06df670fca;;2.654923;49.3443;04500;Vouharte;; +;SCI BLP;;;;;;UTILE GRANE BORNE 1;FRSIGPSIGE3341;FR*SOD*S*SIGE*375*1*_*_;NORAUTO - BARENTIN;;PLACE DES MARTYRES;16007;[2.917933, 48.95821];;FRE04EOAZS22331;FR*SOD*E*SIGE*123*1*1*_;;;;;;;;;;;;;;;;;;;50091110746099;2021-12-27;;;;2023-08-05T07:07:43.249000+00:00;;6ba59e58-7e39-4c33-8e5e-1d1f8540045a;;1.016885;49.3547;74160;Terres-de-Haute-Charente;; +;SCI COPA IMMO;;;;;;GVA ORANGE ABB;FRSIGPSIGE3321;FR*SOD*S*SIGE*362*1*_*_;NORAUTO - LA CHAPELLE-SUR-ERDRE;;PARKING DES ARÊNES- CHEMIN DE LOUSSETS;16005;[2.654923, 48.842721];;FRE04EOAZS22232;FR*SOD*E*SIGE*123*1*2*_;;;;;;;;;;;;;;;;;;;67112/E2/0791871;2023-01-30;;;;2023-08-01T03:01:19+00:00;;61387a4e-22f7-4662-b241-d5cac4dd91fd;;0.08237;49.35469;43130;Aubeterre-sur-Dronne;; +;SAS Sifo Carrefour Marcket Six Fours;;;;;;SUPER U WOLFI BORNE 1;FRSIGPSIGE3351;FR*SOD*S*SIGE*361*1*_*_;NORAUTO - MONDEVILLE;;PARKING DE LA PISCINE;16291;[1.016885, 47.403579];;FRE04EOAZS22332;FR*SOD*E*SIGE*124*1*2*_;;;;;;;;;;;;;;;;;;;50082717119824;2023-03-28;;;;;;;;0.08258;49.36278;78840;Champagne-Mouton;; +;SAS Groupe 1807 Salon de Provence;;;;;;VENTRON - Place de la Mairie - CCS;FRSIGPSIGE3551;FR*SOD*S*SIGE*350*1*_*_;NORAUTO - MEAUX;;PARKING RUE ATTENSCHWILLER;16418;[0.08237, 49.35703];;FRE04EOAZS22311;FR*SOD*E*SIGE*124*1*1*_;;;;;;;;;;;;;;;;;;;50035685927365;2022-06-11;;;;;;;;0.0724;49.36376;59100;Montignac-Charente;; +;SAS DCL;;;;;;SUPER U DOZULE BORNE 1;FRSIGPSIGE3521;FR*SOD*S*SIGE*351*1*_*_;NORAUTO - TORCY;;RUE DE TERCIS;16306;[0.08258, 49.36224];;FRS17EMB171612;FR*SOD*E*SIGE*125*1*2*_;;;;;;;;;;;;;;;;;;;30000550043746;2019-09-25;;;;;;;;0.082;43.492885;84440;Baignes-Sainte-Radegonde;; +;SAS Grapillon;;;;;;GVA VAULX ABBGAUCHE;FRSIGPSIGE3531;FR*SOD*S*SIGE*352*1*_*_;E.LECLERC - AMBOISE;;QUARTIER DU SABLAR;16292;[0.0724, 49.35691];;FRS17EMB171811;FR*SOD*E*SIGE*125*1*1*_;;;;;;;;;;;;;;;;;;;05599276336691;2021-10-14;;;;;;;;0.07346;45.76165;06380;Vars;; +;SAS Groupe 1807 Istres;;;;;;Plouasne;FRSIGPSIGE3541;FR*SOD*S*SIGE*353*1*_*_;IZIVIA | DEAUVILLE - BOULEVARD DES SPORTS;;PLACE DE LA CHALOSSE;16270;[0.082, 49.36005];;FRS17EMB171812;FR*SOD*E*SIGE*128*1*1*_;;;;;;;;;;;;;;;;;;;05521997073184;2022-10-18;;;;;;;;0.06664;49.362896;71500;Valence;; +;SAS Hugo;;;;;;638a101cbb23fb6dc695b185;FRSIGPSIGE3511;FR*SOD*S*SIGE*354*1*_*_;IZIVIA | DEAUVILLE - PLACE JOSEPHINE BAKER;;PLACE CAMILLE BOUVET;16350;[0.07346, 49.3443];;FRS17EMB171912;FR*SOD*E*SIGE*135*5*1*_;;;;;;;;;;;;;;;;;;;50007462496840;2023-01-13;;;;;;;;0.07042;49.36195;80550;Ansac-sur-Vienne;; +;SAS Prato;;;;;;VITRY LE FRANCOIS-Av. du quai des fontaines-127010;FRSIGPSIGE41612;FR*SOD*S*SIGE*355*1*_*_;IZIVIA | DEAUVILLE - AVENUE DU GENERAL DE GAULLE;;PARKING DU LAC;16317;[0.06664, 49.3547];;FRS17EMB171711;FR*SOD*E*SIGE*129*1*1*_;;;;;;;;;;;;;;;;;;;50077940966175;2023-06-03;;;;;;;;0.08303;49.36012;34470;Verdille;; +;SAS SI.AL;;;;;;PECHBLEU BORNE 3;FRSIGPSIGE3661;FR*SOD*S*SIGE*356*1*_*_;IZIVIA | DEAUVILLE - PARKING DE LESPLANADE DU BASSIN MORNY;;AVENUE DE LA DIGUE;16308;[0.07042, 49.35469];;FRS17EMB171712;FR*SOD*E*SIGE*129*1*2*_;;;;;;;;;;;;;;;;;;;2104630926877;2021-10-21;;;;;;;;0.07665;50.19432;14112;Coteaux-du-Blanzacais;; +;SDE82;;;;;;REIMS- René DESCARTES - 175071;FRSIGPSIGE3641;FR*SOD*S*SIGE*357*1*_*_;IZIVIA | DEAUVILLE - AVENUE DES MARECHAUX;;PARKING DU COLLÈGE;16295;[0.08303, 49.36278];;FRS17EMB171512;FR*SOD*E*SIGE*132*1*2*_;;;;;;;;;;;;;;;;;;;50041763941152;2023-01-03;;;;;;;;-1.519112;48.991535;01170;Biarritz;; +;SDC Le Triangle;;;;;;SUPER U CASTRES BORNE 2;FRSIGPSIGE3631;FR*SOD*S*SIGE*358*1*_*_;IZIVIA | DEAUVILLE - AVENUE DE LA REPUBLIQUE;;PARKING COOPÉRATIVE - FACE GENDARMERIE;16286;[0.07665, 49.36376];;FRS17EMB171611;FR*SOD*E*SIGE*132*1*1*_;;;;;;;;;;;;;;;;;;;30002350518927;2021-09-09;;;;;;;;4.80384;46.820196;14470;Bayonne;; +;SDC Parc de la Haie;;;;;;Aire de La Maxe;FRSIGPSIGE3061;FR*SOD*S*SIGE*359*1*_*_;IZIVIA | DEAUVILLE - SQUARE DE LEGLISE;;ROUTE DES LACS;16249;[-1.519112, 43.492885];;FRS17EMB171511;FR*SOD*E*SIGE*133*1*2*_;;;;;;;;;;;;;;;;;;;50031923245976;2019-05-22;;;;;;;;0.07448;45.819579;14210;Bénéjacq;; +;SARL Esbly Lavage;;;;;;LUDRES - PARKING DE LA MAIRIE - 187775;FRSIGPSIGE3051;FR*SOD*S*SIGE*360*1*_*_;IZIVIA | DEAUVILLE - QUAI DE LA TOUQUES;;PARKING ARRIÈRE PISCINE;16361;[4.80384, 45.76165];;FRS17EMB171412;FR*SOD*E*SIGE*133*1*1*_;;;;;;;;;;;;;;;;;;;50007758874699;2022-10-29;;;;;;;;0.07285;47.251353;49400;Bedous;; +;SARL Edgar - La Boucherie;;;;;;Village Catalan Ouest;FRSIGPSIGE3021;FR*SOD*S*SIGE*279*1*_*_;IZIVIA | DEAUVILLE - RUE MIRABEAU PROLONGEE;;ALLÉES MALICHECQ;16236;[0.07448, 49.362896];;FRS17EMB171411;FR*SOD*E*SIGE*134*3*1*_;;;;;;;;;;;;;;;;;;;300002620220;2023-06-02;;;;;;;;0.08352;49.582576;59850;Billère;; +;RRG Montreuil public;;;;;;LA CROIX EN TOURAINE 1256;FRSIGPSIGE3011;FR*SOD*S*SIGE*273*1*_*_;E.LECLERC ANGLET;;PARKING PLACE RUE DUCASSE;16231;[0.07285, 49.36195];;FRS17EMB171911;FR*SOD*E*SIGE*134*5*1*_;;;;;;;;;;;;;;;;;;;50034674425041;2019-05-30;;;;;;;;3.21121;48.828511;59400;Bidart;; +;RRG Mougins public;;;;;;SAINT JUST SAUVAGE - 57728 - Parking de l'Eglise;FRSIGPSIGE40711;FR*SOD*S*SIGE*274*1*_*_;E.LECLERC LYON BARTHELEMY;;MÉDIATHÈQUE;16230;[0.08352, 49.36012];;FRS17EMB172511;FR*SOD*E*SIGE*134*2*1*_;;;;;;;;;;;;;;;;;;;02572937765705;2023-05-08;;;;;;;;2.198934;45.954433;95450;Bordes;; +;RRG Mérignac public;;;;;;GVA PRIEST-EN AC2;FRSIGPSIGE40811;FR*SOD*S*SIGE*275*1*_*_;IZIVIA | DEAUVILLE - LYCEE - BD EUGENE CORNUCHE;;PARKING SEGOSA;16225;[3.21121, 50.19432];;FRS17EMB172012;FR*SOD*E*SIGE*134*4*1*_;;;;;;;;;;;;;;;;;;;50064341374561;2019-12-21;;;;;;;;1.669763;50.645579;69009;Bassussarry;; +;RRG Nice Riquier public;;;;;;Mionnay Saint-Galmier;FRSIGPSIGE40812;FR*SOD*S*SIGE*276*1*_*_;IZIVIA | DEAUVILLE - MARINA - BD EUGENE CORNUCHE;;PLACE DE LA DOUZE;16419;[2.198934, 48.991535];;FRS17EMB172011;FR*SOD*E*SIGE*134*1*1*_;;;;;;;;;;;;;;;;;;;50096758268104;2023-02-04;;;;;;;;3.14912;48.64879;44150;Bizanos;; +;RRG Pantin public;;;;;;GVA ECULLY AC;FRSIGPSIGE40912;FR*SOD*S*SIGE*277*1*_*_;IZIVIA | DEAUVILLE - GARE - PLACE LOUIS ARMAND;;AVENUE DE LOCÉAN;16192;[1.669763, 46.820196];;FRS17EMB171311;FR*SOD*E*SIGE*135*6*1*_;;;;;;;;;;;;;;;;;;;50041478992989;2020-06-13;;;;;;;;4.566611;45.814212;85160;Bidarray;; +;RRG Pessac public;;;;;;BIOPATH HDF COQUELLES 1;FRSIGPSIGE40911;FR*SOD*S*SIGE*278*1*_*_;INTERMARCHE CAMBRAI;;AVENUE DU STADE PARKING DU STADE GUY BONIFACE;16020;[3.14912, 45.819579];;FRS17EMB172512;FR*SOD*E*SIGE*141*1*1*_;;;;;;;;;;;;;;;;;;;02187606730510;2023-07-21;;;;;;;;3.643388;47.262201;88160;Bidache;; +;RRG Rungis public;;;;;;Saint-Witz;FRSIGPSIGE41012;FR*SOD*S*SIGE*272*1*_*_;NORAUTO - MONTIGNY;;PARKING LYCÉE JEAN ROSTAND;16076;[4.566611, 47.251353];;FRS17EMB172411;FR*SOD*E*SIGE*141*5*1*_;;;;;;;;;;;;;;;;;;;02535745229616;2020-12-04;;;;;;;;2.64417;47.759518;88340;Arcangues;; +;RRG Saint-Cloud public;;;;;;SAINT-MAURICE BORNE 3;FRSIGPSIGE41011;FR*SOD*S*SIGE*280*1*_*_;E.LECLERC SAINT MAUR NORD;;AUTOROUTE A43;16226;[3.643388, 49.582576];;FRS17EMB172412;FR*SOD*E*SIGE*141*2*1*_;;;;;;;;;;;;;;;;;;;30001911489579;2020-09-12;;;;;;;;-0.976783;46.59909;38300;Arbus;; +;RRG Services Marseille Michelet public;;;;;;Aire de Dracé;FRSIGPSIGE41111;FR*SOD*S*SIGE*281*1*_*_;INTERMARCHE GERZAT;;AUTOROUTE A2;16025;[2.64417, 48.828511];;FRS17EMB172311;FR*SOD*E*SIGE*427*1*2*_;;;;;;;;;;;;;;;;;;;16125904313399;2022-02-05;;;;;;;;3.098543;45.593597;56400;Arbonne;; +;SARL Au Vieux Moulin;;;;;;Jardin des arbres;FRSIGPSIGE41112;FR*SOD*S*SIGE*282*1*_*_;POUILLY EN AUXOIS;;AUTOROUTE A40;16393;[-0.976783, 45.954433];;FRS17EMB172312;FR*SOD*E*SIGE*152*2*1*_;;;;;;;;;;;;;;;;;;;06553256057905;2022-03-26;;;;;;;;2.56331;46.590128;56920;Aren;; +;RRG Maye public;;;;;;BEAUMONT EN VERON 15074 - Rue Paul Langevin;FRSIGPSIGE41212;FR*SOD*S*SIGE*283*1*_*_;INTERMARCHE LAON;;8 PLACE 30 OCTOBRE ET DE LA LÉGION DHONNEUR;16392;[3.098543, 50.645579];;FRS17EMB172211;FR*SOD*E*SIGE*152*3*1*_;;;;;;;;;;;;;;;;;;;01527351588204;2023-02-06;;;;;;;;1.268193;45.59193;56130;Bosdarros;; +;RRG Lyon Nord public;;;;;;638a0f9abb23fb6dc695ab55;FRSIGPSIGE41211;FR*SOD*S*SIGE*285*1*_*_;INTERMARCHE CROISSY BEAUBOURG;;RUE DU POINT DU JOUR;16016;[2.56331, 48.64879];;FRS17EMB172212;FR*SOD*E*SIGE*415*1*2*_;;;;;;;;;;;;;;;;;;;80000024337326;2020-03-07;;;;;;;;-1.59105;48.77495;56220;Bardos;; +;RRG Lyon Rillieux public;;;;;;Morières;FRSIGPSIGE41311;FR*SOD*S*SIGE*286*1*_*_;INTERMARCHE ROCHEFORT;;BARDONNAY;16397;[1.268193, 45.814212];;FRS17EMB172112;FR*SOD*E*SIGE*152*6*1*_;;;;;;;;;;;;;;;;;;;80000024337438;2021-01-21;;;;;;;;7.293566;48.027775;56760;Arudy;; +;RRG Lyon Sud public;;;;;;EPINAL - Place Jeanne Arc - 144226 - CCS;FRSIGPSIGE41312;FR*SOD*S*SIGE*271*1*_*_;INTERMARCHE MONS EN BAROEIL;;AUTOROUTE A31;16046;[-1.59105, 47.262201];;FRS17EMB172111;FR*SOD*E*SIGE*153*3*1*_;;;;;;;;;;;;;;;;;;;02431982526499;2021-05-29;;;;;;;;0.322088;44.786403;56420;Asson;; +;RRG Maurepas public;;;;;;Village Catalan Est;FRSIGPSIGE41412;FR*SOD*S*SIGE*287*1*_*_;INTERMARCHE COMBS-LA-VILLE;;AUTOROUTE A7;64122;[7.293566, 47.759518];;FRS17EMB17112;FR*SOD*E*SIGE*153*4*1*_;;;;;;;;;;;;;;;;;;;150400164470;2022-05-16;;;;;;;;5.9003;45.16407;56190;Ascain;; +;RSE (Régie Services Energie);;;;;;Ceignes Haut Bugey;FRSIGPSIGE41411;FR*SOD*S*SIGE*259*1*_*_;INTERMARCHE LIMOGES;;AUTOROUTE A71;64102;[0.322088, 46.59909];;FRS17EMB171312;FR*SOD*E*SIGE*153*1*1*_;;;;;;;;;;;;;;;;;;;50073748423074;2020-10-02;;;;;;;;3.330305;49.120483;56890;Arzacq-Arraziguet;; +;Rahling;;;;;;COMMERCY - 157987 - Piscine;FRSIGPSIGE41511;FR*SOD*S*SIGE*316*1*_*_;E.LECLERC ORVAULT;;RUE DE MANDRES;64109;[5.9003, 45.593597];;FRS17EMB17712;FR*SOD*E*SIGE*153*2*1*_;;;;;;;;;;;;;;;;;;;14202894281149;2019-12-04;;;;;;;;5.899208;47.628899;56140;Artiguelouve;; +;Ramonchamp;;;;;;ITEP-ROCHERS BORNE 1;FRSIGPSIGE2612;FR*SOD*S*SIGE*253*1*_*_;INTERMARCHE PFASTATT;;AUTOROUTE A9;64104;[3.330305, 46.590128];;FRS17EMB17612;FR*SOD*E*SIGE*430*1*2*_;;;;;;;;;;;;;;;;;;;02662518049049;2022-07-25;;;;;;;;2.495323;47.194623;56120;Arette;; +;Raon l'Etape;;;;;;Poix Terron - Rue de la gare - 188242;FRSIGPSIGE2711;FR*SOD*S*SIGE*254*1*_*_;INTERMARCHE POITIERS;;RUE GEORGES BESSE;64129;[5.899208, 45.59193];;FRS17EMB17511;FR*SOD*E*SIGE*430*1*1*_;;;;;;;;;;;;;;;;;;;25842547014070;2023-03-13;;;;;;;;0.18295;49.007023;56310;Artigueloutan;; +;Relai guillaume de Normandy;;;;;;VILLEFRANCHE SUR CHER 5020 - Rue Marcel Géré;FRSIGPSIGE2712;FR*SOD*S*SIGE*255*1*_*_;CC CHAMNORD 2;;AUTOROUTE A6;64125;[2.495323, 48.77495];;FRS17EMB17512;FR*SOD*E*SIGE*429*1*2*_;;;;;;;;;;;;;;;;;;;02550217005773;2022-12-28;;;;;;;;-0.602749;48.703034;56490;Arthez-de-Béarn;; +;Relais du Monarque;;;;;;SU LA CHAUME BORNE 1;FRSIGPSIGE2921;FR*SOD*S*SIGE*256*1*_*_;E.LECLERC - AVERMES;;RUE DE BANFORA;64138;[0.18295, 48.027775];;FRS17EMB17411;FR*SOD*E*SIGE*429*1*1*_;;;;;;;;;;;;;;;;;;;50036556810702;2019-05-04;;;;;;;;1.5076;47.704318;56700;Boucau;; +;Renault Gap Automobiles Groupe Synethis Public;;;;;;COURCAY 1234;FRSIGPSIGE2911;FR*SOD*S*SIGE*257*1*_*_;CC CHAMNORD 1;;RUE DE PEURON;64100;[-0.602749, 44.786403];;FRS17EMB17312;FR*SOD*E*SIGE*427*1*1*_;;;;;;;;;;;;;;;;;;;30000120466212;2021-05-23;;;;;;;;6.221395;49.075618;56320;Laruns;; +;RRG Tours public;;;;;;Aire d’Ambrussum Nord;FRSIGPSIGE2941;FR*SOD*S*SIGE*263*1*_*_;BON - STATION MULTI-ENERGIE BONNEUIL-SUR-MARNE;;PARKING ROUTE DE BOURESSE;64132;[1.5076, 45.16407];;FRS17EMB17311;FR*SOD*E*SIGE*141*4*1*_;;;;;;;;;;;;;;;;;;;15153979702222;2022-03-19;;;;;;;;6.8633;47.974601;56250;Lons;; +;RRG Trappes public;;;;;;Trets | Rue Clerion 1;FRSIGPSIGE2931;FR*SOD*S*SIGE*265*1*_*_;INTERMARCHE LE MANS;;PARKING INTERMARCHÉ;64124;[6.221395, 49.120483];;FRS17EMB17212;FR*SOD*E*SIGE*426*1*1*_;;;;;;;;;;;;;;;;;;;01537771299471;2019-05-03;;;;;;;;-1.573282;47.975755;56500;Lembeye;; +;RRG Versailles public;;;;;;09910787;FRSIGPSIGE3031;FR*SOD*S*SIGE*266*1*_*_;INTERMARCHE GRADIGNAN;;PLACE DE LA LIBERTÉ;64123;[6.8633, 47.628899];;FRS17EMB17211;FR*SOD*E*SIGE*426*1*2*_;;;;;;;;;;;;;;;;;;;30001630260645;2023-01-10;;;;;;;;2.352528;48.427316;56340;Lasseube;; +;RRG Lormont public;;;;;;Athée sur Cher 10710 - Place de la Mairie 1;FRSIGPSIGE3041;FR*SOD*S*SIGE*267*1*_*_;INTERMARCHE BRIVE;;PARKING VILLA VERDE;64038;[-1.573282, 47.194623];;FRS17EMB172612;FR*SOD*E*SIGE*425*1*2*_;;;;;;;;;;;;;;;;;;;50004426804963;2023-04-13;;;;;;;;2.59948;47.42451;56270;Louhossoa;; +;RRG Caen public;;;;;;GY EN SOLOGNE 211305 - rue croix Saint-André;FRSIGPSIGE7231;FR*SOD*S*SIGE*269*1*_*_;INTERMARCHE METZ;;RUE DE LA PREE;64037;[2.352528, 49.007023];;FRS17EMB17111;FR*SOD*E*SIGE*425*1*1*_;;;;;;;;;;;;;;;;;;;30000150486708;2022-12-17;;;;;;;;-0.053254;48.388316;56330;Larceveau-Arros-Cibits;; +;RME Loos;;;;;;Châteauroux Nord;FRSIGPSIGE7241;FR*SOD*S*SIGE*270*1*_*_;LECLERC BELFORT;;PLACE DE LA SALLE DES FÊTES;64035;[2.59948, 48.703034];;FRS17EMB17611;FR*SOD*E*SIGE*424*1*1*_;;;;;;;;;;;;;;;;;;;3000213082460;2022-09-10;;;;;;;;2.078485;47.876422;56620;Lacq;; +;RRG Aubagne public;;;;;;SONELOG LE PONTET 6;FRSIGPSIGE37612;FR*SOD*S*SIGE*289*1*_*_;NORAUTO - NANTES REZE;;LE BOURG;64039;[-0.053254, 47.704318];;FRS17EMB17711;FR*SOD*E*SIGE*424*1*2*_;;;;;;;;;;;;;;;;;;;01534442753789;2019-12-19;;;;;;;;0.216076;48.945617;56300;Laàs;; +;RRG Boulogne public;;;;;;BNR BORNE 1;FRSIGPSIGE13741;FR*SOD*S*SIGE*310*1*_*_;NORAUTO - SAINT BRICE;;PLACE SALLE DES FÊTES;64139;[2.078485, 49.075618];;FRS17EMB171212;FR*SOD*E*SIGE*421*1*2*_;;;;;;;;;;;;;;;;;;;30002580316936;2019-04-19;;;;;;;;0.15792;43.709187;56290;Mauléon-Licharre;; +;RRG Brest public;;;;;;Aire-jardin des Causses du Lot;FRSIGPSIGE13531;FR*SOD*S*SIGE*304*1*_*_;NORAUTO - BRIE COMTE ROBERT;;RUE DE LA CROIX;64094;[0.216076, 47.974601];;FRS17EMB171211;FR*SOD*E*SIGE*421*1*1*_;;;;;;;;;;;;;;;;;;;30000550056340;2023-04-14;;;;;;;;-4.469031;43.695694;56230;Navarrenx;; +;RRG Bruges public;;;;;;Aire de Rosny-Sud;FRSIGPSIGE13641;FR*SOD*S*SIGE*305*1*_*_;NORAUTO - LA FLECHE;;PLACE DE LEUROPE;64062;[0.15792, 47.975755];;FRS17EMB171111;FR*SOD*E*SIGE*420*1*2*_;;;;;;;;;;;;;;;;;;;50021938191801;2022-12-29;;;;;;;;0.659959;44.145809;56530;Morlaàs;; +;RME La Bresse;;;;;;BORNES WELDOM BORNE 2;FRSIGPSIGE13631;FR*SOD*S*SIGE*306*1*_*_;NORAUTO - OSNY;;PARKING RUE PAUL ELUARD;64068;[-4.469031, 48.427316];;FRS17EMB171112;FR*SOD*E*SIGE*420*1*1*_;;;;;;;;;;;;;;;;;;;50084890908371;2021-07-14;;;;;;;;-4.528937;43.882175;56170;Navailles-Angos;; +;RER;;;;;;Val de Reuil;FRSIGPSIGE13621;FR*SOD*S*SIGE*307*1*_*_;NORAUTO - LE MANS SUD;;PLACE DU PUITS;64065;[0.659959, 47.42451];;FRS17EMB171012;FR*SOD*E*SIGE*419*1*2*_;;;;;;;;;;;;;;;;;;;50022226964681;2023-03-29;;;;;;;;1.91136;43.714935;56880;Mourenx;; +;RESTAURANT GOLDEN LAKE 1;;;;;;QUADRIPACK BORNE 1;FRSIGPSIGE13661;FR*SOD*S*SIGE*307*2*_*_;NORAUTO - ALLONNES;;RUE DES DEMIERS;64063;[-4.528937, 48.388316];;FRS17EMB171011;FR*SOD*E*SIGE*172*1*1*_;;;;;;;;;;;;;;;;;;;50094441605790;2022-03-12;;;;;;;;2.206899;43.711033;56800;Mouguerre;; +;RRG Issy public;;;;;;BIOPATH HDF COQUELLES 2;FRSIGPSIGE13651;FR*SOD*S*SIGE*308*1*_*_;NORAUTO - BREST 1;;CARREFOUR D347-D45 – AIRE DE REPOS;64060;[1.91136, 47.876422];;FRS17EMB17912;FR*SOD*E*SIGE*152*5*1*_;;;;;;;;;;;;;;;;;;;30002580339432;2022-05-07;;;;;;;;-1.049525;44.03067;56240;Montaut;; +;RRG La Valentine public;;;;;;SONEPAR CCF AUBAGNE;FRSIGPSIGE13611;FR*SOD*S*SIGE*309*1*_*_;NORAUTO - TOURS ST CYR SUR LOIRE;;ARRÊT DE BUS ROUTE DE CIVRAY;64040;[2.206899, 48.945617];;FRS17EMB17911;FR*SOD*E*SIGE*152*1*1*_;;;;;;;;;;;;;;;;;;;50020080530758;2019-03-15;;;;;;;;-1.052169;43.640213;56680;Montardon;; +;RRG Le Mans public;;;;;;Aire du Manoire;FRSIGPSIGE13721;FR*SOD*S*SIGE*303*1*_*_;NORAUTO - BREST 2;;PLACE DU VIADUC;64059;[-1.049525, 43.709187];;FRS17EMB17812;FR*SOD*E*SIGE*152*4*1*_;;;;;;;;;;;;;;;;;;;50095478451908;2019-03-31;;;;;;;;-0.972001;43.657413;56770;Monein;; +;RRG Levallois public;;;;;;CGED SARLAT;FRSIGPSIGE13731;FR*SOD*S*SIGE*311*1*_*_;NORAUTO - ORLEANS OLIVET;;PLACE RUE DU COMTE JOUBERT;64057;[-1.052169, 43.695694];;FRS17EMB17811;FR*SOD*E*SIGE*151*1*2*_;;;;;;;;;;;;;;;;;;;50079559596466;2023-05-05;;;;;;;;-1.144952;43.595455;56430;Mazerolles;; +;RRG Grasse public;;;;;;QUADRIPACK BORNE 2;FRSIGPSIGE13711;FR*SOD*S*SIGE*312*1*_*_;NORAUTO - ARGENTEUIL;;LOTISSEMENT LES TERRAGEAUX;64140;[-0.972001, 44.145809];;FRS17EMB172611;FR*SOD*E*SIGE*142*3*1*_;;;;;;;;;;;;;;;;;;;50080112469665;2020-09-10;;;;;;;;-1.053255;43.645058;56360;Mazères-Lezons;; +;RRG Gardanne public;;;;;;LUYNES 1339;FRSIGPSIGE13761;FR*SOD*S*SIGE*313*1*_*_;DAX - PLACE ST PIERRE;;PLACE DU 11 NOVEMBRE;64320;[-1.144952, 43.882175];;FRS17EMB176012;FR*SOD*E*SIGE*142*6*1*_;;;;;;;;;;;;;;;;;;;50050447205185;2023-05-23;;;;;;;;-1.041901;43.702885;56260;La Bastide-Clairence;; +;RRG Courbevoie public;;;;;;NOTRE DAME D'OE 1341;FRSIGPSIGE13751;FR*SOD*S*SIGE*314*1*_*_;DAX - PLACE DE LA TORTE- RUE JOSEPH DE LAURENS;;PLACE DU SOUVENIR FRANÇAIS;64348;[-1.053255, 43.714935];;FRS17EMB175812;FR*SOD*E*SIGE*142*1*1*_;;;;;;;;;;;;;;;;;;;50072878309688;2023-06-17;;;;;;;;-0.924396;43.571198;56160;Jurançon;; +;RRG Cagnes public;;;;;;JAULNAY 1337;FRSIGPSIGE13861;FR*SOD*S*SIGE*315*1*_*_;ESCOURCE - ZONE DACTIVITES;;PARKING SALLE DES FÊTES;64331;[-1.041901, 43.711033];;FRS17EMB175811;FR*SOD*E*SIGE*142*5*1*_;;;;;;;;;;;;;;;;;;;50097047150904;2019-07-16;;;;;;;;-1.224409;43.773663;56370;Ciboure;; +;RRG Cannes public;;;;;;Longué-les-Cossonnières;FRSIGPSIGE13511;FR*SOD*S*SIGE*296*1*_*_;CASTETS - PARKING MAIRIE;;PLACE DE LA PORTE DE MIREBEAU;64324;[-0.924396, 44.03067];;FRS17EMB175612;FR*SOD*E*SIGE*142*2*1*_;;;;;;;;;;;;;;;;;;;080907000045;2023-05-18;;;;;;;;-0.592122;43.788254;56200;Espoey;; +;RRG Charenton public;;;;;;TREVERAY - 122901 - Mairie;FRSIGPSIGE13821;FR*SOD*S*SIGE*290*1*_*_;DAX - PARKING DE LA TANNERIE;;PARKING SALLES DES FÊTES;64350;[-1.224409, 43.640213];;FRS17EMB175613;FR*SOD*E*SIGE*142*4*1*_;;;;;;;;;;;;;;;;;;;09326772693990;2021-08-28;;;;;;;;-1.425559;43.662987;56460;Espelette;; +;RRG Fresnes public;;;;;;AUNEAU BLEURY ST SYMPHORIEN-Guy Vasselais-175635;FRSIGPSIGE13831;FR*SOD*S*SIGE*302*1*_*_;DAX - HOPITAL;;PLACE DU MAIL;64314;[-0.592122, 43.657413];;FRS17EMB175611;FR*SOD*E*SIGE*144*3*1*_;;;;;;;;;;;;;;;;;;;01111287984869;2019-07-23;;;;;;;;-1.432253;43.661537;56440;Denguin;; +;Régie des parkings de la mairie de Draguignan;;;;;;SONEPAR LISSES;FRSIGPSIGE13851;FR*SOD*S*SIGE*291*1*_*_;GARROSSE - AVENUE DE L OCEAN;;ROUTE DE LA GARE;64300;[-1.425559, 43.595455];;FRS17EMB175511;FR*SOD*E*SIGE*144*2*1*_;;;;;;;;;;;;;;;;;;;50013123749217;2019-07-30;;;;;;;;-0.927685;43.708202;56540;Coarraze;; +;Régie Talange;;;;;;Loché-sur-Indrois;FRSIGPSIGE13841;FR*SOD*S*SIGE*292*1*_*_;JOSSE - ENTREE PARKING COVOITURAGE;;ZA ST CAMPIN, 4 RUE MARIE CURIE;64287;[-1.432253, 43.645058];;FRS17EMB175512;FR*SOD*E*SIGE*144*5*1*_;;;;;;;;;;;;;;;;;;;123456789123;2023-07-22;;;;;;;;-0.928073;43.610508;56470;Casteide-Doat;; +;Régie de Marange;;;;;;CLOYES-SUR-LE-LOIR - Place Gambetta - 127147;FRSIGPSIGE13811;FR*SOD*S*SIGE*293*1*_*_;HAGETMAU - PLACE GRAMONT;;ROUTE DE LIMOGES PARKING CAMPING CAR;64371;[-0.927685, 43.702885];;FRS17EMB175513;FR*SOD*E*SIGE*144*4*1*_;;;;;;;;;;;;;;;;;;;50075919721549;2019-08-24;;;;;;;;-0.42846;44.480804;56690;Cambo-les-Bains;; +;Régie Niederbronn;;;;;;SONEPAR ST-VULBAS 2;FRSIGPSIGE13911;FR*SOD*S*SIGE*294*1*_*_;LABENNE - PARKING COTE PRESBYTERE;;PLACE DES TILLEULS;64416;[-0.928073, 43.571198];;FRS17EMB175411;FR*SOD*E*SIGE*144*6*1*_;;;;;;;;;;;;;;;;;;;50041617527248;2023-06-24;;;;;;;;-1.410125;43.634613;56630;Gan;; +;Run Charge;;;;;;SU COLOMBELLES BORNE 1;FRSIGPSIGE13941;FR*SOD*S*SIGE*295*1*_*_;CAPBRETON - AVENUE DU MARECHAL LECLERC;;IMPASSE DE PARIS;64405;[-0.42846, 43.773663];;FRS17EMB175413;FR*SOD*E*SIGE*144*1*1*_;;;;;;;;;;;;;;;;;;;30002420014810;2022-08-27;;;;;;;;-1.306919;43.881813;56100;Garlin;; +;Résidence Les Calanques;;;;;;CAUDRY MAIRIE;FRSIGPSIGE13951;FR*SOD*S*SIGE*299*1*_*_;HINX - PLACE DE LA MAIRIE;;PARKING DU DOMAINE DE LA BOURGEOISIE;64415;[-1.410125, 43.788254];;FRS17EMB175412;FR*SOD*E*SIGE*145*1*2*_;;;;;;;;;;;;;;;;;;;30001970342615;2022-01-29;;;;;;;;-1.442726;44.322952;56390;Jatxou;; +;SAEM Vialis Colmar;;;;;;LA CAPRICIEUSE GOLD;FRSIGPSIGE13931;FR*SOD*S*SIGE*297*2*_*_;HABAS - LOTISSEMENT LA BARRAQUE;;PLACE PALOUSIER;64410;[-1.306919, 43.662987];;FRS17EMB175313;FR*SOD*E*SIGE*145*1*1*_;;;;;;;;;;;;;;;;;;;031336138936;2020-12-19;;;;;;;;-1.430495;43.725822;56740;Hendaye;; +;SAEML SEM Genopole;;;;;;CHISSAY EN TOURAINE 4723 - Place du Château;FRSIGPSIGE13921;FR*SOD*S*SIGE*301*1*_*_;GRENADE SUR ADOUR - AVENUE DE HESINGUE;;RUE DES CHAMPS DORES;64407;[-1.442726, 43.661537];;FRS17EMB175311;FR*SOD*E*SIGE*146*1*1*_;;;;;;;;;;;;;;;;;;;21192474577706;2021-07-07;;;;;;;;-1.312809;43.726215;56570;Hélette;; +;Résidence Ariane;;;;;;GVA CARPENTRAS ABB;FRSIGPSIGE14161;FR*SOD*S*SIGE*300*1*_*_;VIEUX BOUCAU - PARKING PLAGE - AVENUE BREMONTIER;;PLACE DU CHAMPS DE BATAILLE;64400;[-1.430495, 43.708202];;FRS17EMB175312;FR*SOD*E*SIGE*146*1*2*_;;;;;;;;;;;;;;;;;;;30000150452207;2023-05-17;;;;;;;;-1.077171;44.063213;56550;Hasparren;; +;Rémilly;;;;;;Lyon-Dagneux Sud;FRSIGPSIGE14131;FR*SOD*S*SIGE*298*1*_*_;SAINT VINCENT DE TYROSSE - RUE CLAIRACQ;;PARKING RUE DE GUERTING;64399;[-1.312809, 43.610508];;FRS17EMB175211;FR*SOD*E*SIGE*147*2*1*_;;;;;;;;;;;;;;;;;;;30002580315608;2020-11-07;;;;;;;;-0.487642;43.708225;56110;Guéthary;; +;Régie d’électricité de Sainte Marie aux Chênes;;;;;;SONEPAR GRASSE;FRSIGPSIGE13521;FR*SOD*S*MB47*38*1*_*_;SOORTS HOSSEGOR - BOULEVARD DE LA DUNE;;AVENUE SADI CARNOT FACE GARE;64393;[-1.077171, 44.480804];;FRS17EMB175212;FR*SOD*E*SIGE*147*2*2*_;;;;;;;;;;;;;;;;;;;30000150212792;2021-11-29;;;;;;;;-0.519344;44.034054;56410;Ger;; +;Roger Bois;;;;;;SONEPAR AUBENAS 2;FRSIGPSIGE13541;FR*SOD*S*MB47*36*1*_*_;SEIGNOSSE - PLACE VICTOR GENTILLE;;BOULEVARD BLOSSAC;64374;[-0.487642, 43.634613];;FRS17EMB175213;FR*SOD*E*SIGE*148*1*2*_;;;;;;;;;;;;;;;;;;;01521418222243;2019-10-09;;;;;;;;-0.581232;43.631031;56750;Gelos;; +;Restaurant Cacot;;;;;;LA LOUPE - Rue Pasteur - 134213;FRSIGPSIGE11812;FR*SOD*S*MB47*37*1*_*_;SAUBRIGUES - PLACE DE LA MAIRIE;;PLACE DE GOMELANGE;64373;[-0.519344, 43.881813];;FRS17EMB172712;FR*SOD*E*SIGE*148*1*1*_;;;;;;;;;;;;;;;;;;;01535600556652;2021-04-30;;;;;;;;-1.052639;44.445004;56950;Sault-de-Navailles;; +;Restaurant Del Arte Abbeville;;;;;;MAINTENON - Place Aristide Briand - 128898;FRSIGPSIGE12812;FR*SOD*S*MB47*41*1*_*_;SANGUINET - RUE DU MARECHAL FERRANT;;RUE DU PONT DE LA TRAPPE;64289;[-0.581232, 44.322952];;FRS17EMB175111;FR*SOD*E*SIGE*149*1*2*_;;;;;;;;;;;;;;;;;;;50079739457970;2022-10-03;;;;;;;;-1.044376;43.828957;56850;Soumoulou;; +;Restaurant Le Vivier;;;;;;RAON AUX BOIS - ROUTE D'ARCHES - 162333 - CCS;FRSIGPSIGE11912;FR*SOD*S*MB47*39*1*_*_;SAMADET - PARKING ZONE COMMERCIALE;;RUE DU BROUSSA;64284;[-1.052639, 43.725822];;FRS17EMB175113;FR*SOD*E*SIGE*149*1*1*_;;;;;;;;;;;;;;;;;;;14398986941903;2023-01-28;;;;;;;;-1.227091;43.751686;56780;Serres-Castet;; +;Restaurant Les Chênes;;;;;;VERNOUILLET - 16 Avenue Marc CHAPPEY - 139069;FRSIGPSIGE11911;FR*SOD*S*MB47*40*1*_*_;SAINT PIERRE DU MONT - PARKING MAIRIE;;PLACE DE LETOILE;64189;[-1.044376, 43.726215];;FRS17EMB175112;FR*SOD*E*SIGE*150*1*1*_;;;;;;;;;;;;;;;;;;;50014992944665;2023-08-04;;;;;;;;-1.233307;43.891857;56560;Nay;; +;Rexel Grenoble Catm;;;;;;BASTIDE DU PLAN BORNE 1;FRSIGPSIGE12111;FR*SOD*S*MB47*35*1*_*_;SORE - PARKING PLACE DE LA POSTE;;RUE MAURICE RAVEL;64216;[-1.227091, 44.063213];;FRS17EMB175011;FR*SOD*E*SIGE*150*1*2*_;;;;;;;;;;;;;;;;;;;02555137407671;2019-09-27;;;;;;;;-0.320547;44.327576;56670;Sauveterre-de-Béarn;; +;Roche-lez-Beaupré;;;;;;SOREL-MOUSSEL - Place De La Mairie - 139436;FRSIGPSIGE12112;FR*SOD*S*MB47*33*1*_*_;SAINT PAUL LES DAX - PARKING JEAN ODDOS;;PLACE PAUL DEZANNEAU;64213;[-1.233307, 43.708225];;FRS17EMB175013;FR*SOD*E*SIGE*151*1*1*_;;;;;;;;;;;;;;;;;;;02532416713730;2023-01-14;;;;;;;;-1.396896;43.786724;56520;Sauvagnon;; +;Rennes, LS Group Longchamp public;;;;;;SONEPAR ST-VULBAS 9;FRSIGPSIGE12211;FR*SOD*S*MB47*34*1*_*_;SAINT PAUL LES DAX - GYMNASE DE LINGRES;;RUE DES CAVES BRION;64198;[-0.320547, 44.034054];;FRS17EMB175012;FR*SOD*E*SIGE*118*1*1*_;;;;;;;;;;;;;;;;;;;02585962299638;2020-07-05;;;;;;;;-1.250123;43.545513;56380;Sare;; +;Renault Trucks Choisy-au-Bac;;;;;;Maison Dieu;FRSIGPSIGE12212;FR*SOD*S*MB47*32*1*_*_;SAINT JULIEN EN BORN - PARKING RUE DES ECOLES;;RUE ANATOLE BRIEY;64191;[-1.396896, 43.631031];;FRS17EMB174912;FR*SOD*E*SIGE*117*1*2*_;;;;;;;;;;;;;;;;;;;02563386322796;2020-10-10;;;;;;;;-0.501203;43.556313;56150;Tardets-Sorholus;; +;Renault Georges Pruvost;;;;;;55 BAR LE DUC-place des exelmans-66230;FRSIGPSIGE12311;FR*SOD*S*MB47*31*1*_*_;SAINT GEOURS DE MARENNE - RUE DU GAVE AYGUE BLUE;;PARKING LIDL;64173;[-1.250123, 44.445004];;FRS17EMB174911;FR*SOD*E*SIGE*72*5*1*_;;;;;;;;;;;;;;;;;;;02556150432611;2022-09-1;;;;;;;;-1.32592;43.692356;56590;Salies-de-Béarn;; +;Renault Langeac;;;;;;GRAMAGLIA SARL BORNE ELECTRIC;FRSIGPSIGE12312;FR*SOD*S*MB47*30*1*_*_;ROQUEFORT - PARKING SQUARE JEAN CAILLUYE;;RUE DE LA TOURAINE;64160;[-0.501203, 43.828957];;FRS17EMB174812;FR*SOD*E*SIGE*85*3*1*_;;;;;;;;;;;;;;;;;;;02510998478604;2022-09-01;;;;;;;;-0.302908;43.562065;56910;Saint-Pierre-d'Irube;; +;Renault Sauvage;;;;;;LE THILLOT - 177158 - CCS;FRSIGPSIGE12412;FR*SOD*S*MB47*29*1*_*_;BENESSE MARENNE - D28 AIRE DE COVOITURAGE;;ROUTE DE MIREBEAU;64230;[-1.32592, 43.751686];;FRS17EMB176011;FR*SOD*E*SIGE*81*1*1*_;;;;;;;;;;;;;;;;;;;02592329882239;2021-09-02;;;;;;;;-0.946732;44.353287;56870;Saint-Pée-sur-Nivelle;; +;Renault Yssingeaux;;;;;;MONTLOUIS SUR LOIRE 1213 - Rue Rousseau;FRSIGPSIGE12411;FR*SOD*S*MB47*42*1*_*_;BISCARROSSE - PARKING DUFAU;;RUE PIERRE ET MARIE CURIE;64233;[-0.302908, 43.891857];;FRS17EMB176111;FR*SOD*E*SIGE*83*5*1*_;;;;;;;;;;;;;;;;;;;02522431185405;2022-06-13;;;;;;;;-1.402247;43.787643;56640;Saint-Palais;; +;Renault, Cogolin;;;;;;Aire de Jonchets - Les Récompenses;FRSIGPSIGE12512;FR*SOD*S*MB47*56*1*_*_;BENQUET - PARKING ECOLE;;PLACE DE LA PROMENADE;64282;[-0.946732, 44.327576];;FRS17EMB174813;FR*SOD*E*SIGE*83*4*1*_;;;;;;;;;;;;;;;;;;;02543559983486;2023-01-19;;;;;;;;-1.491811;43.916889;56610;Saint-Jean-Pied-de-Port;; +;Renault, Mèze;;;;;;BEVILLE LE COMTE - Rue Pinceloup - 130145;FRSIGPSIGE12511;FR*SOD*S*MB47*49*1*_*_;SOUSTONS - PARKING SALLE ROGER HANIN;;PLACE SAINT-VINCENT;64260;[-1.402247, 43.786724];;FRS17EMB176112;FR*SOD*E*SIGE*83*3*1*_;;;;;;;;;;;;;;;;;;;02584225686005;2022-08-10;;;;;;;;-1.237678;43.688267;56350;Uzein;; +;Rubis automobile;;;;;;Verdun Saint-Nicolas Nord;FRSIGPSIGE12811;FR*SOD*S*MB47*55*1*_*_;VILLENEUVE DE MARSAN - PLACE DE LA BOITERIE;;PARKING GYMNASE J.LATHUS;64259;[-1.491811, 43.545513];;FRS17EMB177413;FR*SOD*E*SIGE*83*2*1*_;;;;;;;;;;;;;;;;;;;02514037552180;2022-01-20;;;;;;;;-1.330115;43.980003;56580;Mont;; +;Roppenheim;;;;;;Allaire;FRSIGPSIGE13551;FR*SOD*S*MB47*54*1*_*_;YCHOUX - YCHOUX- PARKING DE COVOITURAGE PLACE FRANCK LAHARY;;RUE PORTE CHEVREAU;64256;[-1.237678, 43.556313];;FRS17EMB177412;FR*SOD*E*SIGE*83*1*1*_;;;;;;;;;;;;;;;;;;;02538929014494;2021-10-27;;;;;;;;-1.446481;43.69286;56510;Pau;; +;Rouffach;;;;;;XERTIGNY - 177098 - CCS;FRSIGPSIGE12911;FR*SOD*S*MB47*53*1*_*_;VIEUX BOUCAU - AVENUE DE LA LIBERTE;;PLACE RAOULT PERRET;64249;[-1.330115, 43.692356];;FRS17EMB177411;FR*SOD*E*SIGE*84*1*1*_;;;;;;;;;;;;;;;;;;;02554269100841;2020-12-03;;;;;;;;-1.072901;44.202587;56480;Villefranque;; +;SDEA (Syndicat départemental d'énergie de l'Aube) Public;;;;;;SOMOUEST BORNE 1;FRSIGPSIGE12912;FR*SOD*S*MB47*52*1*_*_;TARNOS - PARKING ESPACE BERTIN;;PARKING MULTIMODAL RN149;64238;[-1.446481, 43.562065];;FRS17EMB177311;FR*SOD*E*SIGE*84*2*1*_;;;;;;;;;;;;;;;;;;;02592185165178;2022-04-12;;;;;;;;-0.922969;43.876064;56660;Ustaritz;; +;SDED 52;;;;;;HOUDEMONT - Parking relais de la gare - 187685;FRSIGPSIGE13212;FR*SOD*S*MB47*51*1*_*_;SAINTE MARIE DE GOSSE - PLACE SALLE ISIDORE;;RUE DE LA MUTUALITÉ;64237;[-1.072901, 44.353287];;FRS17EMB177312;FR*SOD*E*SIGE*84*4*1*_;;;;;;;;;;;;;;;;;;;02559334224347;2022-07-30;;;;;;;;-0.449683;43.77866;56650;Urcuit;; +;SIB - Solutions Industry & Building;;;;;;CGED AUXERRE;FRSIGPSIGE13211;FR*SOD*S*MB47*50*1*_*_;TOSSE - SALLE DES SPORTS;;ROND POINT DU STADE;64510;[-0.922969, 43.787643];;FRS17EMB177211;FR*SOD*E*SIGE*84*6*1*_;;;;;;;;;;;;;;;;;;;02592329882901;2022-06-10;;;;;;;;-1.228767;43.849495;56730;Urt;; +;SEMNA;;;;;;EPINAL - Rue Philippe Séguin - 159235 - CCS;FRSIGPSIGE13312;FR*SOD*S*MB47*43*1*_*_;ONDRES - PLACE RICHARD FEUILLET;;RUE DES CHARRIÈRES;64526;[-0.449683, 43.916889];;FRS17EMB177212;FR*SOD*E*SIGE*84*5*1*_;;;;;;;;;;;;;;;;;;;02515629448857;2022-06-16;;;;;;;;-0.232223;43.884914;56000;Urrugne;; +;SEREC Experts;;;;;;SUPER U CARNAC BORNE 3;FRSIGPSIGE13311;FR*SOD*S*MB47*48*1*_*_;PARENTIS EN BORN - PARKING MAIRIE- AVENUE GERMINAL;;ALLÉE DES MARRONNIERS;64519;[-1.228767, 43.688267];;FRS17EMB177111;FR*SOD*E*SIGE*84*3*1*_;;;;;;;;;;;;;;;;;;;02571056366142;2022-08-22;;;;;;;;-1.008743;43.613544;56450;Ousse;; +;SHELL ARUE 1;;;;;;VOVES - Rue de Châteaudun - 141761;FRSIGPSIGE13431;FR*SOD*S*MB47*47*1*_*_;PONTONX SUR ADOUR - RUE DE BALUHEC PARKING DES ARENES;;CENTRE ROUTIER PAYRE, RN10;64417;[-0.232223, 43.980003];;FRS17EMB177112;FR*SOD*E*SIGE*85*5*1*_;;;;;;;;;;;;;;;;;;;02570911648382;2022-10-04;;;;;;;;-1.227322;43.670666;56860;Ossès;; +;SIALA AUTOMOBILES - CASTRES;;;;;;MASSAY - Place de l'église - 112319;FRSIGPSIGE13451;FR*SOD*S*MB47*46*1*_*_;SAINT AVIT - ALLEE MAMOURA;;RUE DE LÉCORCERIE;64513;[-1.008743, 43.69286];;FRS17EMB177012;FR*SOD*E*SIGE*81*2*1*_;;;;;;;;;;;;;;;;;;;02591461575404;2022-10-02;;;;;;;;-1.303443;43.661247;84150;Orthez;; +;SIALA AUTOMOBILES - LESCURE D'ALBIGEOIS;;;;;;UNILABS BIO CT CHATEAU THIERRY;FRSIGPSIGE13421;FR*SOD*S*MB47*45*1*_*_;SAINT GEOURS DE MARENNE - PARKING DERRIERE EGLISE;;AVENUE CLÉMENT ADER;64511;[-1.227322, 44.202587];;FRS17EMB177011;FR*SOD*E*SIGE*85*4*1*_;;;;;;;;;;;;;;;;;;;02518523804884;2020-11-23;;;;;;;;-1.213377;43.919731;59123;Oloron-Sainte-Marie;; +;SEM PMIE;;;;;;SAULCY SUR MEURTHE - 161611 - CCS;FRSIGPSIGE13441;FR*SOD*S*MB47*44*1*_*_;SAINT JUSTIN - PARKING ALLEE GASTON PHOEBUS;;PLACE DE DION BOUTON;64504;[-1.303443, 43.876064];;FRS17EMB176911;FR*SOD*E*SIGE*85*2*1*_;;;;;;;;;;;;;;;;;;;02592040447323;2022-04-15;;;;;;;;-1.359458;43.75444;62223;Saint-Jean-de-Luz;; +;SEFAM;;;;;;SANCERGUES - La Chicane - 181993;FRSIGPSIGE13411;FR*SOD*S*MB47*15*1*_*_;NARROSSE - MAIRIE;;AVENUE JACQUES COEUR;64533;[-1.213377, 43.77866];;FRS17EMB176912;FR*SOD*E*SIGE*85*1*1*_;;;;;;;;;;;;;;;;;;;02510274889633;2017-05-24;;;;;;;;-0.503016;43.760368;59264;Ogeu-les-Bains;; +;SEBA 15;;;;;;SONEPAR LAVAL;FRSIGPSIGE13561;FR*SOD*S*MB47*28*1*_*_;MIMIZAN - RUE DU JARDIN PUBLIC;;RUE DU BANFORA;64499;[-1.359458, 43.849495];;FRS17EMB176812;FR*SOD*E*SIGE*86*1*1*_;;;;;;;;;;;;;;;;;;;02562807451354;2018-11-05;;;;;;;;-1.125996;43.835133;14440;Puyoô;; +;SISE Plastics;;;;;;BRINON-sur-Sauldre - Maire - 186370;FRSIGPSIGE14111;FR*SOD*S*MB47*14*1*_*_;LEON - PLACE DE LABBE DULONG;;PLACE DU PLAN VERT;64496;[-0.503016, 43.884914];;FRS17EMB176811;FR*SOD*E*SIGE*86*2*1*_;;;;;;;;;;;;;;;;;;;02535021633360;2018-09-20;;;;;;;;-1.390726;43.727768;26200;Saint-Étienne-de-Baïgorry;; +;SUPER U Prissé;;;;;;BRECY - Mairie - 112944;FRSIGPSIGE14151;FR*SOD*S*MB47*13*1*_*_;MAGESCQ - AIRE DE COVOITURAGE;;RUE PIERRE MONNET;64495;[-1.125996, 43.613544];;FRS17EMB176711;FR*SOD*E*SIGE*86*3*1*_;;;;;;;;;;;;;;;;;;;02519247393842;2019-01-07;;;;;;;;-1.314985;43.541794;38600;Saint-Castin;; +;SVTA Hyundai Charleville-Mézières;;;;;;FIDEMECA BORNE 2;FRSIGPSIGE14121;FR*SOD*S*MB47*12*1*_*_;MOLIETS - PARKING DU TENNIS;;RUE CREUZE;64493;[-1.390726, 43.670666];;FRS17EMB176712;FR*SOD*E*SIGE*86*4*1*_;;;;;;;;;;;;;;;;;;;02519392111627;2019-05-29;;;;;;;;-0.918238;43.928139;73520;Pontacq;; +;Sagea Renault;;;;;;HENRICHEMONT - La Borne - 186354;FRSIGPSIGE42712;FR*SOD*S*MB47*11*1*_*_;MONT DE MARSAN - PARKING POLE DECHANGE MULTIMODAL;;PARKING STADE;64485;[-1.314985, 43.661247];;FRS17EMB176612;FR*SOD*E*SIGE*87*5*1*_;;;;;;;;;;;;;;;;;;;02552243052146;2019-05-31;;;;;;;;-1.328835;43.723057;09100;Poey-de-Lescar;; +;Saint Jacques de la Lande;;;;;;BOURGES - Parking Pyrotechnie - 96970;FRSIGPSIGE15221;FR*SOD*S*MB47*10*1*_*_;SAINT LON LES MINES - PARKING SUPERETTE;;PLACE DU 13 AOÛT 1944;64549;[-0.918238, 43.919731];;FRS17EMB176611;FR*SOD*E*SIGE*87*3*1*_;;;;;;;;;;;;;;;;;;;02566280678789;2018-08-03;;;;;;;;-0.572845;44.3279;51370;Villefranche-sur-Saône;; +;SUD GARONNE AUTOMOBILES;;;;;;VILLE EN TARDENOIS;FRSIGPSIGE15231;FR*SOD*S*MB47*9*1*_*_;SOORTS HOSSEGOR - AVENUE DES CHARPENTIERS;;PLACE RUE ST HILAIRE;64396;[-1.328835, 43.75444];;FRS17EMB176511;FR*SOD*E*SIGE*87*1*1*_;;;;;;;;;;;;;;;;;;;02571201083908;2018-03-08;;;;;;;;-0.814181;43.864971;74700;Saint-Bonnet-de-Mure;; +;SOS Dépannage 52;;;;;;CHEZAL-BENOIT - Poste - 112663;FRSIGPSIGE41512;FR*SOD*S*MB47*8*1*_*_;SAINT VINCENT DE TYROSSE - AVENUE DE TOURREN;;RUE DE LA GIROUARIÈRE;64445;[-0.572845, 43.760368];;FRS17EMB176512;FR*SOD*E*SIGE*87*4*1*_;;;;;;;;;;;;;;;;;;;02517221344601;2017-07-21;;;;;;;;-1.064402;44.231018;35510;Tupin-et-Semons;; +;SNC MCG La Tabatière;;;;;;DUN-SUR-AURON - Piscine - 115406;FRSIGPSIGE15261;FR*SOD*S*MB47*7*1*_*_;RION DES LANDES - PLACE GUILLAUME FRONTON;;PLACE RENÉ DESCARTES;64558;[-0.814181, 43.835133];;FRS17EMB176411;FR*SOD*E*SIGE*87*2*1*_;;;;;;;;;;;;;;;;;;;02515195295407;2017-09-12;;;;;;;;-1.386023;44.03413;34800;Saint-Sauveur-en-Rue;; +;SOMEDA;;;;;;LERE - Port - 204137;FRSIGPSIGE15331;FR*SOD*S*MB47*6*1*_*_;SOUSTONS - PARKING LABOUYRIE;;PLACE DE LECOLE;64547;[-1.064402, 43.727768];;FRS17EMB176412;FR*SOD*E*SIGE*81*5*1*_;;;;;;;;;;;;;;;;;;;02591316858325;2017-12-22;;;;;;;;-0.641041;44.211601;84320;Légny;; +;SPL Stationnement;;;;;;BONNEVAL - Rue de la grève - 134496;FRSIGPSIGE15341;FR*SOD*S*MB47*5*1*_*_;SAINT SEVER - PLACE DU TRIBUNAL;;RUE PABLO PICASSO;64540;[-1.386023, 43.541794];;FRS17EMB176311;FR*SOD*E*SIGE*81*4*1*_;;;;;;;;;;;;;;;;;;;50070867531067;2018-10-09;;;;;;;;-1.052096;43.968964;08000;Odenas;; +;Qualiconsult Lezennes;;;;;;PLAIMPIED GIVAUDINS - Gobbiers - 112214;FRSIGPSIGE15311;FR*SOD*S*MB47*4*1*_*_;TARTAS - RUE LEON BLUM;;CHEMIN DE LA CHEGNADE;64546;[-0.641041, 43.928139];;FRS17EMB176312;FR*SOD*E*SIGE*117*1*1*_;;;;;;;;;;;;;;;;;;;02586107017430;2022-04-13;;;;;;;;-0.962171;43.652554;81380;Chénas;; +;QUINCAILLERIE HUGUES 1;;;;;;SAINT-SATUR - Résistance - 200419;FRSIGPSIGE15321;FR*SOD*S*MB47*3*1*_*_;SAINT PAUL LES DAX - PARKING LAC DE CHRISTUS;;ROUTE DE PARTHENAY;64545;[-1.052096, 43.723057];;FRS17EMB176212;FR*SOD*E*SIGE*74*1*1*_;;;;;;;;;;;;;;;;;;;02519102676012;2022-04-26;;;;;;;;-0.591106;43.636551;03410;Les Haies;; +;Morbihan énergies Normale Proximité;;;;;;Châlons-en-Champagne | Rue du Flocmagny;FRSIGPSIGE43012;FR*SOD*S*MB47*2*1*_*_;SAINT MARTIN DE SEIGNANX - PARKING SUPER U;;PLACE PHILLIPPE LE HARDY;64439;[-0.962171, 44.3279];;FRS17EMB176211;FR*SOD*E*SIGE*72*1*1*_;;;;;;;;;;;;;;;;;;;02517076626811;2023-02-10;;;;;;;;-0.985157;43.98666;95610;Chaponnay;; +;Moselis;;;;;;ST MARGUERITE - Rue de la Meurthe - 159296 - CCS;FRSIGPSIGE43011;FR*SOD*S*MB47*1*1*_*_;SAINT MARTIN DONEY - PARKING PLACE;;RUE DE CHINCE;64436;[-0.591106, 43.864971];;FRS17EMB174811;FR*SOD*E*SIGE*72*6*1*_;;;;;;;;;;;;;;;;;;;02501736539143;2021-11-15;;;;;;;;-1.258727;43.698608;83460;Saint-Cyr-le-Chatoux;; +;Morbihan énergies Rapide;;;;;;EPINAL - Rue de Remiremont - 159049 - Type 2;FRSIGPSIGE42912;FR*SOD*S*MB47*27*1*_*_;SAINT PAUL LES DAX - RUE ANDRE FOURCADE;;PARKING DE LECOLE;64430;[-0.985157, 44.231018];;FRS17EMB174913;FR*SOD*E*SIGE*73*5*1*_;;;;;;;;;;;;;;;;;;;02522575903248;2021-05-25;;;;;;;;-0.920244;43.713142;12110;Bessenay;; +;Morez des Hauts-de-Bienne, Quai Jobez;;;;;;ZI PONTET BORNE 1;FRSIGPSIGE42911;FR*SOD*S*MB47*26*1*_*_;YCHOUX - PARKING DE LA MAIRIE AVENUE FELIX ARNAUDIN;;RUE DU LAVOIR;64422;[-1.258727, 44.03413];;FRS17EMB174711;FR*SOD*E*SIGE*73*3*1*_;;;;;;;;;;;;;;;;;;;02553979665208;2017-11-13;;;;;;;;-0.187404;43.707176;59110;Saint-Clément-de-Vers;; +;Mosaik Cristal;;;;;;Saint Junien;FRSIGPSIGE42711;FR*SOD*S*MB47*25*1*_*_;SAINT PERDON - RUE DE LEGLISE-PARKING MAIRIE;;GRAND RUE DE CHÂTEAUNEUF;64483;[-0.920244, 44.211601];;FRS17EMB173311;FR*SOD*E*SIGE*73*1*1*_;;;;;;;;;;;;;;;;;;;02554124383003;2022-02-21;;;;;;;;-0.59247;43.708969;63800;Bagnols;; +;Mr Bricolage Sainte-Clothilde;;;;;;CORCIEUX - Pl. du Gén de Gaulle - 161737 - CCS;FRSIGPSIGE14141;FR*SOD*S*MB47*24*1*_*_;LUE - PARKING MAIRIE;;LA MIGNOTTERIE - PÔLE MULTIMODAL;64421;[-0.187404, 43.968964];;FRS17EMB173712;FR*SOD*E*SIGE*73*2*1*_;;;;;;;;;;;;;;;;;;;02567293702824;2022-02-15;;;;;;;;-0.380386;43.653248;03310;Colombier-Saugnieu;; +;Muhlbach-sur-Munster;;;;;;DINOZE - 161636 - CCS;FRSIGPSIGE42611;FR*SOD*S*MB47*23*1*_*_;LIT ET MIXE - PARKING ARRIERE MAIRIE RUE DES ARENES;;ROUTE NATIONALE;64461;[-0.59247, 43.652554];;FRS17EMB173713;FR*SOD*E*SIGE*73*4*1*_;;;;;;;;;;;;;;;;;;;02555282125438;2021-12-08;;;;;;;;0.008552;44.395638;62610;Val d'Oingt;; +;Multiservices Loudunais;;;;;;Henrichemont;FRSIGPSIGE42612;FR*SOD*S*MB47*22*1*_*_;LABOUHEYRE - PARKING DE LA GARE;;BOULEVARD DE STRASBOURG;64477;[-0.380386, 43.636551];;FRS17EMB174712;FR*SOD*E*SIGE*74*5*1*_;;;;;;;;;;;;;;;;;;;02516931909076;2022-05-03;;;;;;;;-1.066157;43.591513;17320;Dommartin;; +;Muttersholtz;;;;;;LA CHAPELLE D'ANGILLON - Pl. du Monument - 112719;FRSIGPSIGE42512;FR*SOD*S*MB47*21*1*_*_;LABASTIDE DARMAGNAC - PLACE DES MARTYRES;;RUE GALILÉE;64472;[0.008552, 43.98666];;FRS17EMB173612;FR*SOD*E*SIGE*74*6*1*_;;;;;;;;;;;;;;;;;;;02522141749870;2020-09-04;;;;;;;;-1.0557;43.606438;62690;Bully;; +;Mutualia Grand Ouest;;;;;;St DOULCHARD - Gal De Gaulle - 140155;FRSIGPSIGE42511;FR*SOD*S*MB47*20*1*_*_;HAGETMAU - PARKING DES ARENES- CHEMIN DE LOUSSETS;;PARKING VALLÉE DES SINGES;64453;[-1.066157, 43.698608];;FRS17EMB173611;FR*SOD*E*SIGE*74*3*1*_;;;;;;;;;;;;;;;;;;;02553545511865;2018-03-02;;;;;;;;-1.040466;43.710106;20213;Lentilly;; +;Méribel - Les Allues;;;;;;VESDUN - Rte de St VITTE - 182380;FRSIGPSIGE42411;FR*SOD*S*MB47*19*1*_*_;GEAUNE - PARKING DE LA PISCINE;;PARKING DU STADE;64448;[-1.0557, 43.713142];;FRS17EMB173512;FR*SOD*E*SIGE*74*2*1*_;;;;;;;;;;;;;;;;;;;02544138855305;2018-02-08;;;;;;;;-1.055476;44.241581;20222;Belleville-en-Beaujolais;; +;Mr Bricolage Saint-Pierre;;;;;;LE CHATELET - Place de la Mairie - 143927;FRSIGPSIGE42412;FR*SOD*S*MB47*18*1*_*_;GABARRET - PARKING RUE ATTENSCHWILLER;;RUE DES VERDOISIERES;69264;[-1.040466, 43.707176];;FRS17EMB173513;FR*SOD*E*SIGE*74*4*1*_;;;;;;;;;;;;;;;;;;;02549493413941;2022-04-19;;;;;;;;-1.439685;43.814949;20169;Chazay-d'Azergues;; +;Mr Bricolage Fontenay-le-Comte;;;;;;Bonnieres sur Seine;FRSIGPSIGE42112;FR*SOD*S*MB47*17*1*_*_;DAX - RUE DE TERCIS;;RD29 LE BOURG;69287;[-1.055476, 43.708969];;FRS17EMB173511;FR*SOD*E*SIGE*75*1*2*_;;;;;;;;;;;;;;;;;;;02517655498034;2021-03-04;;;;;;;;-1.167335;43.628651;20620;Ampuis;; +;Mozerr Signal;;;;;;ROVILLE AUX CHENES - Plc des Erables - 159270-CCS;FRSIGPSIGE42111;FR*SOD*S*MB47*16*1*_*_;DAX - QUARTIER DU SABLAR;;RUE DE LECOLE;69253;[-1.439685, 43.653248];;FRS17EMB173412;FR*SOD*E*SIGE*81*3*1*_;;;;;;;;;;;;;;;;;;;02598986946060;2018-09-26;;;;;;;;-0.74467;43.543797;20290;Deux-Grosnes;; +;Moulins-les-Metz;;;;;;BANNEGON - Place saint Georges -117205;FRSIGPSIGE42012;FR*SOD*S*MB47*58*1*_*_;DAX - PLACE DE LA CHALOSSE;;PARKING DE LEGLISE;42287;[-1.167335, 44.395638];;FRS17EMB173411;FR*SOD*E*SIGE*75*1*1*_;;;;;;;;;;;;;;;;;;;02525614976759;2017-08-22;;;;;;;;-0.99688;44.34993;20119;Beaujeu;; +;Moutiers;;;;;;COURVILLE SUR EUR - Beauce - 137388;FRSIGPSIGE42011;FR*SOD*S*MB47*73*1*_*_;DAX - PLACE CAMILLE BOUVET;;PLACE DE LA POSTE;69111;[-0.74467, 43.591513];;FRS17EMB173413;FR*SOD*E*SIGE*76*1*2*_;;;;;;;;;;;;;;;;;;;02523010056637;2018-03-16;;;;;;;;-0.833645;43.750278;20140;Saint-Martin-en-Haut;; +;Mr Bricolage - Villefranche-de-Lauragais;;;;;;Shell- France Aire de Sommesous HW;FRSIGPSIGE41912;FR*SOD*S*MB47*85*1*_*_;CAPBRETON - PARKING DU LAC;;RUE DANIEL CORMIER;69145;[-0.99688, 43.606438];;FRS17EMB173313;FR*SOD*E*SIGE*76*1*1*_;;;;;;;;;;;;;;;;;;;02519826264306;2019-02-15;;;;;;;;-1.121237;44.358582;20226;Salles-Arbuissonnas-en-Beaujolais;; +;Morbihan énergies Normale;;;;;;REIGNY - Le Bourg - 148756;FRSIGPSIGE17211;FR*SOD*S*MB47*98*1*_*_;BISCARROSSE - PARKING MAIRIE;;ALLÉE DES MAGNALS;69053;[-0.833645, 43.710106];;FRS17EMB173312;FR*SOD*E*SIGE*77*1*2*_;;;;;;;;;;;;;;;;;;;02546599058040;2023-02-02;;;;;;;;-1.378626;43.896542;20224;Éveux;; +;Morbihan énergies FlexMob'Île;;;;;;ORGERES-EN-BEAUCE - Rue de l'Arsenal - 130014;FRSIGPSIGE15251;FR*SOD*S*MB47*97*1*_*_;AMOU - AVENUE DE LA DIGUE;;GRAND RUE - PLACE DE LA MAIRIE;69097;[-1.121237, 44.241581];;FRS17EMB173212;FR*SOD*E*SIGE*78*1*1*_;;;;;;;;;;;;;;;;;;;02521997032026;2022-05-06;;;;;;;;-0.82855;44.213303;20148;Jullié;; +;Monaco Parkings - Bornes publiques;;;;;;BOURGES - SDE18 - 186239;FRSIGPSIGE15211;FR*SOD*S*MB47*96*1*_*_;POUILLON - PARKING DU COLLEGE;;AVENUE JACQUES CŒUR;69270;[-1.378626, 43.814949];;FRS17EMB173813;FR*SOD*E*SIGE*78*1*2*_;;;;;;;;;;;;;;;;;;;02561939144069;2022-04-11;;;;;;;;-1.101548;43.89362;20115;Marchampt;; +;Mondial Auto;;;;;;St DOULCHARD - Clos Chaperon - 98613;FRSIGPSIGE15241;FR*SOD*S*MB47*95*1*_*_;MONTFORT EN CHALOSSE - PARKING COOPERATIVE - FACE GENDARMERIE;;BOULEVARD DU TERRIER BLANC;69192;[-0.82855, 43.628651];;FRS17EMB173211;FR*SOD*E*SIGE*79*1*1*_;;;;;;;;;;;;;;;;;;;02501447103220;2022-08-02;;;;;;;;-1.071594;43.851494;20245;Gleizé;; +;Montbéliard, Assurance Jacquemin;;;;;;BOURGES - Coubertin - 153420;FRSIGPSIGE15112;FR*SOD*S*MB47*94*1*_*_;PONTENX - PARKING EGLISE;;PLACE DU COMMERCE;69021;[-1.101548, 43.543797];;FRS17EMB173213;FR*SOD*E*SIGE*79*1*2*_;;;;;;;;;;;;;;;;;;;02562228579658;2022-01-25;;;;;;;;-0.749156;43.89635;20110;Loire-sur-Rhône;; +;Montmorot, Bureau Vallée;;;;;;MOLEANS - Rue du moulin - 134801;FRSIGPSIGE14231;FR*SOD*S*MB47*93*1*_*_;MESSANGES - ROUTE DES LACS;;PLACE FRANÇOIS ALBERT;69186;[-1.071594, 44.34993];;FRS17EMB173111;FR*SOD*E*SIGE*80*3*1*_;;;;;;;;;;;;;;;;;;;02518379086110;2021-10-26;;;;;;;;-0.761524;43.886929;20227;Condrieu;; +;Montrevel Auto;;;;;;CGED CGED ST QUENTIN;FRSIGPSIGE14261;FR*SOD*S*MB47*92*1*_*_;POMAREZ - PLACE DE LA MAIRIE;;PLACE DE LA CROIX CADET;69017;[-0.749156, 43.750278];;FRS17EMB173113;FR*SOD*E*SIGE*80*4*1*_;;;;;;;;;;;;;;;;;;;02532850866306;2020-08-13;;;;;;;;-0.491801;45.577675;20217;Mornant;; +;Moorea, Salvastore;;;;;;BOURGES - Séraucourt - 214519;FRSIGPSIGE14211;FR*SOD*S*MB47*91*1*_*_;PEYREHORADE - PARKING ARRIERE PISCINE;;RUE DES TOURS;69299;[-0.761524, 44.358582];;FRS17EMB173112;FR*SOD*E*SIGE*80*2*1*_;;;;;;;;;;;;;;;;;;;02564399346683;2018-11-06;;;;;;;;-1.292032;50.122249;20232;Simandres;; +;Parking Oasis;;;;;;SONEPAR GAP;FRSIGPSIGE14251;FR*SOD*S*MB47*90*1*_*_;PARENTIS EN BORN - ALLEES MALICHECQ;;1 RUE JOSEPH BLEIN;69024;[-0.491801, 43.896542];;FRS17EMB173013;FR*SOD*E*SIGE*80*1*1*_;;;;;;;;;;;;;;;;;;;02562083861806;2022-02-07;;;;;;;;-0.497182;45.914132;20218;Arnas;; +;Parking ZAC de Grandéols;;;;;;HMV MOYENMOUTIER 2;FRSIGPSIGE14221;FR*SOD*S*MB47*89*1*_*_;MUGRON - PARKING PLACE RUE DUCASSE;;RUE PIERRE ROBIN;69076;[-1.292032, 44.213303];;FRS17EMB173011;FR*SOD*E*SIGE*88*6*1*_;;;;;;;;;;;;;;;;;;;02517366062446;2021-03-26;;;;;;;;-1.385066;47.322222;20238;Les Chères;; +;Parkings Relais;;;;;;COULOMBS - Rue des Remparts - 139389;FRSIGPSIGE14241;FR*SOD*S*MB47*88*1*_*_;MOUSTEY - PARKING DE LA POSTE;;RUE DES VERRERIES;69032;[-0.497182, 43.89362];;FRS17EMB173012;FR*SOD*E*SIGE*88*5*1*_;;;;;;;;;;;;;;;;;;;02548480389469;2022-02-22;;;;;;;;-0.482222;47.295589;20250;Genas;; +;Ozoir la Ferrière;;;;;;NERONDES - Route de Bourges - 146793;FRSIGPSIGE14431;FR*SOD*S*MB47*87*1*_*_;MONT DE MARSAN - MEDIATHEQUE;;RUE PAUL CAZENEUVE;69112;[-1.385066, 43.851494];;FRS17EMB172812;FR*SOD*E*SIGE*88*3*1*_;;;;;;;;;;;;;;;;;;;02584949275066;2021-09-06;;;;;;;;-0.502202;46.872673;20260;Jons;; +;Parking Hôpital Valmy;;;;;;NOGENT-LE-ROTROU - Place du 11 août - 139024;FRSIGPSIGE14421;FR*SOD*S*MB47*86*1*_*_;MIMIZAN - PARKING SEGOSA;;RTE DU MONT-VERDUN;69019;[-0.482222, 43.89635];;FRS17EMB172811;FR*SOD*E*SIGE*110*1*1*_;;;;;;;;;;;;;;;;;;;02582199636579;2021-04-06;;;;;;;;5.630486;47.975185;20137;Saint-Pierre-de-Chandieu;; +;Parkélis;;;;;;VIGNEULES LES HATTONCHATEL - 66442 - Rte St MIhiel;FRSIGPSIGE14451;FR*SOD*S*MB47*99*1*_*_;MONT DE MARSAN - PLACE DE LA DOUZE;;BD DES CANUTS;69052;[-0.502202, 43.886929];;FRS17EMB172711;FR*SOD*E*SIGE*102*2*1*_;;;;;;;;;;;;;;;;;;;02543125830068;2021-10-04;;;;;;;;3.089774;47.977395;20167;Fleurie;; +;Pays de Bitche;;;;;;Freney;FRSIGPSIGE14441;FR*SOD*S*MB47*106*1*_*_;MOLIETS - AVENUE DE LOCEAN;;AV. PAUL SANTY;69007;[5.630486, 45.577675];;FRS17EMB173711;FR*SOD*E*SIGE*102*1*1*_;;;;;;;;;;;;;;;;;;;02517800215818;2019-01-29;;;;;;;;6.718141;45.019791;20100;Marennes;; +;Performa;;;;;;JANVILLE-EN-BEAUCE - Rue Sœur Saint-Henri - 130244;FRSIGPSIGE14461;FR*SOD*S*MB47*115*1*_*_;MONT DE MARSAN - PARKING CFA MONT DE MARSAN;;RUE GARIBALDI;69135;[3.089774, 50.122249];;FRS17EMB173613;FR*SOD*E*SIGE*103*1*2*_;;;;;;;;;;;;;;;;;;;02554847972044;2018-10-05;;;;;;;;5.052789;46.355543;20126;Soucieu-en-Jarrest;; +;Perle des Vosges;;;;;;Niort Saint-Florent;FRSIGPSIGE14411;FR*SOD*S*MB47*114*1*_*_;MONT DE MARSAN - PARKING LYCEE JEAN ROSTAND;;RTE DU MONT-THOU;69018;[6.718141, 45.914132];;FRS17EMB173811;FR*SOD*E*SIGE*103*1*1*_;;;;;;;;;;;;;;;;;;;02557018739092;2018-04-03;;;;;;;;5.145897;45.631355;20219;Lozanne;; +;Peronne Rey & Peronne Audinot;;;;;;RETHEL - 46445 - Place de la republique;FRSIGPSIGE14512;FR*SOD*S*MB47*113*1*_*_;AIRE DE ROMAGNIEU;;AV. DU POINT DU JOUR;69227;[5.052789, 47.322222];;FRS17EMB174313;FR*SOD*E*SIGE*105*1*2*_;;;;;;;;;;;;;;;;;;;02515340013205;2018-04-23;;;;;;;;3.159788;48.035643;20240;Villié-Morgon;; +;Perpignan Auto;;;;;;CHATELET SUR RETOURNE - 46461 - Parking D925;FRSIGPSIGE14511;FR*SOD*S*MB47*112*1*_*_;AIRE DE HAVRINCOURT;;AV. YOURI GAGARINE;69172;[5.145897, 47.295589];;FRS17EMB174713;FR*SOD*E*SIGE*105*1*1*_;;;;;;;;;;;;;;;;;;;02579594715491;2019-11-20;;;;;;;;5.498871;44.865884;20220;Pusignan;; +;Perpignan Avenir Auto;;;;;;BRIENNE SUR AISNE - 46468 - Parking Co-voiturage;FRSIGPSIGE14611;FR*SOD*S*MB47*109*1*_*_;AIRE DE PASSY LE FAYET;;RUE VAUBAN;69083;[3.159788, 46.872673];;FRS17EMB174612;FR*SOD*E*SIGE*106*1*1*_;;;;;;;;;;;;;;;;;;;02551953616506;2022-05-27;;;;;;;;5.497206;43.868104;20231;Saint-Étienne-des-Oullières;; +;Perrigny Immo;;;;;;Saint Brice Courcelle rue libération - 112430;FRSIGPSIGE14612;FR*SOD*S*MB47*100*1*_*_;STATION AVIA - PLACE DU 30 OCTOBRE;;RUE DEDIEU;69104;[5.498871, 47.975185];;FRS17EMB174613;FR*SOD*E*SIGE*106*1*2*_;;;;;;;;;;;;;;;;;;;02513892834845;2019-01-18;;;;;;;;4.876818;44.023808;20112;Anse;; +;Pays de Barr;;;;;;Verdun Saint-Nicolas Sud;FRSIGPSIGE14721;FR*SOD*S*MB47*105*1*_*_;STATION AVIA - CHEVIGNY ST SAUVEUR;;MNT DE CHOULANS;69124;[5.497206, 47.977395];;FRS17EMB174611;FR*SOD*E*SIGE*107*1*2*_;;;;;;;;;;;;;;;;;;;02516787190852;2018-06-01;;;;;;;;2.800955;47.244513;20230;Morancé;; +;Patachoux - SARL Albin;;;;;;Derval;FRSIGPSIGE14722;FR*SOD*S*MB47*104*1*_*_;AIRE DE MAGNY COURS;;AV. DE LHIPPODROME;69092;[4.876818, 45.019791];;FRS17EMB174511;FR*SOD*E*SIGE*107*1*1*_;;;;;;;;;;;;;;;;;;;02591751011710;2018-03-05;;;;;;;;4.819599;47.504832;20147;Marcilly-d'Azergues;; +;Partedis Public;;;;;;RETHEL - 46434 - Parking Place Victor Hugo;FRSIGPSIGE14812;FR*SOD*S*MB47*103*1*_*_;AIRE DE VAL DE MEUSE;;AV. DE BOHLEN;69118;[2.800955, 46.355543];;FRS17EMB174513;FR*SOD*E*SIGE*108*1*2*_;;;;;;;;;;;;;;;;;;;02504775613790;2018-07-20;;;;;;;;5.346847;46.56812;20121;Civrieux-d'Azergues;; +;Patapain Angouleme;;;;;;Shell- France Aire de Rumaucourt HW;FRSIGPSIGE14811;FR*SOD*S*MB47*102*1*_*_;AIRE DE MONTIGNY LE ROI;;AV. LECLERC;69064;[4.819599, 45.631355];;FRS17EMB174512;FR*SOD*E*SIGE*108*1*1*_;;;;;;;;;;;;;;;;;;;02549348696181;2017-04-25;;;;;;;;4.865158;46.396202;20150;Toussieu;; +;Patapain Thiers;;;;;;SAINTE GEMME MORONVAL - Rte Nogent le Roi - 130548;FRSIGPSIGE14912;FR*SOD*S*MB47*101*1*_*_;AIRE DE LATITUDE 45;;RUE JABOULAY;69141;[5.346847, 48.035643];;FRS17EMB174412;FR*SOD*E*SIGE*110*1*2*_;;;;;;;;;;;;;;;;;;;02579449997607;2017-05-16;;;;;;;;4.438933;46.563229;20228;Montrottier;; +;Parking Georges Santoni;;;;;;SUPER U CARNAC BORNE 1;FRSIGPSIGE14911;FR*SOD*S*MB47*84*1*_*_;AIRE DE LALLIER DOYET;;RUE PAUL BERT;69295;[4.865158, 44.865884];;FRS17EMB174411;FR*SOD*E*SIGE*88*4*1*_;;;;;;;;;;;;;;;;;;;02518523804111;2017-05-15;;;;;;;;4.889898;46.40226;20170;Échalas;; +;Parcus, Sainte-Aurélie;;;;;;SONEPAR CONNECT VICHY;FRSIGPSIGE15011;FR*SOD*S*MB47*59*1*_*_;AIRE DE SEREZIN DU RHONE;;RUE JEAN-MARIE LECLAIR;69013;[4.438933, 43.868104];;FRS17EMB173812;FR*SOD*E*SIGE*111*1*2*_;;;;;;;;;;;;;;;;;;;02579884151016;2021-06-28;;;;;;;;4.567375;46.410831;20160;Saint-Symphorien-sur-Coise;; +;Parcus, Bateliers;;;;;;BORNHDP BORNE 1;FRSIGPSIGE15012;FR*SOD*S*MB47*83*1*_*_;STATION AVIA - NOGENT;;RUE BONY;69055;[4.889898, 44.023808];;FRS17EMB174413;FR*SOD*E*SIGE*111*1*1*_;;;;;;;;;;;;;;;;;;;02533429737077;2019-09-09;;;;;;;;4.03745;46.483223;20215;Porte des Pierres Dorées;; +;Paea, LS TEHITI 1;;;;;;U FAULQUEMONT EMPLOYES;FRSIGPSIGE15111;FR*SOD*S*MB47*72*1*_*_;AIRE DE PORTES LES VALENCE OUEST;;PT RUE SAINT-EUSÈBE;69277;[4.567375, 47.244513];;FRS17EMB174311;FR*SOD*E*SIGE*112*1*2*_;;;;;;;;;;;;;;;;;;;02533719172687;2017-01-31;;;;;;;;0.64467;46.757252;20113;Saint-Laurent-d'Agny;; +;Palais 91;;;;;;Aire de Saint-Léger;FRSIGPSIGE11811;FR*SOD*S*MB47*71*1*_*_;AIRE DE MARGUERITTES SUD;;BD HONORÉ DE BALZAC;69280;[4.03745, 47.504832];;FRS17EMB174312;FR*SOD*E*SIGE*112*1*1*_;;;;;;;;;;;;;;;;;;;02583791531610;2019-12-11;;;;;;;;0.340932;46.466946;20200;Saint-Laurent-de-Chamousset;; +;Parc du Moulin à Vent;;;;;;HAILO FR BORNE 4;FRSIGPSIGE11712;FR*SOD*S*MB47*70*1*_*_;AIRE DE SORGUES;;PL. OLLIER;69289;[0.64467, 46.56812];;FRS17EMB174211;FR*SOD*E*SIGE*113*1*1*_;;;;;;;;;;;;;;;;;;;02580028868866;2022-03-16;;;;;;;;0.62974;46.158501;20233;Lesperon;; +;Parcus, Austerlitz;;;;;;LANNILIS SIEGE BORNE 2;FRSIGPSIGE7251;FR*SOD*S*MB47*69*1*_*_;STATION AVIA - GARAGE PAJOT;;AV. DU CHÂTEAU;69084;[0.340932, 46.396202];;FRS17EMB174112;FR*SOD*E*SIGE*113*1*2*_;;;;;;;;;;;;;;;;;;;02533574454819;2021-10-06;;;;;;;;0.72538;46.840988;20600;Seclin;; +;Pack Avenir;;;;;;AUNEAU-BLEURY ST SYMPHORIEN - Rue Patton -137338;FRSIGPSIGE8531;FR*SOD*S*MB47*68*1*_*_;AIRE DE MAISON DIEU;;RUE JACQUES MOYRON;69281;[0.62974, 46.563229];;FRS17EMB173913;FR*SOD*E*SIGE*114*1*2*_;;;;;;;;;;;;;;;;;;;02561215554860;2021-01-22;;;;;;;;0.59284;46.562309;67290;Beuzeville;; +;PNR Haut-Jura;;;;;;SONEPAR 3CCLIM VILLEBON;FRSIGPSIGE8111;FR*SOD*S*MB47*67*1*_*_;CHAUVIGNY BANFORA;;RUE SIMON FRYD;69176;[0.72538, 46.40226];;FRS17EMB173911;FR*SOD*E*SIGE*114*1*1*_;;;;;;;;;;;;;;;;;;;02552098334366;2022-05-31;;;;;;;;0.454083;46.916531;30100;Saugnac-et-Muret;; +;PATAPAIN - Saint Gervais La Forêt;;;;;;BOURGES - Asnieres - 104686;FRSIGPSIGE8351;FR*SOD*S*MB47*66*1*_*_;MARNAY;;RUE DU DAUPHINÉ;69121;[0.59284, 46.410831];;FRS17EMB173912;FR*SOD*E*SIGE*115*1*1*_;;;;;;;;;;;;;;;;;;;02552532487710;2022-04-30;;;;;;;;0.484916;46.117443;30140;Ribérac;; +;PATAPAIN BOURGES 661;;;;;;AUBIGNY - Place Résistance - 95964;FRSIGPSIGE8341;FR*SOD*S*MB47*65*1*_*_;CHAUVIGNY PEURON;;RUE DE LA CORDERIE;69267;[0.454083, 46.483223];;FRS17EMB174011;FR*SOD*E*SIGE*115*1*2*_;;;;;;;;;;;;;;;;;;;02522286467615;2017-04-24;;;;;;;;1.042778;46.435253;30170;Périgueux;; +;PATAPAIN DEOLS 653;;;;;;HADOL - PLACE VIVIN - 161845 - CCS;FRSIGPSIGE8331;FR*SOD*S*MB47*64*1*_*_;LUSSAC-LES-CHATEAUX CENTRE;;PL. ABBÉ BOURSIER;69285;[0.484916, 46.757252];;FRS17EMB174012;FR*SOD*E*SIGE*116*1*1*_;;;;;;;;;;;;;;;;;;;02548335671619;2019-12-30;;;;;;;;0.311;46.551029;34400;Saint-Cyprien;; +;PVP SAS;;;;;;BOURGES - Place Cothenet - 104721;FRSIGPSIGE8321;FR*SOD*S*MB47*63*1*_*_;VERRIERES;;AV. FRANÇOIS MITTERRAND;69189;[1.042778, 46.466946];;FRS17EMB174013;FR*SOD*E*SIGE*116*1*2*_;;;;;;;;;;;;;;;;;;;02591895729528;2020-11-03;;;;;;;;0.09176;46.675926;83500;Brantôme en Périgord;; +;Pacific Energy;;;;;;Pech Montat Ouest;FRSIGPSIGE8311;FR*SOD*S*MB47*62*1*_*_;NIEUIL L’ESPOIR;;PL. DU 8;69197;[0.311, 46.158501];;FRS17EMB174113;FR*SOD*E*SIGE*102*2*2*_;;;;;;;;;;;;;;;;;;;02520839289650;2018-11-13;;;;;;;;0.050749;46.258898;50300;Payzac;; +;Parcus, Broglie;;;;;;CHARTRES - Place Saint Jean - 134777;FRSIGPSIGE8411;FR*SOD*S*MB47*61*1*_*_;NAINTRE INTERMARCHE;;RTE DAMPÈRE;69009;[0.09176, 46.840988];;FRS17EMB174111;FR*SOD*E*SIGE*102*1*2*_;;;;;;;;;;;;;;;;;;;02521273443065;2020-04-21;;;;;;;;0.060184;46.258148;14460;Saint-Geniès;; +;Parcus, Dock 1;;;;;;HMV BORNE 1;FRSIGPSIGE8421;FR*SOD*S*MB47*60*1*_*_;LA TRIMOUILLE;;AV. DU DOYEN JEAN LÉPINE;69140;[0.050749, 46.562309];;FRS17EMB174213;FR*SOD*E*SIGE*101*1*1*_;;;;;;;;;;;;;;;;;;;02520984007435;2017-06-21;;;;;;;;0.233299;46.435724;11100;Saint-Jean-de-Côle;; +;Parcus, Europe Wacken;;;;;;GERARDMER - PLACE DU TILLEUL - 177260 - CCS;FRSIGPSIGE8441;FR*SOD*S*MB47*74*1*_*_;SAVIGNE;;RUE BARABAN;69125;[0.060184, 46.916531];;FRS17EMB174212;FR*SOD*E*SIGE*101*1*2*_;;;;;;;;;;;;;;;;;;;02525759694503;2017-06-20;;;;;;;;0.122311;46.761219;85490;Saint-Julien-de-Lampon;; +;Parcus, Gutenberg;;;;;;HMV BORNE 2;FRSIGPSIGE8461;FR*SOD*S*MB47*78*1*_*_;SAINT-JEAN DE SAUVES;;AV. MAURICE JARROSSON;69059;[0.233299, 46.117443];;FRSIGESIGE17731;FR*SOD*E*SIGE*88*1*1*_;;;;;;;;;;;;;;;;;;;02533285019229;2017-03-08;;;;;;;;0.921262;46.48457;77820;Saint-Léon-sur-Vézère;; +;Parcus, Petite France;;;;;;Gueux;FRSIGPSIGE8451;FR*SOD*S*MB47*82*1*_*_;BENASSAY;;RUE DE CHÂTEAU GAILLARD;69298;[0.122311, 46.435253];;FRSIGESIGE17811;FR*SOD*E*SIGE*88*2*1*_;;;;;;;;;;;;;;;;;;;02532995583687;2017-03-27;;;;;;;;0.175706;46.42062;77940;Saint-Martial-de-Nabirat;; +;Parcus, Saint-Nicolas;;;;;;LA LOUPE - Place de l'hôtel de ville - 134195;FRSIGPSIGE8431;FR*SOD*S*MB47*81*1*_*_;MARTAIZE;;BD DE STALINGRAD;69139;[0.921262, 46.551029];;FRSIGESIGE17741;FR*SOD*E*SIGE*89*5*1*_;;;;;;;;;;;;;;;;;;;02523444210004;2022-12-05;;;;;;;;0.427324;47.063301;77320;Saint-Pardoux-la-Rivière;; +;Parcus, Coubertin;;;;;;VIERZON - Pôle d'activités - 112534;FRSIGPSIGE8551;FR*SOD*S*MB47*80*1*_*_;SAINT-MACOUX;;AV. MARC SANGNIER;69080;[0.175706, 46.675926];;FRSIGESIGE17721;FR*SOD*E*SIGE*89*1*1*_;;;;;;;;;;;;;;;;;;;02521707596407;2019-10-30;;;;;;;;0.79966;46.81292;77760;Peyzac-le-Moustier;; +;Peugeot Bonachera, Prayssac;;;;;;Sainte Catherine;FRSIGPSIGE8121;FR*SOD*S*MB47*79*1*_*_;LUSIGNAN CENTRE;;AV. MARÉCHAL DE SAXE;69238;[0.427324, 46.258898];;FRSIGESIGE17711;FR*SOD*E*SIGE*89*3*1*_;;;;;;;;;;;;;;;;;;;02547901518269;2021-12-28;;;;;;;;0.994391;46.115108;77350;Saint-Avit-de-Vialard;; +;Proméo Afpi Picardie;;;;;;PLAINFAINE - Place de l'Eglise - 177421 - CCS;FRSIGPSIGE8541;FR*SOD*S*MB47*77*1*_*_;VILLEMORT;;BD PINEL;69159;[0.79966, 46.258148];;FRSIGESIGE17411;FR*SOD*E*SIGE*89*4*1*_;;;;;;;;;;;;;;;;;;;02547612082652;2021-03-16;;;;;;;;0.4882;46.439945;77990;Rouffignac-Saint-Cernin-de-Reilhac;; +;Poste de police Oignies;;;;;;ST-LUBIN-DES-JONCHERETS- Rue de la Baronie -139441;FRSIGPSIGE8521;FR*SOD*S*MB47*76*1*_*_;VILLIERS;;RUE DOMER;69219;[0.994391, 46.435724];;FRSIGESIGE17612;FR*SOD*E*SIGE*89*2*1*_;;;;;;;;;;;;;;;;;;;02547756800405;2021-11-22;;;;;;;;0.185004;46.275951;77540;Sagelat;; +;Pouchain Marcq-en-Baroeul;;;;;;CUFFY - Le Pont Canal - 117885;FRSIGPSIGE8511;FR*SOD*S*MB47*75*1*_*_;CHATEAU-GARNIER;;RUE DE LA VILLETTE;69220;[0.4882, 46.761219];;FRSIGESIGE17611;FR*SOD*E*SIGE*91*1*2*_;;;;;;;;;;;;;;;;;;;02584659839106;2018-12-27;;;;;;;;0.04111;46.230862;77610;Coly-Saint-Amand;; +;Premium Automobile;;;;;;LES COLONNADES BORNE 1;FRSIGPSIGE8611;FR*SOD*S*CAPS*28*1*_*_;ADRIERS;;RUE ROGER LENOIR;40152;[0.185004, 46.48457];;FRSIGESIGE17511;FR*SOD*E*SIGE*91*1*1*_;;;;;;;;;;;;;;;;;;;50089235921855;2018-02-05;;;;;;;;0.0177;46.645546;77165;Saint-Antoine-de-Breuilh;; +;Prestige Cars;;;;;;Bedenac Est;FRSIGPSIGE8621;FR*SOD*S*CAPS*26*1*_*_;SAINT-LEOMER;;RUE MARCEL MÉRIEUX;59560;[0.04111, 46.42062];;FRSIGESIGE17911;FR*SOD*E*SIGE*92*1*1*_;;;;;;;;;;;;;;;;;;;02504196742573;2022-03-28;;;;;;;;0.17276;46.60733;77580;Saint-Sulpice-de-Roumagnac;; +;Port des Issambres;;;;;;BOURGES - Juranville - 97770;FRSIGPSIGE8631;FR*SOD*S*CAPS*22*1*_*_;NAINTRE PAUL ELUARD;;PL. ARISTIDE BRIAND;27065;[0.0177, 47.063301];;FRSIGESIGE17512;FR*SOD*E*SIGE*92*1*2*_;;;;;;;;;;;;;;;;;;;50028465411117;2023-04-24;;;;;;;;0.57314;46.673271;77850;Saint-Astier;; +;Port de Camargue;;;;;;CHAROST - Place François Chapus - 200950;FRSIGPSIGE8641;FR*SOD*S*CAPS*23*1*_*_;COULOMBIERS;;AV. PIATON;40295;[0.17276, 46.81292];;FRSIGESIGE17812;FR*SOD*E*SIGE*93*1*1*_;;;;;;;;;;;;;;;;;;;02496381947493;2021-10-20;;;;;;;;0.42395;46.189831;77114;Saint Aulaye-Puymangou;; +;Port de Valras Plage;;;;;;BOURGES - Parking Anatole France - 98496;FRSIGPSIGE8751;FR*SOD*S*CAPS*24*1*_*_;ROUILLE;;BD DU 11;37272;[0.57314, 46.115108];;FRSIGESIGE18321;FR*SOD*E*SIGE*93*1*2*_;;;;;;;;;;;;;;;;;;;02501302386581;2018-04-17;;;;;;;;0.52613;46.390884;77450;Saint-Capraise-de-Lalinde;; +;Puy du Fou - Parking Parc;;;;;;Guérande;FRSIGPSIGE8731;FR*SOD*S*CAPS*25*1*_*_;LES TROIS MOUTIERS;;CR SUCHET;24352;[0.42395, 46.439945];;FRSIGESIGE17912;FR*SOD*E*SIGE*94*1*2*_;;;;;;;;;;;;;;;;;;;02597250288008;2022-06-17;;;;;;;;0.67396;46.424809;77370;Piégut-Pluviers;; +;Pépinière entreprise - Comcom Sarrebourg Moselle Sud;;;;;;VERT-EN-DROUAIS - Rue de l'Eglise - 139425;FRSIGPSIGE8711;FR*SOD*S*CAPS*8*1*_*_;CHOUPPES;;AV. DU RHÔNE;24322;[0.52613, 46.275951];;FRSIGESIGE18012;FR*SOD*E*SIGE*94*1*1*_;;;;;;;;;;;;;;;;;;;02585672864044;2017-12-05;;;;;;;;0.228739;46.444359;77440;Razac-sur-l'Isle;; +;Peugeot Pouillon;;;;;;EPPENDORF BORNE 4;FRSIGPSIGE8741;FR*SOD*S*CAPS*27*1*_*_;PRESSAC;;ESP. DANIEL SARRABAT;24396;[0.67396, 46.230862];;FRSIGESIGE18011;FR*SOD*E*SIGE*95*1*2*_;;;;;;;;;;;;;;;;;;;02512735091967;2022-01-24;;;;;;;;0.60268;47.010231;77640;Razac-de-Saussignac;; +;Polygone Béziers;;;;;;Aire de Bosgouet Sud;FRSIGPSIGE8721;FR*SOD*S*CAPS*55*1*_*_;GIZAY;;RTE DE GENÈVE;24064;[0.228739, 46.645546];;FRSIGESIGE18112;FR*SOD*E*SIGE*95*1*1*_;;;;;;;;;;;;;;;;;;;02547033211454;2021-12-09;;;;;;;;0.65243;46.37738;77133;Prigonrieux;; +;Ploërmel, Keybas;;;;;;BOURGES - Parking Hôtel de Ville - 95968;FRSIGPSIGE8151;FR*SOD*S*CAPS*29*1*_*_;USSON-DU-POITOU;;RUE STÉPHANE DECHANT;24320;[0.60268, 46.60733];;FRSIGESIGE18111;FR*SOD*E*SIGE*97*1*2*_;;;;;;;;;;;;;;;;;;;02522865338831;2022-07-29;;;;;;;;0.686995;47.00618;77470;Pomport;; +;Point P Halle de Pantin Public;;;;;;Saint-Léon-sur-l'Isle;FRSIGPSIGE8141;FR*SOD*S*CAPS*30*1*_*_;LE VIGEANT;;AV. DES FRÈRES MONTGOLFIER;24412;[0.65243, 46.673271];;FRSIGESIGE18212;FR*SOD*E*SIGE*97*1*1*_;;;;;;;;;;;;;;;;;;;50031927673075;2019-12-16;;;;;;;;0.545471;46.694561;77140;Port-Sainte-Foy-et-Ponchapt;; +;Point P Paris 18;;;;;;TOMBLAINES - PARKING BOIS LA DAME - 187398;FRSIGPSIGE11711;FR*SOD*S*CAPS*21*1*_*_;CISSE;;ALL. DE LA CHARDONNIÈRE;24425;[0.686995, 46.189831];;FRSIGESIGE18211;FR*SOD*E*SIGE*98*1*1*_;;;;;;;;;;;;;;;;;;;02519826265083;2017-11-02;;;;;;;;0.21484;46.549568;77230;Thenon;; +;Polyclinique St Privat;;;;;;Os-Marsillon;FRSIGPSIGE7411;FR*SOD*S*CAPS*20*1*_*_;BONNES;;RUE FLEURY SALIGNAT;24432;[0.545471, 46.390884];;FRSIGESIGE18311;FR*SOD*E*SIGE*98*1*2*_;;;;;;;;;;;;;;;;;;;02515918884024;2020-08-10;;;;;;;;0.16584;46.790241;77122;Val de Louyre et Caudeau;; +;Planet Auto;;;;;;Beaumont-de-Lomagne;FRSIGPSIGE7211;FR*SOD*S*CAPS*10*1*_*_;ARCHIGNY;;RUE DES MAURES;24443;[0.21484, 46.424809];;FRSIGESIGE18331;FR*SOD*E*SIGE*100*2*1*_;;;;;;;;;;;;;;;;;;;02562807451680;2022-06-24;;;;;;;;0.08266;46.519119;77480;Vézac;; +;Pharmacie de la gare;;;;;;Mas D'Agenais;FRSIGPSIGE7261;FR*SOD*S*CAPS*11*1*_*_;MILLAC;;RUE RENÉ TACHON;24450;[0.16584, 46.444359];;FRSIGESIGE18341;FR*SOD*E*SIGE*100*1*2*_;;;;;;;;;;;;;;;;;;;02554413818695;2022-01-06;;;;;;;;0.41207;46.14706;77520;Villamblard;; +;Peyrassol Evènements;;;;;;Bourbon-l'Archambault;FRSIGPSIGE7351;FR*SOD*S*CAPS*12*1*_*_;SAINT-LAURENT DE JOURDES;;PROM. LÉA ET NAPOLÉON BULLUKIAN;24479;[0.08266, 47.010231];;FRSIGESIGE17311;FR*SOD*E*SIGE*100*1*1*_;;;;;;;;;;;;;;;;;;;02554992689870;2019-05-17;;;;;;;;0.08608;46.730267;77720;Villars;; +;Pharmacie Fléchon;;;;;;Hastingues Sud;FRSIGPSIGE7331;FR*SOD*S*CAPS*13*1*_*_;MARIGNY-CHEMEREAU;;D7;24326;[0.41207, 46.37738];;FRSIGESIGE112;FR*SOD*E*SIGE*100*2*2*_;;;;;;;;;;;;;;;;;;;02554703254210;2019-05-16;;;;;;;;0.88642;46.142899;77163;Villefranche-de-Lonchat;; +;Pharmacie de la Rivière;;;;;;Arclusaz;FRSIGPSIGE7311;FR*SOD*S*CAPS*14*1*_*_;CLOUE;;RUE JEAN MARCUIT;24377;[0.08608, 47.00618];;FRSIGESIGE17412;FR*SOD*E*SIGE*377*1*1*_;;;;;;;;;;;;;;;;;;;02554558536430;2019-10-18;;;;;;;;0.34213;46.435719;77176;Villefranche-du-Périgord;; +;Pont-à-Mousson;;;;;;Aire de L'Obrion;FRSIGPSIGE7321;FR*SOD*S*CAPS*16*1*_*_;LOUDUN MAIRIE;;RUE ARTAUD;24356;[0.88642, 46.694561];;FRSIGESIGE111;FR*SOD*E*SIGE*35*6*1*_;;;;;;;;;;;;;;;;;;;02547177929262;2019-05-13;;;;;;;;0.18378;46.307259;77123;Bergerac;; +;Pont à Mousson 2;;;;;;Pech Montat Est;FRSIGPSIGE7341;FR*SOD*S*CAPS*17*1*_*_;SAINT-MAURICE LA CLOUERE;;RUE MARIUS BERLIET;24360;[0.34213, 46.549568];;FRSIGESIGE17312;FR*SOD*E*SIGE*376*1*1*_;;;;;;;;;;;;;;;;;;;02584370403865;2018-10-11;;;;;;;;0.33276;46.485222;77750;Coulounieix-Chamiers;; +;Novotel Anglet;;;;;;SONEPAR CONNECT RAILLENCOURT;FRSIGPSIGE7451;FR*SOD*S*CAPS*18*1*_*_;LOUDUN PORTE DE MIREBEAU;;PL. CARNOT;24364;[0.18378, 46.790241];;FRSIGESIGE4441;FR*SOD*E*SIGE*209*1*1*_;;;;;;;;;;;;;;;;;;;02555860997078;2023-01-25;;;;;;;;0.29635;46.77956;77151;La Rochebeaucourt-et-Argentine;; +;O.H.S de Lorraine;;;;;;3C CLIM TOURS;FRSIGPSIGE7461;FR*SOD*S*CAPS*19*1*_*_;ANGLES SUR LANGLIN;;RUE DE BONNEL;24370;[0.33276, 46.519119];;FRSIGESIGE4211;FR*SOD*E*SIGE*203*1*2*_;;;;;;;;;;;;;;;;;;;02523154774461;2022-02-28;;;;;;;;0.306536;46.701389;77150;Thiviers;; +;OPAC de l'Oise public;;;;;;Portes d'Angers Sud;FRSIGPSIGE7431;FR*SOD*S*CAPS*31*1*_*_;SAINT-BENOIT;;QUAI JOSEPH GILLET;24504;[0.29635, 46.14706];;FRSIGESIGE4241;FR*SOD*E*SIGE*204*1*1*_;;;;;;;;;;;;;;;;;;;02549493413504;2017-02-12;;;;;;;;0.40692;46.758801;77250;Verteillac;; +;Nougalet;;;;;;BORNE HU BORNE DC 02;FRSIGPSIGE7421;FR*SOD*S*CAPS*32*1*_*_;MIREBEAU MAIL;;BD EUGÈNE RÉGUILLON;24372;[0.306536, 46.730267];;FRSIGESIGE4311;FR*SOD*E*SIGE*204*1*2*_;;;;;;;;;;;;;;;;;;;02543270548133;2021-12-29;;;;;;;;0.5978;46.610401;77650;Vélines;; +;Nouveaux garages Douaisiens Public;;;;;;Herbiers;FRSIGPSIGE7441;FR*SOD*S*CAPS*42*1*_*_;LIGUGE;;RUE JEAN-BAPTISTE CLÉMENT;24376;[0.40692, 46.142899];;FRSIGESIGE4331;FR*SOD*E*SIGE*205*1*2*_;;;;;;;;;;;;;;;;;;;02579739433912;2023-04-19;;;;;;;;0.18271;46.661129;77950;Terrasson-Lavilledieu;; +;Nov Habitat;;;;;;ST AME - RUE DU STADE - 184031 - CCS;FRSIGPSIGE7512;FR*SOD*S*CAPS*43*1*_*_;CIVRAY;;RUE SERVIENT;24382;[0.5978, 46.435719];;FRSIGESIGE4321;FR*SOD*E*SIGE*205*1*1*_;;;;;;;;;;;;;;;;;;;02554847972481;2020-07-21;;;;;;;;0.31542;46.361571;77130;Tamniès;; +;OTI, Cournon d'Auvergne;;;;;;Maurs;FRSIGPSIGE8131;FR*SOD*S*CAPS*44*1*_*_;VENDEUVRE DU POITOU ZA;;BD EUGÈNE DERUELLE;24328;[0.18271, 46.307259];;FRSIGESIGE4361;FR*SOD*E*SIGE*206*1*2*_;;;;;;;;;;;;;;;;;;;02545296597384;2021-12-30;;;;;;;;0.61404;46.818298;77120;Sourzac;; +;Office notarial PJHB public;;;;;;SONEPAR VITROLLES 4;FRSIGPSIGE7511;FR*SOD*S*CAPS*45*1*_*_;CHARROUX;;AV. CHARLES DE GAULLE;24350;[0.31542, 46.485222];;FRSIGESIGE4341;FR*SOD*E*SIGE*206*1*1*_;;;;;;;;;;;;;;;;;;;50058266302455;2017-04-13;;;;;;;;0.160335;46.818611;77154;Tocane-Saint-Apre;; +;Olitom;;;;;;UNILABS BIO CT REIMS PT;FRSIGPSIGE7612;FR*SOD*S*CAPS*46*1*_*_;LHOMMAIZE;;ALL. DE LA FIBRE FRANÇAISE;24349;[0.61404, 46.77956];;FRSIGESIGE4351;FR*SOD*E*SIGE*207*1*1*_;;;;;;;;;;;;;;;;;;;02526049127880;2018-04-26;;;;;;;;0.09682;46.444469;77410;Tourtoirac;; +;Omega - Amnéville;;;;;;SONEPAR CONNECT MAGNANVILLE;FRSIGPSIGE7611;FR*SOD*S*CAPS*47*1*_*_;COUHE-VERAC;;RUE DU 1ER MARS;24340;[0.160335, 46.701389];;FRSIGESIGE4431;FR*SOD*E*SIGE*207*1*2*_;;;;;;;;;;;;;;;;;;;50016588443745;2019-03-04;;;;;;;;0.22979;46.172569;77160;Trélissac;; +;Office du tourisme de Gruissan;;;;;;CCI CAEN STATION 1;FRSIGPSIGE7712;FR*SOD*S*CAPS*49*1*_*_;ITEUIL;;RUE EMILE DUPORT;24331;[0.09682, 46.758801];;FRSIGESIGE4451;FR*SOD*E*SIGE*208*1*1*_;;;;;;;;;;;;;;;;;;;50060871247485;2022-04-25;;;;;;;;-0.00364;46.41752;77390;Sarliac-sur-l'Isle;; +;Occitane automobile Agde;;;;;;Paris | Rue du Faubourg Saint-Antoine 45;FRSIGPSIGE7811;FR*SOD*S*CAPS*50*1*_*_;SENILLE;;RUE THOMAS BLANCHET;24335;[0.22979, 46.610401];;FRSIGESIGE4461;FR*SOD*E*SIGE*208*1*2*_;;;;;;;;;;;;;;;;;;;50096761238559;2022-03-11;;;;;;;;0.61114;46.5597;77169;Sorges et Ligueux en Périgord;; +;Obernai;;;;;;TERRA_54_011;FRSIGPSIGE7812;FR*SOD*S*CAPS*51*1*_*_;LE ROCHEREAU;;RUE ANTOINE CHARIAL;24550;[-0.00364, 46.661129];;FRSIGESIGE4421;FR*SOD*E*SIGE*209*1*2*_;;;;;;;;;;;;;;;;;;;50027297365434;2018-10-08;;;;;;;;0.54894;46.67931;77124;Siorac-en-Périgord;; +;Occitane Auto Pezenas;;;;;;MEHUN-sur-Yèvre - Square 8 Mai 1945 - 184331;FRSIGPSIGE7911;FR*SOD*S*CAPS*53*1*_*_;CUHON;;AV. DE LANESSAN;24362;[0.61114, 46.361571];;FRSIGESIGE4411;FR*SOD*E*SIGE*210*1*1*_;;;;;;;;;;;;;;;;;;;25700000622580;2022-08-31;;;;;;;;0.5452;46.598221;77167;Sigoulès-et-Flaugeac;; +;Norauto Saint-Benoît;;;;;;CROYES-SUR-LE-LOIR - Piscine - 127485;FRSIGPSIGE7912;FR*SOD*S*CAPS*41*1*_*_;QUINCAY;;RUE BRANLY;24577;[0.54894, 46.818298];;FRSIGESIGE4251;FR*SOD*E*SIGE*202*1*1*_;;;;;;;;;;;;;;;;;;;26300000001323;2020-08-31;;;;;;;;0.66512;46.570751;77126;Savignac-les-Églises;; +;Neubauer;;;;;;CHATEAUDUN - Place de Schweinfurt - 127481;FRSIGPSIGE8031;FR*SOD*S*CAPS*33*1*_*_;CHALANDRAY;;IMP. DES ÉCOLES;24581;[0.5452, 46.818611];;FRSIGESIGE4511;FR*SOD*E*SIGE*210*1*2*_;;;;;;;;;;;;;;;;;;;30002450581278;2018-11-15;;;;;;;;0.51656;46.806728;77118;Sarlat-la-Canéda;; +;New auto Atelier Chavelot;;;;;;BLOIS 4750 - Mail Pierre Charlot;FRSIGPSIGE8041;FR*SOD*S*CAPS*34*1*_*_;BOURESSE;;AV. JEAN GOTAIL;24582;[0.66512, 46.444469];;FRSIGESIGE4512;FR*SOD*E*SIGE*211*1*2*_;;;;;;;;;;;;;;;;;;;30002350641342;2017-12-27;;;;;;;;0.31243;46.490733;77590;Singleyrac;; +;Nogagers;;;;;;BOURGES - Daurat - 178309;FRSIGPSIGE8021;FR*SOD*S*CAPS*35*1*_*_;CHATELLERAULT GARE;;RUE MARTIN;24584;[0.51656, 46.172569];;FRSIGESIGE4611;FR*SOD*E*SIGE*211*1*1*_;;;;;;;;;;;;;;;;;;;25700000326120;2021-07-23;;;;;;;;0.49724;46.91925;77830;Salignac-Eyvigues;; +;Nogent-sur-Vernisson;;;;;;La Vôge les Bains;FRSIGPSIGE8011;FR*SOD*S*CAPS*36*1*_*_;CHATELLERAULT BLOSSAC;;AV. MARÉCHAL FOCH;24585;[0.31243, 46.41752];;FRSIGESIGE4612;FR*SOD*E*SIGE*212*1*1*_;;;;;;;;;;;;;;;;;;;30001654000954;2022-08-19;;;;;;;;0.84278;46.357182;77190;Sanilhac;; +;Netto Musièges;;;;;;SONEPAR CONNECT SAINT NAZAIRE;FRSIGPSIGE8861;FR*SOD*S*CAPS*37*1*_*_;CIVAUX;;CHEM. DE LA MENDILLONNE;24037;[0.49724, 46.5597];;FRSIGESIGE4712;FR*SOD*E*SIGE*212*1*2*_;;;;;;;;;;;;;;;;;;;300025600B5505;2018-05-29;;;;;;;;0.35242;46.8363;77840;Lalinde;; +;Netto Belleville;;;;;;Veyre;FRSIGPSIGE8851;FR*SOD*S*CAPS*38*1*_*_;MAUPREVOIR;;RUE GAMBETTA;24138;[0.84278, 46.67931];;FRSIGESIGE4711;FR*SOD*E*SIGE*213*1*2*_;;;;;;;;;;;;;;;;;;;30002530265690;2020-07-03;;;;;;;;0.46523;46.776592;77570;Château-l'Évêque;; +;Netto Aubusson;;;;;;Bolleville Ouest;FRSIGPSIGE8831;FR*SOD*S*CAPS*39*1*_*_;CHATEAU-LARCHER;;RUE DU 11;24353;[0.35242, 46.598221];;FRSIGESIGE4812;FR*SOD*E*SIGE*213*1*1*_;;;;;;;;;;;;;;;;;;;30002531651038;2021-09-16;;;;;;;;0.01791;46.71077;77310;Cherveix-Cubas;; +;Norauto, la Reunion;;;;;;BOULLERET - Eglise - 117188;FRSIGPSIGE11011;FR*SOD*S*CAPS*40*1*_*_;SAINT-JULIEN LARS;;LE PRÉ VERT;24551;[0.46523, 46.570751];;FRSIGESIGE4811;FR*SOD*E*SIGE*214*1*2*_;;;;;;;;;;;;;;;;;;;09486685920350;2023-02-15;;;;;;;;0.810447;46.759583;77970;Saint-Saud-Lacoussière;; +;Norske Skog;;;;;;Shell Aire de Béziers-Montblanc SUD;FRSIGPSIGE10221;FR*SOD*S*CAPS*3*1*_*_;SAINT-PIERRE DE MAILLE;;RTE DU PILON;24573;[0.01791, 46.806728];;FRSIGESIGE4911;FR*SOD*E*SIGE*214*1*1*_;;;;;;;;;;;;;;;;;;;19135310998625;2021-07-06;;;;;;;;0.21306;46.43398;77510;Javerlhac-et-la-Chapelle-Saint-Robert;; +;Norcan Sherpa Mobile Robotics;;;;;;Shell Aire de la plaine du Forez Ouest HW;FRSIGPSIGE10211;FR*SOD*S*CAPS*6*1*_*_;BUXEROLLES;;CHEM. DE LAFRIQUE;24568;[0.810447, 46.490733];;FRSIGESIGE4912;FR*SOD*E*SIGE*215*1*1*_;;;;;;;;;;;;;;;;;;;00000;2019-03-27;;;;;;;;0.393296;46.56596;77890;Vergt;; +;Norma Illzach;;;;;;UTILE LAPALUD BORNE 2;FRSIGPSIGE10312;FR*SOD*S*CAPS*1*1*_*_;SEVRES-ANXAUMONT;;RUE GUSTAVE NADAUD;24547;[0.21306, 46.91925];;FRSIGESIGE5112;FR*SOD*E*SIGE*215*1*2*_;;;;;;;;;;;;;;;;;;;30001640428494;2019-07-10;;;;;;;;0.5426;46.93734;77630;La Jemaye-Ponteyraud;; +;Norma SAS Brumath;;;;;;Hagetmau;FRSIGPSIGE10311;FR*SOD*S*CAPS*2*1*_*_;LA GRIMAUDIERE;;RUE ALBERT CAMUS;24544;[0.393296, 46.357182];;FRSIGESIGE5111;FR*SOD*E*SIGE*216*1*2*_;;;;;;;;;;;;;;;;;;;00000000000000;2018-07-10;;;;;;;;0.534952;46.737652;77171;Saint-Estèphe;; +;Orléans Métropole;;;;;;U BLAYE MINES BLAYE 2;FRSIGPSIGE10512;FR*SOD*S*CAPS*54*1*_*_;PINDRAY;;AV. C;24543;[0.5426, 46.8363];;FRSIGESIGE4221;FR*SOD*E*SIGE*203*1*1*_;;;;;;;;;;;;;;;;;;;0000000000000;2021-11-24;;;;;;;;0.096326;46.565388;77930;Limeuil;; +;Osiris;;;;;;CGED CARCASSONNE CGE;FRSIGPSIGE10511;FR*SOD*S*CAPS*4*1*_*_;MONTS SUR GUESNES;;ANGLE AVENUE JEAN JAURÈS;24553;[0.534952, 46.776592];;FRSIGESIGE4231;FR*SOD*E*SIGE*202*1*2*_;;;;;;;;;;;;;;;;;;;000000000000000;2022-04-27;;;;;;;;0.705291;46.573013;77141;Beaumontois en Périgord;; +;Ostwald;;;;;;Garonne;FRSIGPSIGE10611;FR*SOD*S*CAPS*5*1*_*_;MAGNE;;RUE MARIE MADELEINE FOURCADE;24555;[0.096326, 46.71077];;FRSIGESIGE3651;FR*SOD*E*SIGE*194*1*2*_;;;;;;;;;;;;;;;;;;;30002420298401;2022-04-28;;;;;;;;0.26777;46.735638;77131;Champcevinel;; +;Ouest Location;;;;;;MANTHELAN 1279;FRSIGPSIGE10612;FR*SOD*S*OAZS*247*2*_*_;CHATELLERAULT NORD;;AV. DU 11;24098;[0.705291, 46.759583];;FRSIGESIGE3961;FR*SOD*E*SIGE*199*6*1*_;;;;;;;;;;;;;;;;;;;05143849400675;2022-05-17;;;;;;;;0.86389;46.64537;77174;Chancelade;; +;Opel - Fiat - Alfa La Valette du Var;;;;;;Quièvrecourt;FRSIGPSIGE10712;FR*SOD*S*OAZS*248*2*_*_;CENON FENWICK;;RTE DE VIENNE;24557;[0.26777, 46.43398];;FRSIGESIGE3741;FR*SOD*E*SIGE*195*1*1*_;;;;;;;;;;;;;;;;;;;30002521136229;2022-05-09;;;;;;;;0.60611;46.422009;77560;Condat-sur-Trincou;; +;Omega - Rombas;;;;;;VANAULT LES DAMES;FRSIGPSIGE10711;FR*SOD*S*OAZS*248*1*_*_;VOUZAILLES;;RUE ANTOINE VACHER;24521;[0.86389, 46.56596];;FRSIGESIGE3751;FR*SOD*E*SIGE*195*1*2*_;;;;;;;;;;;;;;;;;;;0000;2019-06-20;;;;;;;;0.280732;46.78656;77220;Condat-sur-Vézère;; +;Omega - Pierrevillers;;;;;;Shell- France Aire de Charmont-sous-Barbuise HW;FRSIGPSIGE10812;FR*SOD*S*OAZS*247*1*_*_;LEIGNE LES BOIS;;RUE AMPÈRE;24540;[0.60611, 46.93734];;FRSIGESIGE3761;FR*SOD*E*SIGE*196*1*1*_;;;;;;;;;;;;;;;;;;;0000000;2019-10-22;;;;;;;;0.642613;46.5714;77148;Creysse;; +;Omega - Homécourt;;;;;;La Garde;FRSIGPSIGE10811;FR*SOD*S*OAZS*245*1*_*_;VIVONNE CURIE;;RTE DE LYON;24538;[0.280732, 46.737652];;FRSIGESIGE3721;FR*SOD*E*SIGE*375*4*1*_;;;;;;;;;;;;;;;;;;;05486830651060;2018-12-07;;;;;;;;0.646528;46.20657;77111;Cubjac-Auvézère-Val d'Ans;; +;Omega - Hagondange;;;;;;BAZANCOURT - 44731 - Rue Jean Jaurès;FRSIGPSIGE11012;FR*SOD*S*OAZS*244*2*_*_;SAINT-SAVIN;;PL. MARSONNAT;24534;[0.642613, 46.565388];;FRSIGESIGE3711;FR*SOD*E*SIGE*197*1*2*_;;;;;;;;;;;;;;;;;;;30002331100010;2018-11-21;;;;;;;;0.309254;46.160084;77460;Domme;; +;Omega - Malancourt;;;;;;SAINT GEORGES SUR EURE - Eglise - 137362;FRSIGPSIGE8841;FR*SOD*S*OAZS*244*1*_*_;DANGE SAINT-ROMAIN;;RUE DARMÉNIE;24527;[0.646528, 46.573013];;FRSIGESIGE3821;FR*SOD*E*SIGE*197*1*1*_;;;;;;;;;;;;;;;;;;;50080552586308;2021-12-21;;;;;;;;0.18175;46.920493;77115;Excideuil;; +;Openium public;;;;;;AUNEAU - Rue Emile Labiche - 134756;FRSIGPSIGE11112;FR*SOD*S*OAZS*249*1*_*_;CHENECHE;;PL. BIR-HAKEIM;24520;[0.309254, 46.735638];;FRSIGESIGE3811;FR*SOD*E*SIGE*198*4*1*_;;;;;;;;;;;;;;;;;;;19605788682907;2021-08-11;;;;;;;;1.122411;46.92054;84300;Eymet;; +;Oreas, L'autre Faubourg;;;;;;Lauzerte;FRSIGPSIGE11111;FR*SOD*S*OAZS*253*1*_*_;CHAUVIGNY GYMNASE LATHUS;;MNT DE LA VIGOURETTE;24536;[0.18175, 46.64537];;FRSIGESIGE3831;FR*SOD*E*SIGE*198*1*1*_;;;;;;;;;;;;;;;;;;;06439942062817;2021-10-25;;;;;;;;0.18065;46.357932;62550;Faux;; +;Oreas, Village;;;;;;CHARTRES - Place Drouaise - 126231;FRSIGPSIGE11212;FR*SOD*S*OAZS*252*1*_*_;CHAUVIGNY CITE MEDIEVALE;;AV. ANDREI SAKHAROV;24516;[1.122411, 46.422009];;FRSIGESIGE3841;FR*SOD*E*SIGE*198*2*1*_;;;;;;;;;;;;;;;;;;;30002241620190;2023-02-19;;;;;;;;0.37065;46.54829;79260;Champagnac-de-Belair;; +;Orion immobilier;;;;;;Vezin-le-Coquet;FRSIGPSIGE11211;FR*SOD*S*OAZS*252*2*_*_;VENDEUVRE DU POITOU BOURG;;AV. HENRI SCHNEIDER;24312;[0.18065, 46.78656];;FRSIGESIGE3861;FR*SOD*E*SIGE*198*3*1*_;;;;;;;;;;;;;;;;;;;50012410371768;2022-04-08;;;;;;;;0.163327;46.83623;45480;Gardonne;; +;Orléans Motors;;;;;;LUISANT - Rue Jean Perrin - 137353;FRSIGPSIGE11311;FR*SOD*S*OAZS*251*1*_*_;VOUILLE BEAUREGARD;;RUE JEAN RIGAUD;24223;[0.37065, 46.5714];;FRSIGESIGE3851;FR*SOD*E*SIGE*199*3*1*_;;;;;;;;;;;;;;;;;;;30001240093439;2021-12-10;;;;;;;;0.311309;46.358393;62990;Biron;; +;Opteor Immotic;;;;;;GALLARDON - Rue Guy Pouillé - 178731;FRSIGPSIGE11312;FR*SOD*S*OAZS*250*1*_*_;THOLLET;;RUE FRANCISQUE JOMARD;24115;[0.163327, 46.20657];;FRSIGESIGE3931;FR*SOD*E*SIGE*199*4*1*_;;;;;;;;;;;;;;;;;;;30002580959620;2021-09-14;;;;;;;;0.210527;46.402252;62590;Bouniagues;; +;Optic 2000;;;;;;Auriolles;FRSIGPSIGE11412;FR*SOD*S*OAZS*243*1*_*_;MIREBEAU POSTE;;RUE DU PERRON;24120;[0.311309, 46.160084];;FRSIGESIGE3911;FR*SOD*E*SIGE*199*5*1*_;;;;;;;;;;;;;;;;;;;00000000000;2022-04-22;;;;;;;;0.210555;46.661125;54750;Bourdeilles;; +;Icade - Parking Flandre public;;;;;;FERE CHAMPENOISE - 44684 - Rue de l'Eglise;FRSIGPSIGE11411;FR*SOD*S*OAZS*232*1*_*_;REBEILLEAU 3;;RUE DES TOURELLES;24498;[0.210527, 46.920493];;FRSIGESIGE4121;FR*SOD*E*SIGE*201*2*1*_;;;;;;;;;;;;;;;;;;;02227613170752;2022-01-17;;;;;;;;0.198011;46.61766;67470;Campsegret;; +;E.Leclerc, Capbreton;;;;;;SAINT AVERTIN- 60636 - Allée du Chesne;FRSIGPSIGE11511;FR*SOD*S*OAZS*235*1*_*_;CHAUNAY QC50;;RUE CROIX-BARRET;24214;[0.210555, 46.92054];;FRSIGESIGE3921;FR*SOD*E*SIGE*199*1*1*_;;;;;;;;;;;;;;;;;;;04166241312967;2022-05-02;;;;;;;;0.30007;46.617687;83580;Carsac-de-Gurson;; +;E.Leclerc, Castelculier;;;;;;638a0f9abb23fb6dc695ab59;FRSIGPSIGE11512;FR*SOD*S*OAZS*234*1*_*_;SAVIGNE INTERMARCHE QC50;;AV. ROSA PARKS;24571;[0.198011, 46.357932];;FRSIGESIGE3951;FR*SOD*E*SIGE*199*2*1*_;;;;;;;;;;;;;;;;;;;50032795619332;2021-02-03;;;;;;;;0.18157;46.56869;66280;Castelnaud-la-Chapelle;; +;E.Leclerc, Caudry;;;;;;PERFORMANCE_PRO BORNE 1;FRSIGPSIGE11611;FR*SOD*S*OAZS*233*1*_*_;MONTS SUR GUESNES MEMORIAL 2;;BIS PL. JULES GRANDCLÉMENT;24216;[0.30007, 46.54829];;FRSIGESIGE3941;FR*SOD*E*SIGE*200*3*1*_;;;;;;;;;;;;;;;;;;;30001912552385;2019-10-17;;;;;;;;0.54263;46.56827;53410;Pechs-de-l'Espérance;; +;E.Leclerc, Centre Auto Niort Mendes;;;;;;BORNE PRO&CIE 1;FRSIGPSIGE11612;FR*SOD*S*OAZS*231*1*_*_;MONTS SUR GUESNES MEMORIAL 1;;PL. CLAUDIUS BERY;24398;[0.18157, 46.64537];;FRSIGESIGE4051;FR*SOD*E*SIGE*200*1*1*_;;;;;;;;;;;;;;;;;;;50050795896927;2017-11-04;;;;;;;;0.197363;46.731194;59760;Cénac-et-Saint-Julien;; +;E.Leclerc, Chemillé;;;;;;FISMES - 44705 - Rue du Docteur Genillon;FRSIGPSIGE10222;FR*SOD*S*OAZS*237*1*_*_;PAYRE QC50;;ALL. DES FRÈNES;24240;[0.54263, 46.83623];;FRSIGESIGE4031;FR*SOD*E*SIGE*200*4*1*_;;;;;;;;;;;;;;;;;;;30001913096313;2022-09-27;;;;;;;;0.725185;46.429119;14600;Groléjac;; +;E.Leclerc, Brico Bourcefranc;;;;;;Pontfaverger-Moronvilliers;FRSIGPSIGE10212;FR*SOD*S*OAZS*230*1*_*_;POITIERS SUD 2;;AV. DU CHATER;24028;[0.197363, 46.358393];;FRSIGESIGE4011;FR*SOD*E*SIGE*200*5*1*_;;;;;;;;;;;;;;;;;;;50066081107108;2022-06-06;;;;;;;;0.360187;46.57145;59430;Beynac-et-Cazenac;; +;E.Leclerc, Breteuil;;;;;;GUEUX - 44708 - Place des Lacs;FRSIGPSIGE10111;FR*SOD*S*OAZS*229*1*_*_;POITIERS SUD HPC;;BD CASTELLANE;24102;[0.725185, 46.402252];;FRSIGESIGE4021;FR*SOD*E*SIGE*200*2*1*_;;;;;;;;;;;;;;;;;;;01118813154662;2018-07-02;;;;;;;;0.34631;46.571165;60000;Marsac-sur-l'Isle;; +;E.Leclerc, Brico Andrézieux-Bouthéon;;;;;;Nissan-Lez-Enserune;FRSIGPSIGE10112;FR*SOD*S*OAZS*228*1*_*_;VOUILLE BEAUREGARD QC50;;AV. JEAN MACÉ;24129;[0.360187, 46.661125];;FRSIGESIGE4041;FR*SOD*E*SIGE*201*3*1*_;;;;;;;;;;;;;;;;;;;05553545577873;2017-10-31;;;;;;;;0.3464;46.786449;27000;Le Lardin-Saint-Lazare;; +;E.Leclerc, Cernay;;;;;;CONFLANS SUR SEINE - 43640 - Av Marechal Leclerc;FRSIGPSIGE8811;FR*SOD*S*OAZS*241*2*_*_;LOUDUN PORTE DE MIREBEAU QC50;;AV. DES COSMOS;24130;[0.34631, 46.61766];;FRSIGESIGE4131;FR*SOD*E*SIGE*201*6*1*_;;;;;;;;;;;;;;;;;;;BT010911;2018-08-13;;;;;;;;0.371776;46.81348;41000;Les Eyzies;; +;E.Leclerc, Chateaulin;;;;;;Boismandé Est;FRSIGPSIGE8821;FR*SOD*S*OAZS*242*1*_*_;CHATELLERAULT NORD QC50;;RUE AUGUSTE TRAMIER;24145;[0.3464, 46.617687];;FRSIGESIGE4111;FR*SOD*E*SIGE*201*5*1*_;;;;;;;;;;;;;;;;;;;50038584949635;2022-04-20;;;;;;;;0.64476;46.80711;15000;Mareuil en Périgord;; +;E.Leclerc, Chaumont;;;;;;COURTISOLS;FRSIGPSIGE8951;FR*SOD*S*OAZS*241*1*_*_;PAYRE 1;;AV. MARCEL HOUEL;24147;[0.371776, 46.56869];;FRSIGESIGE4151;FR*SOD*E*SIGE*201*4*1*_;;;;;;;;;;;;;;;;;;;50099655081124;2018-07-30;;;;;;;;0.439859;46.618771;59380;Mauzens-et-Miremont;; +;E.Leclerc, Chavanay;;;;;;Périgueux Sud;FRSIGPSIGE8911;FR*SOD*S*OAZS*238*1*_*_;LUSSAC QC50;;BIS AV. JEAN ESTRAGNAT;24152;[0.64476, 46.56827];;FRSIGESIGE4141;FR*SOD*E*SIGE*201*1*1*_;;;;;;;;;;;;;;;;;;;14445875487617;2020-10-13;;;;;;;;0.115935;46.727718;59553;Le Buisson-de-Cadouin;; +;E.Leclerc, Chambly;;;;;;Mionnay Chatanay;FRSIGPSIGE8931;FR*SOD*S*OAZS*240*1*_*_;CHASSENEUIL TELEPORT 2;;RTE DE SAINT-TRIVIER;24164;[0.439859, 46.731194];;FRSIGESIGE5212;FR*SOD*E*SIGE*216*1*1*_;;;;;;;;;;;;;;;;;;;02520115760798;2018-03-19;;;;;;;;0.3707;46.31971;62300;Monbazillac;; +;E.Leclerc, Bourges / Le Prado;;;;;;CGED CGED BERGERAC;FRSIGPSIGE8941;FR*SOD*S*OAZS*239*1*_*_;POITIERS REPUBLIQUE HPC;;ALL. DES PEUPLIERS;24167;[0.115935, 46.429119];;FRSIGESIGE5211;FR*SOD*E*SIGE*217*1*2*_;;;;;;;;;;;;;;;;;;;NC;2020-01-17;;;;;;;;0.369971;46.50507;76130;Monpazier;; +;E.Leclerc, Bourg-les-Valence;;;;;;CHAPELLE ROYALE - Rue jean moulin - 134851;FRSIGPSIGE8921;FR*SOD*S*OAZS*198*2*_*_;POITIERS REPUBLIQUE 2;;AV. PIERRE BROSSOLETTE;24177;[0.3707, 46.57145];;FRSIGESIGE5311;FR*SOD*E*SIGE*217*1*1*_;;;;;;;;;;;;;;;;;;;50080694200200;2022-01-28;;;;;;;;0.81115;47.108528;59290;Montcaret;; +;E.Leclerc, Blanc-Mesnil;;;;;;U FAULQUEMONT BORNE 1;FRSIGPSIGE9112;FR*SOD*S*OAZS*255*1*_*_;SOREGIES-2;;RUE CENTRALE;24096;[0.369971, 46.571165];;FRSIGESIGE6721;FR*SOD*E*SIGE*241*1*2*_;;;;;;;;;;;;;;;;;;;50018320949387;2021-12-13;;;;;;;;0.53507;46.75684;70500;Montignac-Lascaux;; +;E.Leclerc, Bonneuil-sur-Marne Hyper;;;;;;SONEPAR CONNECT MONCEAU L MINES;FRSIGPSIGE9111;FR*SOD*S*OAZS*103*2*_*_;CHAUVIGNY HPC;;RUE CÉSAR PAULET;24194;[0.81115, 46.786449];;FRSIGESIGE6561;FR*SOD*E*SIGE*234*1*2*_;;;;;;;;;;;;;;;;;;;50025556839340;2022-02-11;;;;;;;;0.62647;46.880989;70000;Le Bugue;; +;E.Leclerc, Blaindis;;;;;;E LECLERC BORNE 2;FRSIGPSIGE9211;FR*SOD*S*OAZS*126*3*_*_;BEAUMONT HPC;;AV. DE CORBETTA;24043;[0.53507, 46.81348];;FRSIGESIGE6551;FR*SOD*E*SIGE*236*1*2*_;;;;;;;;;;;;;;;;;;;50061736289336;2020-06-30;;;;;;;;0.07669;46.22636;70200;La Force;; +;E.Leclerc, Biscarrosse Hyper;;;;;;ALLUYES - Av Chevallier Debeausse - 129291;FRSIGPSIGE9212;FR*SOD*S*OAZS*164*2*_*_;LUSIGNAN HPC;;RTE DE CHASSELAY;24054;[0.62647, 46.80711];;FRSIGESIGE6641;FR*SOD*E*SIGE*236*1*1*_;;;;;;;;;;;;;;;;;;;50006309560648;2022-03-21;;;;;;;;0.65501;46.55698;70400;Hautefort;; +;E. Leclerc, Wasselonne;;;;;;Boismandé Ouest;FRSIGPSIGE9311;FR*SOD*S*OAZS*170*2*_*_;REBEILLEAU HPC 2;;AV. VIVIANI;24055;[0.07669, 46.618771];;FRSIGESIGE6611;FR*SOD*E*SIGE*237*1*1*_;;;;;;;;;;;;;;;;;;;50071432570642;2018-09-14;;;;;;;;0.32491;46.377151;70190;Issigeac;; +;E.Leclerc, Fameck;;;;;;Shell Terres de Graves Nord;FRSIGPSIGE9312;FR*SOD*S*OAZS*188*2*_*_;REBEILLEAU HPC 1;;RUE DENUZIÈRE;24077;[0.65501, 46.727718];;FRSIGESIGE6661;FR*SOD*E*SIGE*237*1*2*_;;;;;;;;;;;;;;;;;;;50054500399373;2022-03-17;;;;;;;;0.77655;46.66011;70300;Jumilhac-le-Grand;; +;E.Leclerc, Fleury-les-Aubrais;;;;;;AVIZE - 43907 - Rue du bourg Joli;FRSIGPSIGE9412;FR*SOD*S*OAZS*192*2*_*_;LA ROCHE-POSAY;;AV. MARCEL MÉRIEUX;24083;[0.32491, 46.31971];;FRSIGESIGE6631;FR*SOD*E*SIGE*238*1*1*_;;;;;;;;;;;;;;;;;;;50095889689757;2019-09-05;;;;;;;;-0.02363;46.508591;70120;La Coquille;; +;E.Leclerc, Etaples;;;;;;GOMMERVILLE - 50 Route de Voves - 129084;FRSIGPSIGE9411;FR*SOD*S*OAZS*102*3*_*_;CHATELLERAULT - MANUFACTURE;;BD LOUIS PRADEL;24086;[0.77655, 46.50507];;FRSIGESIGE6621;FR*SOD*E*SIGE*238*1*2*_;;;;;;;;;;;;;;;;;;;50028304183429;2017-02-02;;;;;;;;0.57998;46.42672;31770;La Roche-Chalais;; +;E.Leclerc, Drive Pontchâteau;;;;;;TOURS SUR MARNE - 43909 - Avenue de Champagne;FRSIGPSIGE9512;FR*SOD*S*OAZS*23*2*_*_;SAINT-SAUVEUR;;AV. ERNEST AUBOYER;24325;[-0.02363, 47.108528];;FRSIGESIGE6651;FR*SOD*E*SIGE*239*1*2*_;;;;;;;;;;;;;;;;;;;50040028619326;2018-09-21;;;;;;;;-0.01987;46.66909;63200;La Roque-Gageac;; +;E.Leclerc, Epinay-sur-Seine;;;;;;SONEPAR CONNECT ST-ETIENNE1;FRSIGPSIGE9511;FR*SOD*S*OAZS*14*3*_*_;LATILLE;;RUE JEAN-LOUIS BARRAULT;24091;[0.57998, 46.75684];;FRSIGESIGE6741;FR*SOD*E*SIGE*239*1*1*_;;;;;;;;;;;;;;;;;;;50031055987515;2021-04-23;;;;;;;;0.47077;47.071266;30560;Lamonzie-Saint-Martin;; +;E.Leclerc, Erstein;;;;;;MONTMORT LUCY - 43905 - Place Général de Gaulle;FRSIGPSIGE9712;FR*SOD*S*OAZS*23*3*_*_;CHENEVELLES;;RUE DU 19;24207;[-0.01987, 46.880989];;FRSIGESIGE6731;FR*SOD*E*SIGE*240*1*1*_;;;;;;;;;;;;;;;;;;;50019623409478;2022-12-27;;;;;;;;0.37658;46.869717;20270;Lanouaille;; +;E.Leclerc, Folelli;;;;;;ENNORDRES - La Surprise - 147553;FRSIGPSIGE9711;FR*SOD*S*OAZS*23*4*_*_;CHAMPAGNE SAINT-HILAIRE;;AV. JACQUES DUCLOS;24040;[0.47077, 46.22636];;FRSIGESIGE6711;FR*SOD*E*SIGE*240*1*2*_;;;;;;;;;;;;;;;;;;;50048566969446;2018-01-17;;;;;;;;0.87585;46.813271;20114;Angoisse;; +;E.Leclerc, Fontenay Le Comte;;;;;;ANGLURE - 43647 - Place de la République;FRSIGPSIGE9811;FR*SOD*S*OAZS*43*2*_*_;LEIGNES SUR FONTAINE;;QUAI PIERRE DUPONT;24256;[0.37658, 46.55698];;FRSIGESIGE6761;FR*SOD*E*SIGE*241*1*1*_;;;;;;;;;;;;;;;;;;;50034962252804;2018-09-10;;;;;;;;0.07623;46.731178;10140;Montpon-Ménestérol;; +;E.Leclerc, Fontenay-Tresigny;;;;;;TERMINIER - Rue de charette - 141733;FRSIGPSIGE9812;FR*SOD*S*OAZS*80*3*_*_;MORTON;;RUE COSTE;24229;[0.87585, 46.377151];;FRSIGESIGE6751;FR*SOD*E*SIGE*242*1*2*_;;;;;;;;;;;;;;;;;;;50017017809248;2020-05-20;;;;;;;;0.41466;46.569061;59190;Mussidan;; +;E.Leclerc, Fécamp Saint-Léonard;;;;;;Created 2021-02-01 15:55 con: 1;FRSIGPSIGE10021;FR*SOD*S*OAZS*194*2*_*_;AVAILLES EN CHATELLERAULT;;RUE DE LA THIBAUDIÈRE;24172;[0.07623, 46.66011];;FRSIGESIGE5312;FR*SOD*E*SIGE*218*1*1*_;;;;;;;;;;;;;;;;;;;50057687240193;2018-02-27;;;;;;;;0.18734;46.945148;31620;Neuvic;; +;E.Leclerc, Fondettes;;;;;;LA MEMBROLLE SUR CHOISILLE 1260 - La Choisille;FRSIGPSIGE10012;FR*SOD*S*OAZS*226*1*_*_;MONCONTOUR;;RUE DE LANGILE;24253;[0.41466, 46.508591];;FRSIGESIGE6812;FR*SOD*E*SIGE*242*1*1*_;;;;;;;;;;;;;;;;;;;50055662116230;2021-08-09;;;;;;;;0.40516;46.876129;45340;Nontron;; +;E.Leclerc, Clisson;;;;;;HAUTVILLERS - 43897 - Rue des Côtes de Lhery;FRSIGPSIGE10011;FR*SOD*S*OAZS*224*1*_*_;JOUSSE;;RUE DUGUESCLIN;24261;[0.18734, 46.42672];;FRSIGESIGE6811;FR*SOD*E*SIGE*243*1*2*_;;;;;;;;;;;;;;;;;;;50002258811409;2021-10-11;;;;;;;;-0.043703;46.687889;06320;Pays de Belvès;; +;E.Leclerc, Châteaubriant;;;;;;CHATILLONS SUR MARNE - 43901 - Rue de Madeleine;FRSIGPSIGE10022;FR*SOD*S*OAZS*225*2*_*_;MIGNALOUX-BEAUVOIR LE VERGER;;PL. MARÉCHAL LYAUTEY;24068;[0.40516, 46.66909];;FRSIGESIGE6911;FR*SOD*E*SIGE*243*1*1*_;;;;;;;;;;;;;;;;;;;50005729240090;2020-02-03;;;;;;;;0.28431;46.425816;33430;Bassillac et Auberoche;; +;E.Leclerc, Châteauneuf-du-Faou;;;;;;RAW PARISGIVERNY 65;FRSIGPSIGE37711;FR*SOD*S*OAZS*225*1*_*_;SAULGE;;CR DE LA LIBERTÉ;24274;[-0.043703, 47.071266];;FRSIGESIGE6912;FR*SOD*E*SIGE*244*1*1*_;;;;;;;;;;;;;;;;;;;50061446676530;2019-07-15;;;;;;;;0.53227;46.655102;80150;Audrix;; +;E.Leclerc, Chinon;;;;;;18B93139;FRSIGPSIGE3561;FR*SOD*S*OAZS*226*2*_*_;AYRON;;RUE MAURICE AUDIN;24280;[0.28431, 46.869717];;FRSIGESIGE7021;FR*SOD*E*SIGE*244*1*2*_;;;;;;;;;;;;;;;;;;;50092995551707;2022-08-18;;;;;;;;0.43986;46.243118;73370;Les Essarts-le-Roi;; +;E.Leclerc, Château-Thierry;;;;;;ORVAL - Route de Lignières - 142815;FRSIGPSIGE37611;FR*SOD*S*OAZS*224*2*_*_;NOUAILLE-MAUPERTUIS;;AV. DIDEROT;24289;[0.53227, 46.813271];;FRSIGESIGE7022;FR*SOD*E*SIGE*245*1*2*_;;;;;;;;;;;;;;;;;;;50010071892086;2017-05-11;;;;;;;;0.197537;46.270481;38490;Le Perray-en-Yvelines;; +;E.Leclerc, Dormans;;;;;;SONEPAR CONNECT VALENCIENNES;FRSIGPSIGE20911;FR*SOD*S*OAZS*227*2*_*_;CELLE LEVESCAULT;;RUE HENRI MARÉCHAL;24291;[0.43986, 46.731178];;FRSIGESIGE7131;FR*SOD*E*SIGE*245*1*1*_;;;;;;;;;;;;;;;;;;;50082429572086;2017-12-07;;;;;;;;0.112316;46.35754;50000;Gazeran;; +;E.Leclerc, Crozon;;;;;;Poitou-Charentes;FRSIGPSIGE20312;FR*SOD*S*OAZS*227*1*_*_;SAINT-GEORGES LES BX;;RUE LOUIS BRAILLE;24067;[0.197537, 46.569061];;FRSIGESIGE7161;FR*SOD*E*SIGE*246*1*1*_;;;;;;;;;;;;;;;;;;;50019479055539;2017-02-16;;;;;;;;0.56652;46.32872;14000;Saint-Arnoult-en-Yvelines;; +;E.Leclerc, Decize;;;;;;SONEPAR CONNECT TOULOUSE NORD;FRSIGPSIGE20411;FR*SOD*S*OAZS*218*2*_*_;SAINT-LEGER DE MONTBRILLAIS;;RUE MARIETTON;24222;[0.112316, 46.945148];;FRSIGESIGE7121;FR*SOD*E*SIGE*246*1*2*_;;;;;;;;;;;;;;;;;;;50000376155730;2017-09-02;;;;;;;;0.246051;46.717381;79450;Sonchamp;; +;E.Leclerc, Conflans-Sainte-Honorine;;;;;;Aire de Val Neuvy;FRSIGPSIGE20412;FR*SOD*S*OAZS*213*1*_*_;SAVIGNY-SOUS-FAYE;;RUE DE LÉPARGNE;24210;[0.56652, 46.876129];;FRSIGESIGE7141;FR*SOD*E*SIGE*248*1*1*_;;;;;;;;;;;;;;;;;;;50042784181045;2017-05-26;;;;;;;;0.869694;46.508862;79400;Saint-Hilarion;; +;E.Leclerc, Coulange-lès-Nevers;;;;;;MERCK SITES EUR BORNE P2-01;FRSIGPSIGE20512;FR*SOD*S*OAZS*215*1*_*_;CHATELLERAULT - CHATEAUNEUF;;AV. LACASSAGNE;24212;[0.246051, 46.687889];;FRSIGESIGE7111;FR*SOD*E*SIGE*248*1*2*_;;;;;;;;;;;;;;;;;;;50073172971949;2017-05-12;;;;;;;;0.36394;46.57666;79600;Boinville-le-Gaillard;; +;E.Leclerc, Coutras;;;;;;CGED AUBENAS;FRSIGPSIGE20511;FR*SOD*S*OAZS*219*1*_*_;BEAUMONT SAINT-CYR;;AV. DEBOURG;24218;[0.869694, 46.425816];;FRSIGESIGE7151;FR*SOD*E*SIGE*249*1*1*_;;;;;;;;;;;;;;;;;;;50086197561238;2017-04-15;;;;;;;;0.28977;46.534034;79100;La Boissière-École;; +;E.Leclerc, Biganos;;;;;;EPEIGNE SUR DEME 1246;FRSIGPSIGE20612;FR*SOD*S*OAZS*221*2*_*_;BERUGES;;RUE BOILEAU;24133;[0.36394, 46.655102];;FRSIGESIGE6521;FR*SOD*E*SIGE*234*1*1*_;;;;;;;;;;;;;;;;;;;50042780458402;2017-03-02;;;;;;;;0.30311;46.479771;79210;Rambouillet;; +;E.Leclerc, Alençon Arconnay;;;;;;SONEPAR CONNECT AMIENS;FRSIGPSIGE20611;FR*SOD*S*OAZS*256*1*_*_;ANGLIERS;;RUE ANDRÉ LWOFF;24354;[0.28977, 46.243118];;FRSIGESIGE6511;FR*SOD*E*SIGE*232*1*2*_;;;;;;;;;;;;;;;;;;;50093431688448;2017-06-27;;;;;;;;0.05509;46.43351;79380;Paray-Douaville;; +;E.Leclerc Rivery;;;;;;Shell Aire de Bordeaux-Cestas Est A63;FRSIGPSIGE20711;FR*SOD*S*OAZS*270*2*_*_;INGRANDES;;RUE CHARLES BIENNIER;24355;[0.30311, 46.270481];;FRSIGESIGE6531;FR*SOD*E*SIGE*232*1*1*_;;;;;;;;;;;;;;;;;;;50045097046046;2017-02-09;;;;;;;;0.49537;46.478479;79800;Vieille-Église-en-Yvelines;; +;E.Leclerc Soultz-sous-Forêts;;;;;;Hambach;FRSIGPSIGE20712;FR*SOD*S*OAZS*269*1*_*_;NEUVILLE DE POITOU;;RUE ORNANO;24225;[0.05509, 46.35754];;FRSIGESIGE6541;FR*SOD*E*SIGE*231*1*2*_;;;;;;;;;;;;;;;;;;;50074040549799;2022-02-14;;;;;;;;0.25833;46.541466;79250;Ponthévrard;; +;E.Leclerc, Contrexéville Public;;;;;;PLOUHARNEL BORNE 2;FRSIGPSIGE20811;FR*SOD*S*OAZS*270*1*_*_;MONTMORILLON CENTRE;;PL. TOLOZAN;24227;[0.49537, 46.32872];;FRSIGESIGE5422;FR*SOD*E*SIGE*218*1*2*_;;;;;;;;;;;;;;;;;;;50050741008163;2021-12-31;;;;;;;;0.63465;46.428599;79120;Auffargis;; +;E.Leclerc, Vandoeuvre-lès-Nancy;;;;;;SUPER U OLONNE OLONNE SUR MER;FRSIGPSIGE20812;FR*SOD*S*OAZS*271*1*_*_;CHASSENEUIL DU POITOU - SDIS;;RUE CHEVREUL;24008;[0.25833, 46.717381];;FRSIGESIGE5421;FR*SOD*E*SIGE*220*4*1*_;;;;;;;;;;;;;;;;;;;50042057915989;2022-05-04;;;;;;;;0.305724;46.619541;79200;Bullion;; +;E.Leclerc, Alès;;;;;;SONEPAR CARPENTRAS;FRSIGPSIGE20912;FR*SOD*S*OAZS*268*1*_*_;ROMAGNE VALLEE DES SINGES;;RUE JULIETTE RÉCAMIER;24294;[0.63465, 46.508862];;FRSIGESIGE5811;FR*SOD*E*SIGE*220*2*1*_;;;;;;;;;;;;;;;;;;;50067236272590;2022-05-30;;;;;;;;0.26676;46.511269;79230;Bonnelles;; +;E.Leclerc, Amboise;;;;;;SUUPER U BORNE 1;FRSIGPSIGE21011;FR*SOD*S*OAZS*272*1*_*_;ROMAGNE BOURG;;PL. ANTOINE VOLLON;24299;[0.305724, 46.57666];;FRSIGESIGE5812;FR*SOD*E*SIGE*220*3*1*_;;;;;;;;;;;;;;;;;;;50049144615031;2022-02-23;;;;;;;;0.369494;46.569134;79220;La Celle-les-Bordes;; +;E.Leclerc, Anet;;;;;;DIERRE 1242;FRSIGPSIGE20211;FR*SOD*S*OAZS*273*1*_*_;SAINT-SAUVANT;;CHEM. DE WETTE FAYS;24309;[0.26676, 46.534034];;FRSIGESIGE5911;FR*SOD*E*SIGE*220*1*1*_;;;;;;;;;;;;;;;;;;;50066659947768;2020-09-21;;;;;;;;0.877009;46.738468;79460;Clairefontaine-en-Yvelines;; +;E.Leclerc, Angers;;;;;;DESCARTES 1241;FRSIGPSIGE21012;FR*SOD*S*OAZS*258*1*_*_;SAINT-SECONDIN;;AV. GUY DE COLLONGUE;24311;[0.369494, 46.479771];;FRSIGESIGE5912;FR*SOD*E*SIGE*220*5*1*_;;;;;;;;;;;;;;;;;;;50004431089979;2018-02-15;;;;;;;;0.523241;46.431427;79240;Longvilliers;; +;E. Leclerc, Yvetot;;;;;;MENODIS BORNE 1;FRSIGPSIGE21112;FR*SOD*S*OAZS*267*1*_*_;CHABOURNAY;;ALL. DE BÉZIERS;24035;[0.877009, 46.43351];;FRSIGESIGE6012;FR*SOD*E*SIGE*224*1*2*_;;;;;;;;;;;;;;;;;;;50099221410194;2020-02-13;;;;;;;;0.413897;46.76305;79190;Poigny-la-Forêt;; +;E.Leclerc Express, Charvieu-Chavagneux;;;;;;SONEPAR GIEN;FRSIGPSIGE21111;FR*SOD*S*OAZS*257*1*_*_;VALDIVIENNE;;ALL. DU CAMPING INTERNATIONAL;24026;[0.523241, 46.478479];;FRSIGESIGE6011;FR*SOD*E*SIGE*224*1*1*_;;;;;;;;;;;;;;;;;;;50021940676813;2019-07-12;;;;;;;;0.114799;46.77338;79700;Hermeray;; +;E.Leclerc Jonchery;;;;;;LA VILLE AUX DAMES 1258 - Anciens combattants;FRSIGPSIGE21211;FR*SOD*S*OAZS*259*1*_*_;BIARD;;RUE DES ALBATROS;24015;[0.413897, 46.541466];;FRSIGESIGE6111;FR*SOD*E*SIGE*225*1*2*_;;;;;;;;;;;;;;;;;;;50069405011063;2017-12-12;;;;;;;;0.311133;46.681641;79390;Orphin;; +;E.Leclerc , Gonesse;;;;;;Aire de Villers-Bretonneux;FRSIGPSIGE21212;FR*SOD*S*OAZS*266*1*_*_;FONTAINE-LE-COMTE;;RUE ELISÉE RECLUS;78220;[0.114799, 46.428599];;FRSIGESIGE6112;FR*SOD*E*SIGE*225*1*1*_;;;;;;;;;;;;;;;;;;;50058852523296;2017-02-24;;;;;;;;0.350191;46.639141;79310;Rochefort-en-Yvelines;; +;E.Leclerc, Barjouville;;;;;;LARCAY 1264;FRSIGPSIGE21312;FR*SOD*S*MB40*57*1*_*_;ROCHES PREMARIE ANDILLE;;PL. GUTENBERG;78486;[0.311133, 46.619541];;FRSIGESIGE6211;FR*SOD*E*SIGE*226*1*1*_;;;;;;;;;;;;;;;;;;;50082868561578;2021-05-06;;;;;;;;0.371421;46.425949;79500;Saint-Léger-en-Yvelines;; +;E.Leclerc, Bastia;;;;;;LA MEMBROLLE SUR CHOISILLE 1262 - Mazagran;FRSIGPSIGE21311;FR*SOD*S*MB40*56*1*_*_;MONTMORILLON POLE EMPLOI;;FACE AU 18 RUE DU 8;78269;[0.350191, 46.511269];;FRSIGESIGE6212;FR*SOD*E*SIGE*226*1*2*_;;;;;;;;;;;;;;;;;;;50052328215853;2017-05-10;;;;;;;;0.766259;46.57058;79180;Émancé;; +;E.Leclerc, Bellaing;;;;;;HYPERU BORNE 2 DC;FRSIGPSIGE21412;FR*SOD*S*MB40*58*1*_*_;FLEURE;;PL. ANTOINE SAUNIER;78537;[0.371421, 46.569134];;FRSIGESIGE6361;FR*SOD*E*SIGE*227*1*2*_;;;;;;;;;;;;;;;;;;;7419392084718;2017-03-07;;;;;;;;0.880162;45.864479;79110;Raizeux;; +;E.Leclerc, Bergerac;;;;;;Valleiry Sud;FRSIGPSIGE21411;FR*SOD*S*MB40*53*1*_*_;MIGNALOUX-BEAUVOIR;;RUE DU 24;78601;[0.766259, 46.738468];;FRSIGESIGE6341;FR*SOD*E*SIGE*227*1*1*_;;;;;;;;;;;;;;;;;;;7457163429831;2017-04-04;;;;;;;;0.48267;45.757096;79350;Orcemont;; +;E.Leclerc, Biars-sur-Cère;;;;;;SONEPAR CONNECT LE PUY;FRSIGPSIGE21511;FR*SOD*S*MB40*55*1*_*_;LUSIGNAN INTERMARCHE;;112 COURS CHARLEMAGNE;78557;[0.880162, 46.431427];;FRSIGESIGE6351;FR*SOD*E*SIGE*228*1*1*_;;;;;;;;;;;;;;;;;;;7466570087636;2017-03-30;;;;;;;;0.53584;45.749022;79510;Cernay-la-Ville;; +;E.Leclerc, Bayonne Nord;;;;;;SONEPAR CONNECT OSNY;FRSIGPSIGE21512;FR*SOD*S*MB40*54*1*_*_;MIGNE-AUXANCES;;CENTRE COMMERCIAL DAÉROVILLE;78071;[0.48267, 46.76305];;FRSIGESIGE6331;FR*SOD*E*SIGE*228*1*2*_;;;;;;;;;;;;;;;;;;;7465846498526;2019-02-26;;;;;;;;0.569575;45.581722;79160;Marignane;; +;E.Leclerc, Aulnoye-Aymeries;;;;;;SONEPAR CONNECT LA GARDE;FRSIGPSIGE21612;FR*SOD*S*MB40*59*1*_*_;SMARVES;;AVENUE DU MAINE;78077;[0.53584, 46.77338];;FRSIGESIGE6311;FR*SOD*E*SIGE*229*1*1*_;;;;;;;;;;;;;;;;;;;7467293676602;2021-03-09;;;;;;;;0.165527;45.733704;79440;Allauch;; +;E.Leclerc, Attin;;;;;;LANEUVEVILLE - Parking du cimetière - 187519;FRSIGPSIGE20311;FR*SOD*S*MB40*64*1*_*_;SOREGIES - 1;;3 ALLÉE DU PRÉAMBULE;78517;[0.569575, 46.681641];;FRSIGESIGE6321;FR*SOD*E*SIGE*229*3*1*_;;;;;;;;;;;;;;;;;;;7434008582654;2018-05-03;;;;;;;;0.262716;45.837597;79410;Plan-de-Cuques;; +;E.Leclerc, Aubenas;;;;;;SUPER U ARNAGE DIRECTION;FRSIGPSIGE20212;FR*SOD*S*MB40*62*1*_*_;PLEUMARTIN;;2 AVENUE DE LEUROPE;78478;[0.165527, 46.639141];;FRSIGESIGE6461;FR*SOD*E*SIGE*229*5*1*_;;;;;;;;;;;;;;;;;;;7413169218442;2018-03-15;;;;;;;;0.272319;45.777419;79330;Gémenos;; +;E.Leclerc, Aulnoydis;;;;;;CGED CGED PIERRELATT;FRSIGPSIGE19412;FR*SOD*S*MB40*65*1*_*_;MONTMORILLON STADE;;CENTRE COMMERCIAL AÉROVILLE;78655;[0.262716, 46.425949];;FRSIGESIGE6441;FR*SOD*E*SIGE*229*2*1*_;;;;;;;;;;;;;;;;;;;7441678625087;2017-12-04;;;;;;;;4.743303;45.735055;79360;Ceyreste;; +;E.Leclerc, Angerville;;;;;;LE GRAND PRESSIGNY 1266;FRSIGPSIGE19961;FR*SOD*S*MB40*52*1*_*_;NAINTRE BIBLIOTHEQUE;;17, RUE DU DOCTEUR BOUCHUT;78499;[0.272319, 46.57058];;FRSIGESIGE6451;FR*SOD*E*SIGE*229*4*1*_;;;;;;;;;;;;;;;;;;;7405065021761;2017-05-17;;;;;;;;4.928076;45.766396;79300;Ensuès-la-Redonne;; +;E.Leclerc, Bar-le-Duc;;;;;;PENBOCH BORNE 1;FRSIGPSIGE19511;FR*SOD*S*MB40*63*1*_*_;CENON SUR VIENNE;;AVENUE DE LUKRAINE;78030;[4.743303, 45.864479];;FRSIGESIGE6431;FR*SOD*E*SIGE*229*6*1*_;;;;;;;;;;;;;;;;;;;7467438394460;2017-07-18;;;;;;;;4.858032;45.835806;79150;Septèmes-les-Vallons;; +;E.Leclerc, Bar-sur-Aube;;;;;;SONEPAR CONNECT LIMOGES;FRSIGPSIGE19512;FR*SOD*S*MB40*61*1*_*_;BONNEUIL-MATOURS;;2 AVENUE CHARLES DE GAULLE;78120;[4.928076, 45.757096];;FRSIGESIGE6421;FR*SOD*E*SIGE*230*1*2*_;;;;;;;;;;;;;;;;;;;7409551273450;2020-02-21;;;;;;;;4.777584;45.797818;79340;Meymac;; +;E.Leclerc, Auxerre;;;;;;FORMATION TLSE BORNE 2;FRSIGPSIGE19611;FR*SOD*S*MB40*60*1*_*_;VOUILLE;;AVENUE DES ALPES;78087;[4.858032, 45.749022];;FRSIGESIGE6411;FR*SOD*E*SIGE*230*1*1*_;;;;;;;;;;;;;;;;;;;7457018712006;2020-06-24;;;;;;;;4.862654;45.756093;79140;Bugeat;; +;E.Leclerc, Bain-de-Bretagne;;;;;;BUCHELAY RAMBOUILLET 1;FRSIGPSIGE37541;FR*SOD*S*MB40*46*1*_*_;VIVONNE;;AVENUE DU BOSPHORE;78125;[4.777584, 45.581722];;FRSIGESIGE3731;FR*SOD*E*SIGE*231*1*1*_;;;;;;;;;;;;;;;;;;;7438639551428;2020-02-17;;;;;;;;4.77209;45.60042;79290;Eygurande;; +;E.Leclerc, Nanterre;;;;;;LA CAPRICIEUSE BORNE OMAHA;FRSIGPSIGE19712;FR*SOD*S*MB40*36*1*_*_;VOUNEUIL SOUS BIARD;;ROUTE DE LANGRES;78164;[4.862654, 45.733704];;FRSIGESIGE3621;FR*SOD*E*SIGE*194*1*1*_;;;;;;;;;;;;;;;;;;;7407669942896;2023-05-29;;;;;;;;4.828562;45.832428;79130;Ussel;; +;E.Leclerc, Neufchâteau;;;;;;Shell Aire de Bordeaux-Cestas Ouest A63;FRSIGPSIGE19711;FR*SOD*S*MB40*41*1*_*_;LIS01 - CENTRE-BOURG;;CENTRE COMMERCIAL V2, BD DE VALMY;78349;[4.77209, 45.837597];;FRSIGESIGE7221;FR*SOD*E*SIGE*193*2*2*_;;;;;;;;;;;;;;;;;;;7433574429280;2019-01-21;;;;;;;;4.87067;45.765502;34250;Vitrac-sur-Montane;; +;E.Leclerc, Neufchâtel-en-Bray;;;;;;JOUE LES TOURS 1251;FRSIGPSIGE19841;FR*SOD*S*MB40*40*1*_*_;VAV08 - JOSEPH BLEIN;;AVENUE DE LAUBRAC;78497;[4.828562, 45.777419];;FRSIGESIGE39812;FR*SOD*E*SIGE*251*1*2*_;;;;;;;;;;;;;;;;;;;7465412345108;2019-11-04;;;;;;;;4.85112;45.76973;59600;Ostwald;; +;E.Leclerc, Montdidier;;;;;;COTEAUX SUR LOIRE 1250 - Ingrandes;FRSIGPSIGE19811;FR*SOD*S*MB40*39*1*_*_;LY711 - MANUFACTURE DES TABACS;;FORUM DES HALLES 101 PORTE BERGER;78307;[4.87067, 45.735055];;FRSIGESIGE39211;FR*SOD*E*SIGE*8*1*2*_;;;;;;;;;;;;;;;;;;;7480028843020;2021-09-29;;;;;;;;4.822612;45.757816;13620;Lorlanges;; +;E.Leclerc, Marennes;;;;;;CGED DECAZEVILLE;FRSIGPSIGE19821;FR*SOD*S*MB40*38*1*_*_;GIV02 - VERRERIES;;RUE DALSACE;78470;[4.85112, 45.766396];;FRSIGESIGE39312;FR*SOD*E*SIGE*2*1*2*_;;;;;;;;;;;;;;;;;;;7441533907232;2019-01-16;;;;;;;;4.84435;45.817008;31250;Fresnay-l'Évêque;; +;E.Leclerc, Mios;;;;;;GENILLE 1249;FRSIGPSIGE19831;FR*SOD*S*MB40*37*1*_*_;LY811 - ETATS-UNIS - LYCEE LUMIERE;;JULES GUESDE;78522;[4.822612, 45.835806];;FRSIGESIGE39311;FR*SOD*E*SIGE*2*1*1*_;;;;;;;;;;;;;;;;;;;7496526672237;2018-05-17;;;;;;;;4.801467;45.765487;10410;Les Salles;; +;E.Leclerc, Montayral Hypermarché;;;;;;SONEPAR CONNECT SAINT-PRIEST 1;FRSIGPSIGE19931;FR*SOD*S*MB40*35*1*_*_;LIM02 - VALANTIN;;PLACE ANDRÉ DUFRAISSE;78562;[4.84435, 45.797818];;FRSIGESIGE39411;FR*SOD*E*SIGE*3*1*2*_;;;;;;;;;;;;;;;;;;;7504052001142;2018-11-14;;;;;;;;4.76991;45.744922;78180;Magneux-Haute-Rive;; +;E.Leclerc, Montceau-les-Mines parking location;;;;;;SONEPAR CONNECT BRIGNOLES;FRSIGPSIGE19941;FR*SOD*S*MB40*42*1*_*_;LY404 - BOULEVARD DES CANUTS;;RUE PIERRE LAVERGNE;78209;[4.801467, 45.756093];;FRSIGESIGE39412;FR*SOD*E*SIGE*3*1*1*_;;;;;;;;;;;;;;;;;;;7570043317829;2021-02-08;;;;;;;;4.849126;45.746092;59830;Keskastel;; +;E.Leclerc, Niort;;;;;;SONEPAR CONNECT GENNEVILLIERS;FRSIGPSIGE19951;FR*SOD*S*MB40*34*1*_*_;LY801 - MAISON DE LA DANSE;;PLACE XAVIER MAZURIER;78516;[4.76991, 45.60042];;FRSIGESIGE39512;FR*SOD*E*SIGE*4*1*2*_;;;;;;;;;;;;;;;;;;;7534732174665;2020-01-21;;;;;;;;4.850495;45.757145;13270;Strasbourg;; +;E.Leclerc, Noeux-les-Mines;;;;;;SONEPAR CONNECT THONON;FRSIGPSIGE20121;FR*SOD*S*MB40*33*1*_*_;LY601 - GARIBALDI - BUGEAUD;;RUE JEAN FERRAT;78464;[4.849126, 45.832428];;FRSIGESIGE39511;FR*SOD*E*SIGE*4*1*1*_;;;;;;;;;;;;;;;;;;;7555571537842;2021-08-16;;;;;;;;4.875101;45.770418;60600;Vitré;; +;E.Leclerc, Nogent-le-Rotrou;;;;;;CGED ARRAS _;FRSIGPSIGE19911;FR*SOD*S*MB40*32*1*_*_;SRM01 - ROUTE DU MONT THOU;;AVENUE DE LORRAINE, 87290;78128;[4.850495, 45.765502];;FRSIGESIGE39612;FR*SOD*E*SIGE*5*1*2*_;;;;;;;;;;;;;;;;;;;7409406555693;2020-01-09;;;;;;;;4.813275;45.775426;38380;Villers-Chemin-et-Mont-lès-Étrelles;; +;E.Leclerc, Normanville;;;;;;SONEPAR CONNECT BUSSY-ST-MARTIN;FRSIGPSIGE19921;FR*SOD*S*MB40*31*1*_*_;CAL05 - HOTEL DE VILLE - RADIANT;;PARKING DE LA SALLE DES FÊTES;13054;[4.875101, 45.76973];;FRSIGESIGE39611;FR*SOD*E*SIGE*5*1*1*_;;;;;;;;;;;;;;;;;;;7553690206222;2017-04-12;;;;;;;;4.887676;45.755436;48500;Serre-les-Sapins;; +;E.Leclerc, Mazères-Lezons;;;;;;SONEPAR CONNECT AUCH 1;FRSIGPSIGE20031;FR*SOD*S*MB40*30*1*_*_;LY503 - POINT DU JOUR;;AÉRODROME DE BELLAC;13209;[4.813275, 45.757816];;FRSIGESIGE39711;FR*SOD*E*SIGE*6*1*2*_;;;;;;;;;;;;;;;;;;;7567583114372;2019-01-17;;;;;;;;4.923888;45.754568;83310;Saint-Rémy-de-Provence;; +;E.Leclerc, Mazères Brico;;;;;;MONTBLANC HOTEL BORNE 02;FRSIGPSIGE20011;FR*SOD*S*MB40*49*1*_*_;GIV04 - PARC DES SPORTS;;ROUTE DORADOUR SUR GLÂNE;13212;[4.887676, 45.817008];;FRSIGESIGE39712;FR*SOD*E*SIGE*6*1*1*_;;;;;;;;;;;;;;;;;;;7514326965058;2022-08-29;;;;;;;;4.83123;45.752824;66400;Villard-de-Lans;; +;E.Leclerc, Marignane;;;;;;MONTBLANC HOTEL BORNE 01;FRSIGPSIGE20041;FR*SOD*S*MB40*51*1*_*_;FOS03 - PLACE DE LEGLISE;;RUE DES GRANDS JARDINS;13002;[4.923888, 45.765487];;FRSIGESIGE39811;FR*SOD*E*SIGE*7*1*2*_;;;;;;;;;;;;;;;;;;;7548625082591;2021-04-07;;;;;;;;4.844451;45.749462;01120;Arras;; +;E.Leclerc, Mareuil-les-Meaux;;;;;;CGED SELESTAT 1;FRSIGPSIGE20051;FR*SOD*S*MB40*50*1*_*_;LY608 - VAUBAN - GARIBALDI;;RUE DU CHAMP DE FOIRE;13206;[4.83123, 45.744922];;FRSIGESIGE39911;FR*SOD*E*SIGE*7*1*1*_;;;;;;;;;;;;;;;;;;;7467004241042;2021-08-30;;;;;;;;4.857939;45.772218;84810;Arles;; +;E.Leclerc, Marsannay-la-Côte;;;;;;VANDOEUVRE - RUELLE MATHIEU DE DOMBASLE - 187032;FRSIGPSIGE20021;FR*SOD*S*MB40*43*1*_*_;VIL01 - GRATTE-CIEL - DEDIEU;;AVENUE DE BELLAC;13215;[4.844451, 45.746092];;FRSIGESIGE39112;FR*SOD*E*SIGE*8*1*1*_;;;;;;;;;;;;;;;;;;;7499421028268;2021-09-10;;;;;;;;4.806765;45.73064;07150;Laval;; +;E.Leclerc, Meaux;;;;;;SONEPAR VERNON;FRSIGPSIGE20131;FR*SOD*S*MB40*47*1*_*_;LY505 - PLACE DE TRION - CHOULANS;;PARVIS COLONEL BELTRAME;13075;[4.857939, 45.757145];;FRSIGESIGE39912;FR*SOD*E*SIGE*157*1*2*_;;;;;;;;;;;;;;;;;;;7459478915280;2021-05-14;;;;;;;;4.819801;45.752512;11200;Château-Thierry;; +;E.Leclerc, Mimizan;;;;;;AUTRECHE 1198;FRSIGPSIGE20161;FR*SOD*S*MB40*91*1*_*_;RIL04 - CENTRE AQUATIQUE;;GARE;13042;[4.806765, 45.770418];;FRSIGESIGE40012;FR*SOD*E*SIGE*9*1*2*_;;;;;;;;;;;;;;;;;;;7466135934174;2022-03-25;;;;;;;;4.872684;45.777167;17420;Portiragnes;; +;E.Leclerc, Plougastel;;;;;;Aire de Lafayette Lorlanges;FRSIGPSIGE20151;FR*SOD*S*MB40*45*1*_*_;VAV06 - CARRE DE SOIE - BOHLEN;;PLACE DU 19 MARS 1962;13208;[4.819801, 45.775426];;FRSIGESIGE40011;FR*SOD*E*SIGE*9*1*1*_;;;;;;;;;;;;;;;;;;;7440665600514;2022-01-14;;;;;;;;4.88493;45.809992;38150;Bezons;; +;E.Leclerc, Pleuven;;;;;;AMBOISE 1184 - Château;FRSIGPSIGE20141;FR*SOD*S*MB40*44*1*_*_;LY709 - GENERAL LECLERC;;PARKING GUILLAUME LEMAISTRE, RUE PIERRE MENDÈS FRANCE;13216;[4.872684, 45.755436];;FRSIGESIGE40112;FR*SOD*E*SIGE*10*1*1*_;;;;;;;;;;;;;;;;;;;7466280651916;2021-11-16;;;;;;;;4.838031;45.736845;12400;Floirac;; +;E.Leclerc, Ploermel;;;;;;SUPER U GREZ N STATION 2;FRSIGPSIGE20111;FR*SOD*S*MB40*86*1*_*_;LY708 - JEAN MACE - SAINT-LAZARE;;RUE DE CHANZY;13023;[4.88493, 45.754568];;FRSIGESIGE40111;FR*SOD*E*SIGE*10*1*2*_;;;;;;;;;;;;;;;;;;;7496671390003;2021-08-10;;;;;;;;4.886463;45.844635;04300;Jaunay-Marigny;; +;E.Leclerc, Ploufragan;;;;;;Aire de la Plaine du Forez Ouest;FRSIGPSIGE21611;FR*SOD*S*MB40*90*1*_*_;LY321 - PART-DIEU OUEST;;MAISON DU LAC;13203;[4.838031, 45.752824];;FRSIGESIGE40211;FR*SOD*E*SIGE*11*1*2*_;;;;;;;;;;;;;;;;;;;7466714805402;2017-05-23;;;;;;;;4.853004;45.853939;02100;Rougon;; +;E.Leclerc, Pleneuf Val André;;;;;;EBC RECHARGE BORNE 1;FRSIGPSIGE21712;FR*SOD*S*MB40*72*1*_*_;LY906 - PLACE JEAN MONNET - LECLAIR;;PLACE DU CHAMPS DE MARS;13204;[4.886463, 45.749462];;FRSIGESIGE40212;FR*SOD*E*SIGE*11*1*1*_;;;;;;;;;;;;;;;;;;;7484659812679;2017-10-19;;;;;;;;4.835647;45.746765;30240;Oraison;; +;E.Leclerc, Piton-Saint-Leu;;;;;;SUPER U GREZ N STATION 4;FRSIGPSIGE21711;FR*SOD*S*MB40*73*1*_*_;LY402 - RUE BONY;;ZA DU MONTEIL;13205;[4.853004, 45.772218];;FRSIGESIGE40311;FR*SOD*E*SIGE*12*1*2*_;;;;;;;;;;;;;;;;;;;7420405109341;2017-03-13;;;;;;;;4.868093;45.762465;30270;Carros;; +;E.Leclerc, Pleumeleuc;;;;;;MAIRIE SMDL GROUPE SCOLAIRE;FRSIGPSIGE24112;FR*SOD*S*MB40*74*1*_*_;LY322 - SAINT-EUSEBE;;PLACE DE LA NATION;13033;[4.835647, 45.73064];;FRSIGESIGE40312;FR*SOD*E*SIGE*12*1*1*_;;;;;;;;;;;;;;;;;;;7458755326326;2017-03-14;;;;;;;;4.804307;45.74192;30310;Champillon;; +;E.Leclerc, Plérin;;;;;;Coquelles;FRSIGPSIGE23412;FR*SOD*S*MB40*75*1*_*_;VIL15 - RECONNAISSANCE - BALZAC;;PARKING DU MOULIN DU PUY;13211;[4.868093, 45.752512];;FRSIGESIGE40412;FR*SOD*E*SIGE*13*1*2*_;;;;;;;;;;;;;;;;;;;7468017265602;2017-12-28;;;;;;;;4.798111;45.774634;27490;Douains;; +;E.Leclerc, Poitiers;;;;;;Saint Laurent;FRSIGPSIGE23612;FR*SOD*S*MB40*76*1*_*_;LY705 - QUAI CLAUDE BERNARD;;ROUTE DE GUILLAUMES;13207;[4.804307, 45.777167];;FRSIGESIGE40411;FR*SOD*E*SIGE*13*1*1*_;;;;;;;;;;;;;;;;;;;7419536802472;2018-03-20;;;;;;;;4.918049;45.774643;62360;Uhrwiller;; +;E.Leclerc, Pineuilh;;;;;;BOURGUEIL 1208 - Rue Jean Causseret;FRSIGPSIGE23611;FR*SOD*S*MB40*77*1*_*_;LY305 - MONTCHAT - CHATEAU;;AV. DU 11 NOVEMBRE;13106;[4.798111, 45.809992];;FRSIGESIGE40511;FR*SOD*E*SIGE*15*1*1*_;;;;;;;;;;;;;;;;;;;7467727830093;2018-02-20;;;;;;;;4.854293;45.763164;85440;Coudekerque-Branche;; +;E.Leclerc, Osny;;;;;;BETZ LE CHÂTEAU 1206;FRSIGPSIGE23711;FR*SOD*S*MB40*71*1*_*_;LY607 - MONTGOLFIER;;ROUTE DE LA COLLE;13214;[4.918049, 45.736845];;FRSIGESIGE39212;FR*SOD*E*SIGE*15*1*2*_;;;;;;;;;;;;;;;;;;;7427206845253;2017-02-10;;;;;;;;4.799631;45.758995;45700;Magenta;; +;E.Leclerc, Noyal-sur-Vilaine;;;;;;AVOINE 1200;FRSIGPSIGE23712;FR*SOD*S*MB40*68*1*_*_;LY707 - DEBOURG;;AVENUE DE VALBERG;19136;[4.854293, 45.844635];;FRSIGESIGE39111;FR*SOD*E*SIGE*156*1*2*_;;;;;;;;;;;;;;;;;;;7491316831349;2018-03-29;;;;;;;;4.904544;45.7483;45200;Denney;; +;E.Leclerc, Orly;;;;;;LA CELLE SAINT AVANT 1214;FRSIGPSIGE23811;FR*SOD*S*MB40*66*1*_*_;LY306 - DAUPHINE - LACASSAGNE;;ROUTE DE LORATOIRE;19148;[4.799631, 45.853939];;FRSIGESIGE3611;FR*SOD*E*SIGE*157*1*1*_;;;;;;;;;;;;;;;;;;;7420983980410;2017-04-06;;;;;;;;4.868584;45.746565;45120;Hundling;; +;E.Leclerc, Pessac;;;;;;Aire de Béziers Montblanc Nord;FRSIGPSIGE23812;FR*SOD*S*MB40*67*1*_*_;LY901 - TISSOT - BOURGOGNE;;ROUTE DES DOLINES;19033;[4.904544, 45.746765];;FRSIGESIGE38312;FR*SOD*E*SIGE*193*2*1*_;;;;;;;;;;;;;;;;;;;7306946360917;2018-01-11;;;;;;;;4.797609;45.758607;57280;Alençon;; +;E.Leclerc, Parthenay;;;;;;SONEPAR CONNECT TROYES;FRSIGPSIGE23912;FR*SOD*S*MB40*69*1*_*_;SDM01 - CENTRE-BOURG;;D2202;19080;[4.868584, 45.762465];;FRSIGESIGE37712;FR*SOD*E*SIGE*166*1*2*_;;;;;;;;;;;;;;;;;;;7418523777975;2017-02-03;;;;;;;;4.88827;45.768693;59223;Mommenheim;; +;E.Leclerc, Perrusson;;;;;;CGED TOURCOING;FRSIGPSIGE23911;FR*SOD*S*MB40*70*1*_*_;BRN04 - CURIAL;;AVENUE DU 11 NOVEMBRE;19275;[4.797609, 45.74192];;FRSIGESIGE37811;FR*SOD*E*SIGE*172*1*2*_;;;;;;;;;;;;;;;;;;;7455571534698;2017-03-16;;;;;;;;4.859324;45.726871;54520;Proville;; +;E.Leclerc, Harly;;;;;;SU BEAULIEU SUPER U;FRSIGPSIGE24011;FR*SOD*S*MB40*78*1*_*_;FSM01 - CENTRE-BOURG;;PL. NAPOLÉON III;19287;[4.88827, 45.774634];;FRSIGESIGE37812;FR*SOD*E*SIGE*171*1*2*_;;;;;;;;;;;;;;;;;;;7467583112245;2018-01-12;;;;;;;;4.874061;45.753338;57685;Biesheim;; +;E.Leclerc, Herbignac;;;;;;SONEPAR CONNECT MARCQ-EN-BAREUL;FRSIGPSIGE24012;FR*SOD*S*MB40*87*1*_*_;POM01 - MUSEE AMPERE;;PLACE DES COMBATTANTS;67365;[4.859324, 45.774643];;FRSIGESIGE37911;FR*SOD*E*SIGE*171*1*1*_;;;;;;;;;;;;;;;;;;;7483502070276;2017-02-23;;;;;;;;4.845828;45.774074;55100;Mâcon;; +;E.Leclerc, Herlin-Le-Sec;;;;;;LA SAUCELLE - Place de l'Eglise - 128795;FRSIGPSIGE24111;FR*SOD*S*MB40*85*1*_*_;BRN05 - HOPITAUX EST;;PL. DE LA MAIRIE;43123;[4.874061, 45.763164];;FRSIGESIGE37912;FR*SOD*E*SIGE*170*1*2*_;;;;;;;;;;;;;;;;;;;7491606266932;2017-04-27;;;;;;;;4.896494;45.77919;62950;Villerest;; +;E.Leclerc, Guingamp;;;;;;SUPERU BORNE CLIENT;FRSIGPSIGE24212;FR*SOD*S*MB40*29*1*_*_;LY309 - PATINOIRE BARABAN;;RUE MIGNO;28164;[4.845828, 45.758995];;FRSIGESIGE38011;FR*SOD*E*SIGE*170*1*1*_;;;;;;;;;;;;;;;;;;;7453979638081;2017-07-05;;;;;;;;4.84352;45.746524;59115;Montréal;; +;E.Leclerc, Hirson;;;;;;MAIRIE SMDL PARKING RDC;FRSIGPSIGE21811;FR*SOD*S*MB40*88*1*_*_;SFL02 - JARROSSON;;AV. FRANCIS TONNER;42295;[4.896494, 45.7483];;FRSIGESIGE38012;FR*SOD*E*SIGE*169*1*2*_;;;;;;;;;;;;;;;;;;;7581476024231;2017-06-13;;;;;;;;4.861625;45.717164;59494;Loriol-du-Comtat;; +;E.Leclerc, La Ferté-Macé;;;;;;Aire du Haut Forez Sud;FRSIGPSIGE24211;FR*SOD*S*MB40*84*1*_*_;VIL08 - CHATEAU GAILLARD - FORT;;PL. THOMAS GUÉRIN,;42130;[4.84352, 45.746565];;FRSIGESIGE38111;FR*SOD*E*SIGE*169*1*1*_;;;;;;;;;;;;;;;;;;;7495224211946;2020-05-10;;;;;;;;4.88884;45.864387;59155;Saintes-Maries-de-la-Mer;; +;E.Leclerc, La Crau;;;;;;RAW PARISGIVERNY 59;FRSIGPSIGE24312;FR*SOD*S*MB40*89*1*_*_;VIL16 - CHAPLIN - STALINGRAD;;AVENUE DE GRASSE;67234;[4.861625, 45.758607];;FRSIGESIGE38112;FR*SOD*E*SIGE*168*1*2*_;;;;;;;;;;;;;;;;;;;7419681520239;2021-11-12;;;;;;;;4.830579;45.804627;62600;Saint-Maurice-d'Ibie;; +;E.Leclerc, Jonzac;;;;;;CGED GUERET;FRSIGPSIGE24311;FR*SOD*S*MB40*81*1*_*_;VIL09 - TOTEM;;AVENUE DE LESTÉREL;67482;[4.88884, 45.768693];;FRSIGESIGE38212;FR*SOD*E*SIGE*168*1*1*_;;;;;;;;;;;;;;;;;;;7484804530459;2022-02-03;;;;;;;;4.849443;45.729335;37300;Saint-Jean-le-Centenier;; +;E.Leclerc, Issenheim;;;;;;CGED EPINAL (VOSGES);FRSIGPSIGE24411;FR*SOD*S*MB40*79*1*_*_;LY303 - SAXE - PLACE GUICHARD;;RUE DULYS;35360;[4.830579, 45.726871];;FRSIGESIGE38211;FR*SOD*E*SIGE*167*1*2*_;;;;;;;;;;;;;;;;;;;7404920304689;2019-09-23;;;;;;;;4.86727;45.72577;62280;Cluses;; +;E.Leclerc, Gouesnou;;;;;;SUPERU FLASSANS SUPER U 2;FRSIGPSIGE24412;FR*SOD*S*MB40*80*1*_*_;LY311 - PINEL - HOPITAUX EST;;AVENUE ROUMANILLE;70366;[4.849443, 45.753338];;FRSIGESIGE38311;FR*SOD*E*SIGE*167*1*1*_;;;;;;;;;;;;;;;;;;;7357018719951;2022-01-07;;;;;;;;4.873976;45.82162;59320;Mouilleron-le-Captif;; +;E.Leclerc, Gleize;;;;;;Aire de Vémars Est;FRSIGPSIGE24512;FR*SOD*S*MB40*82*1*_*_;LY706 - JEAN MACE;;RUE DE LA PETITE COLLINE;25542;[4.86727, 45.774074];;FRSIGESIGE38411;FR*SOD*E*SIGE*166*1*1*_;;;;;;;;;;;;;;;;;;;7370766910939;2017-04-21;;;;;;;;4.82456;45.821754;51350;Belleville-sur-Meuse;; +;E.Leclerc, Grasse;;;;;;Braslou 11017 - Rue Principale;FRSIGPSIGE24511;FR*SOD*S*MB40*92*1*_*_;LY316 - VILLETTE - POMPIDOU;;CHEMIN DE LA FAISSOLE;13100;[4.873976, 45.77919];;FRSIGESIGE39012;FR*SOD*E*SIGE*165*1*2*_;;;;;;;;;;;;;;;;;;;7439797294410;2017-03-01;;;;;;;;4.814662;45.880164;62800;Thionville;; +;E.Leclerc, Gramat;;;;;;BEAUMONT EN VERON 7746 - Rue Paul Langevin;FRSIGPSIGE24611;FR*SOD*S*MB40*83*1*_*_;VIL07 - FLACHET;;PLACE FRANKLIN ROOSEVELT;38548;[4.82456, 45.746524];;FRSIGESIGE38412;FR*SOD*E*SIGE*158*1*2*_;;;;;;;;;;;;;;;;;;;7480318278614;2022-07-02;;;;;;;;4.831712;45.727861;25200;Yffiniac;; +;E.Leclerc, Le Relecq-Kerhuon;;;;;;DRACHE 1244;FRSIGPSIGE24612;FR*SOD*S*MB40*13*1*_*_;LY712 - GERLAND;;ROUTE DE SAINT JEAN;62041;[4.814662, 45.717164];;FRSIGESIGE38511;FR*SOD*E*SIGE*165*1*1*_;;;;;;;;;;;;;;;;;;;7455282099092;2020-10-26;;;;;;;;4.884058;45.869805;60400;Courtisols;; +;E.Leclerc, Le Brezet;;;;;;CGED PROUVY;FRSIGPSIGE24811;FR*SOD*S*MB40*12*1*_*_;LY310 - ARISTIDE BRIAND;;CHEMIN DE RABIAC ESTAGNOL;13004;[4.831712, 45.864387];;FRSIGESIGE38512;FR*SOD*E*SIGE*164*1*1*_;;;;;;;;;;;;;;;;;;;7451085282221;2017-04-20;;;;;;;;4.815252;45.734346;59300;Mareil-Marly;; +;E.Leclerc, Le Houlme;;;;;;SALVIADIS U EXPRESS;FRSIGPSIGE24812;FR*SOD*S*MB40*11*1*_*_;VIL06 - WILSON - TONKIN;;BOULEVARD DU 8 MAI;53130;[4.884058, 45.804627];;FRSIGESIGE38612;FR*SOD*E*SIGE*164*1*2*_;;;;;;;;;;;;;;;;;;;7438205398075;2018-02-07;;;;;;;;4.969977;45.742985;62500;Bourges;; +;E.Leclerc, Le Breuil;;;;;;BLOIS - Rue de la Vall Maillard - 139033;FRSIGPSIGE24911;FR*SOD*S*MB40*10*1*_*_;VIL03 - LA DOUA;;AVENUE REINE ASTRID;02168;[4.815252, 45.729335];;FRSIGESIGE38611;FR*SOD*E*SIGE*163*1*2*_;;;;;;;;;;;;;;;;;;;7465557063064;2017-02-28;;;;;;;;4.863155;45.786008;67600;Haguenau;; +;E.Leclerc, Laval;;;;;;CGED ROUEN;FRSIGPSIGE23411;FR*SOD*S*MB40*9*1*_*_;LY205 - PERRACHE SUD;;PL. DE GAULLE;29900;[4.969977, 45.72577];;FRSIGESIGE38712;FR*SOD*E*SIGE*163*1*1*_;;;;;;;;;;;;;;;;;;;7437626527299;2017-02-07;;;;;;;;4.89595;45.788793;59450;Ostheim;; +;E.Leclerc, Langres;;;;;;BLOIS - Rue du Vall Maillard - 139063;FRSIGPSIGE23212;FR*SOD*S*MB40*8*1*_*_;OUL03 - GARE DOULLINS;;LA SALETTE;34209;[4.863155, 45.82162];;FRSIGESIGE38711;FR*SOD*E*SIGE*162*1*2*_;;;;;;;;;;;;;;;;;;;7434008581204;2018-01-22;;;;;;;;4.862851;45.781436;25480;Thann;; +;E.Leclerc, Le Blanc;;;;;;CRAVANT LES COTEAUX 21830 - Place Pierre Alliet;FRSIGPSIGE23211;FR*SOD*S*MB40*7*1*_*_;ALY01 - CENTRE-BOURG;;RUE ALPINIEN BOGLIO;05177;[4.89595, 45.821754];;FRSIGESIGE38811;FR*SOD*E*SIGE*162*1*1*_;;;;;;;;;;;;;;;;;;;7497105543479;2017-03-31;;;;;;;;4.808221;45.742073;62400;Burnhaupt-le-Haut;; +;E.Leclerc, Les Herbiers;;;;;;SUPER U PLESTIN SUPER U PLESTIN;FRSIGPSIGE23112;FR*SOD*S*MB40*6*1*_*_;RIL03 - ROUTE DE GENEVE;;BOULEVARD DE PROVENCE;95063;[4.862851, 45.880164];;FRSIGESIGE38812;FR*SOD*E*SIGE*160*1*2*_;;;;;;;;;;;;;;;;;;;7467293676489;2017-06-28;;;;;;;;4.820283;45.7516;59540;Gap;; +;E.Leclerc, Limoux;;;;;;Aire de Rosny sur Seine Sud;FRSIGPSIGE21812;FR*SOD*S*MB40*5*1*_*_;LAM02 - M7 - CONFLUENCE;;BOULEVARD CAVALIER;33167;[4.808221, 45.727861];;FRSIGESIGE38911;FR*SOD*E*SIGE*160*1*1*_;;;;;;;;;;;;;;;;;;;7418668495710;2018-04-24;;;;;;;;4.909035;45.761843;21300;Chalon-sur-Saône;; +;E.Leclerc, Lisieux;;;;;;SONEPAR CONNECT OYONNAX;FRSIGPSIGE22041;FR*SOD*S*MB40*4*1*_*_;CHA01 - ZI CHASSIEU - ROCADE EST;;RUE DU PRINCE FERDINAND DE BOURBON DES DEUX SICILES;86115;[4.820283, 45.869805];;FRSIGESIGE38912;FR*SOD*E*SIGE*159*1*1*_;;;;;;;;;;;;;;;;;;;7427496280840;2021-09-13;;;;;;;;4.875958;45.773218;62780;Loos;; +;E.Leclerc, Loison-sous-Lens;;;;;;Aire de Béziers Montblanc Sud;FRSIGPSIGE22021;FR*SOD*S*MB40*3*1*_*_;FOS02 - MARRONNIERS;;PLACE SAN PEÏRE;04171;[4.909035, 45.734346];;FRSIGESIGE39011;FR*SOD*E*SIGE*159*1*2*_;;;;;;;;;;;;;;;;;;;7461794399403;2021-12-24;;;;;;;;4.715171;45.762188;88100;Saint-Forgeux;; +;E.Leclerc, Magny-en-Vexin;;;;;;CONTINVOIR 1233;FRSIGPSIGE22031;FR*SOD*S*MB40*2*1*_*_;RIL01 - FLEURY SALIGNAT;;RUE RIPERT GUIGONNET;59392;[4.875958, 45.742985];;FRSIGESIGE40512;FR*SOD*E*SIGE*158*1*1*_;;;;;;;;;;;;;;;;;;;7414471679418;2017-10-24;;;;;;;;4.814177;45.782509;37520;Saint-Germain-Laprade;; +;E.Leclerc, Lieu-Saint-Amand;;;;;;CHAMBOURG SUR INDRE 1216;FRSIGPSIGE22011;FR*SOD*S*MB40*1*1*_*_;MOT01 - RUE DES MAURES;;BOULEVARD DE LA MER;04143;[4.715171, 45.786008];;FRSIGESIGE40611;FR*SOD*E*SIGE*16*1*1*_;;;;;;;;;;;;;;;;;;;50089290875729;2017-10-23;;;;;;;;4.834249;45.759943;26000;Ajaccio;; +;E.Leclerc, Lesparre-Médoc;;;;;;Haut Koenigsbourg;FRSIGPSIGE22051;FR*SOD*S*MB40*93*1*_*_;LAM01 - BASTERO - CENTRE;;BOULEVARD HONORÉ DE BALZAC;06033;[4.814177, 45.788793];;FRSIGESIGE40612;FR*SOD*E*SIGE*16*1*2*_;;;;;;;;;;;;;;;;;;;7127062152606;2017-12-06;;;;;;;;4.860316;45.763032;31130;La Rochette;; +;E.Leclerc, Libourne;;;;;;CHINON 1226 - Parking de la Brêche;FRSIGPSIGE22412;FR*SOD*S*MB40*28*1*_*_;CRM01 - ROUTE DES MONTS DOR;;CHEMIN DE VALLAURIS;51119;[4.834249, 45.781436];;FRSIGESIGE3331;FR*SOD*E*SIGE*17*1*2*_;;;;;;;;;;;;;;;;;;;7287409443081;2019-01-30;;;;;;;;4.827238;45.751773;16430;Golbey;; +;E.Leclerc, Lagord Charent;;;;;;CHEMILLE SUR DEME 1224;FRSIGPSIGE22411;FR*SOD*S*MB40*21*1*_*_;BRN01 - HOTEL DE VILLE;;BOULEVARD GUILLAUME APOLLINAIRE;27203;[4.860316, 45.742073];;FRSIGESIGE3131;FR*SOD*E*SIGE*188*3*1*_;;;;;;;;;;;;;;;;;;;7599131595558;2019-06-18;;;;;;;;4.849277;45.688457;68300;Morschwiller;; +;E.Leclerc, La Réserve;;;;;;CHEILLE 1222;FRSIGPSIGE22512;FR*SOD*S*MB40*27*1*_*_;LY808 - GRANGE BLANCHE - BULLUKIAN;;BOULEVARD RAYMOND POINCARÉ;67498;[4.827238, 45.7516];;FRSIGESIGE3141;FR*SOD*E*SIGE*185*4*1*_;;;;;;;;;;;;;;;;;;;7235745189551;2019-02-11;;;;;;;;4.81272;45.760216;13290;Sens;; +;E.Leclerc, La-Croix-Saint-Ouen;;;;;;Pamiers;FRSIGPSIGE22511;FR*SOD*S*MB40*14*1*_*_;MCY01 - LACROIX-LAVAL;;ALLÉE DE LA PLAGE;59155;[4.849277, 45.761843];;FRSIGESIGE3151;FR*SOD*E*SIGE*186*2*1*_;;;;;;;;;;;;;;;;;;;7247177895833;2017-09-05;;;;;;;;4.898679;45.784265;31150;Colmar;; +;E.Leclerc, Labouheyre;;;;;;CHAMBRAY LES TOURS 1218;FRSIGPSIGE22611;FR*SOD*S*MB40*26*1*_*_;LY903 - INDUSTRIE;;CORNICHE DES ISSAMBRES;51663;[4.81272, 45.773218];;FRSIGESIGE3161;FR*SOD*E*SIGE*186*5*1*_;;;;;;;;;;;;;;;;;;;7580607717499;2018-01-25;;;;;;;;4.879203;45.737533;85260;Lanester;; +;E.Leclerc, La Pardieu;;;;;;TROISGROS IGUERANDE;FRSIGPSIGE22612;FR*SOD*S*MB40*25*1*_*_;LY409 - HOPITAL CROIX-ROUSSE;;PLACE LAMARTINE;90034;[4.898679, 45.762188];;FRSIGESIGE3111;FR*SOD*E*SIGE*186*4*1*_;;;;;;;;;;;;;;;;;;;7281476014330;2017-07-13;;;;;;;;4.841473;45.758517;85250;Besançon;; +;E.Leclerc, Langon;;;;;;SONEPAR CONNECT ARRAS;FRSIGPSIGE22712;FR*SOD*S*MB40*24*1*_*_;LY806 - BERLIET - EPARGNE;;RUE LÉON ISNARD;57340;[4.879203, 45.782509];;FRSIGESIGE3121;FR*SOD*E*SIGE*186*1*1*_;;;;;;;;;;;;;;;;;;;7277279198080;2017-03-09;;;;;;;;4.854351;45.793681;67120;Forbach;; +;E.Leclerc, Lamballe-Armor;;;;;;CHATILLON SUR CHER - Rue de la mairie - 204266;FRSIGPSIGE22711;FR*SOD*S*MB40*23*1*_*_;LY202 - PLACE CARNOT;;MNT DU COLOMBIER, 06140 COURSEGOULES;61001;[4.841473, 45.759943];;FRSIGESIGE3251;FR*SOD*E*SIGE*186*3*1*_;;;;;;;;;;;;;;;;;;;7272648228410;2017-03-21;;;;;;;;4.767208;45.770826;01800;Reims;; +;DIRVE 02 Aisne;;;;;;BOURGES - Val d'Auron - 98422;FRSIGPSIGE22811;FR*SOD*S*MB40*22*1*_*_;LY317 - BONNEL;;RUE DES REMPARTS;67301;[4.854351, 45.763032];;FRSIGESIGE3211;FR*SOD*E*SIGE*186*7*1*_;;;;;;;;;;;;;;;;;;;7256729270625;2017-05-02;;;;;;;;4.829716;45.862377;57200;Roche-lez-Beaupré;; +;Domaine de Bagheera;;;;;;CINQ MARS LA PILE 1230;FRSIGPSIGE22812;FR*SOD*S*MB40*17*1*_*_;LY401 - QUAI JOSEPH GILLET;;CHEMIN DE LOLIVET;59476;[4.767208, 45.751773];;FRSIGESIGE3231;FR*SOD*E*SIGE*187*2*1*_;;;;;;;;;;;;;;;;;;;7224746636841;2017-03-22;;;;;;;;4.888936;45.70403;80100;Condom;; +;Domaine de Beaupré;;;;;;CHATENOIS - Allée Pré le Duc - 163450 - CCS;FRSIGPSIGE22911;FR*SOD*S*MB40*15*1*_*_;VIL04 - REGUILLON;;AVENUE DE PINBONSON;68036;[4.829716, 45.688457];;FRSIGESIGE3221;FR*SOD*E*SIGE*187*3*1*_;;;;;;;;;;;;;;;;;;;7276555609012;2017-07-26;;;;;;;;4.81184;45.814521;76150;Saint-Étienne;; +;Domaine de Louvarel;;;;;;CIGOGNE 1228;FRSIGPSIGE22931;FR*SOD*S*MB40*20*1*_*_;VIL12 - INSA - EINSTEIN;;CHEMIN DE LESCALE;71270;[4.888936, 45.760216];;FRSIGESIGE3241;FR*SOD*E*SIGE*187*4*1*_;;;;;;;;;;;;;;;;;;;7570477471288;2018-03-21;;;;;;;;4.884842;45.67015;12100;Ubaye-Serre-Ponçon;; +;Domaine de Pierredon;;;;;;UEXPRESS BORNE 1;FRSIGPSIGE22951;FR*SOD*S*MB40*16*1*_*_;LY313 - SERVIENT - PREFECTURE;;AV. DU 15E CORPS;42332;[4.81184, 45.784265];;FRSIGESIGE3261;FR*SOD*E*SIGE*187*5*1*_;;;;;;;;;;;;;;;;;;;7515050553818;2018-02-21;;;;;;;;4.863127;45.730192;88420;Montclar;; +;Domaine de Riva Bella;;;;;;Chartres Bois Paris;FRSIGPSIGE22921;FR*SOD*S*MB40*18*1*_*_;LY301 - PART-DIEU - DERUELLE;;PLACE GABRIEL PÉRI;07162;[4.884842, 45.737533];;FRSIGESIGE3311;FR*SOD*E*SIGE*187*1*1*_;;;;;;;;;;;;;;;;;;;7285238677370;2022-01-05;;;;;;;;4.793958;45.730238;88400;Mundolsheim;; +;Domaine Malherbes;;;;;;BIOPATH HDF WAZEMMES 1;FRSIGPSIGE22941;FR*SOD*S*MB40*19*1*_*_;TDL01 - ALAI - CHARLES DE GAULLE;;PLACE DORTOLAN;84067;[4.863127, 45.758517];;FRSIGESIGE40712;FR*SOD*E*SIGE*188*5*1*_;;;;;;;;;;;;;;;;;;;7287264725213;2019-04-23;;;;;;;;4.881616;45.747098;50170;Barberey-Saint-Sulpice;; +;Demathieu Bard - Metz Cathédrale;;;;;;VEIGNE 1330 - Centre Abbé Fiot;FRSIGPSIGE22961;FR*SOD*S*AVTD*20*1*_*_;IRY02 - GARE DYVOURS;;VC NOUVEAU PORT DE PLAISANCE;13096;[4.793958, 45.793681];;FRSIGESIGE3341;FR*SOD*E*SIGE*17*1*1*_;;;;;;;;;;;;;;;;;;;7258031729816;2018-01-19;;;;;;;;4.84524;45.88337;83110;Étampes;; +;Depannfirst;;;;;;Shell Aire de l'Arc Sud HW;FRSIGPSIGE23012;FR*SOD*S*AVTD*10*1*_*_;VIL13 - GRANDCLEMENT;;BOULEVARD DE LA 36E DIVISION DINFANTERIE DU TEXAS;07273;[4.881616, 45.770826];;FRSIGESIGE3321;FR*SOD*E*SIGE*188*6*1*_;;;;;;;;;;;;;;;;;;;7288567186512;2017-12-18;;;;;;;;4.825499;45.835363;84190;Avignon;; +;Deux Roues;;;;;;SAINT CYR SUR LOIRE 1308 - René Coulon;FRSIGPSIGE23011;FR*SOD*S*AVTD*18*1*_*_;LY907 - VAISE - DUPORT;;BOULEVARD DE LA PLAGE;07247;[4.84524, 45.862377];;FRSIGESIGE3351;FR*SOD*E*SIGE*188*2*1*_;;;;;;;;;;;;;;;;;;;7273371817409;2017-11-30;;;;;;;;4.716219;45.692455;50290;Gundershoffen;; +;Diffusion automobile Clermontaise;;;;;;SONEPAR CONNECT TOULOUSE 1;FRSIGPSIGE23111;FR*SOD*S*AVTD*16*6*_*_;LY804 - LAENNEC - BLANCHET;;AVENUE DU CAP-ROUX;74081;[4.825499, 45.70403];;FRSIGESIGE3551;FR*SOD*E*SIGE*188*4*1*_;;;;;;;;;;;;;;;;;;;7283212626989;2018-01-30;;;;;;;;4.824257;45.583926;69003;Préhy;; +;Doga;;;;;;IT TRATTORIA BORNE 2;FRSIGPSIGE19411;FR*SOD*S*AVTD*15*4*_*_;LY320 - PART-DIEU EST;;RUE EUGÈNE FÉLIX;85155;[4.716219, 45.814521];;FRSIGESIGE3521;FR*SOD*E*SIGE*188*1*1*_;;;;;;;;;;;;;;;;;;;7243270515296;2018-05-04;;;;;;;;4.887705;45.639385;25370;Epagny Metz-Tessy;; +;Domaine Alexandre de Lur Saluces;;;;;;SAINTE MAURE DE TOURAINE 1310;FRSIGPSIGE19322;FR*SOD*S*AVTD*14*1*_*_;CHM01 - LANESSAN SUD;;ROUTE DES GROTTES;55043;[4.824257, 45.67015];;FRSIGESIGE3531;FR*SOD*E*SIGE*190*1*2*_;;;;;;;;;;;;;;;;;;;7251953583191;2020-11-20;;;;;;;;4.887876;45.737828;85390;Saint-Herblain;; +;Domaine Les Saules;;;;;;St AMAND-MONTROND - Hôpital - 179113;FRSIGPSIGE25112;FR*SOD*S*AVTD*13*1*_*_;VIL05 - GRATTE-CIEL - BRANLY;;ROUTE DES ALPES;57672;[4.887705, 45.730192];;FRSIGESIGE3541;FR*SOD*E*SIGE*190*1*1*_;;;;;;;;;;;;;;;;;;;7282054885533;2018-09-04;;;;;;;;4.798611;45.743645;06300;Looberghe;; +;Domaine de Sevenier;;;;;;55 BAR LE DUC-rue de Couchot-66236;FRSIGPSIGE812;FR*SOD*S*AVTD*12*1*_*_;FLS01 - CENTRE-BOURG;;ALL. MARIUS CASTEL,;22389;[4.887876, 45.730238];;FRSIGESIGE3511;FR*SOD*E*SIGE*191*1*2*_;;;;;;;;;;;;;;;;;;;7204196709059;2020-01-13;;;;;;;;4.803614;45.726701;44600;Voglans;; +;Dream Energy, Arteparc Bachasson;;;;;;SODALEC-PACE STATION 1;FRSIGPSIGE212;FR*SOD*S*AVTD*4*1*_*_;PBE01 - RUE LUCIE AUBRAC;;RTE DU VIEUX PIERREFEU;51193;[4.798611, 45.747098];;FRSIGESIGE41612;FR*SOD*E*SIGE*191*1*1*_;;;;;;;;;;;;;;;;;;;7233574421422;2020-03-18;;;;;;;;4.844746;45.705336;85200;Anthy-sur-Léman;; +;Dream Energy, Arteparc Biot;;;;;;CGED TOULOUSE N;FRSIGPSIGE211;FR*SOD*S*AVTD*8*1*_*_;LTS01 - PLACE DE LA MAIRIE;;RUE CHASTELA;78367;[4.803614, 45.88337];;FRSIGESIGE3661;FR*SOD*E*SIGE*192*1*1*_;;;;;;;;;;;;;;;;;;;7273227099634;2019-11-18;;;;;;;;4.794226;45.772192;35310;Saint-Memmie;; +;Dream Energy, Arteparc Fuveau;;;;;;PARKING WEIDNER STATION 1;FRSIGPSIGE312;FR*SOD*S*AVTD*6*2*_*_;IRY01 - AVENUE JEAN GOTAIL;;D109A;18033;[4.844746, 45.835363];;FRSIGESIGE3641;FR*SOD*E*SIGE*192*1*2*_;;;;;;;;;;;;;;;;;;;7269319719251;2018-09-18;;;;;;;;4.768391;45.737199;21700;Jacou;; +;Domaine les Violettes;;;;;;CCI CAEN STATION 2;FRSIGPSIGE311;FR*SOD*S*AVTD*5*2*_*_;BRN07 - MERMOZ-PINEL;;SAINT-BASTIEN;67180;[4.794226, 45.692455];;FRSIGESIGE3631;FR*SOD*E*SIGE*193*1*2*_;;;;;;;;;;;;;;;;;;;7244572975450;2020-03-13;;;;;;;;4.842062;45.765054;60490;Ville-la-Grand;; +;Domaine du Colombier;;;;;;Mornas Village;FRSIGPSIGE412;FR*SOD*S*AVTD*3*2*_*_;BRN06 - MERMOZ-PINEL - CHARGE ULTRA-RAPIDE;;AV. DÉSIRÉ NIEL;68252;[4.768391, 45.583926];;FRSIGESIGE3061;FR*SOD*E*SIGE*193*1*1*_;;;;;;;;;;;;;;;;;;;7200868199655;2020-07-10;;;;;;;;4.969988;45.725868;78630;Saint-Berthevin;; +;Domaine des Bufflonnes;;;;;;Aire d’Achères - La Forêt;FRSIGPSIGE411;FR*SOD*S*AVTD*2*2*_*_;SFL01 - FOCH - PROVINCES;;RUE DES DEUX FRÉRES FUNEL;68334;[4.842062, 45.639385];;FRSIGESIGE3051;FR*SOD*E*SIGE*185*1*1*_;;;;;;;;;;;;;;;;;;;7224601919011;2019-08-02;;;;;;;;4.83371;45.767058;59174;Nogentel;; +;Domaine des Garrigues;;;;;;SACHE 1302;FRSIGPSIGE512;FR*SOD*S*AVTD*1*9*_*_;SGM01 - MENDILLONNE;;RUE DE LA FONTAINE;68060;[4.969988, 45.737828];;FRSIGESIGE3021;FR*SOD*E*SIGE*185*3*1*_;;;;;;;;;;;;;;;;;;;7221273409414;2019-07-03;;;;;;;;4.919312;45.817578;02190;Betting;; +;Domaine des Thomeaux;;;;;;SAINT FLOVIER 1305;FRSIGPSIGE511;FR*SOD*S*AVTD*24*1*_*_;FOS01 - MAIRIE DE FONTAINES;;AVENUE DU COMTÉ DE BEUIL;05061;[4.83371, 45.743645];;FRSIGESIGE3011;FR*SOD*E*SIGE*185*2*1*_;;;;;;;;;;;;;;;;;;;7281331296577;2018-05-18;;;;;;;;4.901374;45.648403;59125;Chamonix-Mont-Blanc;; +;Domaine du Val de Sorne;;;;;;SAINT NICOLAS DE BOURGUEIL 1306;FRSIGPSIGE612;FR*SOD*S*AVTD*7*2*_*_;SGL01 - PARKING DU 11 NOVEMBRE 1918;;D428;71076;[4.919312, 45.726701];;FRSIGESIGE40711;FR*SOD*E*SIGE*185*5*1*_;;;;;;;;;;;;;;;;;;;7284225651570;2019-12-24;;;;;;;;4.976542;45.785288;67170;Les Belleville;; +;Domaine du Rouffach;;;;;;55 BAR LE DUC-parking de la gare-66183;FRSIGPSIGE611;FR*SOD*S*SORE*72*1*_*_;GIV01 - PARKING PREVERT;;RUE LOUIS BRÉA;59360;[4.901374, 45.705336];;FRSIGESIGE40811;FR*SOD*E*SIGE*19*1*2*_;;;;;;;;;;;;;;;;;;;7233429703666;2020-01-02;;;;;;;;4.837835;45.754512;59570;Challans;; +;Delhorbe Automobiles, Dizy;;;;;;SAINT BRANCHS 1304;FRSIGPSIGE712;FR*SOD*S*SORE*44*1*_*_;SOL01 - MAIRIE;;ROUTE DU CIMETIÈRE;69200;[4.976542, 45.772192];;FRSIGESIGE40812;FR*SOD*E*SIGE*19*1*1*_;;;;;;;;;;;;;;;;;;;7232561398064;2019-07-18;;;;;;;;4.755318;45.75291;39700;Cherbourg-en-Cotentin;; +;Daniel Mouton;;;;;;ASNF BORNE 1;FRSIGPSIGE711;FR*SOD*S*SORE*36*1*_*_;CHA02 - CHEMIN DE LAFRIQUE;;AV. MISS PELL;43190;[4.837835, 45.737199];;FRSIGESIGE40912;FR*SOD*E*SIGE*20*1*1*_;;;;;;;;;;;;;;;;;;;7542981089438;2022-09-23;;;;;;;;4.853851;45.852635;89290;Hérouville-Saint-Clair;; +;Decathlon - Montreuil public;;;;;;Fontaine Colette;FRSIGPSIGE811;FR*SOD*S*SORE*37*1*_*_;LY704 - QUARTIER GENERAL FRERE;;ROUTE DU VILLAGE;2A004;[4.755318, 45.765054];;FRSIGESIGE40911;FR*SOD*E*SIGE*20*1*2*_;;;;;;;;;;;;;;;;;;;7575687312194;2022-07-15;;;;;;;;5.003734;45.786609;52140;Limas;; +;Delhorbe Automobiles Volvo Châlons-en-Champagne;;;;;;Baie de Somme;FRSIGPSIGE15712;FR*SOD*S*SORE*38*1*_*_;BRN03 - PARKING DE LESPACE ALBERT CAMUS;;BD DES ECUREUILS;77389;[4.853851, 45.725868];;FRSIGESIGE41012;FR*SOD*E*SIGE*21*1*2*_;;;;;;;;;;;;;;;;;;;7409985426896;2017-07-17;;;;;;;;4.900704;45.770299;21190;Rive-de-Gier;; +;Delhorbe Automobiles Volvo Reims;;;;;;BALLAN MIRE 1332;FRSIGPSIGE912;FR*SOD*S*SORE*39*1*_*_;SPR04 - CITE BERLIET;;ALLÉE DU 8 MAI;88209;[5.003734, 45.767058];;FRSIGESIGE41011;FR*SOD*E*SIGE*21*1*1*_;;;;;;;;;;;;;;;;;;;7449059232690;2017-07-10;;;;;;;;4.812139;45.78257;52120;Buchelay;; +;Delhorbe Automobiles Hyundai Reims;;;;;;VOUVRAY 1331;FRSIGPSIGE911;FR*SOD*S*SORE*40*1*_*_;DEC02 - ESPLANADE;;D 83;34023;[4.900704, 45.817578];;FRSIGESIGE41111;FR*SOD*E*SIGE*22*1*1*_;;;;;;;;;;;;;;;;;;;7548769800334;2022-11-23;;;;;;;;4.734441;45.735576;21360;Angerville-la-Campagne;; +;Decathlon Saint-Denis;;;;;;SONEPAR CONNECT RONCQ;FRSIGPSIGE1011;FR*SOD*S*SORE*41*1*_*_;LY702 - JEAN JAURES;;ROUTE NEUVE;67304;[4.812139, 45.648403];;FRSIGESIGE41112;FR*SOD*E*SIGE*22*1*2*_;;;;;;;;;;;;;;;;;;;7505933332523;2017-05-30;;;;;;;;4.850437;45.877467;89190;Épinal;; +;Delhorbe Automobiles Hyundai Châlons-en-Champagne;;;;;;55 SPINCOURT-chemin court-66456;FRSIGPSIGE1012;FR*SOD*S*SORE*42*1*_*_;TDL04 - STADE DU SAUZE;;CHEMIN DE VILLAMONT;89387;[4.734441, 45.785288];;FRSIGESIGE41212;FR*SOD*E*SIGE*23*1*2*_;;;;;;;;;;;;;;;;;;;7546888469778;2017-06-02;;;;;;;;4.85484;45.715749;16470;Tourcoing;; +;Comptoir 38;;;;;;LA CHAPELLE AUX NAUX 1699;FRSIGPSIGE1112;FR*SOD*S*SORE*71*1*_*_;LY809 - SAINT JEAN DE DIEU;;CHEMIN DES FADES;68066;[4.850437, 45.754512];;FRSIGESIGE41211;FR*SOD*E*SIGE*23*1*1*_;;;;;;;;;;;;;;;;;;;7579305255497;2017-06-01;;;;;;;;4.872527;45.713032;59820;Hochfelden;; +;Comptoir Commercial du Languedoc;;;;;;SONEPAR CONNECT PARIS 13;FRSIGPSIGE1111;FR*SOD*S*SORE*45*1*_*_;MEY03 - CENTRE;;BD DU MIDI LOUISE MOREAU;56098;[4.85484, 45.75291];;FRSIGESIGE41311;FR*SOD*E*SIGE*24*1*2*_;;;;;;;;;;;;;;;;;;;7576266183410;2017-10-13;;;;;;;;4.797656;45.755467;91410;Saint-Laurent-de-Cerdans;; +;Concession Diamant Lattes;;;;;;SAINT ROCH 1325;FRSIGPSIGE1212;FR*SOD*S*SORE*46*1*_*_;RIL02 - MARIA CASARES;;15 PL. SAINT-LAURENT;25056;[4.872527, 45.852635];;FRSIGESIGE41312;FR*SOD*E*SIGE*24*1*1*_;;;;;;;;;;;;;;;;;;;7543125807210;2017-07-07;;;;;;;;5.035817;45.760804;77400;Marchaux-Chaudefontaine;; +;Concessions Renault Réunion;;;;;;Tours La Longue Vue;FRSIGPSIGE1211;FR*SOD*S*SORE*47*1*_*_;VER01 - ROUTE DE LYON;;PLACE SAINT-JEAN,;57227;[4.797656, 45.786609];;FRSIGESIGE41412;FR*SOD*E*SIGE*25*1*2*_;;;;;;;;;;;;;;;;;;;7498118568043;2017-02-06;;;;;;;;4.78582;45.737324;60110;Basse-Terre;; +;Commune de la Grande Paroisse;;;;;;SONEPAR CONNECT LA RETARDAIS 2;FRSIGPSIGE1312;FR*SOD*S*SORE*48*1*_*_;CHB01 - PLACE MARSONNAT;;PL. LUIDGI DURAND DE LA PENNE;51454;[5.035817, 45.770299];;FRSIGESIGE41411;FR*SOD*E*SIGE*25*1*1*_;;;;;;;;;;;;;;;;;;;7549203954828;2017-05-18;;;;;;;;4.765452;45.786734;57740;Aubière;; +;Commune de Petit-Réderching;;;;;;CGED ANNEMASSE;FRSIGPSIGE1311;FR*SOD*S*SORE*49*1*_*_;LY307 - RUE DARMENIE;;RUE DU CHANTIER NAVAL;25495;[4.78582, 45.78257];;FRSIGESIGE41511;FR*SOD*E*SIGE*26*1*1*_;;;;;;;;;;;;;;;;;;;7592040423151;2020-12-28;;;;;;;;4.838506;45.720002;50200;Montaigut-en-Combraille;; +;Commune de Puzieux;;;;;;LES HERMITES 19684 - Rue de la fontaine;FRSIGPSIGE1511;FR*SOD*S*SORE*50*1*_*_;LY308 - PLACE BIR-HAKEIM;;ALLÉE PIERRE DE COUBERTIN;32107;[4.765452, 45.735576];;FRSIGESIGE2612;FR*SOD*E*SIGE*156*1*1*_;;;;;;;;;;;;;;;;;;;7550072261698;2017-04-03;;;;;;;;4.79816;45.666275;67520;Brognon;; +;Commune de Rimsdorf;;;;;;SONEPAR RAMBOUILLET;FRSIGPSIGE1512;FR*SOD*S*SORE*51*1*_*_;CAF01 - MAIRIE;;AVENUE TOURNAMY;84059;[4.838506, 45.877467];;FRSIGESIGE2711;FR*SOD*E*SIGE*155*1*2*_;;;;;;;;;;;;;;;;;;;7570332753657;2020-05-15;;;;;;;;4.806887;45.816332;57520;Gissey-le-Vieil;; +;Commune de Rouvroy;;;;;;SONEPAR CONNECT CHARTRES;FRSIGPSIGE15612;FR*SOD*S*SORE*35*1*_*_;LY904 - ANDREI SAKHAROV;;RUE DU CHERCHE MIDI;42218;[4.79816, 45.715749];;FRSIGESIGE2712;FR*SOD*E*SIGE*155*1*1*_;;;;;;;;;;;;;;;;;;;7570188035673;2018-05-09;;;;;;;;4.819514;45.738293;26220;La Palme;; +;Commune de Valmeinier;;;;;;Biscarrosse;FRSIGPSIGE15711;FR*SOD*S*SORE*34*1*_*_;JOG02 - ZI MEYZIEU-JONAGE;;AVENUE DU MOULIN DE LA CROIX;04033;[4.806887, 45.713032];;FRSIGESIGE2921;FR*SOD*E*SIGE*153*6*1*_;;;;;;;;;;;;;;;;;;;7534153303467;2019-10-07;;;;;;;;4.778237;45.822366;88220;Beausoleil;; +;Commune de Vaujany;;;;;;Bois Guillerot;FRSIGPSIGE19321;FR*SOD*S*SORE*21*1*_*_;ECY02 - CENTRE SPORTIF;;CONTRE ALLÉE FRANCIS TONNER;04126;[4.819514, 45.755467];;FRSIGESIGE2911;FR*SOD*E*SIGE*153*5*1*_;;;;;;;;;;;;;;;;;;;7555860973345;2018-10-29;;;;;;;;4.852093;45.769151;88390;Jasseron;; +;Coutelas;;;;;;NETTO BORNE 1;FRSIGPSIGE16612;FR*SOD*S*SORE*22*1*_*_;FRC02 - MAIRIE;;PORT DE LA FIGUEIRETTE;67309;[4.778237, 45.760804];;FRSIGESIGE2941;FR*SOD*E*SIGE*184*2*1*_;;;;;;;;;;;;;;;;;;;7532271971233;2021-10-07;;;;;;;;4.789977;45.760144;88150;Bouc-Bel-Air;; +;Coyotte Food;;;;;;SEMBLANCAY 1315;FRSIGPSIGE17212;FR*SOD*S*SORE*23*1*_*_;NEU01 - CENTRE;;PLACE GÉNÉRAL BERTRAND;10030;[4.852093, 45.737324];;FRSIGESIGE2931;FR*SOD*E*SIGE*184*4*1*_;;;;;;;;;;;;;;;;;;;7552966617448;2022-09-25;;;;;;;;4.888112;45.774545;88130;Druye;; +;Creatym;;;;;;RAW PARISGIVERNY 09;FRSIGPSIGE17112;FR*SOD*S*SORE*24*1*_*_;OUL01 - FRANCISQUE JOMARD;;RUE PAUL NÉGRIN;91223;[4.789977, 45.786734];;FRSIGESIGE3031;FR*SOD*E*SIGE*184*3*1*_;;;;;;;;;;;;;;;;;;;7581765459805;;;;;;;;;4.850108;45.696395;88240;Réau;; +;Creutzwald;;;;;;BOURGUEIL 1210 - Place Marcelin;FRSIGPSIGE17111;FR*SOD*S*SORE*25*1*_*_;OUL02 - CENTRE;;CHEMIN DES PIERRES DE MOULINS;84007;[4.888112, 45.720002];;FRSIGESIGE3041;FR*SOD*E*SIGE*184*5*1*_;;;;;;;;;;;;;;;;;;;7550216979410;2022-05-14;;;;;;;;4.771318;45.696632;84110;Fabrègues;; +;Crous - Aubière;;;;;;SAVIGNY EN VERON 1312 - Rue du Stade;FRSIGPSIGE17012;FR*SOD*S*SORE*26*1*_*_;LY502 - PLACE DE LABBE LARUE;;PLACE DES PINS;67176;[4.850108, 45.666275];;FRSIGESIGE7231;FR*SOD*E*SIGE*184*1*1*_;;;;;;;;;;;;;;;;;;;7554413795294;2019-10-25;;;;;;;;4.773797;45.609585;34480;Sandaucourt;; +;Crous - Clermont-Ferrand;;;;;;SEPMES 1317;FRSIGPSIGE17011;FR*SOD*S*SORE*27*1*_*_;TDL02 - HOTEL DE VILLE;;PARKING DE LA FERRAGE;89315;[4.771318, 45.816332];;FRSIGESIGE7241;FR*SOD*E*SIGE*249*1*2*_;;;;;;;;;;;;;;;;;;;7549927542337;2023-10-03;;;;;;;;4.872508;45.832194;84120;Deyme;; +;Cournil Automobiles;;;;;;CGED MOUGINS;FRSIGPSIGE16912;FR*SOD*S*SORE*28*1*_*_;LY807 - GRAND TROU;;RUE DES ECURIES;74112;[4.773797, 45.738293];;FRSIGESIGE37612;FR*SOD*E*SIGE*196*1*2*_;;;;;;;;;;;;;;;;;;;7524023057589;2023-11-04;;;;;;;;4.955587;45.84807;13300;Saugon;; +;Coopérative Bourgogne du Sud Public;;;;;;COTEAUX-SUR-LOIRE 1323;FRSIGPSIGE16911;FR*SOD*S*SORE*29*1*_*_;LY902 - AVENUE ROSA PARKS;;ROUTE DE CASTELLANE;44162;[4.872508, 45.822366];;FRSIGESIGE13741;FR*SOD*E*SIGE*251*1*1*_;;;;;;;;;;;;;;;;;;;7293921745318;2023-09-03;;;;;;;;4.770547;45.652114;09500;Malijai;; +;Condé Sainte Libiaire;;;;;;CGED VANNES;FRSIGPSIGE16812;FR*SOD*S*SORE*30*1*_*_;VEN07 - PARILLY - METRO;;PLACE DE LA TOUR;59358;[4.955587, 45.769151];;FRSIGESIGE13531;FR*SOD*E*SIGE*340*1*1*_;;;;;;;;;;;;;;;;;;;7567438396598;2023-09-01;;;;;;;;4.781649;45.742366;62700;Gardanne;; +;Cornimont;;;;;;ASL GAOU BENAT BORNE 1;FRSIGPSIGE16811;FR*SOD*S*SORE*31*1*_*_;FEZ01 - LES RAZES;;ROUTE DE BÉZAUDUN;62261;[4.770547, 45.760144];;FRSIGESIGE13641;FR*SOD*E*SIGE*334*1*1*_;;;;;;;;;;;;;;;;;;;7555716255509;2021-05-24;;;;;;;;4.872156;45.746018;38270;Pézenas;; +;Commune de Bitche;;;;;;SAINT JEAN SAINT GERMAIN 1321;FRSIGPSIGE16712;FR*SOD*S*SORE*32*1*_*_;LIM01 - ZAC DU PUY DOR;;PLACE JOSEPH REBUFFEL;73329;[4.781649, 45.774545];;FRSIGESIGE13631;FR*SOD*E*SIGE*335*1*2*_;;;;;;;;;;;;;;;;;;;7576845054524;2021-04-16;;;;;;;;4.884666;45.817736;01750;Nogent-sur-Marne;; +;Commune Le Mérévillois;;;;;;SORIGNY 1319 - 11 Novembre;FRSIGPSIGE16711;FR*SOD*S*SORE*33*1*_*_;FRC01 - PLACE DE LEUROPE;;AVENUE MARÉCHAL JUIN;74013;[4.872156, 45.696395];;FRSIGESIGE13621;FR*SOD*E*SIGE*335*1*1*_;;;;;;;;;;;;;;;;;;;7515629425149;2020-03-04;;;;;;;;4.789628;45.664925;49800;Arcis-sur-Aube;; +;Commune d'Aubigny-en-Artois;;;;;;55 MONTIERS SUR SAULX-rue de l'abbaye-66319;FRSIGPSIGE16611;FR*SOD*S*SORE*52*1*_*_;SAC01 - PLACE DU MARCHE - BOULEVARD CASTELLANE;;ROND-POINT DU MOULIN DE BRUN;51506;[4.884666, 45.696632];;FRSIGESIGE13661;FR*SOD*E*SIGE*336*1*2*_;;;;;;;;;;;;;;;;;;;7576555618999;2022-03-20;;;;;;;;4.878329;45.913791;94320;Roquevaire;; +;Commune d'Aurillac;;;;;;Shell Aire d'Armor et d'Argoat - St Gilles;FRSIGPSIGE16512;FR*SOD*S*SORE*68*1*_*_;DEC01 - TOBOGGAN;;AVENUE PIERRE SEMARD;34120;[4.789628, 45.609585];;FRSIGESIGE13651;FR*SOD*E*SIGE*336*1*1*_;;;;;;;;;;;;;;;;;;;7516931885213;2016-09-30;;;;;;;;4.83156;45.726635;91700;Vert-Saint-Denis;; +;Commune de Berling;;;;;;U EXPRESS BEAUS STATION 1;FRSIGPSIGE15812;FR*SOD*S*SORE*69*1*_*_;TDL03 - ATRIUM - AVENUE DES COSMOS;;CHEMIN DE LA BASSE FERME;74305;[4.878329, 45.832194];;FRSIGESIGE13611;FR*SOD*E*SIGE*337*1*1*_;;;;;;;;;;;;;;;;;;;7548190930366;2016-10-28;;;;;;;;4.795381;45.742484;59910;Péronnas;; +;Communauté de l'Auxerrois;;;;;;Ile Rose;FRSIGPSIGE16511;FR*SOD*S*SORE*83*1*_*_;ECY03 - RUE AUGUSTE TRAMIER;;ROUTE DE VALBONNE;53201;[4.83156, 45.84807];;FRSIGESIGE13721;FR*SOD*E*SIGE*337*1*2*_;;;;;;;;;;;;;;;;;;;7576989772359;2016-10-06;;;;;;;;4.919721;45.754439;78990;Mareuil-lès-Meaux;; +;Commune de Hattigny;;;;;;MARIGNY MARMANDE 1281;FRSIGPSIGE16411;FR*SOD*S*SORE*82*1*_*_;VEN03 - VENISSY;;RUE ALEXANDRE LOUCE;02554;[4.795381, 45.652114];;FRSIGESIGE13731;FR*SOD*E*SIGE*338*1*2*_;;;;;;;;;;;;;;;;;;;50019625899489;2016-09-26;;;;;;;;4.725522;45.72893;74800;Morlaix;; +;Commune de Lagnieu;;;;;;LA CHAPELLE BLANCHE SAINT MARTIN 1254;FRSIGPSIGE16412;FR*SOD*S*SORE*81*1*_*_;VEN04 - MARCEL HOUEL - HOTEL DE VILLE;;AVENUE DES MIMOSAS;33056;[4.919721, 45.742366];;FRSIGESIGE13711;FR*SOD*E*SIGE*338*1*1*_;;;;;;;;;;;;;;;;;;;50040028479369;2016-09-09;;;;;;;;4.842099;45.758426;78370;Itterswiller;; +;Commune de Levier;;;;;;THENIOUX - Route de Tours - 170419;FRSIGPSIGE16312;FR*SOD*S*SORE*80*1*_*_;GRI01 - AVENUE JEAN ESTRAGNAT;;AVENUE DES FRÈRES ROUSTAN;57073;[4.725522, 45.746018];;FRSIGESIGE13761;FR*SOD*E*SIGE*339*1*2*_;;;;;;;;;;;;;;;;;;;50024540212003;2016-08-31;;;;;;;;4.894663;45.795544;01000;Nice;; +;Commune de Marsilly;;;;;;METTRAY 1283 - Espace Coselia;FRSIGPSIGE16311;FR*SOD*S*SORE*79*1*_*_;SAV01 - MAIRIE;;AVENUE DE LHOPITAL;74056;[4.842099, 45.817736];;FRSIGESIGE13751;FR*SOD*E*SIGE*339*1*1*_;;;;;;;;;;;;;;;;;;;50079249506221;2016-06-15;;;;;;;;4.777065;45.692093;13480;Montauban;; +;Commune de Molsheim;;;;;;CABLOTEC MTB CABLOTEC PARK;FRSIGPSIGE16212;FR*SOD*S*SORE*78*1*_*_;CZM01 - RUE GABRIEL PERI;;PLACE GÉNÉRAL DE GAULLE;73257;[4.894663, 45.664925];;FRSIGESIGE13861;FR*SOD*E*SIGE*340*1*2*_;;;;;;;;;;;;;;;;;;;50073316081319;2016-06-27;;;;;;;;4.863299;45.767571;04100;Gauville;; +;Commune de Pange;;;;;;SUPER U CHANGE BORNE 1;FRSIGPSIGE16211;FR*SOD*S*SORE*77*1*_*_;CHY01 - PARKING MALPAS;;BOULEVARD ERIC TABARLY;85047;[4.777065, 45.913791];;FRSIGESIGE13511;FR*SOD*E*SIGE*341*1*2*_;;;;;;;;;;;;;;;;;;;50091979999427;2016-11-04;;;;;;;;4.817802;45.664807;84820;Chézery-Forens;; +;Commune de Cysoing;;;;;;SONEPAR ARLES;FRSIGPSIGE16012;FR*SOD*S*SORE*76*1*_*_;BRN02 - AVENUE PIERRE BROSSOLETTE;;ALLÉE RENÉ CASSIN;50129;[4.863299, 45.726635];;FRSIGESIGE13821;FR*SOD*E*SIGE*333*1*2*_;;;;;;;;;;;;;;;;;;;50017599849871;2016-12-22;;;;;;;;4.782994;45.697485;34560;Illzach;; +;Commune de Château-Thierry;;;;;;SONEPAR CONNECT MAURIENNE;FRSIGPSIGE16011;FR*SOD*S*SORE*75*1*_*_;CRA01 - PARKING CURTIL;;PLACE DE LA MADELEINE;14327;[4.817802, 45.742484];;FRSIGESIGE13831;FR*SOD*E*SIGE*341*1*1*_;;;;;;;;;;;;;;;;;;;50095023751342;2016-12-07;;;;;;;;4.876832;45.840823;97300;Talloires-Montmin;; +;Commune de Briis sous Forge;;;;;;CGED CGED LORIENT;FRSIGPSIGE15911;FR*SOD*S*SORE*74*1*_*_;CLM01 - RUE CESAR PAULET;;ROUTE DE GENTELLY;69115;[4.782994, 45.754439];;FRSIGESIGE13851;FR*SOD*E*SIGE*342*1*2*_;;;;;;;;;;;;;;;;;;;84202744200006;2017-01-04;;;;;;;;4.722615;45.7661;85500;Joyeuse;; +;DBF Autos Artigues;;;;;;Dijon Sud;FRSIGPSIGE15912;FR*SOD*S*SORE*73*1*_*_;CRB02 - RUE DES FRENES;;AVENUE DES HOTELS;42186;[4.876832, 45.72893];;FRSIGESIGE13841;FR*SOD*E*SIGE*342*1*1*_;;;;;;;;;;;;;;;;;;;50050300196267;2016-12-06;;;;;;;;5.048532;45.78694;10200;Montagnat;; +;Crédit Agricole Beauvais;;;;;;CGED CGED ALBI;FRSIGPSIGE15811;FR*SOD*S*SORE*70*1*_*_;QUI01 - PARKING ROUTE DE CHASSELAY;;ROUTE DAURIBEAU;78118;[4.722615, 45.758426];;FRSIGESIGE13811;FR*SOD*E*SIGE*343*1*2*_;;;;;;;;;;;;;;;;;;;50068679406593;2019-08-01;;;;;;;;4.803939;45.750243;67730;Cabourg;; +;Crédit Agricole La Verderie;;;;;;CGED CGED SIX-FOURS;FRSIGPSIGE1611;FR*SOD*S*SORE*53*1*_*_;VEN01 - AVENUE VIVIANI;;AVENUE DE PROVENCE;27017;[5.048532, 45.795544];;FRSIGESIGE13911;FR*SOD*E*SIGE*343*1*1*_;;;;;;;;;;;;;;;;;;;50029460124635;2016-09-27;;;;;;;;5.009728;45.765606;50190;Riez;; +;Cuisine Plus - Clermont-Ferrand;;;;;;CGED BEAUVAIS;FRSIGPSIGE1612;FR*SOD*S*SORE*67*1*_*_;LY206 - DENUZIERE - CONFLUENCE;;RUE DE LANCIEN PALAIS DE JUSTICE;88160;[4.803939, 45.692093];;FRSIGESIGE13941;FR*SOD*E*SIGE*344*1*1*_;;;;;;;;;;;;;;;;;;;50095017996375;2014-03-18;;;;;;;;4.957743;45.763361;50340;Collonges-sous-Salève;; +;Cuisinella Saint Brice;;;;;;CGED SENS;FRSIGPSIGE1712;FR*SOD*S*SORE*54*1*_*_;LY504 - JOLIOT CURIE - LES BATTIERES;;PLACE FRÉDÉRIC MISTRAL;59599;[5.009728, 45.767571];;FRSIGESIGE13951;FR*SOD*E*SIGE*344*1*2*_;;;;;;;;;;;;;;;;;;;50006600383403ou 50079966785703;2016-09-08;;;;;;;;4.89177;45.768929;50220;Retournac;; +;Cushman & Wakefield Public;;;;;;U EXPRESS STJEAN-DE-VEDAS;FRSIGPSIGE18831;FR*SOD*S*SORE*55*1*_*_;LY805 - AVENUE PAUL SANTY;;ROUTE NAPOLÉON;67202;[4.957743, 45.664807];;FRSIGESIGE13931;FR*SOD*E*SIGE*345*1*1*_;;;;;;;;;;;;;;;;;;;50007323052900;2017-01-27;;;;;;;;4.834654;45.762921;50530;Freneuse;; +;Cycles et Nature;;;;;;SONEPAR CONNECT BRIANCON;FRSIGPSIGE18541;FR*SOD*S*SORE*56*1*_*_;SGE01 - AVENUE MARCEL MERIEUX;;RUE HENRI LAUGIER;66179;[4.89177, 45.697485];;FRSIGESIGE13921;FR*SOD*E*SIGE*345*1*2*_;;;;;;;;;;;;;;;;;;;50075195692024;2016-06-30;;;;;;;;4.84453;45.777519;50580;La Roche-sur-Yon;; +;D2 Finance;;;;;;LIGNIERES DE TOURAINE 1272;FRSIGPSIGE18621;FR*SOD*S*SORE*57*1*_*_;JOG01 - BOULEVARD LOUIS PRADEL;;RUE SAINT DIZIER;25368;[4.834654, 45.840823];;FRSIGESIGE14161;FR*SOD*E*SIGE*346*1*2*_;;;;;;;;;;;;;;;;;;;50068388393726;2016-06-28;;;;;;;;4.834116;45.706235;50630;Roubaix;; +;Crédit Agricole Amiens;;;;;;SUPER U ARNAGE SALARIES 1;FRSIGPSIGE18651;FR*SOD*S*SORE*58*1*_*_;SGL02 - AVENUE ERNEST AUBOYER;;RUE BROUGHAM;97105;[4.84453, 45.7661];;FRSIGESIGE14131;FR*SOD*E*SIGE*334*1*2*_;;;;;;;;;;;;;;;;;;;50037709381959;2016-10-12;;;;;;;;4.845349;45.692814;50760;Robion;; +;Crous - Montluçon;;;;;;UEXPRESS STE Cé BORNE 1;FRSIGPSIGE18641;FR*SOD*S*SORE*59*1*_*_;MEY02 - RUE JEAN-LOUIS BARRAULT;;ROND POINT DE LA FONTAINE NEUVE;63014;[4.834116, 45.78694];;FRSIGESIGE13521;FR*SOD*E*SIGE*333*1*1*_;;;;;;;;;;;;;;;;;;;50055654520565;2016-10-04;;;;;;;;4.828203;45.69574;50410;Sospel;; +;DBF Autos Mérignac;;;;;;CGED CLERMONT;FRSIGPSIGE18611;FR*SOD*S*SORE*60*1*_*_;MIS01 - LA HALLE DU MARCHE;;AVENUE DES BROUSAILLES;63233;[4.845349, 45.750243];;FRSIGESIGE13541;FR*SOD*E*SIGE*317*1*1*_;;;;;;;;;;;;;;;;;;;50081560938642;2017-09-06;;;;;;;;4.848397;45.776037;50600;Louhans;; +;Dream Energy, Arteparc Lesquin;;;;;;SONEPAR CONNECT CALAIS;FRSIGPSIGE18631;FR*SOD*S*SORE*61*1*_*_;VEN05 - JACQUES DUCLOS - STADE LAURENT GUERIN;;AVENUE JÉROME MASSIER;21111;[4.828203, 45.765606];;FRSIGESIGE11812;FR*SOD*E*SIGE*325*1*1*_;;;;;;;;;;;;;;;;;;;50091257084933;2017-01-19;;;;;;;;4.842903;45.745548;50140;Le Crotoy;; +;E. Leclerc, Narbonne;;;;;;IRVE CAGPS MAGELLAN 3;FRSIGPSIGE18671;FR*SOD*S*SORE*62*1*_*_;ROS01 - MAIRIE - QUAI PIERRE DUPONT;;AVENUE GUY DE MAUPASSANT;21298;[4.848397, 45.763361];;FRSIGESIGE12812;FR*SOD*E*SIGE*319*1*2*_;;;;;;;;;;;;;;;;;;;50078807569526;2017-01-26;;;;;;;;4.841962;45.756307;50590;Pérols;; +;E. Leclerc, Oloron;;;;;;LOCHES - Place de Verdun - 166912;FRSIGPSIGE18721;FR*SOD*S*SORE*63*1*_*_;LY602 - EDGAR QUINET;;AVENUE SAINT LOUIS;11188;[4.842903, 45.768929];;FRSIGESIGE11912;FR*SOD*E*SIGE*320*1*2*_;;;;;;;;;;;;;;;;;;;50059274143040;2016-10-07;;;;;;;;4.919892;45.731668;50310;Altillac;; +;E. Leclerc, Orvault;;;;;;MAILLE 1277;FRSIGPSIGE18731;FR*SOD*S*SORE*64*1*_*_;CAL02 - CUIRE - RUE COSTE;;CHEMIN DU GRAND CHÊNE;06012;[4.841962, 45.762921];;FRSIGESIGE11911;FR*SOD*E*SIGE*320*1*1*_;;;;;;;;;;;;;;;;;;;50028736940196;2017-08-29;;;;;;;;4.852532;45.771588;50690;Biéville-Beuville;; +;E. Leclerc, Kingersheim;;;;;;SONEPAR CONNECT VILLFRANCHE SS;FRSIGPSIGE18741;FR*SOD*S*SORE*65*1*_*_;LY701 - THIBAUDIERE;;ROUTE DE SAINT AUBAN;01195;[4.919892, 45.777519];;FRSIGESIGE12111;FR*SOD*E*SIGE*321*1*1*_;;;;;;;;;;;;;;;;;;;50055940963326;2016-09-20;;;;;;;;4.940114;45.718133;50570;Cessy;; +;E. Leclerc, Moisselles;;;;;;LOUESTAULT 1275;FRSIGPSIGE18751;FR*SOD*S*SORE*84*1*_*_;LY501 - VIEUX- LYON - SAINT-PAUL;;CHEMIN DE LA COLETTE;13015;[4.852532, 45.706235];;FRSIGESIGE12112;FR*SOD*E*SIGE*321*1*2*_;;;;;;;;;;;;;;;;;;;50097773790405;2015-07-21;;;;;;;;4.952119;45.754859;50430;Courseulles-sur-Mer;; +;E. Leclerc, Montceau-les-Mines parking hyper;;;;;;SONEPAR DIEPPE;FRSIGPSIGE18711;FR*SOD*S*SORE*66*1*_*_;LY304 - DUGUESCLIN - LES HALLES;;AVENUE DE LA MER;37099;[4.940114, 45.692814];;FRSIGESIGE12211;FR*SOD*E*SIGE*322*1*2*_;;;;;;;;;;;;;;;;;;;50031791325992;2016-07-13;;;;;;;;4.800152;45.771705;50640;Évrecy;; +;E. Leclerc, Montélimar;;;;;;REIGNAC SUR INDRE 1299;FRSIGPSIGE18851;FR*SOD*S*SORE*93*1*_*_;LY605 - FOCH - LYAUTEY;;AVENUE DU MARÉCHAL LATTRE DE TASSIGNY;77384;[4.952119, 45.69574];;FRSIGESIGE12212;FR*SOD*E*SIGE*322*1*1*_;;;;;;;;;;;;;;;;;;;50062464295303;2016-11-03;;;;;;;;4.851272;45.769459;50320;Distré;; +;E. Leclerc, Phalsbourg;;;;;;SONELOG CESTAS 10;FRSIGPSIGE1711;FR*SOD*S*SORE*133*1*_*_;LY302 - LIBERTE;;BOULEVARD DR SAUVY;34095;[4.800152, 45.776037];;FRSIGESIGE12311;FR*SOD*E*SIGE*323*1*2*_;;;;;;;;;;;;;;;;;;;50052906726405;2016-12-09;;;;;;;;4.863521;45.749838;50720;Nieppe;; +;E. Leclerc, Plouguernevel;;;;;;SONEPAR CCF MAUGUIO;FRSIGPSIGE18861;FR*SOD*S*SORE*132*1*_*_;VAV02 - HOTEL DE VILLE;;RUE LATOUR MAUBOURG;88440;[4.851272, 45.745548];;FRSIGESIGE12312;FR*SOD*E*SIGE*323*1*1*_;;;;;;;;;;;;;;;;;;;50023987853705;2016-12-02;;;;;;;;4.826636;45.767701;50800;Cambrai;; +;E. Leclerc, Pont-Sainte-Maxence;;;;;;POCE SUR CISSE 1298 - Clos du Potager;FRSIGPSIGE18821;FR*SOD*S*SORE*131*1*_*_;SFS01 - CENTRE-GARE;;AVENUE DE LHOTEL DE VILLE;31161;[4.863521, 45.756307];;FRSIGESIGE12412;FR*SOD*E*SIGE*324*1*2*_;;;;;;;;;;;;;;;;;;;72631312300040;2019-10-02;;;;;;;;4.84858;45.755746;50550;Lyon;; +;E. Leclerc, Rezé;;;;;;SONELOG CESTAS 04;FRSIGPSIGE18841;FR*SOD*S*SORE*130*1*_*_;SPR06 - PARKING HENRI MARECHAL;;AVENUE LOUIS CAUVIN;33502;[4.826636, 45.731668];;FRSIGESIGE12411;FR*SOD*E*SIGE*324*1*1*_;;;;;;;;;;;;;;;;;;;50019340405839;2016-08-18;;;;;;;;4.926708;45.757006;50420;Cergy;; +;E. Leclerc, Louviers Incarville;;;;;;SONEPAR CONNECT BOULOGNE;FRSIGPSIGE18811;FR*SOD*S*SORE*129*1*_*_;SPR05 - MENIVAL;;PLACE DU COURS HONORÉ CRESP;04108;[4.84858, 45.771588];;FRSIGESIGE12512;FR*SOD*E*SIGE*325*1*2*_;;;;;;;;;;;;;;;;;;;50068097315965;2020-03-01;;;;;;;;4.834451;45.788587;50150;Vigny;; +;E. Leclerc, Lannion;;;;;;Glanon;FRSIGPSIGE19012;FR*SOD*S*SORE*128*1*_*_;LY905 - MARIETTON;;RUE JEAN GIONO;13041;[4.926708, 45.718133];;FRSIGESIGE12511;FR*SOD*E*SIGE*326*1*1*_;;;;;;;;;;;;;;;;;;;50094301005241;2014-06-30;;;;;;;;4.82572;45.784019;50180;Ancenis-Saint-Géréon;; +;E. Leclerc, Lassigny;;;;;;ROUZIERS DE TOURAINE 1300;FRSIGPSIGE19011;FR*SOD*S*SORE*127*1*_*_;LY710 - SERGENT BLANDAN;;AVENUE DE LA ROUMANILLE;34199;[4.834451, 45.754859];;FRSIGESIGE12811;FR*SOD*E*SIGE*332*1*1*_;;;;;;;;;;;;;;;;;;;50094737026292;2019-05-02;;;;;;;;4.837599;45.694556;50230;Saint-Jean-de-Monts;; +;E. Leclerc, Le Neubourg;;;;;;CGED ST-ETIENNE 2;FRSIGPSIGE19112;FR*SOD*S*SORE*126*1*_*_;LY315 - AVENUE LACASSAGNE;;AVENUE DU DOCTEUR PICAUD;94052;[4.82572, 45.771705];;FRSIGESIGE13551;FR*SOD*E*SIGE*326*1*2*_;;;;;;;;;;;;;;;;;;;50040761264005;2016-12-15;;;;;;;;4.836853;45.779157;50390;Fresse-sur-Moselle;; +;E. Leclerc, Louhans;;;;;;NEUILLY LE BRIGNON 1289;FRSIGPSIGE19111;FR*SOD*S*SORE*125*1*_*_;LY703 - HALLE TONY GARNIER;;ROND POINT DE LALAMBIC;10006;[4.837599, 45.769459];;FRSIGESIGE12911;FR*SOD*E*SIGE*327*1*1*_;;;;;;;;;;;;;;;;;;;50038581180367;2018-07-19;;;;;;;;4.858266;45.8205;50330;Le Val-d'Ajol;; +;E. Leclerc, La Teste de Buch;;;;;;Chartres Gasville;FRSIGPSIGE19211;FR*SOD*S*SORE*124*1*_*_;LY606 - BOILEAU - MONTGOLFIER;;ROND-POINT DES BALCONS DAZUR;13086;[4.836853, 45.749838];;FRSIGESIGE12912;FR*SOD*E*SIGE*327*1*2*_;;;;;;;;;;;;;;;;;;;50052617838642;2016-10-05;;;;;;;;4.827657;45.679845;50380;Bourgoin-Jallieu;; +;E. Leclerc, La Roche-sur-Yon;;;;;;BORNE MARCQ MARCQ;FRSIGPSIGE19212;FR*SOD*S*SORE*123*1*_*_;SPR02 - PORTE DES ALPES;;CHEMIN DES OISEAUX;77495;[4.858266, 45.767701];;FRSIGESIGE13212;FR*SOD*E*SIGE*328*1*2*_;;;;;;;;;;;;;;;;;;;50080115999665;2017-11-24;;;;;;;;4.851691;45.74728;50620;Ploemel;; +;E. Leclerc, Lumbres;;;;;;SODIS-RENNES BORNE 1;FRSIGPSIGE19312;FR*SOD*S*SORE*122*1*_*_;LY203 - BELLECOUR - CHARITE;;AVENUE DE LÉRINS;01289;[4.827657, 45.755746];;FRSIGESIGE13211;FR*SOD*E*SIGE*328*1*1*_;;;;;;;;;;;;;;;;;;;50094005834022;2016-12-14;;;;;;;;4.854637;45.794353;50240;Noyal-Pontivy;; +;E. Leclerc, Lux;;;;;;SONEPAR CONNECT BAGNOLET;FRSIGPSIGE19311;FR*SOD*S*SORE*121*1*_*_;LY103 - ORNANO - CHARTREUX;;BOULEVARD GÉNÉRAL VAUTRIN;77276;[4.851691, 45.757006];;FRSIGESIGE13312;FR*SOD*E*SIGE*329*1*2*_;;;;;;;;;;;;;;;;;;;50081710679415;2016-05-27;;;;;;;;4.765806;45.69125;50680;Péaule;; +;E. Leclerc, Luçon;;;;;;NEUVY LE ROI 1291;FRSIGPSIGE18511;FR*SOD*S*SORE*120*1*_*_;LY104 - PLACE TOLOZAN;;AVENUE DE LORRAINE;29151;[4.854637, 45.788587];;FRSIGESIGE13311;FR*SOD*E*SIGE*329*1*1*_;;;;;;;;;;;;;;;;;;;60533/E2/0079036;2000-01-01;;;;;;;;4.855184;45.78576;50750;Peillac;; +;E. Leclerc, Tarbes;;;;;;CGED DOUAI;FRSIGPSIGE18531;FR*SOD*S*SORE*119*1*_*_;LY713 - CHEVREUL;;AVENUE JULES GREC;67227;[4.765806, 45.784019];;FRSIGESIGE13431;FR*SOD*E*SIGE*330*1*2*_;;;;;;;;;;;;;;;;;;;50079392850126;2017-01-11;;;;;;;;4.859705;45.771356;50480;Pénestin;; +;E. Leclerc, Scapest;;;;;;SONEPAR CONNECT ERAGNY;FRSIGPSIGE18521;FR*SOD*S*SORE*118*1*_*_;LY603 - BROTTEAUX;;AVENUE CARNOT;06088;[4.855184, 45.694556];;FRSIGESIGE13451;FR*SOD*E*SIGE*330*1*1*_;;;;;;;;;;;;;;;;;;;50034529846189;2016-09-07;;;;;;;;4.760909;45.740684;50510;Plaudren;; +;E. Leclerc, Sevrey;;;;;;Cœur d'Aquitaine;FRSIGPSIGE18551;FR*SOD*S*SORE*85*1*_*_;LY201 - ANTOINE VOLLON;;ALLÉE DES MÉSANGES;82121;[4.859705, 45.779157];;FRSIGESIGE13421;FR*SOD*E*SIGE*331*1*2*_;;;;;;;;;;;;;;;;;;;50089816087491;2016-09-12;;;;;;;;4.957432;48.9908;50210;Noyal-Muzillac;; +;E. Leclerc, Sélestat;;;;;;PARCAY SUR VIENNE 1295;FRSIGPSIGE1912;FR*SOD*S*SORE*134*1*_*_;LY314 - PAUL BERT - GARIBALDI;;AVENUE JEAN MERMOZ;80375;[4.760909, 45.8205];;FRSIGESIGE13441;FR*SOD*E*SIGE*331*1*1*_;;;;;;;;;;;;;;;;;;;50048717637678;2016-10-19;;;;;;;;4.936937;45.740844;50520;Plescop;; +;E. Leclerc, Scachap Ruffec;;;;;;CGED ST-ETIENNE 1;FRSIGPSIGE1911;FR*SOD*S*SORE*155*1*_*_;CAL06 - SAINT CLAIR;;AVENUE MARTYRS DE LA RÉSISTANCE;30003;[4.957432, 45.679845];;FRSIGESIGE13411;FR*SOD*E*SIGE*332*1*2*_;;;;;;;;;;;;;;;;;;;67117/E2/0809821;2017-06-23;;;;;;;;4.849492;45.74089;50700;Pleucadeuc;; +;E. Leclerc, Valence;;;;;;PERRUSSON 1296;FRSIGPSIGE2011;FR*SOD*S*SORE*154*1*_*_;ECY01 - CAMPUS LYON OUEST;;RUE DES BACHETTES;01104;[4.936937, 45.74728];;FRSIGESIGE13561;FR*SOD*E*SIGE*346*1*1*_;;;;;;;;;;;;;;;;;;;07436179348549;2020-07-16;;;;;;;;4.949094;48.837734;50260;Pleugriffet;; +;E. Leclerc, Villeparisis;;;;;;PROTHEOS STATION 1;FRSIGPSIGE2012;FR*SOD*S*SORE*153*1*_*_;SFS03 - CLOCHETTE;;AVENUE DES ECOLES;68154;[4.849492, 45.794353];;FRSIGESIGE14111;FR*SOD*E*SIGE*347*1*2*_;;;;;;;;;;;;;;;;;;;07425325513507;2017-08-28;;;;;;;;4.928949;48.616655;50370;Meucon;; +;E. Leclerc, Vouvray-Sur-Loir;;;;;;ALIZES BORNE 1;FRSIGPSIGE2112;FR*SOD*S*SORE*152*1*_*_;VIL02 - TETE DOR - STALINGRAD;;RN7;50218;[4.949094, 45.69125];;FRSIGESIGE14151;FR*SOD*E*SIGE*347*1*1*_;;;;;;;;;;;;;;;;;;;07135745219163;2016-10-20;;;;;;;;4.986585;48.779686;50270;Muzillac;; +;E. Leclerc, Saint-Jean-de-Luz;;;;;;SONEPAR CONNECT VILLEBON;FRSIGPSIGE2111;FR*SOD*S*SORE*151*1*_*_;DAR01 - M6 - PORTE DE LYON;;RUE DU VALLON;74275;[4.928949, 45.78576];;FRSIGESIGE14121;FR*SOD*E*SIGE*369*1*2*_;;;;;;;;;;;;;;;;;;;07198118591442;2023-07-17;;;;;;;;4.816392;45.762271;50450;Melrand;; +;E. Leclerc, Sablé-sur-Sarthe;;;;;;SONEPAR CONNECT HYERES;FRSIGPSIGE2211;FR*SOD*S*SORE*150*1*_*_;MIS02 - ROCADE EST - D318;;CHEMIN DE LA TABLE DORIENTATION;07110;[4.986585, 45.771356];;FRSIGESIGE42712;FR*SOD*E*SIGE*363*1*2*_;;;;;;;;;;;;;;;;;;;07419536801571;2016-12-21;;;;;;;;2.523685;48.082588;50610;Ménéac;; +;E. Leclerc, Saint-Doulchard;;;;;;Le Mas-d'Agenais | A62, Aire de Mas d'Agenais;FRSIGPSIGE2212;FR*SOD*S*SORE*149*1*_*_;DEC03 - EUREXPO - SEPT CHEMINS;;ROUTE DE VENCE;01254;[4.816392, 45.740684];;FRSIGESIGE15221;FR*SOD*E*SIGE*364*1*2*_;;;;;;;;;;;;;;;;;;;07595947802687;2016-06-21;;;;;;;;4.816054;48.827492;50540;Merlevenez;; +;E. Leclerc, Saint-Georges-de-Reneins;;;;;;SUPER U SUPER U 1;FRSIGPSIGE2312;FR*SOD*S*SORE*148*1*_*_;CAL03 - MONTESSUY - GUTENBERG;;AVENUE MAURICE CHEVALIER;14117;[2.523685, 48.9908];;FRSIGESIGE15231;FR*SOD*E*SIGE*364*1*1*_;;;;;;;;;;;;;;;;;;;07545441290530;2018-07-06;;;;;;;;4.815993;43.663607;50160;Meslan;; +;E. Leclerc, Rivières - La Rochefoucauld;;;;;;Aire de Valmy Le Moulin;FRSIGPSIGE2311;FR*SOD*S*SORE*147*1*_*_;SPR08 - BEL AIR;;PROMENADE PIERRE MERLI;04166;[4.816054, 45.740844];;FRSIGESIGE41512;FR*SOD*E*SIGE*365*1*1*_;;;;;;;;;;;;;;;;;;;07150361716860;2016-08-05;;;;;;;;2.322582;48.082481;50400;Mohon;; +;E. Leclerc, Saint-Jean-de-Luz privé;;;;;;SONEPAR SAINT-LOUIS;FRSIGPSIGE2412;FR*SOD*S*SORE*146*1*_*_;VAV03 - EGLISE DU VILLAGE;;RUE STEPHEN LIEGEARD;74082;[4.815993, 45.74089];;FRSIGESIGE15261;FR*SOD*E*SIGE*365*1*2*_;;;;;;;;;;;;;;;;;;;07276121454659;2016-10-14;;;;;;;;2.547032;45.761895;50350;Monterblanc;; +;E. Leclerc, Sarlat;;;;;;St AMAND-MONTROND - Cours Manuel - 112836;FRSIGPSIGE2411;FR*SOD*S*SORE*145*2*_*_;MEY04 - ROCADE EST;;TRAVERSE KELLERMANN;43162;[2.322582, 48.837734];;FRSIGESIGE15331;FR*SOD*E*SIGE*366*1*2*_;;;;;;;;;;;;;;;;;;;07117366058387;2017-09-29;;;;;;;;2.221231;48.780345;50710;Moréac;; +;E. Leclerc, Sarre-Union;;;;;;MONT PRES CHAMBORD 4434 - Rue de l'hotel de ville;FRSIGPSIGE2512;FR*SOD*S*SORE*144*1*_*_;CONFLUENCE - PKG N+1;;AVENUE DE LA QUIÉRA;78255;[2.547032, 48.616655];;FRSIGESIGE15341;FR*SOD*E*SIGE*366*1*1*_;;;;;;;;;;;;;;;;;;;50021508013224;2016-10-13;;;;;;;;4.856448;48.828905;50810;Moustoir-Ac;; +;E. Leclerc, Saint-Martin-de-Ré;;;;;;VILLEDOMER 4348 - Parking rue du Lavoir;FRSIGPSIGE2511;FR*SOD*S*SORE*143*1*_*_;AEROVILLE - NORDIC CHIC;;CHEMIN DU SERVAN;85191;[2.221231, 48.779686];;FRSIGESIGE15311;FR*SOD*E*SIGE*367*1*2*_;;;;;;;;;;;;;;;;;;;07275108430087;2017-06-09;;;;;;;;-1.67655;48.838574;50770;Carnac;; +;E. Leclerc, Saint-Lys;;;;;;BORNES U TECHNO BORNE 2;FRSIGPSIGE2611;FR*SOD*S*SORE*142*1*_*_;AEROVILLE - BALI MARKET;;ROUTE DES CRÊTES;59512;[4.856448, 45.762271];;FRSIGESIGE15321;FR*SOD*E*SIGE*367*1*1*_;;;;;;;;;;;;;;;;;;;07264109876655;2016-09-06;;;;;;;;2.118916;48.882166;97420;Ploemeur;; +;E. Leclerc, Saint-Pierre-du-Mont;;;;;;CHAMPADIS BORNE 1;FRSIGPSIGE15611;FR*SOD*S*SORE*141*1*_*_;AEROVILLE - AFRICA LODGE;;BOULEVARD DES 5 COMMUNES;84099;[-1.67655, 48.082588];;FRSIGESIGE43012;FR*SOD*E*SIGE*368*1*1*_;;;;;;;;;;;;;;;;;;;07359478921253;2016-10-21;;;;;;;;7.127841;47.35747;30630;Plumelin;; +;E. Leclerc, Saint-Prix;;;;;;LA BENETIERE BORNE 1;FRSIGPSIGE15512;FR*SOD*S*SORE*140*1*_*_;CONFLUENCE - PKG N0M;;PLACE DU LOGIS;06136;[2.118916, 48.827492];;FRSIGESIGE43011;FR*SOD*E*SIGE*368*1*2*_;;;;;;;;;;;;;;;;;;;07359623639017;2016-08-29;;;;;;;;-1.678767;47.355949;12150;Pluneret;; +;E. Leclerc, Bonneuil-sur-Marne Express;;;;;;MENODIS BORNE 8;FRSIGPSIGE15511;FR*SOD*S*SORE*139*1*_*_;CONFLUENCE - PKG N-1;;AVENUE ST ROCH;71263;[7.127841, 43.663607];;FRSIGESIGE42912;FR*SOD*E*SIGE*369*1*1*_;;;;;;;;;;;;;;;;;;;07319536808205;2018-08-24;;;;;;;;4.856386;48.780477;65250;Pluvigner;; +;E. Leclerc, Bourgoin-Jallieu;;;;;;Trie-la-Ville;FRSIGPSIGE15361;FR*SOD*S*SORE*138*1*_*_;GAITE - SS05;;PLACE BERMOND;80228;[-1.678767, 48.082481];;FRSIGESIGE42911;FR*SOD*E*SIGE*370*1*2*_;;;;;;;;;;;;;;;;;;;07465846497399;2016-11-02;;;;;;;;2.220011;50.617912;04290;Pont-Scorff;; +;E. Leclerc, Beaune;;;;;;Darvault;FRSIGPSIGE15351;FR*SOD*S*SORE*137*1*_*_;AEROVILLE - TERMINAL COOK;;PARKING VALIS BONNA;34198;[4.856386, 45.761895];;FRSIGESIGE42711;FR*SOD*E*SIGE*349*1*1*_;;;;;;;;;;;;;;;;;;;07345875448258;2021-01-12;;;;;;;;2.114096;50.617613;83510;Pontivy;; +;E. Leclerc, Bessines;;;;;;ULIET ULIET 1;FRSIGPSIGE18421;FR*SOD*S*SORE*136*1*_*_;CARRE SENART;;PARKING CENTRE MÉDICAL MÉDIATHÈQUE;19007;[2.220011, 48.780345];;FRSIGESIGE14141;FR*SOD*E*SIGE*370*1*1*_;;;;;;;;;;;;;;;;;;;07356295129857;2016-07-21;;;;;;;;2.322007;48.677594;28230;Port-Louis;; +;E. Leclerc, Biscarrosse Centre Auto;;;;;;MENODIS BORNE 5;FRSIGPSIGE18441;FR*SOD*S*SORE*135*1*_*_;VELIZY 2 - PKG AERIEN P12;;BOULEVARD ALEX ROUBERTS;14068;[2.114096, 48.828905];;FRSIGESIGE42611;FR*SOD*E*SIGE*371*1*1*_;;;;;;;;;;;;;;;;;;;07398552727037;2017-11-21;;;;;;;;2.477817;48.861996;88640;Priziac;; +;E. Leclerc, Cannes La bocca;;;;;;LFO BORNE 2;FRSIGPSIGE18431;FR*SOD*S*SORE*117*1*_*_;AEROVILLE - TOKYO;;CHEMIN NEUF;01071;[2.322007, 48.838574];;FRSIGESIGE42612;FR*SOD*E*SIGE*371*1*2*_;;;;;;;;;;;;;;;;;;;07489724934608;2016-09-29;;;;;;;;5.050151;48.893006;66700;Questembert;; +;E. Leclerc, Carpentras;;;;;;RAW PARISGIVERNY 55;FRSIGPSIGE18451;FR*SOD*S*SORE*116*1*_*_;LYON PART DIEU 2;;BOULEVARD MARÉCHAL FOCH;14191;[2.477817, 48.882166];;FRSIGESIGE42512;FR*SOD*E*SIGE*372*1*1*_;;;;;;;;;;;;;;;;;;;07416353009951;2016-11-18;;;;;;;;5.049248;48.896523;09000;Quéven;; +;E. Leclerc, Carvin;;;;;;CHATEAUDUN - Place du 18 Octobre - 127476;FRSIGPSIGE18411;FR*SOD*S*SORE*99*1*_*_;RENNES ALMA - PKG ORANGE;;CHEMIN DES FRÈRES GARBERO;14257;[5.050151, 47.35747];;FRSIGESIGE42511;FR*SOD*E*SIGE*372*1*2*_;;;;;;;;;;;;;;;;;;;07348769804263;2016-11-23;;;;;;;;2.218646;48.897964;93150;Quiberon;; +;E. Leclerc, Chalon-sur-Saône;;;;;;Hastingues Nord;FRSIGPSIGE24912;FR*SOD*S*SORE*98*1*_*_;PARLY STATION 1;;AVENUE DU DR BELLETRUD;49123;[5.049248, 47.355949];;FRSIGESIGE42411;FR*SOD*E*SIGE*373*1*2*_;;;;;;;;;;;;;;;;;;;07322431164699;2019-09-07;;;;;;;;3.130846;48.893097;88140;Quistinic;; +;E. Leclerc, Carhaix;;;;;;Aire de Keskastel-Ouest;FRSIGPSIGE19612;FR*SOD*S*SORE*97*1*_*_;POLYGONE RIVIERA P3;;CHEMIN DE CLAVARY;59431;[2.218646, 48.780477];;FRSIGESIGE42412;FR*SOD*E*SIGE*373*1*1*_;;;;;;;;;;;;;;;;;;;07265267619116;2016-11-09;;;;;;;;3.128357;48.892754;31260;Pluméliau-Bieuzy;; +;Ds Automobiles;;;;;;LIFFOL - Rue de l'Orme - 163471 - CCS;FRSIGPSIGE25111;FR*SOD*S*SORE*96*1*_*_;RENNES ALMA - PKG VERT;;ROND-POINT DE LA CANARDIERE;59122;[3.130846, 50.617912];;FRSIGESIGE42112;FR*SOD*E*SIGE*374*1*1*_;;;;;;;;;;;;;;;;;;;07322865318040;2016-12-19;;;;;;;;2.171913;48.893001;11400;Ploeren;; +;Dream Energy, Meyreuil;;;;;;VOVES - Piscine - 126260;FRSIGPSIGE34011;FR*SOD*S*SORE*95*1*_*_;POLYGONE RIVIERA P1;;CHEMIN DE LA CHAUX;69123;[3.128357, 50.617613];;FRSIGESIGE42111;FR*SOD*E*SIGE*252*1*1*_;;;;;;;;;;;;;;;;;;;07340520889609;2017-01-13;;;;;;;;2.346176;46.033722;73260;Ploërmel;; +;Dream Energy, Vesoul;;;;;;BIOPATH HDF GRAVELINES;FRSIGPSIGE33411;FR*SOD*S*SORE*94*1*_*_;LYON PART DIEU 1;;CHEMIN DU STADE;95127;[2.171913, 48.677594];;FRSIGESIGE42012;FR*SOD*E*SIGE*375*3*1*_;;;;;;;;;;;;;;;;;;;07329377618896;2017-01-09;;;;;;;;2.297241;45.875523;38220;Plouay;; +;Dreux Motors;;;;;;DAHERTLS CORLOG 6;FRSIGPSIGE33512;FR*SOD*S*SORE*20*1*_*_;VELIZY 2 - PKG P2 NIVEAU 0;;RUE BUFFON;95658;[2.346176, 48.861996];;FRSIGESIGE42011;FR*SOD*E*SIGE*375*2*1*_;;;;;;;;;;;;;;;;;;;07348046215212;2016-09-23;;;;;;;;2.298571;45.77086;25150;Plougoumelen;; +;Dream Energy, Escalet Ramatuelle;;;;;;Chazelles sur Lyon;FRSIGPSIGE33511;FR*SOD*S*SORE*92*1*_*_;PARLY STATION 2;;RUE DES ORANGERS;95489;[2.297241, 48.893006];;FRSIGESIGE41912;FR*SOD*E*SIGE*375*1*1*_;;;;;;;;;;;;;;;;;;;07347756779654;2016-09-28;;;;;;;;2.288618;45.615384;89300;Plouharnel;; +;Dream Energy, Arteparc Meylan;;;;;;Corbières Nord;FRSIGPSIGE33612;FR*SOD*S*SORE*91*1*_*_;GAITE - SS02-1;;CHEMIN DE GARIBONDY;44003;[2.298571, 48.896523];;FRSIGESIGE17211;FR*SOD*E*SIGE*363*1*1*_;;;;;;;;;;;;;;;;;;;07394934781913;2016-08-03;;;;;;;;2.297434;45.991007;13690;Plouhinec;; +;Dubois Electricité;;;;;;ST NABORD-rue de la croix st Jacques-150258-CCS;FRSIGPSIGE33611;FR*SOD*S*SORE*90*1*_*_;GAITE - SS02-2;;AVENUE MAURIE JEANPIERRE;85234;[2.288618, 48.897964];;FRSIGESIGE15251;FR*SOD*E*SIGE*362*1*1*_;;;;;;;;;;;;;;;;;;;07390014376872;2018-07-26;;;;;;;;2.297554;46.134059;83440;Plouray;; +;E. Leclerc, Argentan;;;;;;NOMEXY-rue sœur Sidonie-150251-CCS;FRSIGPSIGE33711;FR*SOD*S*SORE*89*1*_*_;GAITE - SS03;;RUE DES LENTISQUES;88188;[2.297434, 48.893097];;FRSIGESIGE15211;FR*SOD*E*SIGE*362*1*2*_;;;;;;;;;;;;;;;;;;;07300434059055;2016-11-28;;;;;;;;2.29821;46.048822;74310;Plumelec;; +;E. Leclerc, Audun-Le-Roman;;;;;;Hanches;FRSIGPSIGE33712;FR*SOD*S*SORE*88*1*_*_;GAITE - SS06;;RUE GRIGNAN;88487;[2.297554, 48.892754];;FRSIGESIGE15241;FR*SOD*E*SIGE*361*1*1*_;;;;;;;;;;;;;;;;;;;07456295122450;2016-11-07;;;;;;;;1.34537;46.214915;95490;Mauron;; +;E. Leclerc, Bapeaume-les-Rouen;;;;;;MONTHUREUX SUR SAONE - 161826 - CCS;FRSIGPSIGE33812;FR*SOD*S*SORE*87*1*_*_;GAITE - SS04;;RUE DES MOULIÈRES;38053;[2.29821, 48.893001];;FRSIGESIGE15112;FR*SOD*E*SIGE*349*1*2*_;;;;;;;;;;;;;;;;;;;50071869810090;2016-08-13;;;;;;;;1.330306;45.778378;88600;Radenac;; +;E. Leclerc, Agneaux;;;;;;SUPER GRANIER BORNE 5;FRSIGPSIGE33811;FR*SOD*S*SORE*86*1*_*_;ROSNY;;CHEMIN DE LA SIAGNE;56161;[1.34537, 46.033722];;FRSIGESIGE14231;FR*SOD*E*SIGE*350*1*2*_;;;;;;;;;;;;;;;;;;;07414471678517;2017-11-16;;;;;;;;1.957497;46.134473;80450;Le Palais;; +;E. Leclerc Obernai;;;;;;SUPER GRANIER BORNE 2;FRSIGPSIGE33912;FR*SOD*S*SORE*100*1*_*_;TOISON DOR - ZONE 1;;67 AVENUE DE FRANDRE;56151;[1.330306, 45.875523];;FRSIGESIGE14261;FR*SOD*E*SIGE*350*1*1*_;;;;;;;;;;;;;;;;;;;07431982531784;2016-06-08;;;;;;;;1.494731;45.749293;54440;Larmor-Plage;; +;Dune Energie - Site Naturotel;;;;;;Saint Léger Est;FRSIGPSIGE33911;FR*SOD*S*SORE*101*1*_*_;TOISON DOR - PKG SOUS COMMERCE;;PLACE MARCEL CHAMPEIX;56153;[1.957497, 45.77086];;FRSIGESIGE14211;FR*SOD*E*SIGE*351*1*2*_;;;;;;;;;;;;;;;;;;;07457163429280;2016-08-04;;;;;;;;1.046631;46.131688;34270;Le Faouët;; +;E. Leclerc Bapaume;;;;;;CULAN - Champ de foire - 148765;FRSIGPSIGE34012;FR*SOD*S*SORE*109*1*_*_;TOISON DOR - PARKING EXTENSION;;QUAI TOURNY;56154;[1.494731, 45.615384];;FRSIGESIGE14251;FR*SOD*E*SIGE*351*1*1*_;;;;;;;;;;;;;;;;;;;07204486142867;2016-07-22;;;;;;;;1.27651;45.895108;85430;Locmalo;; +;E. Leclerc, Guéret;;;;;;HYPER U HANCHES RETAIL 5;FRSIGPSIGE34112;FR*SOD*S*SORE*115*1*_*_;VELIZY 2 - PKG P11 NIVEAU M;;ALLÉE DU DOM. DE SÉDIÈRES;56155;[1.046631, 45.991007];;FRSIGESIGE14221;FR*SOD*E*SIGE*352*1*2*_;;;;;;;;;;;;;;;;;;;07226483248409;2019-03-13;;;;;;;;1.480057;46.107802;07120;Le Tour-du-Parc;; +;E. Leclerc, Firminy;;;;;;BOURGES - Lautier - 107000;FRSIGPSIGE33312;FR*SOD*S*SORE*114*1*_*_;VILLENEUVE 2 - PKG COMMERCANT;;AVENUE JACQUES ET BERNADETTE CHIRAC;56157;[1.27651, 46.134059];;FRSIGESIGE14241;FR*SOD*E*SIGE*352*1*1*_;;;;;;;;;;;;;;;;;;;07278292221572;2020-08-01;;;;;;;;1.167078;45.959326;85560;Les Fougerêts;; +;E. Leclerc, Etalondes;;;;;;SUPER U SEM BORNE 2;FRSIGPSIGE34111;FR*SOD*S*SORE*113*1*_*_;VILLENEUVE 2 - PKG NIV0;;CANTON DE BRIVE-LA-GAILLARDE-2;56149;[1.480057, 46.048822];;FRSIGESIGE14431;FR*SOD*E*SIGE*353*1*2*_;;;;;;;;;;;;;;;;;;;07278436939304;2019-06-25;;;;;;;;1.204664;46.235341;63710;Lignol;; +;E. Leclerc, Douarnenez;;;;;;BORNE U BORNE PUBLIQUE4;FRSIGPSIGE34212;FR*SOD*S*SORE*112*1*_*_;LES ULIS;;ZI DU TEINCHURIER;56158;[1.167078, 46.214915];;FRSIGESIGE14421;FR*SOD*E*SIGE*353*1*1*_;;;;;;;;;;;;;;;;;;;07239363133003;2023-04-01;;;;;;;;1.274174;46.108853;66420;Limerzel;; +;E. Leclerc, Dreux;;;;;;Bréguières Nord;FRSIGPSIGE34211;FR*SOD*S*SORE*111*1*_*_;LES HALLES - PARKING UNIBAIL;;RUE MARTINE;56159;[1.204664, 45.778378];;FRSIGESIGE14451;FR*SOD*E*SIGE*354*1*1*_;;;;;;;;;;;;;;;;;;;07221852279496;2021-11-01;;;;;;;;1.431829;45.628803;40560;Lizio;; +;E. Leclerc, Issoudun;;;;;;Sablé-sur-Sarthe;FRSIGPSIGE34312;FR*SOD*S*SORE*110*1*_*_;PARKING SO OUEST - CANTON 31;;RUE DU LIEUTENANT COLONEL FARRO;56160;[1.274174, 46.134473];;FRSIGESIGE14441;FR*SOD*E*SIGE*354*1*2*_;;;;;;;;;;;;;;;;;;;50033085441740;2021-04-11;;;;;;;;1.081701;46.109403;33930;Lanvaudan;; +;E. Leclerc, Hauconcourt;;;;;;La Roche sur Yon;FRSIGPSIGE34311;FR*SOD*S*SORE*108*1*_*_;PARKING - GARE;;ROUTE DE VERGONZAC;56132;[1.431829, 45.749293];;FRSIGESIGE14461;FR*SOD*E*SIGE*355*1*2*_;;;;;;;;;;;;;;;;;;;07346164883863;2023-05-01;;;;;;;;1.035591;45.953075;67150;Languidic;; +;E. Leclerc, Château Gontier;;;;;;SUPER U BIVIERS BORNE 1;FRSIGPSIGE34411;FR*SOD*S*SORE*107*1*_*_;JULES GUESDE;;ALLÉE DE LA PAPÈTERIE;56143;[1.081701, 46.131688];;FRSIGESIGE14411;FR*SOD*E*SIGE*355*1*1*_;;;;;;;;;;;;;;;;;;;07307091077119;2016-07-15;;;;;;;;1.371627;45.95831;88800;Josselin;; +;E. Leclerc, Chatellerault;;;;;;Plouer sur Rance;FRSIGPSIGE34412;FR*SOD*S*SORE*106*1*_*_;PARKING SO OUEST - CANTON 34;;PARKING QUAI GABRIEL PERI;56128;[1.035591, 45.895108];;FRSIGESIGE14512;FR*SOD*E*SIGE*356*1*2*_;;;;;;;;;;;;;;;;;;;07320260397202;2015-12-01;;;;;;;;1.171203;45.79672;62240;Kernascléden;; +;E. Leclerc, Crèvecoeur-le-Grand;;;;;;SONEPAR AED ST-M.HERES;FRSIGPSIGE34511;FR*SOD*S*SORE*105*1*_*_;PARKING SO OUEST - CANTON 33;;AÉROPORT DE BRIVE-VALLÉE DE LA DORDOGNE, PARKING;56129;[1.371627, 46.107802];;FRSIGESIGE14511;FR*SOD*E*SIGE*356*1*1*_;;;;;;;;;;;;;;;;;;;50008476289139;2016-06-14;;;;;;;;0.90363;45.797558;52100;Kervignac;; +;E. Leclerc, Dizy;;;;;;BEZANNES -1 - Pkg Louis Victor de Broglie - 49675;FRSIGPSIGE34512;FR*SOD*S*SORE*104*1*_*_;PARKING SO OUEST - CANTON 35;;PLACE ALLÈGRE;56130;[1.171203, 45.959326];;FRSIGESIGE14611;FR*SOD*E*SIGE*357*1*2*_;;;;;;;;;;;;;;;;;;;50041910290060;2016-01-15;;;;;;;;0.919616;46.217588;54400;La Gacilly;; +;E. Leclerc, Douai;;;;;;SUPER U MESLAY BORNE 2;FRSIGPSIGE34612;FR*SOD*S*SORE*103*1*_*_;RAZES - PLACE ANDRE DUFRAISSE;;RTE DE VIMBELLE;56131;[0.90363, 46.235341];;FRSIGESIGE14612;FR*SOD*E*SIGE*357*1*1*_;;;;;;;;;;;;;;;;;;;50015277467416;2016-01-05;;;;;;;;1.585948;45.713124;91800;La Roche-Bernard;; +;E. Leclerc, Creutzwald;;;;;;Rambervilliers;FRSIGPSIGE33412;FR*SOD*S*SORE*102*1*_*_;SAINT-PRIEST-TAURION - ESPLANADE DU STADE;;LA CROIX BLANCHE;56134;[0.919616, 46.108853];;FRSIGESIGE14721;FR*SOD*E*SIGE*358*1*1*_;;;;;;;;;;;;;;;;;;;50085615162889;2016-03-31;;;;;;;;1.369671;46.120257;63260;La Trinité-Porhoët;; +;E.Leclerc, Pont-Rémy;;;;;;08 MONTHERMÉ - Pl Jean Batiste Clément - DC 57541;FRSIGPSIGE33311;FR*SOD*S*SORE*19*1*_*_;SAINT-LAURENT-SUR-GORRE - PLACE DE LEGLISE;;ROUTE DU MUSÉE;56137;[1.585948, 45.628803];;FRSIGESIGE14722;FR*SOD*E*SIGE*358*1*2*_;;;;;;;;;;;;;;;;;;;50070586879082;2016-07-11;;;;;;;;1.406172;46.034289;13540;La Trinité-sur-Mer;; +;Fromentel Autos Pointel - public;;;;;;JONCHERY-SUR-VESLE;FRSIGPSIGE31711;FR*SOD*S*SORE*5*1*_*_;SAINT-GERMAIN-LES-BELLES - PLACE DU 8 MAI 1945;;AVENUE DU SÉNATEUR LABROUSSE;56140;[1.369671, 46.109403];;FRSIGESIGE14812;FR*SOD*E*SIGE*359*1*1*_;;;;;;;;;;;;;;;;;;;50099791110060;2016-11-24;;;;;;;;1.400478;45.838198;76800;La Vraie-Croix;; +;Fun Bowling;;;;;;08 MAUBERT FONTAINE - 50 route d'hirson - DC 57529;FRSIGPSIGE32511;FR*SOD*S*SORE*9*1*_*_;CIEUX - PLACE DU 8 MAI 1945;;ZC LA CROIX DE PATAUD;56141;[1.406172, 45.953075];;FRSIGESIGE14811;FR*SOD*E*SIGE*359*1*2*_;;;;;;;;;;;;;;;;;;;67117/E2/0810368;2016-07-04;;;;;;;;1.145703;45.651697;69530;Landaul;; +;Fun Fréjus;;;;;;BORNE ICEP STATION 01;FRSIGPSIGE31912;FR*SOD*S*SORE*8*1*_*_;CHATEAUPONSAC - PLACE XAVIER MAZURIER;;ROUTE DE ROLAND GARROS;56034;[1.400478, 45.95831];;FRSIGESIGE14912;FR*SOD*E*SIGE*360*1*2*_;;;;;;;;;;;;;;;;;;;50066508518084;2016-11-25;;;;;;;;1.137518;45.509842;76160;Landévant;; +;GBH - Solebam Guadeloupe;;;;;;CHALONS EN CHAMPAGNE - Pkg Vaubecourt - 125306;FRSIGPSIGE32012;FR*SOD*S*SORE*7*1*_*_;SAINT SULPICE LAURIERE - PLACE DU 8 MAI 1945;;POINT DE VUE DE TRAVASSAC;56162;[1.145703, 45.79672];;FRSIGESIGE14911;FR*SOD*E*SIGE*360*1*1*_;;;;;;;;;;;;;;;;;;;50068392853798;2016-01-27;;;;;;;;1.077636;45.82435;35270;Langonnet;; +;Freyming-Merlebach;;;;;;BEZANNES -2 - 49689 - Pkg Louis Victor de Broglie;FRSIGPSIGE32011;FR*SOD*S*SORE*6*1*_*_;MAGNAC LAVAL - PLACE DE LA REPUBLIQUE;;RD1089 ROUTE DE TULLE;56174;[1.137518, 45.797558];;FRSIGESIGE15011;FR*SOD*E*SIGE*361*1*2*_;;;;;;;;;;;;;;;;;;;0609;2016-01-08;;;;;;;;1.605933;45.932699;57500;Lorient;; +;Garage Antao;;;;;;Vitré;FRSIGPSIGE32111;FR*SOD*S*SORE*4*1*_*_;BOSMIE LAIGUILLE - RUE JEAN FERRAT;;PLACE DOCTEUR RENÉ JAUBERTIE;56176;[1.077636, 46.217588];;FRSIGESIGE15012;FR*SOD*E*SIGE*319*1*1*_;;;;;;;;;;;;;;;;;;;07172792976298;2016-01-20;;;;;;;;1.050832;45.518624;72190;Locmaria;; +;Franche-Comté - SYDED 25;;;;;;SONEPAR VAUPALIERE 1;FRSIGPSIGE32112;FR*SOD*S*SORE*10*1*_*_;CHATEAUPONSAC - PARKING AVENUE DE LORRAINE;;PLACE DE L’HORLOGE;56177;[1.605933, 45.713124];;FRSIGESIGE15111;FR*SOD*E*SIGE*374*1*2*_;;;;;;;;;;;;;;;;;;;07316208299289;2016-08-25;;;;;;;;1.298979;44.095253;72100;Malansac;; +;Freshmile Entzheim 2;;;;;;Hauconcourt;FRSIGPSIGE32212;FR*SOD*S*SORE*3*1*_*_;SAINT PAUL - PARKING DE LA SALLE DES FETES;;CHEMIN DES LÈZES;56179;[1.050832, 46.120257];;FRSIGESIGE11811;FR*SOD*E*SIGE*317*1*2*_;;;;;;;;;;;;;;;;;;;0619;2016-06-01;;;;;;;;1.493325;43.589499;62140;Malestroit;; +;Freshmile Mulhouse Alsace;;;;;;Rouille Sud;FRSIGPSIGE32211;FR*SOD*S*SORE*2*1*_*_;BLANZAC - ETANG DE ROUFFIGNAC;;RUE GUSTAVE VIDALIN;56178;[1.298979, 46.034289];;FRSIGESIGE11712;FR*SOD*E*SIGE*279*1*1*_;;;;;;;;;;;;;;;;;;;0732;2016-03-11;;;;;;;;0.979587;44.109989;62770;Marzan;; +;GES 40;;;;;;ALPTIS 25CAT PARC 37 38;FRSIGPSIGE32312;FR*SOD*S*SORE*1*1*_*_;SAINT-VICTURNIEN - CROIX DE LAVERGNE;;PLACE DU CHATEAU;56181;[1.493325, 45.838198];;FRSIGESIGE7251;FR*SOD*E*SIGE*273*1*1*_;;;;;;;;;;;;;;;;;;;07119681543396;2017-11-06;;;;;;;;1.202405;44.091897;55000;Locmaria-Grand-Champ;; +;GF Europe - Garage François;;;;;;Agen;FRSIGPSIGE32311;FR*SOD*S*SORE*15*1*_*_;BESSINES-SUR-GARTEMPE - RUE DES GRANDS JARDINS;;LA CHANSELVE;56182;[0.979587, 45.651697];;FRSIGESIGE8531;FR*SOD*E*SIGE*273*1*2*_;;;;;;;;;;;;;;;;;;;07139942035698;2016-04-22;;;;;;;;0.818752;43.865682;62155;Locmariaquer;; +;GL Dépannage;;;;;;08 MONTHOIS - Place de la mairie - DC 57716;FRSIGPSIGE32412;FR*SOD*S*SORE*11*1*_*_;SAINT-JOUVENT - AIRE DE COVOITURAGE;;AVENUE JEAN CHICOU;56184;[1.202405, 45.509842];;FRSIGESIGE8111;FR*SOD*E*SIGE*274*1*1*_;;;;;;;;;;;;;;;;;;;07123733641759;2014-04-14;;;;;;;;1.032646;43.623628;35760;Locminé;; +;Gagneraud;;;;;;SONEPAR CHATTE;FRSIGPSIGE32411;FR*SOD*S*SORE*18*1*_*_;VAL-DOIRE-ET-GARTEMPE - PLACE DU CHAMP DE FOIRE;;AVENUE LUCIEN SAMPEIX;56185;[0.818752, 45.82435];;FRSIGESIGE8351;FR*SOD*E*SIGE*274*1*2*_;;;;;;;;;;;;;;;;;;;07190014394549;2016-05-09;;;;;;;;1.205753;44.142858;54300;Locmiquélic;; +;Games Factory Beaune;;;;;;BAIRON - 57547 - Lac Bairon;FRSIGPSIGE32512;FR*SOD*S*SORE*17*1*_*_;VAL-DISSOIRE - AVENUE DE BELLAC;;ROUTE DES MONÉDIÈRES;56186;[1.032646, 45.932699];;FRSIGESIGE8341;FR*SOD*E*SIGE*275*1*1*_;;;;;;;;;;;;;;;;;;;50054793083410;2017-02-22;;;;;;;;6.928848;43.848226;54700;Locoal-Mendon;; +;Games Factory Besançon;;;;;;ROCROI - Rue Noël Champagne - DC 57693;FRSIGPSIGE32611;FR*SOD*S*SORE*16*1*_*_;LA CROISILLE SUR BRIANCE - PARVIS COLONEL BELTRAME;;RUE DE LETANG;56188;[1.205753, 45.518624];;FRSIGESIGE8331;FR*SOD*E*SIGE*275*1*2*_;;;;;;;;;;;;;;;;;;;50001102724202;2017-05-25;;;;;;;;7.12429;44.08881;91210;Locqueltas;; +;Games Factory Dijon;;;;;;Shell Fenioux Est;FRSIGPSIGE33211;FR*SOD*S*SORE*14*1*_*_;BESSINES SUR GARTEMPE - PLACE DU CHAMP DE FOIRE;;PARKING AÉROPORT BRIVE – VALLÉE DE LA DORDOGNE;56173;[6.928848, 44.095253];;FRSIGESIGE8321;FR*SOD*E*SIGE*276*1*1*_;;;;;;;;;;;;;;;;;;;50024972033766;2017-08-25;;;;;;;;6.952573;44.089531;68420;Saint-Avé;; +;Ganeo;;;;;;MONTCORNET DC;FRSIGPSIGE32612;FR*SOD*S*SORE*13*1*_*_;AMBAZAC - GARE;;ROUTE DU SOULET;56164;[7.12429, 43.589499];;FRSIGESIGE8311;FR*SOD*E*SIGE*276*1*2*_;;;;;;;;;;;;;;;;;;;50014119971240;2016-04-13;;;;;;;;6.935367;43.999862;75116;Gourin;; +;GEG Grenoble;;;;;;08 BOGNY SUR MEUSE - Air camping car - DC 57722;FRSIGPSIGE32711;FR*SOD*S*SORE*12*1*_*_;AMBAZAC - PLACE DU 19 MARS 1962;;PLACE DES PÉNITENTS;56165;[6.952573, 44.109989];;FRSIGESIGE8411;FR*SOD*E*SIGE*277*1*1*_;;;;;;;;;;;;;;;;;;;50087348949654;2017-09-13;;;;;;;;6.802294;44.087471;91640;Gestel;; +;GBH - Solebam Martinique;;;;;;Centre de la France;FRSIGPSIGE32712;FR*SOD*S*LYON*186*1*_*_;AIXE SUR VIENNE - GARE;;BOULEVARD DU QUERCY;56166;[6.935367, 44.091897];;FRSIGESIGE8421;FR*SOD*E*SIGE*277*1*2*_;;;;;;;;;;;;;;;;;;;50010650907638;2016-06-22;;;;;;;;7.044712;43.560735;34350;Férel;; +;GEG Belleville en Beaujolais;;;;;;Blois Villerbon;FRSIGPSIGE32812;FR*SOD*S*LYON*191*1*_*_;AIXE SUR VIENNE - PLACE GUILLAUME LEMAISTRE;;PLACE BAD-KOËNIG;56167;[6.802294, 43.865682];;FRSIGESIGE8441;FR*SOD*E*SIGE*278*1*2*_;;;;;;;;;;;;;;;;;;;50086049154501;2015-12-18;;;;;;;;6.761461;43.5519;06500;Évellys;; +;Gers;;;;;;08 LES MAZURES Congrés DC 57726;FRSIGPSIGE32811;FR*SOD*S*LYON*191*2*_*_;LE DORAT - PLACE DU CHAMP DE FOIRE;;AVENUE DU CHÂTEAU;56168;[7.044712, 43.623628];;FRSIGESIGE8461;FR*SOD*E*SIGE*278*1*1*_;;;;;;;;;;;;;;;;;;;50067523160321;2016-06-02;;;;;;;;6.725537;44.116352;88540;Étel;; +;Garage Bauducel;;;;;;ULIET ULIET 3;FRSIGPSIGE32912;FR*SOD*S*LYON*187*2*_*_;CHATEAUNEUF LA FORET - PLACE DU 8 MAI 1945;;PLACE DOCTEUR RAOUL PEUCH;56169;[6.761461, 44.142858];;FRSIGESIGE8451;FR*SOD*E*SIGE*279*1*2*_;;;;;;;;;;;;;;;;;;;50048859658773;2017-03-06;;;;;;;;6.853837;43.621304;61250;Erdeven;; +;Geodis Tours public;;;;;;Shell Aire de Ostwald HW;FRSIGPSIGE32911;FR*SOD*S*LYON*187*1*_*_;BELLAC - PLACE DU CHAMP DE FOIRE;;PLACE DU PIGEONNIER;56170;[6.725537, 43.848226];;FRSIGESIGE8431;FR*SOD*E*SIGE*272*1*2*_;;;;;;;;;;;;;;;;;;;50053922188730;2017-11-03;;;;;;;;6.854609;43.570758;25300;Elven;; +;Geoffroy EURL;;;;;;BAIRON ET SES ENVIRONS - Lac Bairon - DC 57547;FRSIGPSIGE33012;FR*SOD*S*LYON*184*2*_*_;RAZES - MAISON DU LAC;;PARKING COMMUNAL;56172;[6.853837, 44.08881];;FRSIGESIGE8551;FR*SOD*E*SIGE*280*1*2*_;;;;;;;;;;;;;;;;;;;50066228875460;2016-12-20;;;;;;;;6.829526;43.571659;53960;Damgan;; +;Geodis Saint Ouen l'Aumone public;;;;;;08 THILAY - Couture d'en bas - DC 57612;FRSIGPSIGE33011;FR*SOD*S*LYON*185*1*_*_;SAINT LEONARD DE NOBLAT - PLACE DU CHAMPS DE MARS;;PLACE DE LANCIENNE MAIRIE;56127;[6.854609, 44.089531];;FRSIGESIGE8121;FR*SOD*E*SIGE*280*1*1*_;;;;;;;;;;;;;;;;;;;50046827737680;2016-02-10;;;;;;;;6.835645;43.618336;14700;Crach;; +;Geodis Bonneuil;;;;;;08 MACHAULT - Place de la mairie - DC 57608;FRSIGPSIGE33112;FR*SOD*S*LYON*184*1*_*_;CHALUS - PLACE DU CHAMP DE FOIRE;;PLACE MAURICE CROISLEBOIS;56189;[6.829526, 43.999862];;FRSIGESIGE8541;FR*SOD*E*SIGE*281*1*2*_;;;;;;;;;;;;;;;;;;;50053928042024;2016-03-07;;;;;;;;7.022008;43.589903;92500;Cournon;; +;Garage Marulier;;;;;;08 LES HAUTES RIVIERES-pl de la mairie DC 57604;FRSIGPSIGE33111;FR*SOD*S*LYON*183*1*_*_;SAINT YRIEIX LA PERCHE - PLACE DE LA NATION;;PLACE DU CHAMP DE MARS;56152;[6.835645, 44.087471];;FRSIGESIGE8521;FR*SOD*E*SIGE*281*1*1*_;;;;;;;;;;;;;;;;;;;30002430564705;2016-02-07;;;;;;;;6.953956;43.583708;63160;Colpo;; +;Garage Norville;;;;;;ATTIGNY DC;FRSIGPSIGE33212;FR*SOD*S*LYON*116*3*_*_;ROCHECHOUART - PARKING DU MOULIN DU PUY;;PARKING DU GYMNASE;56107;[7.022008, 43.560735];;FRSIGESIGE8511;FR*SOD*E*SIGE*282*1*2*_;;;;;;;;;;;;;;;;;;;50019912742263;2016-05-23;;;;;;;;6.906609;43.53673;23140;Cléguer;; +;Garage Phelippeau;;;;;;MDF MOBILIER FRANCE;FRSIGPSIGE34611;FR*SOD*S*LYON*120*2*_*_;ORADOUR SUR GLANE - PLACE DE LEUROPE;;PLACE COLBERT;56057;[6.953956, 43.5519];;FRSIGESIGE8611;FR*SOD*E*SIGE*282*1*1*_;;;;;;;;;;;;;;;;;;;50037137544477;2016-01-28;;;;;;;;6.969609;43.583317;69630;Caudan;; +;Garage Robert Automobiles;;;;;;SIGNY L ABBAYE - Plave Aristide Briand - 57592;FRSIGPSIGE34712;FR*SOD*S*LYON*117*3*_*_;SAINT YRIEIX LA PERCHE - GARE;;PARKING SALLES DE FÊTES;56113;[6.906609, 44.116352];;FRSIGESIGE8621;FR*SOD*E*SIGE*283*1*1*_;;;;;;;;;;;;;;;;;;;50079248856298;2017-02-15;;;;;;;;7.111934;43.589162;03160;Grand-Champ;; +;Garage Schlaeppi;;;;;;BAR LE DUC - 81267 - Cinéma;FRSIGPSIGE34711;FR*SOD*S*LYON*182*1*_*_;VALBERG - FRONT DE NEIGE;;IMPASSE DES CADUCÉES - PÔLE MÉDICAL;56252;[6.969609, 43.621304];;FRSIGESIGE8631;FR*SOD*E*SIGE*283*1*2*_;;;;;;;;;;;;;;;;;;;50097477082689;2016-07-07;;;;;;;;7.101737;43.622951;44750;Île-aux-Moines;; +;Garage Star;;;;;;LES MAZURES - Rue des Hayettes - DC 57615;FRSIGPSIGE36912;FR*SOD*S*LYON*116*4*_*_;ANTIBES - PARKING FORT CARRE;;RUE MARCEL PERROT;56060;[7.111934, 43.570758];;FRSIGESIGE8641;FR*SOD*E*SIGE*285*1*1*_;;;;;;;;;;;;;;;;;;;50067817674601;2016-02-17;;;;;;;;7.074897;43.597811;44530;Hennebont;; +;Garage de la Baume Salernes public;;;;;;RIMOGNE- Rue de la Gare - 57623;FRSIGPSIGE36312;FR*SOD*S*LYON*116*1*_*_;VALBERG - GOLF;;RUE DEPAGNAC;56110;[7.101737, 43.571659];;FRSIGESIGE8751;FR*SOD*E*SIGE*285*1*2*_;;;;;;;;;;;;;;;;;;;50007180409090;2016-12-28;;;;;;;;7.040892;43.5397;23100;Guiscriff;; +;Garage du Midour;;;;;;08 BOGNY SUR MEUSE - Place Danton - DC- 57637;FRSIGPSIGE36412;FR*SOD*S*LYON*116*2*_*_;VALBERG - PISCINE;;PLACE JEAN JAURES;56111;[7.074897, 43.618336];;FRSIGESIGE8731;FR*SOD*E*SIGE*286*1*2*_;;;;;;;;;;;;;;;;;;;50026284096942;2016-05-17;;;;;;;;6.997921;43.955964;57400;Guilliers;; +;Genin D.E.S;;;;;;HôTEL DE FRANCE BORNE 1;FRSIGPSIGE36411;FR*SOD*S*LYON*117*1*_*_;GARS - PARKING VILLAGE;;RUE DE BELLEVUE;56112;[7.040892, 43.589903];;FRSIGESIGE8711;FR*SOD*E*SIGE*286*1*1*_;;;;;;;;;;;;;;;;;;;72630162500089 (GNC et IRVE);2017-02-20;;;;;;;;7.03772;44.026512;54800;Riantec;; +;Geodis Angers public;;;;;;ROUVROY SUR AUDRY - 57687 - Grande Rue;FRSIGPSIGE36511;FR*SOD*S*LYON*117*2*_*_;VALBONNE - ROUTE DES DOLINES;;PARKING DES TILLEULS;56104;[6.997921, 43.583708];;FRSIGESIGE8741;FR*SOD*E*SIGE*272*1*1*_;;;;;;;;;;;;;;;;;;;50025262796525;2021-05-11;;;;;;;;7.108882;43.455993;81000;Guidel;; +;Garage Lucas;;;;;;SONEPAR CONNECT AUBAGNE;FRSIGPSIGE36512;FR*SOD*S*LYON*117*4*_*_;SAINT-MARTIN-DENTRAUNES - PARKING VILLAGE;;PARKING RUE ANATOLE FRANCE;56101;[7.03772, 43.53673];;FRSIGESIGE8721;FR*SOD*E*SIGE*271*1*1*_;;;;;;;;;;;;;;;;;;;50049869099564;2021-09-24;;;;;;;;7.09906;43.453096;57180;Guern;; +;Garage Loxane;;;;;;RENWEZ -Place de l'Eglise - 57633;FRSIGPSIGE36612;FR*SOD*S*LYON*118*2*_*_;SAINT AUBAN - PARKING VILLAGE;;PARKING DE LA PAIX;56091;[7.108882, 43.583317];;FRSIGESIGE8151;FR*SOD*E*SIGE*287*1*2*_;;;;;;;;;;;;;;;;;;;50010646087672;2016-04-20;;;;;;;;7.051729;43.45656;83170;Guer;; +;Garage Duchmann;;;;;;08 VOUZIERS - rue Gambetta - DC 57629;FRSIGPSIGE36611;FR*SOD*S*LYON*120*1*_*_;ENTRAUNES - PARKING VILLAGE;;PLACE DU VIEUX MARCHÉ;56264;[7.09906, 43.589162];;FRSIGESIGE8141;FR*SOD*E*SIGE*259*1*2*_;;;;;;;;;;;;;;;;;;;067067/E1/0749709;2017-10-18;;;;;;;;6.954077;43.456775;44570;Guénin;; +;Garage Cassani Dubois;;;;;;SIGNY LE PETIT - 57627 - Place de l'église;FRSIGPSIGE36712;FR*SOD*S*LYON*118*1*_*_;GUILLAUMES - PARKING PLACE NAPOLEON 3;;PARKING SALLE DES FÊTES - LA ROCHEFOUCAULD;56094;[7.051729, 43.622951];;FRSIGESIGE11711;FR*SOD*E*SIGE*252*1*2*_;;;;;;;;;;;;;;;;;;;50070270299499;2016-03-22;;;;;;;;7.03597;43.499395;33160;Guémené-sur-Scorff;; +;Garage Chanchou;;;;;;LUCQUY - 57625 - Gare;FRSIGPSIGE36711;FR*SOD*S*LYON*119*1*_*_;GUILLAUMES - PARKING PLACE DES COMBATTANTS;;CHEZ FAGNARD - AIRE DE COVOITURAGE;56061;[6.954077, 43.597811];;FRSIGESIGE7411;FR*SOD*E*SIGE*316*1*1*_;;;;;;;;;;;;;;;;;;;50063759728930;2017-11-28;;;;;;;;6.895762;43.341849;54180;Guéhenno;; +;Garage Didier;;;;;;Aire de Gevrey - Chambertin Ouest;FRSIGPSIGE36811;FR*SOD*S*LYON*119*2*_*_;SAUZE - PARKING VILLAGE;;PARKING RUE DU CHÂTEAU;56195;[7.03597, 43.5397];;FRSIGESIGE7211;FR*SOD*E*SIGE*253*1*2*_;;;;;;;;;;;;;;;;;;;50001556902557;2017-07-04;;;;;;;;6.81205;43.445696;81710;Guégon;; +;Garage Diestel;;;;;;Aire de Romagnieu;FRSIGPSIGE36812;FR*SOD*S*LYON*174*1*_*_;CANNES - PARKING MIGNO;;PARKING JEAN MONNET;56257;[6.895762, 43.955964];;FRSIGESIGE7261;FR*SOD*E*SIGE*253*1*1*_;;;;;;;;;;;;;;;;;;;50044663349082;2017-02-13;;;;;;;;6.688753;43.419192;60200;Groix;; +;Garage Foch;;;;;;ATMOSPHERES BORNE;FRSIGPSIGE36911;FR*SOD*S*LYON*181*1*_*_;CANNES - AEROPORT MANDELIEU;;AVENUE DU 14 JUILLET;56258;[6.81205, 44.026512];;FRSIGESIGE7351;FR*SOD*E*SIGE*254*1*1*_;;;;;;;;;;;;;;;;;;;50089962289555;2019-09-13;;;;;;;;6.686872;43.386678;60880;Carentoir;; +;Garage Leroyer;;;;;;Rely;FRSIGPSIGE37012;FR*SOD*S*LYON*172*2*_*_;PEONE - PARKING VILLAGE;;RUE EMILE BELLY;56261;[6.688753, 43.455993];;FRSIGESIGE7331;FR*SOD*E*SIGE*254*1*2*_;;;;;;;;;;;;;;;;;;;50083731397102;2017-10-05;;;;;;;;6.683534;43.427411;45400;Baden;; +;Geodis Orléans public;;;;;;NOYANT DE TOURAINE 1293;FRSIGPSIGE34911;FR*SOD*S*LYON*173*2*_*_;MOUANS SARTOUX - PARKING P+R;;VILLEJÉSUS - PLACE DE LEGLISE;56096;[6.686872, 43.453096];;FRSIGESIGE7311;FR*SOD*E*SIGE*255*1*2*_;;;;;;;;;;;;;;;;;;;50041914358481;2019-10-23;;;;;;;;6.686489;43.576122;22000;Auray;; +;Geodis G3 - public;;;;;;SONEPAR VIENNE;FRSIGPSIGE37011;FR*SOD*S*LYON*173*1*_*_;ANTIBES PARKING JUAN GARE;;PLACE AUGUSTE ROYER;56097;[6.683534, 43.45656];;FRSIGESIGE7321;FR*SOD*E*SIGE*255*1*1*_;;;;;;;;;;;;;;;;;;;50029901910447;2016-08-12;;;;;;;;6.646478;43.597408;28700;Augan;; +;Geodis Le Havre public;;;;;;BOURGES - Place de la Nation - 140281;FRSIGPSIGE37111;FR*SOD*S*LYON*172*1*_*_;ANTIBES - PARKING DULYS;;ROUTE DE TORSAC;56100;[6.686489, 43.456775];;FRSIGESIGE7341;FR*SOD*E*SIGE*256*1*1*_;;;;;;;;;;;;;;;;;;;50016441328644;2016-08-10;;;;;;;;6.694257;43.564065;28240;Arzon;; +;Geodis Le Plessis-Pate public;;;;;;VOUZIERS - 57619 - Rue du Champ de Foire;FRSIGPSIGE37112;FR*SOD*S*LYON*171*2*_*_;BIOT PARKING ROUMANILLE;;AVENUE NELSON MANDELA;56121;[6.646478, 43.499395];;FRSIGESIGE7451;FR*SOD*E*SIGE*256*1*2*_;;;;;;;;;;;;;;;;;;;50021360521225;2016-12-16;;;;;;;;6.63861;43.571381;28500;Arzal;; +;Geodis Limeil public;;;;;;JUNIVILLE - 57595 - Avenue de Quimper;FRSIGPSIGE37211;FR*SOD*S*LYON*174*2*_*_;MOUGINS PARKING PETITE COLLINE;;PARKING DES AMBASSADEURS;56114;[6.694257, 43.341849];;FRSIGESIGE7461;FR*SOD*E*SIGE*257*1*2*_;;;;;;;;;;;;;;;;;;;50004572508886;2016-10-25;;;;;;;;6.746812;43.641144;28200;Arradon;; +;Geodis G2 - public;;;;;;BORNE GAZZOLA DEPOT GMT;FRSIGPSIGE37212;FR*SOD*S*LYON*171*1*_*_;MOUGINS - PARKING SCENE 55;;PARKING MULTIPLE RURAL;56123;[6.63861, 43.445696];;FRSIGESIGE7431;FR*SOD*E*SIGE*257*1*1*_;;;;;;;;;;;;;;;;;;;50000953311351;2015-07-01;;;;;;;;6.721648;43.342153;28150;Allaire;; +;FDE80;;;;;;RAUCOURT ET FLABA - 57539 - Place de la Halle;FRSIGPSIGE37312;FR*SOD*S*LYON*170*1*_*_;CANNES PARKING PALM BEACH;;ALLÉE DES JARDINS;56124;[6.746812, 43.419192];;FRSIGESIGE7421;FR*SOD*E*SIGE*259*1*1*_;;;;;;;;;;;;;;;;;;;50050885991254;2016-08-11;;;;;;;;6.752546;43.423766;45430;Baud;; +;Ferney-Voltaire;;;;;;DOMMARTIN - Rue de Pont - 163280 - CCS;FRSIGPSIGE37311;FR*SOD*S*LYON*170*2*_*_;ANTIBES PARKING ROI SOLEIL;;PLACE SADI CARNOT;56126;[6.721648, 43.386678];;FRSIGESIGE7441;FR*SOD*E*SIGE*271*1*2*_;;;;;;;;;;;;;;;;;;;50059571613280;2015-05-29;;;;;;;;7.088415;43.426121;11590;Bréhan;; +;Fessenheim;;;;;;HYPER U BORNE 4;FRSIGPSIGE37411;FR*SOD*S*LYON*177*1*_*_;ANTIBES PARKING RABIAC ESTAGNOL;;ZONE DEMPLOI;56115;[6.752546, 43.427411];;FRSIGESIGE7512;FR*SOD*E*SIGE*263*1*1*_;;;;;;;;;;;;;;;;;;;50049004746474;2016-01-22;;;;;;;;7.067345;43.794887;62340;Camors;; +;Fiat Languedoc Roussillon;;;;;;RAW PROVENCE 09;FRSIGPSIGE25211;FR*SOD*S*LYON*180*1*_*_;VALBONNE PARKING DOJO;;PLACE THIERS;56116;[7.088415, 43.576122];;FRSIGESIGE8131;FR*SOD*E*SIGE*263*1*2*_;;;;;;;;;;;;;;;;;;;DB21/035172/001001;2016-03-08;;;;;;;;7.067558;43.426157;59310;Camoël;; +;Fasthotel;;;;;;Shell Aire de Roussilllon;FRSIGPSIGE37531;FR*SOD*S*LYON*179*1*_*_;LA ROQUETTE SUR SIAGNE PARKING COEUR ST GEORGES;;PLACE COMMUNALE;56117;[7.067345, 43.597408];;FRSIGESIGE7511;FR*SOD*E*SIGE*265*1*2*_;;;;;;;;;;;;;;;;;;;50041327424403;2016-11-15;;;;;;;;7.111563;43.573036;13370;Calan;; +;FDS Immo;;;;;;Tavel | A9/E15, La Languedocienne;FRSIGPSIGE37521;FR*SOD*S*LYON*178*1*_*_;CANNES - PARKING REINE ASTRID;;PLACE BEAULIEU;56118;[7.067558, 43.564065];;FRSIGESIGE7612;FR*SOD*E*SIGE*265*1*1*_;;;;;;;;;;;;;;;;;;;50055513656600;2016-05-30;;;;;;;;7.142079;43.598635;13170;Caden;; +;Familles Rurales - Le Crozet;;;;;;Ste THORETTE - Route de Bourges - 148714;FRSIGPSIGE37511;FR*SOD*S*LYON*176*1*_*_;PUGET THENIERS - PARKING EGLISE;;PARKING DE LA TUDE;56119;[7.111563, 43.571381];;FRSIGESIGE7611;FR*SOD*E*SIGE*266*1*1*_;;;;;;;;;;;;;;;;;;;50019192022726;2015-05-28;;;;;;;;6.689706;43.416224;13580;Bubry;; +;Ferme de la Mélodie;;;;;;Poitiers Chincé;FRSIGPSIGE36311;FR*SOD*S*LYON*115*4*_*_;DALUIS - PARKING GARE;;PARKING DE AIGNES;56120;[7.142079, 43.641144];;FRSIGESIGE7712;FR*SOD*E*SIGE*266*1*2*_;;;;;;;;;;;;;;;;;;;50046853156400;2016-01-18;;;;;;;;6.771648;43.429654;13112;Brech;; +;Faulquemont;;;;;;BSMD BORNE 2;FRSIGPSIGE36211;FR*SOD*S*LYON*176*2*_*_;PUGET SUR ARGENS - PARKING ESPACE VICTOR HUGO;;AVENUE HENRI DUNANT;56206;[6.689706, 43.342153];;FRSIGESIGE7811;FR*SOD*E*SIGE*267*1*1*_;;;;;;;;;;;;;;;;;;;50089961236136;2016-01-19;;;;;;;;6.770057;43.425128;13330;Le Bono;; +;Ferme de Woimbley;;;;;;CHAMPADIS BORNE 2;FRSIGPSIGE36212;FR*SOD*S*LYON*175*1*_*_;PUGET SUR ARGENS - PARKING DE PROVENCE;;PLACE LAURENT PRAT;56066;[6.771648, 43.423766];;FRSIGESIGE7812;FR*SOD*E*SIGE*267*1*2*_;;;;;;;;;;;;;;;;;;;50039164602339;2016-02-23;;;;;;;;7.04193;43.424876;13821;Bignan;; +;Fidsud CDBA;;;;;;Seclin;FRSIGPSIGE36111;FR*SOD*S*LYON*175*2*_*_;PUGET SUR ARGENS - PARKING MAIRIE;;ROUMAZIÈRES-LOUBERT - PARKING DU MARCHÉ COUVERT;56063;[6.770057, 43.426121];;FRSIGESIGE7911;FR*SOD*E*SIGE*269*1*1*_;;;;;;;;;;;;;;;;;;;50036265682957;2016-02-05;;;;;;;;6.769688;43.414773;13640;Berné;; +;Franche-Comté - SIED70;;;;;;Mailly-le-Chateau;FRSIGPSIGE34912;FR*SOD*S*LYON*115*3*_*_;PUGET SUR ARGENS - PARKING DES HARKIS;;PARKING DES ALBIZIAS;56058;[7.04193, 43.794887];;FRSIGESIGE7912;FR*SOD*E*SIGE*269*1*2*_;;;;;;;;;;;;;;;;;;;50042222253466;2016-04-05;;;;;;;;6.991493;43.413416;13113;Belz;; +;Franche-Comté - SIED70 Rapide;;;;;;Erlon 1 - 7680;FRSIGPSIGE35012;FR*SOD*S*LYON*111*3*_*_;ROQUEBRUNE-SUR-ARGENS - PARKING BOUVERIE;;PLACE GÉRARD VANDEPUTTE - SAINT PROJET-SAINT CONSTANT;56144;[6.769688, 43.426157];;FRSIGESIGE8031;FR*SOD*E*SIGE*270*1*1*_;;;;;;;;;;;;;;;;;;;50080861931499;2017-02-01;;;;;;;;6.986055;43.417625;13410;Sarzeau;; +;France Com Régie;;;;;;Pontchateau;FRSIGPSIGE35011;FR*SOD*S*LYON*115*2*_*_;ROQUEBRUNE-SUR-ARGENS - PARKING ISSAMBRE;;PARKING MAIRIE - RAMPE SAINT NICOLAS;56055;[6.991493, 43.573036];;FRSIGESIGE8041;FR*SOD*E*SIGE*270*1*2*_;;;;;;;;;;;;;;;;;;;50061884919157;2023-01-01;;;;;;;;6.808597;43.432224;13680;Saint-Malo-des-Trois-Fontaines;; +;Fournier SAS;;;;;;SONEPAR CONNECT CARCASSONNE;FRSIGPSIGE35112;FR*SOD*S*LYON*102*2*_*_;ROQUEBRUNE-SUR-ARGENS - PARKING DES DOUANES;;PLACE DU PILORI;56054;[6.986055, 43.598635];;FRSIGESIGE8021;FR*SOD*E*SIGE*287*1*1*_;;;;;;;;;;;;;;;;;;;50010943900060;2023-10-06;;;;;;;;6.775273;43.431219;13100;Saint-Marcel;; +;Fournié Grospaud Réseaux Public;;;;;;Hôtel de ville 2 - 7689;FRSIGPSIGE35111;FR*SOD*S*LYON*101*1*_*_;FREJUS - PARKING SQUARE ROLAND GARROS;;PIÈCE DU PONT, LE BOURG, RD 739, ROUTE DE MANSLE;56053;[6.808597, 43.416224];;FRSIGESIGE8011;FR*SOD*E*SIGE*419*1*1*_;;;;;;;;;;;;;;;;;;;50090827796615;2016-01-14;;;;;;;;6.770335;43.427591;13103;Saint-Nolff;; +;Fraize;;;;;;Val Gelon;FRSIGPSIGE35212;FR*SOD*S*LYON*101*2*_*_;FREJUS - BOULEVARD HONORE DE BALZAC;;PARKING DES COLES;56052;[6.775273, 43.429654];;FRSIGESIGE8861;FR*SOD*E*SIGE*289*1*2*_;;;;;;;;;;;;;;;;;;;50052048625235;2016-10-03;;;;;;;;6.766603;43.650382;13890;Saint-Perreux;; +;Francart;;;;;;Gambetta 3 - 7686;FRSIGPSIGE35211;FR*SOD*S*LYON*101*4*_*_;FREJUS - PARKING SCHWEITZER;;RUE DE LOCÉAN;56046;[6.770335, 43.425128];;FRSIGESIGE8851;FR*SOD*E*SIGE*310*1*1*_;;;;;;;;;;;;;;;;;;;50087348604642;2019-01-22;;;;;;;;6.778844;43.947858;13520;Saint-Philibert;; +;Foch Automobiles;;;;;;DIGNY - Rue de Marechal Leclerc - 171587;FRSIGPSIGE35312;FR*SOD*S*LYON*101*3*_*_;ANTIBES - PARKING ST MAYMES;;PARKING DU CINEMA;56044;[6.766603, 43.424876];;FRSIGESIGE8831;FR*SOD*E*SIGE*304*1*2*_;;;;;;;;;;;;;;;;;;;50065209552914;2022-10-23;;;;;;;;6.780578;43.874919;13990;Saint-Pierre-Quiberon;; +;Flévaur;;;;;;POUSSY BORNE SUPERU BEAUMONT;FRSIGPSIGE35311;FR*SOD*S*LYON*102*4*_*_;ANTIBES - PARKING SEMBOULES;;PARKING BEAURIVAGE;56042;[6.778844, 43.414773];;FRSIGESIGE11011;FR*SOD*E*SIGE*305*1*2*_;;;;;;;;;;;;;;;;;;;50006741747384;2015-07-08;;;;;;;;6.84497;43.863651;13810;Saint-Tugdual;; +;Fit'n Well;;;;;;YZEURES-SUR-CREUSE 18319 - ZA Les Chalussons;FRSIGPSIGE35411;FR*SOD*S*LYON*102*1*_*_;VALLAURIS - PARKING PONT DE LAUBE;;RUE LASSEGUETTE;56040;[6.780578, 43.413416];;FRSIGESIGE10221;FR*SOD*E*SIGE*305*1*1*_;;;;;;;;;;;;;;;;;;;50071581010142;2019-01-15;;;;;;;;6.857109;43.978437;13930;Sainte-Anne-d'Auray;; +;Fleurance, EPS Lomagne;;;;;;Tours 10699 - Rue de Tourcoing;FRSIGPSIGE35412;FR*SOD*S*LYON*102*3*_*_;ANTIBES - PARKING COURBET;;IMPASSE DE LA FONTAINE;56036;[6.84497, 43.417625];;FRSIGESIGE10211;FR*SOD*E*SIGE*306*1*2*_;;;;;;;;;;;;;;;;;;;30002520326229;2016-01-13;;;;;;;;6.870301;43.873123;13980;Sainte-Brigitte;; +;Hôtel Ibis La Terrasse;;;;;;Tours 10698 - Place Rabelais;FRSIGPSIGE35512;FR*SOD*S*LYON*103*1*_*_;VILLENEUVE-LOUBET - PARKING ALLEE DE LA PLAGE;;RUE GAMBETTA PARKING NORD;56067;[6.857109, 43.432224];;FRSIGESIGE10312;FR*SOD*E*SIGE*306*1*1*_;;;;;;;;;;;;;;;;;;;50055950865120;2015-07-02;;;;;;;;6.769099;43.858005;13430;Saint-Jean-Brévelay;; +;Hôtel Ibis Styles Angoulême;;;;;;SAS PETIT BORNE 1;FRSIGPSIGE35511;FR*SOD*S*LYON*100*4*_*_;ROQUEBRUNE-SUR-ARGENS - PARKING TOTAL;;SQUARE LEO POUZAC;56087;[6.870301, 43.431219];;FRSIGESIGE10311;FR*SOD*E*SIGE*307*1*1*_;;;;;;;;;;;;;;;;;;;50063327047231;2017-03-03;;;;;;;;6.815823;43.942747;13510;Inzinzac-Lochrist;; +;Hôtel Ibis Styles Les Sables d'Olonne;;;;;;Tours 24226 - Rue Giraudeau;FRSIGPSIGE35612;FR*SOD*S*LYON*103*2*_*_;SAINT-RAPHAEL - PARKING LAMARTINE;;QUAI DE LESSEPS;56083;[6.769099, 43.427591];;FRSIGESIGE10512;FR*SOD*E*SIGE*307*2*2*_;;;;;;;;;;;;;;;;;;;50038147183609;2019-04-02;;;;;;;;7.008847;43.948198;13780;Rieux;; +;Hôtel Ithurria;;;;;;Tours 10694 - Avenue Marcel Dassault;FRSIGPSIGE35611;FR*SOD*S*LYON*103*3*_*_;SAINT-RAPHAEL - RUE LEON ISNARD;;RUE JULES LABAT;56081;[6.815823, 43.650382];;FRSIGESIGE10511;FR*SOD*E*SIGE*307*1*2*_;;;;;;;;;;;;;;;;;;;50032357982634;2015-12-17;;;;;;;;7.082716;43.937045;13250;Rohan;; +;Hôtel Julien Fouday;;;;;;Aire du Haut Forez Nord;FRSIGPSIGE35712;FR*SOD*S*LYON*103*4*_*_;COURSEGOULES - PARKING DU COLOMBIER;;POLO BEYRIS;56080;[7.008847, 43.947858];;FRSIGESIGE10611;FR*SOD*E*SIGE*307*2*1*_;;;;;;;;;;;;;;;;;;;50019335686657;2019-07-31;;;;;;;;7.091959;43.874341;13180;Roudouallec;; +;Hôtel Kyriad;;;;;;SUPER U COUST BORNE CLIENT;FRSIGPSIGE35711;FR*SOD*S*LYON*104*2*_*_;SAINT-RAPHAEL - PARKING RENE GAUTIER;;PLACE DES GASCONS;56193;[7.082716, 43.874919];;FRSIGESIGE10612;FR*SOD*E*SIGE*308*1*1*_;;;;;;;;;;;;;;;;;;;50089956849829;2015-07-03;;;;;;;;7.031442;43.936102;13450;Ruffiac;; +;Hyundai Les Ulis;;;;;;BUCHELAY BUCHELAY 1;FRSIGPSIGE35811;FR*SOD*S*LYON*104*1*_*_;LE CANNET - PARKING CANEOPOLE;;PLACE ALBRET;56078;[7.091959, 43.863651];;FRSIGESIGE10712;FR*SOD*E*SIGE*309*1*2*_;;;;;;;;;;;;;;;;;;;50003293194339;2019-03-21;;;;;;;;6.964126;44.094825;13220;Saint-Allouestre;; +;Hôtel Ibis Châteaucreux gare;;;;;;TROISGROS OUCHES;FRSIGPSIGE35812;FR*SOD*S*LYON*104*3*_*_;PARKING DU VAL DE MOUGINS;;PARKING FLOQUET;56076;[7.031442, 43.978437];;FRSIGESIGE10711;FR*SOD*E*SIGE*309*1*1*_;;;;;;;;;;;;;;;;;;;50030480547331;2017-03-10;;;;;;;;6.914737;44.032071;13350;Saint-Gravé;; +;Hôtel Dream Castle;;;;;;ASFELD - 57563 - Place Grand Cour;FRSIGPSIGE35911;FR*SOD*S*LYON*104*4*_*_;SAINT-RAPHAEL - PARKING BOULAURIS;;ALLÉE MONTESQUIEU;56075;[6.964126, 43.873123];;FRSIGESIGE10812;FR*SOD*E*SIGE*310*1*2*_;;;;;;;;;;;;;;;;;;;50012962950031;2016-02-22;;;;;;;;7.125003;43.995534;13130;Saint-Barthélemy;; +;Hôtel Ecluse 34;;;;;;MARGUT - 57702 - Rue de la Poste;FRSIGPSIGE35912;FR*SOD*S*LYON*100*3*_*_;SAINT-RAPHAEL - PARKING XV CORPS;;PARKING GAMBETTA;56074;[6.914737, 43.858005];;FRSIGESIGE10811;FR*SOD*E*SIGE*303*1*1*_;;;;;;;;;;;;;;;;;;;50059710464712;2018-10-01;;;;;;;;7.009405;43.989648;13400;Saint-Dolay;; +;Hôtel Festival Sud;;;;;;REMILLY AILLICOURT - 57519 - Rue de Raucourt;FRSIGPSIGE36012;FR*SOD*S*LYON*100*2*_*_;SAINT-RAPHAEL - PARKING GABRIEL PERI;;PARKING DU LAVOIR;56073;[7.125003, 43.942747];;FRSIGESIGE11012;FR*SOD*E*SIGE*311*1*1*_;;;;;;;;;;;;;;;;;;;50014581274897;2014-04-22;;;;;;;;7.096915;43.955574;13390;Saint-Gérand-Croixanvec;; +;Hôtel H24;;;;;;LUZILLE 1451;FRSIGPSIGE36011;FR*SOD*S*LYON*105*3*_*_;SAINT-RAPHAEL - PLACE DORTOLAN;;RTE DE LOURDES;56071;[7.009405, 43.948198];;FRSIGESIGE8841;FR*SOD*E*SIGE*311*1*2*_;;;;;;;;;;;;;;;;;;;50017600896619;2015-07-07;;;;;;;;7.004788;43.60133;13121;Saint-Gildas-de-Rhuys;; +;Hôtel IBIS Budget Valencienne;;;;;;CGED CGED AMIENS;FRSIGPSIGE36112;FR*SOD*S*LYON*97*1*_*_;SAINT-RAPHAEL - PARKING PLACE DES COMMERCES;;PLACE BARTHELEMY;56070;[7.096915, 43.937045];;FRSIGESIGE11112;FR*SOD*E*SIGE*312*1*2*_;;;;;;;;;;;;;;;;;;;50084749615130;2015-06-30;;;;;;;;7.095503;43.545788;13470;Saint-Gonnery;; +;Hôtel Kyriad Meaux;;;;;;Bedenac | N10, Aire de Bedenac Est;FRSIGPSIGE31911;FR*SOD*S*LYON*94*1*_*_;SAINT-RAPHAEL - PARKING DE LA CAPITAINERIE;;RUE GEORGES CLÉMENCEAU;56069;[7.004788, 43.874341];;FRSIGESIGE11111;FR*SOD*E*SIGE*312*1*1*_;;;;;;;;;;;;;;;;;;;50088512340775;2015-12-31;;;;;;;;6.989727;43.660826;13260;Sauzon;; +;Hôtel Kyriad Metz;;;;;;Cathédrale 2 - 7676 place 1151;FRSIGPSIGE37412;FR*SOD*S*LYON*94*2*_*_;SAINT-RAPHAEL - PARKING DU DEBARQUEMENT;;AVENUE DU TONKIN;56033;[7.095503, 43.936102];;FRSIGESIGE11212;FR*SOD*E*SIGE*313*1*1*_;;;;;;;;;;;;;;;;;;;50040459711007;2015-07-06;;;;;;;;7.035057;43.890183;13105;Vannes;; +;Hôtel Le Relais du Ried;;;;;;SONEPAR LORIENT;FRSIGPSIGE31712;FR*SOD*S*LYON*95*1*_*_;SAINT-RAPHAEL - PARKING PHARMACIE DAGAY;;PARKING ANTETXA;56008;[6.989727, 44.094825];;FRSIGESIGE11211;FR*SOD*E*SIGE*313*1*2*_;;;;;;;;;;;;;;;;;;;50016028228971;2020-03-16;;;;;;;;7.016601;43.782424;13790;Inguiniel;; +;Hôtel Le Richelieu;;;;;;SORIGNY 2480 - Place Antoine de St Exupéry;FRSIGPSIGE27911;FR*SOD*S*LYON*96*1*_*_;SAINT-RAPHAEL - PARKING BASTIDE DAGAY;;ALLEE CORISANDE;56007;[7.035057, 44.032071];;FRSIGESIGE11311;FR*SOD*E*SIGE*314*1*2*_;;;;;;;;;;;;;;;;;;;50094754757611;2013-07-22;;;;;;;;6.990858;43.909768;13124;Theix-Noyalo;; +;Hôtel Le Néron;;;;;;BORNE HU BORNE 2;FRSIGPSIGE27311;FR*SOD*S*LYON*98*2*_*_;SAINT-RAPHAEL - PARKING EUGENE FELIX;;RUE RAOUL FOLLEREAU;56006;[7.016601, 43.995534];;FRSIGESIGE11312;FR*SOD*E*SIGE*314*1*1*_;;;;;;;;;;;;;;;;;;;50073317245451;2019-02-05;;;;;;;;6.892666;43.570407;13340;Séné;; +;Hôtel La Brasserie - Treignac;;;;;;SONEPAR LE PONTET 13;FRSIGPSIGE27312;FR*SOD*S*LYON*100*1*_*_;SAINT-CEZAIRE-SUR-SIAGNE - PARKING CO-VOITURAGE;;RUE AUGUSTA;56005;[6.990858, 43.989648];;FRSIGESIGE11412;FR*SOD*E*SIGE*315*1*2*_;;;;;;;;;;;;;;;;;;;30000220759054;2016-03-30;;;;;;;;6.909623;43.574724;13610;Sérent;; +;Hôtel Kyriad Riom;;;;;;SONEPAR LE PONTET 9;FRSIGPSIGE27411;FR*SOD*S*LYON*98*1*_*_;TOUET-SUR-VAR - PARKING VILLAGE;;PLAINE DU MAHARIN;56004;[6.892666, 43.955574];;FRSIGESIGE11411;FR*SOD*E*SIGE*315*1*1*_;;;;;;;;;;;;;;;;;;;50045670881413;2019-03-20;;;;;;;;6.938977;43.542004;13490;Sulniac;; +;Hôtel La Chaussairie;;;;;;MARTIGNY - 3 avenue de la gare - 150325 - CCS;FRSIGPSIGE27412;FR*SOD*S*LYON*99*2*_*_;PIERREFEU - PARKING VILLAGE;;PARKING SERVICE TECHNIQUE;56003;[6.909623, 43.60133];;FRSIGESIGE11511;FR*SOD*E*SIGE*316*1*2*_;;;;;;;;;;;;;;;;;;;50079392115173;2016-02-24;;;;;;;;6.923529;43.881513;13560;Surzur;; +;Hôtel Le Lyon Vert;;;;;;LAMARCHE - 162018 - CCS;FRSIGPSIGE27511;FR*SOD*S*LYON*99*1*_*_;PIERREFEU - PARKING MAIRIE;;PARKING DU TRINQUET;56001;[6.938977, 43.545788];;FRSIGESIGE11512;FR*SOD*E*SIGE*289*1*1*_;;;;;;;;;;;;;;;;;;;50037012479795;2016-02-08;;;;;;;;6.822841;43.901386;13140;Trédion;; +;Hôpital Mémorial;;;;;;Chaberte;FRSIGPSIGE27512;FR*SOD*S*LYON*99*3*_*_;THIERY - PARKING VILLAGE;;PARKING VERT IZARDIA;56010;[6.923529, 43.660826];;FRSIGESIGE11611;FR*SOD*E*SIGE*304*1*1*_;;;;;;;;;;;;;;;;;;;60219555170793;2017-11-20;;;;;;;;6.954072;43.927462;13750;Val d'Oust;; +;Hyundai Saint-Ouen l'Aumône - Rousseau;;;;;;PULNOY - PARKING ATELIER ARTISANAL - 186925;FRSIGPSIGE27611;FR*SOD*S*LYON*99*4*_*_;SIGALE - PARKING VILLAGE;;RUE CARRÈRE;56024;[6.822841, 43.890183];;FRSIGESIGE11612;FR*SOD*E*SIGE*308*1*2*_;;;;;;;;;;;;;;;;;;;50074759100350;2015-07-20;;;;;;;;6.982924;43.52533;13550;Treffléan;; +;Hyundai Saintes;;;;;;SONEPAR BEAUNE;FRSIGPSIGE27612;FR*SOD*S*LYON*105*4*_*_;AIGLUN - PARKING VILLAGE;;ALLÉE DE QUINTAOU;56031;[6.954072, 43.782424];;FRSIGESIGE10222;FR*SOD*E*SIGE*303*1*2*_;;;;;;;;;;;;;;;;;;;50071165919525;2015-08-12;;;;;;;;7.021517;43.609589;13940;Jonquières;; +;Hyundai Troyes - Groupe Froment;;;;;;SONELOG CHÂTEAUBOURG 6;FRSIGPSIGE27711;FR*SOD*S*LYON*105*2*_*_;MASSOINS - PARKING VILLAGE;;PARKING PAUL COURBIN;56030;[6.982924, 43.909768];;FRSIGESIGE10212;FR*SOD*E*SIGE*296*1*1*_;;;;;;;;;;;;;;;;;;;30002521711001;2016-01-26;;;;;;;;6.998693;43.604153;13630;Bray-Dunes;; +;Hyundai Villeneuve St Georges (TSG);;;;;;Neulise;FRSIGPSIGE27712;FR*SOD*S*LYON*115*1*_*_;TOUET-SUR-VAR - PARKING EN OUVRAGE;;PARKING DES DAUPHINS;56029;[7.021517, 43.570407];;FRSIGESIGE10111;FR*SOD*E*SIGE*290*1*2*_;;;;;;;;;;;;;;;;;;;50013540410640;2018-12-03;;;;;;;;6.961662;43.587605;13160;Feuchy;; +;Hyundai Villepinte;;;;;;Mouzon 35483 - Rue du collége;FRSIGPSIGE27812;FR*SOD*S*LYON*112*2*_*_;VILLARS-SUR-VAR - PARKING VILLAGE;;PARKING XURIO;56028;[6.998693, 43.574724];;FRSIGESIGE10112;FR*SOD*E*SIGE*302*1*2*_;;;;;;;;;;;;;;;;;;;50076058535415;2015-12-21;;;;;;;;7.156247;43.60107;13870;Onnaing;; +;Hyundai Saint-Léonard;;;;;;TAINTRUX - Rue de l'épine - 162386;FRSIGPSIGE27811;FR*SOD*S*LYON*169*1*_*_;ROQUESTERON - PARKING VILLAGE;;PLACE MARCADIEU;56026;[6.961662, 43.542004];;FRSIGESIGE8811;FR*SOD*E*SIGE*291*1*1*_;;;;;;;;;;;;;;;;;;;50040897102775;2023-04-15;;;;;;;;7.112363;43.54985;13670;Douvres-la-Délivrande;; +;Hyundai Royan;;;;;;SUPER U BBA BORNE 2;FRSIGPSIGE27912;FR*SOD*S*LYON*111*4*_*_;VILLARS SUR VAR - PARKING BAS VILLAGE;;ROUTE DISSOR;56023;[7.156247, 43.881513];;FRSIGESIGE8821;FR*SOD*E*SIGE*291*1*2*_;;;;;;;;;;;;;;;;;;;50080694130227;2017-11-01;;;;;;;;6.947498;43.485077;13310;Montélimar;; +;Hyundai Macon;;;;;;DARNEY - Rue Stanislas - 150303 - CCS;FRSIGPSIGE27212;FR*SOD*S*LYON*111*1*_*_;BEUIL - PARKING MAIRIE;;RUE DE LA VALLEE DE LOUSSE;56262;[7.112363, 43.901386];;FRSIGESIGE8951;FR*SOD*E*SIGE*292*1*1*_;;;;;;;;;;;;;;;;;;;50046978311419;2022-02-01;;;;;;;;6.941249;43.505989;13150;Fontaine;; +;Hyundai Limoges;;;;;;Agde;FRSIGPSIGE28012;FR*SOD*S*LYON*111*2*_*_;PIERLAS - PARKING VILLAGE;;PLACE DU PALAIS;56017;[6.947498, 43.927462];;FRSIGESIGE8911;FR*SOD*E*SIGE*292*1*2*_;;;;;;;;;;;;;;;;;;;50061883618217;2022-01-01;;;;;;;;7.015534;43.554817;13910;Évron;; +;Hyundai Lisieux;;;;;;WAAT 4 CHENES 14;FRSIGPSIGE28011;FR*SOD*S*LYON*112*3*_*_;LIEUCHE - PARKING VILLAGE;;PARKING OFFICE DE TOURISME;56014;[6.941249, 43.52533];;FRSIGESIGE8931;FR*SOD*E*SIGE*293*1*1*_;;;;;;;;;;;;;;;;;;;195551EC1;2021-11-21;;;;;;;;6.98771;43.54916;13440;Saint-Béron;; +;Hyundai Monthlery;;;;;;SONEPAR CONNECT CHÂTEAU-THIERRY;FRSIGPSIGE28112;FR*SOD*S*LYON*112*1*_*_;RIGAUD - PARKING CIMETIERE;;PLACE SEMARD;56013;[7.015534, 43.609589];;FRSIGESIGE8941;FR*SOD*E*SIGE*293*1*2*_;;;;;;;;;;;;;;;;;;;50079395771391;2021-02-02;;;;;;;;7.037986;43.674377;13570;Pamiers;; +;Hyundai Nîmes;;;;;;SONEPAR BRIVE;FRSIGPSIGE28111;FR*SOD*S*LYON*112*4*_*_;PUGET THENIERS - PARKING MAIRIE;;PARKING MEDIATHEQUE;56240;[6.98771, 43.604153];;FRSIGESIGE8921;FR*SOD*E*SIGE*294*1*1*_;;;;;;;;;;;;;;;;;;;50039738296504;2021-11-04;;;;;;;;6.997377;43.680862;13860;Thillois;; +;Hyundai Poitiers;;;;;;Saugon Ouest;FRSIGPSIGE28212;FR*SOD*S*LYON*113*1*_*_;AURIBEAU-SUR-SIAGNE - PARKING MALLET;;MAIL DE COUBERTIN;56227;[7.037986, 43.587605];;FRSIGESIGE9112;FR*SOD*E*SIGE*294*1*2*_;;;;;;;;;;;;;;;;;;;50017021733700;2002-10-04;;;;;;;;6.966343;43.720795;13110;Domancy;; +;Hôtel Dolce Vita;;;;;;LIART - Place de la Mairie - 57724;FRSIGPSIGE28211;FR*SOD*S*LYON*110*2*_*_;MANDELIEU-LA NAPOULE - PARKING PLACE DE FRANCE;;AVENUE DU MOULIN;56228;[6.997377, 43.60107];;FRSIGESIGE9111;FR*SOD*E*SIGE*295*1*1*_;;;;;;;;;;;;;;;;;;;50033223821044;2022-11-14;;;;;;;;6.934108;43.77903;13119;Cesson-Sévigné;; +;Hôtel B&B Saint-Martin-de-Valgalgues;;;;;;BORNE U BORNE PUBLIQUE3;FRSIGPSIGE28311;FR*SOD*S*LYON*113*3*_*_;GRASSE - PARKING NOTRE DAME DES FLEURS;;CHEMIN DU MOUROU;56231;[6.966343, 43.54985];;FRSIGESIGE9211;FR*SOD*E*SIGE*295*1*2*_;;;;;;;;;;;;;;;;;;;50050155177339;2022-11-01;;;;;;;;6.939531;43.799503;13230;Mourèze;; +;Hôtel Cleebourg;;;;;;PARKING EXTERIE BORNE 2;FRSIGPSIGE28312;FR*SOD*S*LYON*113*2*_*_;AMIRAT - PARKING VILLAGE;;PARKING DE LÉCOLE;56232;[6.934108, 43.485077];;FRSIGESIGE9212;FR*SOD*E*SIGE*290*1*1*_;;;;;;;;;;;;;;;;;;;IDC 22142658;2023-01-21;;;;;;;;7.022205;43.701473;13114;Entraigues-sur-la-Sorgue;; +;Hôtel Col de l'Ange;;;;;;CGED TOULOUSE 1 _;FRSIGPSIGE28511;FR*SOD*S*LYON*113*4*_*_;CIPIERES - PARKING VILLAGE;;PLACE DES COMMERCES;56233;[6.939531, 43.505989];;FRSIGESIGE9311;FR*SOD*E*SIGE*296*1*2*_;;;;;;;;;;;;;;;;;;;50090824788263;2022-11-06;;;;;;;;6.971852;43.825058;13830;Charleville-Mézières;; +;Hôtel Comfort Colmar;;;;;;BUZANCY - 57517 - Parking Proxi;FRSIGPSIGE28512;FR*SOD*S*LYON*114*4*_*_;SAINT ANTONIN - PARKING STADE;;CHEMIN DU MOULIN;56234;[7.022205, 43.554817];;FRSIGESIGE9312;FR*SOD*E*SIGE*299*1*2*_;;;;;;;;;;;;;;;;;;;50034091544430;2022-02-12;;;;;;;;7.005572;43.773846;13760;Thonon-les-Bains;; +;Hôtel Cosy;;;;;;WAAT 4 CHENES 11;FRSIGPSIGE28612;FR*SOD*S*LYON*114*1*_*_;LE CANNET PARKING BASTIERES;;PARKING DU JEU DE PAUME;56238;[6.971852, 43.54916];;FRSIGESIGE9412;FR*SOD*E*SIGE*297*2*1*_;;;;;;;;;;;;;;;;;;;30002231658840;2022-02-13;;;;;;;;6.972588;43.580826;13920;Lescure-d'Albigeois;; +;Hôtel Crocus;;;;;;St FLORENT SUR CHER - République - 113095;FRSIGPSIGE28611;FR*SOD*S*LYON*114*2*_*_;LE CANNET PARKING DES FADES;;PARKING COMMUNAUTÉ DE COMMUNES DU NORD-EST BÉARN;56263;[7.005572, 43.674377];;FRSIGESIGE9411;FR*SOD*E*SIGE*301*1*1*_;;;;;;;;;;;;;;;;;;;50065647337650;2023-01-02;;;;;;;;6.977588;43.654076;13115;Saint-Victor;; +;Hôtel Au Coucou;;;;;;CGED MONTREUIL;FRSIGPSIGE27211;FR*SOD*S*LYON*114*3*_*_;CANNES - PARKING RD POINT ROMANO;;RUE DU BOURG;56209;[6.972588, 43.680862];;FRSIGESIGE9512;FR*SOD*E*SIGE*301*1*2*_;;;;;;;;;;;;;;;;;;;50045261222487;2023-03-18;;;;;;;;6.731209;43.654064;13590;Éragny;; +;Hôtel Acropole;;;;;;Longvilliers;FRSIGPSIGE27111;FR*SOD*S*LYON*110*4*_*_;REVEST LES ROCHES - PARKING VILLAGE;;PARKING HAITZ ONDO;56222;[6.977588, 43.720795];;FRSIGESIGE9511;FR*SOD*E*SIGE*300*1*1*_;;;;;;;;;;;;;;;;;;;50077664639610;2022-12-10;;;;;;;;6.807771;43.668011;13650;Le Guerno;; +;Hôtel - Le Savigny;;;;;;Carignan 35990 - Rue du Parc;FRSIGPSIGE28712;FR*SOD*S*LYON*110*1*_*_;TOUDON - PARKING MAIRIE;;RUE DES ANNETTES;56090;[6.731209, 43.77903];;FRSIGESIGE9712;FR*SOD*E*SIGE*300*1*2*_;;;;;;;;;;;;;;;;;;;30002231517349;2023-02-05;;;;;;;;6.989127;43.665592;13710;Les Arcs;; +;Hôtel A l'Arbre Vert;;;;;;Douzy 35886 - Place Verte;FRSIGPSIGE25912;FR*SOD*S*LYON*105*1*_*_;LA PENNE - PARKING VILLAGE;;CHEMIN LANOTS PARKING;56194;[6.807771, 43.799503];;FRSIGESIGE9711;FR*SOD*E*SIGE*299*1*1*_;;;;;;;;;;;;;;;;;;;50064344543136;2023-01-15;;;;;;;;7.122704;43.569656;13111;Viviez;; +;Hôtel A.B.I;;;;;;ORCENAIS - Route de Marçais - 112821;FRSIGPSIGE25212;FR*SOD*S*LYON*107*3*_*_;MANDELIEU-LA NAPOULE - PARKING CHANTIER NAVAL;;ROUTE DE ARZACQ D32;56198;[6.989127, 43.701473];;FRSIGESIGE9811;FR*SOD*E*SIGE*298*1*2*_;;;;;;;;;;;;;;;;;;;50014124631240;2018-08-07;;;;;;;;6.703947;43.571644;13850;La Madeleine;; +;Hôtel Alpazur;;;;;;PARKING EXTERIE BORNE 1;FRSIGPSIGE31611;FR*SOD*S*LYON*106*3*_*_;MOUGINS PARKING SALLE OMNISPORTS DU FONT DE LORME;;RUE DU GÉNÉRAL DE GAULLE;56199;[7.122704, 43.825058];;FRSIGESIGE9812;FR*SOD*E*SIGE*298*1*1*_;;;;;;;;;;;;;;;;;;;50011227898290;2017-05-27;;;;;;;;6.998574;43.564846;13730;Cournon-d'Auvergne;; +;Hôtel Astoria;;;;;;Vendée;FRSIGPSIGE25312;FR*SOD*S*LYON*106*1*_*_;MOUGINS PARKING CC TOURNAMY 700;;PARKING RD10;56200;[6.703947, 43.773846];;FRSIGESIGE10021;FR*SOD*E*SIGE*302*1*1*_;;;;;;;;;;;;;;;;;;;50056820847199;2017-11-14;;;;;;;;6.944208;43.57943;13960;Saint-Genest;; +;Hôtel Astrea;;;;;;Langres Perrogney;FRSIGPSIGE25311;FR*SOD*S*LYON*106*2*_*_;MOUGINS CENTRE SPORTIF DE MOUGINS LE HAUT;;RUE LOUIS BARTHOU;56204;[6.998574, 43.580826];;FRSIGESIGE10012;FR*SOD*E*SIGE*297*2*2*_;;;;;;;;;;;;;;;;;;;50051464584170;2017-12-20;;;;;;;;6.926369;43.658474;13770;Ardres;; +;IMCSYS;;;;;;07910270;FRSIGPSIGE25411;FR*SOD*S*LYON*106*4*_*_;MOUGINS PARKING DU MOULIN DE LA CROIX;;PARKING MARINELA - AVENUE FRANÇOIS MITERRAND;56218;[6.944208, 43.654076];;FRSIGESIGE10011;FR*SOD*E*MB47*38*1*1*_;;;;;;;;;;;;;;;;;;;50014702681860;2017-08-11;;;;;;;;7.043364;43.637203;13880;Clermont-Ferrand;; +;I.Bou;;;;;;La Réserve;FRSIGPSIGE25412;FR*SOD*S*LYON*107*1*_*_;CANNES CONTRE ALLEE FRANCIS TONNER;;ROUTE DE LOURDES TENNIS;56207;[6.926369, 43.654064];;FRSIGESIGE10022;FR*SOD*E*MB47*36*1*2*_;;;;;;;;;;;;;;;;;;;50056672517856;2017-02-17;;;;;;;;7.04891;43.656189;13122;Marennes-Hiers-Brouage;; +;IBIS Bourgoin;;;;;;STATION U BORNE 1;FRSIGPSIGE25512;FR*SOD*S*LYON*107*4*_*_;THEOULE PORT DE LA FIGUEIRETTE;;PARKING JAUREGUIA;56212;[7.043364, 43.668011];;FRSIGESIGE37711;FR*SOD*E*MB47*37*1*1*_;;;;;;;;;;;;;;;;;;;50049580501788;2017-11-22;;;;;;;;7.073825;43.718616;13116;Dunkerque;; +;ICL;;;;;;Borne de charge 2X22 KW WITTY PARK;FRSIGPSIGE25511;FR*SOD*S*LYON*107*2*_*_;THEOULE PARKING PLACE GENERAL BERTRAND;;AVENUE DU GNERALE CHARLES DE GAULLE;56213;[7.04891, 43.665592];;FRSIGESIGE3561;FR*SOD*E*MB47*37*1*2*_;;;;;;;;;;;;;;;;;;;50008044587493;2017-04-28;;;;;;;;7.077683;43.796143;13109;Aubigny-en-Artois;; +;IFP;;;;;;Réseau de recharge ABC;FRSIGPSIGE25611;FR*SOD*S*LYON*108*1*_*_;CANNES PARKING BRAILLE;;RUE SIMIN PALAY;56214;[7.073825, 43.569656];;FRSIGESIGE37611;FR*SOD*E*MB47*38*1*2*_;;;;;;;;;;;;;;;;;;;7134153324936;2016-08-17;;;;;;;;7.072232;43.846939;13126;Penta-di-Casinca;; +;Hôtel le Sherpa;;;;;;LEGELEUX;FRSIGPSIGE25612;FR*SOD*S*LYON*110*3*_*_;CANNES PARKING NEGRIN;;PLACE SORHAINDE BORNE 2;56215;[7.077683, 43.571644];;FRSIGESIGE20911;FR*SOD*E*MB47*41*1*2*_;;;;;;;;;;;;;;;;;;;7267004234280;2017-06-16;;;;;;;;7.056048;43.639103;13530;Brando;; +;Hôtel le Panorama;;;;;;eurorepar;FRSIGPSIGE25712;FR*SOD*S*LYON*108*4*_*_;LE ROURET PARKING MAIRIE;;PLACE SORHAINDE;56241;[7.072232, 43.564846];;FRSIGESIGE20312;FR*SOD*E*MB47*39*1*1*_;;;;;;;;;;;;;;;;;;;7131837840034;2017-02-21;;;;;;;;7.120687;43.656872;63400;Bonifacio;; +;Hôtel du Grand Pavois;;;;;;CHATEAU RIPEAU;FRSIGPSIGE25711;FR*SOD*S*LYON*108*2*_*_;CHATEAUNEUF-GRASSE PARKING PLACE DES PINS;;RUE LOUIS BIDAU;56260;[7.056048, 43.57943];;FRSIGESIGE20411;FR*SOD*E*MB47*39*1*2*_;;;;;;;;;;;;;;;;;;;7293198156331;2017-10-12;;;;;;;;7.139475;43.657753;63119;Biguglia;; +;Hôtel l'Hotan;;;;;;LUMI'IN;FRSIGPSIGE25911;FR*SOD*S*LYON*108*3*_*_;GOURDON VILLAGE - PARKING DE LA FERRAGE;;PLACE DES SPORTS;56089;[7.120687, 43.658474];;FRSIGESIGE20412;FR*SOD*E*MB47*40*1*1*_;;;;;;;;;;;;;;;;;;;7272937664025;2018-08-22;;;;;;;;7.12692;43.639542;63320;Lucciana;; +;Hôtel du Parc;;;;;;Bricomarché - Villard de lans- SARALAM;FRSIGPSIGE27112;FR*SOD*S*LYON*109*3*_*_;CAILLE PARKING DE LA MOULIERE;;RUE LEKUEDER;56251;[7.139475, 43.637203];;FRSIGESIGE20512;FR*SOD*E*MB47*40*1*2*_;;;;;;;;;;;;;;;;;;;7223299458889;2018-04-27;;;;;;;;7.063297;43.632511;63000;Bastelica;; +;Hôtel du Parc Euromédecine;;;;;;Bricomarché - Villard de lans;FRSIGPSIGE26311;FR*SOD*S*LYON*109*2*_*_;ANDON LAC DE THORENC;;QUAI DE LA FLORIDE;56243;[7.12692, 43.656189];;FRSIGESIGE20511;FR*SOD*E*MB47*35*1*1*_;;;;;;;;;;;;;;;;;;;7268596130074;2017-11-29;;;;;;;;6.943561;43.605541;63140;Grosseto-Prugna;; +;Hôtel l'Eskemm;;;;;;RENAULT ARRAS;FRSIGPSIGE26312;FR*SOD*S*LYON*109*4*_*_;BAR SUR LOUP PARKING PLACE DE LA TOUR;;PARKING D645 MAIRIE;56244;[7.063297, 43.718616];;FRSIGESIGE20612;FR*SOD*E*MB47*36*1*1*_;;;;;;;;;;;;;;;;;;;7234153292646;2018-07-01;;;;;;;;6.728566;43.583973;63830;Serra-di-Ferro;; +;Hôtel du Golf de l'Ailette;;;;;;SA GLASTINT;FRSIGPSIGE26512;FR*SOD*S*LYON*109*1*_*_;BOUYON PARKING VILLAGE;;PLACE HARANA;56247;[6.943561, 43.796143];;FRSIGESIGE20611;FR*SOD*E*MB47*33*1*2*_;;;;;;;;;;;;;;;;;;;7235311036133;2018-02-14;;;;;;;;6.911085;43.551323;63120;Belgodère;; +;Ibis Installation;;;;;;AUTOS SELECTION - Mazda Laval;FRSIGPSIGE26511;FR*SOD*S*LYON*164*2*_*_;SERANON PARKING PLACE JOSEPH REBUFFEL;;PARKING DU FRONTON;56248;[6.728566, 43.846939];;FRSIGESIGE20711;FR*SOD*E*MB47*35*1*2*_;;;;;;;;;;;;;;;;;;;7190303830722;2018-06-20;;;;;;;;6.927089;43.549686;63620;Calacuccia;; +;Icade - Fresnes;;;;;;AUTO AVENIR RELAIS - CHÂTEAU THIERRY - VW;FRSIGPSIGE26611;FR*SOD*S*LYON*169*2*_*_;MOUGINS PARKING PISCINE DES CAMPELIERES;;PARKING SALLE POLYVALENTE;56254;[6.911085, 43.639103];;FRSIGESIGE20712;FR*SOD*E*MB47*34*1*1*_;;;;;;;;;;;;;;;;;;;7206512194083;2019-07-27;;;;;;;;6.920752;43.667213;63460;San-Gavino-di-Carbini;; +;Ibis Budget;;;;;;BM92;FRSIGPSIGE26612;FR*SOD*S*LYON*132*2*_*_;GRASSE PARKING GIRATOIRE DU MOULIN DE BRUN;;SQUARE EDOUARD HERRIOT;56197;[6.927089, 43.656872];;FRSIGESIGE20811;FR*SOD*E*MB47*34*1*2*_;;;;;;;;;;;;;;;;;;;7136902963076;2017-05-19;;;;;;;;6.912976;43.562817;63420;Cozzano;; +;IMMODEX;;;;;;CSE-Central BDF;FRSIGPSIGE26711;FR*SOD*S*LYON*134*2*_*_;GRASSE PARKING GARE SNCF;;RD817 PLACE DE LA MAIRIE;56255;[6.920752, 43.657753];;FRSIGESIGE20812;FR*SOD*E*MB47*33*1*1*_;;;;;;;;;;;;;;;;;;;7129956508680;2016-10-23;;;;;;;;6.952294;43.575954;63122;Piana;; +;ISOTECH;;;;;;Station Mattieu et Pauline;FRSIGPSIGE26712;FR*SOD*S*LYON*134*1*_*_;ROQUEFORT - PARKING INTERMARCHE;;CHEMIN DE LIBEN;84056;[6.912976, 43.639542];;FRSIGESIGE20912;FR*SOD*E*MB47*32*1*1*_;;;;;;;;;;;;;;;;;;;7260926086614;2018-03-23;;;;;;;;7.076204;43.568874;63510;Vico;; +;ISAGRI;;;;;;SAS HOTEL BORDEAUX FLOIRAC;FRSIGPSIGE26911;FR*SOD*S*LYON*133*1*_*_;ROQUEFORT - PARKING CENTRE VILLAGE;;RUE PASTEUR RENNES;59107;[6.952294, 43.632511];;FRSIGESIGE21011;FR*SOD*E*MB47*32*1*2*_;;;;;;;;;;;;;;;;;;;7172358823622;2017-05-31;;;;;;;;7.123361;43.594131;63970;Galéria;; +;Hôtel Novotel Megève Mont-Blanc;;;;;;LMS Informatique;FRSIGPSIGE26912;FR*SOD*S*LYON*133*2*_*_;VALLAURIS PARKING LOUCE;;PARKING ANNEXE DE LA MAIRIE;62331;[7.076204, 43.605541];;FRSIGESIGE20211;FR*SOD*E*MB47*31*1*2*_;;;;;;;;;;;;;;;;;;;7252966607871;2017-11-10;;;;;;;;7.008748;43.580116;63110;Propriano;; +;Hôtel Magic;;;;;;SCI CAP IMMO;FRSIGPSIGE27011;FR*SOD*S*LYON*132*1*_*_;VALLAURIS PARKING ALLINEI;;PARKING DU CASINO;59447;[7.123361, 43.583973];;FRSIGESIGE21012;FR*SOD*E*MB47*31*1*1*_;;;;;;;;;;;;;;;;;;;7260202497653;2021-06-13;;;;;;;;7.006912;43.5569;63610;Ghisoni;; +;Hôtel Mercure - Arc 1800;;;;;;Royal Champagne Hotel & Spa;FRSIGPSIGE27012;FR*SOD*S*LYON*131*1*_*_;VALLAURIS PARKING PLAGE;;PLACE PRINCIPALE;14228;[7.008748, 43.551323];;FRSIGESIGE21112;FR*SOD*E*MB47*30*1*2*_;;;;;;;;;;;;;;;;;;;50005294538388;2021-07-10;;;;;;;;6.985467;43.637276;63500;Calenzana;; +;Hôtel Mercure Beaune Centre;;;;;;Hotel Ibis Styles Toulouse Blagnac Aéroport;FRSIGPSIGE28711;FR*SOD*S*LYON*131*2*_*_;VALLAURIS PARKING MAIRIE;;RUE JEAN URRUTY;26198;[7.006912, 43.549686];;FRSIGESIGE21111;FR*SOD*E*MB47*30*1*1*_;;;;;;;;;;;;;;;;;;;7215339978917;2023-06-10;;;;;;;;7.005574;43.843212;63220;Saint-Florent;; +;Hôtel Mercure Charbonnières-les-Bains;;;;;;YAWAY Recharge;FRSIGPSIGE41911;FR*SOD*S*LYON*130*2*_*_;VILLENEUVE-LOUBET - PARKING GENERAL DE GAULLE;;PARKING JAI ALAI;38169;[6.985467, 43.667213];;FRSIGESIGE21211;FR*SOD*E*MB47*29*1*1*_;;;;;;;;;;;;;;;;;;;7292474566342;2021-08-01;;;;;;;;7.053818;43.728943;63250;Olmeta-di-Tuda;; +;Hôtel Les Mésanges;;;;;;Réseau de recharge DOMAINE DES BUFFLONNES;FRSIGPSIGE28912;FR*SOD*S*LYON*130*1*_*_;VILLENEUVE-LOUBET - PARKING FIGHIERES;;PLACE DE LA MUSIQUE;53097;[7.005574, 43.562817];;FRSIGESIGE21212;FR*SOD*E*MB47*42*1*1*_;;;;;;;;;;;;;;;;;;;7285093959399;2021-01-24;;;;;;;;7.10996;43.534256;63230;Morosaglia;; +;Hôtel Les 3 Roses;;;;;;CIGIMMO;FRSIGPSIGE31011;FR*SOD*S*LYON*135*1*_*_;VILLENEUVE-LOUBET - PARKING MEDIATHEQUE;;PARKING ERRETEGIA N;73226;[7.053818, 43.575954];;FRSIGESIGE21312;FR*SOD*E*MB47*41*1*1*_;;;;;;;;;;;;;;;;;;;7299710457112;2022-02-20;;;;;;;;6.92641;43.547829;63118;Centuri;; +;Hôtel Les Playes;;;;;;FENBAT;FRSIGPSIGE30412;FR*SOD*S*LYON*140*1*_*_;TOURRETTES-SUR-LOUP - PARKING DE LA MADELEINE;;RUE THOMAS EDISON;09225;[7.10996, 43.568874];;FRSIGESIGE21311;FR*SOD*E*MB47*56*1*2*_;;;;;;;;;;;;;;;;;;;7286251701987;2021-08-17;;;;;;;;7.120677;43.647991;63670;Corte;; +;Hôtel Les Tuileries;;;;;;AUTO AVENIR RELAIS - MAGENTA - VW;FRSIGPSIGE30512;FR*SOD*S*LYON*143*1*_*_;GREOLIERES PARKING FAISSE;;CHEMIN BAHUNENIA;51569;[6.92641, 43.594131];;FRSIGESIGE21412;FR*SOD*E*MB47*42*1*2*_;;;;;;;;;;;;;;;;;;;7218668489208;2023-03-05;;;;;;;;7.01392;43.54903;63112;Calvi;; +;Hôtel Lou Granva;;;;;;JONNARD LES ISSAMBRES;FRSIGPSIGE30511;FR*SOD*S*LYON*142*1*_*_;SAINT-AUBAN PARKING RELAIS DE SERVICES PUBLICS;;PLACE DU MARCHE;74103;[7.120677, 43.580116];;FRSIGESIGE21411;FR*SOD*E*MB47*49*1*1*_;;;;;;;;;;;;;;;;;;;7116063599636;2020-08-28;;;;;;;;6.932813;43.629398;63340;Porto-Vecchio;; +;Hôtel Privilège Eurociel;;;;;;SKYMAT;FRSIGPSIGE30612;FR*SOD*S*LYON*141*1*_*_;GRASSE PARKING LA CHESNAIE;;PARKING OSASUNA;35051;[7.01392, 43.5569];;FRSIGESIGE21511;FR*SOD*E*MB47*55*1*2*_;;;;;;;;;;;;;;;;;;;7203473120009;2021-03-01;;;;;;;;6.858089;43.64222;63570;Peri;; +;Hôtel de la Jamagne;;;;;;KIA DENNEY AUTOMOBILES;FRSIGPSIGE30611;FR*SOD*S*LYON*139*1*_*_;GRASSE PARKING SALLE OMNISPORTS;;PARKING DABBADIE;34175;[6.932813, 43.637276];;FRSIGESIGE21512;FR*SOD*E*MB47*54*1*2*_;;;;;;;;;;;;;;;;;;;7281186578797;2022-05-15;;;;;;;;6.793374;43.656429;63660;Sartène;; +;Hôtel des Rives de la Fecht;;;;;;PHARMACIE DE HUNDLING;FRSIGPSIGE30711;FR*SOD*S*LYON*138*1*_*_;GRASSE PARKING RUE DE LANCIEN PALAIS DE JUSTICE;;PARKING ZÉNITH 1;84043;[6.858089, 43.843212];;FRSIGESIGE21612;FR*SOD*E*MB47*54*1*1*_;;;;;;;;;;;;;;;;;;;7234876881697;2022-09-24;;;;;;;;6.945192;43.607716;63390;Évisa;; +;Hôtel du Castellet;;;;;;GARAGE DE BRETAGNE - MAZDA ALENÇON;FRSIGPSIGE30722;FR*SOD*S*LYON*137*1*_*_;GRASSE PARKING PLACE FREDERIC MISTRAL;;AVENUE NITOT;08105;[6.793374, 43.728943];;FRSIGESIGE20311;FR*SOD*E*MB47*53*1*1*_;;;;;;;;;;;;;;;;;;;7453400767675;2022-10-01;;;;;;;;6.941274;43.61813;63820;Zonza;; +;Hôtel du Château Dinan;;;;;;KIEHL France;FRSIGPSIGE30712;FR*SOD*S*LYON*136*1*_*_;GRASSE STADE DE LA PAOUTE;;RUE DES PYRENEES;74281;[6.945192, 43.534256];;FRSIGESIGE20212;FR*SOD*E*MB47*53*1*2*_;;;;;;;;;;;;;;;;;;;7117076624469;2023-12-21;;;;;;;;6.856857;43.550552;63530;Rogliano;; +;Hôtel de la Couronne;;;;;;PMD AUTOMOBILES;FRSIGPSIGE30721;FR*SOD*S*LYON*129*2*_*_;ANTIBES AZUR ARENA;;PARKING POCHE A EAU;81144;[6.941274, 43.547829];;FRSIGESIGE19412;FR*SOD*E*MB47*52*1*2*_;;;;;;;;;;;;;;;;;;;7125036102430;2022-07-31;;;;;;;;7.030538;43.580189;63490;Vivario;; +;Hôtel Vialatte;;;;;;Super U - Saint Barthelemy d'Anjou;FRSIGPSIGE30811;FR*SOD*S*LYON*122*1*_*_;ANTIBES PARKING ST ROCH;;PLACE BROSSERS;03262;[6.856857, 43.647991];;FRSIGESIGE19961;FR*SOD*E*MB47*52*1*1*_;;;;;;;;;;;;;;;;;;;7114471703073;2022-10-08;;;;;;;;6.842196;43.640907;63270;Borgo;; +;Hôtel Saint James;;;;;;Hostellerie aux deux cléfs;FRSIGPSIGE30912;FR*SOD*S*LYON*124*2*_*_;CANNES PARKING ST DIZIER;;PLACE G. CLEMENCEAU;95218;[7.030538, 43.54903];;FRSIGESIGE19511;FR*SOD*E*MB47*51*1*2*_;;;;;;;;;;;;;;;;;;;7168885596793;2021-08-13;;;;;;;;6.958667;43.521552;63580;Ghisonaccia;; +;Hôtel Restaurant Logis Le Jardin Délice;;;;;;Mazda Macon - ACT AUTOMOBILES;FRSIGPSIGE30911;FR*SOD*S*LYON*124*1*_*_;CANNES SQUARE MISTRAL;;PARKING URDAZURI;56077;[6.842196, 43.629398];;FRSIGESIGE19512;FR*SOD*E*MB47*51*1*1*_;;;;;;;;;;;;;;;;;;;7167872571344;2021-01-01;;;;;;;;6.920399;43.590169;63690;Lecci;; +;Hôtel Restaurant Solenca;;;;;;Charge banarge;FRSIGPSIGE31012;FR*SOD*S*LYON*123*2*_*_;OPIO PARKING CENTRE COMMERCIAL FONT NEUVE;;AVENUE DE PAU;83004;[6.958667, 43.64222];;FRSIGESIGE19611;FR*SOD*E*MB47*50*1*1*_;;;;;;;;;;;;;;;;;;;7129377637463;2022-07-10;;;;;;;;6.913658;43.543026;63300;Belvédère-Campomoro;; +;Hôtel Verte Vallée;;;;;;Charge parking;FRSIGPSIGE30311;FR*SOD*S*LYON*123*1*_*_;CANNES PARKING BROUSAILLES HOPITAL;;PARKING ZÉNITH 2;12305;[6.920399, 43.656429];;FRSIGESIGE37541;FR*SOD*E*MB47*50*1*2*_;;;;;;;;;;;;;;;;;;;7115484728636;2022-01-09;;;;;;;;7.074646;43.548501;63790;L'Île-Rousse;; +;Grands Moulins Auto garage du centre - Rupt Sur Moselle;;;;;;Mazda ROANNE;FRSIGPSIGE31111;FR*SOD*S*LYON*122*2*_*_;VALLAURIS PARKING STADE;;PARKING DES PYRÉNÉES;59368;[6.913658, 43.607716];;FRSIGESIGE19712;FR*SOD*E*MB47*49*1*2*_;;;;;;;;;;;;;;;;;;;7118234366809;2021-10-31;;;;;;;;7.002274;43.553686;63240;Venaco;; +;Greenspot - Notre D. des Anges;;;;;;ChargePoint;FRSIGPSIGE31112;FR*SOD*S*LYON*125*1*_*_;ANTIBES PARKING MAUPASSANT;;ROUTE DE MAUCOR;63124;[7.074646, 43.61813];;FRSIGESIGE19711;FR*SOD*E*MB47*43*1*1*_;;;;;;;;;;;;;;;;;;;7543270525086;2023-02-25;;;;;;;;6.947942;43.589299;63114;Sainte-Lucie-de-Tallano;; +;Groupe Etoile de l'Ouest;;;;;;Mercedes Benz - Cluses EMB74;FRSIGPSIGE31212;FR*SOD*S*LYON*121*2*_*_;PEGOMAS PARKING PARCHOIS;;RUE DU STADE;03233;[7.002274, 43.550552];;FRSIGESIGE19841;FR*SOD*E*MB47*48*1*2*_;;;;;;;;;;;;;;;;;;;7564833476105;2020-06-21;;;;;;;;6.936605;43.655693;63870;Poggio-Mezzana;; +;Groupe Guyot - Public;;;;;;LITTORAL VENDEE AUTOMOBILES - MAZDA LA ROCHE SUR YON;FRSIGPSIGE31211;FR*SOD*S*LYON*121*1*_*_;ANTIBES PLACE GENERAL DE GAULLE;;ZONE PRINCIPALE;62038;[6.947942, 43.580189];;FRSIGESIGE19811;FR*SOD*E*MB47*48*1*1*_;;;;;;;;;;;;;;;;;;;7583502073418;2020-07-28;;;;;;;;6.939465;43.575086;63370;Serriera;; +;Groupe Lombardot;;;;;;MAZDA VERDUN -JM AUTOMOBILES;FRSIGPSIGE31311;FR*SOD*S*LYON*125*4*_*_;CANNES PARKING SAINT LOUIS;;RUE LAVOISIER CENTRE KENNEDY;63113;[6.936605, 43.640907];;FRSIGESIGE19821;FR*SOD*E*MB47*47*1*2*_;;;;;;;;;;;;;;;;;;;7564544041520;2017-05-04;;;;;;;;7.003423;43.567243;63680;Salice;; +;Grands Moulins Auto Garage du centre - Le thillot;;;;;;Mazda THIONVILLE - AZUR MOTORS;FRSIGPSIGE31312;FR*SOD*S*LYON*129*1*_*_;GRASSE STADE PERDIGON;;RUE PHILIPPE HÉRON;17219;[6.939465, 43.521552];;FRSIGESIGE19831;FR*SOD*E*MB47*47*1*1*_;;;;;;;;;;;;;;;;;;;7112156219189;2018-11-26;;;;;;;;7.038457;43.595834;63130;Ota;; +;Grand Dole;;;;;;Kia Yffiniac - AUTO DESIGN;FRSIGPSIGE31412;FR*SOD*S*LYON*127*1*_*_;LE MAS PARKING COUVERT;;MONTÉE DU CHÂTEAU;59183;[7.003423, 43.590169];;FRSIGESIGE19931;FR*SOD*E*MB47*46*1*2*_;;;;;;;;;;;;;;;;;;;7125325539031;2020-07-13;;;;;;;;7.032011;43.628653;63190;Pino;; +;Grand Prix Hôtel;;;;;;Intermarché - Courtisols;FRSIGPSIGE31411;FR*SOD*S*LYON*128*3*_*_;ESCRAGNOLLES PARKING SALLE DES FETES;;94D124 - COTEAU DE TUPIN;62045;[7.038457, 43.543026];;FRSIGESIGE19941;FR*SOD*E*MB47*46*1*1*_;;;;;;;;;;;;;;;;;;;7115629446404;2020-08-26;;;;;;;;7.025539;43.570099;63650;Carbini;; +;Grands Garages de l'Hérault;;;;;;MAZDA MAREIL MARLY - TECHNIC AUTO SERVICES;FRSIGPSIGE31512;FR*SOD*S*LYON*128*2*_*_;MANDELIEU-LA NAPOULE - PARKING ROBINSON THEATRE DE VERDURE;;AVENUE DU DAUPHINÉ;2B207;[7.032011, 43.548501];;FRSIGESIGE19951;FR*SOD*E*MB47*45*1*1*_;;;;;;;;;;;;;;;;;;;7172648259230;2019-07-17;;;;;;;;7.118111;43.628931;63210;Guagno;; +;Grands Moulins Auto - Saint Etienne Les Remiremont;;;;;;Mazda - Bourges;FRSIGPSIGE31511;FR*SOD*S*LYON*128*4*_*_;MANDELIEU-LA NAPOULE - PARKING BEGUIER;;PARKING GYMNASE;2B043;[7.025539, 43.553686];;FRSIGESIGE20121;FR*SOD*E*MB47*45*1*2*_;;;;;;;;;;;;;;;;;;;7172214106361;2019-08-26;;;;;;;;6.922162;43.62566;63540;Linguizzetta;; +;Groupe Mary Automobile Barentin public;;;;;;Mazda HAGUENAU -GARAGE DU MOULIN;FRSIGPSIGE31612;FR*SOD*S*LYON*128*1*_*_;SPERACEDES - PARKING MAIRIE;;LES PONTS TARRETS;2A041;[7.118111, 43.589299];;FRSIGESIGE19911;FR*SOD*E*MB47*44*1*1*_;;;;;;;;;;;;;;;;;;;7194211211905;2019-07-22;;;;;;;;7.021575;43.568851;63290;Loreto-di-Casinca;; +;Groupe Mary Automobile Le Havre public;;;;;;Modulo;FRSIGPSIGE28911;FR*SOD*S*LYON*127*4*_*_;CANNES PARKING LATOUR MAUBOURG;;RUE DES JARDINIERS;2B037;[6.922162, 43.655693];;FRSIGESIGE19921;FR*SOD*E*MB47*44*1*2*_;;;;;;;;;;;;;;;;;;;7155571559000;2019-07-08;;;;;;;;6.948066;43.487486;63430;Luri;; +;Groupe Mary Automobile Rouen public;;;;;;Peugeot NOMBLOT;FRSIGPSIGE30411;FR*SOD*S*LYON*125*3*_*_;LE TIGNET PARKING MAIRIE;;RUE DU BEAUJOLAIS;2B148;[7.021575, 43.575086];;FRSIGESIGE20031;FR*SOD*E*MB47*43*1*2*_;;;;;;;;;;;;;;;;;;;7194066494111;2019-03-02;;;;;;;;7.091817;43.653981;39500;Olmeto;; +;Groupe Michel - Angoulême public;;;;;;NOMBLOT VILLEFRANCHE;FRSIGPSIGE30812;FR*SOD*S*LYON*127*2*_*_;GRASSE PARKING PLACE STE HELENE;;PLACE DE LA DIME;2A031;[6.948066, 43.567243];;FRSIGESIGE20011;FR*SOD*E*MB47*29*1*2*_;;;;;;;;;;;;;;;;;;;7154992687854;2019-08-28;;;;;;;;7.096315;43.70119;59280;San-Martino-di-Lota;; +;Grand Besançon;;;;;;Toyota GAP- AUTO DAUPHINE;FRSIGPSIGE30312;FR*SOD*S*LYON*127*3*_*_;GRASSE PARKING PLACE DU COURS HONORE CRESP;;PLACE DE LEGLISE - LE BOURG;2A130;[7.091817, 43.595834];;FRSIGESIGE20041;FR*SOD*E*MB47*15*1*1*_;;;;;;;;;;;;;;;;;;;7158465915016;2019-07-11;;;;;;;;7.005276;43.5515;67510;Monte;; +;Golf Hotel de la Carte;;;;;;KIA Chalon sur Saone - ZENITH MOTORS;FRSIGPSIGE29611;FR*SOD*S*LYON*126*2*_*_;AURIBEAU-SUR-SIAGNE PARKING DU BAYLE;;RUE DU BLASON;2A276;[7.096315, 43.628653];;FRSIGESIGE20051;FR*SOD*E*MB47*28*1*1*_;;;;;;;;;;;;;;;;;;;7149927565169;2019-07-24;;;;;;;;7.133592;43.573163;59960;Monticello;; +;Gescor;;;;;;RME Loos (FR-FR1);FRSIGPSIGE29012;FR*SOD*S*LYON*126*4*_*_;BIOT PARKING ST PHILIPPE;;ALLÉE DU CLOS DU CENTRE;2A269;[7.005276, 43.570099];;FRSIGESIGE20021;FR*SOD*E*MB47*14*1*1*_;;;;;;;;;;;;;;;;;;;7122865336265;2019-08-30;;;;;;;;7.054662;43.549382;59710;San-Nicolao;; +;Gite au Dolmen de Kerhus;;;;;;CHATEAU DE RONZIERE;FRSIGPSIGE30212;FR*SOD*S*LYON*126*1*_*_;CANNES PARKING PICAUD;;RUE DIRLANDE;2B034;[7.133592, 43.628931];;FRSIGESIGE20131;FR*SOD*E*MB47*13*1*2*_;;;;;;;;;;;;;;;;;;;7192185161899;2019-09-06;;;;;;;;6.984026;43.651211;57320;Santa-Lucia-di-Moriani;; +;Gite les hauts de Toulvern;;;;;;Armstrong France;FRSIGPSIGE29111;FR*SOD*S*LYON*126*3*_*_;LA ROQUETTE SUR SIAGNE PARKING ST JEAN;;RUE DES TOURRIÈRES;2B047;[7.054662, 43.62566];;FRSIGESIGE20161;FR*SOD*E*MB47*12*1*2*_;;;;;;;;;;;;;;;;;;;7336902945513;2020-05-25;;;;;;;;6.944397;43.607211;37800;Sisco;; +;Gites 3 Sapins;;;;;;Mairie Vaudreuille;FRSIGPSIGE29112;FR*SOD*S*LYON*125*2*_*_;GRASSE PARKING ALAMBIC;;LA FERME DU PROST;2A300;[6.984026, 43.568851];;FRSIGESIGE20151;FR*SOD*E*MB47*12*1*1*_;;;;;;;;;;;;;;;;;;;7357887026789;2021-07-03;;;;;;;;6.927584;43.643076;59278;Furiani;; +;Givenchy-en-Gohelle;;;;;;Ligue Occitanie Basketball;FRSIGPSIGE29211;FR*SOD*S*LYON*144*1*_*_;MANDELIEU-LA NAPOULE - PARKING BALCONS DAZUR;;3 PLACE DE LA TARDIVIÈRE;2A099;[6.944397, 43.487486];;FRSIGESIGE20141;FR*SOD*E*MB47*11*1*2*_;;;;;;;;;;;;;;;;;;;7372648242370;2019-04-16;;;;;;;;7.121963;43.624772;62410;Wingen-sur-Moder;; +;Golf Country Club de Bigorre;;;;;;résidence Dolce Vita;FRSIGPSIGE29212;FR*SOD*S*LYON*144*2*_*_;MOUGINS - PARKING DES OISEAUX;;FACE AU 1, D37;2A212;[6.927584, 43.653981];;FRSIGESIGE20111;FR*SOD*E*MB47*11*1*1*_;;;;;;;;;;;;;;;;;;;7362373277834;2020-09-19;;;;;;;;6.959911;43.64505;22550;Les Gonds;; +;Golf Hôtel Levernois;;;;;;Camping la Belle Etoile;FRSIGPSIGE29311;FR*SOD*S*LYON*161*2*_*_;CANNES PARKING LERINS;;9 RUE DES VARENNES;2A348;[7.121963, 43.70119];;FRSIGESIGE21611;FR*SOD*E*MB47*10*1*1*_;;;;;;;;;;;;;;;;;;;7387698893491;2020-11-11;;;;;;;;7.125101;43.592361;59279;Alès;; +;Golf Hôtel Saint Samson;;;;;;LA PRAIRIE;FRSIGPSIGE29312;FR*SOD*S*LYON*163*1*_*_;CANNES PARKING VAUTRIN;;PARKING OFFICE DU TOURISME;2B121;[6.959911, 43.5515];;FRSIGESIGE21712;FR*SOD*E*MB47*10*1*2*_;;;;;;;;;;;;;;;;;;;7317366042429;2021-03-22;;;;;;;;7.000926;43.888893;42530;Boisset-et-Gaujac;; +;Gougeon Fournitures;;;;;;KIA SENS;FRSIGPSIGE29411;FR*SOD*S*LYON*162*3*_*_;CANNES PARKING LORRAINE;;AVENUE JOSEPH BALLOFFET;2A249;[7.125101, 43.573163];;FRSIGESIGE21711;FR*SOD*E*MB47*9*1*1*_;;;;;;;;;;;;;;;;;;;7338205405731;2013-02-01;;;;;;;;6.92296;43.640324;42700;Monoblet;; +;Golf du Médoc Resort;;;;;;Mazda - Colmar;FRSIGPSIGE29412;FR*SOD*S*LYON*162*1*_*_;ANTIBES PARKING JULES GREC;;RUE CHASSET;2B124;[7.000926, 43.549382];;FRSIGESIGE24112;FR*SOD*E*MB47*9*1*2*_;;;;;;;;;;;;;;;;;;;7339218430546;2020-04-30;;;;;;;;6.955042;43.621956;42500;Lunel;; +;Golf de Saint-Sylvain d'Anjou;;;;;;Toyota - Metz;FRSIGPSIGE29511;FR*SOD*S*LYON*162*2*_*_;GRASSE PARKING AVENUE CARNOT;;RUE LÉON WEBER;2B049;[6.92296, 43.651211];;FRSIGESIGE23412;FR*SOD*E*MB47*8*1*2*_;;;;;;;;;;;;;;;;;;;7370622193009;2016-08-19;;;;;;;;6.97701;43.642086;42400;La Seyne-sur-Mer;; +;Golf du Pays de Sarrebourg;;;;;;FORD LORIENT;FRSIGPSIGE29512;FR*SOD*S*LYON*162*4*_*_;LE CANNET PARKING VAL DAZUR;;RUE BOIRON;2B298;[6.955042, 43.607211];;FRSIGESIGE23612;FR*SOD*E*MB47*8*1*1*_;;;;;;;;;;;;;;;;;;;7320694552131;2017-06-19;;;;;;;;7.030741;43.624069;42270;Avranches;; +;Gorille Cycles;;;;;;SNS SOLUTIONS MARSEILLE;FRSIGPSIGE29011;FR*SOD*S*LYON*161*4*_*_;MANDELIEU-LA NAPOULE - PARKING MERMOZ 2;;LORÉE DU BOIS;2B188;[6.97701, 43.643076];;FRSIGESIGE23611;FR*SOD*E*MB47*7*1*2*_;;;;;;;;;;;;;;;;;;;7361070818113;2017-03-28;;;;;;;;6.892531;43.686066;42160;Saint-Julien-l'Ars;; +;Hotel Ibis Epinay-sur-Seine;;;;;;AJACCIO NORD AUTOMOBILES - MAZDA AJACCIO;FRSIGPSIGE29612;FR*SOD*S*LYON*161*1*_*_;MANDELIEU-LA NAPOULE - PARKING MERMOZ 1;;RUE DE LA VOUTE;2B169;[7.030741, 43.624772];;FRSIGESIGE23711;FR*SOD*E*MB47*7*1*1*_;;;;;;;;;;;;;;;;;;;7348914523056;2017-03-29;;;;;;;;6.929529;43.685253;42650;Croutelle;; +;Hess Automobile - Volvo Metz;;;;;;MAZDA PERIGUEUX;FRSIGPSIGE29912;FR*SOD*S*LYON*161*3*_*_;PARKING MARTYRS DE LA RESISTANCE;;AVENUE SAINT EXUPÉRY;2B086;[6.892531, 43.64505];;FRSIGESIGE23712;FR*SOD*E*MB47*6*1*1*_;;;;;;;;;;;;;;;;;;;7320405116215;2017-04-07;;;;;;;;6.863265;43.627628;42390;Colombelles;; +;Heude Bâtiment;;;;;;Freshmile;FRSIGPSIGE29721;FR*SOD*S*LYON*163*3*_*_;BIOT PARKING BACHETTE;;ROUTE DE PONT DE CHÉRUY;2B096;[6.929529, 43.592361];;FRSIGESIGE23811;FR*SOD*E*MB47*6*1*2*_;;;;;;;;;;;;;;;;;;;7338060687955;2016-08-08;;;;;;;;6.875867;43.578243;42560;Ghyvelde;; +;Holtzinger Phalsbourg;;;;;;Toyota - Besançon;FRSIGPSIGE30111;FR*SOD*S*LYON*160*1*_*_;LE CANNET - PARKING ROCHEVILLE;;PARKING COVOITURAGE - SORTIE AUTOROUTE;2B050;[6.863265, 43.888893];;FRSIGESIGE23812;FR*SOD*E*MB47*5*1*1*_;;;;;;;;;;;;;;;;;;;7480173560872;2015-09-17;;;;;;;;7.007235;43.600079;17440;Narbonne;; +;Hombourg-Haut;;;;;;Toyota - Forbach;FRSIGPSIGE30112;FR*SOD*S*LYON*159*1*_*_;VILLENEUVE-LOUBET - PARKING GARE;;PARKING RD 338;2A247;[6.875867, 43.655693];;FRSIGESIGE23912;FR*SOD*E*MB47*5*1*2*_;;;;;;;;;;;;;;;;;;;7450506411570;2016-05-22;;;;;;;;7.039275;43.61684;62219;Benet;; +;Hostellerie de l'Etoile;;;;;;Toyota - Forbach - 22kW AC;FRSIGPSIGE30011;FR*SOD*S*LYON*158*1*_*_;VALBONNE - PARKING NAUTIPOLIS;;PARKING DU RY;2A209;[7.007235, 43.640324];;FRSIGESIGE23911;FR*SOD*E*MB47*4*1*2*_;;;;;;;;;;;;;;;;;;;7329956491363;2016-06-05;;;;;;;;7.007241;43.620224;94460;Le Châtelet-en-Brie;; +;Helioparc 68;;;;;;Toyota - Reims;FRSIGPSIGE30012;FR*SOD*S*LYON*158*2*_*_;LE CANNET - PARKING PALESTRE;;ROUTE DE BEAUCAIRE;2A272;[7.039275, 43.621956];;FRSIGESIGE24011;FR*SOD*E*MB47*4*1*1*_;;;;;;;;;;;;;;;;;;;7349348676501;2016-05-03;;;;;;;;7.045228;43.639107;73290;La Brosse-Montceaux;; +;Help Dépannage;;;;;;MEDIODENT;FRSIGPSIGE29911;FR*SOD*S*LYON*163*2*_*_;THEOULE-SUR-MER PARKING VERT BISSON;;ROUTE DU DAUPHINÉ;2A108;[7.007241, 43.642086];;FRSIGESIGE24012;FR*SOD*E*MB47*3*1*2*_;;;;;;;;;;;;;;;;;;;7408682967482;2016-03-03;;;;;;;;7.106864;43.620566;77700;La Ferté-Gaucher;; +;Helpconfort Pau;;;;;;IBIS HOTEL LA TERRAS;FRSIGPSIGE29812;FR*SOD*S*LYON*163*4*_*_;GRASSE - PARKING P+R GARE DE GRASSE;;RUE DE LINDUSTRIE;2A362;[7.045228, 43.624069];;FRSIGESIGE24111;FR*SOD*E*MB47*3*1*1*_;;;;;;;;;;;;;;;;;;;7432995558049;2016-12-23;;;;;;;;7.099003;43.550246;42140;Les Écrennes;; +;Hostellerie du Vallon;;;;;;LABEL DENT;FRSIGPSIGE29811;FR*SOD*S*LYON*167*1*_*_;ST PAUL DE VENCE - PARKING VILLAGE;;AVENUE DU SOUVENIR;2B261;[7.106864, 43.686066];;FRSIGESIGE24212;FR*SOD*E*MB47*2*1*2*_;;;;;;;;;;;;;;;;;;;7387843611290;2017-01-02;;;;;;;;7.094443;43.650307;35133;Larchant;; +;Hotel Mercure Belfort;;;;;;RENAULT BISCAROSSE;FRSIGPSIGE30211;FR*SOD*S*LYON*168*2*_*_;CANNES - PARKING BASTIDE ROUGE;;ROUTE DE LYON;2B354;[7.099003, 43.685253];;FRSIGESIGE21811;FR*SOD*E*MB47*2*1*1*_;;;;;;;;;;;;;;;;;;;7399276317463;2016-03-26;;;;;;;;7.120866;43.638214;03450;Le Mée-sur-Seine;; +;Hyundai Bergerac;;;;;;Automobile de l'Est;FRSIGPSIGE29722;FR*SOD*S*LYON*168*1*_*_;ANTIBES - PARKING PLAGE DU PONTEIL;;PLACE DES SARMENTS;2B042;[7.094443, 43.627628];;FRSIGESIGE24211;FR*SOD*E*MB47*1*1*1*_;;;;;;;;;;;;;;;;;;;7334298024453;2018-02-19;;;;;;;;7.12197;43.569118;42110;Le Mesnil-Amelot;; +;Hyundai Buchelay;;;;;;KIA TROYES - Groupe Amplitude;FRS47PMB473811;FR*SOD*S*LYON*167*2*_*_;CANNES PARKING LIEGEARD;;RUE DE LEGALITÉ;2B123;[7.120866, 43.578243];;FRSIGESIGE24312;FR*SOD*E*MB47*1*1*2*_;;;;;;;;;;;;;;;;;;;7359478922591;2016-05-26;;;;;;;;6.971394;43.575386;43120;Le Plessis-Feu-Aussoux;; +;Hyundai Caen;;;;;;Mazda - Etampes - 22kW AC;FRS47PMB473612;FR*SOD*S*LYON*166*1*_*_;GRASSE PARKING SQUARE DES DIABLES BLEUS;;CHEMIN DES MEULES;2A139;[7.12197, 43.600079];;FRSIGESIGE24311;FR*SOD*E*MB47*13*1*1*_;;;;;;;;;;;;;;;;;;;7299276303744;2015-09-14;;;;;;;;6.973192;43.566551;59810;La Houssaye-en-Brie;; +;Hyundai Chambourcy;;;;;;Mazda ETAMPES - GARAGE ST PIERRE;FRS47PMB473711;FR*SOD*S*LYON*164*3*_*_;MOUANS SARTOUX - PARKING ZI ARGILE;;RUE DE WETTOLSHEIM;2A035;[6.971394, 43.61684];;FRSIGESIGE24411;FR*SOD*E*MB47*14*1*2*_;;;;;;;;;;;;;;;;;;;7241533901613;2016-09-19;;;;;;;;6.875872;43.576397;42210;Iverny;; +;Hyundai Champniers Angouleme;;;;;;MAZDA AVIGNON;FRS47PMB473712;FR*SOD*S*LYON*165*3*_*_;GRASSE - PARKING PLASCASSIER;;CHEMIN DU PARC;2B134;[6.973192, 43.620224];;FRSIGESIGE24412;FR*SOD*E*MB47*28*1*2*_;;;;;;;;;;;;;;;;;;;7296526665587;2016-02-21;;;;;;;;6.932883;43.577129;29340;Guérard;; +;Hyundai Clermont-Ferrand;;;;;;SU gunderschoffen - SAS SODIHARDT;FRS47PMB473812;FR*SOD*S*LYON*165*4*_*_;ANTIBES - CASA GENETS - PUBLIC;;PARKING LA FLETTE;2B341;[6.875872, 43.639107];;FRSIGESIGE24512;FR*SOD*E*MB47*15*1*2*_;;;;;;;;;;;;;;;;;;;7294066463188;2015-09-11;;;;;;;;6.946316;43.569206;43200;Héricy;; +;Hyundai Cognac;;;;;;DOMAINE GUEGUEN;FRS47PMB474112;FR*SOD*S*LYON*165*1*_*_;PEYMEINADE - PARKING CO-VOITURAGE;;BOULEVARD DU PARC;2A308;[6.932883, 43.620566];;FRSIGESIGE24511;FR*SOD*E*MB47*27*1*2*_;;;;;;;;;;;;;;;;;;;7262662699376;2017-01-24;;;;;;;;6.793363;43.577526;17000;Hermé;; +;Hyundai Haguenau;;;;;;KIA Lons - EDEN AUTO;FRS47PMB473911;FR*SOD*S*LYON*165*2*_*_;PEGOMAS PARKING LOGIS;;RUE DES PETITS JARDINS;2B242;[6.946316, 43.550246];;FRSIGESIGE24611;FR*SOD*E*MB47*27*1*1*_;;;;;;;;;;;;;;;;;;;7393053452110;2015-12-02;;;;;;;;6.873651;43.547508;45570;Isles-lès-Villenoy;; +;Hyundai Bayeux;;;;;;Mazda ANNECY - MONT BLANC AUTOMOBILES;FRS47PMB473912;FR*SOD*S*LYON*164*4*_*_;COLLONGUES PLACE DU CHATEAU;;AVENUE JEAN MOULIN;2A279;[6.793363, 43.650307];;FRSIGESIGE24612;FR*SOD*E*MB47*26*1*2*_;;;;;;;;;;;;;;;;;;;7398408009953;2017-04-19;;;;;;;;6.993788;43.700356;85280;La Chapelle-Rablais;; +;Hotelière et Hebergement des portes d’Aquitaine;;;;;;centre médical Artzamendi;FRS47PMB474011;FR*SOD*S*LYON*164*1*_*_;CABRIS PARKING DE LA POSTE;;RUE DU TACOT;2A266;[6.873651, 43.638214];;FRSIGESIGE24811;FR*SOD*E*MB47*26*1*1*_;;;;;;;;;;;;;;;;;;;7219392078082;2016-10-24;;;;;;;;7.018548;50.665473;66300;Jaignes;; +;Hotel de Ville - Portet sur Garonne;;;;;;le colisee;FRS47PMB474012;FR*SOD*S*LYON*157*2*_*_;VALBONNE PARKING HOTEL DE VILLE;;AVENUE DE BRIANNE;2A198;[6.993788, 43.569118];;FRSIGESIGE24812;FR*SOD*E*MB47*25*1*2*_;;;;;;;;;;;;;;;;;;;7299565739556;2016-12-27;;;;;;;;6.968254;45.541127;63880;Jouarre;; +;Hotel l'Escale Marine;;;;;;bubble tree;FRS47PMB473511;FR*SOD*S*LYON*157*1*_*_;VALBONNE PLACE BERMOND;;FACE AU 50 ROUTE DE LUCENAY;2B233;[7.018548, 43.575386];;FRSIGESIGE24911;FR*SOD*E*MB47*25*1*1*_;;;;;;;;;;;;;;;;;;;7244283539846;2016-10-17;;;;;;;;7.006267;45.162929;63480;La Chapelle-la-Reine;; +;Hyundai Argenteuil;;;;;;SC PIOLET;FRS47PMB473611;FR*SOD*S*LYON*147*1*_*_;VALBONNE PARKING VALIS BONNA;;PARKING ROYBET-MINJAT;2A061;[6.968254, 43.566551];;FRSIGESIGE23411;FR*SOD*E*MB47*24*1*2*_;;;;;;;;;;;;;;;;;;;7253111325677;2018-05-14;;;;;;;;6.998012;45.291775;73100;Machault;; +;Hyundai Arles;;;;;;MAZDA CHAMBERY - MONT BLANC AUTOMOBILES;FRS47PMB473312;FR*SOD*S*LYON*150*1*_*_;VALBONNE PARKING GARBEJAIRE;;ROUTE DE NEUVILLE;2A131;[7.006267, 43.576397];;FRSIGESIGE23212;FR*SOD*E*MB47*24*1*1*_;;;;;;;;;;;;;;;;;;;7253400761170;2017-12-26;;;;;;;;7.01581;45.164994;45210;Montceaux-lès-Meaux;; +;Groupe Pandora - Public;;;;;;TOYOTA ANTHY SUR LEMAN - DEGENEVE;FRS47PMB473512;FR*SOD*S*LYON*149*1*_*_;LA COLLE-SUR-LOUP - PARKING STRAPUTICARI;;ROUTE DAZIEU;2B143;[6.998012, 43.577129];;FRSIGESIGE23211;FR*SOD*E*MB47*23*1*1*_;;;;;;;;;;;;;;;;;;;7386685868898;2016-09-16;;;;;;;;7.016371;45.164748;45190;Montcourt-Fromonville;; +;Groupe Noemys - Brive;;;;;;TOYOTA LEXUS NIMES - GARAGE VEYRUNES;FRS47PMB473411;FR*SOD*S*LYON*148*1*_*_;LA COLLE-SUR-LOUP - STADE DE FOOTBALL;;RUE DE TERNAY;2B145;[7.01581, 43.569206];;FRSIGESIGE23112;FR*SOD*E*MB47*23*1*2*_;;;;;;;;;;;;;;;;;;;7383212641627;2015-09-21;;;;;;;;6.979139;45.148654;42330;Montdauphin;; +;Groupe Noemys - Domaine de l'Esterel;;;;;;Kia Châlons - Groupe REY;FRS47PMB473412;FR*SOD*S*LYON*146*2*_*_;BIOT PARKING VILLAGE;;RUE DES PLATANES;2B152;[7.016371, 43.577526];;FRSIGESIGE21812;FR*SOD*E*MB47*22*1*1*_;;;;;;;;;;;;;;;;;;;7362228560009;2017-01-05;;;;;;;;6.847364;45.159655;38500;Montgé-en-Goële;; +;Groupe Noemys - Valence Nord;;;;;;ROADY SERVICE;FRS47PMB473311;FR*SOD*S*LYON*146*1*_*_;ANTIBES PARKING FOCH;;ROUTE DE GIVORS;2A189;[6.979139, 43.547508];;FRSIGESIGE22041;FR*SOD*E*MB47*22*1*2*_;;;;;;;;;;;;;;;;;;;7362662713467;2015-09-18;;;;;;;;3.111309;45.156801;42170;Monthyon;; +;Groupe O;;;;;;Mercedes Benz - EMB Léman Annemasse;FRS47PMB473211;FR*SOD*S*LYON*145*2*_*_;ANTIBES PARKING GARBERO;;CHEMIN DU JONAN;2B305;[6.847364, 43.700356];;FRSIGESIGE22021;FR*SOD*E*MB47*21*1*1*_;;;;;;;;;;;;;;;;;;;7359334204767;2016-04-26;;;;;;;;1.520462;45.17567;92200;Montigny-le-Guesdier;; +;Groupe Noemys - Abbaye de Ste Croix;;;;;;CLUB MED;FRS47PMB473212;FR*SOD*S*LYON*145*1*_*_;MOUANS SARTOUX PARKING DU PARC;;PARKING DU CENTRE 2000;2B166;[3.111309, 50.665473];;FRSIGESIGE22031;FR*SOD*E*MB47*21*1*2*_;;;;;;;;;;;;;;;;;;;7339363148396;2015-09-13;;;;;;;;1.534797;45.424296;93170;Montigny-Lencoup;; +;Groupe Michel - La Rochelle public;;;;;;SA TRANSPORTS FRANCONY;FRS47PMB473112;FR*SOD*S*LYON*151*1*_*_;MOUANS SARTOUX PARKING DE LA GARE;;ROUTE DE MARCILLY;2B168;[1.520462, 45.541127];;FRSIGESIGE22011;FR*SOD*E*MB47*20*1*1*_;;;;;;;;;;;;;;;;;;;7317800195882;2016-02-19;;;;;;;;1.950778;45.442994;93470;Mormant;; +;Groupe Michel - Saintes public;;;;;;GALILEO;FRS47PMB473111;FR*SOD*S*LYON*152*1*_*_;PEYMEINADE PARKING ST MARC;;AUTOROUTE A63;2B313;[1.534797, 45.162929];;FRSIGESIGE22051;FR*SOD*E*MB47*20*1*2*_;;;;;;;;;;;;;;;;;;;7393198169924;2016-10-30;;;;;;;;1.542987;45.426246;93390;Mortcerf;; +;Guyot, Renault Dijon;;;;;;MOULINS D'ASCQ;FRS47PMB473012;FR*SOD*S*LYON*156*2*_*_;GRASSE - PARKING HOPITAL;;AUTOROUTE A1;2B307;[1.950778, 45.291775];;FRSIGESIGE22412;FR*SOD*E*MB47*19*1*1*_;;;;;;;;;;;;;;;;;;;7359623640371;2015-09-08;;;;;;;;1.544331;45.264992;92340;Moussy-le-Neuf;; +;Guyot, Renault Dijon Automobile;;;;;;ACTIPOLE;FRS47PMB473011;FR*SOD*S*LYON*156*1*_*_;MANDELIEU-LA NAPOULE - ROND-POINT DE LA CANARDIERE;;AUTOROUTE A13;2B281;[1.542987, 45.164994];;FRSIGESIGE22411;FR*SOD*E*MB47*19*1*2*_;;;;;;;;;;;;;;;;;;;7349782829950;2017-05-09;;;;;;;;1.478655;45.0419;92290;Nandy;; +;HYUNDAI MILLAU;;;;;;Lac d’Annecy Camping;FRS47PMB472911;FR*SOD*S*LYON*155*1*_*_;SAINT-CEZAIRE-SUR-SIAGNE - PARKING CHEMIN DE LA CHAUX;;AUTOROUTE A89;2B120;[1.544331, 45.164748];;FRSIGESIGE22512;FR*SOD*E*MB47*18*1*2*_;;;;;;;;;;;;;;;;;;;7387409457898;2016-04-06;;;;;;;;1.533704;45.257628;92160;Neufmoutiers-en-Brie;; +;Hauts de Valmeinier;;;;;;MOBILIS;FRS47PMB474211;FR*SOD*S*LYON*155*2*_*_;PEYMEINADE PARKING COMPLEXE SPORTIF;;AUTOROUTE A85;67538;[1.478655, 45.148654];;FRSIGESIGE22511;FR*SOD*E*MB47*18*1*1*_;;;;;;;;;;;;;;;;;;;7309117127304;2017-12-15;;;;;;;;1.533348;45.367584;91260;Noisy-Rudignon;; +;Guyot, Autos Stations Bourgogne;;;;;;ETABLISSEMENT DES FILS DE J.MONNIER SAINT BERTHEVIN;FRS47PMB474111;FR*SOD*S*LYON*154*1*_*_;LE CANNET PARKING BUFFON;;PLACE PRADEAU DEBONNIERE;17179;[1.533704, 45.159655];;FRSIGESIGE22611;FR*SOD*E*MB47*17*1*1*_;;;;;;;;;;;;;;;;;;;07429232893515;2018-02-06;;;;;;;;1.670771;45.051969;93440;Noisy-sur-École;; +;Groupe Ridoret;;;;;;VINCI OPTEOR IMMOTIC;FRS47PMB475612;FR*SOD*S*LYON*154*2*_*_;LE CANNET PARKING RUE DES ORANGERS;;COURS TOURNY;30007;[1.533348, 45.156801];;FRSIGESIGE22612;FR*SOD*E*MB47*17*1*2*_;;;;;;;;;;;;;;;;;;;7124167795544;2017-01-16;;;;;;;;1.563502;45.10095;92120;Noyen-sur-Seine;; +;Gruchet-le-Valasse;;;;;;Mazda CHÂTEAU THIERRY;FRS47PMB474212;FR*SOD*S*LYON*153*1*_*_;LE CANNET PARKING MAIRIE ANNEXE LES PARADISIERS;;AVENUE DE SARLAT PARKING COMCOM;30042;[1.670771, 45.17567];;FRSIGESIGE22712;FR*SOD*E*MB47*16*1*2*_;;;;;;;;;;;;;;;;;;;7154413816670;2017-09-18;;;;;;;;1.570625;45.22832;93430;Orly-sur-Morin;; +;Guyot, Mitsubishi Dijon;;;;;;SAS CIGIMMO 4;FRS47PMB474911;FR*SOD*S*LYON*5*2*_*_;LE CANNET PARKING STADE JEANPIERRE;;PLACE DE LA POSTE, ESPACE JP TIMBAUT;30172;[1.563502, 45.424296];;FRSIGESIGE22711;FR*SOD*E*MB47*16*1*1*_;;;;;;;;;;;;;;;;;;;7165557087450;2017-01-30;;;;;;;;1.562014;45.405899;94480;Montceaux-lès-Provins;; +;E.Leclerc, Thiers;;;;;;SCI LES RUISSEAUX;FRS47PMB475512;FR*SOD*S*LYON*93*1*_*_;LE CANNET PARKING LES LENTISQUES;;COURS SAINT GEORGES;34145;[1.570625, 45.442994];;FRSIGESIGE22811;FR*SOD*E*MB47*58*1*2*_;;;;;;;;;;;;;;;;;;;7134298042780;2017-06-26;;;;;;;;1.770483;45.302048;94360;Lésigny;; +;E.Leclerc, Thionville;;;;;;Le Refuge des Aiglons;FRS47PMB475412;FR*SOD*S*LYON*38*1*_*_;LE CANNET PARKING GRIGNAN;;PARKING DU CENTRE HOSPITALIER;83126;[1.562014, 45.426246];;FRSIGESIGE22812;FR*SOD*E*MB47*56*1*1*_;;;;;;;;;;;;;;;;;;;7154703252204;2018-08-23;;;;;;;;1.489849;45.053508;94310;Moret-Loing-et-Orvanne;; +;E.Leclerc, Sarrebourg;;;;;;Hôtel le Kaya;FRS47PMB475411;FR*SOD*S*LYON*35*2*_*_;LE CANNET PARKING DES MOULIERES;;PARKING RUE 26ÈME REGIMENT DINFANTERIE;50025;[1.770483, 45.264992];;FRSIGESIGE22911;FR*SOD*E*MB47*73*1*1*_;;;;;;;;;;;;;;;;;;;50042199442811;2017-10-20;;;;;;;;1.475894;45.187074;94600;Limoges-Fourches;; +;E.Leclerc, Surgères;;;;;;Bornevo Connect;FRS47PMB475311;FR*SOD*S*LYON*36*1*_*_;CANNES PARKING CORREIA;;RUE WILSON;86259;[1.489849, 45.0419];;FRSIGESIGE22931;FR*SOD*E*MB47*58*1*1*_;;;;;;;;;;;;;;;;;;;50091256854973;2018-03-13;;;;;;;;1.872822;45.181659;93400;Lissy;; +;E.Leclerc, Thiant;;;;;;CBRE TOUR FIRST;FRS47PMB475312;FR*SOD*S*LYON*36*2*_*_;SAINT-VALLIER-DE-THIEY - PARKING ESPACE DU THIEY;;PLACE MACKENHEIM;86208;[1.475894, 45.257628];;FRSIGESIGE22951;FR*SOD*E*MB47*85*1*2*_;;;;;;;;;;;;;;;;;;;7378871107634;2017-12-08;;;;;;;;1.495816;45.222671;93270;Livry-sur-Seine;; +;E.Leclerc, Thourotte;;;;;;ITM CHALLANS DISTRIBUTION;FRS47PMB475212;FR*SOD*S*LYON*37*1*_*_;SIXT MARCQ-EN-BAROEUL;;PARKING TENNIS;86021;[1.872822, 45.367584];;FRSIGESIGE22921;FR*SOD*E*MB47*98*1*1*_;;;;;;;;;;;;;;;;;;;50092850672853;2017-03-15;;;;;;;;1.523637;45.177941;93250;Lizy-sur-Ourcq;; +;E.Leclerc, Tourlaville;;;;;;EVBOX;FRS47PMB475211;FR*SOD*S*LYON*37*2*_*_;MASSERET- PLACE MARCEL CHAMPEIX;;ZADU GRAND FRONT;86088;[1.495816, 45.051969];;FRSIGESIGE22941;FR*SOD*E*MB47*97*1*2*_;;;;;;;;;;;;;;;;;;;7162228577968;2018-08-31;;;;;;;;1.581699;45.121961;93240;Longueville;; +;E.Leclerc, Strasbourg;;;;;;Polybati;FRS47PMB475112;FR*SOD*S*LYON*38*2*_*_;BRIVE - HALLE BRASSENS;;LE BOURG - PARKING CAMPING CARS;14167;[1.523637, 45.10095];;FRSIGESIGE22961;FR*SOD*E*MB47*97*1*1*_;;;;;;;;;;;;;;;;;;;7192185162798;2018-09-13;;;;;;;;1.941229;45.170076;94350;Maincy;; +;E.Leclerc, Sautel La Rochelle;;;;;;KIA - Hérouville-Saint-Clair;FRS47PMB475111;FR*SOD*S*LYON*41*1*_*_;CLERGOUX - DOMAINE DE SEDIERES;;D6 - PARKING SALLE DES FETES;59260;[1.581699, 45.22832];;FRSIGESIGE23012;FR*SOD*E*MB47*96*1*2*_;;;;;;;;;;;;;;;;;;;7166280676326;2019-04-24;;;;;;;;1.851616;45.125055;94300;Maisoncelles-en-Brie;; +;E.Leclerc, Scaer;;;;;;STATION MICHEL AULAS;FRS47PMB475011;FR*SOD*S*LYON*39*1*_*_;BRIVE - PARKING PARC DES EXPOSITIONS DES 3 PROVINCES - 1;;PARKING SALLES DES FETES;59404;[1.941229, 45.405899];;FRSIGESIGE23011;FR*SOD*E*MB47*96*1*1*_;;;;;;;;;;;;;;;;;;;7156874019315;2019-10-08;;;;;;;;1.580087;45.366442;94510;Maison-Rouge;; +;E.Leclerc, Sedan;;;;;;Bricomarché Rive de Gier;FRS47PMB475012;FR*SOD*S*LYON*39*2*_*_;BRIVE - PARKING PARC DES EXPOSITIONS DES 3 PROVINCES - 2;;PLACE 31 MARS;11262;[1.851616, 45.302048];;FRSIGESIGE23111;FR*SOD*E*MB47*95*1*1*_;;;;;;;;;;;;;;;;;;;7130680097799;2019-04-17;;;;;;;;1.507493;45.427326;94490;Marchémoret;; +;E.Leclerc, Segre;;;;;;Mazda Lille - Kodo Automobiles;FRS47PMB474912;FR*SOD*S*LYON*40*2*_*_;BRIVE - POLE D’ECHANGES MULTIMODAL;;AUBERGE DE LA NAUZE PARKING;85020;[1.580087, 45.053508];;FRSIGESIGE19411;FR*SOD*E*MB47*95*1*2*_;;;;;;;;;;;;;;;;;;;7184949272475;2020-07-15;;;;;;;;1.457247;45.313928;94410;Marolles-sur-Seine;; +;E.Leclerc, Souillac;;;;;;Mazda Buchelay - Technic Auto Services;FRS47PMB474311;FR*SOD*S*LYON*40*1*_*_;BRIVE - MAIRIE DE BRIVE-LA-GAILLARDE;;LE BOURG PLACE DE LA HALLE;77100;[1.507493, 45.187074];;FRSIGESIGE19322;FR*SOD*E*MB47*94*1*1*_;;;;;;;;;;;;;;;;;;;7115918881870;2020-08-19;;;;;;;;1.545809;45.405044;93100;Mauregard;; +;E.Leclerc, Seclin Public;;;;;;MAZDA Evreux GHV;FRS47PMB474812;FR*SOD*S*LYON*41*2*_*_;BRIVE - PLACE THIERS;;PARKING LE DONZAC;77054;[1.457247, 45.181659];;FRSIGESIGE25112;FR*SOD*E*MB47*94*1*2*_;;;;;;;;;;;;;;;;;;;07222720585880;2019-11-19;;;;;;;;1.595673;45.397149;93360;Fontenailles;; +;E.leclerc Sodirib;;;;;;MAZDA EPINAL;FRS47PMB474811;FR*SOD*S*LYON*35*1*_*_;AUBAZINES - LE LAVOIR;;RUE AMIRAL COURBET;77182;[1.545809, 45.222671];;FRSIGESIGE812;FR*SOD*E*MB47*93*1*1*_;;;;;;;;;;;;;;;;;;;07542257498989;2019-03-30;;;;;;;;1.414614;45.392636;93800;Choisy-en-Brie;; +;E.Leclerc, Zone Ciné-Loisirs Cernay;;;;;;Infrastructures de recharge pour véhicules électriques AUTORECHARGE;FRS47PMB474712;FR*SOD*S*LYON*34*2*_*_;UZERCHE - PLACE DE LA LIBERATION;;D660 - AIR DE CAMPINGS CARS;77165;[1.595673, 45.177941];;FRSIGESIGE212;FR*SOD*E*MB47*93*1*2*_;;;;;;;;;;;;;;;;;;;07571490493834;2019-03-29;;;;;;;;1.563527;44.983314;93460;Crécy-la-Chapelle;; +;E.Leclerc, Wintzenheim;;;;;;ORSINI CONSEIL;FRS47PMB474711;FR*SOD*S*LYON*28*2*_*_;UZERCHE - AVENUE DE LA GARE;;RUE DES ALLIES PLACE DU MARCHE;77244;[1.414614, 45.121961];;FRSIGESIGE211;FR*SOD*E*MB47*92*1*2*_;;;;;;;;;;;;;;;;;;;07508827686916;2019-07-26;;;;;;;;1.724899;45.227944;93450;Coutençon;; +;E.Leclerc, Wattrelos;;;;;;WICKER TP;FRS47PMB474612;FR*SOD*S*LYON*29*1*_*_;UZERCHE - ALLEE DE LA PAPETRIE;;PLACE GENERAL DE GAULE;77285;[1.563527, 45.170076];;FRSIGESIGE312;FR*SOD*E*MB47*92*1*1*_;;;;;;;;;;;;;;;;;;;07539218425149;2019-07-25;;;;;;;;1.713402;45.273307;93230;Courpalay;; +;E.Leclerc, Vitry-sur-Seine;;;;;;Intermarché CONTACT Marchaux et Drive - Semmax;FRS47PMB474611;FR*SOD*S*LYON*29*2*_*_;TULLE - PARKING QUAI GABRIEL PERI;;PLACE ROGER GAUTHIER;77291;[1.724899, 45.125055];;FRSIGESIGE311;FR*SOD*E*MB47*91*1*1*_;;;;;;;;;;;;;;;;;;;07572792954692;2018-10-26;;;;;;;;1.566751;45.257594;93330;Coulommiers;; +;E.leclerc, Montayral Brico;;;;;;SA BEYNEL ET FILS;FRS47PMB474511;FR*SOD*S*LYON*30*1*_*_;NESPOULS - PARKING DE LAEROPORT;;LE BOURG - PLACE DE LA MAIRIE;77365;[1.713402, 45.366442];;FRSIGESIGE412;FR*SOD*E*MB47*91*1*2*_;;;;;;;;;;;;;;;;;;;07571201058268;2019-04-10;;;;;;;;1.767277;45.264425;93380;Congis-sur-Thérouanne;; +;ECG;;;;;;Bananes Vertes St Claude;FRS47PMB474512;FR*SOD*S*LYON*30*2*_*_;ALLASSAC - PLACE ALLEGRE;;PARKING SALLE DES FETES;77229;[1.566751, 45.427326];;FRSIGESIGE411;FR*SOD*E*MB47*90*1*1*_;;;;;;;;;;;;;;;;;;;7368885579580;2018-07-25;;;;;;;;2.046184;45.581782;84000;Claye-Souilly;; +;EGPM E-charger France Nord;;;;;;Mc Donald's Basse Terre;FRS47PMB474411;FR*SOD*S*LYON*31*1*_*_;CORREZE - ROUTE DU VIMBELLE;;RD 6089 - PARKING GENDARMERIE;77233;[1.767277, 45.313928];;FRSIGESIGE512;FR*SOD*E*MB47*90*1*2*_;;;;;;;;;;;;;;;;;;;50030336286445;2019-05-21;;;;;;;;1.381578;45.09254;93700;Chenoise-Cucharmoy;; +;EHPAD Saint-Riquier;;;;;;WeeCharge;FRS47PMB474412;FR*SOD*S*LYON*31*2*_*_;NESPOULS - LA CROIX BLANCHE;;PARKING AVENUE JULES FERRY;77219;[2.046184, 45.405044];;FRSIGESIGE511;FR*SOD*E*MB47*89*1*1*_;;;;;;;;;;;;;;;;;;;07486251707494;2019-09-12;;;;;;;;2.114273;45.041874;92380;Chaumes-en-Brie;; +;ELSAN Médipôle Saint-Roch;;;;;;e-Vadea;FRS47PMB474312;FR*SOD*S*LYON*32*2*_*_;NOAILLES - PLACE CHARLES DE GAULLE;;PLACE REGIS MAGNOL;77226;[1.381578, 45.397149];;FRSIGESIGE612;FR*SOD*E*MB47*89*1*2*_;;;;;;;;;;;;;;;;;;;07456729275892;2019-09-16;;;;;;;;1.98696;45.248766;78000;Chauffry;; +;EMPX;;;;;;1PACTE;FRS47PMB472912;FR*SOD*S*LYON*32*1*_*_;SAINTE FEREOLE - AVENUE DE LA REPUBLIQUE;;AVENUE EDOUARD DEPUY;77227;[2.114273, 45.392636];;FRSIGESIGE611;FR*SOD*E*MB47*88*1*1*_;;;;;;;;;;;;;;;;;;;07550651131240;2016-07-08;;;;;;;;1.52392;44.9785;94340;Chauconin-Neufmontiers;; +;E.leclerc, Lure;;;;;;Hotel saint alban;FRS47PMB471511;FR*SOD*S*LYON*93*2*_*_;SARRAN - PARKING MUSEE DU PRESIDENT JACQUES CHIRAC;;PARKING CIMETIERE;77232;[1.98696, 44.983314];;FRSIGESIGE712;FR*SOD*E*MB47*88*1*2*_;;;;;;;;;;;;;;;;;;;07542546934501;2017-01-01;;;;;;;;1.635647;45.535733;92140;Châtillon-la-Borde;; +;E.leclerc, Blois;;;;;;Résidence les calanques;FRS47PMB472811;FR*SOD*S*LYON*33*2*_*_;GIMEL-LES-CASCADES - LE BOURG;;RUE BUGEAUD;77089;[1.52392, 45.227944];;FRSIGESIGE711;FR*SOD*E*MB47*87*1*2*_;;;;;;;;;;;;;;;;;;;07235889905716;2016-07-09;;;;;;;;1.759414;45.056961;84310;Châtenoy;; +;E.Leclerc, Valdahon;;;;;;Hôtel Restaurant Campanile Nogent-sur-Marne;FRS47PMB471411;FR*SOD*S*LYON*33*1*_*_;TURENNE - AVENUE DU SENATEUR LABROUSSE;;PLACE DU  19 MARS;77235;[1.635647, 45.273307];;FRSIGESIGE811;FR*SOD*E*MB47*87*1*1*_;;;;;;;;;;;;;;;;;;;07524601926658;2016-07-26;;;;;;;;1.409911;45.094104;83120;Châtenay-sur-Seine;; +;E.Leclerc, Urrugne;;;;;;Aubade - Comptoir des Fers;FRS47PMB471312;FR*SOD*S*LYON*34*1*_*_;USSAC - ZC LA CROIX DE PATAUD;;AIRE DE COVOITURAGE - POMBONNE;77238;[1.759414, 45.257594];;FRSIGESIGE15712;FR*SOD*E*MB47*86*1*2*_;;;;;;;;;;;;;;;;;;;07296960817810;2016-05-13;;;;;;;;1.72254;45.442391;83420;Crèvecœur-en-Brie;; +;E.Leclerc, Ussel Brico;;;;;;PAROT AUTOMOTIVE - MAZDA BRIVE;FRS47PMB471212;FR*SOD*S*LYON*42*2*_*_;VARETZ - ROUTE DE ROLAND GARROS;;PLACE YVES PERON;77088;[1.409911, 45.264425];;FRSIGESIGE912;FR*SOD*E*MB47*86*1*1*_;;;;;;;;;;;;;;;;;;;07294645332930;2016-02-15;;;;;;;;1.430912;45.272957;30150;Ormesson;; +;E.Leclerc, Ussel Hyper;;;;;;MAZDA CHALON S.SAONE - GROUPE GUILLET;FRS47PMB471211;FR*SOD*S*LYON*55*1*_*_;DONZENAC - PARKING POINT DE VUE DE TRAVASSAC;;PARKING BASCULE - RUE DE RIBERAC;77266;[1.72254, 45.581782];;FRSIGESIGE911;FR*SOD*E*MB47*98*1*2*_;;;;;;;;;;;;;;;;;;;50007325668837;2016-07-27;;;;;;;;1.489812;45.88549;84400;Flagy;; +;E.Leclerc, Trélissac;;;;;;Villa Primerose;FRS47PMB471112;FR*SOD*S*LYON*52*2*_*_;MALEMORT - RD1089 ROUTE DE TULLE;;PLACE DE LA LIBERATION;77300;[1.430912, 45.09254];;FRSIGESIGE1011;FR*SOD*E*MB47*99*1*2*_;;;;;;;;;;;;;;;;;;;07268017257053;2016-05-25;;;;;;;;1.325366;45.894882;83240;Forges;; +;E.Leclerc, Villefranche de Rouergue;;;;;;GCA CAEN;FRS47PMB471111;FR*SOD*S*LYON*49*2*_*_;LARCHE - PLACE DOCTEUR RENE JAUBERTIE;;PARKING DES VIEUX METIERS - LE BOURG;77302;[1.489812, 45.041874];;FRSIGESIGE1012;FR*SOD*E*MB47*99*1*1*_;;;;;;;;;;;;;;;;;;;07594211188364;2016-09-14;;;;;;;;1.8365;45.611801;83990;Fresnes-sur-Marne;; +;E.Leclerc, Villers-Bocage;;;;;;AUTO SPRINTER - MARSEILLE;FRS47PMB471011;FR*SOD*S*LYON*49*1*_*_;MALEMORT - RUE JEAN JAURES;;ZONE DES REAUX - FACE A LA PHARMACIE;77303;[1.325366, 45.248766];;FRSIGESIGE1112;FR*SOD*E*MB47*106*1*1*_;;;;;;;;;;;;;;;;;;;07274963711730;2016-09-25;;;;;;;;1.794784;45.887856;84160;Gouaix;; +;E.Leclerc, Violaines;;;;;;MELLONE CONSTRUCTION;FRS47PMB471012;FR*SOD*S*LYON*50*2*_*_;BEYNAT - PLACE DU CHAMP DE FOIRE;;PLACE YVAN DELBOS;77308;[1.8365, 44.9785];;FRSIGESIGE1111;FR*SOD*E*MB47*115*1*2*_;;;;;;;;;;;;;;;;;;;07573371825824;2016-07-06;;;;;;;;1.671406;45.557682;83640;Gravon;; +;E.Leclerc, Vannes;;;;;;Syndicat intercommunal de Cesson et Vert-Saint-Denis;FRS47PMB47911;FR*SOD*S*LYON*50*1*_*_;SEILHAC - PLACE DE LHORLOGE;;PLACE MARCEL PAUL;77309;[1.794784, 45.535733];;FRSIGESIGE1212;FR*SOD*E*MB47*115*1*1*_;;;;;;;;;;;;;;;;;;;07278581657272;2016-06-23;;;;;;;;1.939504;45.875145;83350;Gressy;; +;E.Leclerc, Vermelles;;;;;;Intermarché - La Teste de Buche;FRS47PMB47912;FR*SOD*S*LYON*51*1*_*_;UZERCHE - CHEMIN DES LEZES;;PARKING JEANNE DARC;77310;[1.671406, 45.056961];;FRSIGESIGE1211;FR*SOD*E*MB47*114*1*1*_;;;;;;;;;;;;;;;;;;;07508104097198;2016-06-17;;;;;;;;1.402562;45.852036;84450;Fontaine-le-Port;; +;ESSEC Business School - Campus de Cergy-Pontoise;;;;;;Mazda - BOURG EN BRESSE;FRS47PMB47812;FR*SOD*S*LYON*51*2*_*_;NAVES - RUE GUSTAVE VIDALIN;;PLACE SALLE DES FETES;77311;[1.939504, 45.094104];;FRSIGESIGE1312;FR*SOD*E*MB47*114*1*2*_;;;;;;;;;;;;;;;;;;;7167727854489;2016-05-02;;;;;;;;2.032484;45.987717;30133;Fontaine-Fourches;; +;E.Leclerc, Royan Scapauto;;;;;;BMW;FRS47PMB47811;FR*SOD*S*LYON*52*1*_*_;EGLETONS - AVENUE CHARLES DE GAULLE;;PLACE JEAN PAUL SARTHE;77317;[1.402562, 45.442391];;FRSIGESIGE1311;FR*SOD*E*MB47*113*1*2*_;;;;;;;;;;;;;;;;;;;7379884132225;2016-06-16;;;;;;;;0.674923;45.953819;33110;Féricy;; +;E.Leclerc, Rueil-Malmaison;;;;;;TOYOTA ANTIBES- NOVELLIPSE;FRS47PMB47712;FR*SOD*S*LYON*42*1*_*_;ARNAC POMPADOUR - PLACE DU CHATEAU;;PARKING AVENUE GEORGES POMPIDOU;77318;[2.032484, 45.272957];;FRSIGESIGE1511;FR*SOD*E*MB47*113*1*1*_;;;;;;;;;;;;;;;;;;;7306078054100;2016-07-01;;;;;;;;0.782702;46.019272;84270;Faÿ-lès-Nemours;; +;E.Leclerc, Sables d'Olonne;;;;;;Intermarché MORLAIX - COMADU;FRS47PMB47711;FR*SOD*S*LYON*53*1*_*_;MOUSTIER VENTADOUR - LA CHANSELVE;;PLACE NAPOLEON MAGNE;77322;[0.674923, 45.88549];;FRSIGESIGE1512;FR*SOD*E*MB47*112*1*2*_;;;;;;;;;;;;;;;;;;;7373227113501;2019-08-16;;;;;;;;0.443896;46.015385;83820;Échouboulains;; +;E.Leclerc, Romorantin;;;;;;Hôtel Restaurant Hubert Kieffer;FRS47PMB47611;FR*SOD*S*LYON*53*2*_*_;CAMPS - SAINT MATHURIN;;PARKING RUE DU STADE;77326;[0.782702, 45.894882];;FRSIGESIGE15612;FR*SOD*E*MB47*112*1*1*_;;;;;;;;;;;;;;;;;;;7359768358199;2020-09-28;;;;;;;;0.109904;45.824615;17880;Donnemarie-Dontilly;; +;E.Leclerc, Rosendael;;;;;;TOYOTA NICE - NOVELLIPSE;FRS47PMB47612;FR*SOD*S*LYON*54*2*_*_;DONZENAC - AVENUE JEAN CHICOU;;PLACE JEAN DANIEL;77336;[0.443896, 45.611801];;FRSIGESIGE15711;FR*SOD*E*MB47*109*1*1*_;;;;;;;;;;;;;;;;;;;7326772699723;2018-08-10;;;;;;;;0.277132;45.824127;48200;Dammartin-en-Goële;; +;E.Leclerc, Saint Junien;;;;;;Le Morgane;FRS47PMB47511;FR*SOD*S*LYON*54*1*_*_;SAINT GERMAIN LES VERGNES - PLACE DE LA MAIRIE;;ZONE COMMERCIALE;77338;[0.109904, 45.887856];;FRSIGESIGE19321;FR*SOD*E*MB47*109*1*3*_;;;;;;;;;;;;;;;;;;;7347177909469;2018-02-16;;;;;;;;0.178614;45.822887;84140;Dammarie-les-Lys;; +;E.Leclerc, Saint-Amand-Montrond;;;;;;ESPACE TOY MONTAUBAN;FRS47PMB47512;FR*SOD*S*LYON*48*1*_*_;TULLE - AVENUE LUCIEN SAMPEIX;;PARKING ROUTE DE PERTHUS;77339;[0.277132, 45.557682];;FRSIGESIGE16612;FR*SOD*E*MB47*109*1*2*_;;;;;;;;;;;;;;;;;;;7342257504207;2019-08-09;;;;;;;;0.177472;45.874187;84740;Crouy-sur-Ourcq;; +;E.Leclerc, Saint-Brandan;;;;;;INTERMARCHE HYERES - SADIP;FRS47PMB47412;FR*SOD*S*LYON*48*2*_*_;OBJAT - PLACE CHARLES DE GAULLE;;PLACE DU 19 MARS;77341;[0.178614, 45.875145];;FRSIGESIGE17212;FR*SOD*E*MB47*106*1*2*_;;;;;;;;;;;;;;;;;;;7183502094550;2019-08-08;;;;;;;;0.134252;45.331318;41600;Château-Landon;; +;E.Leclerc, Saint-Brice-Courcelles;;;;;;INTERMARCHE HYERES - SADIP;FRS47PMB47411;FR*SOD*S*LYON*43*2*_*_;CHAMBERET - ROUTE DES MONEDIERES;;PLACE DU MARCHE AUX NOIX;77345;[0.177472, 45.852036];;FRSIGESIGE17112;FR*SOD*E*MB47*100*1*1*_;;;;;;;;;;;;;;;;;;;7182054915694;2018-12-20;;;;;;;;0.116474;45.779949;73190;Chartrettes;; +;E.Leclerc, Saint Berthevin;;;;;;Inter marché VALLAURIS;FRS47PMB47312;FR*SOD*S*LYON*43*1*_*_;SAINT CERNIN DE LARCHE - RUE DE LETANG;;PEYRICHOUX;77301;[0.134252, 45.987717];;FRSIGESIGE17111;FR*SOD*E*MB47*105*1*1*_;;;;;;;;;;;;;;;;;;;7165122934011;2019-03-25;;;;;;;;0.668719;45.69619;92260;Bazoches-lès-Bray;; +;E.Leclerc, Rennes;;;;;;INTERMARCHE GAUVILLE - BAUMAT;FRS47PMB47311;FR*SOD*S*LYON*44*1*_*_;NESPOULS - PARKING AEROPORT BRIVE – VALLEE DE LA DORDOGNE;;PLACE DES CORDELIERS;77249;[0.116474, 45.953819];;FRSIGESIGE17012;FR*SOD*E*MB47*105*1*2*_;;;;;;;;;;;;;;;;;;;7392764016590;2018-05-15;;;;;;;;0.673548;45.644203;85680;Boissise-le-Roi;; +;E.Leclerc, Périgueux;;;;;;Mazda MULHOUSE - LIGNE BLEUE AUTOMOBILES;FRS47PMB47212;FR*SOD*S*LYON*44*2*_*_;AYEN - 19 ROUTE DU SOULET;;PLACE DE LA LIBERATION;77316;[0.668719, 46.019272];;FRSIGESIGE17011;FR*SOD*E*MB47*104*1*2*_;;;;;;;;;;;;;;;;;;;7399565753078;2020-08-18;;;;;;;;0.452225;46.004187;85710;Boissise-la-Bertrand;; +;E.Leclerc, Quimper;;;;;;BRICOMARCHE NONTRON - S.A.S PERIVERT;FRS47PMB47211;FR*SOD*S*LYON*45*2*_*_;BEAULIEU SUR DORDOGNE - PLACE DU CHAMP DE MARS;;PLACE DU 19 MARS 62;77252;[0.673548, 46.015385];;FRSIGESIGE16912;FR*SOD*E*MB47*104*1*1*_;;;;;;;;;;;;;;;;;;;7392040426629;2021-05-01;;;;;;;;0.448823;45.624888;85140;Boisdon;; +;E.Leclerc, Rambouillet;;;;;;TOYOTA MONTAGNAT - DJB BOURG;FRS47PMB47111;FR*SOD*S*LYON*45*1*_*_;TREIGNAC - PLACE DES PENITENTS;;IMPASSE DU BASSIN;77253;[0.452225, 45.824615];;FRSIGESIGE16911;FR*SOD*E*MB47*103*1*2*_;;;;;;;;;;;;;;;;;;;7358900051305;2019-08-19;;;;;;;;0.455497;45.681636;85170;Bezalles;; +;E.Leclerc, Pusey;;;;;;TOYOTA PERIGUEUX - MAGOT CAVARD;FRS47PMB47112;FR*SOD*S*LYON*46*2*_*_;MEYSSAC - AIRE DE COVOITURAGE;;RUE DENIS PAPIN;77255;[0.448823, 45.824127];;FRSIGESIGE16812;FR*SOD*E*MB47*103*1*1*_;;;;;;;;;;;;;;;;;;;7397973856232;2019-04-15;;;;;;;;0.71928;45.622856;85220;Beton-Bazoches;; +;E.Leclerc, Porto Vecchio;;;;;;GARAGE NELLO CHELLI - DIJON;FRS47PMB471311;FR*SOD*S*LYON*46*1*_*_;ARGENTAT - PLACE BAD-KOENIG;;ROUTE DU ROYER;77257;[0.455497, 45.822887];;FRSIGESIGE16811;FR*SOD*E*MB47*102*1*2*_;;;;;;;;;;;;;;;;;;;7167004265438;2019-09-18;;;;;;;;-0.044549;45.736952;85400;Bernay-Vilbert;; +;E.Leclerc, Pontchâteau;;;;;;GARAGE NELLO CHELI - BEAUNE;FRS47PMB471412;FR*SOD*S*LYON*47*1*_*_;LUBERSAC - AVENUE DU CHATEAU;;PLACE GOUMONDIE;77260;[0.71928, 45.874187];;FRSIGESIGE16712;FR*SOD*E*MB47*102*1*1*_;;;;;;;;;;;;;;;;;;;7116208317412;2020-01-31;;;;;;;;0.652945;45.737022;85320;Bellot;; +;E.Leclerc, Rennes Saint Gregoire;;;;;;TOYOTA ANNEMASSE - DEGENEVE;FRS47PMB472812;FR*SOD*S*LYON*47*2*_*_;MARCILLAC LA CROISILLE - PLACE DOCTEUR RAOUL PEUCH;;PLACE CHARLES MANGOLD;77269;[-0.044549, 45.331318];;FRSIGESIGE16711;FR*SOD*E*MB47*101*1*1*_;;;;;;;;;;;;;;;;;;;7124023077710;2019-08-21;;;;;;;;-0.082316;45.820853;85150;Beaumont-du-Gâtinais;; +;E.Leclerc, Ribeauvillé;;;;;;TOYOTA ANNEMASSE - DEGENEVE;FRS47PMB471512;FR*SOD*S*LYON*28*1*_*_;EXIDEUIL SUR VIENNE - PLACE DE LA SALLE DES FETES;;PARKING ETANG LA JEMAYE;77270;[0.652945, 45.779949];;FRSIGESIGE16611;FR*SOD*E*MB47*101*1*2*_;;;;;;;;;;;;;;;;;;;7371345782177;2019-04-20;;;;;;;;-0.142347;45.662282;85290;Barbizon;; +;E.Leclerc, Riorges;;;;;;CAMPING LA POMMERAIE;FRS47PMB472712;FR*SOD*S*LYON*11*1*_*_;ETAGNAC - PARKING DE LA SALLE DES FETES;;PARKING DU GRAND ETANG;77272;[-0.082316, 45.69619];;FRSIGESIGE16512;FR*SOD*E*MB47*100*1*2*_;;;;;;;;;;;;;;;;;;;7120260415883;2019-12-07;;;;;;;;0.673057;45.599658;85600;Balloy;; +;E.Leclerc, Saint-Pol-de-Leon;;;;;;ITM RIEZ - DALILAS;FRS47PMB472711;FR*SOD*S*LYON*8*2*_*_;MARTHON - PLACE DU PIGEONNIER;;RUE DU PORT;77273;[-0.142347, 45.644203];;FRSIGESIGE15812;FR*SOD*E*MB47*85*1*1*_;;;;;;;;;;;;;;;;;;;7167004265326;2019-04-30;;;;;;;;0.049567;45.600461;85520;Bagneaux-sur-Loing;; +;E.Leclerc, Saint-Ouen L'Aumône;;;;;;ChargePoint Network;FRS47PMB472612;FR*SOD*S*LYON*8*1*_*_;LUXE - PLACE DE LA GARE;;PLACE DE LA HALLE;77279;[0.673057, 46.004187];;FRSIGESIGE16511;FR*SOD*E*MB47*84*1*1*_;;;;;;;;;;;;;;;;;;;7173806001605;2019-03-11;;;;;;;;-0.174088;45.739451;85350;Armentières-en-Brie;; +;E.Leclerc, Saint-Paul-lès-Dax;;;;;;INTERMARCHE - RETOURNAC;FRS47PMB472611;FR*SOD*S*LYON*9*1*_*_;DIGNAC - PARKING COMMUNAL;;RUE LOUIS ARAGON;77278;[0.049567, 45.624888];;FRSIGESIGE16411;FR*SOD*E*MB47*59*1*1*_;;;;;;;;;;;;;;;;;;;7379739414469;2019-09-01;;;;;;;;0.250935;45.272907;85230;Annet-sur-Marne;; +;E.Leclerc, Saint-Médard-en-Jalles;;;;;;TOYOTA LE CANNET - STAR AUTO;FRS47PMB472512;FR*SOD*S*LYON*9*2*_*_;MANSLE - PLACE DE LEUROPE;;PARKING MAIRIE RUE ANDRE MAUROIS;77282;[-0.174088, 45.681636];;FRSIGESIGE16412;FR*SOD*E*MB47*83*1*2*_;;;;;;;;;;;;;;;;;;;7183357376770;2018-09-27;;;;;;;;-0.093416;45.665909;85550;Amponville;; +;E.Leclerc, Saint-Nicolas-de-Redon;;;;;;IPARRA;FRS47PMB472511;FR*SOD*S*LYON*10*1*_*_;MAINE DE BOIXE - PLACE DE LA MAIRIE;;MADEMOISELLE DESSERT - PARKING ADMINISTRATIF - AVANT;77191;[0.250935, 45.622856];;FRSIGESIGE16312;FR*SOD*E*MB47*72*1*1*_;;;;;;;;;;;;;;;;;;;7167438418762;2018-09-07;;;;;;;;-0.158672;45.48212;85630;Achères-la-Forêt;; +;E.Leclerc, Saint-Priest-en-Jarez;;;;;;Intermarché Freneuse - CASTEL;FRS47PMB472412;FR*SOD*S*LYON*10*2*_*_;COURCOME - PLACE DE LANCIENNE MAIRIE;;LE BOURG - PLACE DE LEGLISE - PARKING DU PERSONNEL - ARRIÈRE;77116;[-0.093416, 45.736952];;FRSIGESIGE16311;FR*SOD*E*MB47*71*1*2*_;;;;;;;;;;;;;;;;;;;7155426841372;2018-07-27;;;;;;;;0.447453;45.982833;85750;Boissy-le-Châtel;; +;E.Leclerc, San Giuliano;;;;;;MGMI;FRS47PMB472411;FR*SOD*S*LYON*27*1*_*_;CHARME - PLACE DE LA MAIRIE;;PLACE DES ECOLES;77142;[-0.158672, 45.737022];;FRSIGESIGE16212;FR*SOD*E*MB47*71*1*1*_;;;;;;;;;;;;;;;;;;;07439363140202;2021-01-02;;;;;;;;0.197387;45.599652;85190;Charny;; +;E.Leclerc, Saintes-Abbaye-Maine;;;;;;SEPTENTRION FINANCES;FRS47PMB472311;FR*SOD*S*LYON*11*2*_*_;CONFOLENS - PLACE MAURICE CROISLEBOIS;;PLACE DE LA CREYSSETTE;77140;[0.447453, 45.820853];;FRSIGESIGE16211;FR*SOD*E*MB47*70*1*1*_;;;;;;;;;;;;;;;;;;;7431403662271;2021-02-01;;;;;;;;-0.053886;45.470455;85480;Chalmaison;; +;E.Leclerc, Saint-Raphael;;;;;;DLM BORDEAUX;FRS47PMB472312;FR*SOD*S*LYON*12*2*_*_;CONFOLENS - PLACE DES MARRONNIERS;;AQUACAP;77135;[0.197387, 45.662282];;FRSIGESIGE16012;FR*SOD*E*MB47*69*1*2*_;;;;;;;;;;;;;;;;;;;7457887018790;2022-04-09;;;;;;;;-0.057746;45.473186;85120;Chalautre-la-Petite;; +;E.Leclerc, Salouel;;;;;;Zen Cosntruction;FRS47PMB472211;FR*SOD*S*LYON*12*1*_*_;CHASSENEUIL SUR BONNIEURE - PLACE DU CHAMP DE MARS;;LESPLANADE PARKING - RUE DU REPOS;77131;[-0.053886, 45.599658];;FRSIGESIGE16011;FR*SOD*E*MB47*69*1*1*_;;;;;;;;;;;;;;;;;;;7420115672814;2022-03-06;;;;;;;;0.389289;45.472511;85110;Chalautre-la-Grande;; +;E.Leclerc, Saint-Just-en-Chaussée;;;;;;Restaurant Jérôme Nutile;FRS47PMB472212;FR*SOD*S*LYON*13*1*_*_;CHASSENEUIL SUR BONNIEURE - PLACE DE LEGLISE;;PLACE A.MOULINIER;77126;[-0.057746, 45.600461];;FRSIGESIGE15911;FR*SOD*E*MB47*68*1*2*_;;;;;;;;;;;;;;;;;;;7458465890799;2021-12-05;;;;;;;;0.035488;46.026398;85310;Chailly-en-Brie;; +;E.Leclerc, Saint-Jean-de-Linières;;;;;;CAMPING MAS FLEURI;FRS47PMB472111;FR*SOD*S*LYON*13*2*_*_;CHASSENEUIL SUR BONNIEURE - PARKING DU GYMNASE;;PARKING PARK RELAIS - DEPARTEMENTAL 18;77118;[0.389289, 45.739451];;FRSIGESIGE15912;FR*SOD*E*MB47*68*1*1*_;;;;;;;;;;;;;;;;;;;7379594696682;2022-07-14;;;;;;;;0.500211;45.894077;85450;Chailly-en-Bière;; +;E.Leclerc, Saint-Etienne-du-Rouvray;;;;;;Intermarché - Saint-Paul les Dax;FRS47PMB472112;FR*SOD*S*LYON*14*1*_*_;CHABANAIS - PLACE COLBERT;;D22 - PARKING MAIRIE;77109;[0.035488, 45.272907];;FRSIGESIGE15811;FR*SOD*E*MB47*67*1*1*_;;;;;;;;;;;;;;;;;;;7306367489784;2022-08-15;;;;;;;;0.276775;45.893837;85470;Cesson;; +;E.Leclerc, Saint-Eloi;;;;;;Clinique de la victoire;FRS47PMB472011;FR*SOD*S*LYON*7*2*_*_;BROSSAC - PARKING SALLES DE FETES;;PARKING AVENUE CHARLES SERRE;77107;[0.500211, 45.665909];;FRSIGESIGE1611;FR*SOD*E*MB47*67*1*2*_;;;;;;;;;;;;;;;;;;;7419826238080;2022-03-27;;;;;;;;0.22732;45.678441;85800;Cerneux;; +;E.Leclerc, Saint-Malo;;;;;;INDIGO PROPRETE;FRS47PMB472012;FR*SOD*S*LYON*7*1*_*_;MASSIGNAC - PLACE DU CHAMP DE FOIRE;;BOULEVARD CHARLEMAGNE PARKING;77106;[0.276775, 45.48212];;FRSIGESIGE1612;FR*SOD*E*MB47*66*1*1*_;;;;;;;;;;;;;;;;;;;7347033191632;2022-05-01;;;;;;;;-0.050373;45.585627;85210;Bussières;; +;E.Leclerc, Saint-Maur;;;;;;CAMPING DE LA FERME DE MAYOCQ;FRS47PMB471911;FR*SOD*S*LYON*5*1*_*_;MERIGNAC - IMPASSE DES CADUCEES - POLE MEDICAL;;PARKING BELLEVUE;77335;[0.22732, 45.982833];;FRSIGESIGE1712;FR*SOD*E*MB47*66*1*2*_;;;;;;;;;;;;;;;;;;;7352821903762;2023-04-30;;;;;;;;-0.158139;45.470035;85540;Bray-sur-Seine;; +;ETS Kuentz;;;;;;Provibat;FRS47PMB471912;FR*SOD*S*LYON*4*1*_*_;SAINT MEME LES CARRIERES - ROUTE DE LA GARE;;AVENUE DE LAGORA MAIRIE;77103;[-0.050373, 45.599652];;FRSIGESIGE18831;FR*SOD*E*MB47*65*1*2*_;;;;;;;;;;;;;;;;;;;7408827685240;2019-12-09;;;;;;;;-0.153031;46.003008;85360;Bouleurs;; +;Espace Elec;;;;;;INTERMARCHE ALTILLAC;FRS47PMB471812;FR*SOD*S*LYON*4*2*_*_;CONFOLENS - PARKING DU LYCEE;;PLACE MANDELA;77102;[-0.158139, 45.470455];;FRSIGESIGE18541;FR*SOD*E*MB47*65*1*1*_;;;;;;;;;;;;;;;;;;;7341533915007;2020-01-30;;;;;;;;-0.158627;46.028155;85270;Boulancourt;; +;Eyrignac et ses jardins;;;;;;Mazda GEX - GARAGE DAGO;FRS47PMB471811;FR*SOD*S*LYON*3*1*_*_;NERSAC - PARKING RUE DE LISLE DESPAGNAC;;PARKING N21;77101;[-0.153031, 45.473186];;FRSIGESIGE18621;FR*SOD*E*MB47*64*1*2*_;;;;;;;;;;;;;;;;;;;7475253155138;2020-08-08;;;;;;;;0.512917;45.828297;85700;Bougligny;; +;FB Automobiles;;;;;;EVERON;FRS47PMB471711;FR*SOD*S*LYON*3*2*_*_;JARNAC - PLACE JEAN JAURES;;LE PARC PLACE DU FOIRAIL;77144;[-0.158627, 45.472511];;FRSIGESIGE18651;FR*SOD*E*MB47*64*1*1*_;;;;;;;;;;;;;;;;;;;7302460108561;2017-06-08;;;;;;;;0.028132;45.312988;85690;Boitron;; +;Expo Bellamy;;;;;;CENTRE JUNO BEACH;FRS47PMB471712;FR*SOD*S*LYON*2*2*_*_;GARAT - PARKING SAINTE-CATHERINE;;CHEMIN DU VERT GALANT PARKING DES RECLUS;77348;[0.512917, 46.026398];;FRSIGESIGE18641;FR*SOD*E*MB47*63*1*1*_;;;;;;;;;;;;;;;;;;;7346888473837;2017-08-31;;;;;;;;0.010372;45.953514;85330;Trilport;; +;Explorers OPCO;;;;;;Ford - Saumur;FRS47PMB471612;FR*SOD*S*LYON*2*1*_*_;VAUX ROUILLAC - PARKING SALLE DES FETES;;BASE DE LOISIRS;77184;[0.028132, 45.894077];;FRSIGESIGE18611;FR*SOD*E*MB47*63*1*2*_;;;;;;;;;;;;;;;;;;;7427785716456;2017-12-01;;;;;;;;0.228827;45.894127;85620;Verneuil-l'Étang;; +;Eurométropole;;;;;;Le COTONNIER NIEPPE;FRS47PMB471611;FR*SOD*S*LYON*1*1*_*_;SIGOGNE - PARKING MAIRIE;;TOURNEPIQUE;77194;[0.010372, 45.893837];;FRSIGESIGE18631;FR*SOD*E*MB47*62*1*1*_;;;;;;;;;;;;;;;;;;;7329377619136;2017-07-03;;;;;;;;0.154645;45.804214;14480;Vendrest;; +;Est Réseaux;;;;;;DESENFANS CAMBRAI;FRS47PMB475812;FR*SOD*S*LYON*1*2*_*_;CHASSENEUIL SUR BONNIEURE - PARKING DES TILLEULS;;PLACE DALSACE;77196;[0.228827, 45.678441];;FRSIGESIGE18671;FR*SOD*E*MB47*62*1*2*_;;;;;;;;;;;;;;;;;;;7452532460733;2017-03-23;;;;;;;;-0.153052;45.775581;14170;Vaudoy-en-Brie;; +;Etablissements BOTTI;;;;;;BRICOMARCHE RHEALYS - LA FLOTTE EN RE;FRS47PMB475611;FR*SOD*S*LYON*6*1*_*_;LISLE DESPAGNAC - PARKING RUE ANATOLE FRANCE;;ROUTE DE ST MARTIAL D46;77208;[0.154645, 45.585627];;FRSIGESIGE18721;FR*SOD*E*MB47*61*1*2*_;;;;;;;;;;;;;;;;;;;7434876889445;2017-09-08;;;;;;;;0.850099;45.774048;14500;Varennes-sur-Seine;; +;Eurodorthz;;;;;;ELITE MOTORS - MAZDA LYON NORD;FRS47PMB477311;FR*SOD*S*LYON*6*2*_*_;CHATEAUNEUF SUR CHARENTE - PARKING DE LA PAIX;;PLACE HENI FAURE;77212;[-0.153052, 45.470035];;FRSIGESIGE18731;FR*SOD*E*MB47*61*1*1*_;;;;;;;;;;;;;;;;;;;7591750987593;2017-12-29;;;;;;;;0.197685;46.121174;14240;Valence-en-Brie;; +;Espace H Public;;;;;;SDC ORDINAL;FRS47PMB475811;FR*SOD*S*LYON*14*2*_*_;CHATEAUNEUF SUR CHARENTE - PLACE DU VIEUX MARCHE;;AVENUE DE LE PREHISTOIRE;77214;[0.850099, 46.003008];;FRSIGESIGE18741;FR*SOD*E*MB47*60*1*1*_;;;;;;;;;;;;;;;;;;;7549927543998;2017-12-19;;;;;;;;0.742937;45.959202;14113;Ury;; +;Europcar Bretagne public;;;;;;SDC CONSTELLATION;FRS47PMB478512;FR*SOD*S*LYON*21*1*_*_;LA ROCHEFOUCAULD-EN-ANGOUMOIS - PARKING SALLE DES FETES - LA ROCHEFOUCAULD;;PARKING AVENUE DE LA FORGE;77188;[0.197685, 46.028155];;FRSIGESIGE18751;FR*SOD*E*MB47*60*1*2*_;;;;;;;;;;;;;;;;;;;7454992663469;2019-09-19;;;;;;;;0.250624;45.553669;14160;Saint-Germain-Laxis;; +;Europe Hôtel 58;;;;;;Campus Vigny;FRS47PMB479811;FR*SOD*S*LYON*22*2*_*_;CHALAIS - CHEZ FAGNARD - AIRE DE COVOITURAGE;;PLACE DE LA FELIBRE;77187;[0.742937, 45.828297];;FRSIGESIGE18711;FR*SOD*E*MB47*59*1*2*_;;;;;;;;;;;;;;;;;;;7532706125390;2018-03-07;;;;;;;;-0.007294;45.983635;14370;Touquin;; +;ETS Levezier et Fils;;;;;;DEGRES CELCIUS;FRS47PMB479712;FR*SOD*S*LYON*22*1*_*_;MONTBRON - PARKING COMMUNAL;;IMPASSE DU VIEUX MOULIN;77179;[0.250624, 45.312988];;FRSIGESIGE18851;FR*SOD*E*MB47*73*1*2*_;;;;;;;;;;;;;;;;;;;7407814660788;2017-11-15;;;;;;;;0.466107;45.398552;14840;Saint-Soupplets;; +;Elsass Recharge;;;;;;GL AUTOMOTIVE;FRS47PMB479711;FR*SOD*S*LYON*23*2*_*_;VILLEBOIS-LAVALETTE - PLACE DU CHAMP DE FOIRE;;PLACE MIANNE;77178;[-0.007294, 45.953514];;FRSIGESIGE1711;FR*SOD*E*MB47*74*1*1*_;;;;;;;;;;;;;;;;;;;7305354465124;2017-09-07;;;;;;;;0.140125;45.450443;14880;Saint-Sauveur-sur-École;; +;Eifaltis;;;;;;Mazda Lyon Sud;FRS47PMB479612;FR*SOD*S*LYON*23*1*_*_;VERTEUIL-SUR-CHARENTE - PARKING RUE DU CHATEAU;;PARKING RESTAURANT SEMILLION;77164;[0.466107, 45.894127];;FRSIGESIGE18861;FR*SOD*E*MB47*74*1*2*_;;;;;;;;;;;;;;;;;;;7564109887122;2017-09-01;;;;;;;;-0.065062;45.397438;14430;Saint-Rémy-la-Vanne;; +;Eleance;;;;;;Réseau de charge AUTORECHARGE;FRS47PMB479611;FR*SOD*S*LYON*24*1*_*_;CHATEAUNEUF SUR CHARENTE - PLACE DE LA GARE;;PLACE DU FOIRAIL NORD;77159;[0.140125, 45.804214];;FRSIGESIGE18821;FR*SOD*E*MB47*78*1*2*_;;;;;;;;;;;;;;;;;;;7460491939219;2017-08-24;;;;;;;;-0.064496;45.777496;14650;Saint-Ouen-en-Brie;; +;Electronic Loisirs;;;;;;Réseau de charge Camping Les Places Dorées;FRS47PMB479511;FR*SOD*S*LYON*24*2*_*_;BARBEZIEUX-SAINT HILAIRE - PLACE DU CHAMP DE FOIRE;;PLACE TOURNIER;77153;[-0.065062, 45.775581];;FRSIGESIGE18841;FR*SOD*E*MB47*83*1*1*_;;;;;;;;;;;;;;;;;;;7463096860305;2017-10-10;;;;;;;;0.784798;45.814956;14380;Saint-Méry;; +;Elivia - Public;;;;;;TISSERANT;FRS47PMB479512;FR*SOD*S*LYON*25*1*_*_;BARBEZIEUX-SAINT HILAIRE - PARKING JEAN MONNET;;D706 - ZONE COMMERCIALE LACOSTE;77152;[-0.064496, 45.774048];;FRSIGESIGE18811;FR*SOD*E*MB47*82*1*2*_;;;;;;;;;;;;;;;;;;;7494934776404;2017-07-27;;;;;;;;0.162199;45.886162;14570;Villecerf;; +;Edenauto Lons public;;;;;;JMD;FRS47PMB479411;FR*SOD*S*LYON*25*2*_*_;BARBEZIEUX-SAINT HILAIRE - AVENUE DU 14 JUILLET;;PARKING LASCAUX - D704E1;77148;[0.784798, 46.121174];;FRSIGESIGE19012;FR*SOD*E*MB47*82*1*1*_;;;;;;;;;;;;;;;;;;;7528509309497;2017-10-02;;;;;;;;0.123815;45.271808;14320;Villeneuve-le-Comte;; +;Easy Rool;;;;;;BOX;FRS47PMB479412;FR*SOD*S*LYON*26*1*_*_;ALLOUE - RUE EMILE BELLY;;PLACE LEOPOLD SALME;77099;[0.162199, 45.959202];;FRSIGESIGE19011;FR*SOD*E*MB47*81*1*1*_;;;;;;;;;;;;;;;;;;;7547467341388;2017-10-09;;;;;;;;0.897107;45.992661;14710;Ozouer-le-Voulgis;; +;Ecovert Habitat;;;;;;CENTRAL AUTO - MAZDA BREST;FRS47PMB479311;FR*SOD*S*LYON*26*2*_*_;AIGRE - VILLEJESUS - PLACE DE LGLISE;;RUE DE LA LIBERATION - PARKING ESPACE SOCIO-CULTUREL;77096;[0.123815, 45.553669];;FRSIGESIGE19112;FR*SOD*E*MB47*81*1*2*_;;;;;;;;;;;;;;;;;;;7555426819862;2017-08-07;;;;;;;;0.13251;45.782601;14130;Yèbles;; +;Edenauto Auch public;;;;;;A.V.D. - MAZDA BOURGOIN JALLIEU;FRS47PMB479312;FR*SOD*S*LYON*27*2*_*_;AIGRE - PLACE DE LHOTEL DE VILLE;;RUE BERTRAND DE BORN;77025;[0.897107, 45.983635];;FRSIGESIGE19111;FR*SOD*E*MB47*80*1*2*_;;;;;;;;;;;;;;;;;;;7398408010657;2019-01-25;;;;;;;;0.142127;45.737043;14540;Voulx;; +;Enac;;;;;;Morbihan Energies;FRS47PMB479212;FR*SOD*S*LYON*21*2*_*_;RUELLE SUR TOUVRE- PLACE AUGUSTE ROYER;;D14 - PARKING;77040;[0.13251, 45.398552];;FRSIGESIGE19211;FR*SOD*E*MB47*80*1*1*_;;;;;;;;;;;;;;;;;;;7324746649558;2019-01-28;;;;;;;;0.130669;45.678883;14610;Voisenon;; +;Emil Frey BMW Mérignac;;;;;;MAZDA NIMES;FRS47PMB479211;FR*SOD*S*LYON*15*1*_*_;VOEUIL ET GIGET - ROUTE DE TORSAC;;PLACE BOYER DE LA VEYSSIERE;77039;[0.142127, 45.450443];;FRSIGESIGE19212;FR*SOD*E*MB47*79*1*2*_;;;;;;;;;;;;;;;;;;;7338350123508;2019-01-23;;;;;;;;0.551885;45.271091;14100;Voinsles;; +;Emil Frey BMW Nîmes;;;;;;MAIRIE DE BRAY DUNES;FRS47PMB479111;FR*SOD*S*LYON*15*2*_*_;BARBEZIEUX-SAINT HILAIRE - AVENUE NELSON MANDELA;;PARKING AVENUE DES DUCS DE LA FORCE;77036;[0.130669, 45.397438];;FRSIGESIGE19312;FR*SOD*E*MB47*79*1*1*_;;;;;;;;;;;;;;;;;;;7339073712564;2019-02-01;;;;;;;;0.074098;45.383097;14680;Vimpelles;; +;Emil Frey BMW Poitiers;;;;;;SAS CIGIMMO;FRS47PMB479112;FR*SOD*S*LYON*16*1*_*_;SAINT CHRISTOPHE - PLACE DE LEGLISE;;PARKING AVENUE DE BERGERAC;77033;[0.551885, 45.777496];;FRSIGESIGE19311;FR*SOD*E*MB47*78*1*1*_;;;;;;;;;;;;;;;;;;;50031204105847;2019-01-24;;;;;;;;0.582232;45.762363;14190;Villiers-sur-Seine;; +;Emil Frey BMW Salon de Provence;;;;;;SARL GRARE;FRS47PMB479011;FR*SOD*S*LYON*16*2*_*_;RUFFEC - PARKING DES AMBASSADEURS;;RUE DU PONT LASVEYRAS PARKING;77032;[0.074098, 45.814956];;FRSIGESIGE18511;FR*SOD*E*MB47*77*1*1*_;;;;;;;;;;;;;;;;;;;7379449978816;2019-06-21;;;;;;;;0.169304;45.887142;14450;Villiers-Saint-Georges;; +;Emil Frey BMW Seclin;;;;;;3MI;FRS47PMB479012;FR*SOD*S*LYON*17*2*_*_;PRESSIGNAC - PARKING MULTIPLE RURAL;;PLACE DE PRE SAINT LOUIS;77031;[0.582232, 45.886162];;FRSIGESIGE18531;FR*SOD*E*MB47*77*1*2*_;;;;;;;;;;;;;;;;;;;07456584558049;2019-02-04;;;;;;;;0.411413;45.993485;14510;Villiers-en-Bière;; +;Emil Frey BMW Villeneuve d'Ascq;;;;;;SECURITEST;FRS47PMB478911;FR*SOD*S*LYON*17*1*_*_;SAINT SEVERIN - PARKING DE LA POSTE;;RUE CANDILLAC MAIRIE;77030;[0.169304, 45.271808];;FRSIGESIGE18521;FR*SOD*E*MB47*76*1*1*_;;;;;;;;;;;;;;;;;;;07415918856568;2019-01-14;;;;;;;;0.124428;45.760067;14250;Villevaudé;; +;Emil Frey BMW Arles;;;;;;DPA -MAZDA MONTELIMAR;FRS47PMB478912;FR*SOD*S*LYON*18*1*_*_;SAINT FRAIGNE - ALLEE DES JARDINS;;ROUFFIAC - BASE DE LOISIRS;77027;[0.411413, 45.992661];;FRSIGESIGE18551;FR*SOD*E*MB47*76*1*2*_;;;;;;;;;;;;;;;;;;;07424312488560;2019-03-01;;;;;;;;0.360679;45.882244;14790;Ville-Saint-Jacques;; +;Emil Frey BMW Aix;;;;;;ZEN & MOTION - MAZDA LIMOGES;FRS47PMB478811;FR*SOD*S*LYON*18*2*_*_;SAINT CLAUD - PLACE SADI CARNOT;;RUE RAYMOND VILLECHANOUX - PARKING DE LA GARE;77022;[0.124428, 45.782601];;FRSIGESIGE1912;FR*SOD*E*MB47*75*1*1*_;;;;;;;;;;;;;;;;;;;07429377611388;2018-12-12;;;;;;;;-0.174193;45.476361;14123;Villeneuve-sur-Bellot;; +;Emil Frey BMW Alès;;;;;;NOVAFFAIRES;FRS47PMB478812;FR*SOD*S*LYON*19*1*_*_;SAINT AMANT DE BOIXE - ZONE DEMPLOI;;PARKING CENTRE MULTIMEDIA, RUE DES FRERES POUGET;77019;[0.360679, 45.737043];;FRSIGESIGE1911;FR*SOD*E*MB47*75*1*2*_;;;;;;;;;;;;;;;;;;;07423299464414;2019-04-09;;;;;;;;0.043452;43.476482;14340;Presles-en-Brie;; +;Emil Frey BMW Bayonne;;;;;;CUISINES SCHMIDT;FRS47PMB478712;FR*SOD*S*LYON*19*2*_*_;ROUILLAC - PLACE THIERS;;PLACE DU CHAPDAL;77016;[-0.174193, 45.678883];;FRSIGESIGE2011;FR*SOD*E*MB47*84*1*2*_;;;;;;;;;;;;;;;;;;;7373082395725;2020-12-20;;;;;;;;-0.23647;43.480652;14550;Beautheil-Saints;; +;Emil Frey BMW Mont de Marsan;;;;;;ALESSANDRIA AUTOS - MAZDA GRENOBLE;FRS47PMB478711;FR*SOD*S*LYON*20*1*_*_;ROUILLAC - PLACE DU CHAMP DE FOIRE;;BOULEVARD GAMBETTA PARKING;77008;[0.043452, 45.271091];;FRSIGESIGE2012;FR*SOD*E*MB47*55*1*1*_;;;;;;;;;;;;;;;;;;;7305499182954;2021-03-05;;;;;;;;0.122785;43.191563;14990;Sablonnières;; +;Emil Frey BMW La Teste;;;;;;Mazda BRIE COMTE ROBERT - ZELUS AUTOMOBILES;FRS47PMB478612;FR*SOD*S*LYON*20*2*_*_;ORADOUR-FANAIS - PARKING DE LA SALLE DES FETES;;IMPASSE NOTRE DAME PARKING ST SAUVER;77005;[-0.23647, 45.383097];;FRSIGESIGE2112;FR*SOD*E*CAPS*28*1*1*_;;;;;;;;;;;;;;;;;;;7338350123689;2022-02-19;;;;;;;;0.307256;43.00021;14760;Recloses;; +;Emil Frey BMW Marignane;;;;;;SIRUFO ESSERT - MAZDA BELFORT;FRS47PMB478611;FR*SOD*S*LYON*55*2*_*_;SALLES DE VILLEFAGNAN - PLACE COMMUNALE;;ESPLANADE DE LA BRECHE PARKING;77003;[0.122785, 45.762363];;FRSIGESIGE2111;FR*SOD*E*CAPS*26*1*2*_;;;;;;;;;;;;;;;;;;;7305788618560;2021-05-08;;;;;;;;0.646388;43.491817;14740;Rebais;; +;Emil Frey BMW Mees;;;;;;SuperU - Evron;FRS47PMB479812;FR*SOD*S*LYON*78*3*_*_;MOUTHIERS SUR BOEME - PLACE DU CHAMP DE FOIRE;;RUE MOUNEY SULLY;77001;[0.307256, 45.887142];;FRSIGESIGE2211;FR*SOD*E*CAPS*22*1*2*_;;;;;;;;;;;;;;;;;;;7337337099003;2022-10-30;;;;;;;;0.127878;43.495884;14910;Salins;; +;Espace Commercial Saint Chamond La Varizelle;;;;;;Sigma Tec;FRS47PMB479912;FR*SOD*S*LYON*75*2*_*_;MONTROLLET - PLACE BEAULIEU;;GARE DE BERGERAC PARKING;77042;[0.646388, 45.993485];;FRSIGESIGE2212;FR*SOD*E*CAPS*22*1*1*_;;;;;;;;;;;;;;;;;;;7387120022249;;;;;;;;;-0.106897;43.493511;14970;Poigny;; +;Espace Concorde;;;;;;KIA - Village Auto;FRS47PMB479911;FR*SOD*S*LYON*75*3*_*_;MONTMOREAU - PARKING DE LA TUDE;;RUE JACQUES PREVERT;77095;[0.127878, 45.760067];;FRSIGESIGE2312;FR*SOD*E*CAPS*23*1*2*_;;;;;;;;;;;;;;;;;;;50006305655650;;;;;;;;;0.033299;43.479191;14117;Pierre-Levée;; +;Espace Auto Cournon;;;;;;Bricomarché - Challans;FRS47PMB4710611;FR*SOD*S*LYON*76*1*_*_;MONTMOREAU - PARKING DE AIGNES;;LE BOURG PARKING PISCINE;77076;[-0.106897, 45.882244];;FRSIGESIGE2311;FR*SOD*E*CAPS*23*1*1*_;;;;;;;;;;;;;;;;;;;50024106485320;;;;;;;;;-1.565975;43.499332;14260;Pézarches;; +;Engen DC Ultra Rapide;;;;;;Mazda REIMS - A.F.L;FRS47PMB4711512;FR*SOD*S*LYON*76*3*_*_;MONTMOREAU - AVENUE HENRI DUNANT;;PLACE DU MARCHÉ - RUE DE LA GARE;77073;[0.033299, 45.476361];;FRSIGESIGE2412;FR*SOD*E*CAPS*24*1*1*_;;;;;;;;;;;;;;;;;;;50082287008159;;;;;;;;;-1.479587;43.494068;14490;Saint-Cyr-sur-Morin;; +;Escudier;;;;;;Intermarché La Tremblade;FRS47PMB4711511;FR*SOD*S*LYON*76*2*_*_;MONTEMBOEUF - PLACE LAURENT PRAT;;AV DE LA GARE - RUE DE LA MAIRIE;77072;[-1.565975, 43.476482];;FRSIGESIGE2411;FR*SOD*E*CAPS*24*1*2*_;;;;;;;;;;;;;;;;;;;50012967950089;;;;;;;;;-0.213154;43.477989;14860;Perthes;; +;Engie Nouvelle-Calédonie;;;;;;Favret Automobiles;FRS47PMB4711411;FR*SOD*S*LYON*76*4*_*_;VOUHARTE - PLACE DE LEGLISE;;GAZERAN - AV DU GENERAL DE GAULLE;77070;[-1.479587, 43.480652];;FRSIGESIGE2512;FR*SOD*E*CAPS*25*1*2*_;;;;;;;;;;;;;;;;;;;50037569383021;;;;;;;;;-0.601011;43.302116;14400;Pécy;; +;Ensisheim;;;;;;Mazda - Rennes;FRS47PMB4711412;FR*SOD*S*LYON*77*1*_*_;TERRES-DE-HAUTE-CHARENTE - ROUMAZIERES-LOUBERT - PARKING DU MARCHE COUVERT;;PLACE JEAN MOULIN - A;77069;[-0.213154, 43.191563];;FRSIGESIGE2511;FR*SOD*E*CAPS*25*1*1*_;;;;;;;;;;;;;;;;;;;50068538817601;;;;;;;;;-1.470652;43.480667;14630;Soignolles-en-Brie;; +;Entreprise d’Electricité de Picardie;;;;;;RESTAURANT L'OFFICE;FRS47PMB4711312;FR*SOD*S*LYON*77*2*_*_;AUBETERRE-SUR-DRONNE - PLACE DU CHAMP DE FOIRE;;RUE DE LEGLISE - PARKING MAIRIE;77067;[-0.601011, 43.00021];;FRSIGESIGE2611;FR*SOD*E*CAPS*26*1*1*_;;;;;;;;;;;;;;;;;;;50042344271734;;;;;;;;;-1.472567;43.437927;14520;Saint-Brice;; +;Wave Transport;;;;;;HYUNDAI;FRS47PMB4711311;FR*SOD*S*LYON*77*4*_*_;CHAMPAGNE-MOUTON - PLACE DU CHATEAU;;RUE ANDRÉ THOME - PARKING;77066;[-1.470652, 43.491817];;FRSIGESIGE15611;FR*SOD*E*CAPS*8*1*2*_;;;;;;;;;;;;;;;;;;;50040320307108;;;;;;;;;-1.477648;43.234398;14940;Sourdun;; +;Vonthron;;;;;;GARAGE RAYMOND;FRS47PMB4711212;FR*SOD*S*LYON*77*3*_*_;MONTIGNAC-CHARENTE - PARKING DES ALBIZIAS;;ROUTE DE RAMBOUILLET;77057;[-1.472567, 43.495884];;FRSIGESIGE15512;FR*SOD*E*CAPS*27*1*2*_;;;;;;;;;;;;;;;;;;;50089669097011;;;;;;;;;-1.498578;43.446564;14290;Souppes-sur-Loing;; +;Wasselonne;;;;;;Ford Marmande - Groupe Malbet;FRS47PMB4711211;FR*SOD*S*LYON*78*2*_*_;LA ROCHEFOUCAULD-EN-ANGOUMOIS - PLACE GERARD VANDEPUTTE - SAINT PROJET-SAINT CONSTANT;;PARKING SALLE DES FÊTES RUELLE DU CHARRON;77051;[-1.477648, 43.493511];;FRSIGESIGE15511;FR*SOD*E*CAPS*27*1*1*_;;;;;;;;;;;;;;;;;;;50017311747221;;;;;;;;;-1.455062;43.288059;14750;Solers;; +;Waldorf Astoria Versailles;;;;;;JARDIN DELICE;FRS47PMB4710911;FR*SOD*S*LYON*81*2*_*_;JARNAC - PLACE DU CHATEAU;;ZAC DU BEL AIR RUE GUSTAVE EIFFEL;77047;[-1.498578, 43.479191];;FRSIGESIGE15361;FR*SOD*E*CAPS*28*1*2*_;;;;;;;;;;;;;;;;;;;50051754383387;;;;;;;;;-1.466206;43.31488;14114;Sancy;; +;Vulco Truck Services;;;;;;GCA ERAGNY;FRS47PMB4710913;FR*SOD*S*LYON*78*4*_*_;CHALAIS - AVENUE DE LA GARE;;FACE 9 RUE DU PLANIT;77046;[-1.455062, 43.499332];;FRSIGESIGE15351;FR*SOD*E*CAPS*55*1*2*_;;;;;;;;;;;;;;;;;;;50071723688440;;;;;;;;;-1.554001;43.265263;14310;Soisy-Bouy;; +;Yacht Club International Bormes-Les-Mimosas;;;;;;Chargepoint;FRS47PMB4710912;FR*SOD*S*LYON*78*1*_*_;BAIGNES-SAINTE RADEGONDE - PARKING MAIRIE - RAMPE SAINT NICOLAS;;PARKING - 26 RUE DE BARTHELEMY;77045;[-1.466206, 43.494068];;FRSIGESIGE18421;FR*SOD*E*CAPS*29*1*1*_;;;;;;;;;;;;;;;;;;;50080553134535;;;;;;;;;-0.398105;43.483562;14220;Seine-Port;; +;ZAC Le Noyer aux Perdrix;;;;;;Bornes CIVP;FRS47PMB4710612;FR*SOD*S*LYON*79*1*_*_;VARS - PLACE DU PILORI;;ENTRÉE DU PARKING DE LA PISCINE;77043;[-1.554001, 43.477989];;FRSIGESIGE18441;FR*SOD*E*CAPS*29*1*2*_;;;;;;;;;;;;;;;;;;;24165991310706;;;;;;;;;-1.563354;43.486942;14360;Sivry-Courtry;; +;Villeneuve-sous-Pymont;;;;;;barreiros;FRS47PMB4710011;FR*SOD*S*LYON*79*4*_*_;VALENCE - PIECE DU PONT LE BOURG RD 739 ROUTE DE MANSLE;;ROUTE DE LÉTANG DE LA TOUR;77475;[-0.398105, 43.302116];;FRSIGESIGE18431;FR*SOD*E*CAPS*30*1*1*_;;;;;;;;;;;;;;;;;;;30000520394690;;;;;;;;;-1.59103;43.477184;14780;Savigny-le-Temple;; +;Vivo Engen Hager;;;;;;Réseau de recharge Viviez;FRS47PMB4710511;FR*SOD*S*LYON*79*3*_*_;ANSAC-SUR-VIENNE - PLACE DE LA MAIRIE;;RUE DES VIGNES;77493;[-1.563354, 43.480667];;FRSIGESIGE18451;FR*SOD*E*CAPS*30*1*2*_;;;;;;;;;;;;;;;;;;;01540810395430;;;;;;;;;-0.281022;43.500191;14330;Signy-Signets;; +;Vivo Engen IES;;;;;;Réseau e-Totem Infrastructures;FRS47PMB4710512;FR*SOD*S*LYON*79*2*_*_;VARS - PARKING DES COLES;;RUE DE CREUSE;77490;[-1.59103, 43.437927];;FRSIGESIGE18411;FR*SOD*E*CAPS*21*1*1*_;;;;;;;;;;;;;;;;;;;30000131107812;;;;;;;;;-1.509453;43.482128;14111;Cavaillon;; +;Vivo Engen Hager 7 kW avec Partenariat;;;;;;Enedis;FRS47PMB4710412;FR*SOD*S*LYON*80*2*_*_;VERDILLE - RUE DE LOCEAN;;ROUTE DES AULNETTES;77486;[-0.281022, 43.234398];;FRSIGESIGE24912;FR*SOD*E*CAPS*21*1*2*_;;;;;;;;;;;;;;;;;;;30000140351712;;;;;;;;;-0.352839;43.437332;14530;Fillière;; +;Vivo Engen Hager 22 kW avec Partenariat;;;;;;MAIRIE DE SAINT-GENEST;FRS47PMB4710411;FR*SOD*S*LYON*80*4*_*_;COTEAUX DU BLANZACAIS - PARKING DU CINEMA;;RUE DU BOIS DES GAULES;77482;[-1.509453, 43.446564];;FRSIGESIGE19612;FR*SOD*E*CAPS*20*1*2*_;;;;;;;;;;;;;;;;;;;50027296451163;;;;;;;;;-0.384321;43.334591;14930;Pernes;; +;Vito Corse;;;;;;BPH GEOMETRE;FRS47PMB4710312;FR*SOD*S*LYON*80*3*_*_;BIARRITZ - PARKING BEAURIVAGE;;RUE DU DOCTEUR CAMESCASE;77480;[-0.352839, 43.288059];;FRSIGESIGE25111;FR*SOD*E*CAPS*20*1*1*_;;;;;;;;;;;;;;;;;;;50086048089566;;;;;;;;;-1.350787;43.432129;14830;La Crèche;; +;Vinci Facilities Picardie;;;;;;AVIVA;FRS47PMB4710311;FR*SOD*S*LYON*80*1*_*_;BAYONNE - RUE LASSEGUETTE;;RUE CREUSE;77477;[-0.384321, 43.31488];;FRSIGESIGE34011;FR*SOD*E*CAPS*10*1*2*_;;;;;;;;;;;;;;;;;;;50088222892003;;;;;;;;;-1.138647;43.526859;14150;Bazoches-les-Gallerandes;; +;Volvo, Carcassonne;;;;;;ITM MARENNES;FRS47PMB4710212;FR*SOD*S*LYON*75*1*_*_;BENEJACQ - IMPASSE DE LA FONTAINE;;CHEMIN DE LESSART;77410;[-1.350787, 43.265263];;FRSIGESIGE33411;FR*SOD*E*CAPS*11*1*1*_;;;;;;;;;;;;;;;;;;;04193600616917;;;;;;;;;-1.548945;43.260807;14690;Embry;; +;Volvo, Béziers;;;;;;CARROSSERIE DEMARTHE;FRS47PMB4710211;FR*SOD*S*LYON*75*4*_*_;BEDOUS - RUE GAMBETTA PARKING NORD;;ROUTE DU RECULET;77469;[-1.138647, 43.483562];;FRSIGESIGE33512;FR*SOD*E*CAPS*11*1*2*_;;;;;;;;;;;;;;;;;;;01102025976337;;;;;;;;;-1.546907;43.48389;14110;Oignies;; +;Volvo Saint Brieuc;;;;;;FRESHMILE;FRS47PMB4710111;FR*SOD*S*LYON*74*3*_*_;BAYONNE - SQUARE LEO POUZAC;;SADI CARNOT;77437;[-1.548945, 43.486942];;FRSIGESIGE33511;FR*SOD*E*CAPS*12*1*1*_;;;;;;;;;;;;;;;;;;;30000130895836;;;;;;;;;-1.512033;43.49427;14420;Melsheim;; +;Volvo Perpignan;;;;;;Ford Agen- Groupe Malbet;FRS47PMB4710112;FR*SOD*S*LYON*74*4*_*_;BAYONNE - QUAI DE LESSEPS;;ORPHIN GRANDE RUE;77435;[-1.546907, 43.477184];;FRSIGESIGE33612;FR*SOD*E*CAPS*12*1*2*_;;;;;;;;;;;;;;;;;;;30002540571041;;;;;;;;;-1.515348;43.499855;14350;Trieux;; +;Volkswagen Lunel;;;;;;e-motum;FRS47PMB4710012;FR*SOD*S*LYON*67*2*_*_;BAYONNE - RUE JULES LABAT;;RUE GUY LE ROUGE;77432;[-1.512033, 43.500191];;FRSIGESIGE33611;FR*SOD*E*CAPS*13*1*2*_;;;;;;;;;;;;;;;;;;;67334E10806039;;;;;;;;;-1.522298;43.220955;14920;Seltz;; +;Vivre En Provence Immobilier;;;;;;Wingenerhof;FRS47PMB478511;FR*SOD*S*LYON*67*1*_*_;BAYONNE - POLO BEYRIS;;PLACE DU GROS BILLOT;77428;[-1.515348, 43.482128];;FRSIGESIGE33711;FR*SOD*E*CAPS*13*1*1*_;;;;;;;;;;;;;;;;;;;500867732704021;;;;;;;;;-0.506672;43.474678;14810;Gassin;; +;i-Station Lidl DR15;;;;;;SCI HORUS;FRS47PMB478411;FR*SOD*S*LYON*68*1*_*_;BAYONNE - PLACE DES GASCONS;;RUE DE CHARLEMAGNE;77426;[-1.522298, 43.437332];;FRSIGESIGE33712;FR*SOD*E*CAPS*14*1*1*_;;;;;;;;;;;;;;;;;;;50042922537362;;;;;;;;;-1.550943;43.103352;14590;Saleilles;; +;ÉOLIBERTY;;;;;;RICOME ET SADOUL AXA FRANCE;FRS47PMB475911;FR*SOD*S*LYON*68*2*_*_;BAYONNE - PLACE ALBRET;;ROUTE DES PONTS;77501;[-0.506672, 43.334591];;FRSIGESIGE33812;FR*SOD*E*CAPS*14*1*2*_;;;;;;;;;;;;;;;;;;;50004281846023;;;;;;;;;-1.52123;43.142101;14620;Saint-Pierre-la-Cour;; +;Zone commerciale Issoire;;;;;;SATUJO;FRS47PMB478312;FR*SOD*S*LYON*69*2*_*_;BIARRITZ - PARKING FLOQUET;;RUE DES MOULINS;77508;[-1.550943, 43.432129];;FRSIGESIGE33811;FR*SOD*E*CAPS*16*1*1*_;;;;;;;;;;;;;;;;;;;25898986970584;;;;;;;;;-0.689243;43.345978;31470;Grande-Synthe;; +;i-Station Lidl DR08;;;;;;RSDA mobility;FRS47PMB477211;FR*SOD*S*LYON*69*1*_*_;BILLERE - ALLEE MONTESQUIEU;;PLACE COMTÉ DE GRASSE;77352;[-1.52123, 43.526859];;FRSIGESIGE33912;FR*SOD*E*CAPS*16*1*2*_;;;;;;;;;;;;;;;;;;;25700000278541;;;;;;;;;-1.51197;43.534473;31750;La Rivière-Saint-Sauveur;; +;i-Station Lidl DR04;;;;;;Camping des graniers;FRS47PMB477112;FR*SOD*S*LYON*70*1*_*_;BIARRITZ - PARKING GAMBETTA;;AVENUE DE LUMINY;77534;[-0.689243, 43.260807];;FRSIGESIGE33911;FR*SOD*E*CAPS*17*1*1*_;;;;;;;;;;;;;;;;;;;30002590342493;;;;;;;;;-1.528599;43.31702;31510;Touques;; +;evzen – Bornes Privées ouvertes au public gratuites;;;;;;EURO TAXI LINE;FRS47PMB477111;FR*SOD*S*LYON*72*3*_*_;BIDART - PARKING DU LAVOIR;;240-300 CHEMIN DE SAINT-JEAN DU DÉSERT;77531;[-1.51197, 43.48389];;FRSIGESIGE34012;FR*SOD*E*CAPS*17*1*2*_;;;;;;;;;;;;;;;;;;;50045963834221;;;;;;;;;-1.542654;43.095051;31550;Beauvais;; +;e-station Lidl DR19;;;;;;SYNETHIS - LA SEYNE SUR MER;FRS47PMB477011;FR*SOD*S*LYON*72*2*_*_;BORDES - RTE DE LOURDES;;AV. SALVADOR ALLENDE;77528;[-1.528599, 43.49427];;FRSIGESIGE34112;FR*SOD*E*CAPS*18*1*1*_;;;;;;;;;;;;;;;;;;;30000131249775;;;;;;;;;-0.362168;43.275677;31160;Évreux;; +;i-Station Lidl DR05;;;;;;SCI Tombelaine;FRS47PMB476912;FR*SOD*S*LYON*72*4*_*_;BASSUSSARY - PLACE BARTHELEMY;;RUE DE BRETEUIL;77527;[-1.542654, 43.499855];;FRSIGESIGE33312;FR*SOD*E*CAPS*18*1*2*_;;;;;;;;;;;;;;;;;;;031436252860;;;;;;;;;-1.20519;43.464344;31600;Blois;; +;Ville d'Epernay Voirie;;;;;;ALTERBASE86;FRS47PMB476911;FR*SOD*S*LYON*72*1*_*_;BIZANOS - RUE GEORGES CLEMENCEAU;;AVENUE DE SAINT LOUIS;77524;[-0.362168, 43.220955];;FRSIGESIGE34111;FR*SOD*E*CAPS*19*1*2*_;;;;;;;;;;;;;;;;;;;50081131893705;;;;;;;;;-0.429515;42.977497;31440;Aurillac;; +;Ville de Basse-Ham;;;;;;PTBG;FRS47PMB476812;FR*SOD*S*LYON*73*4*_*_;BILLERE - AVENUE DU TONKIN;;268 CHEMIN DE MORGIOU;77522;[-1.20519, 43.474678];;FRSIGESIGE34212;FR*SOD*E*CAPS*19*1*1*_;;;;;;;;;;;;;;;;;;;50027152154409;;;;;;;;;-0.25735;43.523514;31480;Armbouts-Cappel;; +;Ville de Woippy;;;;;;CAMPING DU PERROQUET;FRS47PMB476811;FR*SOD*S*LYON*73*2*_*_;BIDARRAY - PARKING ARTETXEA;;RUE DES 3 FRÈRES BARTHÉLÉMY;77519;[-0.429515, 43.103352];;FRSIGESIGE34211;FR*SOD*E*CAPS*31*1*1*_;;;;;;;;;;;;;;;;;;;50020216042208;;;;;;;;;-1.618273;42.987434;31670;Cuincy;; +;Villas Mandarine;;;;;;CAMPING DE LA PLAGE;FRS47PMB476711;FR*SOD*S*LYON*73*1*_*_;BIDACHE - ALLEE CORISANDE;;18 AVENUE PLEIN SUD;77518;[-0.25735, 43.142101];;FRSIGESIGE34312;FR*SOD*E*CAPS*31*1*2*_;;;;;;;;;;;;;;;;;;;01377134479996;;;;;;;;;-0.410083;43.324577;31270;Lens;; +;Ville d'Arveyres;;;;;;MAIRIE DES MOERES;FRS47PMB476712;FR*SOD*S*LYON*73*3*_*_;BIARRITZ - RUE RAOUL FOLLEREAU;;BOULEVARD VESSIOT - PARKING DES GRANGES;77517;[-1.618273, 43.345978];;FRSIGESIGE34311;FR*SOD*E*CAPS*32*1*1*_;;;;;;;;;;;;;;;;;;;3,00E+13;;;;;;;;;-0.475503;43.323635;31570;Mont-Saint-Aignan;; +;Ville d'Arches;;;;;;BORNES LA SOURCE;FRS47PMB476611;FR*SOD*S*LYON*74*2*_*_;BIARRITZ - RUE AUGUSTA;;RUE DUMONT DURVILLE;77516;[-0.410083, 43.534473];;FRSIGESIGE34411;FR*SOD*E*CAPS*42*1*2*_;;;;;;;;;;;;;;;;;;;01212590396044;;;;;;;;;-0.715234;43.449062;31180;Wasquehal;; +;Ville Fontainebleau;;;;;;SCEA LES FUIES;FRS47PMB476612;FR*SOD*S*LYON*81*1*_*_;ANGLET - PLAINE DU MAHARIN;;1 BOULEVARD DE LA RESISTANCE;77512;[-0.475503, 43.31702];;FRSIGESIGE34412;FR*SOD*E*CAPS*43*1*1*_;;;;;;;;;;;;;;;;;;;17148625120203;;;;;;;;;-0.249037;43.222603;31870;Corre;; +;Ville de Bergheim;;;;;;Ecocharge77;FRS47PMB476512;FR*SOD*S*LYON*81*3*_*_;ANGLET - PARKING SERVICE TECHNIQUE;;PLAGE DE LESTAQUE;77377;[-0.715234, 43.095051];;FRSIGESIGE34511;FR*SOD*E*CAPS*44*1*2*_;;;;;;;;;;;;;;;;;;;30000151016382;;;;;;;;;-0.615299;43.316139;31390;Pusey;; +;Ville de Gandrange;;;;;;ANYOS;FRS47PMB476511;FR*SOD*S*LYON*90*2*_*_;ARCANGUES - PARKING DU TRINQUET;;PLACE DES HÉROS;77433;[-0.249037, 43.275677];;FRSIGESIGE34512;FR*SOD*E*CAPS*44*1*1*_;;;;;;;;;;;;;;;;;;;1173805914612;;;;;;;;;-0.744628;43.230892;31860;Lyoffans;; +;Ville de Frohmuhl;;;;;;Sanou électricité;FRS47PMB476412;FR*SOD*S*LYON*88*1*_*_;ARBUS - PLACE MAIRIE;;RUE AUPHAN;77398;[-0.615299, 43.464344];;FRSIGESIGE34612;FR*SOD*E*CAPS*45*1*1*_;;;;;;;;;;;;;;;;;;;19549927514982;;;;;;;;;-1.490235;43.487186;31490;Échenans-sous-Mont-Vaudois;; +;Ville de Faulquemont;;;;;;Carrefour Contact Saint-Martin-de-Bellevue;FRS47PMB476411;FR*SOD*S*LYON*56*2*_*_;ARBONNES - PARKING MAIRIE;;AVENUE DE MAZARGUES;77386;[-0.744628, 42.977497];;FRSIGESIGE33412;FR*SOD*E*CAPS*45*1*2*_;;;;;;;;;;;;;;;;;;;50060146046400;;;;;;;;;-0.428099;43.411995;31880;Vesoul;; +;Ville de Farébersviller;;;;;;Carrefour Contact Saint-Malo;FRS47PMB476311;FR*SOD*S*LYON*88*2*_*_;ANGLET - PARKING IZADIA;;AVENUE ELSA TRIOLET;77385;[-1.490235, 43.523514];;FRSIGESIGE33311;FR*SOD*E*CAPS*46*1*1*_;;;;;;;;;;;;;;;;;;;02423154738468;;;;;;;;;-0.392011;43.381123;31330;Rioz;; +;Ville de Dourges;;;;;;Carrefour Contact Pernes;FRS47PMB476312;FR*SOD*S*LYON*88*3*_*_;AREN - RUE CARRERE;;BOULEVARD BOISSON;77439;[-0.428099, 42.987434];;FRSIGESIGE31711;FR*SOD*E*CAPS*46*1*2*_;;;;;;;;;;;;;;;;;;;02459623625072;;;;;;;;;-0.397803;43.22081;31430;La Chapelle-lès-Luxeuil;; +;Ville de Crégy les Meaux;;;;;;Carrefour Contact Périgny;FRS47PMB476211;FR*SOD*S*LYON*89*2*_*_;ANGLET - PARKING QUINTAOU;;RUE GUSTAVE SALICIS;77368;[-0.392011, 43.324577];;FRSIGESIGE32511;FR*SOD*E*CAPS*47*1*1*_;;;;;;;;;;;;;;;;;;;02422720585443;;;;;;;;;-0.112355;43.323807;31290;Combeaufontaine;; +;Ville de Château-Salins;;;;;;Carrefour Contact La Crèche;FRS47PMB476212;FR*SOD*S*LYON*89*1*_*_;ANGLET - PARKING PAUL COURBIN;;AVENUE DE LA VISTE, PARKING DU PARC ANTOINE BRÉGANTE;77361;[-0.397803, 43.323635];;FRSIGESIGE31912;FR*SOD*E*CAPS*47*1*2*_;;;;;;;;;;;;;;;;;;;02459478906729;;;;;;;;;-0.478445;43.339058;31360;Frotey-lès-Vesoul;; +;Ville de Bruxelles;;;;;;Carrefour Contact Bazoche Les Gallerandes;FRS47PMB476112;FR*SOD*S*LYON*89*4*_*_;ANGLET - PARKING DES DAUPHINS;;RUE FERNAND PAURIOL;77360;[-0.112355, 43.449062];;FRSIGESIGE32012;FR*SOD*E*CAPS*49*1*1*_;;;;;;;;;;;;;;;;;;;02455282090221;;;;;;;;;-1.350442;43.415913;31320;Colomiers;; +;Ville de Bois-Bernard;;;;;;SAS LARGO;FRS47PMB476111;FR*SOD*S*LYON*89*3*_*_;BOSDARROS - ROUTE DU VILLAGE;;BOULEVARD PAUL DOUMER;77405;[-0.478445, 43.222603];;FRSIGESIGE32011;FR*SOD*E*CAPS*49*1*2*_;;;;;;;;;;;;;;;;;;;02483357344589;;;;;;;;;-1.093103;43.370914;31110;Riom;; +;Villars;;;;;;OMEO;FRS47PMB476011;FR*SOD*S*LYON*90*1*_*_;BARDOS - PARKING DU STADE;;AVENUE DE LA CÔTE BLEUE;77359;[-1.350442, 43.316139];;FRSIGESIGE32111;FR*SOD*E*CAPS*50*1*2*_;;;;;;;;;;;;;;;;;;;02410709007601;;;;;;;;;-1.386753;43.468288;31190;Saint-Hilaire-de-Brethmas;; +;Van Genechten Angoulême - Clientèle;;;;;;ANOSTEKE;FRS47PMB476012;FR*SOD*S*LYON*90*4*_*_;ARUDY - RUE DES ECOLES;;BOULEVARD DU LION NOIR;77357;[-1.093103, 43.230892];;FRSIGESIGE32112;FR*SOD*E*CAPS*50*1*1*_;;;;;;;;;;;;;;;;;;;02455716243681;;;;;;;;;-0.616958;43.344501;31420;Aléria;; +;Versailles;;;;;;CITROEN ET DS STORE - REIMS;FRS47PMB475912;FR*SOD*S*LYON*90*3*_*_;ASSON - AVENUE DES PYRENEES;;CHEMIN DE LA MILLIÈRE À ST MENET;77455;[-1.386753, 43.487186];;FRSIGESIGE32212;FR*SOD*E*CAPS*51*1*2*_;;;;;;;;;;;;;;;;;;;02410853725448;;;;;;;;;-0.850575;43.12558;31660;Figari;; +;Village de Montmarsis;;;;;;FIREX;FRS47PMB477312;FR*SOD*S*LYON*81*4*_*_;ASCAIN - PARKING XURIO;;317 BOULEVARD ROMAIN ROLLAND;77403;[-0.616958, 43.411995];;FRSIGESIGE32211;FR*SOD*E*CAPS*51*1*1*_;;;;;;;;;;;;;;;;;;;02410564289815;;;;;;;;;-0.8925;43.369244;31580;Vendeuvre-sur-Barse;; +;Village Mobilité;;;;;;SCI DU 151178;FRS47PMB477411;FR*SOD*S*LYON*91*1*_*_;ARZACQ - PLACE MARCADIEU;;32 AVENUE DE LA PETITE SUISSE;77459;[-0.850575, 43.381123];;FRSIGESIGE32312;FR*SOD*E*CAPS*53*1*2*_;;;;;;;;;;;;;;;;;;;02488133031516;;;;;;;;;-0.760931;43.322563;31460;Hazebrouck;; +;Village Club Cévéo;;;;;;SCI FCJ;FRS47PMB477412;FR*SOD*S*LYON*91*3*_*_;ARTIGUELOUVE - PLACE DE LA MAIRIE;;RUE RENÉ SEYSSAUD;77458;[-0.8925, 43.22081];;FRSIGESIGE32311;FR*SOD*E*CAPS*53*1*1*_;;;;;;;;;;;;;;;;;;;02465991207523;;;;;;;;;-0.25093;43.445972;31410;Nangis;; +;Vessely Quincaillerie;;;;;;Vollmer;FRS47PMB477812;FR*SOD*S*LYON*91*2*_*_;ARETTE - ROUTE DISSOR;;RUE MENPENTI;77457;[-0.760931, 43.323807];;FRSIGESIGE32412;FR*SOD*E*CAPS*43*1*2*_;;;;;;;;;;;;;;;;;;;02468017257490;;;;;;;;;-0.342253;43.279404;31560;Castelnau-d'Estrétefonds;; +;Ville de Saverne;;;;;;TRISCOS LAVAGE;FRS47PMB478311;FR*SOD*S*LYON*91*4*_*_;ARTIGUELOUTAN - RUE DE LA VALLEE DE LOUSSE;;BOULEVARD ANTOINE VABRE;77443;[-0.25093, 43.339058];;FRSIGESIGE32411;FR*SOD*E*CAPS*42*1*1*_;;;;;;;;;;;;;;;;;;;02446454304544;;;;;;;;;-0.630113;43.429482;31530;Beaune-la-Rolande;; +;Ville de St-Priest - public;;;;;;ITM NETTO TRIEUX;FRS47PMB478212;FR*SOD*S*LYON*92*1*_*_;ARTHEZ DE BEARN - PLACE DU PALAIS;;CHEMIN DU FONTAINIEU;77456;[-0.342253, 43.415913];;FRSIGESIGE32512;FR*SOD*E*CAPS*32*1*2*_;;;;;;;;;;;;;;;;;;;02459334188437;;;;;;;;;-1.420695;43.285931;31350;La Turbie;; +;Ville de Retonfey;;;;;;SVI;FRS47PMB478211;FR*SOD*S*LYON*92*3*_*_;ARETTE LA PIERRE SAINT MARTIN - PARKING OFFICE DE TOURISME;;PLACE DES PORROTS;77447;[-0.630113, 43.370914];;FRSIGESIGE32611;FR*SOD*E*CAPS*41*1*2*_;;;;;;;;;;;;;;;;;;;02400723480599;;;;;;;;;-0.264224;43.382233;31800;Bazas;; +;Ville de Saint Florentin;;;;;;TOYOTA REIMS;FRS47PMB478111;FR*SOD*S*LYON*92*2*_*_;BOUCAU - PLACE SEMARD;;ROUTE DE LA PLAGE;77453;[-1.420695, 43.468288];;FRSIGESIGE33211;FR*SOD*E*CAPS*33*1*2*_;;;;;;;;;;;;;;;;;;;02492764000205;;;;;;;;;-0.199239;43.245216;31120;Le Boisle;; +;Ville de Rosenwiller;;;;;;Commune de Seltz;FRS47PMB478112;FR*SOD*S*LYON*92*4*_*_;LARUNS - PARKING MEDIATHEQUE;;PLACE HENRI QUEUILLE;77445;[-0.264224, 43.344501];;FRSIGESIGE32612;FR*SOD*E*CAPS*33*1*1*_;;;;;;;;;;;;;;;;;;;02498842147897;;;;;;;;;-0.348866;43.339203;31310;Le Bourget-du-Lac;; +;Ville de Riquewihr;;;;;;AD BAUDUCEL;FRS47PMB478012;FR*SOD*S*LYON*88*4*_*_;LONS - MAIL DE COUBERTIN;;PLACE MARCEL PAGNOL;77451;[-0.199239, 43.12558];;FRSIGESIGE32711;FR*SOD*E*CAPS*34*1*2*_;;;;;;;;;;;;;;;;;;;02409695983489;;;;;;;;;-0.579099;43.361061;31370;Aoste;; +;Ville de Vaudreuille;;;;;;PFMV - GRANDE SYNTHE;FRS47PMB478011;FR*SOD*S*LYON*87*2*_*_;LONS - AVENUE DU MOULIN;;A89 - AIRE DE LA CORRÈZE;84035;[-0.348866, 43.369244];;FRSIGESIGE32712;FR*SOD*E*CAPS*34*1*1*_;;;;;;;;;;;;;;;;;;;02467872539056;;;;;;;;;-0.470634;43.181904;31520;Saint-Lô;; +;Ville de Trémery;;;;;;CLUB HIPPIQUE DE NICE;FRS47PMB477912;FR*SOD*S*LYON*87*3*_*_;LEMBEYE - PLACE MARCADIEU;;A9 - AIRE DE BÉZIERS MONTBLANC NORD;74282;[-0.579099, 43.322563];;FRSIGESIGE32812;FR*SOD*E*CAPS*35*1*1*_;;;;;;;;;;;;;;;;;;;02485672828488;;;;;;;;;-0.355827;43.231102;31340;Bessoncourt;; +;Ville de Meudon - Parking pointe de Trivaux;;;;;;Last Mile Solutions;FRS47PMB477911;FR*SOD*S*LYON*87*1*_*_;LASSEUBE - CHEMIN DU MOUROU;;A9 - AIRE DE BÉZIERS MONTBLANC SUD;62652;[-0.470634, 43.445972];;FRSIGESIGE32811;FR*SOD*E*CAPS*35*1*2*_;;;;;;;;;;;;;;;;;;;02494500614209;;;;;;;;;-1.256211;43.375095;31590;Caen;; +;Ville de Meaux;;;;;;SARL LAFOURCADE;FRS47PMB477811;FR*SOD*S*LYON*82*2*_*_;LOUHOSSOA - PARKING DE LECOLE;;AUTOROUTE A35;79048;[-0.355827, 43.279404];;FRSIGESIGE32912;FR*SOD*E*CAPS*36*1*1*_;;;;;;;;;;;;;;;;;;;02446164868901;;;;;;;;;-0.391359;43.360828;31810;Yzeron;; +;Ville de Massiac;;;;;;Reseau_IRVE_SIED70;FRS47PMB477711;FR*SOD*S*LYON*82*1*_*_;LARCEVEAU - PLACE DE LA MAIRIE;;A75 - AIRE DE LAFAYETTE LORLANGES;45025;[-1.256211, 43.429482];;FRSIGESIGE32911;FR*SOD*E*CAPS*36*1*2*_;;;;;;;;;;;;;;;;;;;02446309586760;;;;;;;;;-1.665693;43.360764;31230;Saint-Aubin-le-Cloud;; +;Ville de Lorgues;;;;;;A.L.R;FRS47PMB477712;FR*SOD*S*LYON*82*3*_*_;LAHONCE - PLACE DES COMMERCES;;A10 - AIRE DE VAL NEUVY SENS ORLÉANS PARIS;62293;[-0.391359, 43.285931];;FRSIGESIGE33012;FR*SOD*E*CAPS*37*1*1*_;;;;;;;;;;;;;;;;;;;02480897140944;;;;;;;;;-0.163053;43.231609;31220;Saint-Maixent-l'École;; +;Ville de Hagondange;;;;;;FRIENDLY AUBERGE;FRS47PMB477611;FR*SOD*S*LYON*82*4*_*_;LACQ - CHEMIN DU MOULIN;;A89 - AIRE DU HAUT FOREZ SUD;62637;[-1.665693, 43.382233];;FRSIGESIGE33011;FR*SOD*E*CAPS*37*1*2*_;;;;;;;;;;;;;;;;;;;50073764094422;;;;;;;;;-1.446297;43.558586;31830;Saint-Loup-Lamairé;; +;Ville de Golbey;;;;;;GARAGE FORRET;FRS47PMB477612;FR*SOD*S*LYON*83*1*_*_;LAAS - PLACE DE LEGLISE;;A89 - STATION HAUT FOREZ NORD;59268;[-0.163053, 43.245216];;FRSIGESIGE33112;FR*SOD*E*CAPS*38*1*2*_;;;;;;;;;;;;;;;;;;;02489869645906;;;;;;;;;-0.510176;43.388065;31380;Saint-Jean-de-Thouars;; +;Ville de Neufchâteau;;;;;;SCI LA COLLINE;FRS47PMB477511;FR*SOD*S*LYON*83*4*_*_;MAULEON - PARKING DU JEU DE PAUME;;A72 - AIRES DE SERVICE DE LA PLAINE DU FOREZ OUEST;67287;[-1.446297, 43.339203];;FRSIGESIGE33111;FR*SOD*E*CAPS*38*1*1*_;;;;;;;;;;;;;;;;;;;02490303799317;;;;;;;;;-0.242255;43.346947;31140;Saint-Hilaire-la-Palud;; +;Ville de Moyenmoutier;;;;;;ATRACHATA;FRS47PMB477512;FR*SOD*S*LYON*83*2*_*_;NAVARRENX - PLACE DU FOIRAIL;;AUTOROUTE DU NORD;54533;[-0.510176, 43.361061];;FRSIGESIGE33212;FR*SOD*E*CAPS*39*1*1*_;;;;;;;;;;;;;;;;;;;02486106981851;;;;;;;;;-0.877405;43.368279;31210;Saint-André-sur-Sèvre;; +;Ville de Montigny Lès Metz;;;;;;LE REVE DE JANINE;FRS47PMB478412;FR*SOD*S*LYON*83*3*_*_;MORLAAS - PARKING COMMUNAUTE DE COMMUNES DU NORD-EST BEARN;;A63 - AIRE DE LOCÉAN - EST;32035;[-0.242255, 43.181904];;FRSIGESIGE34611;FR*SOD*E*CAPS*39*1*2*_;;;;;;;;;;;;;;;;;;;02474674275444;;;;;;;;;-0.013904;43.306767;06150;Pamproux;; +;Toyota - Besançon;;;;;;Gamba et Rota;FRS47PMB475511;FR*SOD*S*LYON*84*2*_*_;NAVAILLES ANGOS - RUE DU BOURG;;RUE DE LELB;67463;[-0.877405, 43.231102];;FRSIGESIGE34712;FR*SOD*E*CAPS*40*1*1*_;;;;;;;;;;;;;;;;;;;02437626519087;;;;;;;;;-1.400544;43.385555;06400;Nueil-les-Aubiers;; +;Toyota - Forbach;;;;;;CCFI;FRCPSPCAPS2811;FR*SOD*S*LYON*84*3*_*_;MOURENX - BOULEVARD DE LA REPUBLIQUE;;Rue Raymond Poincare, 55300 Sampigny;83065;[-0.013904, 43.375095];;FRSIGESIGE34711;FR*SOD*E*CAPS*40*1*2*_;;;;;;;;;;;;;;;;;;;02403907272098;;;;;;;;;-1.400397;43.424664;06130;Rom;; +;Toyota - Reims;;;;;;BornEco;FRCPSPCAPS2612;FR*SOD*S*LYON*84*4*_*_;MOUGUERRE - PARKING HAITZ ONDO;;Rue du Tramway, 41500 MUIDES SUR LOIRE;66189;[-1.400544, 43.360828];;FRSIGESIGE36912;FR*SOD*E*CAPS*41*1*1*_;;;;;;;;;;;;;;;;;;;02460926084261;;;;;;;;;-0.387803;43.252918;06600;Parthenay;; +;RESEDA;;;;;;SARL PERROT;FRCPSPCAPS2212;FR*SOD*S*LYON*84*1*_*_;MORLAAS - PLACE DE LA TOUR;;Rue de la poste, 37110 Saint-Nicolas-des-Motets;53247;[-1.400397, 43.360764];;FRSIGESIGE36312;FR*SOD*E*CAPS*10*1*1*_;;;;;;;;;;;;;;;;;;;02476845042505;;;;;;;;;-0.273733;43.285103;51390;Pas-de-Jeu;; +;Automobile de l'Est;;;;;;Le boisle;FRCPSPCAPS2211;FR*SOD*S*LYON*85*1*_*_;MONTAUT - RUE DES ANNETTES;;PLAINE DE LA TOUR, 38390 Montalieu-Vercieu;59271;[-0.387803, 43.231609];;FRSIGESIGE36412;FR*SOD*E*CAPS*8*1*1*_;;;;;;;;;;;;;;;;;;;02447033175656;;;;;;;;;-1.428592;43.551067;45290;Plaine-et-Vallées;; +;KIA TROYES - Groupe Amplitude;;;;;;LODMI;FRCPSPCAPS2312;FR*SOD*S*LYON*85*3*_*_;MONTARDON - CHEMIN LANOTS PARKING;;Place Jacques Bailleux, 55300 Saint-Mihiel;14536;[-0.273733, 43.558586];;FRSIGESIGE36411;FR*SOD*E*CAPS*55*1*1*_;;;;;;;;;;;;;;;;;;;02495947794010;;;;;;;;;-1.772589;43.266113;38340;Prahecq;; +;Mazda ETAMPES - GARAGE ST PIERRE;;;;;;GMK Motorsport;FRCPSPCAPS2311;FR*SOD*S*LYON*85*4*_*_;MONEIN - JARDIN PUBLIC;;Place de l'église, 41240 BEAUCE LA ROMAINE;14699;[-1.428592, 43.388065];;FRSIGESIGE36511;FR*SOD*E*CAPS*3*1*2*_;;;;;;;;;;;;;;;;;;;02474529557688;;;;;;;;;-1.781185;43.379723;14730;Champdeniers;; +;MAZDA AVIGNON;;;;;;Electromaps;FRCPSPCAPS2411;FR*SOD*S*LYON*85*2*_*_;MAZEROLLES - ROUTE DE ARZACQ D32;;Place de L Hôtel de ville, 37290 Preuilly-sur-Claise;60057;[-1.772589, 43.346947];;FRSIGESIGE36512;FR*SOD*E*CAPS*6*1*2*_;;;;;;;;;;;;;;;;;;;02406367474615;;;;;;;;;-1.244016;43.178398;21250;Châtillon-sur-Thouet;; +;SU gunderschoffen - SAS SODIHARDT;;;;;;EIZMENDI TRAITEUR EVENEMENTS;FRCPSPCAPS2412;FR*SOD*S*LYON*86*1*_*_;MAZERES LEZONS - RUE DU GENERAL DE GAULLE;;Place BOUCHARD, 37220 L'ILE BOUCHARD;27229;[-1.781185, 43.368279];;FRSIGESIGE36612;FR*SOD*E*CAPS*1*1*1*_;;;;;;;;;;;;;;;;;;;02401012916009;;;;;;;;;-1.303562;43.400017;73500;La Forêt-sur-Sèvre;; +;SPIE CITYNETWORKS;;;;;;ELEN DISTRIBUTION;FRCPSPCAPS2512;FR*SOD*S*LYON*86*3*_*_;LA BASTIDE DE CLAIRENCE - PARKING RD10;;Rue des Tanneries, 55100 Verdun;41018;[-1.244016, 43.306767];;FRSIGESIGE36611;FR*SOD*E*CAPS*1*1*2*_;;;;;;;;;;;;;;;;;;;02498986865611;;;;;;;;;-1.608876;43.403503;21220;La Peyratte;; +;KIA Lons - EDEN AUTO;;;;;;Lacmeca;FRCPSPCAPS2511;FR*SOD*S*LYON*86*2*_*_;JURANCON - RUE LOUIS BARTHOU;;sise Route de Bel Air, 61700 Domfront;15014;[-1.303562, 43.385555];;FRSIGESIGE36712;FR*SOD*E*CAPS*2*1*1*_;;;;;;;;;;;;;;;;;;;02411432598799;;;;;;;;;-0.052827;43.313419;72400;L'Absie;; +;Mazda ANNECY - MONT BLANC AUTOMOBILES;;;;;;MAS DU TERME;FRCPSPCAPS2611;FR*SOD*S*LYON*86*4*_*_;CIBOURE - PARKING MARINELA - AVENUE FRANCOIS MITERRAND;;Rue des Chaucheux, 39100 Foucherans;59016;[-1.608876, 43.424664];;FRSIGESIGE36711;FR*SOD*E*CAPS*2*1*2*_;;;;;;;;;;;;;;;;;;;02499710456323;;;;;;;;;-0.370771;43.116352;22350;Lageon;; +;SDC CENTRE MEDICAL ARTZAMENDI;;;;;;Réseau IRVE TE90;FRCPSPCAPS812;FR*SOD*S*LYON*87*4*_*_;ESPOEY - ROUTE DE LOURDES TENNIS;;Place de l'Eglise, 41700 Cheverny;59165;[-0.052827, 43.252918];;FRSIGESIGE36811;FR*SOD*E*CAPS*54*1*1*_;;;;;;;;;;;;;;;;;;;02430101194987;;;;;;;;;-0.67319;43.472912;12230;Lezay;; +;HOTEL LE COLISEE;;;;;;SAP LABS FRANCE;FRCPSPCAPS2712;FR*SOD*S*LYON*74*1*_*_;ESPELETTE - PARKING JAUREGUIA;;5 Allee de la Croix Verte, 35650 Le Rheu;62498;[-0.370771, 43.285103];;FRSIGESIGE36812;FR*SOD*E*CAPS*3*1*1*_;;;;;;;;;;;;;;;;;;;50024691803461;;;;;;;;;-0.189169;43.47879;89116;Limalonges;; +;bbt sarl;;;;;;PLATEAU_YZERON;FRCPSPCAPS2711;FR*SOD*S*LYON*60*2*_*_;DENGUIN - PLACE DE LA MAIRIE;;Rue de la Republique, 55140 Vaucouleurs;76133;[-0.67319, 43.551067];;FRSIGESIGE36911;FR*SOD*E*CAPS*4*1*2*_;;;;;;;;;;;;;;;;;;;02492908718027;;;;;;;;;-0.377164;43.353794;52160;Louzy;; +;MAZDA CHAMBERY - MONT BLANC AUTOMOBILES;;;;;;AlterBase;FRCPSPCAPS2812;FR*SOD*S*LYON*62*1*_*_;COARRAZE - RUE DE LA GARE;;1 Rue Henri Barbusse, 37700 Saint-Pierre-des-Corps;76132;[-0.189169, 43.266113];;FRSIGESIGE37012;FR*SOD*E*CAPS*5*1*2*_;;;;;;;;;;;;;;;;;;;02454413784829;;;;;;;;;-0.260889;43.328079;38080;Mauléon;; +;TOYOTA ANTHY SUR LEMAN - DEGENEVE;;;;;;BORNECO;FRCPSPCAPS5512;FR*SOD*S*LYON*63*1*_*_;CHERAUTE - AVENUE DU GENERAL CHARLES DE GAULLE;;Place Jeanne d'Arc, 55100 Verdun;76451;[-0.377164, 43.379723];;FRSIGESIGE34911;FR*SOD*E*CAPS*5*1*1*_;;;;;;;;;;;;;;;;;;;02469030282329;;;;;;;;;-0.940464;43.165531;42510;La Ferrière-en-Parthenay;; +;TOYOTA LEXUS NIMES - GARAGE VEYRUNES;;;;;;MAZDA MAUBEUGE- SARL FRANCO;FRCPSPCAPS2911;FR*SOD*S*LYON*64*1*_*_;CASTEIDE DOAT - RUE SIMIN PALAY;;Place de la gare, 28240 La Loupe;59646;[-0.260889, 43.178398];;FRSIGESIGE37011;FR*SOD*E*CAPS*4*1*1*_;;;;;;;;;;;;;;;;;;;02482778472477;;;;;;;;;-0.386747;43.39959;21600;Mazières-en-Gâtine;; +;Kia Châlons - Groupe REY;;;;;;MAS GALOFFRE;FRCPSPCAPS2912;FR*SOD*S*LYON*65*1*_*_;CAMBO LES BAINS - PLACE SORHAINDE BORNE 2;;Avenue du General Mangin, 55100 Verdun;76131;[-0.940464, 43.400017];;FRSIGESIGE37111;FR*SOD*E*CAPS*6*1*1*_;;;;;;;;;;;;;;;;;;;02424167763160;;;;;;;;;-1.579401;43.444202;49160;Melle;; +;ROADY SERVICE;;;;;;Touquet Normal;FRCPSPCAPS3011;FR*SOD*S*LYON*61*1*_*_;CAMBO - PLACE SORHAINDE;;Rue du Moulin Rouge, 28500 Vernouillet;70177;[-0.386747, 43.403503];;FRSIGESIGE37112;FR*SOD*E*OAZS*247*2*3*_;;;;;;;;;;;;;;;;;;;02480173553561;;;;;;;;;-0.864163;43.433836;11700;Clussais-la-Pommeraie;; +;Mercedes Benz - EMB Léman Annemasse;;;;;;Touquet Semi Rapide;FRCPSPCAPS3012;FR*SOD*S*LYON*61*2*_*_;GAN - RUE LOUIS BIDAU;;Cite d'Anthouard, 55100 Verdun;70428;[-1.579401, 43.313419];;FRSIGESIGE37211;FR*SOD*E*OAZS*248*2*2*_;;;;;;;;;;;;;;;;;;;02483936216515;;;;;;;;;-0.9301;43.325056;73390;Chauray;; +;ETABLISSEMENT DES FILS DE J.MONNIER SAINT BERTHEVIN;;;;;;SAS La Tuiliere;FRCPSPCAPS2111;FR*SOD*S*LYON*60*1*_*_;GARLIN - PLACE MARCADIEU;;77 Voie Sacree, 55220 Souilly;70313;[-0.864163, 43.116352];;FRSIGESIGE37212;FR*SOD*E*OAZS*248*2*1*_;;;;;;;;;;;;;;;;;;;02497973843199;;;;;;;;;-1.458963;43.436344;80970;Chef-Boutonne;; +;OPTEOR IMMOTIC;;;;;;Festilight;FRCPSPCAPS2112;FR*SOD*S*LYON*57*2*_*_;JATXOU - PLACE DES SPORTS;;Rue Simone Veil, 55190 Void-Vacon;70206;[-0.9301, 43.472912];;FRSIGESIGE37312;FR*SOD*E*OAZS*248*1*2*_;;;;;;;;;;;;;;;;;;;02414182235280;;;;;;;;;-1.549645;43.397102;62860;Chiché;; +;Mazda CHÂTEAU THIERRY;;;;;;Ford;FRCPSPCAPS2012;FR*SOD*S*LYON*56*1*_*_;HENDAYE - RUE LEKUEDER;;Parking du 8 mai 1945, 55100 Verdun;70550;[-1.458963, 43.47879];;FRSIGESIGE37311;FR*SOD*E*OAZS*247*2*2*_;;;;;;;;;;;;;;;;;;;02487843596747;;;;;;;;;-1.03606;43.485744;87160;Coulon;; +;SCI LES RUISSEAUX;;;;;;Socohy Hyundai Montigny;FRCPSPCAPS2011;FR*SOD*S*LYON*57*1*_*_;HENDAYE - QUAI DE LA FLORIDE;;Place Raymond Poincare, 55600 Montmedy;70447;[-1.549645, 43.353794];;FRSIGESIGE37411;FR*SOD*E*OAZS*247*2*1*_;;;;;;;;;;;;;;;;;;;02489724928186;;;;;;;;;-1.233588;43.494446;76210;Coulonges-sur-l'Autize;; +;Hôtel Le Refuge des Aiglons;;;;;;Socohy Hyundai Coignière;FRCPSPCAPS1012;FR*SOD*S*LYON*58*1*_*_;HELETTE - PARKING D645 MAIRIE;;Esplanade des Droits de l'enfant, 37540 Saint-Cyr-sur-Loire;70128;[-1.03606, 43.328079];;FRSIGESIGE25211;FR*SOD*E*OAZS*247*1*2*_;;;;;;;;;;;;;;;;;;;02480028833891;;;;;;;;;-0.432928;43.360786;74130;Courlay;; +;CHALET HOTEL KAYA;;;;;;RURAL GARDEN;FRCPSPCAPS1111;FR*SOD*S*LYON*59*1*_*_;HASPARREN - PLACE HARANA;;40 Avenue Georges Vacher, 13790 Rousset;70165;[-1.233588, 43.165531];;FRSIGESIGE37531;FR*SOD*E*OAZS*245*1*1*_;;;;;;;;;;;;;;;;;;;02454847937389;;;;;;;;;-1.586527;43.363674;03400;Échiré;; +;NNR GLOBAL LOGISTICS FRANCE;;;;;;Borne de recharge RONALEV;FRCPSPCAPS1112;FR*SOD*S*UNIB*12*12*_*_;GUETHARY - PARKING DU FRONTON;;66 Route de Parves, 01300 Belley;70261;[-0.432928, 43.39959];;FRSIGESIGE37521;FR*SOD*E*OAZS*247*1*1*_;;;;;;;;;;;;;;;;;;;02440086721411;;;;;;;;;-0.651662;43.332508;18500;Faye-l'Abbesse;; +;CBRE FRANCE SAS;;;;;;Réseau de recharge Charge-in;FRCPSPCAPS1211;FR*SOD*S*UNIB*15*1*_*_;GER - PARKING SALLE POLYVALENTE;;13 Rue Ernest Chaudron, 55250 Vaubecourt;31149;[-1.586527, 43.444202];;FRSIGESIGE37511;FR*SOD*E*OAZS*245*1*3*_;;;;;;;;;;;;;;;;;;;02451953582628;;;;;;;;;-0.3265;43.295143;01430;Geay;; +;ITM CHALLANS DISTRIBUTION;;;;;;RechargerMonAuto;FRCPSPCAPS1212;FR*SOD*S*UNIB*15*2*_*_;GELOS - SQUARE EDOUARD HERRIOT;;Place Lucien Poincare, 55250 SEUIL D'ARGONNE;63300;[-0.651662, 43.433836];;FRSIGESIGE36311;FR*SOD*E*OAZS*248*1*1*_;;;;;;;;;;;;;;;;;;;02418813205743;;;;;;;;;-1.454603;43.284081;18200;Beauvoir-sur-Niort;; +;Gare maritime transmanche-Port de Cherbourg;;;;;;MONTA;FRCPSPCAPS1312;FR*SOD*S*UNIB*14*2*_*_;SAULT DE NAVAILLES - PLACE DE LEGLISE;;A10, 37250 Sorigny;30259;[-0.3265, 43.325056];;FRSIGESIGE36211;FR*SOD*E*OAZS*245*1*2*_;;;;;;;;;;;;;;;;;;;02482633754622;;;;;;;;;-1.455624;43.234406;51500;Bressuire;; +;Polybati;;;;;;SUD AVEYRON AUTOMOBILES - FORD SAINT AFFRIQUE;FRCPSPCAPS1311;FR*SOD*S*UNIB*14*1*_*_;SOUMOULOU - RD817 PLACE DE LA MAIRIE;;Place Jacques Lob, 41000 Blois;2B009;[-1.454603, 43.436344];;FRSIGESIGE36212;FR*SOD*E*OAZS*244*2*2*_;;;;;;;;;;;;;;;;;;;02477134478109;;;;;;;;;-1.336469;43.487251;28300;Boismé;; +;KIA - Hérouville-Saint-Clair;;;;;;ART DECO FINITION;FRCPSPCAPS1411;FR*SOD*S*UNIB*13*2*_*_;SERRES CASTET - CHEMIN DE LIBEN;;Aire de Val Neuvy, 28310 Fresnay l'éveque;2A114;[-1.455624, 43.397102];;FRSIGESIGE36111;FR*SOD*E*OAZS*244*1*2*_;;;;;;;;;;;;;;;;;;;02446743740159;;;;;;;;;-1.292284;43.48888;36130;Bessines;; +;SCI LE PARC MILLESIME;;;;;;SCP ACANTHE DRIMARACCI;FRCPSPCAPS1412;FR*SOD*S*UNIB*13*1*_*_;NAY - PLACE DU 8 MAI 1945;;Rue dela libération, 41700 Contres;10401;[-1.336469, 43.485744];;FRSIGESIGE34912;FR*SOD*E*OAZS*248*2*3*_;;;;;;;;;;;;;;;;;;;02475687300502;;;;;;;;;-1.698865;43.194351;27100;Azay-le-Brûlé;; +;Bricomarché Rive de Gier;;;;;;SELARL PHARMACIE CEVENOLE;FRCPSPCAPS1611;FR*SOD*S*UNIB*12*10*_*_;SAUVETERRE - RUE PASTEUR RENNES;;Rue Emile Zola, 28000 Luray;59295;[-1.292284, 43.494446];;FRSIGESIGE35012;FR*SOD*E*OAZS*249*1*2*_;;;;;;;;;;;;;;;;;;;02454269065720;;;;;;;;;-1.697669;43.193943;72300;Aubigné;; +;Mazda Lille - Kodo Automobiles;;;;;;IFERRO;FRCPSPCAPS1612;FR*SOD*S*UNIB*12*9*_*_;SAUVAGNON - PLACE DU CHAMP DE FOIRE;;Rue de la Convention, 41300 Salbris;77327;[-1.698865, 43.360786];;FRSIGESIGE35011;FR*SOD*E*OAZS*249*1*3*_;;;;;;;;;;;;;;;;;;;50082156672285;;;;;;;;;-0.366184;43.385006;04200;Argentonnay;; +;Mazda Buchelay - Technic Auto Services;;;;;;Intermarché - Dolus-d'Oléron;FRCPSPCAPS1711;FR*SOD*S*UNIB*12*7*_*_;SARE - PARKING ANNEXE DE LA MAIRIE;;Avenue de la Resistance, 41300 Salbris;31118;[-1.697669, 43.363674];;FRSIGESIGE35112;FR*SOD*E*OAZS*244*2*3*_;;;;;;;;;;;;;;;;;;;02488422466640;;;;;;;;;-0.354209;43.153542;02200;Ardin;; +;MAZDA Evreux GHV;;;;;;Borne de recharge Sud Camargue;FRCPSPCAPS1712;FR*SOD*S*UNIB*12*8*_*_;TARDETS - PARKING DU LAVOIR;;Place du 11 Novembre, 41600 LAMOTTE BEUVRON;45030;[-0.366184, 43.332508];;FRSIGESIGE35111;FR*SOD*E*OAZS*253*1*1*_;;;;;;;;;;;;;;;;;;;02494211180067;;;;;;;;;-0.268858;43.526646;30126;Airvault;; +;MAZDA EPINAL;;;;;;desenfans boulogne;FRCPSPCAPS1811;FR*SOD*S*UNIB*12*11*_*_;SALIES DE BEARN - PARKING DU CASINO;;Rue de Candy, 41250 Bracieux;06150;[-0.354209, 43.295143];;FRSIGESIGE35212;FR*SOD*E*OAZS*253*1*2*_;;;;;;;;;;;;;;;;;;;50000089672907;;;;;;;;;-1.298317;43.387047;37380;Aiffres;; +;AGAPE HOTEL NIORT;;;;;;E-totem;FRCPSPCAPS1812;FR*SOD*S*UNIB*11*2*_*_;SAINT PIERRE DIRUBE - PARKING DE LA POSTE;;13 Rue du Général de Gaulle, 67730 La Vancelle;33036;[-0.268858, 43.284081];;FRSIGESIGE35211;FR*SOD*E*OAZS*253*1*3*_;;;;;;;;;;;;;;;;;;;02489580210130;;;;;;;;;-0.77348;43.178417;10800;Ménigoute;; +;WICKER TP;;;;;;R3;FRCPSPCAPS1912;FR*SOD*S*UNIB*10*8*_*_;SAINT PEE SUR NIVELLE - PLACE PRINCIPALE;;Rue du Château d'eau, 41350 Montlivault;80109;[-1.298317, 43.234406];;FRSIGESIGE35312;FR*SOD*E*OAZS*252*1*1*_;;;;;;;;;;;;;;;;;;;02422575867663;;;;;;;;;-0.77197;43.378071;74520;Moncoutant-sur-Sèvre;; +;Intermarché CONTACT Marchaux et Drive - Semmax;;;;;;GARAGE CHENE -TOTAL ENERGIES - CITROEN;FRCPSPCAPS1911;FR*SOD*S*UNIB*10*1*_*_;SAINT PALAIS - RUE JEAN URRUTY;;Place de la gare, 37380 Neuille le Lierre;73051;[-0.77348, 43.487251];;FRSIGESIGE35311;FR*SOD*E*OAZS*252*2*2*_;;;;;;;;;;;;;;;;;;;50050304416253;;;;;;;;;-0.612117;43.184776;55160;Cerizay;; +;SA BEYNEL ET FILS;;;;;;ALLEGO;FRCPSPCAPS3111;FR*SOD*S*UNIB*10*7*_*_;SAINT JEAN PIED DE PORT - PARKING JAI ALAI;;Place Jeanne d'arc, 37500 Chinon;38012;[-0.77197, 43.48888];;FRSIGESIGE35411;FR*SOD*E*OAZS*252*1*2*_;;;;;;;;;;;;;;;;;;;02415629413221;;;;;;;;;-0.604778;43.302959;63960;Brion-près-Thouet;; +;Green Technologie;;;;;;ALOUISFACEINTACPUBLIC;FRCPSPCAPS3112;FR*SOD*S*UNIB*10*2*_*_;UZEIN - PLACE DE LA MUSIQUE;;Place Romain Rideau, 37800 Ports-sur-Vienne;50502;[-0.612117, 43.194351];;FRSIGESIGE35412;FR*SOD*E*OAZS*252*2*3*_;;;;;;;;;;;;;;;;;;;02498552712203;;;;;;;;;-1.661432;43.346134;83550;Saint-Pardoux-Soutiers;; +;Suraya;;;;;;AUBERGE SAINT WALFRID;FRCPSPCAPS3211;FR*SOD*S*UNIB*10*9*_*_;BIDART – PLAGE ERRETEGIA;;Rue de Montprofond, 41260 LA CHAUSSEE ST VICTOR;48018;[-0.604778, 43.193943];;FRSIGESIGE35512;FR*SOD*E*OAZS*252*2*1*_;;;;;;;;;;;;;;;;;;;02494790049889;;;;;;;;;-0.502143;43.310795;11110;Thouars;; +;WeeCharge;;;;;;TV MOSAIK CRISTAL;FRCPSPCAPS4212;FR*SOD*S*UNIB*35*17*_*_;MONT - PLACE DE LA MAIRIE;;Place de la Maire, 18510 Menetou-Salon;90012;[-1.661432, 43.385006];;FRSIGESIGE35511;FR*SOD*E*OAZS*251*1*1*_;;;;;;;;;;;;;;;;;;;02443849385358;;;;;;;;;-0.915612;45.989853;26140;Val en Vignes;; +;e-Vadea;;;;;;FOURNIER GUY;FRCPSPCAPS4311;FR*SOD*S*UNIB*16*3*_*_;PAU - RUE THOMAS EDISON;;Rte de Brumath, 67170 Bernolsheim, 67170 Bernolsheim;14118;[-0.502143, 43.153542];;FRSIGESIGE35612;FR*SOD*E*OAZS*251*1*2*_;;;;;;;;;;;;;;;;;;;02488711902273;;;;;;;;;-1.658076;45.691996;95470;Vasles;; +;1PACTE;;;;;;GreenToWheel;FRCPSPCAPS4412;FR*SOD*S*UNIB*18*6*_*_;VILLEFRANQUE - CHEMIN BAHUNENIA;;Rue Gilette, 41700 COUR CHEVERNY;69269;[-0.915612, 43.526646];;FRSIGESIGE35611;FR*SOD*E*OAZS*251*1*3*_;;;;;;;;;;;;;;;;;;;02479160527401;;;;;;;;;-1.340355;45.479026;01390;Verruyes;; +;Hotel saint Alban;;;;;;point p;FRCPSPCAPS4411;FR*SOD*S*UNIB*19*3*_*_;USTARITZ - PLACE DU CHATEAU;;Place de la Mairie, 37370 Saint-Aubin-le-Dépeint;79239;[-1.658076, 43.387047];;FRSIGESIGE35712;FR*SOD*E*OAZS*250*1*1*_;;;;;;;;;;;;;;;;;;;02499276301280;;;;;;;;;-0.30609;45.628819;82370;Villiers-en-Bois;; +;Hôtel Restaurant Campanile Nogent-sur-Marne;;;;;;electromaps;FRCPSPCAPS4511;FR*SOD*S*UNIB*19*5*_*_;URCUIT - PARKING DE LA MAIRIE;;Centre d'Affaires, 55220 Rignaucourt;79270;[-1.340355, 43.178417];;FRSIGESIGE35711;FR*SOD*E*OAZS*250*1*2*_;;;;;;;;;;;;;;;;;;;02439218414895;;;;;;;;;-0.113234;45.293211;26780;Villiers-en-Plaine;; +;Aubade - Comptoir des Fer;;;;;;Réseau de recharge CENTRAKOR;FRCPSPCAPS4512;FR*SOD*S*UNIB*19*2*_*_;URT - PLACE DU MARCHE;;Rue de la Borderie, 24430 Marsac-sur-l'Isle;79268;[-0.30609, 43.378071];;FRSIGESIGE35811;FR*SOD*E*OAZS*250*1*3*_;;;;;;;;;;;;;;;;;;;50021358896225;;;;;;;;;-0.370207;45.907782;34130;Sauzé-Vaussais;; +;Aubade - Comptoir des Fers;;;;;;MODULO;FRCPSPCAPS4611;FR*SOD*S*UNIB*19*4*_*_;URRUGNE - PARKING OSASUNA;;Allée de la Gravouille, 41130 SELLES SUR CHER;79259;[-0.113234, 43.184776];;FRSIGESIGE35812;FR*SOD*E*OAZS*249*1*1*_;;;;;;;;;;;;;;;;;;;02438205391555;;;;;;;;;-0.478742;45.988316;84550;Saint-Pierre-des-Échaubrognes;; +;PAROT AUTOMOTIVE - MAZDA BRIVE;;;;;;Leclerc Millau;FRCPSPCAPS4612;FR*SOD*S*UNIB*19*6*_*_;URRUGNE - PARKING DABBADIE;;Rue du Moulinet, 41130 SELLES SUR CHER;79257;[-0.370207, 43.302959];;FRSIGESIGE35911;FR*SOD*E*OAZS*244*2*1*_;;;;;;;;;;;;;;;;;;;02488856620018;;;;;;;;;-0.365129;46.087432;59114;Saint-Rémy;; +;MAZDA CHALON S.SAONE - GROUPE GUILLET;;;;;;HOPITAUX MASSIF DES VOSGES;FRCPSPCAPS4711;FR*SOD*S*UNIB*19*1*_*_;PAU - PARKING ZENITH 1;;Place Saint Honoré, 41000 Blois;79236;[-0.478742, 43.346134];;FRSIGESIGE35912;FR*SOD*E*OAZS*243*1*2*_;;;;;;;;;;;;;;;;;;;02455571525813;;;;;;;;;4.714729;46.212433;45770;Saint-Romans-lès-Melle;; +;Villa Primerose;;;;;;KIA - REIMS;FRCPSPCAPS4712;FR*SOD*S*UNIB*18*2*_*_;PAU - AVENUE NITOT;;Avenue du Maréchal Maunoury, 41000 Blois;79201;[-0.365129, 43.310795];;FRSIGESIGE36012;FR*SOD*E*OAZS*244*1*1*_;;;;;;;;;;;;;;;;;;;02483791498739;;;;;;;;;5.028857;45.50388;78710;Saint-Varent;; +;GCA CAEN;;;;;;AREA Tech;FRCPSPCAPS4911;FR*SOD*S*UNIB*18*3*_*_;OUSSE - RUE DES PYRENEES;;51 Avenue Henri Deluc, 24750 Boulazac Isle Manoire;79195;[4.714729, 45.989853];;FRSIGESIGE36011;FR*SOD*E*OAZS*232*1*1*_;;;;;;;;;;;;;;;;;;;02475108428810;;;;;;;;;4.777867;45.626426;62120;Secondigny;; +;AUTO SPRINTER - MARSEILLE;;;;;;Le Clos St. Gilles;FRCPSPCAPS4912;FR*SOD*S*UNIB*18*1*_*_;OSSES - PARKING POCHE A EAU;;parking "la louvière", 88000 Épinal;79230;[5.028857, 45.691996];;FRSIGESIGE36112;FR*SOD*E*OAZS*235*1*2*_;;;;;;;;;;;;;;;;;;;02488277748860;;;;;;;;;4.825081;46.027767;09340;Thénezay;; +;MELLONE CONSTRUCTION;;;;;;DESENFANS GOUSAINVILLE;FRCPSPCAPS5012;FR*SOD*S*UNIB*18*5*_*_;ORTHEZ - PLACE DE LA MAIRIE;;Rue des Alliés, 41000 Blois;79202;[4.777867, 45.479026];;FRSIGESIGE31911;FR*SOD*E*OAZS*234*1*1*_;;;;;;;;;;;;;;;;;;;50083170884201;;;;;;;;;4.489594;45.776551;71260;Palavas-les-Flots;; +;Syndicat intercommunal de Cesson et Vert-Saint-Denis;;;;;;SARL Vigot;FRCPSPCAPS5011;FR*SOD*S*UNIB*18*4*_*_;ORTHEZ - PLACE BROSSERS;;15 Petite Liepvre, 68160 Sainte-Marie-aux-Mines;79203;[4.825081, 45.628819];;FRSIGESIGE37412;FR*SOD*E*OAZS*234*1*2*_;;;;;;;;;;;;;;;;;;;02430245912720;;;;;;;;;4.575699;46.22657;49480;Maubeuge;; +;Intermarché - La Teste de Buche;;;;;;FDG Automobiles;FRCPSPCAPS5112;FR*SOD*S*UNIB*17*1*_*_;OLORON SAINTE MARIE - PARKING DE LA GARE;;Rue d'Aulnois, 55000 BAR LE DUC;79196;[4.489594, 45.293211];;FRSIGESIGE31712;FR*SOD*E*OAZS*233*1*1*_;;;;;;;;;;;;;;;;;;;02403907273115;;;;;;;;;4.720416;45.91693;46600;Carry-le-Rouet;; +;Mazda - BOURG EN BRESSE;;;;;;HCrequipublic;FRCPSPCAPS5111;FR*SOD*S*UNIB*16*1*_*_;OLORON SAINTE MARIE - PLACE G. CLEMENCEAU;;parking "petit champs de mars", 88000 Épinal;79260;[4.575699, 45.907782];;FRSIGESIGE27911;FR*SOD*E*OAZS*233*1*2*_;;;;;;;;;;;;;;;;;;;02417510746330;;;;;;;;;4.646585;45.712338;06160;Vaudreuille;; +;ENVERGURE MEAUX;;;;;;mon espace carrelage;FRCPSPCAPS5312;FR*SOD*S*UNIB*16*2*_*_;SAINT JEAN DE LUZ - PARKING URDAZURI;;Square du 11 Novembre 1918, 41000 Blois;79216;[4.720416, 45.988316];;FRSIGESIGE27311;FR*SOD*E*OAZS*232*1*2*_;;;;;;;;;;;;;;;;;;;02467293668490;;;;;;;;;4.720225;45.922797;80200;Villechétif;; +;TOYOTA ANTIBES- NOVELLIPSE;;;;;;NOMADE BREWERY;FRCPSPCAPS5311;FR*SOD*S*UNIB*9*2*_*_;OGEU LES BAINS - AVENUE DE PAU;;112 Rue de Chatres, 28800 Bonneval;79066;[4.646585, 46.087432];;FRSIGESIGE27312;FR*SOD*E*OAZS*231*1*1*_;;;;;;;;;;;;;;;;;;;50088364796970;;;;;;;;;4.748752;45.836536;27340;Montigny-le-Bretonneux;; +;Intermarché MORLAIX - COMADU;;;;;;SCI LA GRANGE DESSOUS;FRCPSPCAPS4312;FR*SOD*S*UNIB*10*3*_*_;PAU - PARKING ZENITH 2;;17 Rte de Couëron, 44360 Saint-Étienne-de-Montluc;79080;[4.720225, 46.212433];;FRSIGESIGE27411;FR*SOD*E*OAZS*237*1*1*_;;;;;;;;;;;;;;;;;;;02467872540524;;;;;;;;;4.934166;45.852788;27950;Coignières;; +;Hôtel Restaurant Hubert Kieffer;;;;;;GARAGE HENRY;FRCPSPCAPS4211;FR*SOD*S*UNIB*3*2*_*_;PUYOO - PLACE DE LA MAIRIE;;Rue de Mardeau, 41500 Mer;79162;[4.748752, 45.50388];;FRSIGESIGE27412;FR*SOD*E*OAZS*231*1*2*_;;;;;;;;;;;;;;;;;;;02468596129810;;;;;;;;;4.557323;45.834577;27290;Cysoing;; +;TOYOTA NICE - NOVELLIPSE;;;;;;Domaine de Fompeyre;FRCPSPCAPS3212;FR*SOD*S*UNIB*5*3*_*_;SAINT JEAN DE LUZ - PARKING DES PYRENEES;;Aire de Béziers Montblanc Nord A9, 34290 Montblanc;79123;[4.934166, 45.626426];;FRSIGESIGE27511;FR*SOD*E*OAZS*230*1*1*_;;;;;;;;;;;;;;;;;;;02440231439285;;;;;;;;;4.551768;45.819686;27620;Verrières-en-Anjou;; +;Hôtel Chamonix Le Morgane;;;;;;Carrefour Contact;FRCPSPCAPS4112;FR*SOD*S*UNIB*5*2*_*_;SAINT ETIENNE DE BAIGORRY - PARKING MAIRIE;;103 Avenue de l'Épinette, 33500 Libourne;79208;[4.557323, 46.027767];;FRSIGESIGE27512;FR*SOD*E*OAZS*230*1*2*_;;;;;;;;;;;;;;;;;;;02467004233717;;;;;;;;;4.401897;46.108371;27590;Fos-sur-Mer;; +;ESPACE TOY MONTAUBAN;;;;;;mairie de ghyvelde;FRCPSPCAPS3312;FR*SOD*S*UNIB*5*1*_*_;SAINT CASTIN - ROUTE DE MAUCOR;;Rue des Collèges, 72230 Arnage;79001;[4.551768, 45.776551];;FRSIGESIGE27611;FR*SOD*E*OAZS*229*1*2*_;;;;;;;;;;;;;;;;;;;02489869646032;;;;;;;;;4.607217;45.985401;27560;Fitz-James;; +;INTERMARCHE HYERES - SADIP;;;;;;QoWatt;FRCPSPCAPS3311;FR*SOD*S*UNIB*5*4*_*_;PONTACQ - RUE DU STADE;;7 Avenue des Frères Montgolfier, 64140 Lons;79145;[4.401897, 46.22657];;FRSIGESIGE27612;FR*SOD*E*OAZS*229*1*1*_;;;;;;;;;;;;;;;;;;;02461794392007;;;;;;;;;5.072008;45.877443;27380;Entre-deux-Guiers;; +;INTERMARCHE HYERES - SADIP;;;;;;2ED;FRCPSPCAPS3412;FR*SOD*S*UNIB*5*5*_*_;PAU - PLACE DU FOIRAIL;;372 Route du Barrage, 38121 Reventin-Vaugris;79148;[4.607217, 45.91693];;FRSIGESIGE27711;FR*SOD*E*OAZS*228*1*1*_;;;;;;;;;;;;;;;;;;;02467872539607;;;;;;;;;4.584769;45.495687;27250;Banassac-Canilhac;; +;VILDEL;;;;;;IBIS CHATEAUCREUX SAINT ETIENNE;FRCPSPCAPS3411;FR*SOD*S*UNIB*4*6*_*_;POEY DE LESCAR - ZONE PRINCIPALE;;19 Avenue Maréchal Maunoury, 41500 Mer;79150;[5.072008, 45.712338];;FRSIGESIGE27712;FR*SOD*E*OAZS*235*1*1*_;;;;;;;;;;;;;;;;;;;02480897141845;;;;;;;;;4.714179;46.207105;27450;Grimaud;; +;INTERMARCHE GAUVILLE - BAUMAT;;;;;;Toyota - Cheffois;FRCPSPCAPS3511;FR*SOD*S*UNIB*4*3*_*_;PAU - RUE LAVOISIER CENTRE KENNEDY;;Place du Château, 41290 Oucques;79157;[4.584769, 45.922797];;FRSIGESIGE27812;FR*SOD*E*OAZS*237*1*2*_;;;;;;;;;;;;;;;;;;;50064778598902;;;;;;;;;4.584402;46.153978;27160;Céret;; +;Mazda MULHOUSE - LIGNE BLEUE AUTOMOBILES;;;;;;borneco;FRCPSPCAPS3512;FR*SOD*S*UNIB*4*5*_*_;VILLEFRANCHE-SUR-SAONE - PARKING HERON;;37 rue Pasteur, 28700 AUNEAU BLEURY ST SYMPHORIEN;79079;[4.714179, 45.836536];;FRSIGESIGE27811;FR*SOD*E*OAZS*243*1*1*_;;;;;;;;;;;;;;;;;;;02496237229647;;;;;;;;;4.71428;46.111418;27500;Montluel;; +;ENVERGURE AUTO;;;;;;L'HOSTELLOISE HOTEL DES BAINS;FRCPSPCAPS3611;FR*SOD*S*UNIB*4*4*_*_;SAINT-BONNET-DE-MURE - PARKING FORGERON;;Rue De Pont, 41160 Freteval;79120;[4.584402, 45.852788];;FRSIGESIGE27912;FR*SOD*E*OAZS*241*2*3*_;;;;;;;;;;;;;;;;;;;02450216966815;;;;;;;;;4.661321;45.994463;27670;Aubignan;; +;BRICOMARCHE NONTRON - S.A.S PERIVERT;;;;;;ROBOTIC COVER CONCEPT;FRCPSPCAPS3612;FR*SOD*S*UNIB*4*1*_*_;TUPIN-ET-SEMONS - PARKING RD16;;3 Place du 19 Mars 1962, 77176 Savigny-le-Temple;79172;[4.71428, 45.834577];;FRSIGESIGE27212;FR*SOD*E*OAZS*243*1*3*_;;;;;;;;;;;;;;;;;;;02400000000001;;;;;;;;;4.752542;45.986943;27470;Lagorce;; +;TOYOTA MONTAGNAT - DJB BOURG;;;;;;EPGML;FRCPSPCAPS3711;FR*SOD*S*UNIB*4*2*_*_;SEREZIN-DU-RHONE - PARKING ECOLE LA FONTAINE;;87 Rue de Saint Dizier, 55170 Ancerville;79174;[4.661321, 45.819686];;FRSIGESIGE28012;FR*SOD*E*OAZS*242*1*2*_;;;;;;;;;;;;;;;;;;;02477713349549;;;;;;;;;4.720659;45.987794;27140;Lézignan-Corbières;; +;TOYOTA PERIGUEUX - MAGOT CAVARD;;;;;;Infrastructures de recharge pour véhicules électriques (organisation AUTORECHARGE);FRCPSPCAPS3712;FR*SOD*S*UNIB*3*1*_*_;MORNANT - PARKING GYMNASE GRANGE DODIEU;;Boulevard des Flandres, 55000 BAR LE DUC;79095;[4.752542, 46.108371];;FRSIGESIGE28011;FR*SOD*E*OAZS*242*1*3*_;;;;;;;;;;;;;;;;;;;02483646780999;;;;;;;;;4.711515;45.99157;27300;Saint-Palais-sur-Mer;; +;GARAGE NELLO CHELLI - DIJON;;;;;;Riviera Car Center;FRCPSPCAPS3812;FR*SOD*S*UNIB*2*2*_*_;LEGNY - LES PONTS TARRETS;;Rue du Clos Vert, 55200 Commercy;79081;[4.720659, 45.985401];;FRSIGESIGE28112;FR*SOD*E*OAZS*241*2*2*_;;;;;;;;;;;;;;;;;;;02493053435894;;;;;;;;;4.821907;45.642682;27220;Salaise-sur-Sanne;; +;GARAGE NELLO CHELI - BEAUNE;;;;;;LES GARAGES CHAIGNEAU - CHAURAY;FRCPSPCAPS3811;FR*SOD*S*UNIB*2*3*_*_;VILLEFRANCHE-SUR-SAONE - PARKING MEDIATHEQUE;;A4 Aire de Vrigny, 51390 Vrigny;79083;[4.711515, 45.877443];;FRSIGESIGE28111;FR*SOD*E*OAZS*241*1*1*_;;;;;;;;;;;;;;;;;;;02494790049990;;;;;;;;;4.536011;46.040888;27600;Saint-Affrique;; +;TOYOTA ANNEMASSE - DEGENEVE;;;;;;recharge arteco;FRCPSPCAPS3911;FR*SOD*S*UNIB*2*1*_*_;ODENAS - PLACE 8 MAI 1945;;Rue de la Poissonnière, 41350 ST GERVAIS LA FORET;79088;[4.821907, 45.495687];;FRSIGESIGE28212;FR*SOD*E*OAZS*241*1*2*_;;;;;;;;;;;;;;;;;;;02421996998111;;;;;;;;;4.587281;45.826259;27480;Forcalquier;; +;TOYOTA ANNEMASSE - DEGENEVE;;;;;;Station de recharge Le grand large;FRCPSPCAPS3912;FR*SOD*S*UNIB*2*4*_*_;CHENAS - PARKING CENTRE BOURG;;Parking de la mairie, 28500 Garnay;79100;[4.536011, 46.207105];;FRSIGESIGE28211;FR*SOD*E*OAZS*241*2*1*_;;;;;;;;;;;;;;;;;;;02467583104910;;;;;;;;;4.729213;46.244125;27800;Saint-Quentin;; +;CAMPING LA POMMERAIE;;;;;;Easycharge services;FRCPSPCAPS4011;FR*SOD*S*UNIB*1*1*_*_;LES HAIES - PLACE DE LEGLISE;;Chemin de Blainville, 28500 Vernouillet;79101;[4.587281, 46.153978];;FRSIGESIGE28311;FR*SOD*E*OAZS*238*1*1*_;;;;;;;;;;;;;;;;;;;02400578762709;;;;;;;;;4.714825;46.111426;27910;Le Grau-du-Roi;; +;ITM RIEZ - DALILAS;;;;;;TOYOTA FONTENAY LE COMTE- LES GARAGES CHAIGNEAU;FRCPSPCAPS4012;FR*SOD*S*UNIB*1*4*_*_;CHAPONNAY - PARKING RESISTANCE;;23 Avenue Léon Blum, 64000 Pau;79103;[4.729213, 46.111418];;FRSIGESIGE28312;FR*SOD*E*OAZS*240*1*3*_;;;;;;;;;;;;;;;;;;;02469898589759;;;;;;;;;4.717496;45.990444;27230;Saint-Jean-du-Gard;; +;Campus Adventiste du Salève;;;;;;Toyota Parthenay - LES GARAGES CHAIGNEAU;FRCPSPCAPS4111;FR*SOD*S*UNIB*1*2*_*_;ST CYR LE CHATOUX - PARKING CIMETIERE;;580 Av. de la Libération Parking SAFER, 04100 Manosque;79109;[4.714825, 45.994463];;FRSIGESIGE28511;FR*SOD*E*OAZS*240*1*1*_;;;;;;;;;;;;;;;;;;;02476989761007;;;;;;;;;4.714003;45.716651;27260;Vergèze;; +;INTERMARCHE - RETOURNAC;;;;;;Toyota Bressuire - LES GARAGES CHAIGNEAU;FRCPSPCAPS1011;FR*SOD*S*UNIB*1*3*_*_;BESSENAY - PARKING LE PRADO;;12 rue De Gaulle, 28240 Belhomert-Guéhouville;79116;[4.717496, 45.986943];;FRSIGESIGE28512;FR*SOD*E*OAZS*240*1*2*_;;;;;;;;;;;;;;;;;;;02447322611289;;;;;;;;;4.71603;46.104656;27400;Lunel-Viel;; +;TOYOTA LE CANNET - STAR AUTO;;;;;;Groupama supports et services;FRCPSPCAPS811;FR*SOD*S*UNIB*1*6*_*_;ST CLEMENT DE VERS - LE BOURG;;5 Chemin du Castel, 14520 Port-en-Bessin-Huppain;79131;[4.714003, 45.987794];;FRSIGESIGE28612;FR*SOD*E*OAZS*239*1*2*_;;;;;;;;;;;;;;;;;;;02431258937406;;;;;;;;;4.536185;45.90671;27330;Clef Vallée d'Eure;; +;IPARRA;;;;;;2ED LOGISTIQUE;FRCPSPCAPS5511;FR*SOD*S*UNIB*1*5*_*_;BAGNOLS - PARKING ECOLE;;123 Route de Montrenaz Intermarche, 74490 Saint-Jeoire;79031;[4.71603, 45.99157];;FRSIGESIGE28611;FR*SOD*E*OAZS*239*1*1*_;;;;;;;;;;;;;;;;;;;02470043307590;;;;;;;;;4.634883;45.988154;27610;Saint-Léonard;; +;Intermarché Freneuse - CASTEL;;;;;;Comte Liger-Belair;FRCPSPCAPS312;FR*SOD*S*UNIB*8*5*_*_;COLOMBIER SAUGNIEU - PARKING CCEL;;Technopole de la Loue Sortie, 03410 Saint-Victor;79049;[4.536185, 45.642682];;FRSIGESIGE27211;FR*SOD*E*OAZS*238*1*2*_;;;;;;;;;;;;;;;;;;;02477134478871;;;;;;;;;4.622554;45.564159;27460;Talmont-Saint-Hilaire;; +;MGMI;;;;;;hagger;FRCPSPCAPS612;FR*SOD*S*UNIB*9*1*_*_;VAL DOINGT- PARKING DES TOURRIERES;;1 Rue Henri Chevalier, 55000 L'ISLE EN RIGAULT;79038;[4.634883, 46.040888];;FRSIGESIGE27111;FR*SOD*E*OAZS*242*1*1*_;;;;;;;;;;;;;;;;;;;02472069357080;;;;;;;;;4.675936;45.627002;27530;Chevillon-sur-Huillard;; +;Zen Construction;;;;;;SCI olympe;FRCPSPCAPS111;FR*SOD*S*UNIB*9*9*_*_;DOMMARTIN - LA FERME DU PROST;;Place Maginot, 55430 BELLEVILLE SUR MEUSE;79034;[4.622554, 45.826259];;FRSIGESIGE28712;FR*SOD*E*OAZS*198*2*2*_;;;;;;;;;;;;;;;;;;;02481041858703;;;;;;;;;4.573233;45.711155;27150;Paucourt;; +;M.A.J.U.;;;;;;FULGURA;FRCPSPCAPS112;FR*SOD*S*UNIB*9*4*_*_;BULLY - TARDIVIERE;;4 Route des Dames, 55320 DIEUE SUR MEUSE;79024;[4.675936, 46.244125];;FRSIGESIGE25912;FR*SOD*E*OAZS*255*1*2*_;;;;;;;;;;;;;;;;;;;02422431149401;;;;;;;;;4.708909;45.461143;27700;Amilly;; +;Intermarché - Saint-Paul les Dax;;;;;;AUTO SERVICE PLUS;FRCPSPCAPS211;FR*SOD*S*UNIB*9*11*_*_;DOMMARTIN - PARKING MAIRIE;;Rue Tourbon, 55300 LACROIX SUR MEUSE;79018;[4.573233, 46.111426];;FRSIGESIGE25212;FR*SOD*E*OAZS*228*1*2*_;;;;;;;;;;;;;;;;;;;02477858067405;;;;;;;;;5.126468;45.620682;27570;Solterre;; +;SKIDATA FRANCE SA.;;;;;;GARAGE RABAT;FRCPSPCAPS212;FR*SOD*S*UNIB*9*3*_*_;LENTILLY - PARKING EGLISE;;La Gare, 41600 LAMOTTE BEUVRON;79013;[4.708909, 45.990444];;FRSIGESIGE31611;FR*SOD*E*OAZS*103*2*2*_;;;;;;;;;;;;;;;;;;;02423878327530;;;;;;;;;4.751429;45.621003;27580;Conflans-sur-Loing;; +;Indigo Propreté;;;;;;Securecharge;FRCPSPCAPS5411;FR*SOD*S*UNIB*9*5*_*_;BELLEVILLE-EN-BEAUJOLAIS - RUE DE LA REPUBLIQUE;;Place des Martyrs de la Resistance, 55150 Damvillers;79012;[5.126468, 45.716651];;FRSIGESIGE25312;FR*SOD*E*OAZS*126*3*2*_;;;;;;;;;;;;;;;;;;;50058845021350;;;;;;;;;4.573959;46.024601;27190;Villemandeur;; +;Provibat;;;;;;Bornes VE WattPark/EelDynamic - Av. Eugène Vernholes, Dourdan;FRCPSPCAPS311;FR*SOD*S*UNIB*9*7*_*_;VILLEFRANCHE-SUR-SAONE - PARKING GARE;;Place Robert Mottu, 41600 CHAUMONT SUR THARONNE;79005;[4.751429, 46.104656];;FRSIGESIGE25311;FR*SOD*E*OAZS*126*3*1*_;;;;;;;;;;;;;;;;;;;02486685852729;;;;;;;;;4.696621;45.889597;27690;Saint-Maurice-sur-Fessard;; +;INTERMARCHE ALTILLAC;;;;;;le grand hotel;FRCPSPCAPS412;FR*SOD*S*UNIB*20*2*_*_;CHAZAY DAZERGUES - VARENNES;;110 Av. Franklin Roosevelt, 69120 Vaulx-en-Velin;79003;[4.573959, 45.90671];;FRSIGESIGE25411;FR*SOD*E*OAZS*126*3*3*_;;;;;;;;;;;;;;;;;;;02453834911803;;;;;;;;;4.80452;45.734077;27370;Lombreuil;; +;GOLF DE CAEN;;;;;;AUTOPLUG;FRCPSPCAPS512;FR*SOD*S*UNIB*9*6*_*_;AMPUIS - RUE DU STADE;;Place Clemenceau, 55160 FRESNES EN WOEVRE;79279;[4.696621, 45.988154];;FRSIGESIGE25412;FR*SOD*E*OAZS*164*2*1*_;;;;;;;;;;;;;;;;;;;02483502063189;;;;;;;;;4.935313;45.801292;27110;Vimory;; +;Mazda GEX - GARAGE DAGO;;;;;;2ED Coutances;FRCPSPCAPS511;FR*SOD*S*UNIB*9*8*_*_;MONSOLS - COL DE CRIE;;37 Rue Roger Salengro, 69740 Genas;79176;[4.80452, 45.564159];;FRSIGESIGE25512;FR*SOD*E*OAZS*164*2*3*_;;;;;;;;;;;;;;;;;;;02451374709601;;;;;;;;;5.112423;45.644385;27170;Châlette-sur-Loing;; +;CENTRE JUNO BEACH;;;;;;Armonial;FRCPSPCAPS411;FR*SOD*S*UNIB*8*7*_*_;BEAUJEU - PARKING MAIRIE;;Chemin des Gendarmes, 55500 DAMMARIE SUR SAULX;79179;[4.935313, 45.627002];;FRSIGESIGE25511;FR*SOD*E*OAZS*164*2*2*_;;;;;;;;;;;;;;;;;;;02422286431638;;;;;;;;;4.764807;46.191549;27320;Montargis;; +;LA MEULE DE VEROENCA;;;;;;PAS DITINERANCE;FRCPSPCAPS611;FR*SOD*S*UNIB*8*3*_*_;BELLEVILLE-EN-BEAUJOLAIS - PARKING GARE;;Place Jean-Baptiste Rouillon, 55400 Etain;79062;[5.112423, 45.711155];;FRSIGESIGE25611;FR*SOD*E*OAZS*170*2*2*_;;;;;;;;;;;;;;;;;;;02485238674780;;;;;;;;;4.673493;45.657817;27270;Corquilleroy;; +;Ford - Saumur;;;;;;TRISCOS AUTOMOBILES;FRE04POAZS24723;FR*SOD*S*UNIB*8*9*_*_;VILLEFRANCHE-SUR-SAONE - PARKING BALLOFFET;;Chem. de Chamaras, 07000 Privas;79056;[4.764807, 45.461143];;FRSIGESIGE25612;FR*SOD*E*OAZS*170*2*1*_;;;;;;;;;;;;;;;;;;;02481331296241;;;;;;;;;4.871368;45.619856;27390;Cepoy;; +;SB Energy;;;;;;vandenbussche;FRE04POAZS24822;FR*SOD*S*UNIB*8*10*_*_;VILLEFRANCHE-SUR-SAONE - PARKING CHASSET;;Place de la Malsenez, 55120 CLERMONT EN ARGONNE;79285;[4.673493, 45.620682];;FRSIGESIGE25712;FR*SOD*E*OAZS*170*2*3*_;;;;;;;;;;;;;;;;;;;50080122568785;;;;;;;;;4.705451;45.676796;27730;Pannes;; +;BRICOMARCHE RHEALYS - LA FLOTTE EN RE;;;;;;GEDIBOIS BATI COLMAN;FRE04POAZS24821;FR*SOD*S*UNIB*8*4*_*_;VILLEFRANCHE-SUR-SAONE - PLACE DU MARCHE;;D760, 37800 Sainte-Maure-de-Touraine;79045;[4.871368, 45.621003];;FRSIGESIGE25711;FR*SOD*E*OAZS*188*2*3*_;;;;;;;;;;;;;;;;;;;02415918848805;;;;;;;;;4.743134;45.855128;27420;Mormant-sur-Vernisson;; +;ELITE MOTORS - MAZDA LYON NORD;;;;;;Bornes de recharge AC Candas;FRE04POAZS24812;FR*SOD*S*UNIB*8*1*_*_;VILLEFRANCHE-SUR-SAONE - PARKING BOIRON;;120 rue du General de Gaulle, 55500 LIGNY EN BARROIS;79329;[4.705451, 46.024601];;FRSIGESIGE25911;FR*SOD*E*OAZS*188*2*1*_;;;;;;;;;;;;;;;;;;;02413458647510;;;;;;;;;4.998177;46.160492;27310;Semécourt;; +;SDC ORDINAL;;;;;;CRITTM2A;FRE04POAZS24722;FR*SOD*S*UNIB*8*8*_*_;SAINT-MARTIN-EN-HAUT - PARKING VILLAGE VACANCES;;Avenue Miribel, 55430 BELLEVILLE SUR MEUSE;79171;[4.743134, 45.889597];;FRSIGESIGE27112;FR*SOD*E*OAZS*188*2*2*_;;;;;;;;;;;;;;;;;;;02482344318804;;;;;;;;;5.083837;45.75491;27430;Roncq;; +;SDC CONSTELLATION;;;;;;ALLENERGIES;FRE04POAZS24721;FR*SOD*S*UNIB*8*2*_*_;SALLES-ARBUISSONNAS-EN-BEAUJOLAIS - PARKING DE LA VOUTE;;ZA de la Louvière, 54700 Lesménils;79292;[4.998177, 45.734077];;FRSIGESIGE26311;FR*SOD*E*OAZS*192*2*3*_;;;;;;;;;;;;;;;;;;;50079249746285;;;;;;;;;5.010678;45.713004;27520;Laxou;; +;CAMPUS VIGNY;;;;;;SOLIDARAUTO 49;FRE04POAZS24712;FR*SOD*S*UNIB*8*6*_*_;EVEUX - PLACE DU LAVOIR;;Rue du Port, 55110 Consenvoye;79063;[5.083837, 45.801292];;FRSIGESIGE26312;FR*SOD*E*OAZS*192*2*1*_;;;;;;;;;;;;;;;;;;;02424312480926;;;;;;;;;4.698285;45.524907;27180;Augny;; +;DEGRE CELCIUS;;;;;;GARAGE DE LA SENIA;FRE04POAZS24511;FR*SOD*S*UNIB*6*13*_*_;JULLIE - PARKING CENTRE BOURG;;Rond-point Andra, 55290 Bure;79339;[5.010678, 45.644385];;FRSIGESIGE26512;FR*SOD*E*OAZS*103*2*1*_;;;;;;;;;;;;;;;;;;;02459189470673;;;;;;;;;4.563659;45.686693;27680;Haudainville;; +;GL AUTOMOTIVE;;;;;;GARAGE DE LA MARINIERE;FRE04POAZS24711;FR*SOD*S*UNIB*6*11*_*_;MARCHAMPT - PLACE DU MOULIN;;Avenue de Douaumont, 55100 BRAS SUR MEUSE;79345;[4.698285, 46.191549];;FRSIGESIGE26511;FR*SOD*E*OAZS*102*3*1*_;;;;;;;;;;;;;;;;;;;02474818993292;;;;;;;;;4.91325;45.483864;27350;Noyelles-Godault;; +;Mazda Lyon Sud;;;;;;NOR NUIT;FRE04POAZS24513;FR*SOD*S*UNIB*6*14*_*_;VILLEFRANCHE-SUR-SAONE - SAINT EXUPERY;;Rue de la Grande Fontaine, 55130 GONDRECOURT LE CHATEAU;79350;[4.563659, 45.657817];;FRSIGESIGE26611;FR*SOD*E*OAZS*102*3*2*_;;;;;;;;;;;;;;;;;;;02488567184495;;;;;;;;;4.701152;46.066545;54710;Leers;; +;IMORIZON ANCENIS - MERMOZ 2 ANCENIS;;;;;;restaurant l'eclusier;FRE04POAZS24811;FR*SOD*S*UNIB*6*12*_*_;COLOMBIER-SAUGNIEU - PARKING MEDIATHEQUE;;Rue du Faubourg Saint-Martin, 55110 DUN SUR MEUSE;79351;[4.91325, 45.619856];;FRSIGESIGE26612;FR*SOD*E*OAZS*23*2*2*_;;;;;;;;;;;;;;;;;;;02432850832995;;;;;;;;;4.68011;45.935984;54500;Petite-Forêt;; +;Camping Les Places Dorées - 85160 Saint-Jean-de-Monts;;;;;;Bricomarché Coarraze;FRE04POAZS24512;FR*SOD*S*UNIB*6*10*_*_;BELLEVILLE-EN-BEAUJOLAIS - PARKING COVOITURAGE;;Aire de Sorgues, A7, 84700 Sorgues;79307;[4.701152, 45.676796];;FRSIGESIGE26711;FR*SOD*E*OAZS*14*3*2*_;;;;;;;;;;;;;;;;;;;02426338531550;;;;;;;;;4.680341;45.898624;54425;Faches-Thumesnil;; +;Virginie Tisserant;;;;;;NIJKERK COMPUTER SOLUTIONS;FRE04POAZS24422;FR*SOD*S*UNIB*20*3*_*_;LEGNY - PARKING RD 338;;Autoroute A8, Aire de Vidauban Sud, 83550 Vidauban;79289;[4.68011, 45.855128];;FRSIGESIGE26712;FR*SOD*E*OAZS*14*3*3*_;;;;;;;;;;;;;;;;;;;02453979630111;;;;;;;;;5.066882;45.73785;54490;Berck;; +;JMD;;;;;;Réseau de recharge Volta Charging;FRE04POAZS24412;FR*SOD*S*UNIB*20*4*_*_;GLEIZE - PARKING DU RY;;D1084, 01640 Saint-Jean-le-Vieux;79293;[4.680341, 46.160492];;FRSIGESIGE26911;FR*SOD*E*OAZS*14*3*1*_;;;;;;;;;;;;;;;;;;;02426193813791;;;;;;;;;5.111309;45.871845;54000;Joué-lès-Tours;; +;SERAL BOX;;;;;;Association des amis de Valmagne;FRE04POAZS24823;FR*SOD*S*UNIB*31*4*_*_;LOIRE-SUR-RHONE - PARKING DE LANCIENNE GARE;;22 rue des acacias, 28300 Mainvilliers;79295;[5.066882, 45.75491];;FRSIGESIGE26912;FR*SOD*E*OAZS*23*3*2*_;;;;;;;;;;;;;;;;;;;02422865302854;;;;;;;;;4.86562;45.69374;54640;Saint-Martin-Boulogne;; +;CENTRAL AUTO - MAZDA BREST;;;;;;MIDAS - 973;FRE04POAZS24912;FR*SOD*S*UNIB*32*2*_*_;CHAPONNAY - PARKING 19 MARS 1962;;Rue Kerdrolo, 56150 Baud;79299;[5.111309, 45.713004];;FRSIGESIGE27011;FR*SOD*E*OAZS*23*4*1*_;;;;;;;;;;;;;;;;;;;02410274854882;;;;;;;;;5.050034;45.858566;54960;Haubourdin;; +;A.V.D. - MAZDA BOURGOIN JALLIEU;;;;;;enedis;FRE04POAZS24913;FR*SOD*S*UNIB*32*3*_*_;COLOMBIER-SAUGNIEU - PARKING DE LEGLISE;;Rue Delà Vincendière, 44470 Carquefou;79311;[4.86562, 45.524907];;FRSIGESIGE27012;FR*SOD*E*OAZS*23*3*1*_;;;;;;;;;;;;;;;;;;;02406512192068;;;;;;;;;4.789865;45.654184;54970;Cormontreuil;; +;SDE 56;;;;;;camping de la hoogue moote;FRE04POAZS24423;FR*SOD*S*UNIB*32*9*_*_;CONDRIEU - RUE DE LINDUSTRIE;;lieu dit, Cc Lingostiere, 32400 Riscle;79326;[5.050034, 45.686693];;FRSIGESIGE28711;FR*SOD*E*OAZS*23*2*1*_;;;;;;;;;;;;;;;;;;;02451664145236;;;;;;;;;4.649969;45.628326;54230;Liévin;; +;MAZDA NIMES;;;;;;LABORATOIRE ESTRADE HUART;FRE04POAZS25311;FR*SOD*S*UNIB*32*10*_*_;MORNANT - PARKING DU SOUVENIR;;Place de la Halette, 37310 Azay-sur-Indre;34192;[4.789865, 45.483864];;FRSIGESIGE41911;FR*SOD*E*OAZS*102*3*3*_;;;;;;;;;;;;;;;;;;;50001966293608;;;;;;;;;4.717011;45.791375;54560;Quetigny;; +;SARL BEAUDRE BAUDOT;;;;;;camping zuydcootebeach;FRE04POAZS25312;FR*SOD*S*UNIB*32*13*_*_;SIMANDRES - PARKING CANTINE SCOLAIRE;;Les Ouches, 37150 Bléré;13021;[4.649969, 46.066545];;FRSIGESIGE28912;FR*SOD*E*OAZS*23*4*2*_;;;;;;;;;;;;;;;;;;;02455426808071;;;;;;;;;4.700996;45.487663;54122;Luxeuil-les-Bains;; +;DPA -MAZDA MONTELIMAR;;;;;;SAS VANDENBUSSCHE;FRE04POAZS25313;FR*SOD*S*UNIB*32*6*_*_;ARNAS - PLACE DES SARMENTS;;Aire du Centre de la France A71, 18200 Farges-Allichamps;31569;[4.717011, 45.935984];;FRSIGESIGE31011;FR*SOD*E*OAZS*43*2*1*_;;;;;;;;;;;;;;;;;;;02484949239949;;;;;;;;;5.015578;45.551842;54680;Montbéliard;; +;ZEN & MOTION - MAZDA LIMOGES;;;;;;HOTEL AU TONNELIER;FRE04POAZS25211;FR*SOD*S*UNIB*33*2*_*_;LES CHERES - PARKING CENTRE-VILLE;;Les Landes, 49540 Aubigné-sur-Layon;10412;[4.700996, 45.898624];;FRSIGESIGE30412;FR*SOD*E*OAZS*43*2*2*_;;;;;;;;;;;;;;;;;;;02407525218102;;;;;;;;;4.728839;45.633003;55240;Noyon;; +;ALESSANDRIA AUTOS - MAZDA GRENOBLE;;;;;;Réseau de recharge Gaborit;FRE04POAZS25222;FR*SOD*S*UNIB*33*3*_*_;GENAS - RUE DE LEGALITE;;Aire de service de la Ferté Bernard, A11, 72400 Villaines-la-Gonais;78423;[5.015578, 45.73785];;FRSIGESIGE30512;FR*SOD*E*OAZS*80*3*3*_;;;;;;;;;;;;;;;;;;;02451519427470;;;;;;;;;5.030031;45.965676;54120;Aulnoy-lez-Valenciennes;; +;Mazda BRIE COMTE ROBERT - ZELUS AUTOMOBILES;;;;;;Mazda CHATENOIS - GARAGE WALTER;FRE04POAZS25212;FR*SOD*S*UNIB*33*8*_*_;JONS - PARKING MAIRIE;;Franot, 54122 Glonville;78168;[4.728839, 45.871845];;FRSIGESIGE30511;FR*SOD*E*OAZS*80*3*2*_;;;;;;;;;;;;;;;;;;;02437192366940;;;;;;;;;4.712088;45.639919;54270;Saint-Martin-lez-Tatinghem;; +;SIRUFO ESSERT - MAZDA BELFORT;;;;;;e-charge50;FRE04POAZS25223;FR*SOD*S*UNIB*33*12*_*_;SAINT-PIERRE-DE-CHANDIEU - PLACE CHARLES DE GAULLE;;Route de Paris, 77340 Pontault-Combault;59168;[5.030031, 45.69374];;FRSIGESIGE30612;FR*SOD*E*OAZS*80*3*1*_;;;;;;;;;;;;;;;;;;;02456005679295;;;;;;;;;4.985571;45.739716;54111;Sélestat;; +;SuperU - Evron;;;;;;HOTEL LE TILBURY;FRE04POAZS25221;FR*SOD*S*UNIB*33*15*_*_;FLEURIE - PARKING MAIRIE;;Chemin des Joncs, 80120 Rue;49323;[4.712088, 45.858566];;FRSIGESIGE30611;FR*SOD*E*OAZS*192*2*2*_;;;;;;;;;;;;;;;;;;;02402749530435;;;;;;;;;4.82279;45.859648;54380;Sin-le-Noble;; +;Société Sigma Tec;;;;;;EASYPLUG;FRE04POAZS25111;FR*SOD*S*UNIB*33*7*_*_;SAINT-MARTIN-EN-HAUT - PARKING CHEMIN DU PARC;;Aire de Giberville Sud, A13, km 220, 14730 Giberville;13039;[4.985571, 45.654184];;FRSIGESIGE30711;FR*SOD*E*OAZS*194*2*2*_;;;;;;;;;;;;;;;;;;;02421852279508;;;;;;;;;4.466701;43.939368;54100;École-Valentin;; +;KIA - Village Auto;;;;;;CAMPING LES AMARINES;FRE04POAZS25112;FR*SOD*S*UNIB*33*5*_*_;MARENNES - PLACE DU CHAMP DE MARS;;Place Lubon, 51100 Reims;60234;[4.82279, 45.628326];;FRSIGESIGE30722;FR*SOD*E*OAZS*194*2*1*_;;;;;;;;;;;;;;;;;;;02476845043282;;;;;;;;;4.810038;50.528935;54410;Béthune;; +;Bricomarché - Challans;;;;;;CAMPING LE PLO;FRE04POAZS25113;FR*SOD*S*UNIB*33*6*_*_;SOUCIEU-EN-JARREST - PARKING LA FLETTE;;Kerahed, 29650 Guerlesquin;38155;[4.466701, 45.791375];;FRSIGESIGE30712;FR*SOD*E*OAZS*226*1*3*_;;;;;;;;;;;;;;;;;;;02423010020650;;;;;;;;;4.718215;49.320532;54510;Caudry;; +;Mazda REIMS - A.F.L;;;;;;KALLISTE RIVE SUD;FRE04POAZS25011;FR*SOD*S*UNIB*33*9*_*_;LOZANNE - PARKING MAIRIE;;ZAC BOIS Gaulpied, 37310 Sublaines;48017;[4.810038, 45.487663];;FRSIGESIGE30721;FR*SOD*E*OAZS*224*1*1*_;;;;;;;;;;;;;;;;;;;02449348660867;;;;;;;;;4.456113;45.622261;54950;Chenôve;; +;Intermarché La Tremblade;;;;;;CAMPING LA BOURIE;FRE04POAZS25012;FR*SOD*S*UNIB*32*1*_*_;VILLIE-MORGON - BOULEVARD DU PARC;;Rue de Nuisement, 51290 Sainte Marie du Lac;83068;[4.718215, 45.551842];;FRSIGESIGE30811;FR*SOD*E*OAZS*225*2*1*_;;;;;;;;;;;;;;;;;;;02449927533661;;;;;;;;;4.669453;44.361;54370;Cucq;; +;Favret Automobiles;;;;;;CAMPING Sunêlia l-Hippocampe;FRE04POAZS25013;FR*SOD*S*UNIB*32*11*_*_;PUSIGNAN - RUE DE LEGALITE;;Place de l'Église, 37350 LE PETIT PRESSIGNY;66049;[4.456113, 45.633003];;FRSIGESIGE30912;FR*SOD*E*OAZS*225*1*3*_;;;;;;;;;;;;;;;;;;;02452966607434;;;;;;;;;4.685948;44.36182;54170;Saint-Dié-des-Vosges;; +;Mazda - Rennes;;;;;;STATION LUMIIN;FRE04POAZS24911;FR*SOD*S*UNIB*32*8*_*_;COLOMBIER-SAUGNIEU - PARKING DE LA MAIRIE;;Avenue du Maine, 37600 BEAULIEU LES LOCHES;01262;[4.669453, 45.965676];;FRSIGESIGE30911;FR*SOD*E*OAZS*225*1*2*_;;;;;;;;;;;;;;;;;;;50062474506699;;;;;;;;;4.463119;47.309481;54290;La Riche;; +;ENVERGURE REIMS SAS;;;;;;Camping Fréjus 5 étoiles - Le Domaine du Colombier;FRE04POAZS24421;FR*SOD*S*UNIB*31*6*_*_;SAINTE-COLOMBE - RUE DES PETITS JARDINS;;2 Rue Mozart, 93130 Noisy-le-Sec;84004;[4.685948, 45.639919];;FRSIGESIGE31012;FR*SOD*E*OAZS*225*2*2*_;;;;;;;;;;;;;;;;;;;02407380500360;;;;;;;;;4.714888;45.249092;54340;Balma;; +;SIALA AUTOMOBILES;;;;;;CHATEAU MENTONE;FRE04POAZS24312;FR*SOD*S*UNIB*31*7*_*_;SAINT-LAURENT-DE-MURE - PARKING FOOT;;Rue Laurent Gerard, 51300 Thieblemont - Faremont;07126;[4.463119, 45.739716];;FRSIGESIGE30311;FR*SOD*E*OAZS*225*1*1*_;;;;;;;;;;;;;;;;;;;02453256043084;;;;;;;;;-1.090126;45.187054;54250;Champniers;; +;ENVERGURE REIMS;;;;;;SUN DEVELOPPEMENT;FRE04POAZS24411;FR*SOD*S*UNIB*31*9*_*_;TUPIN-ET-SEMONS - PARKING 24 ROUTE DE LYON;;Aire de service de Villaines la Gonais, A11, 72400 Villaines-la-Gonais;11203;[4.714888, 45.859648];;FRSIGESIGE31111;FR*SOD*E*OAZS*226*2*1*_;;;;;;;;;;;;;;;;;;;50036413901737;;;;;;;;;3.046351;44.865112;54670;Saint-Louis;; +;ETABLISSEMENTS CLAUDE RAYMOND;;;;;;STATION CIEL;FRE04POAZS23211;FR*SOD*S*UNIB*31*5*_*_;SAINT-ETIENNE-DES-OULLIERES - PLACE DU MONUMENT AUX MORTS;;3 rue de la gare, 58240 Saint-Pierre-le-Moûtier;17380;[-1.090126, 43.939368];;FRSIGESIGE31112;FR*SOD*E*OAZS*224*2*2*_;;;;;;;;;;;;;;;;;;;02463241569505;;;;;;;;;0.319254;45.417603;54540;Fenouillet;; +;Ford Marmande - Groupe Malbet;;;;;;HOTEL FORMULE 1;FRE04POAZS23512;FR*SOD*S*UNIB*31*11*_*_;ANSE - MAIRIE-AVENUE DE BRIANNE;;Chemin de la Cachotte, 51290 Giffaumont Champaubert;38468;[3.046351, 50.528935];;FRSIGESIGE31212;FR*SOD*E*OAZS*226*1*2*_;;;;;;;;;;;;;;;;;;;02422575867226;;;;;;;;;2.456431;45.400749;54830;Les Brouzils;; +;Hôtel Logis Le Jardin DELICE;;;;;;LA RIVE CIELA VILLAGE;FRE04POAZS23411;FR*SOD*S*UNIB*31*3*_*_;MORANCE - PARKING ABRI BUS;;Place des saules, 37350 Chaumussay;12208;[0.319254, 49.320532];;FRSIGESIGE31211;FR*SOD*E*OAZS*226*1*1*_;;;;;;;;;;;;;;;;;;;02455137372465;;;;;;;;;-0.8501;45.179817;54360;Chavagnes-en-Paillers;; +;TOYOTA LEXUS ERAGNY;;;;;;CARREFOUR AJACCIO;FRE04POAZS23412;FR*SOD*S*UNIB*31*2*_*_;GENAS - PARKING ROYBET-MINJAT;;45 Avenue de Marseille, 26000 Valence;75015;[2.456431, 45.622261];;FRSIGESIGE31311;FR*SOD*E*OAZS*226*2*2*_;;;;;;;;;;;;;;;;;;;02471201048691;;;;;;;;;-0.85208;45.192043;54480;Duttlenheim;; +;Parc de Branféré SA;;;;;;AGAPHONE;FRE04POAZS23311;FR*SOD*S*UNIB*31*10*_*_;MARCILLY-DAZERGUES - PARKING RESTAURANT SCOLAIRE;;Aire de Mornas Les Adrets, A7, 84550 Mornas;04088;[-0.8501, 44.361];;FRSIGESIGE31312;FR*SOD*E*OAZS*227*2*1*_;;;;;;;;;;;;;;;;;;;50034111549195;;;;;;;;;0.509783;45.180084;54450;Meximieux;; +;Comité interprofessionnel des vins de provence;;;;;;CAMPING AUBERGE LA STENIOLE;FRE04POAZS23312;FR*SOD*S*UNIB*32*12*_*_;SAINT-BONNET-DE-MURE - PLACE JOANNES MARIUS;;Place du marché, 28300 Mainvilliers;02691;[-0.85208, 44.36182];;FRSIGESIGE31412;FR*SOD*E*OAZS*227*2*2*_;;;;;;;;;;;;;;;;;;;02418234334852;;;;;;;;;0.337888;45.184345;54129;Sarreguemines;; +;SNAM GROUPE;;;;;;CAMPING LES MARSOUINS;FRE04POAZS23212;FR*SOD*S*UNIB*31*12*_*_;CIVRIEUX-DAZERGUES - RUE DE LA MAIRIE;;62 rue de l'Auvent, 16430 Champniers;30133;[0.509783, 47.309481];;FRSIGESIGE31411;FR*SOD*E*OAZS*227*1*1*_;;;;;;;;;;;;;;;;;;;02464254593510;;;;;;;;;0.722759;44.868401;54118;Abbeville;; +;SR PRO-TRIANGLE;;;;;;L'Hôtel Particulier;FRE04POAZS23111;FR*SOD*S*UNIB*31*1*_*_;TOUSSIEU - PLACE DE LA MAIRIE;;Rue de la Marre, 35460 Maen Roch;30269;[0.337888, 45.249092];;FRSIGESIGE31512;FR*SOD*E*OAZS*224*2*1*_;;;;;;;;;;;;;;;;;;;02443704668290;;;;;;;;;1.042477;44.993977;62128;Saint-Jean-du-Cardonnay;; +;MAIRIE DE SAINT-GENEST;;;;;;LA FARIGOULETTE CIEL A VILLAGE;FRE04POAZS23711;FR*SOD*S*UNIB*31*13*_*_;SEREZIN-DU-RHONE - PARKING ESPACE JEAN MONNET;;Les Gués, 37250 Veigne;30344;[0.722759, 45.187054];;FRSIGESIGE31511;FR*SOD*E*OAZS*224*1*2*_;;;;;;;;;;;;;;;;;;;02446599022399;;;;;;;;;0.600149;45.419838;74650;Millau;; +;SARL JUMO;;;;;;HOTEL ORIGINALS ACCESS;FRE04POAZS23112;FR*SOD*S*UNIB*32*5*_*_;MONTROTTIER - PLACE DE LA DIME;;D21, 15500 Molompize;34146;[1.042477, 44.865112];;FRSIGESIGE31612;FR*SOD*E*OAZS*194*2*3*_;;;;;;;;;;;;;;;;;;;50013400906705;;;;;;;;;1.217378;44.860176;62490;Lescar;; +;ITM MARENNES;;;;;;MINOTTI-TRANS;FRE04POAZS23011;FR*SOD*S*UNIB*32*7*_*_;AMPUIS - PARKING MAISON MEDICAL;;A35, Aire de Ostwald Ouest, 67540 Ostwald;27191;[0.600149, 45.417603];;FRSIGESIGE28911;FR*SOD*E*OAZS*218*2*1*_;;;;;;;;;;;;;;;;;;;02412445621270;;;;;;;;;0.724807;45.148567;38400;Wintzenheim;; +;ma borne auto;;;;;;CAMPING PORTE DES VOSGES;FRE04POAZS23012;FR*SOD*S*UNIB*32*4*_*_;ECHALAS - PARKING DU GYMNASE;;Route de Boudouland, 29290 Saint-Rénan;62755;[1.217378, 45.400749];;FRSIGESIGE30411;FR*SOD*E*OAZS*198*2*3*_;;;;;;;;;;;;;;;;;;;02490159081573;;;;;;;;;0.730312;45.151276;67840;Moyenmoutier;; +;COMMUNE DE AUBIGNY EN ARTOIS;;;;;;ARC EN CIEL SUBLIMATION;FRE04POAZS22912;FR*SOD*S*UNIB*33*10*_*_;SAINT-SYMPHORIEN-SUR-COISE - PLACE DE VERDUN;;1 Place des Tilleuls, 51310 Esternay;85288;[0.724807, 45.179817];;FRSIGESIGE30812;FR*SOD*E*OAZS*198*2*1*_;;;;;;;;;;;;;;;;;;;50098205542156;;;;;;;;;0.711979;45.011402;39210;Gérardmer;; +;Ford Agen- Groupe Malbet;;;;;;LOY'S HOTEL;FRE04POAZS22911;FR*SOD*S*UNIB*33*4*_*_;LIERGUES - PORTE DES PIERRES DOREES;;Les landes basses, 22100 Taden;45092;[0.730312, 45.192043];;FRSIGESIGE30312;FR*SOD*E*OAZS*213*1*1*_;;;;;;;;;;;;;;;;;;;50082142834237;;;;;;;;;0.715532;44.745258;59122;Pontorson;; +;sas e-motum;;;;;;SARL CASTEL CONTROLE;FRE04POAZS22811;FR*SOD*S*UNIB*33*11*_*_;SAINT-LAURENT-DAGNY - PARKING JONAN;;15 Place du Champ Benoist, 51120 Sezanne;45249;[0.711979, 45.180084];;FRSIGESIGE29611;FR*SOD*E*OAZS*213*1*2*_;;;;;;;;;;;;;;;;;;;50058568858557;;;;;;;;;1.044134;45.492863;59470;Sanary-sur-Mer;; +;Jum&M'S;;;;;;L'OXYGENE;FRE04POAZS23511;FR*SOD*S*UNIB*36*12*_*_;SAINT-LAURENT-DE-CHAMOUSSET - PARKING DU CENTRE 2000;;Rue de la Loi, 51700 Dormans;45004;[0.715532, 45.184345];;FRSIGESIGE29012;FR*SOD*E*OAZS*215*1*2*_;;;;;;;;;;;;;;;;;;;02496671380976;;;;;;;;;1.253506;44.995899;59270;Beaumes-de-Venise;; +;RICOME ET SADOUL AXA FRANCE;;;;;;SARL LE BOIS DE CORNAGE;FRE04POAZS23712;FR*SOD*S*UNIB*36*15*_*_;CIVRIEUX-DAZERGUES - PKG GYMNASE / RD16;;472 Route d'Aix, 84120 Pertuis;45312;[1.044134, 44.868401];;FRSIGESIGE30212;FR*SOD*E*OAZS*215*1*1*_;;;;;;;;;;;;;;;;;;;02472214072505;;;;;;;;;0.840611;44.943237;59173;Bréhal;; +;SATUJO;;;;;;CAFE LA PROMENADE;FRE04POAZS24311;FR*SOD*S*UNIB*36*17*_*_;AIRE DE LOCEAN OUEST;;E.Leclerc Champfleury, 51 Route nationale, 51500 Champfleury;45102;[1.253506, 44.993977];;FRSIGESIGE29111;FR*SOD*E*OAZS*218*2*2*_;;;;;;;;;;;;;;;;;;;02482633754409;;;;;;;;;1.363911;45.047359;59670;Jougne;; +;RSDA mobility;;;;;;SCIC SEMPIN;FRE04POAZS24123;FR*SOD*S*UNIB*36*8*_*_;AIRE DE PHALEMPIN EST;;Complexe Sportif, 28700 AUNEAU-BLEURY-SAINT-SYMPHORIEN;45338;[0.840611, 45.419838];;FRSIGESIGE29112;FR*SOD*E*OAZS*224*1*3*_;;;;;;;;;;;;;;;;;;;02429232888220;;;;;;;;;0.794854;44.786625;59143;Cheffois;; +;Camping des graniers;;;;;;SARL 3M;FRE04POAZS24313;FR*SOD*S*UNIB*36*18*_*_;AIRE DE BEUZEVILLE SUD;;8 Rte de Colombelles, 14120 Mondeville;45293;[1.363911, 44.860176];;FRSIGESIGE29211;FR*SOD*E*OAZS*218*2*3*_;;;;;;;;;;;;;;;;;;;02429088170486;;;;;;;;;0.791827;45.063183;59285;Drincham;; +;EURO TAXI LINE;;;;;;MAIRIE - 77640;FRE04POAZS24212;FR*SOD*S*UNIB*36*16*_*_;AIRE DE CHAVANON;;Les Noires Terres, 14270 Mézidon Vallée d'Auge;45185;[0.794854, 45.148567];;FRSIGESIGE29212;FR*SOD*E*OAZS*219*1*2*_;;;;;;;;;;;;;;;;;;;02428943452616;;;;;;;;;1.089969;44.845245;59189;Saint-Nazaire;; +;SYNETHIS - LA SEYNE SUR MER;;;;;;HOTEL DE L'EUROPE;FRE04POAZS24213;FR*SOD*S*UNIB*36*9*_*_;AIRE DE PORTE DES LANDES EST;;19 Rue Lacoste, 64870 Escout;45345;[0.791827, 45.151276];;FRSIGESIGE29311;FR*SOD*E*OAZS*219*1*1*_;;;;;;;;;;;;;;;;;;;02451808864861;;;;;;;;;1.262063;45.201721;59181;Fontenay-le-Comte;; +;SCI Tombelaine;;;;;;SQUASH CLUB SAINT-ETIENNE;FRE04POAZS24122;FR*SOD*S*UNIB*36*13*_*_;AIRE DE PORTE DES LANDES OUEST;;Avenue de Toulouse, 41600 Avenue de Toulouse;45068;[1.089969, 45.011402];;FRSIGESIGE29312;FR*SOD*E*OAZS*221*2*2*_;;;;;;;;;;;;;;;;;;;02435745189114;;;;;;;;;0.748864;45.144791;59940;Mordelles;; +;SNER;;;;;;CHATEAU DU FEY;FRE04POAZS24111;FR*SOD*S*UNIB*35*27*_*_;AIRE DES JARDINS DE VILLANDRY;;Mail Pierre Sudreau, 41000 Blois;45208;[1.262063, 44.745258];;FRSIGESIGE29411;FR*SOD*E*OAZS*221*2*3*_;;;;;;;;;;;;;;;;;;;02450361687059;;;;;;;;;1.058212;45.20187;59299;Vosne-Romanée;; +;MABORNEAUTO;;;;;;HOTEL DU MOULIN DAURE;FRE04POAZS24112;FR*SOD*S*UNIB*36*11*_*_;RIBERAC - PLACE PRADEAU DEBONNIERE;;Quai Saint Jean, 41000 Blois;45104;[0.748864, 45.492863];;FRSIGESIGE29412;FR*SOD*E*OAZS*221*2*1*_;;;;;;;;;;;;;;;;;;;50010507053785;;;;;;;;;0.86671;44.842113;23460;Ressons-sur-Matz;; +;BH RESTAURATION;;;;;;CODERC CAMPING;FRE04POAZS24121;FR*SOD*S*UNIB*36*19*_*_;PERIGUEUX - ALLEE DE TOURNY;;Rue du clouseaux, 41350 ST GERVAIS LA FORET;45061;[1.058212, 44.995899];;FRSIGESIGE29511;FR*SOD*E*OAZS*255*1*1*_;;;;;;;;;;;;;;;;;;;02450651122687;;;;;;;;;0.977736;45.624321;23170;Morainvilliers;; +;Societe Ouest Location;;;;;;SCI CHEVY;FRE04POAZS23811;FR*SOD*S*UNIB*36*14*_*_;SAINT CYPRIEN - AVENUE DE SARLAT PARKING COMCOM;;Parking fosse aux lions, 41200 ROMORANTIN LANTHENAY;45247;[0.86671, 44.943237];;FRSIGESIGE29512;FR*SOD*E*OAZS*255*1*3*_;;;;;;;;;;;;;;;;;;;02488133031077;;;;;;;;;1.012185;45.248264;23300;La Sentinelle;; +;STARTERRE;;;;;;CJC RECORDING;FRE04POAZS24013;FR*SOD*S*UNIB*35*18*_*_;SAINT CREPIN DE RICHEMONT - PLACE DU FOIRAIL;;Place de la paix, 41200 ROMORANTIN LANTHENAY;45216;[0.977736, 45.047359];;FRSIGESIGE29011;FR*SOD*E*OAZS*256*1*2*_;;;;;;;;;;;;;;;;;;;02464399311383;;;;;;;;;1.24543;45.164207;23110;Juvincourt-et-Damary;; +;SCEA LES FUIES;;;;;;HOTEL ST ANTOINE;FRE04POAZS24011;FR*SOD*S*UNIB*35*20*_*_;PAYZAC - PLACE DE LA POSTE ESPACE JP TIMBAUT;;Rue Aristide Briand, 60110 Méru Amblainville;57645;[1.012185, 44.786625];;FRSIGESIGE29612;FR*SOD*E*OAZS*270*2*2*_;;;;;;;;;;;;;;;;;;;50009062251718;;;;;;;;;0.154022;44.803474;23800;Trith-Saint-Léger;; +;SDESM;;;;;;MC HOTELLERIE;FRE04POAZS24012;FR*SOD*S*UNIB*35*23*_*_;PERIGUEUX - COURS SAINT GEORGES;;Rue du grand faubourg, 28000 Chartres;59508;[1.24543, 45.063183];;FRSIGESIGE29912;FR*SOD*E*OAZS*269*1*3*_;;;;;;;;;;;;;;;;;;;02493777025970;;;;;;;;;0.392442;44.854721;23210;Brumath;; +;Data Valley;;;;;;INTERMARCHÉ VAURÉAL;FRE04POAZS23912;FR*SOD*S*UNIB*35*25*_*_;PERIGUEUX - PARKING DU CENTRE HOSPITALIER;;Parking de la Gare, 51500 Rilly La Montagne;54304;[0.154022, 44.845245];;FRSIGESIGE29721;FR*SOD*E*OAZS*269*1*2*_;;;;;;;;;;;;;;;;;;;02451808863084;;;;;;;;;0.527508;44.779984;23220;Villeneuve-sur-Aisne;; +;Agrovial;;;;;;GYROVOSGES;FRE04POAZS23911;FR*SOD*S*UNIB*35*21*_*_;PERIGUEUX - PARKING RUE 26EME REGIMENT DINFANTERIE;;Les Rues Neuves, 28800 Montboissier;57039;[0.392442, 45.201721];;FRSIGESIGE30111;FR*SOD*E*OAZS*269*1*1*_;;;;;;;;;;;;;;;;;;;02455426804254;;;;;;;;;0.135192;44.84433;23320;Bellignies;; +;D2 FINANCES;;;;;;AB DIEPPE;FRE04POAZS23812;FR*SOD*S*UNIB*33*14*_*_;PERIGUEUX - RUE WILSON;;La Grange du Chêne, 39160 Saint-Amour;55236;[0.527508, 45.144791];;FRSIGESIGE30112;FR*SOD*E*OAZS*270*1*2*_;;;;;;;;;;;;;;;;;;;02463675722958;;;;;;;;;0.652252;45.140911;23200;Audelange;; +;CITROEN ET DS STORE - REIMS;;;;;;FELIS CANIS;FRE04POAZS24211;FR*SOD*S*UNIB*34*10*_*_;SAINT CYPRIEN - PLACE MACKENHEIM;;1 Pl. de la Mairie, 38920 Crolles;62624;[0.135192, 45.20187];;FRSIGESIGE30011;FR*SOD*E*OAZS*270*1*1*_;;;;;;;;;;;;;;;;;;;02471056330716;;;;;;;;;0.68793;44.946423;23000;Dagneux;; +;FIREX GROUP;;;;;;Réseau de charge FASTHOTEL BLAGNAC;FRE04POAZS19822;FR*SOD*S*UNIB*33*13*_*_;SAINT GENIES - PLACE DE LA GARE;;Place des Dodots, 28380 SAINT-REMI-SUR-AVRE;59339;[0.652252, 44.842113];;FRSIGESIGE30012;FR*SOD*E*OAZS*270*2*1*_;;;;;;;;;;;;;;;;;;;02402604812690;;;;;;;;;0.339009;44.834118;23160;Venoy;; +;SCI DU 151178;;;;;;Réseau de recharge Virta Public;FRE04POAZS25512;FR*SOD*S*UNIB*34*17*_*_;SAINT JEAN DE COLE - PARKING TENNIS;;Place du 8 mai 1945, 28500 Vernouillet;59459;[0.68793, 45.624321];;FRSIGESIGE29911;FR*SOD*E*OAZS*270*1*3*_;;;;;;;;;;;;;;;;;;;02465557054175;;;;;;;;;0.600758;45.021866;23400;Val-de-Meuse;; +;SCI SCJ;;;;;;LUMIIN;FRE04POAZS22812;FR*SOD*S*UNIB*34*12*_*_;SAINT JULIEN DE LAMPON - PARKING MAIRIE;;3 Rue Irene Frederic Joliot-Curi, 60160 Montataire;59220;[0.339009, 45.248264];;FRSIGESIGE29812;FR*SOD*E*OAZS*271*1*2*_;;;;;;;;;;;;;;;;;;;02423733609796;;;;;;;;;0.285507;45.420197;23240;Merceuil;; +;Vollmer;;;;;;Wurth Erstein;FRE04POAZS10322;FR*SOD*S*UNIB*34*13*_*_;SAINT LAURENT SUR MANOIRE BOULAZAC ISLE MANOIRE - PARKING MAIRIE;;Rue du Marais, 01300 Chazey-Bons;62108;[0.600758, 45.164207];;FRSIGESIGE29811;FR*SOD*E*OAZS*268*1*3*_;;;;;;;;;;;;;;;;;;;02451229991843;;;;;;;;;0.400406;44.946789;23250;Châteauvillain;; +;ITM NETTO TRIEUX;;;;;;ZEENCO;FRE04POAZS12632;FR*SOD*S*UNIB*34*14*_*_;SAINT LAURENT SUR MANOIRE BOULAZAC ISLE MANOIRE - ZADU GRAND FRONT;;Rue Jean Michel Herault, 28500 Treon;37122;[0.285507, 44.803474];;FRSIGESIGE30211;FR*SOD*E*OAZS*271*1*1*_;;;;;;;;;;;;;;;;;;;50081560903678;;;;;;;;;0.417831;44.629173;23120;Bligny-sur-Ouche;; +;SVI;;;;;;Réseau de recharge Bulle de Linge;FRE04POAZS12631;FR*SOD*S*UNIB*34*11*_*_;SAINT LEON SUR VEZERE - LE BOURG - PARKING CAMPING CARS;;La Vergne Babouin, 85000 La Roche-sur-Yon;62758;[0.400406, 44.854721];;FRSIGESIGE29722;FR*SOD*E*OAZS*272*1*3*_;;;;;;;;;;;;;;;;;;;02494355896185;;;;;;;;;0.210743;44.870893;23700;Villeneuve-l'Archevêque;; +;TOYOTA REIMS;;;;;;QuincyPublic;FRE04POAZS12633;FR*SOD*S*UNIB*34*16*_*_;SAINT MARTIAL DE NABIRAT - PARKING MULTIPLE RURAL;;Kergoff d'en Bas, 56130 Noyal-Pontivy;59286;[0.417831, 44.779984];;FRS47EMB473811;FR*SOD*E*OAZS*272*1*2*_;;;;;;;;;;;;;;;;;;;02406078038673;;;;;;;;;1.06972;45.157291;23600;Saint-Michel;; +;Commune de Seltz;;;;;;Hotel Macon;FRE04POAZS16421;FR*SOD*S*UNIB*35*24*_*_;SAINT PARDOUX LA RIVIERE - PLACE DU 8 MAI;;Recouvrance, 44190 Gétigné;51172;[0.210743, 44.84433];;FRS47EMB473612;FR*SOD*E*OAZS*272*1*1*_;;;;;;;;;;;;;;;;;;;02409695984197;;;;;;;;;0.809715;45.481873;23230;Gravelines;; +;BAUDUCEL;;;;;;Ax'stone;FRE04POAZS16423;FR*SOD*S*UNIB*34*15*_*_;PEYZAC LE MOUSTIER - D6 - PARKING SALLE DES FETES;;Petite Mouchefaite, 44320 Saint-Père-en-Retz;62510;[1.06972, 45.140911];;FRS47EMB473711;FR*SOD*E*OAZS*273*1*3*_;;;;;;;;;;;;;;;;;;;02451953580826;;;;;;;;;1.165397;45.420927;23190;Dourdan;; +;CLUB HIPPIQUE DE NICE;;;;;;Les Jardins de la Sud;FRE04POAZS16422;FR*SOD*S*UNIB*34*18*_*_;SAINT AVIT DE VIALARD - PARKING SALLES DES FETES;;Lieu-dit "La Motte", 17210 Orignolles;21515;[0.809715, 44.946423];;FRS47EMB473712;FR*SOD*E*OAZS*273*1*1*_;;;;;;;;;;;;;;;;;;;02486830570509;;;;;;;;;0.539875;45.346584;23260;Lagny-sur-Marne;; +;Engie Mobilités Electriques;;;;;;FXM Events;FRE04POAZS17022;FR*SOD*S*UNIB*35*19*_*_;ROUFFIGNAC SAINT CERNIN DE REILHAC - PLACE 31 MARS;;Chemin de la Verronnière, 49240 Avrillé;70311;[1.165397, 44.834118];;FRS47EMB473812;FR*SOD*E*OAZS*273*1*2*_;;;;;;;;;;;;;;;;;;;02487988313710;;;;;;;;;0.756159;44.850285;23500;Nanteuil-lès-Meaux;; +;SARL LAFOURCADE;;;;;;EGSM;FRE04POAZS17021;FR*SOD*S*UNIB*35*15*_*_;SAGELAT - AUBERGE DE LA NAUZE PARKING;;Parking Impasse des Lizas, 37190 Neuil;25388;[0.539875, 45.021866];;FRS47EMB474112;FR*SOD*E*OAZS*268*1*1*_;;;;;;;;;;;;;;;;;;;50077237452831;;;;;;;;;0.057228;45.41589;23290;Méru;; +;SIED70;;;;;;COPRODEX;FRE04POAZS17023;FR*SOD*S*UNIB*35*22*_*_;SAINT AMAND DE COLY - PLACE DE LA GARE;;21 Avenue Jean Foucault, 34500 Béziers;60471;[0.756159, 45.420197];;FRS47EMB473911;FR*SOD*E*OAZS*271*1*3*_;;;;;;;;;;;;;;;;;;;02406222756870;;;;;;;;;1.080201;45.132473;23350;Longeville-lès-Saint-Avold;; +;A.L.R;;;;;;Réseau de recharge SAS PRIMARD;FRE04POAZS18823;FR*SOD*S*UNIB*35*28*_*_;SAINT ANTOINE DE BREUILH - LE BOURG PLACE DE LA HALLE;;Rue Ronsard, 37530 SOUVIGNY DE TOURAINE;59032;[0.057228, 44.946789];;FRS47EMB473912;FR*SOD*E*OAZS*268*1*2*_;;;;;;;;;;;;;;;;;;;02420839255475;;;;;;;;;0.503334;45.129875;69730;Lormaison;; +;FRIENDLY AUBERGE;;;;;;ACCIF TOULOUSE;FRE04POAZS18821;FR*SOD*S*UNIB*31*8*_*_;SAINT SULPICE DE ROUMAGNAC - PARKING LE DONZAC;;Rue de l'église, 37260 Thilouze;62757;[1.080201, 44.629173];;FRS47EMB474011;FR*SOD*E*OAZS*258*1*3*_;;;;;;;;;;;;;;;;;;;02431258937079;;;;;;;;;0.688412;45.126183;17170;Coutances;; +;GARAGE FORRET;;;;;;MBC;FRE04POAZS18822;FR*SOD*S*UNIB*30*4*_*_;SAINT ASTIER - RUE AMIRAL COURBET;;13 Rue Pierre Paul Riquet, 34300 Agde;67462;[0.503334, 44.870893];;FRS47EMB474012;FR*SOD*E*OAZS*267*1*1*_;;;;;;;;;;;;;;;;;;;02431114219244;;;;;;;;;0.380141;44.966335;17460;Marlenheim;; +;SCI LA COLLINE;;;;;;DALTONER CHERBOURG;FRE04POAZS19223;FR*SOD*S*UNIB*30*1*_*_;SAINT AULAYE PUYMANGOU - PLACE DU CHAMP DE FOIRE;;Rue du chemin vert, 37600 Bridore;59569;[0.688412, 45.157291];;FRS47EMB473511;FR*SOD*E*OAZS*256*1*3*_;;;;;;;;;;;;;;;;;;;02494066462287;;;;;;;;;0.924316;45.050846;17810;Vacqueyras;; +;SARL ATRACHATA;;;;;;Le mans sun;FRE04POAZS19221;FR*SOD*S*UNIB*24*2*_*_;SAINT CAPRAISE DE LALINDE - D660 - AIR DE CAMPINGS CARS;;place de l'église, 37210 PARCAY MESLAY;25212;[0.380141, 45.481873];;FRS47EMB473611;FR*SOD*E*OAZS*256*1*1*_;;;;;;;;;;;;;;;;;;;02457018706033;;;;;;;;;0.365045;45.413513;84220;Grosbliederstroff;; +;LE REVE DE JANINE;;;;;;L'incroyable;FRE04POAZS10321;FR*SOD*S*UNIB*24*1*_*_;PIEGUT PLUVIERS - RUE DES ALLIES PLACE DU MARCHE;;74 Rue de Normandie, 50000 Saint-Lô;62119;[0.924316, 45.420927];;FRS47EMB473312;FR*SOD*E*OAZS*257*1*1*_;;;;;;;;;;;;;;;;;;;02418379053160;;;;;;;;;0.101924;45.253567;46130;Dieulefit;; +;Aubélec;;;;;;805035100;FRE04POAZS10231;FR*SOD*S*UNIB*25*1*_*_;RIBERAC - PLACE GENERAL DE GAULE;;346 Rue Augustin Jean Fresnel, 34500 Béziers;59139;[0.365045, 45.346584];;FRS47EMB473512;FR*SOD*E*OAZS*257*1*2*_;;;;;;;;;;;;;;;;;;;02467872540300;;;;;;;;;0.919114;45.270565;33185;Lavilledieu;; +;Borneco;;;;;;Belib';FRE04POAZS10232;FR*SOD*S*UNIB*25*2*_*_;RAZAC SUR LISLE - PLACE ROGER GAUTHIER;;zac de la colleraye, 44260 Savenay;21166;[0.101924, 44.850285];;FRS47EMB473411;FR*SOD*E*OAZS*258*1*2*_;;;;;;;;;;;;;;;;;;;50009059794785;;;;;;;;;1.297951;45.196922;68340;Xertigny;; +;ELEK BORDEAUX;;;;;;TotalEnergies Charge Rapide;FRE04POAZS2322;FR*SOD*S*UNIB*26*1*_*_;RAZAC DE SAUSSIGNAC - LE BOURG - PLACE DE LA MAIRIE;;4 Av. de Champagne, 51200 Épernay;88413;[0.919114, 45.41589];;FRS47EMB473412;FR*SOD*E*OAZS*258*1*1*_;;;;;;;;;;;;;;;;;;;02467438387485;;;;;;;;;1.298838;45.195217;74390;Chaumousey;; +;Normatech Lodmi;;;;;;La Recharge - Aix Marseille Provence;FRE04POAZS1432;FR*SOD*S*UNIB*26*2*_*_;PRIGONRIEUX - RUE DU 19 MARS 1962;;Gare de Dormans, 51700 Dormans;37195;[1.297951, 45.132473];;FRS47EMB473311;FR*SOD*E*OAZS*257*1*3*_;;;;;;;;;;;;;;;;;;;02481186576558;;;;;;;;;1.302298;45.235855;35132;Thaon-les-Vosges;; +;SCI MANHATTAN TECHNO LAKE;;;;;;BAR RESTAURANT L’ARENA;FRE04POAZS1433;FR*SOD*S*UNIB*27*1*_*_;POMPORT - PARKING SALLE DES FETES;;rue Marcel Cottereau, 41110 Seigy;26362;[1.298838, 45.129875];;FRS47EMB473211;FR*SOD*E*OAZS*259*1*1*_;;;;;;;;;;;;;;;;;;;02485962264002;;;;;;;;;1.15009;45.305759;97221;Uxegney;; +;AGRIBAT;;;;;;RESTAURANT L’ETAPE BEZIERS;FRE04POAZS1431;FR*SOD*S*UNIB*27*4*_*_;PORT SAINTE FOY ET PONCHAPT - PLACE DU 8 MAI;;23 Av. Atlant’Vie, 85170 Bellevigny;31044;[1.302298, 45.126183];;FRS47EMB473212;FR*SOD*E*OAZS*259*1*3*_;;;;;;;;;;;;;;;;;;;02482923190257;;;;;;;;;0.391331;44.823059;97224;Charmes;; +;EIZMENDI RESTAURATION;;;;;;SAEMES;FRE04POAZS2332;FR*SOD*S*UNIB*23*1*_*_;THENON - RD 6089 - PARKING GENDARMERIE;;Place du Faisan, 37510 Savonnieres;16078;[1.15009, 44.966335];;FRS47EMB473112;FR*SOD*E*OAZS*259*1*2*_;;;;;;;;;;;;;;;;;;;02421707561310;;;;;;;;;0.920901;44.75695;97232;Chantraine;; +;Lacmeca;;;;;;KIA MULHOUSE;FRE04POAZS2341;FR*SOD*S*UNIB*22*2*_*_;SAINTE ALVERE - PARKING AVENUE JULES FERRY;;ZAC DE LA COLLERAYE, 44260 Savenay;68297;[0.391331, 45.050846];;FRS47EMB473111;FR*SOD*E*OAZS*266*1*1*_;;;;;;;;;;;;;;;;;;;50002695342112;;;;;;;;;0.496523;45.275173;97223;Girancourt;; +;MAS DU TERME;;;;;;INTERPARKING;FRE04POAZS2331;FR*SOD*S*UNIB*21*2*_*_;VEZAC - PLACE REGIS MAGNOL;;Picoty Montbartier Carburants, Avenue du Pech, 82370 Labastide-Saint-Pierre;31182;[0.920901, 45.413513];;FRS47EMB473012;FR*SOD*E*OAZS*266*1*3*_;;;;;;;;;;;;;;;;;;;02422720585006;;;;;;;;;1.056962;44.892532;97225;Chavelot;; +;territoire d'énergie 90;;;;;;VIKINGS CASINO BUSSANG;FRE04POAZS2321;FR*SOD*S*UNIB*20*1*_*_;VILLAMBLARD - AVENUE EDOUARD DEPUY;;Parking Rue du 11 Novembre 1918, 37340 Ambillou;85038;[0.496523, 45.253567];;FRS47EMB473011;FR*SOD*E*OAZS*266*1*2*_;;;;;;;;;;;;;;;;;;;02496092511805;;;;;;;;;0.73867;44.73729;30200;La Vôge-les-Bains;; +;SAP LABS FRANCE;;;;;;IBIS BUDGET AEROPORT DE LYON;FRE04POAZS10233;FR*SOD*S*UNIB*35*26*_*_;VILLARS - PARKING CIMETIERE;;Place du Champ de Foire, 37330 CHÂTEAU LA VALLIERE;85065;[1.056962, 45.270565];;FRS47EMB472911;FR*SOD*E*OAZS*267*1*3*_;;;;;;;;;;;;;;;;;;;02476989760320;;;;;;;;;0.779958;44.892673;84430;Rasteau;; +;ANEBEY;;;;;;KIA EPINAL;FRE04POAZS2342;FR*SOD*S*UNIB*21*1*_*_;VILLEFRANCHE DE LONCHAT - RUE BUGEAUD;;place de l'église, 37350 LA CELLE GUENAND;67112;[0.73867, 45.196922];;FRS47EMB474211;FR*SOD*E*OAZS*267*1*2*_;;;;;;;;;;;;;;;;;;;02482199601055;;;;;;;;;0.873653;44.883865;97250;Laurens;; +;SIEDS;;;;;;RIESTER SAINT MAXIMIN;FRE04POAZS4321;FR*SOD*S*UNIB*22*3*_*_;VILLEFRANCHE DU PERIGORD - PLACE DU  19 MARS;;Place de la Mairie, 37600 VERNEUIL SUR INDRE;01244;[0.779958, 45.195217];;FRS47EMB474111;FR*SOD*E*MB40*57*1*2*_;;;;;;;;;;;;;;;;;;;02483357345309;;;;;;;;;0.872856;44.880421;97260;Pertuis;; +;Séolis;;;;;;VIKINGS CASINO FREJUS;FRE04POAZS4322;FR*SOD*S*UNIB*22*4*_*_;BERGERAC - AIRE DE COVOITURAGE - POMBONNE;;Avenue de l'Eglise, 37120 Razines;57631;[0.873653, 45.235855];;FRS47EMB475612;FR*SOD*E*MB40*56*1*3*_;;;;;;;;;;;;;;;;;;;02490593234921;;;;;;;;;0.987989;44.974308;97170;Salon-de-Provence;; +;S‚olis;;;;;;IBIS MONT DE MARSAN;FRE04POAZS8033;FR*SOD*S*UNIB*22*1*_*_;COULOUNIEIX CHAMIERS - PLACE YVES PERON;;Rue d'Amboise, 37270 SAINT MARTIN LE BEAU;80001;[0.872856, 45.305759];;FRS47EMB474212;FR*SOD*E*MB40*56*1*1*_;;;;;;;;;;;;;;;;;;;02490448517180;;;;;;;;;0.408764;45.121777;34630;Mirepoix;; +;BORNECO;;;;;;VIKINGS CASINO SANARY SUR MER;FRE04POAZS8032;FR*SOD*S*UNIB*27*2*_*_;LA ROCHEBEAUCOURT - PARKING BASCULE - RUE DE RIBERAC;;Place des anciens combattants, 37130 SAINT MICHEL SUR LOIRE;76594;[0.987989, 44.823059];;FRS47EMB474911;FR*SOD*E*MB40*57*1*1*_;;;;;;;;;;;;;;;;;;;02460781366403;;;;;;;;;0.918521;45.146795;48150;Bruay-la-Buissière;; +;MAZDA MAUBEUGE- SARL FRANCO;;;;;;TERRITOIRE D'ENERGIE ORNE;FRE04POAZS8031;FR*SOD*S*UNIB*27*5*_*_;THIVIERS - PLACE DE LA LIBERATION;;ZAc de la colleray, 44260 Savenay;12145;[0.408764, 44.75695];;FRS47EMB475512;FR*SOD*E*MB40*57*1*4*_;;;;;;;;;;;;;;;;;;;02467727821206;;;;;;;;;1.21282;44.83758;62113;Revel-Tourdan;; +;MAS GALOFFRE;;;;;;GROUPE DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES;FRE04POAZS19222;FR*SOD*S*UNIB*30*6*_*_;VERTEILLAC - PARKING DES VIEUX METIERS - LE BOURG;;Place de la Mairie, 37340 Gizeux;64335;[0.918521, 45.275173];;FRS47EMB475412;FR*SOD*E*MB40*58*1*2*_;;;;;;;;;;;;;;;;;;;02499565738543;;;;;;;;;0.46317;45.186926;59118;Replonges;; +;SANTERNE NORD PICARDIE INFRA;;;;;;HOTEL AUX DUCS DE SIENNE;FRE04POAZS19422;FR*SOD*S*UNIB*30*10*_*_;VELINES - ZONE DES REAUX - FACE A LA PHARMACIE;;Allée Alfred Bureau, 37800 SAINT EPAIN;68374;[1.21282, 44.892532];;FRS47EMB475411;FR*SOD*E*MB40*57*1*3*_;;;;;;;;;;;;;;;;;;;02462228545147;;;;;;;;;1.217389;45.24278;62110;Trélazé;; +;111442;;;;;;GROUPE DESFOSSEY - ACCOR - IBIS RED PONTARLIER;FRE04POAZS19421;FR*SOD*S*UNIB*30*2*_*_;THIVIERS - PLACE DU CHAMP DE FOIRE;;Camping Les Arches, 07580 Saint-Jean-le-Centenier;88319;[0.46317, 44.73729];;FRS47EMB475311;FR*SOD*E*MB40*58*1*4*_;;;;;;;;;;;;;;;;;;;02457887010607;;;;;;;;;1.214353;45.29469;49070;Thiais;; +;217363;;;;;;VIKINGS CASINO IBIS BUDGET BONCHAMPS LAVAL;FRE04POAZS22613;FR*SOD*S*UNIB*30*8*_*_;TERRASSON - PLACE YVAN DELBOS;;V973+J8, 63350 Culhat;88196;[1.217389, 44.892673];;FRS47EMB475312;FR*SOD*E*MB40*58*1*3*_;;;;;;;;;;;;;;;;;;;02498697430048;;;;;;;;;1.217427;45.54399;01700;Fleury-Mérogis;; +;SBEI;;;;;;SCI DUBOIS SIMONNEAU BEAUNE;FRE04POAZS22411;FR*SOD*S*UNIB*30*9*_*_;TERRASSON - PLACE MARCEL PAUL;;Place de l'église, 28220 Langey;50410;[1.214353, 44.883865];;FRS47EMB475212;FR*SOD*E*MB40*58*1*1*_;;;;;;;;;;;;;;;;;;;23172069307807;;;;;;;;;1.323247;45.56986;97122;Bondues;; +;ELECTRO MOBILITY;;;;;;VIKINGS CASINO IBIS ROUGE HONFLEUR;FRE04POAZS22521;FR*SOD*S*UNIB*30*3*_*_;TERRASSON - PARKING JEANNE DARC;;Parking Rue des Pins, 37340 CLERE LES PINS;83123;[1.217427, 44.880421];;FRS47EMB475211;FR*SOD*E*MB40*56*1*2*_;;;;;;;;;;;;;;;;;;;23100433996698;;;;;;;;;0.715628;45.02641;97120;Élancourt;; +;COMMUNE DE CYSOING;;;;;;SAMSE - ERP EDB ANNEMASSE;FRE04POAZS22513;FR*SOD*S*UNIB*30*5*_*_;TAMNIES - PLACE SALLE DES FETES;;60 Av. Augustin Juramy, 83640 Saint-Zacharie;84012;[1.323247, 44.974308];;FRS47EMB475112;FR*SOD*E*MB40*56*1*4*_;;;;;;;;;;;;;;;;;;;23227930408807;;;;;;;;;0.526451;45.16059;97354;La Roche-sur-Foron;; +;RURAL GARDEN;;;;;;VIKINGS CASINO MERCURE GRANVILLE;FRE04POAZS22512;FR*SOD*S*UNIB*30*7*_*_;SOURZAC - PARKING DE LA MAIRIE;;21 Avenue des Gros Chevaux, 95310 Saint-Ouen-l'Aumône;28185;[0.715628, 45.121777];;FRS47EMB475111;FR*SOD*E*MB40*53*1*3*_;;;;;;;;;;;;;;;;;;;23255716227044;;;;;;;;;0.74053;45.58997;71850;Plaisir;; +;RONALEV;;;;;;VIKINGS CASINO B&B LA RIVIERE ST SAUVEUR;FRE04POAZS22522;FR*SOD*S*UNIB*30*11*_*_;THIVIERS - PLACE JEAN PAUL SARTRE;;Place de la Mairie, 37190 Valleres;50076;[0.526451, 45.146795];;FRS47EMB475011;FR*SOD*E*MB40*55*1*4*_;;;;;;;;;;;;;;;;;;;23207959350517;;;;;;;;;0.708895;44.88431;67610;Amancy;; +;Midas Fitz-James;;;;;;SAMSE - GRENOBLE;FRE04POAZS22511;FR*SOD*S*UNIB*27*6*_*_;TOCANE SAINT APRE - PLACE DES TILLEULS;;Rue Michel Debre, 37530 Charge;25318;[0.74053, 44.83758];;FRS47EMB475012;FR*SOD*E*MB40*55*1*1*_;;;;;;;;;;;;;;;;;;;23300868232199;;;;;;;;;0.68774;44.767879;81100;Bourg-en-Bresse;; +;Camping le Puits de l'Auture;;;;;;MAISON DES ENTREPRISES DIJON;FRE04POAZS22621;FR*SOD*S*UNIB*27*3*_*_;TOURTOIRAC - PLACE DU CHATEAU;;7 Place Saint-Tanguy, 29217 Plougonvelin;85067;[0.708895, 45.186926];;FRS47EMB474912;FR*SOD*E*MB40*55*1*2*_;;;;;;;;;;;;;;;;;;;23192908673681;;;;;;;;;1.12589;45.19173;97351;Cabriès;; +;BUREAU VALLEE;;;;;;VIKINGS CASINO IBIS ROUGE FALAISE;FRE04POAZS22422;FR*SOD*S*UNIB*29*2*_*_;TRELISSAC - PARKING AVENUE GEORGES POMPIDOU;;Rue du Stade, 37130 MAZIERES DE TOURAINE;59182;[0.68774, 45.24278];;FRS47EMB474311;FR*SOD*E*MB40*55*1*3*_;;;;;;;;;;;;;;;;;;;23324457233875;;;;;;;;;0.81836;45.216908;67230;Manosque;; +;SUD AVEYRON AUTOMOBILES - FORD SAINT AFFRIQUE;;;;;;VIKINGS CASINO IBIS BUDGET GRANVILLE;FRE04POAZS22612;FR*SOD*S*UNIB*29*3*_*_;TRELISSAC - PLACE NAPOLEON MAGNE;;Rue des Renardières, 62300 Lens;44184;[1.12589, 45.29469];;FRS47EMB474812;FR*SOD*E*MB40*54*1*2*_;;;;;;;;;;;;;;;;;;;23151374665392;;;;;;;;;0.55972;45.205341;62560;Perpignan;; +;Hopital Saint Camille;;;;;;VIKINGS CASINO IBIS BUDGET MONDEVILLE;FRE04POAZS22611;FR*SOD*S*UNIB*29*1*_*_;SARLIAC SUR LISLE - PARKING RUE DU STADE;;98 Route des Sables, 85300 Challans;61169;[0.81836, 45.54399];;FRS47EMB474811;FR*SOD*E*MB40*54*1*3*_;;;;;;;;;;;;;;;;;;;23394211213910;;;;;;;;;0.71839;45.364296;62179;Visan;; +;ART DECO FINITION;;;;;;GROUPE DESFOSSEY- ACCOR - IBIS RED NUITS SAINT GEORGES;FRE04POAZS22622;FR*SOD*S*UNIB*29*4*_*_;SORGES-ET-LIGUEUX-EN-PERIGORD - PLACE JEAN DANIEL;;19 Bis Rue Pierre de Fermat, 31600 Muret;85092;[0.55972, 45.56986];;FRS47EMB474712;FR*SOD*E*MB40*54*1*4*_;;;;;;;;;;;;;;;;;;;23253545457516;;;;;;;;;0.27914;45.36301;62730;Villeveyrac;; +;SCP ACANTHE DRIMARACCI;;;;;;GROUPE DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE;FRE04POAZS22721;FR*SOD*S*LVPR*5*4*_*_;SIORAC EN PERIGORD - ZONE COMMERCIALE;;Aire de Wancourt Est A1, 62128 Monchy-le-Preux;35197;[0.71839, 45.02641];;FRS47EMB474711;FR*SOD*E*MB40*54*1*1*_;;;;;;;;;;;;;;;;;;;23231837789486;;;;;;;;;0.67401;45.118351;76930;Cayenne;; +;SELARL PHARMACIE CEVENOLE;;;;;;GROUPE DESFOSSEY - ACCOR - IBIS RED CHALON SUR SAONE NORD;FRE04POAZS22722;FR*SOD*S*LVPR*2*18*_*_;SIGOULES - PARKING ROUTE DE PERTHUS;;Place Rillé, 28290 Commune nouvelle d'Arrou;35196;[0.27914, 45.16059];;FRS47EMB474612;FR*SOD*E*MB40*53*1*4*_;;;;;;;;;;;;;;;;;;;23230101174634;;;;;;;;;0.88787;44.8554;76280;Zuydcoote;; +;IFERRO;;;;;;GROUPE DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE;FRE04POAZS22711;FR*SOD*S*LVPR*2*2*_*_;SAVIGNAC LES EGLISES - PLACE DU 19 MARS;;Rue André Ravalee, 28100 Dreux;35199;[0.67401, 45.58997];;FRS47EMB474611;FR*SOD*E*MB40*53*1*1*_;;;;;;;;;;;;;;;;;;;23174674231367;;;;;;;;;0.768692;45.204578;97233;Bergues;; +;Intermarché - Dolus-d'Oléron;;;;;;GROUPE DESFOSSEY - SIEGE;FRE04POAZS22421;FR*SOD*S*LVPR*2*10*_*_;SARLAT LA CANEDA - PLACE DU MARCHE AUX NOIX;;Avenue du Maine, 37110 CHÂTEAU RENAULT;35198;[0.88787, 44.88431];;FRS47EMB474511;FR*SOD*E*MB40*59*1*3*_;;;;;;;;;;;;;;;;;;;23246888440990;;;;;;;;;0.689566;45.222622;97270;Les Herbiers;; +;Sud Camargue;;;;;;VIKINGS CASINO MERCURE HONFLEUR;FRE04POAZS22412;FR*SOD*S*LVPR*2*9*_*_;SINGLERYAC - PEYRICHOUX;;A7, Aire de Montélimar Est, 26780 Allan;35201;[0.768692, 44.767879];;FRS47EMB474512;FR*SOD*E*MB40*59*1*2*_;;;;;;;;;;;;;;;;;;;23205933303830;;;;;;;;;0.727561;44.803703;97211;Arsonval;; +;ETS LEVEIER et Fils;;;;;;ACCOR HOTELS;FRE04POAZS19423;FR*SOD*S*LVPR*2*1*_*_;SARLAT LA CANEDA - PLACE DES CORDELIERS;;Rue Gustave EIFFEL, 37230 Fondettes;35200;[0.689566, 45.19173];;FRS47EMB474411;FR*SOD*E*MB40*64*1*3*_;;;;;;;;;;;;;;;;;;;23122575819191;;;;;;;;;0.666067;45.336727;97212;Châtenois;; +;ETS LEVEZIER et Fils;;;;;;RIESTER MEAUX;FRE04POAZS21821;FR*SOD*S*LVPR*2*20*_*_;SARLAT LA CANEDA - PLACE DE LA LIBERATION;;Place du Général Leclerc, 37110 Auzouer de Touraine;21714;[0.727561, 45.216908];;FRS47EMB474412;FR*SOD*E*MB40*59*1*1*_;;;;;;;;;;;;;;;;;;;23111866703905;;;;;;;;;0.704716;44.666527;26510;La Hague;; +;Agglomération Montargoise Et Rives du Loing;;;;;;KIA COLMAR CAR AVENUE;FRE04POAZS19823;FR*SOD*S*LVPR*2*6*_*_;SARLAT LA CANEDA - AVENUE ARISTIDE BRIAND;;427 Rue de la Chaussée, 76320 Caudebec-lès-Elbeuf;60533;[0.666067, 45.205341];;FRS47EMB474312;FR*SOD*E*MB40*62*1*4*_;;;;;;;;;;;;;;;;;;;23393632341776;;;;;;;;;0.703903;44.790836;76190;Périers;; +;R3;;;;;;KIA FORBACH;FRE04POAZS19821;FR*SOD*S*LVPR*2*5*_*_;SALIGNAC EYVIGUES - PLACE DE LA MAIRIE;;Place Jean Thévenot, 18190 Châteauneuf-sur-Cher;02190;[0.704716, 45.364296];;FRS47EMB472912;FR*SOD*E*MB40*65*1*1*_;;;;;;;;;;;;;;;;;;;23135166268409;;;;;;;;;1.232004;45.392223;76380;Picauville;; +;GARAGE CHENE;;;;;;BMW EPINAL;FRE04POAZS21311;FR*SOD*S*LVPR*2*13*_*_;NOTRE DAME DE SANILHAC - PLACE DU 19 MARS;;Place de la Marne, 37550 SAINT AVERTIN;78431;[0.703903, 45.36301];;FRS47EMB471511;FR*SOD*E*MB40*65*1*4*_;;;;;;;;;;;;;;;;;;;23206656890426;;;;;;;;;0.568117;44.836281;76120;Pierreville;; +;Allego;;;;;;KIA METZ;FRE04POAZS21312;FR*SOD*S*LVPR*2*4*_*_;SAINT ASTIER - PLACE DU 19 MARS 62;;2 Imp. Blaise Pascal, 15130 Aurillac;59564;[1.232004, 45.118351];;FRS47EMB472811;FR*SOD*E*MB40*64*1*2*_;;;;;;;;;;;;;;;;;;;23157308093816;;;;;;;;;0.743226;45.36491;61300;Poilley;; +;Allouis Face Intec;;;;;;Renault Agents France;FRE04POAZS21512;FR*SOD*S*LVPR*2*14*_*_;LALINDE - IMPASSE DU BASSIN;;11 Rue Gustave Eiffel, 13010 Marseille;02399;[0.568117, 44.8554];;FRS47EMB471411;FR*SOD*E*MB40*64*1*1*_;;;;;;;;;;;;;;;;;;;23205354432838;;;;;;;;;0.937528;44.630783;76550;Pont-Hébert;; +;AUBERGE SAINT WALFRID;;;;;;Atelier de l'Aluminium Chanopost;FRE04POAZS21511;FR*SOD*S*LVPR*2*3*_*_;PERIGUEUX - RUE DENIS PAPIN;;N20, 09000 Foix;59603;[0.743226, 45.204578];;FRS47EMB471312;FR*SOD*E*MB40*64*1*4*_;;;;;;;;;;;;;;;;;;;23178581611393;;;;;;;;;1.21471;45.182499;76320;Sartilly-Baie-Bocage;; +;TV MOSAIK;;;;;;CHALLANS AUTOMOBILES;FRE04POAZS21822;FR*SOD*S*LVPR*2*19*_*_;CHATEAU LEVEQUE - ROUTE DE ROYER;;PLACE DU 8 MAI, 37460 LE LIEGE;67067;[0.937528, 45.222622];;FRS47EMB471212;FR*SOD*E*MB40*52*1*2*_;;;;;;;;;;;;;;;;;;;23235600452493;;;;;;;;;1.051004;45.181854;88510;Port-Bail-sur-Mer;; +;FOURNIER GUY;;;;;;METROPOLE D'AIX-MARSEILLE-PROVENCE;FRE04POAZS22413;FR*SOD*S*LVPR*2*15*_*_;CHERVEIX-CUBAS - PLACE GOUMONDIE;;7 Allée Larroumet et Lagarde, 47550 Boé;02360;[1.21471, 44.803703];;FRS47EMB471211;FR*SOD*E*MB40*63*1*2*_;;;;;;;;;;;;;;;;;;;23375253182354;;;;;;;;;0.400101;44.75946;25110;Quettehou;; +;point P;;;;;;VIKING CASINOS;FRE04POAZS21823;FR*SOD*S*LVPR*2*7*_*_;SAINT-SAUD-LACOUSSIERE - PLACE DU CHAMP DE FOIRE;;Aire de la Plaine du Forez A72, 42600 Magneux;59065;[1.051004, 45.336727];;FRS47EMB471112;FR*SOD*E*MB40*63*1*4*_;;;;;;;;;;;;;;;;;;;23120260337586;;;;;;;;;0.642597;45.321854;22240;Quettreville-sur-Sienne;; +;MEH;;;;;;RIESTER BEAUVAIS;FRE04POAZS21912;FR*SOD*S*LVPR*2*8*_*_;JAVERLHAC-ET-LA-CHAPELLE-SAINT-ROBERT - PLACE DU 8 MAI 1945;;44 Place St Pol, 28400 Nogent-le-Rotrou;39024;[0.400101, 44.666527];;FRS47EMB471111;FR*SOD*E*MB40*63*1*1*_;;;;;;;;;;;;;;;;;;;23217800160582;;;;;;;;;0.698037;45.176006;76310;Réville;; +;SARL WILIS (CENTRAKOR);;;;;;PSA Agents France;FRE04POAZS21911;FR*SOD*S*LVPR*1*3*_*_;VERGT - PLACE CHARLES MANGOLD;;2 Rue des Frères Gasnier, 49080 Bouchemaine;01142;[0.642597, 44.790836];;FRS47EMB471011;FR*SOD*E*MB40*63*1*3*_;;;;;;;;;;;;;;;;;;;23332850865619;;;;;;;;;0.331995;45.36924;76133;Percy-en-Normandie;; +;TERRITOIRE D'ENERGIE ALSACE;;;;;;Résidence les Primevères;FRE04POAZS22122;FR*SOD*S*LVPR*1*1*_*_;LA JEMAYE-PONTEYRAUD - ETANG LA JEMAYE;;1 Rue Henri Becquerel, 66330 Cabestany;89438;[0.698037, 45.392223];;FRS47EMB471012;FR*SOD*E*MB40*62*1*1*_;;;;;;;;;;;;;;;;;;;23342402241652;;;;;;;;;0.647709;44.935707;22490;Grandparigny;; +;MACRIS;;;;;;GARAGE PEUGEOT CUCIS;FRE04POAZS22123;FR*SOD*S*LVPR*1*4*_*_;SAINT-ESTEPHE - GRAND ETANG;;8 Impasse Rothschild, 75018 Paris;52332;[0.331995, 44.836281];;FRS47EMB47911;FR*SOD*E*MB40*59*1*4*_;;;;;;;;;;;;;;;;;;;23235745168745;;;;;;;;;0.870593;44.939213;34920;Mortain-Bocage;; +;HOPITAUX MASSIF DES VOSGES Hôpital de Gerardmer;;;;;;DA COSTA AUTOMOBILES;FRE04POAZS22121;FR*SOD*S*LVPR*1*2*_*_;LIMEUIL - RUE DU PORT;;27 Av. Joliot-Curie, 17180 Perigny;21405;[0.647709, 45.36491];;FRS47EMB47912;FR*SOD*E*MB40*62*1*2*_;;;;;;;;;;;;;;;;;;;23164254549203;;;;;;;;;0.763094;44.813114;62100;Montmartin-sur-Mer;; +;HOPITAUX MASSIF DES VOSGES Hôpital de Moyenmoutier;;;;;;RIESTER BUSSY;FRE04POAZS25511;FR*SOD*S*LVPR*2*12*_*_;BEAUMONT DU PERIGORD - PLACE DE LA HALLE;;4 Rue Paul Gateaud, 71000 Mâcon;52114;[0.870593, 44.630783];;FRS47EMB47812;FR*SOD*E*MB40*62*1*3*_;;;;;;;;;;;;;;;;;;;23159334141006;;;;;;;;;0.75831;44.882481;35630;Montebourg;; +;HOPITAUX MASSIF DES VOSGES Hôpital de Saint die des Vosges;;;;;;BMW METZ;FRE04POAZS25513;FR*SOD*S*LVPR*2*17*_*_;COULOUNIEIX CHAMIERS - PLACE DE LA MAIRIE;;Bd industriel, 76800 Saint-Étienne-du-Rouvray;21087;[0.763094, 45.182499];;FRS47EMB47811;FR*SOD*E*MB40*61*1*1*_;;;;;;;;;;;;;;;;;;;23393198189402;;;;;;;;;0.526162;44.798595;44000;Martinvast;; +;hotel la muse;;;;;;BMW SARREBOURG;FRE04POAZS25612;FR*SOD*S*LVPR*2*16*_*_;CHAMPCEVINEL - RUE LOUIS ARAGON;;Aire de De Rousset, Autoroute A8, 13790 Rousset;89461;[0.75831, 45.181854];;FRS47EMB47712;FR*SOD*E*MB40*61*1*2*_;;;;;;;;;;;;;;;;;;;23120405053766;;;;;;;;;0.589328;44.820824;49300;Marigny-Le-Lozon;; +;KIA - REIMS;;;;;;HOTEL VAL DE VIENNE;FRE04POAZS27022;FR*SOD*S*LVPR*4*5*_*_;CHANCELADE - PARKING MAIRIE RUE ANDRE MAUROIS;;19 Rte de Neuilly, 52000 Chaumont;16341;[0.526162, 44.75946];;FRS47EMB47711;FR*SOD*E*MB40*61*1*4*_;;;;;;;;;;;;;;;;;;;23302170692952;;;;;;;;;0.724982;44.839417;13080;Lessay;; +;Le Clos St. Gilles;;;;;;SAMSE - ERP COMBOIRE;FRE04POAZS26913;FR*SOD*S*LVPR*5*1*_*_;CONDAT SUR TRINCOU - MADEMOISELLE DESSERT - PARKING ADMINISTRATIF - AVANT;;1494 Chemin Sous Saint Etienne, 30100 Alès;59273;[0.589328, 45.321854];;FRS47EMB47611;FR*SOD*E*MB40*61*1*3*_;;;;;;;;;;;;;;;;;;;23342257523872;;;;;;;;;0.648179;45.184494;71390;Les Pieux;; +;SARl Vigot;;;;;;SAMSE - ERP BASSENS-Parking magasin;FRE04POAZS26912;FR*SOD*S*LVPR*4*6*_*_;CONDAT SUR TRINCOU - MADEMOISELLE DESSERT - PARKING DU PERSONNEL - ARRIERE;;6 Rue du Pré Talange, 57140 Woippy;91200;[0.724982, 45.176006];;FRS47EMB47612;FR*SOD*E*MB40*60*1*2*_;;;;;;;;;;;;;;;;;;;23237915936238;;;;;;;;;0.563419;45.129517;11430;Le Teilleul;; +;FDG Automobiles;;;;;;SCI GADMP;FRE04POAZS26911;FR*SOD*S*LVPR*4*9*_*_;CONDAT SUR VEZERE - PLACE DES ECOLES;;Chamont, 07120 Ruoms;77243;[0.648179, 45.36924];;FRS47EMB47511;FR*SOD*E*MB40*60*1*3*_;;;;;;;;;;;;;;;;;;;23268161957896;;;;;;;;;0.075685;44.938702;66200;Remilly Les Marais;; +;hotel-crequi-lyon;;;;;;KIA HAGUENAU;FRE04POAZS27012;FR*SOD*S*LVPR*4*2*_*_;CREYSSE - PLACE DE LA CREYSSETTE;;34 Avenue de Grasse, 06800 Cagnes-sur-Mer;77330;[0.563419, 44.935707];;FRS47EMB47512;FR*SOD*E*MB40*60*1*4*_;;;;;;;;;;;;;;;;;;;23311287914578;;;;;;;;;1.152277;44.934868;39570;La Haye-Pesnel;; +;NOMADE BREWERY;;;;;;RIESTER COULOMMIERS;FRE04POAZS27011;FR*SOD*S*LVPR*4*8*_*_;CHAMPCEVINEL - AQUACAP;;1 Rue Jean Mermoz, 95500 Gonesse;60395;[0.075685, 44.939213];;FRS47EMB47412;FR*SOD*E*MB40*60*1*1*_;;;;;;;;;;;;;;;;;;;23168017211949;;;;;;;;;1.433106;45.451656;02860;La Haye;; +;Impact Tomorrow;;;;;;BEST WESTERN NANTES;FRE04POAZS27021;FR*SOD*S*LVPR*5*2*_*_;CUBJAC - PLACE DU 19 MARS 1962;;Parking camping, 37150 Blere;57413;[1.152277, 44.813114];;FRS47EMB47411;FR*SOD*E*MB40*53*1*2*_;;;;;;;;;;;;;;;;;;;23292040392313;;;;;;;;;1.203975;45.187424;71570;Saint-Quentin-sur-le-Homme;; +;QoWatt;;;;;;L.R. Participations;FRE04POAZS27013;FR*SOD*S*LVPR*5*3*_*_;DOMME - LESPLANADE PARKING - RUE DU REPOS;;90 Rue Frédéric Joliot, 13290 Aix-en-Provence;60370;[1.433106, 44.882481];;FRS47EMB47312;FR*SOD*E*MB40*46*1*1*_;;;;;;;;;;;;;;;;;;;23171490434560;;;;;;;;;1.2907;44.992535;62580;Barenton;; +;2ED;;;;;;MERCURE ALBI;FRE04POAZS27112;FR*SOD*S*LVPR*4*4*_*_;EXCIDEUIL - PLACE A.MOULINIER;;Chateau de Montpoupon, 37460 CERE LA RONDE;50147;[1.203975, 44.798595];;FRS47EMB47311;FR*SOD*E*MB40*52*1*1*_;;;;;;;;;;;;;;;;;;;23137771191495;;;;;;;;;1.150119;44.845737;62320;Villedieu-les-Poêles-Rouffigny;; +;ELEIS SAS;;;;;;ACCOR Hotels;FRE04POAZS26813;FR*SOD*S*LVPR*4*7*_*_;EYMET - PARKING PARK RELAIS - DEPARTEMENTAL 18;;Rue de la Grosse Ferme, 37390 CHANCEAUX SUR CHOISILLE;67282;[1.2907, 44.820824];;FRS47EMB47212;FR*SOD*E*MB40*36*1*2*_;;;;;;;;;;;;;;;;;;;23260057759968;;;;;;;;;0.659777;44.793633;30000;Saint-Vaast-la-Hougue;; +;Toyota - Cheffois;;;;;;WARNING;FRE04POAZS27111;FR*SOD*S*LVPR*4*1*_*_;FAUX - D22 - PARKING MAIRIE;;8 Rue Paul Langevin, 47300 Villeneuve-sur-Lot;59154;[1.150119, 44.839417];;FRS47EMB47211;FR*SOD*E*MB40*41*1*2*_;;;;;;;;;;;;;;;;;;;23223588872349;;;;;;;;;1.228201;44.682358;22590;Tessy-Bocage;; +;BBT SARL;;;;;;F.B SERVICE;FRE04POAZS27213;FR*SOD*S*LVPR*4*3*_*_;CHAMPAGNAC DE BELAIR - PARKING AVENUE CHARLES SERRE;;Place Jehan D'Alluye, 37370 SAINT CHRISTOPHE SUR LE NAIS;84136;[0.659777, 45.184494];;FRS47EMB47111;FR*SOD*E*MB40*40*1*1*_;;;;;;;;;;;;;;;;;;;23233140247040;;;;;;;;;1.011215;44.852802;22710;Sourdeval;; +;L'Hotelloise Hotel des Bains;;;;;;LOUVRE HOTELS GROUP;FRE04POAZS27212;FR*SOD*S*LVPR*2*11*_*_;GARDONNE - RUE DE LA MAIRIE;;42 Rue de l'Innovation, 77550 Moissy-Cramayel;57260;[1.228201, 45.129517];;FRS47EMB47112;FR*SOD*E*MB40*40*1*2*_;;;;;;;;;;;;;;;;;;;23366280678128;;;;;;;;;1.018297;45.055424;22450;Agneaux;; +;ROBOTIC COVER CONCEPT;;;;;;FR*S28;FRE04POAZS27211;FR*SOD*S*LVPR*3*7*_*_;BRANTOME - BOULEVARD CHARLEMAGNE PARKING;;Le Plessis, 28340 Lamblore;26114;[1.011215, 44.938702];;FRS47EMB471311;FR*SOD*E*MB40*39*1*1*_;;;;;;;;;;;;;;;;;;;23369898623643;;;;;;;;;0.451196;45.060806;22230;Agon-Coutainville;; +;EPGML;;;;;;Foncière des parcs;FRE04POAZS27313;FR*SOD*S*LVPR*3*2*_*_;BIRON - PARKING BELLEVUE;;17 Rue de l'Équerre, 57100 Thionville;07138;[1.018297, 44.934868];;FRS47EMB471412;FR*SOD*E*MB40*39*1*2*_;;;;;;;;;;;;;;;;;;;23268740826324;;;;;;;;;0.661303;44.916542;22110;Saint-Sauveur-Villages;; +;GARAGE MALARD ET CIE;;;;;;HIPPOPOTAMUS;FRE04POAZS27311;FR*SOD*S*LVPR*3*3*_*_;BOULAZAC - AVENUE DE LAGORA MAIRIE;;Menez Crenn, 29810 Plouarzel;88530;[0.451196, 45.451656];;FRS47EMB472812;FR*SOD*E*MB40*38*1*2*_;;;;;;;;;;;;;;;;;;;23222286414750;;;;;;;;;0.909665;44.868919;22610;Saint-Sauveur-le-Vicomte;; +;IMAC2;;;;;;Réseau de recharge L2B;FRE04POAZS27312;FR*SOD*S*LVPR*3*1*_*_;BOULAZAC - PLACE MANDELA;;35 Rue Gay Lussac, 94430 Chennevières-sur-Marne;88098;[0.661303, 45.187424];;FRS47EMB471512;FR*SOD*E*MB40*38*1*1*_;;;;;;;;;;;;;;;;;;;23123444127847;;;;;;;;;0.912535;45.258835;22330;Saint-Pierre-Église;; +;LES GARAGES CHAIGNEAU - CHAURAY;;;;;;Réseau de recharge DEBELEC;FRE04POAZS26811;FR*SOD*S*LVPR*3*8*_*_;BOUNIAGUES - PARKING N21;;194 Av. des Romarins, 34130 Saint-Aunès;88465;[0.909665, 44.992535];;FRS47EMB472712;FR*SOD*E*MB40*37*1*2*_;;;;;;;;;;;;;;;;;;;23108972349449;;;;;;;;;0.490578;44.730904;22690;Saint-Pair-sur-Mer;; +;arteco44;;;;;;Hötel Orchidées S.A.R.L Céline;FRE04POAZS27113;FR*SOD*S*LVPR*6*5*_*_;BOURDEILLES - LE PARC PLACE DU FOIRAIL;;A10, 37110 Autrèche;88483;[0.912535, 44.845737];;FRS47EMB472711;FR*SOD*E*MB40*37*1*1*_;;;;;;;;;;;;;;;;;;;23132995500803;;;;;;;;;0.895054;45.493061;22680;Saint-Jean-de-Daye;; +;Le Grand Large;;;;;;LELIEUR FERNAND;FRE04POAZS26812;FR*SOD*S*LVPR*6*7*_*_;NOTRE DAME DE SANILHAC - PLACE DE LA MAIRIE;;21 Rue des Rochettes, 91150 Morigny-Champigny;88090;[0.490578, 44.793633];;FRS47EMB472612;FR*SOD*E*MB40*36*1*1*_;;;;;;;;;;;;;;;;;;;23339363167840;;;;;;;;;0.065287;45.539673;22940;Saint-James;; +;EasyCharge Services;;;;;;SOLLIX;FRE04POAZS25813;FR*SOD*S*LVPR*6*6*_*_;BRANTOME - CHEMIN DU VERT GALANT PARKING DES RECLUS;;Salle Socioculturel, 37460 CERE LA RONDE;88087;[0.895054, 44.682358];;FRS47EMB472611;FR*SOD*E*MB40*35*1*1*_;;;;;;;;;;;;;;;;;;;23178726329135;;;;;;;;;1.151401;44.867256;22960;Saint-Hilaire-du-Harcouët;; +;TOYOTA FONTENAY LE COMTE- LES GARAGES CHAIGNEAU;;;;;;larecharge;FRE04POAZS26711;FR*SOD*S*LVPR*6*8*_*_;CAMPSEGRET - PARKING DE LA MAIRIE;;Rue Alfred de Vigny, 37460 CERE LA RONDE;88201;[0.065287, 44.852802];;FRS47EMB472512;FR*SOD*E*MB40*42*1*2*_;;;;;;;;;;;;;;;;;;;23249927514769;;;;;;;;;1.165569;45.150936;22100;Saint-Georges-d'Elle;; +;Toyota Parthenay - LES GARAGES CHAIGNEAU;;;;;;Simone;FRE04POAZS25613;FR*SOD*S*MB87*25*1*_*_;CARSAC DE GURSON - BASE DE LOISIRS;;HYPER U LIEU DIT LES COUTURES, 45130 Baule;88099;[1.151401, 45.055424];;FRS47EMB472511;FR*SOD*E*MB40*35*1*2*_;;;;;;;;;;;;;;;;;;;23172648180711;;;;;;;;;0.926937;44.825272;22200;Carentan-les-Marais;; +;Toyota Bressuire - LES GARAGES CHAIGNEAU;;;;;;SIEG63;FRE04POAZS25611;FR*SOD*S*MB87*24*1*_*_;CASTELNAUD LA CHAPELLE - TOURNEPIQUE;;Rue de la poste, 37270 Azay-sur-Cher;88029;[1.165569, 45.060806];;FRS47EMB472412;FR*SOD*E*MB40*34*1*2*_;;;;;;;;;;;;;;;;;;;23370188059294;;;;;;;;;0.375426;44.835953;22700;Saint-Clair-sur-l'Elle;; +;Groupama supports et services;;;;;;RENAULT HAZEBROUCK;FRE04POAZS25711;FR*SOD*S*MB87*34*1*_*_;CAZOULES - PLACE DALSACE;;Allée des Chardonnerets, 37150 Blere;84096;[0.926937, 44.916542];;FRS47EMB472411;FR*SOD*E*MB40*34*1*1*_;;;;;;;;;;;;;;;;;;;23284515066371;;;;;;;;;1.145795;44.842258;22860;La Colombe;; +;2ED LOGISTIQUE;;;;;;CHARGEPOLY;FRE04POAZS25712;FR*SOD*S*MB87*23*1*_*_;CENAC - ROUTE DE ST MARTIAL D46;;470 Av. Flandres Dunkerque 1940, 02200 Villeneuve-Saint-Germain;34130;[0.375426, 44.868919];;FRS47EMB472311;FR*SOD*E*MB40*33*1*2*_;;;;;;;;;;;;;;;;;;;23140954983006;;;;;;;;;0.608055;45.392262;22210;Canisy;; +;Comte Liger-Belair;;;;;;2F Production;FRE04POAZS25812;FR*SOD*S*MB87*26*1*_*_;GROLEJAC - PARKING ZONE COMMERCIALE;;14 Rue de la gare, 55200 Commercy;84089;[1.145795, 45.258835];;FRS47EMB472312;FR*SOD*E*MB40*33*1*1*_;;;;;;;;;;;;;;;;;;;23193053391138;;;;;;;;;1.060931;44.922066;22250;Sainte-Mère-Église;; +;SEGA ELECTRICITE;;;;;;ANS COM;FRE04POAZS25811;FR*SOD*S*MB87*27*1*_*_;BEYNAC ET CAZENAC - PLACE DALSACE;;161 Rue des Industries, 50110 Tourlaville;13103;[0.608055, 44.730904];;FRS47EMB472211;FR*SOD*E*MB40*32*1*1*_;;;;;;;;;;;;;;;;;;;23371056366030;;;;;;;;;0.976027;44.849667;22470;Cérences;; +;SCI OLYMPE;;;;;;BDS MENUISERIE;FRE04POAZS25713;FR*SOD*S*MB87*20*1*_*_;MARSAC SUR LISLE - PLACE DE LA POSTE;;Place de L'église, 37290 BOSSAY SUR CLAISE;09194;[1.060931, 45.493061];;FRS47EMB472212;FR*SOD*E*MB40*32*1*2*_;;;;;;;;;;;;;;;;;;;23143849338999;;;;;;;;;0.375686;45.412544;22220;Cerisy-la-Salle;; +;SECAB;;;;;;LE DOMAINE DES CIGOGNES;FRE04POAZS25911;FR*SOD*S*MB87*22*1*_*_;LE LARDIN - PLACE HENI FAURE;;501 Rue de Tunis, 62100 Calais;62178;[0.976027, 45.539673];;FRS47EMB472111;FR*SOD*E*MB40*31*1*1*_;;;;;;;;;;;;;;;;;;;23117076543469;;;;;;;;;0.011073;45.009018;22140;Juvigny les Vallées;; +;Credit Agricole Le Passage;;;;;;Hôtel EUROPA;FRE04POAZS25913;FR*SOD*S*MB87*21*1*_*_;LES EYZIES DE TAYAC SIREUIL - AVENUE DE LE PREHISTOIRE;;1523 Avenue de Draguignan, 83130 La Garde;38335;[0.375686, 44.867256];;FRS47EMB472112;FR*SOD*E*MB40*31*1*2*_;;;;;;;;;;;;;;;;;;;23339797321217;;;;;;;;;1.18357;45.009335;22130;Brix;; +;COMMUNAUTE DE COMMUNE LE DOURDANNAIS EN HUREPOIX (CCDH);;;;;;FRESMILE;FRE04POAZS25912;FR*SOD*S*MB87*28*1*_*_;LES EYZIES DE TAYAC SIREUIL - PARKING AVENUE DE LA FORGE;;14 Rue des Chevries, 78410 Aubergenville;01320;[0.011073, 45.150936];;FRS47EMB472011;FR*SOD*E*MB40*30*1*1*_;;;;;;;;;;;;;;;;;;;23227351534988;;;;;;;;;0.724749;45.033329;22300;Bricquebec-en-Cotentin;; +;Engie Mobilit�s Electriques;;;;;;LA DILETTANTE;FRE04POAZS26611;FR*SOD*S*MB87*19*1*_*_;MAREUIL - PLACE DE LA FELIBRE;;Rue jean moulin, 28170 Chateauneuf En Thymerais;49353;[1.18357, 44.825272];;FRS47EMB472012;FR*SOD*E*MB40*41*1*1*_;;;;;;;;;;;;;;;;;;;23250072232905;;;;;;;;;0.382402;45.09845;22620;Brécey;; +;AUTOPRO;;;;;;GOOD KING;FRE04POAZS26613;FR*SOD*S*MB87*30*1*_*_;MARSAC SUR LISLE - IMPASSE DU VIEUX MOULIN;;Rue de la ferté Vidame, 38250 Senonches;94073;[0.724749, 44.835953];;FRS47EMB471911;FR*SOD*E*MB40*42*1*1*_;;;;;;;;;;;;;;;;;;;23266714777918;;;;;;;;;1.140332;45.101334;22410;Benoîtville;; +;ABSOLUT;;;;;;HERVE THERMIQUE IRVE;FRE04POAZS26612;FR*SOD*S*MB87*32*1*_*_;MAUZENS MIREMONT - PARKING DU STADE;;Place Vauvillier, 28130 ST PIAT;91235;[0.382402, 44.842258];;FRS47EMB471912;FR*SOD*E*MB40*52*1*3*_;;;;;;;;;;;;;;;;;;;23207091043810;;;;;;;;;0.926065;45.532616;22810;Barneville-Carteret;; +;ALC CAR;;;;;;STBM;FRE04POAZS26713;FR*SOD*S*MB87*39*1*_*_;LE BUISSON DE CADOUIN - PLACE MIANNE;;214 Avenue de Rodez, 12450 Luc-la-Primaube;59090;[1.140332, 45.392262];;FRS47EMB471812;FR*SOD*E*MB40*49*1*4*_;;;;;;;;;;;;;;;;;;;23137337038476;;;;;;;;;0.48543;45.528957;22170;Condé-sur-Vire;; +;2ED Coutances;;;;;;ESPACE AUTO COURNON;FRE04POAZS26712;FR*SOD*S*MB87*34*2*_*_;MONBAZILLAC - PARKING RESTAURANT SEMILLION;;Rue de Verdun, 28250 Senonches;78208;[0.926065, 44.922066];;FRS47EMB471811;FR*SOD*E*MB40*52*1*4*_;;;;;;;;;;;;;;;;;;;23393053471674;;;;;;;;;1.167167;44.777496;22570;Gavray-sur-Sienne;; +;Armonial Immobilier;;;;;;Réseau de recharge Brasserie Castelain;FRS40PMB405712;FR*SOD*S*MB87*33*1*_*_;MONPAZIER - PLACE DU FOIRAIL NORD;;112 Avenue de la république, 28600 Luisant;74224;[0.48543, 44.849667];;FRS47EMB471711;FR*SOD*E*MB40*51*1*1*_;;;;;;;;;;;;;;;;;;;23330535380951;;;;;;;;;0.165742;44.853123;22160;Jullouville;; +;LA RESERVE DE RILHAT;;;;;;Levaroy;FRS40PMB405613;FR*SOD*S*MB87*29*1*_*_;MONTCARET - PLACE TOURNIER;;Route des Industries, 37530 Poce Sur Cisse;78490;[1.167167, 45.412544];;FRS47EMB471712;FR*SOD*E*MB40*51*1*2*_;;;;;;;;;;;;;;;;;;;23379739433148;;;;;;;;;0.163076;44.85006;22540;Isigny-le-Buat;; +;GEDIBOIS BATI COLMAN;;;;;;eborn;FRS40PMB405611;FR*SOD*S*MB87*31*1*_*_;MONTIGNAC - D706 - ZONE COMMERCIALE LACOSTE;;Rue Honoré de Balzac, 37700 Saint-Pierre-des-Corps;74093;[0.165742, 45.009018];;FRS47EMB471612;FR*SOD*E*MB40*51*1*4*_;;;;;;;;;;;;;;;;;;;23201157613811;;;;;;;;;0.352734;44.857044;22260;Thèreval;; +;Groupe Pandora;;;;;;Réseau Saint Étienne Métropole;FRS40PMB405711;FR*SOD*S*MB87*18*1*_*_;MONTIGNAC - PARKING LASCAUX - D704E1;;15 rue des entrepreneurs, 41700 Controis en Sologne;74007;[0.163076, 45.009335];;FRS47EMB471611;FR*SOD*E*MB40*51*1*3*_;;;;;;;;;;;;;;;;;;;23174240075425;;;;;;;;;0.470814;45.192722;22820;Hauteville-sur-Mer;; +;Vannerie Candas Freres;;;;;;DOMAINE DE VALINCHES;FRS40PMB405714;FR*SOD*S*MB87*8*1*_*_;LE BUGUE - PLACE LEOPOLD SALME;;Aire de Giberville Nord A13 Km 219, 14730 Giberville;01053;[0.352734, 45.033329];;FRS47EMB475812;FR*SOD*E*MB40*50*1*3*_;;;;;;;;;;;;;;;;;;;23319681546202;;;;;;;;;0.468953;44.879646;22420;Hambye;; +;CAMILLE FERRAT Pertuis;;;;;;ETOTEM Aytré;FRS40PMB405812;FR*SOD*S*MB87*7*1*_*_;LA FORCE - RUE DE LA LIBERATION - PARKING ESPACE SOCIO-CULTUREL;;Z.A. Bois Pataud, 37150 CIVRAY DE TOURAINE;13019;[0.470814, 45.09845];;FRS47EMB475611;FR*SOD*E*MB40*50*1*4*_;;;;;;;;;;;;;;;;;;;72800000000246;;;;;;;;;0.662087;48.718861;22560;Torigny-les-Villes;; +;GAGNERAUD CONSTRUCTION;;;;;;Eurocommercial Etrembières;FRS40PMB405713;FR*SOD*S*MB87*6*1*_*_;HAUTEFORT - RUE BERTRAND DE BORN;;Bel Air, 46260 Limogne-en-Quercy;04112;[0.468953, 45.101334];;FRS47EMB477311;FR*SOD*E*MB40*50*1*2*_;;;;;;;;;;;;;;;;;;;23269753851790;;;;;;;;;0.664768;48.693527;22360;Granville;; +;ALLENERGIES;;;;;;DOMAINE DE LA SAPINIERE;FRS40PMB405814;FR*SOD*S*MB87*5*1*_*_;ISSIGEAC - D14 - PARKING;;33 Av. de la Loubert, 52100 Saint-Dizier;66136;[0.662087, 45.532616];;FRS47EMB475811;FR*SOD*E*MB40*50*1*1*_;;;;;;;;;;;;;;;;;;;23117655414900;;;;;;;;;1.006493;48.638779;22290;Gouville-sur-Mer;; +;SOLIDARAUTO;;;;;;Cimetière intercommunal de Valenton;FRS40PMB405813;FR*SOD*S*MB87*4*1*_*_;JUMILHAC - PLACE DU CHATEAU;;Parking rue Charles de Gaulles, 37150 Francueil;84150;[0.664768, 45.528957];;FRS47EMB478512;FR*SOD*E*MB40*49*1*1*_;;;;;;;;;;;;;;;;;;;78200000002373;;;;;;;;;0.482518;48.572861;22650;Folligny;; +;SCACHE GARAGE SENIA;;;;;;CYTHELIA ENERGY;FRS40PMB405811;FR*SOD*S*MB87*3*1*_*_;LA COQUILLE - PLACE BOYER DE LA VEYSSIERE;;ZA de la Ferriere, 37270 ATHEE SUR CHER;34341;[1.006493, 44.777496];;FRS47EMB479811;FR*SOD*E*MB40*49*1*2*_;;;;;;;;;;;;;;;;;;;23135889860821;;;;;;;;;0.487476;48.694752;22980;Fleury;; +;GRSE GARAGE MARINIERE;;;;;;CLOS DE LA VAUPALIERE;FRS40PMB405612;FR*SOD*S*MB87*2*1*_*_;LA FORCE - PARKING AVENUE DES DUCS DE LA FORCE;;Z.A. - Node Park, 37310 Tauxigny;97302;[0.482518, 44.853123];;FRS47EMB479712;FR*SOD*E*MB40*43*1*2*_;;;;;;;;;;;;;;;;;;;23145875389077;;;;;;;;;0.488127;48.576057;22660;Flamanville;; +;Bricomarché Coarraze;;;;;;CERTAS Eurodisney;FRS40PMB405614;FR*SOD*S*MB87*1*1*_*_;LA ROCHE CHALAIS - PLACE DE LETOILE;;Place du 11 Novembre, 41320 MENNETOU SUR CHER;78688;[0.487476, 44.85006];;FRS47EMB479711;FR*SOD*E*MB40*49*1*3*_;;;;;;;;;;;;;;;;;;;23232995529244;;;;;;;;;0.815406;48.620556;22390;Ducey-Les Chéris;; +;NIJKERK COMPUTER SOLUTIONS;;;;;;GARAGE DU CENTRE;FRS40PMB405313;FR*SOD*S*MB87*17*1*_*_;LA ROQUE-GAGEAC - PLACE DU 8 MAI;;Rue de la Gare, 41200 Villeherviers;59668;[0.488127, 44.857044];;FRS47EMB479612;FR*SOD*E*MB40*47*1*2*_;;;;;;;;;;;;;;;;;;;23156295069999;;;;;;;;;0.947273;48.492584;22480;Donville-les-Bains;; +;Volta Charging;;;;;;CENTRE COMMERCIAL CENTR'AZUR;FRS40PMB405514;FR*SOD*S*MB87*14*1*_*_;LALINDE - AVENUE JEAN MOULIN;;Place de l'Eglise, 41230 VERNOU EN SOLOGNE;59540;[0.815406, 45.192722];;FRS47EMB479611;FR*SOD*E*MB40*47*1*1*_;;;;;;;;;;;;;;;;;;;23160491883857;;;;;;;;;1.893833;48.681057;22340;Créances;; +;94346;;;;;;Hôtel Mercure Orange Centre;FRS40PMB405511;FR*SOD*S*MB87*15*1*_*_;LAMONZIE SAINT MARTIN - PARKING AVENUE DE BERGERAC;;Place du 8 Mai, 41240 BEAUCE LA ROMAINE;59067;[0.947273, 44.879646];;FRS47EMB479511;FR*SOD*E*MB40*46*1*2*_;;;;;;;;;;;;;;;;;;;23184080885984;;;;;;;;;1.855722;48.624027;22370;Couville;; +;MIDAS - 973;;;;;;Hôtel Ibis Style Fougères;FRS40PMB405512;FR*SOD*S*MB87*9*1*_*_;LANOUAILLE - RUE DU PONT LASVEYRAS PARKING;;Place du 8 Mai, 41160 Moree;85109;[1.893833, 48.718861];;FRS47EMB479512;FR*SOD*E*MB40*91*1*4*_;;;;;;;;;;;;;;;;;;;23197250207565;;;;;;;;;1.771222;48.691528;22440;Saint-Georges-de-Rouelley;; +;S.S.E.S.A.D.;;;;;;Garage Quantin;FRS40PMB405513;FR*SOD*S*MB87*12*1*_*_;LE BUGUE - PLACE DE PRE SAINT LOUIS;;Avenue Anciens combattants AFN, 41700 COUR CHEVERNY;10012;[1.855722, 48.693527];;FRS47EMB479411;FR*SOD*E*MB40*45*1*2*_;;;;;;;;;;;;;;;;;;;23163675673892;;;;;;;;;1.9375;48.462891;22430;Siouville-Hague;; +;LABORATOIRE ESTRADE HUART;;;;;;Garage de la Senia;FRS40PMB405412;FR*SOD*S*MB87*11*1*_*_;BERGERAC - RUE CANDILLAC MAIRIE;;Route de Chambord, 41350 SAINT GERVAIS LA FORET;67073;[1.771222, 48.638779];;FRS47EMB479412;FR*SOD*E*MB40*45*1*1*_;;;;;;;;;;;;;;;;;;;23265267601905;;;;;;;;;1.8545;48.635139;22270;Saint-Jean-d'Elle;; +;GABORIT BOCAGE SERVICES (O2);;;;;;Garage de la Marinière;FRS40PMB405413;FR*SOD*S*MB87*10*1*_*_;ANGOISSE - ROUFFIAC - BASE LOISIRS;;Place de la mairie, 37360 Neuillé-Pont-Pierre;50041;[1.9375, 48.572861];;FRS47EMB479311;FR*SOD*E*MB40*44*1*2*_;;;;;;;;;;;;;;;;;;;23105499120102;;;;;;;;;1.877333;48.666058;22500;Pirou;; +;Mazda CHATENOIS - GARAGE WALTER;;;;;;Garage Cheminal - Volkswagen;FRS40PMB405414;FR*SOD*S*WIIZ*149*2*_*_;MONTPON MENESTEROL - PLACE DU FOIRAIL;;Rue de l'Angevinière, 41120 Cellettes;50394;[1.8545, 48.694752];;FRS47EMB479312;FR*SOD*E*MB40*44*1*1*_;;;;;;;;;;;;;;;;;;;23176121405837;;;;;;;;;1.73275;48.553249;22800;Le Port;; +;CHERBOURG EN COTENTIN;;;;;;GAMMVERT - BRIGNAIS;FRS40PMB405411;FR*SOD*S*WIIZ*151*1*_*_;MONTPON MENESTEROL - PLACE GAMBETTA;;Rue de norvège, 54500 Vandoeuvre;50400;[1.877333, 48.576057];;FRS47EMB479212;FR*SOD*E*MB40*43*1*1*_;;;;;;;;;;;;;;;;;;;23150795790445;;;;;;;;;1.870972;48.700056;22320;Cornillon;; +;SDEM50;;;;;;GAMM VERT - MONISTROL SUR LOIRE;FRS40PMB405314;FR*SOD*S*WIIZ*150*1*_*_;MUSSIDAN - RUE RAYMOND VILLECHANOUX - PARKING DE LA GARE;;350 avenue de l'Europe, 83140 Six-Fours-les-Plages;50401;[1.73275, 48.620556];;FRS47EMB479211;FR*SOD*E*MB40*91*1*3*_;;;;;;;;;;;;;;;;;;;23119536746006;;;;;;;;;1.648667;48.621056;22630;Sévérac d'Aveyron;; +;AVRANCHES;;;;;;AGGLOMERATION MONTARGOISE - CORQUILLEROY;FRS40PMB405311;FR*SOD*S*WIIZ*149*1*_*_;NEUVIC - PARKING CENTRE MULTIMEDIA RUE DES FRERES POUGET;;Rue Charles de Gaulle, 37600 SAINT SENOCH;50407;[1.870972, 48.492584];;FRS47EMB479111;FR*SOD*E*MB40*86*1*3*_;;;;;;;;;;;;;;;;;;;23231258918288;;;;;;;;;1.825583;48.616028;22730;Albitreccia;; +;ST LO;;;;;;AGGLOMERATION MONTARGOISE - VILLEMANDEUR;FRS40PMB405913;FR*SOD*S*WIIZ*148*1*_*_;NEUVIC - PLACE DU CHAPDAL;;Zoo and Botanical Garden of Branféré, 56190 Le Guerno;50409;[1.648667, 48.681057];;FRS47EMB479112;FR*SOD*E*MB40*91*1*2*_;;;;;;;;;;;;;;;;;;;23156439787737;;;;;;;;;1.857833;48.639778;22770;Hèches;; +;HOTEL LE TILBURY;;;;;;AGGLOMERATION MONTARGOISE - SOLTERRE;FRS40PMB405912;FR*SOD*S*WIIZ*148*2*_*_;NONTRON - BOULEVARD GAMBETTA PARKING;;Place du Mail, 37460 LOCHE SUR INDROIS;50565;[1.825583, 48.624027];;FRS47EMB479011;FR*SOD*E*MB40*90*1*2*_;;;;;;;;;;;;;;;;;;;23318089650499;;;;;;;;;1.876806;48.571835;22510;Volonne;; +;EASYPLUG;;;;;;AGGLOMERATION MONTARGOISE - PAUCOURT;FRS40PMB406413;FR*SOD*S*WIIZ*152*1*_*_;NONTRON - IMPASSE NOTRE DAME PARKING ST SAUVER;;Place de la mairie, 37370 Villebourg;50412;[1.857833, 48.691528];;FRS47EMB479012;FR*SOD*E*MB40*72*1*2*_;;;;;;;;;;;;;;;;;;;23284659783307;;;;;;;;;1.835139;48.612;22460;Saint-Antonin-du-Var;; +;CAMPING LES AMARINES;;;;;;AGGLOMERATION MONTARGOISE - PANNES;FRS40PMB405911;FR*SOD*S*WIIZ*147*1*_*_;BELVES - ESPLANADE DE LA BRECHE PARKING;;104 Bd Jean Monnet, 85300 Challans;50417;[1.876806, 48.462891];;FRS47EMB478911;FR*SOD*E*MB40*72*1*4*_;;;;;;;;;;;;;;;;;;;23353979665389;;;;;;;;;1.876861;48.578239;22400;Épernon;; +;CAMPING LE PLO;;;;;;AGGLOMERATION MONTARGOISE - LOMBREUIL;FRS40PMB406214;FR*SOD*S*WIIZ*155*1*_*_;BERGERAC - RUE MOUNEY SULLY;;13 Rue de Ris, 91170 Viry-Châtillon;50419;[1.835139, 48.635139];;FRS47EMB478912;FR*SOD*E*MB40*72*1*3*_;;;;;;;;;;;;;;;;;;;23299855156176;;;;;;;;;1.912787;48.677654;22600;Granges-Aumontzey;; +;KALLISTE RIVE SUD;;;;;;AGGLOMERATION MONTARGOISE - CONFLANS SUR LOING;FRS40PMB406511;FR*SOD*S*WIIZ*153*1*_*_;BERGERAC - PLACE DU FOIRAIL;;Place de la Fontaine, 37260 Monts;50433;[1.876861, 48.666058];;FRS47EMB478811;FR*SOD*E*MB40*73*1*1*_;;;;;;;;;;;;;;;;;;;50051763632137;;;;;;;;;1.887639;48.649048;22310;Argelès-sur-Mer;; +;CAMPING LA BOURIE;;;;;;AGGLOMERATION MONTARGOISE - CHEVILLON SUR HUILLARD;FRS40PMB406514;FR*SOD*S*WIIZ*154*1*_*_;BERGERAC - GARE DE BERGERAC PARKING;;Allée du Parc de Bel Air, 41100 SAINT OUEN;50393;[1.912787, 48.553249];;FRS47EMB478812;FR*SOD*E*MB40*73*1*4*_;;;;;;;;;;;;;;;;;;;50099084801191;;;;;;;;;2.00075;48.6362;22640;Nancy;; +;CAMPING Sunêlia l-Hippocampe;;;;;;AGGLOMERATION MONTARGOISE - CEPOY;FRS40PMB406412;FR*SOD*S*WIIZ*157*1*_*_;BASSILLAC ET AUBEROCHE - RUE JACQUES PREVERT;;345 Allée des Mesanges, 40090 Saint-Avit;50391;[1.887639, 48.700056];;FRS47EMB478712;FR*SOD*E*MB40*73*1*3*_;;;;;;;;;;;;;;;;;;;50091264107098;;;;;;;;;2.028;48.650483;22970;Saint-Laurent-du-Verdon;; +;SAS LUMIIN;;;;;;AGGLOMERATION MONTARGOISE - AMILLY 2;FRS40PMB406411;FR*SOD*S*WIIZ*158*1*_*_;AUDRIX - LE BOURG PARKING PISCINE;;8 Av. du 21e Siecle, 95500 Gonesse;50359;[2.00075, 48.621056];;FRS47EMB478711;FR*SOD*E*MB40*73*1*2*_;;;;;;;;;;;;;;;;;;;50022232569885;;;;;;;;;1.954833;48.644615;22750;Foix;; +;LE COLOMBIER;;;;;;AGGLOMERATION MONTARGOISE - AMILLY 1;FRS40PMB406414;FR*SOD*S*WIIZ*159*1*_*_;LES ESSARTS LE ROI- PLACE DU MARCHE;;7 avenue du 21e siecle MANUTAN, 95500 Gonesse;50349;[2.028, 48.616028];;FRS47EMB478612;FR*SOD*E*MB40*74*1*2*_;;;;;;;;;;;;;;;;;;;50006602281506;;;;;;;;;1.942056;48.578293;22530;Le Blanc-Mesnil;; +;SCI CHATEAU MENTONE;;;;;;Aéroport de Lille-Lesquin;FRS40PMB405212;FR*SOD*S*WIIZ*144*1*_*_;LE PERRAY EN YVELINES - AVENUE DE LA GARE;;Route de Richelieu, 37800 Antogny-le-Tillac;50341;[1.954833, 48.639778];;FRS47EMB478611;FR*SOD*E*MB40*74*1*3*_;;;;;;;;;;;;;;;;;;;50060148938298;;;;;;;;;1.909889;48.583527;22830;Bulgnéville;; +;SARL SUN DEVELOPPEMENT;;;;;;AGGLOMERATION MONTARGOISE - VIMORY;FRS40PMB406312;FR*SOD*S*WIIZ*135*1*_*_;GAZERAN - RUE DE GAULLE;;Rue Principale, 37240 Bournan;50294;[1.942056, 48.571835];;FRS47EMB479812;FR*SOD*E*MB40*74*1*4*_;;;;;;;;;;;;;;;;;;;50050017358311;;;;;;;;;1.990366;48.645462;22190;Salies-du-Salat;; +;SARL CIEL;;;;;;Carrefour Nice Lingostière;FRS40PMB406314;FR*SOD*S*WIIZ*160*1*_*_;SAINT ARNOULT - PLACE JEAN MOULIN A;;Route du Coteau, 37150 EPEIGNE LES BOIS;50292;[1.909889, 48.612];;FRS47EMB479912;FR*SOD*E*MB40*74*1*1*_;;;;;;;;;;;;;;;;;;;50062035783140;;;;;;;;;1.757398;48.720886;22380;Castelnaudary;; +;SARL WILL N CO hotel formule 1;;;;;;CASINO DE MONTROND;FRS40PMB406311;FR*SOD*S*WIIZ*130*9*_*_;LE PERRAY EN YVELINES- MAIRIE;;Rue Saint Martin, 37500 Ligre;50267;[1.990366, 48.578239];;FRS47EMB479911;FR*SOD*E*MB40*75*1*4*_;;;;;;;;;;;;;;;;;;;50058709586285;;;;;;;;;1.822078;48.722111;22580;Les Avanchers-Valmorel;; +;LA RIVE CIELA VILLAGE;;;;;;Biocoop Granville;FRS40PMB406313;FR*SOD*S*WIIZ*130*6*_*_;SONCHAMP - ECOLE;;Les Gribouzys, 41500 Suèvres;50402;[1.757398, 48.677654];;FRS47EMB4710611;FR*SOD*E*MB40*75*1*1*_;;;;;;;;;;;;;;;;;;;50088517551209;;;;;;;;;1.774694;48.588638;22950;Vizille;; +;CARREFOUR AJACCIO;;;;;;Carrefour Market Belondis;FRS40PMB406211;FR*SOD*S*WIIZ*130*5*_*_;SAINT ARNOULT - PLACE JEAN MOULIN B;;Rue du Bourg, 37530 MONTREUIL EN TOURAINE;50591;[1.822078, 48.649048];;FRS47EMB4711512;FR*SOD*E*MB40*75*1*2*_;;;;;;;;;;;;;;;;;;;50019490497347;;;;;;;;;1.687804;48.624279;22740;Pont-de-Roide-Vermondans;; +;AGAPHONE;;;;;;Intermarché Yssingeaux;FRS40PMB405914;FR*SOD*S*WIIZ*131*1*_*_;SAINT HILARION - PARKING DE LA MAIRIE;;12 Rue de l'Armée Patton, 35120 Dol-de-Bretagne;50431;[1.774694, 48.6362];;FRS47EMB4711511;FR*SOD*E*MB40*75*1*3*_;;;;;;;;;;;;;;;;;;;50095463926572;;;;;;;;;1.830751;48.586834;29800;Villecien;; +;LE MONTANA;;;;;;STEEL Parkings;FRS40PMB406212;FR*SOD*S*WIIZ*132*1*_*_;BOINVILLE-LE-GAILLARD - SALLE POLYVALENTE;;Place du 8 mai 1945, 37700 La Ville-aux-Dames;50237;[1.687804, 48.650483];;FRS47EMB4711411;FR*SOD*E*MB40*76*1*2*_;;;;;;;;;;;;;;;;;;;50016018304035;;;;;;;;;1.778462;48.674915;29400;Graveson;; +;CAMPING LES MARSOUINS;;;;;;VILLE DE LA ROCHELLE - PLACE VERDUN;FRS40PMB406213;FR*SOD*S*WIIZ*133*1*_*_;LA BOISSIERE ECOLE - ECOLE;;Rue André Huard, 37400 Amboise;50236;[1.830751, 48.644615];;FRS47EMB4711412;FR*SOD*E*MB40*76*1*1*_;;;;;;;;;;;;;;;;;;;50039887375309;;;;;;;;;1.986778;43.431608;29840;Antonne-et-Trigonant;; +;MONSIEUR VINCENT LEHMANN;;;;;;VILLE DE LA ROCHELLE - PLACE JB MARCET;FRS40PMB406111;FR*SOD*S*WIIZ*134*1*_*_;GAZERAN - ZAC BEL AIR;;1 La Rouyardière, 35220 Châteaubourg;50543;[1.778462, 48.578293];;FRS47EMB4711312;FR*SOD*E*MB40*76*1*3*_;;;;;;;;;;;;;;;;;;;50043077105849;;;;;;;;;1.818773;43.230377;29510;Susmiou;; +;LA FARIGOULETTE CIEL A VILLAGE;;;;;;VILLE DE LA ROCHELLE - PARKING PREFECTURE;FRS40PMB406112;FR*SOD*S*WIIZ*137*1*_*_;LE PERRAY EN YVELINES - PARKING RUE DU PLANIT;;Place du Cardinal Face B, 37120 Richelieu;50029;[1.986778, 48.583527];;FRS47EMB4711311;FR*SOD*E*MB40*76*1*4*_;;;;;;;;;;;;;;;;;;;50061596513056;;;;;;;;;1.768139;43.295209;29710;Montauroux;; +;SARL SN GRAVE;;;;;;VILLE DE LA ROCHELLE - PARKING CHASSELOUP LAUBAT;FRS40PMB406114;FR*SOD*S*WIIZ*143*1*_*_;PARAY-DOUAVILLE;;7 Rue du Clos Barbey, 14280 Saint-Contest;50639;[1.818773, 48.645462];;FRS47EMB4711212;FR*SOD*E*MB40*77*1*4*_;;;;;;;;;;;;;;;;;;;50053206781349;;;;;;;;;1.766528;43.351743;29620;Les Houches;; +;MINOTTI-TRANS;;;;;;VILLE DE DAMPIERRE;FRS40PMB406113;FR*SOD*S*WIIZ*138*1*_*_;RAMBOUILLET - PISCINE;;Rue Maurice Genevoix 1- Face A, 37540 Saint-Cyr-sur-Loire;50562;[1.768139, 48.720886];;FRS47EMB4711211;FR*SOD*E*MB40*77*1*3*_;;;;;;;;;;;;;;;;;;;50070133117912;;;;;;;;;1.729444;43.281329;29190;Vauréal;; +;CAMPING PORTE DES VOSGES;;;;;;UAB;FRS40PMB406012;FR*SOD*S*WIIZ*139*1*_*_;VIEILLE-EGLISE- ROUTE DE RAMBOUILLET;;3 All. du Pâquis, 54180 Houdemont;50592;[1.766528, 48.722111];;FRS47EMB4710911;FR*SOD*E*MB40*77*1*1*_;;;;;;;;;;;;;;;;;;;50039025900196;;;;;;;;;1.682583;43.34878;29870;Fays;; +;ARC EN CIEL SUBLIMATION;;;;;;Super U Thuir;FRS40PMB406013;FR*SOD*S*WIIZ*140*1*_*_;PONTHEVRARD - MAIRIE;;Rue du 19 mars 1962, 37290 Charnizay;50582;[1.729444, 48.588638];;FRS47EMB4710913;FR*SOD*E*MB40*77*1*2*_;;;;;;;;;;;;;;;;;;;50036565699075;;;;;;;;;1.811028;43.232758;29690;Camon;; +;CAR2PLUG;;;;;;Meritor;FRS40PMB406014;FR*SOD*S*WIIZ*141*1*_*_;AUFFARGIS - FOYER RURAL;;Rue de Bellevue , 37150 CIVRAY DE TOURAINE;50002;[1.682583, 48.624279];;FRS47EMB4710912;FR*SOD*E*MB40*72*1*1*_;;;;;;;;;;;;;;;;;;;50039603624466;;;;;;;;;1.97425;43.293338;29810;Herserange;; +;SARL LE BOIS DE CORNAGE;;;;;;MAIRIE OLLIERGUES;FRS40PMB406011;FR*SOD*S*WIIZ*142*1*_*_;BULLION - PARKING;;Rue Leonard de Vinci, 37270 MONTLOUIS SUR LOIRE;50003;[1.811028, 48.586834];;FRS47EMB4710612;FR*SOD*E*MB40*71*1*1*_;;;;;;;;;;;;;;;;;;;50033814912448;;;;;;;;;5.19051;43.344786;29730;Vacquières;; +;E-STATION;;;;;;Mairie de Vertolaye;FRS40PMB405312;FR*SOD*S*WIIZ*163*1*_*_;BONNELLES;;48 Rue de la Frelonnerie, 37270 MONTLOUIS SUR LOIRE;50550;[1.97425, 48.674915];;FRS47EMB4710011;FR*SOD*E*MB40*71*1*2*_;;;;;;;;;;;;;;;;;;;50071875909040;;;;;;;;;5.436696;43.294115;29290;Aubigny-Les Clouzeaux;; +;MAIRIE - 77640;;;;;;MAIRIE DE MOUXY;FRS40PMB404611;FR*SOD*S*WIIZ*161*1*_*_;LA CELLE LES BORDES - PARKING SALLE DES FETES;;Boulevard de l'Avenir - Zone des Poujeaux, 37530 NAZELLES NEGRON;50551;[5.19051, 43.431608];;FRS47EMB4710511;FR*SOD*E*MB40*68*1*1*_;;;;;;;;;;;;;;;;;;;50040030129320;;;;;;;;;5.418975;43.271343;29880;Daglan;; +;HOTEL DE L'EUROPE;;;;;;Mairie de Ferrières-en-Gatinais;FRS40PMB405211;FR*SOD*S*WIIZ*210*1*_*_;SAINT ARNOULT - PARKING DU CONSERVATOIRE;;12 Rte de la Flotte, 17410 Saint-Martin-de-Ré;50539;[5.436696, 43.230377];;FRS47EMB4710512;FR*SOD*E*MB40*65*1*2*_;;;;;;;;;;;;;;;;;;;50013984609108;;;;;;;;;5.477612;43.345215;29460;Parcoul-Chenaud;; +;SQUASH CLUB SAINT-ETIENNE;;;;;;Mairie de Beaugency - PARKING RUE NATIONALE;FRS40PMB403612;FR*SOD*S*WIIZ*206*1*_*_;AUFFARGIS - MAIRIE PARKING;;Parking rue Gambetta, 37110 CHÂTEAU RENAULT;50532;[5.418975, 43.295209];;FRS47EMB4710412;FR*SOD*E*MB40*66*1*1*_;;;;;;;;;;;;;;;;;;;50056238086181;;;;;;;;;5.378603;43.35941;29980;Bouzic;; +;HOTEL DU MOULIN D AURE;;;;;;Mairie de Beaugency - PARKING GRAND MAIL;FRS40PMB404112;FR*SOD*S*WIIZ*207*1*_*_;CLAIREFONTAINE EN YVELINES - MAIRIE;;941 Av. Gambetta, 88500 Mirecourt;50488;[5.477612, 43.351743];;FRS47EMB4710411;FR*SOD*E*MB40*66*1*4*_;;;;;;;;;;;;;;;;;;;50076061935401;;;;;;;;;5.358982;43.213632;29890;Ruoms;; +;CODERC CAMPING;;;;;;Mairie de Beaugency - PARKING AGORA;FRS40PMB404011;FR*SOD*S*WIIZ*208*1*_*_;LONGVILLERS;;5 Rue de la Gradine, 85500 Les Herbiers;50487;[5.378603, 43.281329];;FRS47EMB4710312;FR*SOD*E*MB40*66*1*3*_;;;;;;;;;;;;;;;;;;;50096911206585;;;;;;;;;5.412999;43.316873;29860;Sampzon;; +;INTERMARCHÉ VAURÉAL;;;;;;La Charpinière;FRS40PMB404012;FR*SOD*S*WIIZ*211*1*_*_;POIGNY LA FORET - PARKING DE LA SALLE DES FETES;;19 rue de Lille, 59270 Bailleul;50484;[5.358982, 43.34878];;FRS47EMB4710311;FR*SOD*E*MB40*66*1*2*_;;;;;;;;;;;;;;;;;;;50004877070570;;;;;;;;;5.386217;43.35928;29940;Longeville-sur-Mer;; +;FASTHOTEL TOULOUSE BLAGNAC AEROPORT;;;;;;King Jouet Voiron;FRS40PMB403911;FR*SOD*S*WIIZ*212*1*_*_;RAMBOUILLET - PATENOTRE;;Avenue du 11/11/18 - impasse des loisirs, 37380 SAINT LAURENT EN GATINES;50473;[5.412999, 43.232758];;FRS47EMB4710212;FR*SOD*E*MB40*67*1*1*_;;;;;;;;;;;;;;;;;;;50064061832870;;;;;;;;;5.46368;43.263914;29140;Monestier;; +;Mairie Herserange;;;;;;RENAULT THIVOLLE ST ETIENNE;FRS40PMB403912;FR*SOD*S*WIIZ*213*1*_*_;GAZERAN - MAIRIE;;4 Rue de Falaize, 72170 Beaumont-sur-Sarthe;50099;[5.386217, 43.293338];;FRS47EMB4710211;FR*SOD*E*MB40*67*1*3*_;;;;;;;;;;;;;;;;;;;50054221914304;;;;;;;;;5.629119;43.24751;29300;Thonac;; +;Camping Parc le Duc;;;;;;RENAULT AGENCE LOSANGE;FRS40PMB403812;FR*SOD*S*WIIZ*204*1*_*_;HERMERAY - MAIRIE;;6 rue du jeu de boules, 28190 Courville sur eure;50455;[5.46368, 43.344786];;FRS47EMB4710111;FR*SOD*E*MB40*67*1*2*_;;;;;;;;;;;;;;;;;;;50042053543945;;;;;;;;;5.385708;43.296462;29350;Vallon-Pont-d'Arc;; +;Camping Campilo;;;;;;Salaison Fournet-Fayard;FRS40PMB403811;FR*SOD*S*WIIZ*204*2*_*_;RAMBOUILLET - GARE SNCF;;Rue du Château, 28140 Varize;50137;[5.629119, 43.294115];;FRS47EMB4710112;FR*SOD*E*MB40*67*1*4*_;;;;;;;;;;;;;;;;;;;50076944496626;;;;;;;;;5.465206;43.302329;29920;Saint-Nectaire;; +;Camping Dordogne La Peyrugue;;;;;;METROPOLIS;FRS40PMB403712;FR*SOD*S*WIIZ*203*1*_*_;ORPHIN - PARKING PRES DE LA MAIRIE;;39 Route Industrielle de la Hardt, 67120 Molsheim;50095;[5.385708, 43.271343];;FRS47EMB4710012;FR*SOD*E*MB40*68*1*2*_;;;;;;;;;;;;;;;;;;;50047992342105;;;;;;;;;5.31663;43.354063;29470;Le Barcarès;; +;Camping Le Paradou;;;;;;SERITUDE;FRS40PMB403711;FR*SOD*S*WIIZ*201*1*_*_;ROCHEFORT EN YVELINES - PARKING;;30 rue de la république, 28300 Mainvilliers;50523;[5.465206, 43.345215];;FRS47EMB478511;FR*SOD*E*MB40*68*1*4*_;;;;;;;;;;;;;;;;;;;50060876538780;;;;;;;;;5.631226;43.289144;29160;Vielle-Saint-Girons;; +;Camping Le Douzou;;;;;;Intermarché;FRS40PMB403611;FR*SOD*S*WIIZ*200*1*_*_;RAMBOUILLET - MAIRIE;;Rue de Châtea Renault, 37530 Cangey;50109;[5.31663, 43.35941];;FRS47EMB478411;FR*SOD*E*MB40*71*1*4*_;;;;;;;;;;;;;;;;;;;50037725578790;;;;;;;;;5.376535;43.28474;29520;Vendays-Montalivet;; +;Camping La Plaine;;;;;;ELECTRIC 55 CHARGING;FRS40PMB403511;FR*SOD*S*WIIZ*199*1*_*_;SAINT LEGER EN YVELINES - PARKING DU PLAN DEAU;;Parking de la forteresse, 37500 Chinon;50111;[5.631226, 43.213632];;FRS47EMB475911;FR*SOD*E*MB40*68*1*3*_;;;;;;;;;;;;;;;;;;;50005442002208;;;;;;;;;5.31658;43.35579;29217;Erstein;; +;Hôtel Le Pinarello;;;;;;SYDEV;FRS40PMB404212;FR*SOD*S*WIIZ*198*1*_*_;SAINT LEGER EN YVELINES - PARKING DE LA SALLE DES FETES;;Place Jacques Brugnon, 37210 Noizay;50260;[5.376535, 43.316873];;FRS47EMB478312;FR*SOD*E*MB40*69*1*2*_;;;;;;;;;;;;;;;;;;;50061594818440;;;;;;;;;5.392652;43.360151;29590;Vittel;; +;Camping Soleil Vivarais;;;;;;Mobisdec;FRS40PMB403512;FR*SOD*S*WIIZ*197*1*_*_;EMANCE;;Parking rue Basse, 37140 Restigne;50087;[5.31658, 43.35928];;FRS47EMB477211;FR*SOD*E*MB40*69*1*1*_;;;;;;;;;;;;;;;;;;;50077084844669;;;;;;;;;5.391018;43.288723;29260;Desvres;; +;Camping Les Brunelles;;;;;;IONITY GMBH;FRS40PMB403412;FR*SOD*S*WIIZ*196*1*_*_;RAIZEUX - PLACE DE LA MAIRIE;;Allée des Cyclamens, 37240 Ligueil;50082;[5.392652, 43.263914];;FRS47EMB477112;FR*SOD*E*MB40*69*1*4*_;;;;;;;;;;;;;;;;;;;50088806986882;;;;;;;;;5.404042;43.272064;29100;Saint-Dizier;; +;Hôtel Ibis Style Toulouse;;;;;;La jabotte;FRS40PMB403411;FR*SOD*S*WIIZ*214*1*_*_;ORCEMONT MAIRIE;;Gare - Boulevard National, 37110 CHÂTEAU RENAULT;50074;[5.391018, 43.24751];;FRS47EMB477111;FR*SOD*E*MB40*69*1*3*_;;;;;;;;;;;;;;;;;;;50074193113108;;;;;;;;;5.419599;43.311065;29280;Cosnes-et-Romain;; +;Pia Green;;;;;;OVERCHEM;FRS40PMB403312;FR*SOD*S*WIIZ*215*1*_*_;CERNAY LA VILLE;;6 Rue Denis Papin, 25300 Pontarlier;50045;[5.404042, 43.296462];;FRS47EMB477011;FR*SOD*E*MB40*70*1*1*_;;;;;;;;;;;;;;;;;;;50074337830921;;;;;;;;;5.356974;43.28286;29180;Brunoy;; +;Le Relais des Vigiers;;;;;;SIEGE93;FRS40PMB403311;FR*SOD*S*WIIZ*223*1*_*_;IZIVIA | MARIGNANE - PLACE COMTE DE GRASSE;;Parking de la gare, 37500 Chinon;50031;[5.419599, 43.302329];;FRS47EMB476912;FR*SOD*E*MB40*70*1*2*_;;;;;;;;;;;;;;;;;;;50038010925410;;;;;;;;;5.390964;43.283473;29750;Aigueperse;; +;Camping Arinella;;;;;;SIEGE125;FRS40PMB403211;FR*SOD*S*WIIZ*231*1*_*_;IZIVIA | MARSEILLE 09 - AVENUE DE LUMINY;;Place de la mairie, 37380 NEUILLE LE LIERRE;50139;[5.356974, 43.354063];;FRS47EMB476911;FR*SOD*E*MB40*70*1*3*_;;;;;;;;;;;;;;;;;;;225146;;;;;;;;;5.375423;43.401226;29310;Saint-Étienne-du-Rouvray;; +;Camping des Dunes;;;;;;SIEGE123;FRS40PMB403212;FR*SOD*S*WIIZ*230*1*_*_;IZIVIA | MARSEILLE 12 - CHEMIN DE SAINT JEAN DU DESERT;;Parking rue de l'Eglise, 37120 LA TOUR SAINT GELIN;50197;[5.390964, 43.289144];;FRS47EMB476812;FR*SOD*E*MB40*70*1*4*_;;;;;;;;;;;;;;;;;;;50045530307517;;;;;;;;;5.200007;43.34764;29570;Brignais;; +;Hôtel Archambeau;;;;;;SIEGE122;FRS40PMB403111;FR*SOD*S*WIIZ*229*1*_*_;IZIVIA | ALLAUCH - AV. SALVADOR ALLENDE;;Rue des Prés, 37360 BEAUMONT LA RONCE;50066;[5.375423, 43.28474];;FRS47EMB476811;FR*SOD*E*MB40*71*1*3*_;;;;;;;;;;;;;;;;;;;50086051294593;;;;;;;;;5.466939;45.535069;29760;Saint-Martin-du-Vivier;; +;Camping Campéole Côte des Roses;;;;;;SIEGE121;FRS40PMB403112;FR*SOD*S*WIIZ*228*1*_*_;IZIVIA | MARSEILLE 06 - RUE DE BRETEUIL;;24 Av. des Rocher, 50300 Avranches;50256;[5.200007, 43.35579];;FRS47EMB476711;FR*SOD*E*MB40*78*1*3*_;;;;;;;;;;;;;;;;;;;50081427109561;;;;;;;;;5.499072;45.387565;29660;Combourg;; +;Camping La Plage Fleurie;;;;;;SIEGE120;FRS40PMB403011;FR*SOD*S*WIIZ*226*1*_*_;IZIVIA | MARSEILLE 15 - AVENUE DE SAINT LOUIS;;Rue des Isles (RN 76), 37270 Veretz;50239;[5.466939, 43.360151];;FRS47EMB476712;FR*SOD*E*MB40*78*1*4*_;;;;;;;;;;;;;;;;;;;50017318018311;;;;;;;;;5.410341;45.382999;29270;Saint-Avold;; +;Hôtel Le Madrigal;;;;;;SIEGE119;FRS40PMB404111;FR*SOD*S*WIIZ*225*1*_*_;IZIVIA | MARSEILLE 09 - CHEMIN DE MORGIOU;;Rue Notre Dame des Champs, 37290 Boussay;50231;[5.499072, 43.288723];;FRS47EMB476611;FR*SOD*E*MB40*78*1*1*_;;;;;;;;;;;;;;;;;;;50046253537043;;;;;;;;;5.4351;45.598333;29150;Sargé-lès-le-Mans;; +;Hôtel Le Meysset;;;;;;SIEGE118;FRS40PMB404211;FR*SOD*S*WIIZ*224*1*_*_;IZIVIA | MARSEILLE 06 - RUE DES 3 FRERES BARTHELEMY;;Avenue du Centre, 37530 NAZELLE NEGRON;50228;[5.410341, 43.272064];;FRS47EMB476612;FR*SOD*E*MB40*87*1*4*_;;;;;;;;;;;;;;;;;;;50046115234946;;;;;;;;;5.359208;45.66523;29233;Saint-Georges-du-Bois;; +;Camping Campéole Navarrosse;;;;;;SIEGE117;FRS40PMB405213;FR*SOD*S*WIIZ*222*1*_*_;IZIVIA | PLAN-DE-CUQUES - AVENUE PLEIN SUD;;Parking derrière la mairie, 37120 Luze;50601;[5.4351, 43.311065];;FRS47EMB476512;FR*SOD*E*MB40*85*1*3*_;;;;;;;;;;;;;;;;;;;50017456402759;;;;;;;;;5.392465;45.549453;29360;Hesdin;; +;Camping Le Viginet;;;;;;SIEGE116;FRS40PMB404914;FR*SOD*S*WIIZ*221*1*_*_;IZIVIA | GEMENOS - BOULEVARD VESSIOT - PARKING DES GRANGES;;Z.A. Actiloire, 37130 CINQ MARS LA PILE;50215;[5.359208, 43.28286];;FRS47EMB476511;FR*SOD*E*MB40*85*1*2*_;;;;;;;;;;;;;;;;;;;50043069046235;;;;;;;;;5.369238;45.359277;29950;Auchy-lès-Hesdin;; +;Camping Campéole Le Vivier;;;;;;SIEGE115;FRS40PMB405214;FR*SOD*S*WIIZ*220*1*_*_;IZIVIA | MARSEILLE 08 - DUMONT DURVILLE;;Rue de la Seriniere, 37360 SAINT ANTOINE DU ROCHER;50188;[5.392465, 43.283473];;FRS47EMB476412;FR*SOD*E*MB40*85*1*1*_;;;;;;;;;;;;;;;;;;;65208EC1;;;;;;;;;5.378812;43.361123;29560;Beaurainville;; +;Camping Les Tamaris;;;;;;SIEGE114;FRS40PMB405111;FR*SOD*S*WIIZ*219*1*_*_;IZIVIA | PLAN-DE-CUQUES - BOULEVARD DE LA RESISTANCE;;Rue du Parc, 37420 BEAUMONT EN VERON;50185;[5.369238, 43.401226];;FRS47EMB476411;FR*SOD*E*MB40*86*1*2*_;;;;;;;;;;;;;;;;;;;65209EC1;;;;;;;;;2.145565;43.35903;29770;Huby-Saint-Leu;; +;Camping Campéole Les Tonnelles;;;;;;SIEGE113;FRS40PMB405112;FR*SOD*S*WIIZ*218*1*_*_;IZIVIA | MARSEILLE 16 - PLAGE DE LESTAQUE SATELITE;;Parking Guy Raynaud, 37540 SAINT CYR SUR LOIRE;50184;[5.378812, 43.34764];;FRS47EMB476311;FR*SOD*E*MB40*86*1*4*_;;;;;;;;;;;;;;;;;;;50038579745390;;;;;;;;;2.290458;48.538636;29380;Marconne;; +;Camping Campéole Les Tourterelles;;;;;;SIEGE112;FRS40PMB405114;FR*SOD*S*WIIZ*217*1*_*_;IZIVIA | CEYRESTE - PLACE DES HEROS;;4312 Route de Saint-Paul, 26780 Châteauneuf-du-Rhône;50168;[2.145565, 45.535069];;FRS47EMB476312;FR*SOD*E*MB40*29*1*1*_;;;;;;;;;;;;;;;;;;;50019046773833;;;;;;;;;2.271105;45.337849;29790;Bar-le-Duc;; +;Camping Campéole Medoc Plage;;;;;;SIEGE111;FRS40PMB405113;FR*SOD*S*WIIZ*216*1*_*_;IZIVIA | MARSEILLE 03 - RUE AUPHAN;;RUE JACQUELINE AURIOL, 37700 LA VILLE AUX DAMES;50165;[2.290458, 45.387565];;FRS47EMB476211;FR*SOD*E*MB40*86*1*1*_;;;;;;;;;;;;;;;;;;;50006022092898;;;;;;;;;1.926255;48.270983;29370;Merlimont;; +;Camping Sunelia Interlude;;;;;;SIEGE110;FRS40PMB405013;FR*SOD*S*WIIZ*195*1*_*_;IZIVIA | MARSEILLE 16 - PLAGE DE LESTAQUE - MASTER;;14 Avenue du Président Paul Séramy, 77870 Vulaines-sur-Seine;50151;[2.271105, 45.382999];;FRS47EMB476212;FR*SOD*E*MB40*87*1*2*_;;;;;;;;;;;;;;;;;;;50091982519468;;;;;;;;;2.451322;45.855017;29500;Saint-Grégoire;; +;Wurth Erstein;;;;;;SIEGE109;FRS40PMB405014;FR*SOD*S*WIIZ*172*1*_*_;IZIVIA | MARSEILLE 08 - AVENUE DE MAZARGUES;;Place de la Mairie, 37150 EPEIGNE LES BOIS;50149;[1.926255, 45.598333];;FRS47EMB476112;FR*SOD*E*MB40*87*1*3*_;;;;;;;;;;;;;;;;;;;50021517579062;;;;;;;;;2.312163;45.856003;29170;Lunéville;; +;Fast automobile Belleville;;;;;;SIEGE108;FRS40PMB405012;FR*SOD*S*WIIZ*179*1*_*_;IZIVIA | MARSEILLE 08 - AVENUE ELSA TRIOLET;;Aire de Changis sur Marne A4, 77260 Ussy-sur-Marne;50474;[2.451322, 45.66523];;FRS47EMB476111;FR*SOD*E*MB40*87*1*1*_;;;;;;;;;;;;;;;;;;;50017455185930;;;;;;;;;1.937306;45.682211;29650;Pont-à-Mousson;; +;Gap ZEENCO Orange;;;;;;SIEGE107;FRS40PMB405011;FR*SOD*S*WIIZ*178*1*_*_;IZIVIA | MARSEILLE 04 - BOULEVARD BOISSON;;150 Rue des Frères Montgolfier, 82000 Montauban;50576;[2.312163, 45.549453];;FRS47EMB476011;FR*SOD*E*MB40*88*1*3*_;;;;;;;;;;;;;;;;;;;50010072017090;;;;;;;;;3.344201;48.275634;29120;Boussy-Saint-Antoine;; +;Vittel-Orange;;;;;;SIEGE106;FRS40PMB404911;FR*SOD*S*WIIZ*177*1*_*_;IZIVIA | MARSEILLE 12 - RUE GUSTAVE SALICIS;;Parking du rond point, 37190 Rivarennes;50492;[1.937306, 45.359277];;FRS47EMB476012;FR*SOD*E*MB40*84*1*1*_;;;;;;;;;;;;;;;;;;;50044370811306;;;;;;;;;3.347042;48.974332;29450;Draveil;; +;Würth Mougins;;;;;;SIEGE105;FRS40PMB404912;FR*SOD*S*WIIZ*176*1*_*_;IZIVIA | MARSEILLE 15 - AVENUE DE LA VISTE;;Rue d'Amboise, 37530 NAZELLES NEGRON;50403;[3.344201, 43.361123];;FRS47EMB475912;FR*SOD*E*MB40*88*1*1*_;;;;;;;;;;;;;;;;;;;50001257117603;;;;;;;;;7.717265;49.072469;29900;Montereau-sur-le-Jard;; +;Würth Toulouse;;;;;;SIEGE104;FRS40PMB404312;FR*SOD*S*WIIZ*175*1*_*_;IZIVIA | MARSEILLE 05 - RUE FERNAND PAURIOL MASTER;;Grande rue, 37330 SAINT LAURENT DE LIN;97407;[3.347042, 43.35903];;FRS47EMB477312;FR*SOD*E*MB40*88*1*4*_;;;;;;;;;;;;;;;;;;;50074183379770;;;;;;;;;3.273755;43.937192;29000;Eguisheim;; +;Garage Marcotte Peugeot;;;;;;SIEGE103;FRS40PMB404913;FR*SOD*S*WIIZ*174*1*_*_;IZIVIA | MARSEILLE 06 - BOULEVARD PAUL DOUMER;;Avenue du Capitaine Vandière de Vitrac Douain, 27120 Douains;30096;[7.717265, 48.538636];;FRS47EMB477411;FR*SOD*E*MB40*88*1*2*_;;;;;;;;;;;;;;;;;;;50098796885293;;;;;;;;;1.855781;48.57303;29680;Le Havre;; +;Garage Marcotte citroen;;;;;;SIEGE102;FRS40PMB404712;FR*SOD*S*WIIZ*173*1*_*_;IZIVIA | MARSEILLE 05 - RUE FERNAND PAURIOL SATELITE;;Aire de Baralle, A26, 62860 Baralle;12270;[3.273755, 45.337849];;FRS47EMB477412;FR*SOD*E*MB40*89*1*2*_;;;;;;;;;;;;;;;;;;;50067682561434;;;;;;;;;3.812358;48.821478;29830;Janvry;; +;Fast Automobile St Dizier;;;;;;SIEGE101;FRS40PMB404711;FR*SOD*S*WIIZ*171*1*_*_;IZIVIA | ENSUES-LA-REDONNE - AVENUE DE LA COTE BLEUE;;A6, Aire de Macon Saint Albain, 71260 La Salle;2A008;[1.855781, 48.270983];;FRS47EMB477812;FR*SOD*E*MB40*89*1*1*_;;;;;;;;;;;;;;;;;;;50063325202251;;;;;;;;;3.81278;47.668808;29250;Saint-Michel-de-Rieufret;; +;Garage Dulamon;;;;;;SIEGE100;FRS40PMB404612;FR*SOD*S*WIIZ*180*1*_*_;IZIVIA | PLAN-DE-CUQUES - LA MONTADE;;RUE DE LA GITONNIERE, 37300 JOUE LES TOURS;65218;[3.812358, 45.855017];;FRS47EMB478311;FR*SOD*E*MB40*89*1*3*_;;;;;;;;;;;;;;;;;;;50012241285504;;;;;;;;;4.154907;47.585286;29640;Vendres;; +;Fast Automobile Longwy;;;;;;SIEGE99;FRS40PMB409114;FR*SOD*S*WIIZ*170*1*_*_;IZIVIA | MARSEILLE 11 - MILLIERE A ST MENET;;Rue Clément Ader, 09340 Verniolle;04244;[3.81278, 45.856003];;FRS47EMB478212;FR*SOD*E*MB40*89*1*4*_;;;;;;;;;;;;;;;;;;;50072445602983;;;;;;;;;1.855139;45.806785;29910;Mulhouse;; +;Garage LP Automobile;;;;;;SIEGE98;FRS40PMB404512;FR*SOD*S*WIIZ*168*1*_*_;IZIVIA | MARSEILLE 09 - BOULEVARD ROMAIN ROLLAND;;A6 Aire de Taponas, 69220 Dracé;83154;[4.154907, 45.682211];;FRS47EMB478211;FR*SOD*E*MB40*90*1*4*_;;;;;;;;;;;;;;;;;;;50052478593901;;;;;;;;;7.064884;48.892528;29410;Menton;; +;Garage SEGAB;;;;;;SIEGE97;FRS40PMB404511;FR*SOD*S*WIIZ*167*1*_*_;IZIVIA | MARSEILLE 12 - AVENUE DE LA PETITE SUISSE;;8 Allée du Val Fleuri, 81100 Castres;28140;[1.855139, 48.275634];;FRS47EMB478111;FR*SOD*E*MB40*90*1*3*_;;;;;;;;;;;;;;;;;;;50099509997260;;;;;;;;;2.552876;47.958865;29390;Azay-le-Rideau;; +;Garage Xavier Delsalle;;;;;;SIEGE96;FRS40PMB404412;FR*SOD*S*WIIZ*166*1*_*_;IZIVIA | MARSEILLE 07 - RENE SEYSSAUD;;Place des halles, 28170 Chateauneuf en Thymerais;88218;[7.064884, 48.974332];;FRS47EMB478112;FR*SOD*E*MB40*90*1*1*_;;;;;;;;;;;;;;;;;;;50022238186998;;;;;;;;;-1.090055;46.854559;29970;Bussang;; +;Garage A.M.5;;;;;;SIEGE95;FRS40PMB404411;FR*SOD*S*WIIZ*165*1*_*_;IZIVIA | MARSEILLE 06 - RUE MENPENTI;;Route de Cassel, 59670 Winnezeele;66008;[2.552876, 49.072469];;FRS47EMB478012;FR*SOD*E*MB40*85*1*4*_;;;;;;;;;;;;;;;;;;;50067963566830;;;;;;;;;7.770166;47.11995595;29550;Valframbert;; +;Garage 2A Automobiles;;;;;;SIEGE124;FRS40PMB404311;FR*SOD*S*WIIZ*164*1*_*_;IZIVIA | SEPTEMES-LES-VALLONS - BOULEVARD ANTOINE VABRE;;LA CROIX AZED, 50190 Périers;54395;[-1.090055, 43.937192];;FRS47EMB478011;FR*SOD*E*MB40*84*1*4*_;;;;;;;;;;;;;;;;;;;50071870394635;;;;;;;;;5.511859;49.15923;29420;Mantes-la-Jolie;; +;Garage Citro-Puy;;;;;;SIEGE157;FRS40PMB409113;FR*SOD*S*WIIZ*194*1*_*_;IZIVIA | MARSEILLE 14 - CHEMIN DU FONTAINIEU;;Aire de Parce Ouest, 72300 Parcé-sur-Sarthe;04186;[7.770166, 48.57303];;FRS47EMB477912;FR*SOD*E*MB40*78*1*2*_;;;;;;;;;;;;;;;;;;;50056397129661;;;;;;;;;1.525589;48.595821;29430;Tours;; +;Andrieux & Bourcerie;;;;;;SIEGE156;FRS40PMB408613;FR*SOD*S*WIIZ*190*3*_*_;MEYMAC PORROTS - PLACE DES PORROTS;;PLACE DE L'EGLISE, 37140 CHOUZE SUR LOIRE;09122;[5.511859, 48.821478];;FRS47EMB477911;FR*SOD*E*MB40*81*1*1*_;;;;;;;;;;;;;;;;;;;50094156267751;;;;;;;;;1.037276;47.071648;29252;Nuits-Saint-Georges;; +;Würth Montélimar Logistic;;;;;;SIEGE126;FRS40PMB409112;FR*SOD*S*WIIZ*193*2*_*_;NEUVIC PLAGE - ROUTE DE LA PLAGE;;Place de la Mairie, 37270 Athée-sur-Cher;93007;[1.525589, 47.668808];;FRS47EMB477811;FR*SOD*E*MB40*79*1*2*_;;;;;;;;;;;;;;;;;;;50093136505675;;;;;;;;;5.407851;47.499325;29630;Pontarlier;; +;Würth Gonesse;;;;;;SIEGE155;FRS40PMB409012;FR*SOD*S*WIIZ*193*3*_*_;NEUVIC VILLE - PLACE HENRI QUEUILLE;;Aire de Cambarette Nord, 83170 Brignoles;88079;[1.037276, 47.585286];;FRS47EMB477711;FR*SOD*E*MB40*79*1*3*_;;;;;;;;;;;;;;;;;;;50076795967693;;;;;;;;;5.540494;48.09154;29530;Bonchamp-lès-Laval;; +;Würth Rennes;;;;;;SIEGE154;FRS40PMB407212;FR*SOD*S*WIIZ*193*4*_*_;BUGEAT - RUE DE LA REPUBLIQUE;;8 Rue Gutenberg, 57200 Sarreguemines;31523;[5.407851, 45.806785];;FRS47EMB477712;FR*SOD*E*MB40*79*1*1*_;;;;;;;;;;;;;;;;;;;50081136955514;;;;;;;;;1.428741;48.602209;29740;Honfleur;; +;Würth Rouen;;;;;;SIEGE153;FRS40PMB407214;FR*SOD*S*WIIZ*193*1*_*_;EYGURANDE;;10 Place de la République, 28150 BOISVILLE LA SAINT PERE;11076;[5.540494, 48.892528];;FRS47EMB477611;FR*SOD*E*MB40*79*1*4*_;;;;;;;;;;;;;;;;;;;50098357413530;;;;;;;;;0.929119;47.39166;29700;Annemasse;; +;Würth Brignais;;;;;;SIEGE152;FRS40PMB407213;FR*SOD*S*WIIZ*192*1*_*_;USSEL - PLACE MARCEL PAGNOL;;PLACE ANDRE COUSIN, 37390 Charentilly;73024;[1.428741, 47.958865];;FRS47EMB477612;FR*SOD*E*MB40*80*1*2*_;;;;;;;;;;;;;;;;;;;50050737557962;;;;;;;;;0.42481307;49.163453;29720;Grenoble;; +;Würth Montélimar Proxi;;;;;;SIEGE151;FRS40PMB407311;FR*SOD*S*WIIZ*191*1*_*_;AIRE DE LA CORREZE;;Rue d'Aindling, 18520 Avord;38562;[0.929119, 46.854559];;FRS47EMB477511;FR*SOD*E*MB40*80*1*4*_;;;;;;;;;;;;;;;;;;;50049144990090;;;;;;;;;5.387714;48.474088;29440;Falaise;; +;Bulle de Linge;;;;;;SIEGE150;FRS40PMB407314;FR*SOD*S*WIIZ*190*2*_*_;AIRE DE BEZIERS MONTBLANC NORD;;Rue du Bourg neuf, 37460 Beaumont Village;25463;[0.42481307, 47.11995595];;FRS47EMB477512;FR*SOD*E*MB40*80*1*3*_;;;;;;;;;;;;;;;;;;;50086486240845;;;;;;;;;-0.623389;49.161975;29930;Rueil-Malmaison;; +;christophe perry;;;;;;SIEGE149;FRS40PMB407313;FR*SOD*S*WIIZ*190*5*_*_;AIRE DE BEZIERS MONTBLANC SUD;;Aire de Saint Hilaire Cottes A26, 62120 Saint-Hilaire-Cottes;78419;[5.387714, 49.15923];;FRS47EMB478412;FR*SOD*E*MB40*80*1*1*_;;;;;;;;;;;;;;;;;;;50024983678162;;;;;;;;;5.452333;48.720645;29610;Billom;; +;CHRISTOPHE PERRY;;;;;;SIEGE148;FRS40PMB407312;FR*SOD*S*WIIZ*181*1*_*_;AIRE DE OSTWALD OUEST;;9 Avenue de la Villa Antony, 94410 Saint-Maurice;89452;[-0.623389, 48.595821];;FRS47EMB475511;FR*SOD*E*MB40*81*1*3*_;;;;;;;;;;;;;;;;;;;50000820842040;;;;;;;;;1.460828;49.155459;29780;Jarnages;; +;Sci du 17 avenue Charles de gaulle;;;;;;SIEGE147;FRS40PMB407412;FR*SOD*S*WIIZ*190*4*_*_;AIRE DE LAFAYETTE LORLANGES;;A9 Aire De Tavel Sud, 30126 Tavel;13045;[5.452333, 47.071648];;FRCPSECAPS2811;FR*SOD*E*MB40*81*1*2*_;;;;;;;;;;;;;;;;;;;50028449567369;;;;;;;;;-1.785548;49.031403;44470;Chaponost;; +;SARL D'EUROPE ET D'ANGLETERRE;;;;;;SIEGE146;FRS40PMB407413;FR*SOD*S*WIIZ*190*1*_*_;AIRE DE VAL NEUVY;;Rue de la libération, 28210 Villemeux sur eur;24011;[1.460828, 47.499325];;FRCPSECAPS2612;FR*SOD*E*MB40*81*1*4*_;;;;;;;;;;;;;;;;;;;50086487010709;;;;;;;;;5.668772;48.690563;80132;Bourbon-l'Archambault;; +;Ax'stone;;;;;;SIEGE145;FRS40PMB407414;FR*SOD*S*WIIZ*189*1*_*_;AIRE DU HAUT FOREZ SUD;;Aire de Rosny Nord, A13, 78710 Rosny-sur-Seine;64530;[-1.785548, 48.09154];;FRCPSECAPS2212;FR*SOD*E*MB40*84*1*2*_;;;;;;;;;;;;;;;;;;;50028464035569;;;;;;;;;0.718157;49.160318;30520;Campbon;; +;DE LEPERVANCHE Céline;;;;;;SIEGE144;FRS40PMB407411;FR*SOD*S*WIIZ*188*1*_*_;AIRE DU HAUT FOREZ NORD;;Aire des Plaines de Beauce, 28310 Fresnay-l'Évêque;83081;[5.668772, 48.602209];;FRCPSECAPS2211;FR*SOD*E*MB40*82*1*4*_;;;;;;;;;;;;;;;;;;;50052621068650;;;;;;;;;5.383243;49.519625;07520;Saint-Gildas-des-Bois;; +;MA Borne Auto;;;;;;SIEGE143;FRS40PMB407514;FR*SOD*S*WIIZ*187*1*_*_;AIRE DE LA PLAINE DU FOREZ OUEST;;Place Farcot, 28700 Sainville;74143;[0.718157, 47.39166];;FRCPSECAPS2312;FR*SOD*E*MB40*82*1*3*_;;;;;;;;;;;;;;;;;;;50075930582089;;;;;;;;;1.011539;47.399974;71300;La Courtine;; +;EGSM;;;;;;SIEGE142;FRS40PMB407511;FR*SOD*S*WIIZ*185*1*_*_;AIRE DE LA PLAINE DE BEAUCE;;Rue du Général de Gaulle, 28480 Beaumont-les-Autels;95637;[5.383243, 49.163453];;FRCPSECAPS2311;FR*SOD*E*MB40*92*1*4*_;;;;;;;;;;;;;;;;;;;50018762738774;;;;;;;;;5.388646;43.466186;84130;Sarrebourg;; +;COPRODEX;;;;;;SIEGE141;FRS40PMB407512;FR*SOD*S*WIIZ*183*1*_*_;AIRE DE KESKASTEL OUEST;;Lieu dit BEG ROHU PARKING USAGERS ENVSN, 56510 Saint-Pierre-Quiberon;88169;[1.011539, 48.474088];;FRCPSECAPS2411;FR*SOD*E*MB40*82*1*1*_;;;;;;;;;;;;;;;;;;;50062467513706;;;;;;;;;1.355194;45.750501;62132;Nantes;; +;SAS PRIMARD;;;;;;SIEGE140;FRS40PMB407513;FR*SOD*S*WIIZ*182*1*_*_;AIRE DE VEMARS EST;;4 Rue Chantemerle, 74100 Ville-la-Grand;76710;[5.388646, 49.161975];;FRCPSECAPS2412;FR*SOD*E*MB40*82*1*2*_;;;;;;;;;;;;;;;;;;;50069694753846;;;;;;;;;5.381737;48.937863;71530;Jarny;; +;ACCIF TOULOUSE;;;;;;SIEGE139;FRS40PMB407612;FR*SOD*S*WIIZ*113*1*_*_;AIRE DE LOCEAN EST;;Place Jean Baptiste Moreau, 37380 Monnaie;80164;[1.355194, 48.720645];;FRCPSECAPS2512;FR*SOD*E*MB40*83*1*2*_;;;;;;;;;;;;;;;;;;;50000384424053;;;;;;;;;5.288487;48.978479;78380;Albi;; +;mbc;;;;;;SIEGE138;FRS40PMB407611;FR*SOD*S*WIIZ*130*7*_*_;PARKING DANUBE VERT - STRASBOURG;;Rue de la gare, 37340 SAVIGNE-SUR-LATHAN;54261;[5.381737, 49.155459];;FRCPSECAPS2511;FR*SOD*E*MB40*83*1*3*_;;;;;;;;;;;;;;;;;;;50010084655093;;;;;;;;;5.623041;47.254312;67370;Terville;; +;DALTONER CHERBOURG;;;;;;SIEGE137;FRS40PMB407613;FR*SOD*S*WIIZ*47*1*_*_;SAMPIGNY - 66354 - Rue Raymond Poincare;;A39, 21130 Pont;34318;[5.288487, 49.031403];;FRCPSECAPS2611;FR*SOD*E*MB40*83*1*1*_;;;;;;;;;;;;;;;;;;;50080546631356;;;;;;;;;5.39074;47.584457;78270;Lille;; +;See You Sun;;;;;;SIEGE136;FRS40PMB407614;FR*SOD*S*WIIZ*46*1*_*_;MUIDES SUR LOIRE 4326 - Rue du Tramway;;Lieu dit BEG ROHU PARKING PERSONNEL ENVSN, 56510 Saint-Pierre-Quiberon;85008;[5.623041, 48.690563];;FRCPSECAPS812;FR*SOD*E*MB40*83*1*4*_;;;;;;;;;;;;;;;;;;;50071579464564;;;;;;;;;5.366673;48.271147;26320;Brignoles;; +;STATIONS-E;;;;;;SIEGE135;FRS40PMB407714;FR*SOD*S*WIIZ*45*1*_*_;ST NICOLAS DES MOTETS 4340 - Rue de la poste;;4 Rue Pierre Pascal Fauvelle, 66000 Perpignan;24150;[5.39074, 49.160318];;FRCPSECAPS2712;FR*SOD*E*MB40*84*1*3*_;;;;;;;;;;;;;;;;;;;66201286800055;;;;;;;;;0.666684;47.421438;67720;Trignac;; +;TotalEnergies Charging Services;;;;;;SIEGE134;FRS40PMB407713;FR*SOD*S*WIIZ*44*1*_*_;Montalieu-Vercieu;;5 Rue Victor Grignard, 42000 Saint-Étienne;24316;[5.366673, 49.519625];;FRCPSECAPS2711;FR*SOD*E*MB40*30*1*2*_;;;;;;;;;;;;;;;;;;;66201291200067;;;;;;;;;5.610285;48.718342;08430;Saint-Médard-en-Jalles;; +;FAL DISTRI;;;;;;SIEGE133;FRS40PMB407711;FR*SOD*S*WIIZ*43*1*_*_;Saint MIHIEL - 66364 - Place Jaques Bailleux;;Place Chatelet, 28000 Chartres;24063;[0.666684, 47.399974];;FRCPSECAPS2812;FR*SOD*E*MB40*65*1*3*_;;;;;;;;;;;;;;;;;;;50083599643827;;;;;;;;;5.708556;47.416387;07270;Heillecourt;; +;SAEMES;;;;;;SIEGE132;FRS40PMB407712;FR*SOD*S*WIIZ*42*1*_*_;VERDES 4328 - Place de l'église;;RUE PRINCIPALE, 37320 ESVRES SUR INDRE;07201;[5.610285, 43.466186];;FRCPSECAPS5512;FR*SOD*E*MB40*29*1*2*_;;;;;;;;;;;;;;;;;;;50075784684730;;;;;;;;;5.114099;47.42841;34190;La Ciotat;; +;Karline Automobiles;;;;;;SIEGE131;FRS40PMB407211;FR*SOD*S*WIIZ*41*1*_*_;PREUILLY SUR CLAISE 4338;;31 Rue du Maréchal Leclerc, 94410 Saint-Maurice;07306;[5.708556, 45.750501];;FRCPSECAPS2911;FR*SOD*E*MB40*13*1*2*_;;;;;;;;;;;;;;;;;;;50042921297385;;;;;;;;;5.059802;47.601445;42380;Saïx;; +;MONTAUBAN PARC AUTO;;;;;;SIEGE130;FRS40PMB407111;FR*SOD*S*WIIZ*40*1*_*_;L'ILE BOUCHARD 1338;;5 Rue Vaucanson, 49100 Angers;85127;[5.114099, 48.937863];;FRCPSECAPS2912;FR*SOD*E*MB40*12*1*1*_;;;;;;;;;;;;;;;;;;;50007767319640;;;;;;;;;0.672126;47.549129;44130;Compiègne;; +;INTERPARKING;;;;;;SIEGE129;FRS40PMB407112;FR*SOD*S*WIIZ*39*1*_*_;55 VERDUN - Rue des Tanneries - 66477;;Aire de Langres Noidant, 52160 Noidant-le-Rocheux;24276;[5.059802, 48.978479];;FRCPSECAPS3011;FR*SOD*E*MB40*11*1*2*_;;;;;;;;;;;;;;;;;;;50035394134567;;;;;;;;;1.333499;48.283904;09400;Jaux;; +;INTERPARKING France;;;;;;SIEGE128;FRS40PMB406811;FR*SOD*S*WIIZ*38*1*_*_;Domfront;;68 Rue de Québec, 17000 La Rochelle;24552;[0.672126, 47.254312];;FRCPSECAPS3012;FR*SOD*E*MB40*11*1*1*_;;;;;;;;;;;;;;;;;;;50073749958007;;;;;;;;;1.856182;47.639409;07160;Fleury-les-Aubrais;; +;Societe D'Exploitation Du Casino De Bussang (S.E.C.Bu);;;;;;SIEGE127;FRS40PMB406512;FR*SOD*S*WIIZ*37*1*_*_;SONEPAR DOLE;;Aire Narbonne Vinassan Nord, A9, 11110 Salles-d'Aude;11069;[1.333499, 47.584457];;FRCPSECAPS2111;FR*SOD*E*MB40*10*1*1*_;;;;;;;;;;;;;;;;;;;50094016748523;;;;;;;;;1.42975;47.509629;67220;Bruguières;; +;Societe Hoteliere De L'Est Lyonnais;;;;;;SIEGE94;FRS40PMB406611;FR*SOD*S*WIIZ*36*1*_*_;CHEVERNY 4301 - Place de l'Eglise;;Place de l'église, 18390 St GERMAIN-DU-PUY;07330;[1.856182, 48.271147];;FRCPSECAPS2112;FR*SOD*E*MB40*10*1*2*_;;;;;;;;;;;;;;;;;;;50042630024565;;;;;;;;;1.394261;47.1648;71220;Saint-Brieuc;; +;Protea;;;;;;SIEGE59;FRS40PMB406614;FR*SOD*S*WIIZ*35*1*_*_;MOF BORNE 1;;RUE DE LA MAIRIE, 37230 Pernay;63380;[1.42975, 47.421438];;FRCPSECAPS2012;FR*SOD*E*MB40*9*1*2*_;;;;;;;;;;;;;;;;;;;50079837295306;;;;;;;;;2.044051;47.016191;71520;Vald'Yerre;; +;Societe D'Exploitation Du Casino De Frejus;;;;;;SIEGE92;FRS40PMB406613;FR*SOD*S*WIIZ*34*1*_*_;VAUCOULEURS - 66342 - Rue de la République;;Parking du potager, 37510 Villandry;66017;[1.394261, 48.718342];;FRCPSECAPS2011;FR*SOD*E*MB40*9*1*1*_;;;;;;;;;;;;;;;;;;;50033671277275;;;;;;;;;2.05821;47.608669;84340;Auneau-Bleury-Saint-Symphorien;; +;Amont 40;;;;;;SIEGE42;FRS40PMB406612;FR*SOD*S*WIIZ*33*1*_*_;ST PIERRE DES CORPS 4343 - Parking Despouy;;A41N/E712 - Aire de Mouxy, 73420 Drumettaz-Clarafond;40326;[2.044051, 47.416387];;FRCPSECAPS1012;FR*SOD*E*MB40*8*1*2*_;;;;;;;;;;;;;;;;;;;50033961080328;;;;;;;;;2.022989;47.23129;01500;Belhomert-Guéhouville;; +;Societe D'Exploitation Du Casino De Sanary-Sur-Mer;;;;;;SIEGE56;FRS40PMB406711;FR*SOD*S*WIIZ*32*1*_*_;55 VERDUN - Rue de Jeanne d'arc - 66578;;65 Rue du Souvenir, 69009 Lyon;33540;[2.05821, 47.42841];;FRCPSECAPS1111;FR*SOD*E*MB40*8*1*1*_;;;;;;;;;;;;;;;;;;;50019765278363;;;;;;;;;1.545043;48.748002;53500;Garnay;; +;SAEM EXPLOITATION STATIONNEM VILLE PARIS;;;;;;SIEGE55;FRS40PMB406713;FR*SOD*S*WIIZ*31*1*_*_;LA LOUPE - Place de la gare - 134202;;A9 Aire de Tavel Nord, 30126 Tavel;67130;[2.022989, 47.601445];;FRCPSECAPS1112;FR*SOD*E*MB40*7*1*1*_;;;;;;;;;;;;;;;;;;;50014428361649;;;;;;;;;7.303007;47.507757;53400;Châteaudun;; +;Syndicat D'Énergie 61;;;;;;SIEGE54;FRS40PMB406712;FR*SOD*S*WIIZ*48*1*_*_;55 VERDUN - Av général mangin - 66596;;Salle des Fêtes, 41200 PRUNIERS EN SOLOGNE;88516;[1.545043, 47.549129];;FRCPSECAPS1211;FR*SOD*E*MB40*7*1*2*_;;;;;;;;;;;;;;;;;;;50052759077550;;;;;;;;;1.447639;47.636004;53190;Villemaury;; +;Société Mantaise de Stationement;;;;;;SIEGE53;FRS40PMB406714;FR*SOD*S*WIIZ*62*1*_*_;VERNOUILLET - Rue du Moulin Rouge - 139334;;Allée des Grandes Bruyères, 41200 ROMORANTIN LANTHENAY;31084;[7.303007, 48.283904];;FRCPSECAPS1212;FR*SOD*E*MB40*6*1*1*_;;;;;;;;;;;;;;;;;;;50082872450051;;;;;;;;;0.908075;48.977679;53230;Tréon;; +;Soc Bourguignonne Hoteliere Desfossey;;;;;;SIEGE52;FRS40PMB406812;FR*SOD*S*WIIZ*60*1*_*_;VERDUN - 66586 - Cité d'Anthouard;;Route de Mennetou-Sur-Cher, 41320 Langon-sur-Cher;62268;[1.447639, 47.639409];;FRCPSECAPS1312;FR*SOD*E*MB40*6*1*2*_;;;;;;;;;;;;;;;;;;;251987EC1;;;;;;;;;0.244902;45.198312;53200;Vernouillet;; +;Ulr Upscale Lodging & Resorts Group Sas;;;;;;SIEGE51;FRS40PMB406814;FR*SOD*S*WIIZ*59*1*_*_;SOUILLY - 93386 - Voie Sacrée;;118 bis Rue Marietton, 69130 Écully;52448;[0.908075, 47.509629];;FRCPSECAPS1311;FR*SOD*E*MB40*5*1*1*_;;;;;;;;;;;;;;;;;;;50046261726143;;;;;;;;;0.553296;47.273629;53120;Les Villages Vovéens;; +;Hotellerie Economique De Laval;;;;;;SIEGE50;FRS40PMB407114;FR*SOD*S*WIIZ*58*1*_*_;VOID VACON - 66350 - Rue du Stade;;Parking rue D'Harleville, 28130 Maintenon;54138;[0.244902, 47.1648];;FRCPSECAPS1411;FR*SOD*E*MB40*5*1*2*_;;;;;;;;;;;;;;;;;;;50090970612142;;;;;;;;;1.359058;47.273794;53290;Chécy;; +;Dubois-Simonneau;;;;;;SIEGE49;FRS40PMB406813;FR*SOD*S*WIIZ*57*1*_*_;55 VERDUN - Rue du 8 mai 1945 - 66603;;8 Avenue Aristide Briand, 28200 Marboué;29470;[0.553296, 47.016191];;FRCPSECAPS1412;FR*SOD*E*MB40*4*1*1*_;;;;;;;;;;;;;;;;;;;50080552576304;;;;;;;;;2.490553;47.587793;53250;Carcassonne;; +;Soc Honfleur Investis Hoteliers Calvados;;;;;;SIEGE48;FRS40PMB406912;FR*SOD*S*WIIZ*56*1*_*_;55 MONTMEDY-place Raymond Poincare-66592;;Rue de Richelieu, 37120 Courcoue;17350;[1.359058, 47.608669];;FRCPSECAPS1611;FR*SOD*E*MB40*4*1*2*_;;;;;;;;;;;;;;;;;;;50054069453164;;;;;;;;;7.686392;47.593425;53160;Sallèles-d'Aude;; +;La Boite A Outils;;;;;;SIEGE47;FRS40PMB406911;FR*SOD*S*WIIZ*55*1*_*_;SAINT CYR SUR LOIRE 1343 - Esplanade;;Place du 8 Mai, 37240 Cussay;91114;[2.490553, 47.23129];;FRCPSECAPS1612;FR*SOD*E*MB40*3*1*2*_;;;;;;;;;;;;;;;;;;;25929377657706;;;;;;;;;1.459363;45.183035;53380;Verdun;; +;Sotelmar;;;;;;SIEGE46;FRS40PMB406914;FR*SOD*S*WIIZ*54*1*_*_;SONEPAR CONNECT ROUSSET;;37 Rue de Fontenay, 92220 Bagneux;63001;[7.686392, 48.748002];;FRCPSECAPS1711;FR*SOD*E*MB40*3*1*1*_;;;;;;;;;;;;;;;;;;;80801E20004227;;;;;;;;;0.390409;48.173165;53110;Guînes;; +;Societe Hoteliere Du Pont De Normandie;;;;;;SIEGE45;FRS40PMB406913;FR*SOD*S*WIIZ*53*1*_*_;SONEPAR BELLEY;;15 Chemin du Mondor, 69630 Chaponost;76575;[1.459363, 47.507757];;FRCPSECAPS1712;FR*SOD*E*MB40*2*1*2*_;;;;;;;;;;;;;;;;;;;50022395598346;;;;;;;;;5.269623;47.583802;53810;Orchies;; +;Sci Entreprises 21;;;;;;SIEGE44;FRS40PMB407011;FR*SOD*S*WIIZ*52*1*_*_;55 VAUBECOURT - 13 rue Ernest Chaudron - 66185;;Place des patis, 37530 Nazelles Negron;69027;[0.390409, 47.636004];;FRCPSECAPS1811;FR*SOD*E*MB40*2*1*1*_;;;;;;;;;;;;;;;;;;;02232127275531;;;;;;;;;0.664424;48.220488;53340;Mallemort;; +;Societe Calvadosienne D Hotellerie;;;;;;SIEGE43;FRS40PMB407012;FR*SOD*S*WIIZ*51*2*_*_;SEUIL D'ARGONNE - 66173 - Place Poincaré;;22 Rue Maurice Caunes, 31200 Toulouse;76617;[5.269623, 48.977679];;FRCPSECAPS1812;FR*SOD*E*MB40*1*1*2*_;;;;;;;;;;;;;;;;;;;02247756797768;;;;;;;;;1.557391;48.76661;53300;Les Pennes-Mirabeau;; +;PARK ALIZES;;;;;;SIEGE41;FRS40PMB407013;FR*SOD*S*WIIZ*51*1*_*_;Super Chargeur Sorigny A10 CCS;;Rue Saint Lazare, 41140 NOYERS SUR CHER;35085;[0.664424, 45.198312];;FRCPSECAPS1912;FR*SOD*E*MB40*1*1*1*_;;;;;;;;;;;;;;;;;;;02220694569104;;;;;;;;;1.553632;48.169441;53210;Istres;; +;Societe De L'Hotel Economique De Village Pretot;;;;;;SIEGE91;FRS40PMB407014;FR*SOD*S*WIIZ*50*1*_*_;BLOIS 4383 - Place Jacques Lob;;Place Albert Ruell, 37140 LA CHAPELLE SUR LOIRE;57606;[1.557391, 47.273629];;FRCPSECAPS1911;FR*SOD*E*MB40*92*1*2*_;;;;;;;;;;;;;;;;;;;02296960849531;;;;;;;;;1.332601;47.589412;53240;La Fare-les-Oliviers;; +;Mondeville Hotellerie Economique;;;;;;SIEGE40;FRS40PMB407113;FR*SOD*S*WIIZ*49*1*_*_;Val Neuvy;;Rue de l'Ecrevissière, 41150 Veuzain;28269;[1.553632, 47.273794];;FRCPSECAPS3111;FR*SOD*E*MB40*92*1*1*_;;;;;;;;;;;;;;;;;;;02246309619737;;;;;;;;;1.338252;48.18831452;53350;La Destrousse;; +;Societe Nuitonne D'Hotellerie Desfossey;;;;;;SIEGE39;FRS40PMB407813;FR*SOD*S*WIIZ*30*1*_*_;CONTRES 4440 - Rue dela libération;;2 Rue du Meunier, 95700 Roissy-en-France;28270;[1.332601, 47.587793];;FRCPSECAPS3112;FR*SOD*E*MB40*93*1*1*_;;;;;;;;;;;;;;;;;;;02247612079710;;;;;;;;;0.778858;47.268872;53170;La Barben;; +;Societe Hoteliere Desfossey;;;;;;SIEGE38;FRS40PMB407814;FR*SOD*S*WIIZ*64*1*_*_;LURAY - Rue Emile Zola - 130756;;Ruelle des Planches, 41150 Veuzain;28271;[1.338252, 47.593425];;FRCPSECAPS3211;FR*SOD*E*MB40*93*1*2*_;;;;;;;;;;;;;;;;;;;02248335668999;;;;;;;;;6.452407;47.70652;53220;La Penne-sur-Huveaune;; +;Societe Hoteliere Desfossey Centre Est, Shdce;;;;;;SIEGE37;FRS40PMB407811;FR*SOD*S*WIIZ*15*1*_*_;SALBRIS 4485 - Rue de la Convention;;Route de la Champagne, 41150 Route de la Champagne;35334;[0.778858, 45.183035];;FRCPSECAPS4212;FR*SOD*E*MB40*92*1*3*_;;;;;;;;;;;;;;;;;;;02230824815331;;;;;;;;;1.339852;43.3603506;53800;La Roque-d'Anthéron;; +;Mihc;;;;;;SIEGE36;FRS40PMB408714;FR*SOD*S*WIIZ*14*1*_*_;SALBRIS 4489 - Avenue de la Resistance;;Place des Guerriers, 41140 NOYERS SUR CHER;72328;[6.452407, 48.173165];;FRCPSECAPS4311;FR*SOD*E*MB40*28*1*1*_;;;;;;;;;;;;;;;;;;;02231548404318;;;;;;;;;7.144079;44.910821;53140;Lamanon;; +;Aurigae;;;;;;SIEGE35;FRS40PMB408513;FR*SOD*S*WIIZ*13*1*_*_;LAMOTTE BEUVRON 4493 - Place du 11 Novembre;;12 RUE ROGER PLANCHON, 69200 Venissieux;72280;[1.339852, 47.583802];;FRCPSECAPS4412;FR*SOD*E*MB40*12*1*2*_;;;;;;;;;;;;;;;;;;;02266859547744;;;;;;;;;5.159173;47.938264;53150;Lambesc;; +;Societe Hoteliere De La Cote Normande;;;;;;SIEGE34;FRS40PMB408512;FR*SOD*S*WIIZ*12*1*_*_;BRACIEUX 4436 - Rue de Candy;;Place du 11 Aout 1944, 41310 SAINT AMAND LONGPRE;72100;[7.144079, 48.220488];;FRCPSECAPS4411;FR*SOD*E*MB40*91*1*1*_;;;;;;;;;;;;;;;;;;;02220549851364;;;;;;;;;6.448257;43.304831;53100;Lançon-Provence;; +;SOCIETE HOTELIERE SIBERCHICOT;;;;;;SIEGE33;FRS40PMB408511;FR*SOD*S*WIIZ*11*1*_*_;FRANKENBOURG BORNE GARAGE;;Rue des Etats-unis, 41100 Vendome;62447;[5.159173, 48.76661];;FRCPSECAPS4511;FR*SOD*E*MB40*13*1*1*_;;;;;;;;;;;;;;;;;;;02260347246785;;;;;;;;;1.334115;45.491712;53370;Le Tholonet;; +;Bailly Hk;;;;;;SIEGE32;FRS40PMB408612;FR*SOD*S*WIIZ*10*2*_*_;MONTLIVAULT 4501 - Rue du Château d'eau;;Rue de la République, 41350 SAINT CLAUDE DE DIRAY;62050;[6.448257, 48.169441];;FRCPSECAPS4512;FR*SOD*E*MB40*21*1*2*_;;;;;;;;;;;;;;;;;;;02266714829999;;;;;;;;;1.39177715;47.703524;53270;Mas-Blanc-des-Alpilles;; +;Car Avenue Bayern Epinal;;;;;;SIEGE31;FRS40PMB408614;FR*SOD*S*WIIZ*10*1*_*_;NEUILLE LE LIERRE 4503 - Place de la gare;;Rue du 08 Mai 1945, 41800 Couture-sur-Loir;62100;[1.334115, 47.589412];;FRCPSECAPS4611;FR*SOD*E*MB40*27*1*2*_;;;;;;;;;;;;;;;;;;;02269319750537;;;;;;;;;-1.773067;47.822077;53480;Mouriès;; +;SARL BEAL ET FILS;;;;;;SIEGE30;FRS40PMB402911;FR*SOD*S*WIIZ*9*1*_*_;CHINON 4504 - Place Jeanne d'arc;;Rue Marecot, 41800 MONTOIRE SUR LE LOIR;62461;[1.39177715, 48.18831452];;FRCPSECAPS4612;FR*SOD*E*MB40*28*1*2*_;;;;;;;;;;;;;;;;;;;02247901515566;;;;;;;;;1.506585;48.463146;53700;Maussane-les-Alpilles;; +;EGLETONS AUTOMOBILES;;;;;;SIEGE29;FRS40PMB408611;FR*SOD*S*WIIZ*8*1*_*_;PORTS 4506 - Place Romain Rideau;;24 Rue Louis Gagnière, 38950 Saint-Martin-le-Vinoux;91097;[-1.773067, 47.268872];;FRCPSECAPS4711;FR*SOD*E*MB40*14*1*1*_;;;;;;;;;;;;;;;;;;;02248046233326;;;;;;;;;3.3438376;47.887587;53320;Fontvieille;; +;GOUZON AUTOMOBILES;;;;;;SIEGE27;FRS40PMB408712;FR*SOD*S*WIIZ*7*1*_*_;LA CHAUSSEE ST VICTOR 4510 - Rue de Montprofond;;6 Av. Sigismond Coulet, 83310 Cogolin;62549;[1.506585, 47.70652];;FRCPSECAPS4712;FR*SOD*E*MB40*27*1*1*_;;;;;;;;;;;;;;;;;;;02216063599636;;;;;;;;;-0.226371;48.596041;53470;Eygalières;; +;L'ATELIER DE L'ALUMINIUM;;;;;;SIEGE159;FRS40PMB408713;FR*SOD*S*WIIZ*6*1*_*_;MENETOU-SALON - Place de la Mairie - 205372;;RUE DU PRIEURE, 37380 Nouzilly;55029;[3.3438376, 43.3603506];;FRCPSECAPS4911;FR*SOD*E*MB40*26*1*2*_;;;;;;;;;;;;;;;;;;;02268017289549;;;;;;;;;0.183371;48.637806;53950;Aureille;; +;CHALLANS AUTOMOBILES;;;;;;SIEGE57;FRS40PMB408711;FR*SOD*S*WIIZ*5*1*_*_;Brumath Bernolsheim;;2111 Route de Châtillon, 01400 Romans;62571;[-0.226371, 44.910821];;FRCPSECAPS4912;FR*SOD*E*MB40*25*1*1*_;;;;;;;;;;;;;;;;;;;02281186608848;;;;;;;;;-0.418747;48.780168;49690;Paradou;; +;METROPOLE D'AIX-MARSEILLE-PROVENCE;;;;;;SIEGE58;FRS40PMB408813;FR*SOD*S*WIIZ*4*1*_*_;COUR CHEVERNY 4432 - Rue Gilette;;A7 Aire De saint Rambert, A. du Soleil, 26140 Saint-Rambert-d'Albon;35278;[0.183371, 47.938264];;FRCPSECAPS5012;FR*SOD*E*MB40*25*1*2*_;;;;;;;;;;;;;;;;;;;02243704699112;;;;;;;;;4.828268;48.758457;49440;Saint-Étienne-du-Grès;; +;S.E.C.B.A. SA SOCIETE D'EXPLOITATION DU CASINO DE BOURBON-L'ARCHAMBAULT;;;;;;SIEGE60;FRS40PMB408411;FR*SOD*S*WIIZ*3*1*_*_;SAINT AUBIN LE DEPEINT 4345 - Place de la Mairie;;80 Rte de Langlade, 30870 Clarensac;54329;[-0.418747, 43.304831];;FRCPSECAPS5011;FR*SOD*E*MB40*24*1*2*_;;;;;;;;;;;;;;;;;;;02232271993388;;;;;;;;;1.508335;49.242974;49140;Alleins;; +;GARAGE PLISSONNEAU;;;;;;SIEGE61;FRS40PMB408811;FR*SOD*S*WIIZ*2*1*_*_;LES TROIS DOMAINES (droite) Centre d'affaires;;34 Rue Jules Verne, 63100 Clermont-Ferrand;54431;[4.828268, 45.491712];;FRCPSECAPS5112;FR*SOD*E*MB40*24*1*1*_;;;;;;;;;;;;;;;;;;;02295947824945;;;;;;;;;1.29412;47.566555;49460;Eyguières;; +;ASSOC GESTION LOGEMENTS FOYERS;;;;;;SIEGE90;FRS40PMB408814;FR*SOD*S*WIIZ*1*1*_*_;CGED CGED MARSAC;;12 Rue de la barre, 28130 Hanches;91201;[1.508335, 47.703524];;FRCPSECAPS5111;FR*SOD*E*MB40*23*1*1*_;;;;;;;;;;;;;;;;;;;02232561428888;;;;;;;;;1.775121;48.703578;49290;Éguilles;; +;ETS BRUNO CUCIS ET CIE;;;;;;SIEGE89;FRS40PMB408812;FR*SOD*S*WIIZ*16*1*_*_;SELLES SUR CHER 4350 - Allée de la Gravouille;;7 Route de Nice, 06650 Opio;77306;[1.29412, 47.822077];;FRCPSECAPS5312;FR*SOD*E*MB40*23*1*2*_;;;;;;;;;;;;;;;;;;;02202170690601;;;;;;;;;1.210292;48.7101955;49123;Cuges-les-Pins;; +;LE RANCH;;;;;;SIEGE88;FRS40PMB408912;FR*SOD*S*WIIZ*29*1*_*_;SELLES SUR CHER 4353 - Rue du Moulinet;;80 Chemin de la Parette, 13012 Marseille;68078;[1.775121, 48.463146];;FRCPSECAPS5311;FR*SOD*E*MB40*22*1*2*_;;;;;;;;;;;;;;;;;;;02215340009350;;;;;;;;;2.582503;43.317932;49330;Cornillon-Confoux;; +;SARL DA COSTA AUTOMOBILES;;;;;;SIEGE87;FRS40PMB408911;FR*SOD*S*WIIZ*28*1*_*_;BLOIS - Place Saint Honoré -139113;;101 Bd Jean XXIII, 85300 Challans;76351;[1.210292, 47.887587];;FRCPSECAPS4312;FR*SOD*E*MB40*22*1*1*_;;;;;;;;;;;;;;;;;;;02207525249258;;;;;;;;;5.017258;43.818161;49590;Gignac-la-Nerthe;; +;TACHARD AUTOMOBILE;;;;;;SIEGE86;FRS40PMB408913;FR*SOD*S*WIIZ*27*1*_*_;BLOIS 4373 - Avenue du Maréchal Maunoury;;24 Avenue de Lyon, 63430 Pont-du-Château;75117;[2.582503, 48.596041];;FRCPSECAPS4211;FR*SOD*E*MB40*26*1*1*_;;;;;;;;;;;;;;;;;;;02289435523410;;;;;;;;;5.167513;48.503769;49220;Grans;; +;GARAGE TACHARD;;;;;;SIEGE85;FRS40PMB408914;FR*SOD*S*WIIZ*26*1*_*_;SONEPAR BOULAZAC;;Rue Ampère, 18000 Bourges;75115;[5.017258, 48.637806];;FRCPSECAPS3212;FR*SOD*E*MB40*21*1*1*_;;;;;;;;;;;;;;;;;;;02267438418325;;;;;;;;;5.591824;49.346833;49650;Châteauneuf-les-Martigues;; +;Car Avenue Bayern Metz;;;;;;SIEGE84;FRS40PMB409014;FR*SOD*S*WIIZ*25*1*_*_;EPINAL - Parking La Louvière - 144239 - CCS;;25 Cours Albert Thomas, 69003 Lyon;75119;[5.167513, 48.780168];;FRCPSECAPS4112;FR*SOD*E*MB40*17*1*2*_;;;;;;;;;;;;;;;;;;;02264688780160;;;;;;;;;3.918671;46.135004;49700;Charleval;; +;Car Avenue Bayern Forbach;;;;;;SIEGE83;FRS40PMB409013;FR*SOD*S*WIIZ*24*1*_*_;BLOIS 4387 - Rue des Alliés;;Route de Blois, 41370 Marchenoir;75120;[5.591824, 48.758457];;FRCPSECAPS3312;FR*SOD*E*MB40*14*1*2*_;;;;;;;;;;;;;;;;;;;02292908751877;;;;;;;;;1.358596;46.378498;49430;Berre-l'Étang;; +;JC MEL;;;;;;SIEGE82;FRS40PMB409011;FR*SOD*S*WIIZ*23*1*_*_;LES BAGENELLES BORNE 1;;Rue Maurice ROY (Parking restaurant Universit, 18000 Bourges;75118;[3.918671, 49.242974];;FRCPSECAPS3311;FR*SOD*E*MB40*15*1*1*_;;;;;;;;;;;;;;;;;;;02246454337503;;;;;;;;;1.340464;48.716915;49750;Aubagne;; +;Gadmp;;;;;;SIEGE81;FRS40PMB408514;FR*SOD*S*WIIZ*22*1*_*_;55 BAR LE DUC-rue d'Alnois-66244;;Rue Nationale, 18210 Charenton-du-Cher;91319;[1.358596, 47.566555];;FRCPSECAPS3412;FR*SOD*E*MB40*20*1*2*_;;;;;;;;;;;;;;;;;;;02248190951172;;;;;;;;;1.38237017;49.175325;49370;Auriol;; +;Riester;;;;;;SIEGE80;FRS40PMB408414;FR*SOD*S*WIIZ*21*1*_*_;EPINAL - Pkg Petit Champ de Mars - 144258 - CCS;;Le Bourg, 18160 LA CELLE-CONDE;75108;[1.340464, 48.703578];;FRCPSECAPS3411;FR*SOD*E*MB40*16*1*2*_;;;;;;;;;;;;;;;;;;;02234442760103;;;;;;;;;-0.330067;49.071221;49122;Aurons;; +;Perseverance;;;;;;SIEGE79;FRS40PMB407812;FR*SOD*S*WIIZ*20*1*_*_;BLOIS 4430 - Square du 11 Novembre 1918;;Promenade du Mail en face du 3, 28800 Bonneval;75110;[1.38237017, 48.7101955];;FRCPSECAPS3511;FR*SOD*E*MB40*16*1*1*_;;;;;;;;;;;;;;;;;;;02260057811191;;;;;;;;;5.796171;48.973301;49080;Carnoux-en-Provence;; +;L.R. Participations;;;;;;SIEGE78;FRS40PMB408111;FR*SOD*S*WIIZ*19*2*_*_;BONNEVAL - Rue de Chartres - 129245;;Place de la mairie, 18570 La-Chapelle-Saint-Ursin;75109;[-0.330067, 43.317932];;FRCPSECAPS3512;FR*SOD*E*MB40*15*1*2*_;;;;;;;;;;;;;;;;;;;02230680097575;;;;;;;;;1.058091;47.593796;49125;Cassis;; +;ACCOR Hotels;;;;;;SIEGE77;FRS40PMB407912;FR*SOD*S*WIIZ*19*1*_*_;SUPER U SEM BORNE 8;;Les Trunetières, 72210 La Suze-sur-Sarthe;75107;[5.796171, 43.818161];;FRCPSECAPS3611;FR*SOD*E*MB40*17*1*1*_;;;;;;;;;;;;;;;;;;;02224312514467;;;;;;;;;-0.77145;49.342913;49250;Martigues;; +;CAR AVENUE BAYERN TERVILLE;;;;;;SIEGE76;FRS40PMB407913;FR*SOD*S*WIIZ*18*1*_*_;MER 4053 - Rue de Mardeau;;Place de la Mairie, 18330 Neuvy-sur-Barangeon;75111;[1.058091, 48.503769];;FRCPSECAPS3612;FR*SOD*E*MB40*18*1*2*_;;;;;;;;;;;;;;;;;;;02259768375526;;;;;;;;;6.46166;47.61043;49240;Mimet;; +;SHM HOTEL;;;;;;SIEGE75;FRS40PMB407911;FR*SOD*S*WIIZ*17*1*_*_;Shell Aire de Béziers-Montblanc NORD;;Avenue des Sablons, 28000 Chartres;75112;[-0.77145, 49.346833];;FRCPSECAPS3711;FR*SOD*E*MB40*18*1*1*_;;;;;;;;;;;;;;;;;;;02246454337930;;;;;;;;;2.586958;45.758512;49540;Peynier;; +;JD INVESTISSEMENT;;;;;;SIEGE74;FRS40PMB407914;FR*SOD*S*WIIZ*65*1*_*_;SONEPAR LIBOURNE;;Place de la Mairie, 18330 Nancay;75106;[6.46166, 46.135004];;FRCPSECAPS3712;FR*SOD*E*MB40*19*1*1*_;;;;;;;;;;;;;;;;;;;02232706146646;;;;;;;;;5.046276;49.096559;49150;Peypin;; +;SARL ROTHACKER;;;;;;SIEGE73;FRS40PMB408012;FR*SOD*S*WIIZ*130*8*_*_;SUPER U ARNAGE ARNAGE 5 DC;;Rue Edmond JONGLEUX, 18000 Bourges;75105;[2.586958, 46.378498];;FRCPSECAPS3812;FR*SOD*E*MB40*19*1*2*_;;;;;;;;;;;;;;;;;;;02230969533186;;;;;;;;;5.379939;45.720724;49170;Rognac;; +;CORTEL;;;;;;SIEGE72;FRS40PMB408014;FR*SOD*S*WIIZ*114*1*_*_;CGED CGED LONS;;11 Place de la Mairie, 18120 Mereau;75113;[5.046276, 48.716915];;FRCPSECAPS3811;FR*SOD*E*MB40*20*1*1*_;;;;;;;;;;;;;;;;;;;02246164902347;;;;;;;;;5.427367;48.593992;49280;Rousset;; +;CFH BERCY HOTEL;;;;;;SIEGE71;FRS40PMB408013;FR*SOD*S*WIIZ*232*1*_*_;CGED CGED VIENNE;;348 Rte de Revel, 81700 Puylaurens;75102;[5.379939, 49.175325];;FRCPSECAPS3911;FR*SOD*E*AVTD*20*1*1*_;;;;;;;;;;;;;;;;;;;02289001371289;;;;;;;;;5.511154;49.213447;49730;Saint-Chamas;; +;SAS PAROUX;;;;;;SIEGE70;FRS40PMB408011;FR*SOD*S*WIIZ*112*1*_*_;MER 4043 - Avenue Maréchal Maunoury;;Place Saint Martin, 28200 Villemaury;75103;[5.427367, 49.071221];;FRCPSECAPS3912;FR*SOD*E*AVTD*10*1*1*_;;;;;;;;;;;;;;;;;;;02289146089038;;;;;;;;;2.023062;44.721801;49260;Saint-Estève-Janson;; +;EUROMATIC;;;;;;SIEGE69;FRS40PMB408113;FR*SOD*S*WIIZ*111*1*_*_;OUCQUES 4071 - Place du Château;;D825, 31210 Huos;75104;[5.511154, 48.973301];;FRCPSECAPS4011;FR*SOD*E*AVTD*18*1*1*_;;;;;;;;;;;;;;;;;;;02232561429016;;;;;;;;;5.400957;49.105212;49390;Jouques;; +;LA PORTE DE LA PART DIEU;;;;;;SIEGE68;FRS40PMB408112;FR*SOD*S*WIIZ*110*1*_*_;AUNEAU - Rue Pasteur - 186530;;16 Rue des Charmilles, 35510 Cesson-Sévigné;33452;[2.023062, 47.593796];;FRCPSECAPS4012;FR*SOD*E*AVTD*16*6*2*_;;;;;;;;;;;;;;;;;;;02224457232201;;;;;;;;;1.90451;47.108011;49680;Le Puy-Sainte-Réparade;; +;Sarl Bethune Gare;;;;;;SIEGE67;FRS40PMB408114;FR*SOD*S*WIIZ*109*1*_*_;FRETEVAL 4091 - Rue De Pont;;A6/E15/E60 - Aire des Lochères, 21320 Eguilly;16116;[5.400957, 49.342913];;FRCPSECAPS4111;FR*SOD*E*AVTD*16*6*1*_;;;;;;;;;;;;;;;;;;;02231548403529;;;;;;;;;4.934461;48.68465;49360;Sénas;; +;CIE CIOTADENNE INVESTISSEMENT DEVELOPP;;;;;;SIEGE66;FRS40PMB408412;FR*SOD*S*WIIZ*107*1*_*_;BORNES SAVIGNY LE MILLENAIRE 2;;Place de l'Esperanto, 18110 Fussy;34329;[1.90451, 47.61043];;FRCPSECAPS1011;FR*SOD*E*AVTD*15*4*1*_;;;;;;;;;;;;;;;;;;;02221273440799;;;;;;;;;5.627281;49.167779;49340;Miramas;; +;HOTEL CASTRES ORIENT;;;;;;SIEGE65;FRS40PMB408214;FR*SOD*S*WIIZ*106*2*_*_;55 ANCERVILLE-87 rue de st Dizier-66213;;Place de la Mairie, 18800 FARGES EN SEPTAINE;68224;[4.934461, 45.758512];;FRCPSECAPS811;FR*SOD*E*AVTD*15*4*2*_;;;;;;;;;;;;;;;;;;;02269609186145;;;;;;;;;4.974959;48.932711;49640;Plan-d'Orgon;; +;SEHIA SAS;;;;;;SIEGE64;FRS40PMB408213;FR*SOD*S*WIIZ*106*1*_*_;55 BAR LE DUC-boulevard des flandres-66198;;Grande Rue, 37220 Theneuil;06083;[5.627281, 49.096559];;FRCPSECAPS5511;FR*SOD*E*AVTD*14*1*1*_;;;;;;;;;;;;;;;;;;;02246309620105;;;;;;;;;5.242708;49.285869;49740;Noves;; +;Marmotel;;;;;;SIEGE63;FRS40PMB409214;FR*SOD*S*WIIZ*103*2*_*_;55 COMMERCY-rue du cardinal de Retz;;Place du Marché, 18410 ARGENT-sur-Sauldre;37014;[4.974959, 45.720724];;FRCPSECAPS312;FR*SOD*E*AVTD*13*1*1*_;;;;;;;;;;;;;;;;;;;02269464468387;;;;;;;;;5.636671;48.488338;49190;Mollégès;; +;FLR TOURISME;;;;;;SIEGE62;FRS40PMB408211;FR*SOD*S*WIIZ*103*1*_*_;Vrigny;;RUE ENEST GAUGIRAN, 41600 Lamotte-Beuvron;88081;[5.242708, 48.593992];;FRCPSECAPS612;FR*SOD*E*AVTD*12*1*1*_;;;;;;;;;;;;;;;;;;;02232850864492;;;;;;;;;4.611639;49.210123;44115;Eyragues;; +;F.B SERVICE;;;;;;SIEGE158;FRS40PMB408212;FR*SOD*S*WIIZ*102*1*_*_;SAINT GERVAIS LA FORET 3780;;Grande Rue, 18320 Cours-les-Barres;38426;[5.636671, 49.213447];;FRCPSECAPS111;FR*SOD*E*AVTD*4*1*2*_;;;;;;;;;;;;;;;;;;;02234153324509;;;;;;;;;5.071757;48.513392;44810;Châteaurenard;; +;THBH (Mercure Cabourg);;;;;;SIEGE28;FRS40PMB408312;FR*SOD*S*WIIZ*101*2*_*_;GARNAY - Parking mairie - 137368;;1043 Le Petit Soleil, 72220 Écommoy;83502;[4.611639, 44.721801];;FRCPSECAPS112;FR*SOD*E*AVTD*8*1*1*_;;;;;;;;;;;;;;;;;;;02259623657781;;;;;;;;;0.58761;49.381609;44410;Rognonas;; +;ENZO SARCELLES;;;;;;SIEGE160;FRS40PMB408313;FR*SOD*S*WIIZ*101*1*_*_;Vernouillet;;3 Rte de Lyon, 69530 Brignais;31223;[5.071757, 49.105212];;FRCPSECAPS211;FR*SOD*E*AVTD*6*2*1*_;;;;;;;;;;;;;;;;;;;02226483281362;;;;;;;;;5.324949;44.024414;44520;Saint-Andiol;; +;SNC HOTEL ST BRIEUC ESPLANADE 2017;;;;;;SIEGE246;FRS40PMB408311;FR*SOD*S*WIIZ*100*1*_*_;SONEPAR PAU;;Place de Lattre De TASSIGNY, 18370 Chateaumeillant;61497;[0.58761, 47.108011];;FRCPSECAPS212;FR*SOD*E*AVTD*5*2*2*_;;;;;;;;;;;;;;;;;;;02231114250967;;;;;;;;;5.38719;43.413836;44440;Saint-Martin-de-Crau;; +;SARL des hotels de chalon;;;;;;SIEGE260;FRS40PMB408314;FR*SOD*S*WIIZ*99*1*_*_;BORNE SAFER BORNE 2;;1 rue des Fossés, 18310 Gracay;78361;[5.324949, 48.68465];;FRCPSECAPS5411;FR*SOD*E*AVTD*5*2*1*_;;;;;;;;;;;;;;;;;;;02260491964521;;;;;;;;;6.111015;46.043417;44430;Saint-Pierre-de-Mézoargues;; +;ENERGIE Eure-et-Loir;;;;;;SIEGE259;FRS40PMB408413;FR*SOD*S*WIIZ*98*1*_*_;BELHOMERT-GUEHOUVILLE - De Gaulle - 137374;;ZAC des Tulipes Nord, 95500 Gonesse;37261;[5.38719, 49.167779];;FRCPSECAPS311;FR*SOD*E*AVTD*4*1*1*_;;;;;;;;;;;;;;;;;;;02243270546118;;;;;;;;;5.284357;48.451561;44650;Verquières;; +;ENERGIE EURE-ET-LOIR;;;;;;SIEGE258;FRS40PMB403012;FR*SOD*S*WIIZ*97*1*_*_;PARKING CAMPING BORNE 3;;Place du 8 mai 1945, 18340 Levet;21464;[6.111015, 48.932711];;FRCPSECAPS412;FR*SOD*E*AVTD*3*2*1*_;;;;;;;;;;;;;;;;;;;02244573006310;;;;;;;;;5.354515;47.878668;44460;Maillane;; +;HFOOD VILLENAVE;;;;;;SIEGE257;FRS40PMB406513;FR*SOD*S*WIIZ*115*1*_*_;ITM ST JEOIRE BORNE 1;;Place de l'Eglise, 18700 Ménétréol-sur-Sauldre;25462;[5.284357, 49.285869];;FRCPSECAPS512;FR*SOD*E*AVTD*2*2*1*_;;;;;;;;;;;;;;;;;;;02234587478043;;;;;;;;;5.376687;47.28622;44690;Cabannes;; +;L2B Lorette Beaucamp Bonnet;;;;;;SIEGE256;FRS40PMB402912;FR*SOD*S*WIIZ*129*2*_*_;Vérités;;Place du Marché, 28480 Thiron-Gardais;53034;[5.354515, 48.488338];;FRCPSECAPS511;FR*SOD*E*AVTD*1*9*1*_;;;;;;;;;;;;;;;;;;;02216353035177;;;;;;;;;5.507144;43.656838;44850;Boulbon;; +;DEBELEC;;;;;;SIEGE255;FRS40PMB401312;FR*SOD*S*WIIZ*129*1*_*_;L'ISLE EN RIGAULT - 66259 - Rue Henri Chevalier;;Rue de la Mairie, 18500 Marmagne;14333;[5.376687, 49.210123];;FRCPSECAPS411;FR*SOD*E*AVTD*24*1*2*_;;;;;;;;;;;;;;;;;;;02285962296272;;;;;;;;;5.185284;47.20955182;44320;Barbentane;; +;S.A.R.L Céline;;;;;;SIEGE254;FRS40PMB401211;FR*SOD*S*WIIZ*128*1*_*_;BELLEVILLE SUR MEUSE - 66276 - Pl Maginot;;Rue des Cormiers, 41120 Chailles;74012;[5.507144, 48.513392];;FRCPSECAPS611;FR*SOD*E*AVTD*24*1*1*_;;;;;;;;;;;;;;;;;;;02268017290354;;;;;;;;;4.88964;47.310522;44190;Peyrolles-en-Provence;; +;Aix-Marseille Provence Métropole;;;;;;SIEGE253;FRS40PMB401112;FR*SOD*S*WIIZ*126*3*_*_;55 DIEUX SUR MEUSE-rue des dames-66466;;4 Place de la Paix, 37240 Bossée;38185;[5.185284, 49.381609];;FRE04EOAZS24723;FR*SOD*E*AVTD*7*2*1*_;;;;;;;;;;;;;;;;;;;02235311067289;;;;;;;;;6.451011;46.751623;44119;Port-de-Bouc;; +;Communauté de communes Vallée des Baux-Alpilles;;;;;;SIEGE252;FRS40PMB401111;FR*SOD*S*WIIZ*126*1*_*_;LA CROIX SUR MEUSE - 66450 - Place 40ème RA;;67 Rue de la Vigonnière, 18400 ST FLORENT SUR CHER;14258;[4.88964, 44.024414];;FRE04EOAZS24822;FR*SOD*E*SORE*72*1*1*_;;;;;;;;;;;;;;;;;;;02231693122184;;;;;;;;;5.368237;47.205931;44290;Saint-Savournin;; +;Syndicat Mixte D'Energie Du Département Des Bouches Du Rhone;;;;;;SIEGE251;FRS40PMB401011;FR*SOD*S*WIIZ*126*4*_*_;LAMOTTE BEUVRON 4228 - La Gare;;Place de l'église, 18250 Henrichemont;92063;[6.451011, 43.413836];;FRE04EOAZS24821;FR*SOD*E*SORE*44*1*1*_;;;;;;;;;;;;;;;;;;;02231982557758;;;;;;;;;1.467517;48.126677;44350;Pélissanne;; +;SIEG63;;;;;;SIEGE250;FRS40PMB401012;FR*SOD*S*WIIZ*126*2*_*_;55 DAMVILLERS - Pl des Martyrs - 66369;;Av. du Capitaine Vandière de Vitrac, 27120 Douains;63040;[5.368237, 46.043417];;FRE04EOAZS24812;FR*SOD*E*SORE*36*1*2*_;;;;;;;;;;;;;;;;;;;02231837839991;;;;;;;;;-3.038878;48.464876;44390;Port-Saint-Louis-du-Rhône;; +;CHARGEPOLY;;;;;;SIEGE249;FRS40PMB40912;FR*SOD*S*WIIZ*125*1*_*_;CHAUMONT SUR THARONNE 4231 - Place Robert Mottu;;Boulevard Maurice Violette, 28150 Les Villages Vovéens;23100;[1.467517, 48.451561];;FRE04EOAZS24722;FR*SOD*E*SORE*37*1*1*_;;;;;;;;;;;;;;;;;;;02225470256883;;;;;;;;;-1.47429851;48.777465;44550;Puyloubier;; +;EVE CAR PLUG;;;;;;SIEGE248;FRS40PMB40911;FR*SOD*S*WIIZ*123*1*_*_;CGED CGED VAULX;;Place Auguste FOURNIER, 18150 La Guerche-sur-l'Aubois;69043;[-3.038878, 47.878668];;FRE04EOAZS24721;FR*SOD*E*SORE*37*1*2*_;;;;;;;;;;;;;;;;;;;02205499200098;;;;;;;;;-0.0729855;50.2638029;44760;Roquefort-la-Bédoule;; +;Spie CityNetworks;;;;;;SIEGE247;FRS40PMB40812;FR*SOD*S*WIIZ*122*1*_*_;55 FRESNES EN WORVRE-place Clemenceau-66387;;Place du Président Wilson, 41110 SAINT AIGNAN;13202;[-1.47429851, 47.28622];;FRE04EOAZS24712;FR*SOD*E*SORE*38*1*1*_;;;;;;;;;;;;;;;;;;;02218813237352;;;;;;;;;0.94627322;49.166746;44330;Saint-Cannat;; +;HFOOD PESSAC;;;;;;SIEGE245;FRS40PMB40811;FR*SOD*S*WIIZ*121*2*_*_;SONEPAR CCF GENAS;;Aire de Lacq Sud AUDEJOS Autoroute A64, 64170 Lacq;03036;[-0.0729855, 43.656838];;FRE04EOAZS24511;FR*SOD*E*SORE*38*1*2*_;;;;;;;;;;;;;;;;;;;02297250285181;;;;;;;;;0.965193;49.26998;44170;Saint-Mitre-les-Remparts;; +;Commune de BOUZONVILLE;;;;;;SIEGE262;FRS40PMB40711;FR*SOD*S*WIIZ*121*1*_*_;55 DAMMARIE SUR SAULX-2 chemin des gendarmes-66300;;Liphard, 91410 Dourdan;44025;[0.94627322, 47.20955182];;FRE04EOAZS24711;FR*SOD*E*SORE*39*1*1*_;;;;;;;;;;;;;;;;;;;02297105567315;;;;;;;;;2.417606;48.535052;44521;Saint-Paul-lès-Durance;; +;La Dilettante;;;;;;SIEGE244;FRS40PMB40712;FR*SOD*S*WIIZ*120*1*_*_;55 ETAIN-place Rouillon-66462;;Rue de la mairie, 28240 Le Thieulin;44161;[0.965193, 47.310522];;FRE04EOAZS24513;FR*SOD*E*SORE*39*1*2*_;;;;;;;;;;;;;;;;;;;02296816131701;;;;;;;;;-0.4701;47.289471;44560;Meyreuil;; +;HERVE THERMIQUE;;;;;;SIEGE243;FRS40PMB40611;FR*SOD*S*WIIZ*116*1*_*_;SONEPAR PRIVAS;;100 Rue Emile Basly, 62400 Béthune;23067;[2.417606, 46.751623];;FRE04EOAZS24811;FR*SOD*E*SORE*40*1*1*_;;;;;;;;;;;;;;;;;;;02297395002920;;;;;;;;;0.623299;48.606594;44310;Meyrargues;; +;CREDIT AGRICOLE;;;;;;SIEGE242;FRS40PMB40612;FR*SOD*S*WIIZ*94*1*_*_;55 CLERMONT EN ARGONNE - Pl de la Malsenez - 66240;;Chemin des Coulisses, 41330 LA CHAPELLE VENDOMOISE;57630;[-0.4701, 47.205931];;FRE04EOAZS24512;FR*SOD*E*SORE*40*1*2*_;;;;;;;;;;;;;;;;;;;02295658389337;;;;;;;;;6.703989;46.92181;44260;Fuveau;; +;ESPACE AUTO COURNON;;;;;;SIEGE241;FRS40PMB40511;FR*SOD*S*WIIZ*79*1*_*_;L'aquitaine Sainte-Maure-de-Touraine CCS4166;;18 Boulevard de Strasbourg, 62500 Saint-Omer;33032;[0.623299, 48.126677];;FRE04EOAZS24422;FR*SOD*E*SORE*41*1*2*_;;;;;;;;;;;;;;;;;;;02218668519572;;;;;;;;;2.58691;47.13251;44270;Coudoux;; +;Brasserie Castelain;;;;;;SIEGE240;FRS40PMB40512;FR*SOD*S*WIIZ*78*1*_*_;55 LIGNY EN BAROIS-rue du général de Gaulle-66282;;4 Rue de Courtalain, 28290 CHATILLON EN DUNOIS;44109;[6.703989, 48.464876];;FRE04EOAZS24412;FR*SOD*E*SORE*41*1*1*_;;;;;;;;;;;;;;;;;;;02293053469632;;;;;;;;;1.69244004;48.89486;44140;Gréasque;; +;ROUXEL MARINE;;;;;;SIEGE239;FRS40PMB40411;FR*SOD*S*WIIZ*77*1*_*_;55 BELLE VILLE SUR MEUSE - Av Miribel - 66287;;Rue de Henry de Geoffre, 41210 Neung sur Beuvron;54273;[2.58691, 48.777465];;FRE04EOAZS24823;FR*SOD*E*SORE*42*1*1*_;;;;;;;;;;;;;;;;;;;02215629444928;;;;;;;;;-0.276864;48.691364;44522;Saint-Victoret;; +;Levaroy;;;;;;SIEGE238;FRS40PMB40412;FR*SOD*S*WIIZ*76*1*_*_;GD BORNE 3;;Face N°2 Résidence de la Tour, 28320 Gallardon;81004;[1.69244004, 50.2638029];;FRE04EOAZS24912;FR*SOD*E*SORE*42*1*2*_;;;;;;;;;;;;;;;;;;;02220694568752;;;;;;;;;4.025792;48.125475;44420;Sausset-les-Pins;; +;SPBR1;;;;;;SIEGE237;FRS40PMB40312;FR*SOD*S*WIIZ*75*1*_*_;55 CONSENVOYE - Rue du port - 66323;;Chemin des Coulisses, 41330 La Chapelle-Vendômoise;57666;[-0.276864, 49.166746];;FRE04EOAZS24913;FR*SOD*E*SORE*44*1*2*_;;;;;;;;;;;;;;;;;;;02220549850902;;;;;;;;;-3.591473;46.797692;44780;Venelles;; +;SEMOB;;;;;;SIEGE236;FRS40PMB40311;FR*SOD*S*WIIZ*74*1*_*_;55 BURE-rond point andra-66333;;Place de l'église, 28360 Dammarie;59350;[4.025792, 49.26998];;FRE04EOAZS24423;FR*SOD*E*SORE*71*1*1*_;;;;;;;;;;;;;;;;;;;02220405133102;;;;;;;;;0.988258;48.552621;44670;Velaux;; +;DOMAINE DE VALINCHES;;;;;;SIEGE235;FRS40PMB40212;FR*SOD*S*WIIZ*73*1*_*_;55 BRAS SUR MEUSE - Av du douaumont - 66306;;LA CORNE DE CERF, 27380 Charleval;83023;[-3.591473, 48.535052];;FRE04EOAZS25311;FR*SOD*E*SORE*45*1*1*_;;;;;;;;;;;;;;;;;;;02286975320867;;;;;;;;;4.774333;46.870463;44500;Ventabren;; +;ETOTEM Aytré;;;;;;SIEGE234;FRS40PMB40211;FR*SOD*S*WIIZ*72*1*_*_;55 GONDRECOURT-rue de la grande fontaine-66326;;A51 - Aire de Fontbelle, 13650 Meyrargues;44210;[0.988258, 47.289471];;FRE04EOAZS25312;FR*SOD*E*SORE*45*1*2*_;;;;;;;;;;;;;;;;;;;02220260415334;;;;;;;;;0.919507;44.898702;44580;Vernègues;; +;Eurocommercial Etrembières;;;;;;SIEGE233;FRS40PMB40112;FR*SOD*S*WIIZ*71*1*_*_;55 DUN SUR MEUSE-rue faubourg st Martin-66576;;Aire de Pont Chêne d'Argent A39, 21130 Pont;33449;[4.774333, 48.606594];;FRE04EOAZS25313;FR*SOD*E*SORE*46*1*1*_;;;;;;;;;;;;;;;;;;;02266859547193;;;;;;;;;1.011295;44.21656;44450;Simiane-Collongue;; +;DOMAINE DE LA SAPINIERE;;;;;;SIEGE232;FRS40PMB40111;FR*SOD*S*WIIZ*70*1*_*_;Sorgues;;1 Rue Thomas Edison, 87200 Saint-Junien;54257;[0.919507, 46.92181];;FRE04EOAZS25211;FR*SOD*E*SORE*46*1*2*_;;;;;;;;;;;;;;;;;;;02293198186698;;;;;;;;;2.442818;48.450539;44160;Vauvenargues;; +;Cimetière intercommunal de Valenton;;;;;;SIEGE231;FRS40PMB409212;FR*SOD*S*WIIZ*69*1*_*_;Vidauban Sud;;2 Rue Louis Armand, 95230 Soisy-sous-Montmorency;13028;[1.011295, 47.13251];;FRE04EOAZS25222;FR*SOD*E*SORE*47*1*1*_;;;;;;;;;;;;;;;;;;;02254558534302;;;;;;;;;4.730889;45.69493;44740;Trets;; +;CYTHELIA ENERGY;;;;;;SIEGE261;FRS40PMB409211;FR*SOD*S*WIIZ*68*1*_*_;Saint-Jean-le-Vieux;;Aire du Domaine d'Harcourt, 27800 Malleville-sur-le-Bec,;81273;[2.442818, 48.89486];;FRE04EOAZS25212;FR*SOD*E*SORE*47*1*2*_;;;;;;;;;;;;;;;;;;;50028456374191;;;;;;;;;0.622302;48.418057;44490;Chamalières;; +;CLOS DE LA VAUPALIERE;;;;;;SIEGE263;FRS40PMB409311;FR*SOD*S*WIIZ*67*1*_*_;MAINVILLIERS - Rue des acacias - 137397;;Brasserie de l'Horloge, Rue des Azalées, 10800 Buchères;60159;[4.730889, 48.691364];;FRE04EOAZS25223;FR*SOD*E*SORE*48*1*2*_;;;;;;;;;;;;;;;;;;;02266714829349;;;;;;;;;3.110091;47.305223;44590;Châteaugay;; +;CERTAS Energy;;;;;;SIEGE229;FRS40PMB409312;FR*SOD*S*WIIZ*67*2*_*_;Baud;;Rue de l'Aubrière, 37230 Fondettes;60325;[0.622302, 48.125475];;FRE04EOAZS25221;FR*SOD*E*SORE*48*1*1*_;;;;;;;;;;;;;;;;;;;02201012946477;;;;;;;;;4.767633;45.250465;44480;Champeix;; +;GARAGE DU CENTRE;;;;;;SIEGE280;FRS40PMB409213;FR*SOD*S*WIIZ*66*1*_*_;Carquefou;;1 Rue Louis Joly, 08430 LAUNOIS SUR VENCE;45147;[3.110091, 46.797692];;FRE04EOAZS25111;FR*SOD*E*SORE*49*1*1*_;;;;;;;;;;;;;;;;;;;02289724959333;;;;;;;;;0.862188;48.4357;44110;Châtel-Guyon;; +;Centr'Azur;;;;;;SIEGE294;FRS40PMB402811;FR*SOD*S*WIIZ*66*2*_*_;Riscle;;Rue Alfred de Musset, 37230 Fondettes;31091;[4.767633, 48.552621];;FRE04EOAZS25112;FR*SOD*E*SORE*49*1*2*_;;;;;;;;;;;;;;;;;;;02287409474788;;;;;;;;;4.882995;48.73262;44360;Durtol;; +;Hôtel Mercure Orange;;;;;;SIEGE293;FRS40PMB401212;FR*SOD*S*WIIZ*80*1*_*_;AZAY SUR INDRE 1204;;Rue Docteur Taugourdeau, 28170 TREMBLAY LES VILLAGES;22278;[0.862188, 46.870463];;FRE04EOAZS25113;FR*SOD*E*SORE*50*1*2*_;;;;;;;;;;;;;;;;;;;02254703252192;;;;;;;;;4.723115;48.4911;44118;Courpière;; +;Ibis Fougères;;;;;;SIEGE161;FRS40PMB409111;FR*SOD*S*WIIZ*93*1*_*_;Bléré;;Aire de l'Isle-d'Abeau Sud Autoroute, A43, 38080 L'Isle-d'Abeau;28012;[4.882995, 44.898702];;FRE04EOAZS25011;FR*SOD*E*SORE*50*1*1*_;;;;;;;;;;;;;;;;;;;02223733641759;;;;;;;;;1.463518;48.721745;44210;Giat;; +;Petrogest;;;;;;SIEGE292;FRS40PMB401311;FR*SOD*S*WIIZ*92*1*_*_;Centre de la France Sud;;Route de Bourges, 18220 Les Aix d'Angillon;28015;[4.723115, 44.21656];;FRE04EOAZS25012;FR*SOD*E*SORE*51*1*1*_;;;;;;;;;;;;;;;;;;;02202894279107;;;;;;;;;0.18727;49.061558;44680;Combronde;; +;SCACHE;;;;;;SIEGE291;FRS40PMB402112;FR*SOD*S*WIIZ*92*2*_*_;Aubigné-sur-Layon;;Rue de l'abreuvoir, 18110 Allogny;28033;[1.463518, 48.450539];;FRE04EOAZS25013;FR*SOD*E*SORE*36*1*1*_;;;;;;;;;;;;;;;;;;;02267293700583;;;;;;;;;-1.387367;43.681048;44880;Anzat-le-Luguet;; +;Garage Cheminal - Volkswagen;;;;;;SIEGE290;FRS40PMB402712;FR*SOD*S*WIIZ*91*1*_*_;La Ferté-Bernard;;Parking de l'Eglise, 18150 APREMONT SUR ALLIER;28171;[0.18727, 45.69493];;FRE04EOAZS24911;FR*SOD*E*SORE*35*1*2*_;;;;;;;;;;;;;;;;;;;02231403685766;;;;;;;;;0.715108;49.204187;44980;Ceyrat;; +;GAMMVERT - BRIGNAIS;;;;;;SIEGE289;FRS40PMB402812;FR*SOD*S*WIIZ*90*1*_*_;Glonville;;8, Le Mail Guichard, 18700 Aubigny-sur-Nere;28088;[-1.387367, 48.418057];;FRE04EOAZS24421;FR*SOD*E*SORE*35*1*1*_;;;;;;;;;;;;;;;;;;;02220115697550;;;;;;;;;3.144648;43.681159;44540;Aulnat;; +;GAMM VERT - MONISTROL SUR LOIRE;;;;;;SIEGE288;FRS40PMB401411;FR*SOD*S*WIIZ*89*1*_*_;WAAT 4 CHENES 16;;2 Rue du Revolon, 38150 Chanas;28330;[0.715108, 47.305223];;FRE04EOAZS24312;FR*SOD*E*SORE*34*1*2*_;;;;;;;;;;;;;;;;;;;02290448548337;;;;;;;;;-4.642571;48.462029;44730;Aydat;; +;AGGLOMERATION MONTARGOISE - CORQUILLEROY;;;;;;SIEGE286;FRS40PMB402711;FR*SOD*S*WIIZ*88*1*_*_;Rue;;Rue des Alouettes, 18520 Avord;28394;[3.144648, 45.250465];;FRE04EOAZS24411;FR*SOD*E*SORE*21*1*2*_;;;;;;;;;;;;;;;;;;;02290303830509;;;;;;;;;3.557073;49.17908;44116;Beaumont;; +;AGGLOMERATION MONTARGOISE - VILLEMANDEUR;;;;;;SIEGE285;FRS40PMB402612;FR*SOD*S*WIIZ*87*1*_*_;Giberville Sud;;1 Rue des Bateliers, 14800 Touques;28404;[-4.642571, 48.4357];;FRE04EOAZS23211;FR*SOD*E*SORE*21*1*1*_;;;;;;;;;;;;;;;;;;;02289580241286;;;;;;;;;-2.0577;49.0617463;44370;Besse-et-Saint-Anastaise;; +;AGGLOMERATION MONTARGOISE - SOLTERRE;;;;;;SIEGE284;FRS40PMB402511;FR*SOD*S*WIIZ*86*1*_*_;Reims - 43118 - Place Luton;;Rue de la Halle, 18800 Baugy;28422;[3.557073, 48.73262];;FRE04EOAZS23512;FR*SOD*E*SORE*22*1*1*_;;;;;;;;;;;;;;;;;;;02231258967986;;;;;;;;;3.720691;43.1786;44380;Issoire;; +;AGGLOMERATION MONTARGOISE - PAUCOURT;;;;;;SIEGE283;FRS40PMB402512;FR*SOD*S*WIIZ*85*1*_*_;Guerlesquin;;Place de la Mairie, 18410 Blancafort;45089;[-2.0577, 48.4911];;FRE04EOAZS23411;FR*SOD*E*SORE*22*1*2*_;;;;;;;;;;;;;;;;;;;02204630892012;;;;;;;;;3.613088;47.533779;44720;Ardes;; +;AGGLOMERATION MONTARGOISE - PANNES;;;;;;SIEGE282;FRS40PMB402412;FR*SOD*S*WIIZ*84*1*_*_;SUBLAINES 1577;;Pkg du Marché aux Chevaux, 28210 Nogent-le-Roi;11369;[3.720691, 48.721745];;FRE04EOAZS23412;FR*SOD*E*SORE*23*1*2*_;;;;;;;;;;;;;;;;;;;02267872571781;;;;;;;;;5.499875;47.588846;44710;Arlanc;; +;AGGLOMERATION MONTARGOISE - LOMBREUIL;;;;;;SIEGE281;FRS40PMB402411;FR*SOD*S*WIIZ*83*1*_*_;Ste MARIE DU LAC - 42657 - Rue de Nuisement;;Route de Bourges, 18350 Blet;55545;[3.613088, 49.061558];;FRE04EOAZS23311;FR*SOD*E*SORE*23*1*1*_;;;;;;;;;;;;;;;;;;;02264544062336;;;;;;;;;4.012336;47.587974;44510;Celles-sur-Durolle;; +;AGGLOMERATION MONTARGOISE - CONFLANS SUR LOING;;;;;;SIEGE279;FRS40PMB402311;FR*SOD*S*WIIZ*82*1*_*_;LE PETIT PRESSIGNY 1270;;Route d'Espalion, 12850 Rodez;62397;[5.499875, 43.681048];;FRE04EOAZS23312;FR*SOD*E*SORE*24*1*2*_;;;;;;;;;;;;;;;;;;;02295513671509;;;;;;;;;5.499421;47.567044;44770;Bromont-Lamothe;; +;AGGLOMERATION MONTARGOISE - CHEVILLON SUR HUILLARD;;;;;;SIEGE264;FRS40PMB402312;FR*SOD*S*WIIZ*81*1*_*_;BEAULIEU LES LOCHES 1561;;place de la Liberté, 37260 ARTANNES SUR INDRE;59449;[4.012336, 49.204187];;FRE04EOAZS23212;FR*SOD*E*SORE*24*1*1*_;;;;;;;;;;;;;;;;;;;02267148982709;;;;;;;;;1.760127;47.358186;44630;Cébazat;; +;AGGLOMERATION MONTARGOISE - CEPOY;;;;;;SIEGE278;FRS40PMB402212;FR*SOD*S*OTHR*154*2*_*_;CGED NOISY LE SEC;;Place de l'église, 28800 Le Gault Saint Denis;13210;[5.499421, 43.681159];;FRE04EOAZS23111;FR*SOD*E*SORE*25*1*2*_;;;;;;;;;;;;;;;;;;;02219826261929;;;;;;;;;-0.332664;47.359277;44640;Le Cendre;; +;AGGLOMERATION MONTARGOISE - AMILLY 2;;;;;;SIEGE277;FRS40PMB402211;FR*SOD*S*OTHR*154*4*_*_;THIEBLEMONT-FAREMONT - 42689 - Rue Laurent Gerard;;36 Zamin 3ème Avenue, 59160 Lille;13053;[1.760127, 48.462029];;FRE04EOAZS23711;FR*SOD*E*SORE*25*1*1*_;;;;;;;;;;;;;;;;;;;02269175032799;;;;;;;;;-0.07560301;49.215278;44860;Le Broc;; +;AGGLOMERATION MONTARGOISE - AMILLY 1;;;;;;SIEGE276;FRS40PMB402611;FR*SOD*S*OTHR*154*3*_*_;Villaines la Gonais;;Bd du Maréchal Foch, 28000 Chartres;13071;[-0.332664, 49.17908];;FRE04EOAZS23112;FR*SOD*E*SORE*26*1*2*_;;;;;;;;;;;;;;;;;;;02219970979759;;;;;;;;;-0.563245;48.443547;44250;Blanzat;; +;Aéroport de Lille-Lesquin;;;;;;SIEGE275;FRS40PMB402111;FR*SOD*S*OTHR*154*1*_*_;Saint-Pierre-le-Moûtier;;1 Impasse des Tussilages, 70000 Noidans-lès-Vesoul;13047;[-0.07560301, 49.0617463];;FRE04EOAZS23011;FR*SOD*E*SORE*26*1*1*_;;;;;;;;;;;;;;;;;;;02223299488472;;;;;;;;;2.033293;49.166166;44660;Boudes;; +;AGGLOMERATION MONTARGOISE - VIMORY;;;;;;SIEGE274;FRS40PMB401712;FR*SOD*S*MB19*34*1*_*_;GIFFAUMONT CHAMPAUBERT - 42644 - LA CACHOTTE;;RN7 LES GARNIERS, 83470 Saint-Maximin-la-Sainte-Baume;13037;[-0.563245, 43.1786];;FRE04EOAZS23012;FR*SOD*E*SORE*27*1*1*_;;;;;;;;;;;;;;;;;;;02204775610873;;;;;;;;;1.34025;48.220971;44117;Brassac-les-Mines;; +;Carrefour Nice Lingostière;;;;;;SIEGE273;FRS40PMB401412;FR*SOD*S*MB19*53*1*_*_;CHAUMUSSAY 1220;;Aire de la Loire, A89, 42510 Néronde;13031;[2.033293, 47.533779];;FRE04EOAZS22912;FR*SOD*E*SORE*27*1*2*_;;;;;;;;;;;;;;;;;;;02289724959008;;;;;;;;;1.338914;46.440327;03200;Saint-Anthème;; +;CASINO DE MONTROND;;;;;;SIEGE272;FRS40PMB401511;FR*SOD*S*MB19*48*1*_*_;CGED VALENCE;;Rte de Louvois, 51 ST MARTIN/PRE;13009;[1.34025, 47.588846];;FRE04EOAZS22911;FR*SOD*E*SORE*28*1*2*_;;;;;;;;;;;;;;;;;;;02218668519135;;;;;;;;;1.369809;45.284904;67300;Saint-Germain-Lembron;; +;S.A.S. LA BIO GRANVILLAISE;;;;;;SIEGE271;FRS40PMB402012;FR*SOD*S*MB19*50*1*_*_;Mornas les Adrets;;Rue de Saint Dizier, 51 Sermaize les Bains;13070;[1.338914, 47.587974];;FRE04EOAZS22811;FR*SOD*E*SORE*28*1*1*_;;;;;;;;;;;;;;;;;;;02218957955187;;;;;;;;;1.740861;48.760843;59250;Saint-Gervais-d'Auvergne;; +;Carrefour Market Belondis;;;;;;SIEGE270;FRS40PMB401612;FR*SOD*S*MB19*51*1*_*_;MAINVILLIERS - Place du marché - 137401;;1 Les Etanchettes, 51 Givry-sur-Argonne;13084;[1.369809, 47.567044];;FRE04EOAZS23511;FR*SOD*E*SORE*29*1*1*_;;;;;;;;;;;;;;;;;;;02293342904476;;;;;;;;;1.743234;48.7207;84410;Saint-Julien-Puy-Lavèze;; +;Intermarché Yssingeaux;;;;;;SIEGE269;FRS40PMB401611;FR*SOD*S*MB19*52*1*_*_;Champniers;;Aire de Service de Gevrey-Chambertin, 21220 Gevrey-Chambertin;13049;[1.740861, 47.358186];;FRE04EOAZS23712;FR*SOD*E*SORE*29*1*2*_;;;;;;;;;;;;;;;;;;;02215484727184;;;;;;;;;2.127244;48.77765;;Saint-Ours;; +;STEEL;;;;;;SIEGE268;FRS40PMB401512;FR*SOD*S*MB19*56*1*_*_;Maen Roch;;Place d'Austerlitz, 51 Sainte Menehould;13050;[1.743234, 47.359277];;FRE04EOAZS24311;FR*SOD*E*SORE*30*1*2*_;;;;;;;;;;;;;;;;;;;02296526696183;;;;;;;;;1.481391;49.254993;;Volvic;; +;VILLE DE LA ROCHELLE - PLACE VERDUN;;;;;;SIEGE267;FRS40PMB401711;FR*SOD*S*MB19*54*1*_*_;VEIGNE 1328 - Les Gués;;Parc des Tilleuls, 51 Fagnieres;13051;[2.127244, 49.215278];;FRE04EOAZS24123;FR*SOD*E*SORE*30*1*1*_;;;;;;;;;;;;;;;;;;;02269464467486;;;;;;;;;4.041007;45.7744333;;Saint-Floret;; +;VILLE DE LA ROCHELLE - PLACE JB MARCET;;;;;;SIEGE266;FRS40PMB401812;FR*SOD*S*MB19*47*1*_*_;Molompize;;Rue de POIX, 51 Saint Memmie;13109;[1.481391, 48.443547];;FRE04EOAZS24313;FR*SOD*E*SORE*31*1*1*_;;;;;;;;;;;;;;;;;;;02222141746180;;;;;;;;;1.392673;48.676224;;Saint-Beauzire;; +;VILLE DE LA ROCHELLE - PARKING PREFECTURE;;;;;;SIEGE265;FRS40PMB401811;FR*SOD*S*MB19*32*1*_*_;Aire de Ostwald Ouest;;25 places des halles, 28190 Pontgouin;13213;[4.041007, 49.166166];;FRE04EOAZS24212;FR*SOD*E*SORE*31*1*2*_;;;;;;;;;;;;;;;;;;;02222286463989;;;;;;;;;5.332181;46.63381;;Saint-Éloy-les-Mines;; +;VILLE DE LA ROCHELLE - PARKING CHASSELOUP LAUBAT;;;;;;SIEGE230;FRS40PMB401911;FR*SOD*S*MB19*31*1*_*_;Saint-Rénan;;Place du Ramponneau, 28230 Epernon;13201;[1.392673, 48.220971];;FRE04EOAZS24213;FR*SOD*E*SORE*32*1*1*_;;;;;;;;;;;;;;;;;;;02222575898607;;;;;;;;;5.882983;48.068504;;Saint-Genès-Champanelle;; +;VILLE DE DAMPIERRE;;;;;;SIEGE287;FRS40PMB401912;FR*SOD*S*MB19*30*1*_*_;ESTERNAY - 42869 - PLACE DES TILLEULS;;15 Rue Fernand Beauvillain, 59540 Caudry;13057;[5.332181, 46.440327];;FRE04EOAZS24122;FR*SOD*E*SORE*32*1*2*_;;;;;;;;;;;;;;;;;;;02213458677989;;;;;;;;;1.240505;47.076183;;Sauxillanges;; +;UAB;;;;;;SIEGE228;FRS40PMB402011;FR*SOD*S*MB19*29*4*_*_;Taden;;119, Blvd Jean Jaurès, 54100 Nancy;13065;[5.882983, 45.284904];;FRE04EOAZS24111;FR*SOD*E*SORE*33*1*1*_;;;;;;;;;;;;;;;;;;;02288264756910;;;;;;;;;1.356077;48.777919;;Vic-le-Comte;; +;Super U Thuir;;;;;;SIEGE177;FRTDAPAVTD2011;FR*SOD*S*MB19*29*3*_*_;SEZANNE - 42863 - Place du Champ Benoist;;Parking Ronsard, 37220 Crouzilles;13058;[1.240505, 48.760843];;FRE04EOAZS24112;FR*SOD*E*SORE*33*1*2*_;;;;;;;;;;;;;;;;;;;02287120039189;;;;;;;;;2.586908;47.2040707;;Usson;; +;Meritor;;;;;;SIEGE191;FRTDAPAVTD1011;FR*SOD*S*MB19*46*1*_*_;Dormans;;Place de la Huchette, 37120 FAYE LA VINEUSE;13038;[1.356077, 48.7207];;FRE04EOAZS24121;FR*SOD*E*SORE*34*1*1*_;;;;;;;;;;;;;;;;;;;02267727853915;;;;;;;;;2.450029;45.2046048;;Le Vernet-Chaméane;; +;MAIRIE OLLIERGUES;;;;;;SIEGE190;FRTDAPAVTD1811;FR*SOD*S*MB19*29*2*_*_;CAAPIMMOPERTUIS BORNE 7-8;;Route Nationale, 37250 Montbazon;13034;[2.586908, 48.77765];;FRE04EOAZS23811;FR*SOD*E*SORE*51*1*2*_;;;;;;;;;;;;;;;;;;;02266135958122;;;;;;;;;5.693046;47.518873;;Villeneuve;; +;Mairie de Vertolaye;;;;;;SIEGE189;FRTDAPAVTD1662;FR*SOD*S*MB19*38*1*_*_;Champfleury;;Place de l'Église, 28260 LA CHAUSSEE-D'IVRY;13006;[2.450029, 49.254993];;FRE04EOAZS24013;FR*SOD*E*SORE*52*1*1*_;;;;;;;;;;;;;;;;;;;02296671413943;;;;;;;;;1.322385;47.169884;;Tauves;; +;Mairie de Mouxy;;;;;;SIEGE188;FRTDAPAVTD1661;FR*SOD*S*MB19*33*1*_*_;CAAPIMMOPERTUIS BORNE 9-10;;Place Sainte-Anne, 37520 La Riche;13068;[5.693046, 45.7744333];;FRE04EOAZS24011;FR*SOD*E*SORE*52*1*2*_;;;;;;;;;;;;;;;;;;;02269609185244;;;;;;;;;-1.413199;43.331777;;Thiers;; +;Mairie de Ferrières-en-Gatinais;;;;;;SIEGE187;FRTDAPAVTD1541;FR*SOD*S*MB19*35*1*_*_;AUNEAU - Complexe Sportif - 139678;;5 Rue de Montlix, 08250 Grandpre;13094;[1.322385, 48.676224];;FRE04EOAZS24012;FR*SOD*E*SORE*68*1*2*_;;;;;;;;;;;;;;;;;;;25869030357793;;;;;;;;;-2.855305;47.40984692;;Murol;; +;Mairie de Beaugency;;;;;;SIEGE186;FRTDAPAVTD1542;FR*SOD*S*MB19*36*1*_*_;SONEPAR MONDEVILLE 2;;Les Sabats, 89330 Piffonds;13003;[-1.413199, 46.63381];;FRE04EOAZS23912;FR*SOD*E*SORE*69*1*2*_;;;;;;;;;;;;;;;;;;;25898552765607;;;;;;;;;-1.234271;47.223487;;Mont-Dore;; +;La Charpinière;;;;;;SIEGE185;FRTDAPAVTD1411;FR*SOD*S*MB19*37*1*_*_;Mézidon Vallée d'Auge;;Peage A85, 37310 Sublaines;13035;[-2.855305, 48.068504];;FRE04EOAZS23911;FR*SOD*E*SORE*83*1*1*_;;;;;;;;;;;;;;;;;;;01339652646323;;;;;;;;;2.586911;43.309523;;Montpeyroux;; +;King Jouet Voiron;;;;;;SIEGE184;FRTDAPAVTD1311;FR*SOD*S*MB19*39*1*_*_;CGED OLORON-STE-MARI;;La Pointe Route de Saint-Lô D71 Route de la H, 14270 Caumont-sur-Aure;13032;[-1.234271, 47.076183];;FRE04EOAZS23812;FR*SOD*E*SORE*83*1*2*_;;;;;;;;;;;;;;;;;;;19 512 735 118 300;;;;;;;;;-2.05605048;47.027467;;Nohanent;; +;RENAULT THIVOLLE ST ETIENNE;;;;;;SIEGE183;FRTDAPAVTD1211;FR*SOD*S*MB19*40*1*_*_;NOUAN LE FUZELIER 4571 - Avenue de Toulouse;;Place Marcel Rouleau, 28130 Pierre;13030;[2.586911, 48.777919];;FRE04EOAZS24211;FR*SOD*E*SORE*82*1*1*_;;;;;;;;;;;;;;;;;;;2197607266907;;;;;;;;;-0.21783034;47.441886;;Nonette-Orsonnette;; +;RENAULT AGENCE LOSANGE;;;;;;SIEGE182;FRTDAPAVTD412;FR*SOD*S*MB19*41*1*_*_;BLOIS 4531 - Mail Pierre Sudreau;;Place Maunoury, 28120 Illier-Combray;13029;[-2.05605048, 47.2040707];;FRE04EOAZS19822;FR*SOD*E*SORE*82*1*2*_;;;;;;;;;;;;;;;;;;;30000130603481;;;;;;;;;-0.603188;49.100667;;Orcines;; +;Salaison Fournet-Fayard;;;;;;SIEGE181;FRTDAPAVTD811;FR*SOD*S*MB19*42*1*_*_;BLOIS 4539 - Quai Saint Jean;;Rue Denis Papin, 37300 Joué-les-Tours;13043;[-0.21783034, 45.2046048];;FRE04EOAZS25512;FR*SOD*E*SORE*81*1*1*_;;;;;;;;;;;;;;;;;;;19302604816408;;;;;;;;;0.51155;43.368789;;Lempdes;; +;METROPOLIS;;;;;;SIEGE180;FRTDAPAVTD621;FR*SOD*S*MB19*43*1*_*_;SAINT GERVAIS LA FORET 4543 - Rue du clouseaux;;2 All. de Saumur, 86170 Neuville-de-Poitou;13044;[-0.603188, 47.518873];;FRE04EOAZS22812;FR*SOD*E*SORE*81*1*2*_;;;;;;;;;;;;;;;;;;;19385094004982;;;;;;;;;3.256099;47.372148;;La Tour-d'Auvergne;; +;SAS Sabo;;;;;;SIEGE179;FRTDAPAVTD522;FR*SOD*S*MB19*44*1*_*_;ROMORANTIN LANTHENAY 4547;;Rue de la Baratière, 37360 Sonzay;13026;[0.51155, 47.169884];;FRE04EOAZS10322;FR*SOD*E*SORE*80*1*2*_;;;;;;;;;;;;;;;;;;;67512/E1/0548834;;;;;;;;;1.0926193;49.043274;;Royat;; +;ELECTRIC 55 CHARGING;;;;;;SIEGE178;FRTDAPAVTD521;FR*SOD*S*MB19*29*1*_*_;ROMORANTIN LANTHENAY 4549 - Place de la paix;;Boulevard Jean Brion, 51 Blancs Coteaux;13024;[3.256099, 43.331777];;FRE04EOAZS12632;FR*SOD*E*SORE*80*1*1*_;;;;;;;;;;;;;;;;;;;RTPL;;;;;;;;;0.580119;49.078606;;Lezoux;; +;SYDEV;;;;;;SIEGE176;FRTDAPAVTD411;FR*SOD*S*MB19*29*5*_*_;Méru Amblainville;;Rue Saint Hubert, 51300 Marolles;13014;[1.0926193, 47.40984692];;FRE04EOAZS12631;FR*SOD*E*SORE*79*1*1*_;;;;;;;;;;;;;;;;;;;300 002 505 956 19;;;;;;;;;3.495216;47.25505;;La Monnerie-le-Montel;; +;SDEC ENERGIE;;;;;;SIEGE193;FRTDAPAVTD321;FR*SOD*S*MB19*18*1*_*_;CHARTRES - Rue du grand faubourg - 134789;;Rue rampe des Ecoles, 41100 Selommes;13005;[0.580119, 47.223487];;FRE04EOAZS12633;FR*SOD*E*SORE*79*1*2*_;;;;;;;;;;;;;;;;;;;02521128794038;;;;;;;;;1.081558;46.776081;;Rochefort-Montagne;; +;SDEHG;;;;;;SIEGE175;FRTDAPAVTD221;FR*SOD*S*MB19*12*1*_*_;RILLY LA MONTAGNE;;Place Jean Monet, 51 Pargny sur Saulx;13007;[3.495216, 43.309523];;FRE04EOAZS16421;FR*SOD*E*SORE*78*1*1*_;;;;;;;;;;;;;;;;;;;06561794486915;;;;;;;;;0.745838;46.776249;;Romagnat;; +;IONITY;;;;;;SIEGE174;FRTDAPAVTD191;FR*SOD*S*MB19*13*1*_*_;MONTBOISSIER - Les Rues Neuves - 129294;;Rue du Pont, 28160 Yevres;13008;[1.081558, 47.027467];;FRE04EOAZS16423;FR*SOD*E*SORE*78*1*2*_;;;;;;;;;;;;;;;;;;;0;;;;;;;;;-1.087499;47.348606;;Pérignat-lès-Sarliève;; +;La jabotte;;;;;;SIEGE173;FRTDAPAVTD2412;FR*SOD*S*MB19*14*1*_*_;Saint-Amour;;Rue Maison Maraine , 28400 Nogent-le-Rotrou;13119;[0.745838, 47.441886];;FRE04EOAZS16422;FR*SOD*E*SORE*77*1*1*_;;;;;;;;;;;;;;;;;;;17 262 807 481 385;;;;;;;;;3.222769;47.372504;;Parent;; +;OVERCHEM;;;;;;SIEGE172;FRTDAPAVTD2411;FR*SOD*S*MB19*15*1*_*_;SONEPAR AED CROLLES;;216 Rue Boucher de la Rupelle, 73100 Grésy-sur-Aix;13022;[-1.087499, 49.100667];;FRE04EOAZS17022;FR*SOD*E*SORE*77*1*2*_;;;;;;;;;;;;;;;;;;;17 264 399 377 391;;;;;;;;;-1.936433;43.914901;;Puy-Guillaume;; +;SIEGE 27;;;;;;SIEGE171;FRTDAPAVTD721;FR*SOD*S*MB19*16*1*_*_;ST-REMY-SUR-AVRE - Place des Dodots - 139435;;Parking de l'église, 41600 Yvoy le marron;13056;[3.222769, 43.368789];;FRE04EOAZS17021;FR*SOD*E*SORE*76*1*1*_;;;;;;;;;;;;;;;;;;;17 238 639 609 130;;;;;;;;;3.958078;47.451294;;Parentignat;; +;GRAND NANCY;;;;;;SIEGE170;FRS86PSOREB0281;FR*SOD*S*MB19*17*1*_*_;VERNOUILLET - Place du 8 mai 1945 - 139037;;Rue Abraham Lincoln, 62400 Béthune;13062;[-1.936433, 47.372148];;FRE04EOAZS17023;FR*SOD*E*SORE*76*1*2*_;;;;;;;;;;;;;;;;;;;17 277 713 415 042;;;;;;;;;3.64144;47.372326;;Pont-du-Château;; +;PHA;;;;;;SIEGE169;FRS86PSOREB0631;FR*SOD*S*MB19*11*1*_*_;WAAT 4 CHENES 30;;allée des écoliers, 88400 Xonrupt longemer;13072;[3.958078, 49.043274];;FRE04EOAZS18823;FR*SOD*E*SORE*75*1*2*_;;;;;;;;;;;;;;;;;;;50 018 317 769 337;;;;;;;;;1.397453;47.5476166;;La Loupe;; +;GAMBUS SARL;;;;;;SIEGE168;FRS86PSOREB0252;FR*SOD*S*MB19*29*6*_*_;CGED MONTATAIRE;;ZA ECOPOLIS 7 rue emmanuel amblot, 62127 Tincques;13073;[3.64144, 49.078606];;FRE04EOAZS18821;FR*SOD*E*SORE*75*1*1*_;;;;;;;;;;;;;;;;;;;50 006 450 909 577;;;;;;;;;-1.429383;46.944576;;Damparis;; +;Avomarks;;;;;;SIEGE167;FRS86PSOREB0601;FR*SOD*S*MB19*27*1*_*_;Chazey-Bons;;37 Rue du château, 28400 Nogent-le-Rotrou;13081;[1.397453, 47.25505];;FRE04EOAZS18822;FR*SOD*E*SORE*74*1*1*_;;;;;;;;;;;;;;;;;;;17 262 083 892 402;;;;;;;;;-1.429227;47.05603596;;Bois-Grenier;; +;AEV ATELIER ELECTRIQUE VOIRONNAIS;;;;;;SIEGE165;FRS86PSOREB0602;FR*SOD*S*MB19*26*1*_*_;TREON - Rue Jean Michel Herault - 134347;;4 août 1789, 51370 St Brice Courcelles;13087;[-1.429383, 46.776081];;FRE04EOAZS19223;FR*SOD*E*SORE*74*1*2*_;;;;;;;;;;;;;;;;;;;17 273 516 598 808;;;;;;;;;0.549604;47.372671;;Niedersteinbach;; +;AQUA LOISIRS;;;;;;SIEGE164;FRS86PSOREB1041;FR*SOD*S*MB19*23*1*_*_;La Roche-sur-Yon;;Rue Antoine Parmentier, 02100 Saint-Quentin;13092;[-1.429227, 46.776249];;FRE04EOAZS19221;FR*SOD*E*SORE*73*1*1*_;;;;;;;;;;;;;;;;;;;50 092 998 604 167;;;;;;;;;-1.93756;46.975509;;Neuville-en-Ferrain;; +;Ispo france;;;;;;SIEGE163;FRS86PSOREB1042;FR*SOD*S*MB19*22*1*_*_;Noyal-Pontivy;;Place de l'Église, 28105 Combres;13093;[0.549604, 47.348606];;FRE04EOAZS10321;FR*SOD*E*SORE*73*1*2*_;;;;;;;;;;;;;;;;;;;17 260 347 279 183;;;;;;;;;1.308488;47.308279;;Darbres;; +;ispo france;;;;;;SIEGE162;FRS86PSOREB0771;FR*SOD*S*MB19*21*1*_*_;Gétigné;;Place des déportés, 88400 Gérardmer;13048;[-1.93756, 47.372504];;FRE04EOAZS10231;FR*SOD*E*SORE*72*1*2*_;;;;;;;;;;;;;;;;;;;50 070 271 459 489;;;;;;;;;0.445236;47.372793;;Ennevelin;; +;ENTREPRISE ADAM;;;;;;SIEGE227;FRS86PSOREB0772;FR*SOD*S*MB19*20*1*_*_;WAAT 4 CHENES 28;;Rue Edouard BRANLY, 37230 Fondettes;13080;[1.308488, 43.914901];;FRE04EOAZS10232;FR*SOD*E*SORE*70*1*2*_;;;;;;;;;;;;;;;;;;;50 091 406 684 071;;;;;;;;;-1.937801;47.39251545;;Bouzonville;; +;EDFRAY;;;;;;SIEGE192;FRS86PSOREB1121;FR*SOD*S*MB19*5*2*_*_;Saint-Père-en-Retz;;Place Gambetta, 51420 Witry-les-Reims;13105;[0.445236, 47.451294];;FRE04EOAZS2322;FR*SOD*E*SORE*70*1*1*_;;;;;;;;;;;;;;;;;;;17 289 435 556 806;;;;;;;;;0.31917483;47.14435;;Sainte-Maure-de-Touraine;; +;Daltoner Granville;;;;;;SIEGE166;FRS86PSOREB1122;FR*SOD*S*MB19*10*1*_*_;Orignolles;;Avenue de la ville de vichy, 88400 Gérardmer;13063;[-1.937801, 47.372326];;FRE04EOAZS1432;FR*SOD*E*SORE*71*1*2*_;;;;;;;;;;;;;;;;;;;17 272 648 292 092;;;;;;;;;0.894899;44.587586;;Escautpont;; +;Le Relais de la Perle;;;;;;SIEGE194;FRS86PSOREB0472;FR*SOD*S*MB19*28*1*_*_;Avrillé;;Place de L Hôtel de ville, 28160 Brou;13076;[0.31917483, 47.5476166];;FRE04EOAZS1433;FR*SOD*E*SORE*69*1*1*_;;;;;;;;;;;;;;;;;;;17 272 358 856 468;;;;;;;;;1.04215052;45.8641;;Bénifontaine;; +;SIECF TE FLANDRE;;;;;;SIEGE212;FRS86PSOREB0471;FR*SOD*S*MB19*1*2*_*_;NEUIL 3567 - Parking Impasse des Lizas;;Place rue Paul Douce, 51480 Damery;13066;[0.894899, 46.944576];;FRE04EOAZS1431;FR*SOD*E*SORE*68*1*1*_;;;;;;;;;;;;;;;;;;;17 273 661 316 682;;;;;;;;;-1.937388;48.044019;;Matignon;; +;SOGESTRAN;;;;;;SIEGE226;FRS86PSOREB0951;FR*SOD*S*MB19*2*2*_*_;SONEPAR CONNECT BEZIERS_;;Parking Champlain, 54130 SAINT MAX;13064;[1.04215052, 47.05603596];;FRE04EOAZS2332;FR*SOD*E*SORE*53*1*1*_;;;;;;;;;;;;;;;;;;;17 274 384 905 649;;;;;;;;;0.377102;47.425562;;Loon-Plage;; +;SDEC23;;;;;;SIEGE195;FRS86PSOREB0952;FR*SOD*S*MB19*3*2*_*_;SOUVIGNY DE TOURAINE 1462;;A5, 77130 Forges;13036;[-1.937388, 47.372671];;FRE04EOAZS2341;FR*SOD*E*SORE*67*1*2*_;;;;;;;;;;;;;;;;;;;17 274 529 623 407;;;;;;;;;0.909736;43.381839;;Saint-Genest-Lerpt;; +;Electriox Groupe;;;;;;SIEGE225;FRS86PSOREB0632;FR*SOD*S*MB19*4*2*_*_;THILOUZE 1464;;18 Route de Taradeau, 83460 Les Arcs;13027;[0.377102, 46.975509];;FRE04EOAZS2331;FR*SOD*E*SORE*53*1*2*_;;;;;;;;;;;;;;;;;;;17 235 600 534 721;;;;;;;;;0.348189;49.050615;;Firminy;; +;SA Manuchar;;;;;;SIEGE224;FRS86PSOREB0841;FR*SOD*S*MB19*8*1*_*_;SONEPAR CONNECT AGDE;;Rue des Moissons, 51 L'Épine;13083;[0.909736, 47.355949];;FRE04EOAZS2321;FR*SOD*E*SORE*54*1*1*_;;;;;;;;;;;;;;;;;;;50 054 500 639 345;;;;;;;;;-1.938086;47.31067554;;Le Chambon-Feugerolles;; +;Auberge Dupuytren;;;;;;SIEGE222;FRS86PSOREB0071;FR*SOD*S*MB19*6*1*_*_;BRIDORE 1467;;2 Place de l'Hotel de Ville, 51600 Suippes;13089;[0.348189, 47.308279];;FRE04EOAZS10233;FR*SOD*E*SORE*54*1*2*_;;;;;;;;;;;;;;;;;;;50 033 226 991 040;;;;;;;;;0.19641119;47.433521;;Saint-Chamond;; +;Domaine Tesseron;;;;;;SIEGE221;FRS86PSOREB0072;FR*SOD*S*MB19*7*1*_*_;PARCAY MESLAY 1469;;ZA ecopolis 7 Rue emmanuel amblot, 62127 Tincques;13097;[-1.938086, 47.372793];;FRE04EOAZS2342;FR*SOD*E*SORE*55*1*2*_;;;;;;;;;;;;;;;;;;;50 074 182 144 770;;;;;;;;;0.538582;48.330962;;Saint-Priest-en-Jarez;; +;Mairie de Burie;;;;;;SIEGE220;FRS86PSOREB0641;FR*SOD*S*MB19*9*1*_*_;SONEPAR CONNECT SAINT-LÔ;;La Vallerie, 37330 Couesmes;13061;[0.19641119, 47.39251545];;FRE04EOAZS4321;FR*SOD*E*SORE*55*1*1*_;;;;;;;;;;;;;;;;;;;50 063 035 569 404;;;;;;;;;4.526151;47.382828;;Andrézieux-Bouthéon;; +;Mairie de Meursac;;;;;;SIEGE219;FRS86PSOREB0642;FR*SOD*S*MB16*18*1*_*_;CGED BEZIERS;;RUE PAUL COUTON, 41130 Meusnes;13116;[0.538582, 47.14435];;FRE04EOAZS4322;FR*SOD*E*SORE*56*1*1*_;;;;;;;;;;;;;;;;;;;50 001 241 069 144;;;;;;;;;3.35329;50.450746;;Saint-Jean-Bonnefonds;; +;La Chabanaise;;;;;;SIEGE218;FRS86PSOREB0891;FR*SOD*S*MB16*17*1*_*_;PARKING N-1 SAVENAY 4;;30 rue de Murgers, 28200 Villemaury;13052;[4.526151, 44.587586];;FRE04EOAZS8033;FR*SOD*E*SORE*56*1*2*_;;;;;;;;;;;;;;;;;;;50 034 962 127 802;;;;;;;;;1.186173;46.834555;;Marols;; +;Mairie de Tesson;;;;;;SIEGE217;FRS86PSOREB0892;FR*SOD*S*MB16*22*1*_*_;UNILABS BIO CT EPERNAY;;rue robert, 88800 Vittel;13018;[3.35329, 45.8641];;FRE04EOAZS8032;FR*SOD*E*SORE*57*1*2*_;;;;;;;;;;;;;;;;;;;50 069 693 568 879;;;;;;;;;0.39297;43.477012;;Aytré;; +;Santonge Immobilier;;;;;;SIEGE216;FRS86PSOREB0582;FR*SOD*S*MB16*19*1*_*_;DORMANS -70244 - Gare;;195 Chem. de Maquens, 11000 Carcassonne;13017;[1.186173, 48.044019];;FRE04EOAZS8031;FR*SOD*E*SORE*58*1*1*_;;;;;;;;;;;;;;;;;;;50 076 204 889 357;;;;;;;;;5.7043;50.261485;;Étrembières;; +;Mairie Ecoyeux;;;;;;SIEGE215;FRS86PSOREB0581;FR*SOD*S*MB16*16*1*_*_;SEIGY 211885 - RUE MARCEL COTTEREAU;;1 Rue Lenotre, 28260 Anet;13010;[0.39297, 47.425562];;FRE04EOAZS19222;FR*SOD*E*SORE*58*1*2*_;;;;;;;;;;;;;;;;;;;50 024 833 189 840;;;;;;;;;2.143177;48.079532;;Wisques;; +;SCI DU Renclos de Bussac;;;;;;SIEGE214;FRS86PSOREB1051;FR*SOD*S*MB16*21*1*_*_;STATION SUPER U BELLEVIGNY DC;;Rue Sarah Bernhardt, 51430 Tinqueux;13074;[5.7043, 43.381839];;FRE04EOAZS19422;FR*SOD*E*SORE*59*1*2*_;;;;;;;;;;;;;;;;;;;50 045 381 858 665;;;;;;;;;0.47377385;48.752678;;Valenton;; +;DESSIRIEX SAS;;;;;;SIEGE213;FRS86PSOREB1052;FR*SOD*S*MB16*20*1*_*_;STATION SUPER U BELLEVIGNY 4;;L'Etouble Perrine, 34270 Combourg;13077;[2.143177, 49.050615];;FRE04EOAZS19421;FR*SOD*E*SORE*59*1*1*_;;;;;;;;;;;;;;;;;;;50 048 563 789 418;;;;;;;;;1.030155;47.58978807;;La Motte-Servolex;; +;Mairie Les Gonds;;;;;;SIEGE223;FRS86PSOREB1062;FR*SOD*S*MB16*15*1*_*_;SAVONNIERES 1460 - Place du Faisan;;8 Rue du Docteur Vaisbuch, 28290 Arrou;13101;[0.47377385, 47.31067554];;FRE04EOAZS22613;FR*SOD*E*SORE*60*1*1*_;;;;;;;;;;;;;;;;;;;50 063 905 687 804;;;;;;;;;-4.770931;44.51378472;;La Vaupalière;; +;Mairie d'Ecoyeux;;;;;;SIEGE211;FRS86PSOREB1061;FR*SOD*S*MB16*9*1*_*_;PARKING N-1 SAVENAY 3;;144 Rue Marie Curie, 14200 Hérouville-Saint-Clair;13069;[1.030155, 47.433521];;FRE04EOAZS22411;FR*SOD*E*SORE*60*1*2*_;;;;;;;;;;;;;;;;;;;50 017 018 729 266;;;;;;;;;0.421643;47.40395902;;Coupvray;; +;Camping LES FLOTS-ATLANTIQUE;;;;;;SIEGE204;FRS86PSOREB0181;FR*SOD*S*MB16*14*1*_*_;Montbartier;;Rue de la gare, 51490 Pontfaverger;13078;[-4.770931, 48.330962];;FRE04EOAZS22521;FR*SOD*E*SORE*61*1*1*_;;;;;;;;;;;;;;;;;;;50 090 676 669 304;;;;;;;;;2.825341;47.54254534;;Chazelles-sur-Lyon;; +;Mairie Saint Georges Des Coteaux;;;;;;SIEGE210;FRS86PSOREB0251;FR*SOD*S*MB16*13*1*_*_;AMBILLOU 1444;;Aire De La Mayenne, 53960 Bonchamp-lès-Laval;13079;[0.421643, 47.382828];;FRE04EOAZS22513;FR*SOD*E*SORE*61*1*2*_;;;;;;;;;;;;;;;;;;;19905933337242;;;;;;;;;-1.874505;49.289838;;Beaucé;; +;MONSIEUR LAURENT MORICHON;;;;;;SIEGE200;FRS86PSOREB0012;FR*SOD*S*MB16*12*1*_*_;PARKING N-1 SAVENAY 1;;26 Rue Julien Ducos, 51530 Saint Martin D'Ablois;13085;[2.825341, 50.450746];;FRE04EOAZS22512;FR*SOD*E*SORE*62*1*2*_;;;;;;;;;;;;;;;;;;;152652677140015;;;;;;;;;1.331183;46.857443;;Ébreuil;; +;Mairie de Montils;;;;;;SIEGE199;FRS86PSOREB0011;FR*SOD*S*MB16*11*1*_*_;CHÂTEAU LA VALLIERE 1446;;Place Morad, 28000 Chartres;13091;[-1.874505, 46.834555];;FRE04EOAZS22522;FR*SOD*E*SORE*62*1*1*_;;;;;;;;;;;;;;;;;;;152652677140004;;;;;;;;;2.864158;47.368329;;Feurs;; +;270 AGENCY;;;;;;SIEGE202;FRS86PSOREB0882;FR*SOD*S*MB16*10*1*_*_;LA CELLE GUENAND 1449;;rue des remparts de l'Est, 51210 Montmirail;13098;[1.331183, 43.477012];;FRE04EOAZS22511;FR*SOD*E*SORE*63*1*1*_;;;;;;;;;;;;;;;;;;;152652677140008;;;;;;;;;1.135338;44.901007;;Monistrol-sur-Loire;; +;270 Agency;;;;;;SIEGE203;FRS86PSOREB0762;FR*SOD*S*MB16*8*1*_*_;VERNEUIL SUR INDRE 1453;;rue de l'ile de France, 51430 Tinqueux;13099;[2.864158, 50.261485];;FRE04EOAZS22621;FR*SOD*E*SORE*63*1*2*_;;;;;;;;;;;;;;;;;;;152652677140007;;;;;;;;;1.356001;43.275477;;Lesquin;; +;Alu granon père et fils;;;;;;SIEGE201;FRS86PSOREB0761;FR*SOD*S*MB16*7*1*_*_;PARKING N-1 SAVENAY 6;;1 rue de l'écluse de Bergues, 59140 Dunkerques;13060;[1.135338, 48.079532];;FRE04EOAZS22422;FR*SOD*E*SORE*64*1*2*_;;;;;;;;;;;;;;;;;;;152652677140006;;;;;;;;;0.90823621;43.00587;;Montrond-les-Bains;; +;SERNAD INVESTISSEMENT;;;;;;SIEGE205;FRS86PSOREB0371;FR*SOD*S*MB16*23*1*_*_;RAZINES 1441;;Vinci Orleans Nord, 39 Rue Henri Becquerel, 45770 Saran;13059;[1.356001, 48.752678];;FRE04EOAZS22612;FR*SOD*E*SORE*64*1*1*_;;;;;;;;;;;;;;;;;;;152652677140003;;;;;;;;;4.78140646;47.22885084;;Yquelon;; +;METALLERIE PERRUT;;;;;;SIEGE206;FRS86PSOREB0372;FR*SOD*S*MB16*24*1*_*_;SAINT MARTIN LE BEAU 1456;;Place Lenoncourt, 51100 Reims;13928;[0.90823621, 47.58978807];;FRE04EOAZS22611;FR*SOD*E*SORE*65*1*2*_;;;;;;;;;;;;;;;;;;;152652677140005;;;;;;;;;0.6263851;44.176503;;Riec-sur-Bélon;; +;LANGON DISTRIBUTION;;;;;;SIEGE207;FRS86PSOREB0832;FR*SOD*S*MB16*63*1*_*_;COTEAUX-SUR-LOIRE 1458;;3 Rue Gaston CORNAVIN, 18500 Foecy;13040;[4.78140646, 44.51378472];;FRE04EOAZS22622;FR*SOD*E*SORE*84*1*1*_;;;;;;;;;;;;;;;;;;;152652677140002;;;;;;;;;0.91908306;45.679959;;Yssingeaux;; +;PLAGECO DISTRIBUTION;;;;;;SIEGE208;FRS86PSOREB0831;FR*SOD*S*MB16*69*1*_*_;PARKING N-1 SAVENAY 5;;Rue Pierre Mendes France, 28000 Chartres;13118;[0.6263851, 47.40395902];;FRE04EOAZS22721;FR*SOD*E*SORE*66*1*2*_;;;;;;;;;;;;;;;;;;;152652677140001;;;;;;;;;1.031039;48.321282;;La Rochelle;; +;BIARS DISTRIBUTION;;;;;;SIEGE209;FRS86PSOREB0522;FR*SOD*S*MB16*68*1*_*_;GIZEUX 15744 - Place de la Mairie;;Rte de Moronval, 28500 SAINTE GEMME MORONVAL;13046;[0.91908306, 47.54254534];;FRE04EOAZS22722;FR*SOD*E*SORE*66*1*1*_;;;;;;;;;;;;;;;;;;;152652677140009;;;;;;;;;2.319486;47.415343;;Dampierre-en-Burly;; +;SAS Miodis;;;;;;SIEGE196;FRS86PSOREB0521;FR*SOD*S*MB16*67*1*_*_;SAINT EPAIN 1565;;Rue Jean Jaurès, 51160 Champillon;13102;[1.031039, 49.289838];;FRE04EOAZS22711;FR*SOD*E*SORE*67*1*1*_;;;;;;;;;;;;;;;;;;;16134153189709;;;;;;;;;0.727834;42.691616;;La Ferrière;; +;SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX;;;;;;GRAND NANCY;FRS86PSOREB0312;FR*SOD*S*MB16*66*1*_*_;LES ARCHES BORNE 1;;Route de Mézière, 57280 Maizières-lès-Metz;13104;[2.319486, 46.857443];;FRE04EOAZS22421;FR*SOD*E*SORE*65*1*1*_;;;;;;;;;;;;;;;;;;;50082723618503;;;;;;;;;2.429779;48.888132;;Thuir;; +;TENTE SAS;;;;;;PHA;FRS86PSOREB0311;FR*SOD*S*MB16*65*1*_*_;Culhat;;Rue de la Ferté, 28270 Brezolles;13113;[0.727834, 47.368329];;FRE04EOAZS22412;FR*SOD*E*SORE*93*1*2*_;;;;;;;;;;;;;;;;;;;25810709114478;;;;;;;;;5.405298;46.159016;;Olliergues;; +;SAS Lujasy;;;;;;GAMBUS;FRS86PSOREB0802;FR*SOD*S*MB16*64*1*_*_;COMMUNE NOUVELLE - Eglise Langey - 137316;;KFC, 72 Avenue du Président Kennedy, 02200 Soissons;13112;[2.429779, 44.901007];;FRE04EOAZS19423;FR*SOD*E*SORE*84*1*2*_;;;;;;;;;;;;;;;;;;;30002580789419;;;;;;;;;1.615962;46.305505;;Vertolaye;; +;Hotel MACCHI;;;;;;GARAGE ZAWIEJA;FRS86PSOREB0801;FR*SOD*S*MB16*70*1*_*_;CLERE LES PINS 1563;;2 Rue du Moulin de la Rousselière, 44800 Saint-Herblain;13114;[5.405298, 43.275477];;FRE04EOAZS21821;FR*SOD*E*SORE*133*1*2*_;;;;;;;;;;;;;;;;;;;200416P000017;;;;;;;;;1.10312551;49.397739;;Mouxy;; +;Hotel Saint Walfrid;;;;;;Avomarks;FRS86PSOREB0421;FR*SOD*S*MB16*62*1*_*_;PACAZAC BORNE 2;;10 Rue du Haut Chemin, 28150 Ymonville;13115;[1.615962, 43.00587];;FRE04EOAZS19823;FR*SOD*E*SORE*132*1*1*_;;;;;;;;;;;;;;;;;;;null;;;;;;;;;0.624051;43.471439;;Ferrières-en-Gâtinais;; +;NW IECharge Bretagne;;;;;;ETANCHEITE PARTICULIERS ET INDUSTRIES;FRS86PSOREB0422;FR*SOD*S*MB16*61*1*_*_;3C CLIM ST OUEN;;30 Rue Chanzy, 5& Verzy;13107;[1.10312551, 47.22885084];;FRE04EOAZS19821;FR*SOD*E*SORE*131*1*1*_;;;;;;;;;;;;;;;;;;;30001612438276;;;;;;;;;4.156034;48.083941;;Beaugency;; +;AGAS SARL;;;;;;LA FERME DE LA MOTTE;FRS86PSOREB1012;FR*SOD*S*MB16*60*1*_*_;VALLERES 1567;;Sur Bereaux - rue des Rochottes, 88260 Bonvillet;13111;[0.624051, 44.176503];;FRE04EOAZS21311;FR*SOD*E*SORE*131*1*2*_;;;;;;;;;;;;;;;;;;;50023244619775;;;;;;;;;0.821276;44.119222;;Saint-Galmier;; +;DIGICEL ANTILLES FRANCAISES GUYANE;;;;;;SATORIZ GRENOBLE ROCADE;FRS86PSOREB1011;FR*SOD*S*MB16*59*1*_*_;CHARGE 1558;;Rue des fossés, 28330 Bazoches-Gouet;13110;[4.156034, 45.679959];;FRE04EOAZS21312;FR*SOD*E*SORE*130*1*1*_;;;;;;;;;;;;;;;;;;;50092419728220;;;;;;;;;-0.616726;49.154069;;Voiron;; +;SCI UNION JACK;;;;;;AQUA LOISIRS;FRS86PSOREB0501;FR*SOD*S*MB16*58*1*_*_;HPSM BORNE 1 ET 2;;8 Rue du Maréchal Joffre, 51 MOURMELON LE GRAND;63075;[0.821276, 48.321282];;FRE04EOAZS21512;FR*SOD*E*SORE*130*1*2*_;;;;;;;;;;;;;;;;;;;00000000050088;;;;;;;;;2.922786;44.431026;;Saint-Just-Saint-Rambert;; +;Socanparc - Pointe Simon;;;;;;Réseau de recharge ISPO FRANCE;FRS86PSOREB0502;FR*SOD*S*MB16*57*1*_*_;MAZIERES DE TOURAINE 15734 - Rue du Stade;;La Presle, 51480 Reuil;63099;[-0.616726, 47.415343];;FRE04EOAZS21511;FR*SOD*E*SORE*129*1*1*_;;;;;;;;;;;;;;;;;;;19592764086444;;;;;;;;;2.326459;43.658197;;Neuilly-sur-Seine;; +;Socanparc - Lafcadio;;;;;;ENTREPRISE ADAM;FRS86PSOREB0322;FR*SOD*S*MB16*56*1*_*_;CGED LENS;;Parking rue des trois mariés, 28120 Illiers-Combray;63080;[2.922786, 42.691616];;FRE04EOAZS21822;FR*SOD*E*SORE*129*1*2*_;;;;;;;;;;;;;;;;;;;300000111032878;;;;;;;;;-1.105773;48.980736;;Bagnolet;; +;SARL DIAM SUD;;;;;;BH CAR;FRS86PSOREB0321;FR*SOD*S*MB16*55*1*_*_;HU CHALLANS U LOCATION;;Parking rue du Stade, 37600 Saint-Hippolyte;63103;[2.326459, 48.888132];;FRE04EOAZS22413;FR*SOD*E*SORE*128*1*2*_;;;;;;;;;;;;;;;;;;;35353P0003;;;;;;;;;4.82953;47.328019;;Coubron;; +;Koud'pouss;;;;;;Daltoner Granville;FRS86PSOREB0091;FR*SOD*S*MB16*76*1*_*_;SONEPAR CONNECT MURET;;Rue de la Cloche, 28400 Margon;63141;[-1.105773, 46.159016];;FRE04EOAZS21823;FR*SOD*E*SORE*128*1*1*_;;;;;;;;;;;;;;;;;;;41936000007;;;;;;;;;1.112229;43.488465;;Clichy-sous-Bois;; +;VOUS ET NOUS 84;;;;;;le relais;FRS86PSOREB0092;FR*SOD*S*MB16*6*1*_*_;Aire de Wancourt Est;;Avenue de la Prairie, 28230 Epernon;63125;[4.82953, 46.305505];;FRE04EOAZS21912;FR*SOD*E*SORE*127*1*2*_;;;;;;;;;;;;;;;;;;;42036000536;;;;;;;;;5.642773;47.253068;;Bourg-la-Reine;; +;REVE;;;;;;Pass Pass Electrique;FRS86PSOREB0041;FR*SOD*S*MB16*5*1*_*_;COMMUNE NOUVELLE D'ARROU - Place Rillé - 137295;;Rue du Général de Gaulle, 51 Val de Vesle;63165;[1.112229, 49.397739];;FRE04EOAZS21911;FR*SOD*E*SORE*127*1*1*_;;;;;;;;;;;;;;;;;;;41431001023;;;;;;;;;5.145681;47.47147261;;Châtenay-Malabry;; +;MOMATECH SARL - TECHOFFICE;;;;;;Réseau de recharge Sogestran;FRS86PSOREB0042;FR*SOD*S*MB16*4*1*_*_;SONEPAR CONNECT DREUX;;Rue basse, 51520 Sarry;63116;[5.642773, 43.471439];;FRE04EOAZS22122;FR*SOD*E*SORE*126*1*1*_;;;;;;;;;;;;;;;;;;;41736019648;;;;;;;;;4.110755;44.395027;;Antony;; +;BOIS CHERI - HOTEL DU PORGE;;;;;;Réseau de recharge Creuse;FRS86PSOREB0681;FR*SOD*S*MB16*3*1*_*_;CHÂTEAU RENAULT 1551 - Avenue du Maine;;1000 Rte de L’Arboretum, 19140 Espartignac;63006;[5.145681, 48.083941];;FRE04EOAZS22123;FR*SOD*E*SORE*126*1*2*_;;;;;;;;;;;;;;;;;;;NFDGDIAEH352;;;;;;;;;6.157741;47.6156073;;Juvisy-sur-Orge;; +;McDonald's Basse-Terre;;;;;;Electriox Groupe Station IRVE;FRS86PSOREB0682;FR*SOD*S*MB16*2*1*_*_;Montélimar Est;;15 Rue Perin, 5& Reims;63070;[4.110755, 44.119222];;FRE04EOAZS22121;FR*SOD*E*SORE*125*1*2*_;;;;;;;;;;;;;;;;;;;41936003578;;;;;;;;;4.337966;48.639513;;Dugny;; +;Prodici;;;;;;e-nergyze;FRS86PSOREB0881;FR*SOD*S*MB16*1*1*_*_;FONDETTES 1376 - Gustave Eiffel;;Rue Saint Martin, 51420 Cernay les Reims;63019;[6.157741, 49.154069];;FRE04EOAZS25511;FR*SOD*E*SORE*125*1*1*_;;;;;;;;;;;;;;;;;;;42076122670;;;;;;;;;7.142548;48.627291;;Montrouge;; +;Green Diffusion;;;;;;270 AGENCY;FRS86PSOREB0182;FR*SOD*S*MB16*75*1*_*_;Auzouer de Touraine - 53927 - Pl Général Leclerc;;A7, Aire de Montélimar Ouest, 26780 Allan;63026;[4.337966, 44.431026];;FRE04EOAZS25513;FR*SOD*E*SORE*124*1*2*_;;;;;;;;;;;;;;;;;;;25814182315503;;;;;;;;;2.444554;49.354737;;Villetaneuse;; +;SCI NOKI;;;;;;ALU GRANON;FRS86PSOREB0861;FR*SOD*S*MB16*74*1*_*_;SONEPAR CONNECT CAUDEBEC;;33 Ham. Colbert, 83470 Saint-Maximin-la-Sainte-Baume;63032;[7.142548, 43.658197];;FRE04EOAZS25612;FR*SOD*E*SORE*124*1*1*_;;;;;;;;;;;;;;;;;;;4803745127;;;;;;;;;0.995569;48.432041;;Ablon-sur-Seine;; +;CHARRIERE DISTRIBUTION;;;;;;LE TEMPS DES SECRETS;FRS86PSOREB0862;FR*SOD*S*MB16*73*1*_*_;CHATEAUNEUF-sur-Cher - Parking La Poste - 202094;;Rue de la Plaine, 37390 Mettray;63038;[2.444554, 48.980736];;FRE04EOAZS27022;FR*SOD*E*SORE*123*1*1*_;;;;;;;;;;;;;;;;;;;25262952106551;;;;;;;;;5.379129;48.793333;;Bry-sur-Marne;; +;ATELIERS PROVENCE LOISIRS;;;;;;METALLERIE PERRUT;FRS86PSOREB0622;FR*SOD*S*MB16*72*1*_*_;SAINT AVERTIN 1442;;Rue Manoel Pinto, 51 Cormontreuil;63178;[0.995569, 47.328019];;FRE04EOAZS26913;FR*SOD*E*SORE*123*1*2*_;;;;;;;;;;;;;;;;;;;2484507129960;;;;;;;;;1.143419;43.650761;;Orly;; +;Antilles Téléphone;;;;;;BBJ Mazères;FRS86PSOREB0352;FR*SOD*S*MB16*71*1*_*_;SONEPAR CONNECT AURILLAC;;2 Rue de ROME, 28500 Vernouillet;63009;[5.379129, 43.488465];;FRE04EOAZS26912;FR*SOD*E*SORE*122*1*2*_;;;;;;;;;;;;;;;;;;;032036516188;;;;;;;;;0.70095375;47.54256978;;Choisy-le-Roi;; +;CIE MQUAISE DE DISTRIBUTION COMADI SAS;;;;;;Leclerc Mimizan;FRS86PSOREB0561;FR*SOD*S*MB16*71*2*_*_;CGED PHOCEA;;19 Rue Pierre Avit Nicolas, 38150 Salaise-sur-Sanne;63010;[1.143419, 47.253068];;FRE04EOAZS26911;FR*SOD*E*SORE*122*1*1*_;;;;;;;;;;;;;;;;;;;042036000585;;;;;;;;;0.729746;48.457568;;Saint-Ouen-sur-Seine;; +;J2P HOTEL;;;;;;Leclerc Express Labouheyre;FRS86PSOREB0562;FR*SOD*S*MB16*32*1*_*_;SONEPAR CONNECT FOIX;;Autoroute A40, 74130 Bonneville;63066;[0.70095375, 47.47147261];;FRE04EOAZS27012;FR*SOD*E*SORE*121*1*1*_;;;;;;;;;;;;;;;;;;;032136518724;;;;;;;;;0.47534965;47.257237;;Sevran;; +;SEEN NETTOIEMENT URBAIN;;;;;;Centre Auto Leclerc Langon;FRS86PSOREB0901;FR*SOD*S*MB16*38*1*_*_;LE LIEGE 1268;;Rue des écoles, 41220 SAINT LAURENT NOUAN;63055;[0.729746, 44.395027];;FRE04EOAZS27011;FR*SOD*E*SORE*121*1*2*_;;;;;;;;;;;;;;;;;;;041636005546;;;;;;;;;2.573516;47.261202;;Villemomble;; +;NOREBAM;;;;;;Leclerc Biars;FRS86PSOREB0902;FR*SOD*S*MB16*37*1*_*_;CGED AGEN;;Rue de la Pierre, 41300 Theillay;63063;[0.47534965, 47.6156073];;FRE04EOAZS27021;FR*SOD*E*SORE*120*1*1*_;;;;;;;;;;;;;;;;;;;032136519580;;;;;;;;;0.916358;47.820037;;Stains;; +;Autodis;;;;;;Leclerc Mios;FRS86PSOREB0571;FR*SOD*S*MB16*36*1*_*_;Aire de la Plaine du Forez;;Rue des Poulies, 41200 ROMORANTIN LANTHENAY;63069;[2.573516, 48.639513];;FRE04EOAZS27013;FR*SOD*E*SORE*120*1*2*_;;;;;;;;;;;;;;;;;;;080907000598;;;;;;;;;6.136289;47.350406;;Villiers-sur-Marne;; +;Bio Outremer;;;;;;SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX;FRS86PSOREB0572;FR*SOD*S*MB16*35*1*_*_;Nogent-le-Rotrou - Place St Pol -128531;;Rue de Sabard, 41200 ROMORANTIN LANTHENAY;63054;[0.916358, 48.627291];;FRE04EOAZS27112;FR*SOD*E*SORE*119*1*1*_;;;;;;;;;;;;;;;;;;;031976172262;;;;;;;;;-4.717106;47.319767;;Vincennes;; +;SARL GHP;;;;;;TENTE;FRS86PSOREB0022;FR*SOD*S*MB16*34*1*_*_;LE FRESNE BORNE 1;;Place du Soleil d'Or, 41220 SAINT LAURENT NOUAN;63042;[6.136289, 49.354737];;FRE04EOAZS26813;FR*SOD*E*SORE*119*1*2*_;;;;;;;;;;;;;;;;;;;NFDGEDCBA858;;;;;;;;;2.545929;49.372476;;Villecresnes;; +;Mairie du Prêcheur;;;;;;Borne IRVE Riquewihr;FRS86PSOREB0021;FR*SOD*S*MB16*33*1*_*_;SONEPAR CONNECT CABESTANY;;Place Saint-Aignan, 41220 SAINT LAURENT NOUAN;63046;[-4.717106, 48.432041];;FRE04EOAZS27111;FR*SOD*E*SORE*118*1*2*_;;;;;;;;;;;;;;;;;;;021776657066;;;;;;;;;3.975747;48.764309;;Saint-Maur-des-Fossés;; +;New peleen;;;;;;Hôtel MACCHI;FRS86PSOREB1201;FR*SOD*S*MB16*31*1*_*_;CGED PARIS 18;;Rue du commandant Charcot, 28400 NOGENT-LE-ROTOU;63050;[2.545929, 48.793333];;FRE04EOAZS27213;FR*SOD*E*SORE*118*1*1*_;;;;;;;;;;;;;;;;;;;041736018808;;;;;;;;;0.9840703;49.632953;;La Queue-en-Brie;; +;Sodiva;;;;;;Hotel saint walfrid;FRS86PSOREB1202;FR*SOD*S*MB16*39*1*_*_;SONEPAR CONNECT LA ROCHELLE 2;;Avenue du Petit Thouars, 41100 VILLIERS SUR LOIR;63319;[3.975747, 43.650761];;FRE04EOAZS27212;FR*SOD*E*SORE*132*1*2*_;;;;;;;;;;;;;;;;;;;032136518316;;;;;;;;;2.170199;46.83186155;;Ormesson-sur-Marne;; +;Orange;;;;;;DACIA RONCQ;FRS86PSOREB1141;FR*SOD*S*MB16*30*1*_*_;PANORAMA 360 HOTEL & SPA 2;;Avenue de la braye, 41360 Savigny sur Braye;63352;[0.9840703, 47.54256978];;FRE04EOAZS27211;FR*SOD*E*SORE*133*1*1*_;;;;;;;;;;;;;;;;;;;041736018747;;;;;;;;;1.190249;50.943529;;Santeny;; +;Mr Bricolage Petit manoir;;;;;;IECharge France;FRS86PSOREB1142;FR*SOD*S*MB16*29*1*_*_;SONEPAR CONNECT ROUEN SUD;;GEOFFREY MARTEL, 41100 Vendome;63354;[2.170199, 48.457568];;FRE04EOAZS27313;FR*SOD*E*SORE*85*1*2*_;;;;;;;;;;;;;;;;;;;041536043094;;;;;;;;;1.190003;43.14541;;Saint-Maurice;; +;SIMAR;;;;;;Petibonum;FRS86PSOREB0551;FR*SOD*S*MB16*28*1*_*_;Rousset;;Rue de l'Abreuvoir, 41160 LA VILLE AUX CLERCS;63370;[1.190249, 47.257237];;FRE04EOAZS27311;FR*SOD*E*SORE*134*1*2*_;;;;;;;;;;;;;;;;;;;032036516187;;;;;;;;;1.681095;48.970373;;Montreuil;; +;H alu concept;;;;;;DIGICEL ANTILLES FRANCAISES GUYANE;FRS86PSOREB0552;FR*SOD*S*MB16*27*1*_*_;SONEPAR CONNECT CHAUMONT;;Square des Anciens d'Indochine, 41100 Vendome;63381;[1.190003, 47.261202];;FRE04EOAZS27312;FR*SOD*E*SORE*155*1*1*_;;;;;;;;;;;;;;;;;;;022064297327;;;;;;;;;0.844593;48.579345;;Neuilly-Plaisance;; +;SCI Lounapiou;;;;;;Colibri;FRS86PSOREB0341;FR*SOD*S*MB16*26*1*_*_;CGED ALES;;Rue des Bleuets, 41360 Epuisay;63470;[1.681095, 47.820037];;FRE04EOAZS26811;FR*SOD*E*SORE*154*1*1*_;;;;;;;;;;;;;;;;;;;041736019530;;;;;;;;;0.995564;48.569637;;Épinay-sur-Seine;; +;Bastide beaudinard & tours (BBT);;;;;;Socanparc - Pointe Simon;FRS86PSOREB0342;FR*SOD*S*MB16*25*1*_*_;CGED METZ;;Route du Dr Faton, 41100 Vendome;63342;[0.844593, 47.350406];;FRE04EOAZS27113;FR*SOD*E*SORE*153*1*2*_;;;;;;;;;;;;;;;;;;;021876722130;;;;;;;;;3.366567;48.547241;;Gournay-sur-Marne;; +;PEPINIERE GENRE;;;;;;Socanparc - Lafcadio;FRS86PSOREB1032;FR*SOD*S*MB16*54*1*_*_;JANUS RUOMS BORNE 1;;Le bois Allis, 28240 Vaupillon;63322;[0.995564, 47.319767];;FRE04EOAZS26812;FR*SOD*E*SORE*153*1*1*_;;;;;;;;;;;;;;;;;;;243 473 2256 6042;;;;;;;;;5.586529;44.311724;;L'Île-Saint-Denis;; +;Le Capelan;;;;;;Le chill;FRS86PSOREB1031;FR*SOD*S*MB16*40*1*_*_;CGED CAGNES;;Le Golf, 18320 ST HILAIRE DE GONDILLY;63338;[3.366567, 49.372476];;FRE04EOAZS25813;FR*SOD*E*SORE*152*1*2*_;;;;;;;;;;;;;;;;;;;25861505001754;;;;;;;;;-1.589069;48.560768;;Romainville;; +;HYUNDAI BAYEUX;;;;;;Koud'pouss;FRS86PSOREB0171;FR*SOD*S*MB16*47*1*_*_;SONEPAR CONNECT GONESSE;;A64 - Aire de Lacq / Audéjos Nord, 64170 Lacq;63345;[5.586529, 48.764309];;FRE04EOAZS26711;FR*SOD*E*SORE*152*1*1*_;;;;;;;;;;;;;;;;;;;25220405175590;;;;;;;;;0.96157027;48.417688;;Neuilly-sur-Marne;; +;HYUNDAI LISIEUX;;;;;;REVE;FRS86PSOREB0172;FR*SOD*S*MB16*53*1*_*_;BLERE 1387 - Camping;;Rue de la Grosse Pierre, 68520 Guewenheim;63415;[-1.589069, 49.632953];;FRE04EOAZS25613;FR*SOD*E*SORE*151*1*1*_;;;;;;;;;;;;;;;;;;;25236468852335;;;;;;;;;1.836032;47.426765;;Pierrefitte-sur-Seine;; +;HAPOGYS;;;;;;TECHOFFICE;FRS86PSOREB0531;FR*SOD*S*MB16*52*1*_*_;CGED AIX;;Rue de la Brosse, 18570 Le Subdray;63457;[0.96157027, 46.83186155];;FRE04EOAZS25611;FR*SOD*E*SORE*150*1*2*_;;;;;;;;;;;;;;;;;;;02153000281003;;;;;;;;;6.040193;47.388512;;Thyez;; +;CAP EMPLOI;;;;;;HOTEL DU PORGE;FRS86PSOREB0532;FR*SOD*S*MB16*51*1*_*_;CERE LA RONDE 1371 - Château;;Rue de l'église, 18190 Uzay-le-Venon;63439;[1.836032, 50.943529];;FRE04EOAZS25711;FR*SOD*E*SORE*150*1*1*_;;;;;;;;;;;;;;;;;;;11111111111111;;;;;;;;;1.85791;47.432981;;Drancy;; +;Fasthôtel Montpellier Ouest;;;;;;McDonald's Basse terre;FRS86PSOREB0282;FR*SOD*S*MB16*50*1*_*_;CHANCEAUX SUR CHOISILLE 1373;;Place de l'Eglise, 18220 Rians;63448;[6.040193, 43.14541];;FRE04EOAZS25712;FR*SOD*E*SORE*149*1*1*_;;;;;;;;;;;;;;;;;;;02408393583960;;;;;;;;;1.244193;49.167909;;Garches;; +;Fasthôtel Compiègne;;;;;;la halle des producteurs;FRS86PSOREB0362;FR*SOD*S*MB16*49*1*_*_;SONEPAR CONNECT VILLENEUVE-LOT;;Rue Jean Moulin, 28200 Saint Denis Lanneray;63458;[1.85791, 48.970373];;FRE04EOAZS25812;FR*SOD*E*SORE*148*1*1*_;;;;;;;;;;;;;;;;;;;50006022682831;;;;;;;;;1.024159;47.322482;;Versailles;; +;EIFFAGE GENIE CIVIL - ROLAND;;;;;;Borne de recharge Green Diffusion;FRS86PSOREB0361;FR*SOD*S*MB16*48*1*_*_;SAINT CHRISTOPHE SUR LE NAIS 1383;;Le Far West, 18130 Raymond;63426;[1.244193, 48.579345];;FRE04EOAZS25811;FR*SOD*E*SORE*147*1*1*_;;;;;;;;;;;;;;;;;;;50018487252720;;;;;;;;;1.583614;48.777083;;Joinville-le-Pont;; +;Hôtel Kyriad Angers Beaucouzé;;;;;;Borne de recharge SCI noki;FRS86PSOREB0842;FR*SOD*S*MB16*43*1*_*_;IRVE CAGPS ECO PEPINIERE 3;;Square de la Mairie, 18320 Jouet-sur-l'Aubois;63430;[1.024159, 48.569637];;FRE04EOAZS25713;FR*SOD*E*SORE*146*1*1*_;;;;;;;;;;;;;;;;;;;30000141294125;;;;;;;;;2.557893;44.394767;;Clamart;; +;SOC EN NOM COLLECTIF LA BOURSE;;;;;;CHARRIERE DISTRIBUTION Meyrueil;FRS86PSOREB0351;FR*SOD*S*MB16*41*1*_*_;LAMBLORE - Le Plessis -176251;;Aire du Jura A39, 39140 Arlay;63247;[1.583614, 48.547241];;FRE04EOAZS25911;FR*SOD*E*SORE*145*2*2*_;;;;;;;;;;;;;;;;;;;30001941171487;;;;;;;;;1.03217;48.648549;;Morières-lès-Avignon;; +;Bananes vertes;;;;;;ATELIERS PROVENCE LOISIRS;FRS86PSOREB0621;FR*SOD*S*MB16*46*1*_*_;SONEPAR CONNECT THIONVILLE;;Rue de la Bretonnerie, 28310 JANVILLE-EN-BEAUCE;63236;[2.557893, 44.311724];;FRE04EOAZS25913;FR*SOD*E*SORE*145*2*1*_;;;;;;;;;;;;;;;;;;;30001912653290;;;;;;;;;1.465216;47.314136;;Sainte-Maxime;; +;SAS KEMO;;;;;;Antilles Téléphone;FRS86PSOREB0441;FR*SOD*S*MB16*42*1*_*_;SUPERU PLOUARZE BORNE 2;;Place de la Libération, 41800 Troo;63241;[1.03217, 48.560768];;FRE04EOAZS25912;FR*SOD*E*SORE*144*1*1*_;;;;;;;;;;;;;;;;;;;19197973926104;;;;;;;;;0.987015;47.330502;;La Croix-Valmer;; +;Argos Guyane;;;;;;BUT;FRS86PSOREB0972;FR*SOD*S*MB16*44*1*_*_;CGED CHENNEVIÈRES;;AVENUE JEAN MOULIN, 41100 Vendome;63254;[1.465216, 48.417688];;FRE04EOAZS26611;FR*SOD*E*SORE*143*1*2*_;;;;;;;;;;;;;;;;;;;01132850940337;;;;;;;;;0.718402;47.257093;;Sauveterre;; +;Hotel Le Moulin;;;;;;Hôtel B&B;FRS86PSOREB0442;FR*SOD*S*MB16*45*1*_*_;SONEPAR CONNECT ST-AUNES;;Place du 11 Novembre, 41300 Salbris;63255;[0.987015, 47.426765];;FRE04EOAZS26613;FR*SOD*E*SORE*143*1*1*_;;;;;;;;;;;;;;;;;;;30000131163945;;;;;;;;;1.445571;47.268447;;Le Plan-de-la-Tour;; +;ELEC eCONNECT;;;;;;SEEN;FRS86PSOREB0491;FR*SOD*S*MB64*31*1*_*_;SUPER CHARGEUR 1414 - CHÂTEAU RENAULT A10;;Rue des Fossés, 41300 PIERREFITTE SUR SAULDRE;63263;[0.718402, 47.388512];;FRE04EOAZS26612;FR*SOD*E*SORE*142*1*1*_;;;;;;;;;;;;;;;;;;;24350072318725;;;;;;;;;-0.273798;47.365592;;Sivergues;; +;SCI LES PAPILLONS;;;;;;Norauto;FRS86PSOREB0492;FR*SOD*S*MB64*27*1*_*_;SONEPAR CONNECT ETAMPES;;Rue du four banal, 28250 Senonches;63193;[1.445571, 47.432981];;FRE04EOAZS26713;FR*SOD*E*SORE*141*1*1*_;;;;;;;;;;;;;;;;;;;24593053483042;;;;;;;;;1.027419;47.500549;;Cogolin;; +;Golf de La Wantzenau;;;;;;GIE CENTREAUTODIS;FRS86PSOREB0382;FR*SOD*S*MB64*30*1*_*_;CERE LA RONDE1369 - Salle Socioculturel;;Rue de Vendome, 41330 Fosse;63192;[-0.273798, 49.167909];;FRE04EOAZS26712;FR*SOD*E*SORE*141*1*2*_;;;;;;;;;;;;;;;;;;;19554992753358;;;;;;;;;2.589469;47.911214;;Cavalaire-sur-Mer;; +;SAS LA VILLARDIERE;;;;;;Diet Vert;FRS86PSOREB0381;FR*SOD*S*MB64*29*1*_*_;CERE LA RONDE 1367 - Alfred de Vigny;;Rue de la ferte st Cyr, 41220 Dhuizon;63308;[1.027419, 47.322482];;FRS40EMB405712;FR*SOD*E*SORE*140*1*2*_;;;;;;;;;;;;;;;;;;;25197829077515;;;;;;;;;1.766898;47.902339;;Saint-Tropez;; +;PROFINORD;;;;;;GHP;FRS86PSOREB0811;FR*SOD*S*MB64*28*1*_*_;BORNE U RAPIDE;;Champs de Ligny, 41350 HUISSEAU SUR COSSON;63195;[2.589469, 48.777083];;FRS40EMB405613;FR*SOD*E*SORE*140*1*1*_;;;;;;;;;;;;;;;;;;;19698552757281;;;;;;;;;4.959916;47.512561;;Lourmarin;; +;SAS Sodiam, Intermarché Amiens;;;;;;Mairie du Prêcheur;FRS86PSOREB0812;FR*SOD*S*MB64*25*1*_*_;AZAY SUR CHER 1362;;Chemin du pont Félicie, 37420 Rigny Ussé;63231;[1.766898, 44.394767];;FRS40EMB405611;FR*SOD*E*SORE*139*1*1*_;;;;;;;;;;;;;;;;;;;30000112110300;;;;;;;;;1.084551;47.573036;;Saint-Zacharie;; +;LE MOULIN DE LABOIRIE;;;;;;New Peleen;FRS86PSOREB0152;FR*SOD*S*MB64*26*1*_*_;BLERE 1363 - Chardonnerets;;Rue basse, 37340 Avrille les ponceaux;63305;[4.959916, 48.648549];;FRS40EMB405711;FR*SOD*E*SORE*138*1*1*_;;;;;;;;;;;;;;;;;;;01367293661094;;;;;;;;;0.91895;47.547449;;Ramatuelle;; +;Jo Froid;;;;;;Sodiva Citroên;FRS86PSOREB0111;FR*SOD*S*MB64*22*1*_*_;SONEPAR CONNECT SOISSONS;;Place de la Mairie, 28340 LA FERTE VIDAME;63307;[1.084551, 47.314136];;FRS40EMB405714;FR*SOD*E*SORE*137*1*1*_;;;;;;;;;;;;;;;;;;;05589146075644;;;;;;;;;0.840599;47.52473;;Jonquerettes;; +;Hôtel la Chaumière;;;;;;Orange OGC;FRS86PSOREB0112;FR*SOD*S*MB64*24*1*_*_;Comercy rue de la gare 134164;;Le Closeau, 56800 Ploërmel;63272;[0.91895, 47.330502];;FRS40EMB405812;FR*SOD*E*SORE*136*1*1*_;;;;;;;;;;;;;;;;;;;25857597577980;;;;;;;;;1.865448;48.666908;;Les Angles;; +;Hôtel La Marmotte;;;;;;Orange Pointe de Grives;FRS86PSOREB0212;FR*SOD*S*MB64*23*1*_*_;SONEPAR CONNECT CHERBOURG;;18 Rte des Tennis Lieu dit Mocali, 20200 Santa-Maria-di-Lota;63269;[0.840599, 47.257093];;FRS40EMB405713;FR*SOD*E*SORE*135*1*1*_;;;;;;;;;;;;;;;;;;;25870332806316;;;;;;;;;1.797433;43.11634;;Saint-Marc-Jaumegarde;; +;Hôpital privé Saint Adrien;;;;;;Mr Bricolage Petit Manoir;FRS86PSOREB0211;FR*SOD*S*MB64*32*1*_*_;BOSSAY SUR CLAISE 1365;;Rue du Général Alexandre de Beauharnais, 41210 LA FERTE BEAUHARNAIS;63291;[1.865448, 47.268447];;FRS40EMB405814;FR*SOD*E*SORE*134*1*1*_;;;;;;;;;;;;;;;;;;;1234561542351;;;;;;;;;1.681046;47.045402;;Puyvert;; +;Agence GreenTechnologie;;;;;;Simar les Cycas;FRS86PSOREB0201;FR*SOD*S*MB64*39*1*_*_;CGED CALAIS _;;Place Bretonneau, 41400 SAINT GEORGES SUR CHER;63270;[1.797433, 47.365592];;FRS40EMB405813;FR*SOD*E*SORE*117*1*1*_;;;;;;;;;;;;;;;;;;;01235426514523;;;;;;;;;1.526321;47.592044;;Le Bouscat;; +;Maire de Remire-Montjoly;;;;;;BEBE 9 Les Abymes;FRS86PSOREB0202;FR*SOD*S*MB64*33*1*_*_;CGED TOULON;;Bd Philippe Auguste, 41400 MONTRICHARD VAL DE CHER;63284;[1.681046, 47.500549];;FRS40EMB405811;FR*SOD*E*SORE*117*1*2*_;;;;;;;;;;;;;;;;;;;042598765894568;;;;;;;;;1.233368;47.092181;;Vedène;; +;Sud Hotel;;;;;;ETS POMMEZ;FRS86PSOREB0331;FR*SOD*S*MB64*38*1*_*_;SONEPAR CONNECT AUBERGENVILLE;;Rue de la Salle des Fêtes, 41230 SOING EN SOLOGNE;63108;[1.526321, 47.911214];;FRS40EMB405612;FR*SOD*E*SORE*116*1*2*_;;;;;;;;;;;;;;;;;;;02589654895234;;;;;;;;;1.455906;47.649058;;Rayol-Canadel-sur-Mer;; +;Garage lefebvre;;;;;;H alu concept;FRS86PSOREB0332;FR*SOD*S*MB64*42*1*_*_;CHATEAUNEUF EN THYMERAIS - Jean Moulin - 134302;;Rue de la Gare, 41700 Contres;28214;[1.233368, 47.902339];;FRS40EMB405614;FR*SOD*E*SORE*116*1*1*_;;;;;;;;;;;;;;;;;;;30001990766736;;;;;;;;;1.355931;46.849213;;Les Portes-en-Ré;; +;T m g;;;;;;SCI Lounapiou;FRS86PSOREB0652;FR*SOD*S*MB64*21*1*_*_;SENONCHES - Rue de la ferté Vidame - 134317;;10 Rue des Frères Louis et Emile Bertrand, 69200 Vénissieux;39189;[1.455906, 47.512561];;FRS40EMB405313;FR*SOD*E*SORE*99*1*1*_;;;;;;;;;;;;;;;;;;;031436250862;;;;;;;;;0.547499;48.675894;;Saint-Léger;; +;Pilotage Maritime;;;;;;DLM VITROLLES;FRS86PSOREB0651;FR*SOD*S*MB64*41*1*_*_;ST PIAT - Place Vauvillers - 130523;;Promenade. Du Mail, 41 Mondoubleau;59088;[1.355931, 47.573036];;FRS40EMB405514;FR*SOD*E*SORE*99*1*2*_;;;;;;;;;;;;;;;;;;;30001910126550;;;;;;;;;1.388022;47.277408;;Les Monts-Verts;; +;SOCIETE VITROLLAISE D'ENTREPOSAGE ET DE MANUTENTION;;;;;;Bastide beaudinard;FRS86PSOREB0191;FR*SOD*S*MB64*40*1*_*_;AJM ENERGIE BUROCLUB;;Rue Aimable Quenioux, 41120 Rue Aimable Quenioux;67334;[0.547499, 47.547449];;FRS40EMB405511;FR*SOD*E*SORE*98*1*2*_;;;;;;;;;;;;;;;;;;;030907208115;;;;;;;;;6.17863;47.81808;;Velleron;; +;STYLE AND DESIGN;;;;;;VEGETALIS;FRS86PSOREB0192;FR*SOD*S*MB64*37*1*_*_;SENONCHES - Rue de Verdun - 134278;;Place Clémenceau, 41800 MONTOIRE SUR LE LOIR;59426;[1.388022, 47.52473];;FRS40EMB405512;FR*SOD*E*SORE*98*1*1*_;;;;;;;;;;;;;;;;;;;40774489;;;;;;;;;5.845654;43.914529;;Chaumont-sur-Tharonne;; +;Mazda - Saint-Etienne;;;;;;Le jardin des Cevennes;FRS86PSOREB0852;FR*SOD*S*MB64*36*1*_*_;LUISANT - Avenue de la république - 137351;;Le Fonds de Bourdel, 76340 Nesle-Normandeuse;07077;[6.17863, 48.666908];;FRS40EMB405513;FR*SOD*E*SORE*97*1*1*_;;;;;;;;;;;;;;;;;;;19723878434307;;;;;;;;;0.9696;48.968367;;Donnenheim;; +;SADE TELECOM;;;;;;HOTEL B&B;FRS86PSOREB0851;FR*SOD*S*MB64*35*1*_*_;POCE SUR CISSE 3105 - Route des Industries;;Rue du Cèdre, 41500 Maves;59197;[5.845654, 43.11634];;FRS40EMB405412;FR*SOD*E*SORE*97*1*2*_;;;;;;;;;;;;;;;;;;;30001210897191;;;;;;;;;-2.4014;48.968225;;Saint-Jeoire-Prieuré;; +;CASINO BATELIERE PLAZZA;;;;;;HAPOGYS;FRS86PSOREB0912;FR*SOD*S*MB64*34*1*_*_;ST PIERRE DES CORPS 3107 - Place Maurice Thorez;;Place de la Poste, 41230 MUR DE SOLOGNE;57106;[0.9696, 47.045402];;FRS40EMB405413;FR*SOD*E*SORE*96*1*1*_;;;;;;;;;;;;;;;;;;;RTPL67567/E1/45346678;;;;;;;;;1.21797;46.963507;;La Môle;; +;COMMUNE DE SAINT ESPRIT;;;;;;SCI PARAMEDICA;FRS86PSOREB0121;FR*SOD*S*MB64*6*1*_*_;CONTROIS EN SOLOGNE 206464 - Rue des entrepreneurs;;Place Gaspard Imbert, 41350 Vineuil;37226;[-2.4014, 47.592044];;FRS40EMB405414;FR*SOD*E*SORE*96*1*2*_;;;;;;;;;;;;;;;;;;;30001990491576;;;;;;;;;0.5283;47.063082;;Fontenay-aux-Roses;; +;MARCHE RIVIERE PILOTE;;;;;;DLM DARDILLY;FRS86PSOREB0982;FR*SOD*S*MB64*4*1*_*_;Giberville Nord;;Route de Chartres, 28160 Brou;59207;[1.21797, 47.092181];;FRS40EMB405411;FR*SOD*E*SORE*95*1*2*_;;;;;;;;;;;;;;;;;;;30002530321730;;;;;;;;;-1.859204;47.280285;;La Guérinière;; +;972 - SAINT JOSEPH;;;;;;DLM LYON EST;FRS86PSOREB0981;FR*SOD*S*MB64*9*1*_*_;CIVRAY DE TOURAINE 1836 - Z.A. Bois Pataud;;2217 DN7, 83460 Les Arcs;62107;[0.5283, 47.649058];;FRS40EMB405314;FR*SOD*E*SORE*95*1*1*_;;;;;;;;;;;;;;;;;;;23203183719011;;;;;;;;;2.389685;47.112003;;La Garnache;; +;BMW ST LO - ENVERGURE AUTO;;;;;;DLM LYON;FRS86PSOREB0971;FR*SOD*S*MB64*8*1*_*_;WAAT 4 CHENES 6;;75 Rue Sainte-Marie, 50550 Quettehou;22143;[-1.859204, 46.849213];;FRS40EMB405311;FR*SOD*E*SORE*94*1*2*_;;;;;;;;;;;;;;;;;;;041629010840;;;;;;;;;0.626942;47.676153;;Essarts en Bocage;; +;HYUNDAI LABEGE - AUTOMOBILES DELAHAYE;;;;;;DLM VILLENEUVE D'ASCQ;FRS86PSOREB0911;FR*SOD*S*MB64*7*1*_*_;JULSOL BORNE 1;;186 Bd Clemenceau, 76600 Le Havre;59359;[2.389685, 48.675894];;FRS40EMB405913;FR*SOD*E*SORE*94*1*1*_;;;;;;;;;;;;;;;;;;;031336138939;;;;;;;;;1.075448;47.487114;;Dompierre-sur-Yon;; +;FIRSTOP - Benoit Pneumatiques;;;;;;DLM SECLIN;FRS86PSOREB0462;FR*SOD*S*MB64*5*1*_*_;CGED CGED ST DIZIER;;49 rue Georges Mandel, 42300 Roanne;42223;[0.626942, 47.277408];;FRS40EMB405912;FR*SOD*E*SORE*20*1*1*_;;;;;;;;;;;;;;;;;;;041736012572;;;;;;;;;-0.445425;48.553416;;Coëx;; +;BMW SAINT QUENTIN;;;;;;DLM MONTPELLIER;FRS86PSOREB0122;FR*SOD*S*MB64*10*1*_*_;FRANCUEIL 2770 - Parking rue Charles de Gaulles;;Rue de Brou, 28160 Dangeau;42095;[1.075448, 47.81808];;FRS40EMB406413;FR*SOD*E*SORE*93*1*1*_;;;;;;;;;;;;;;;;;;;031964294619;;;;;;;;;2.462654;47.38737;;Luçon;; +;CARELEC;;;;;;CHARRIERE DISTRIBUTION;FRS86PSOREB1342;FR*SOD*S*MB64*3*1*_*_;ATHEE SUR CHER 2772 - ZA de la Ferriere;;10 Route de Plaisance, 72300 Sablé-sur-Sarthe;42044;[-0.445425, 43.914529];;FRS40EMB405911;FR*SOD*E*SORE*92*1*2*_;;;;;;;;;;;;;;;;;;;WGACHIDAE129;;;;;;;;;2.461937;47.41472228;;Mareuil-sur-Lay-Dissais;; +;SCI MAUFFREY IMMOBILIER;;;;;;DLM ANNECY;FRS86PSOREB0731;FR*SOD*S*MB64*3*3*_*_;TAUXIGNY 2782 - ZA Node Park;;Impasse Adélaïde Riche, 37190 AZAY LE RIDEAU;42207;[2.462654, 48.968367];;FRS40EMB406214;FR*SOD*E*SORE*92*1*1*_;;;;;;;;;;;;;;;;;;;RTPL67524/E1/59254861;;;;;;;;;0.57681;48.093584;;Les Achards;; +;F3C ENERGY;;;;;;DLM MARSEILLE;FRS86PSOREB1291;FR*SOD*S*MB64*2*1*_*_;MENNETOU SUR CHER 2924 - Place du 11 Novembre;;39 Rte de Poitiers, 86320 Mazerolles;42275;[2.461937, 48.968225];;FRS40EMB406511;FR*SOD*E*SORE*91*1*1*_;;;;;;;;;;;;;;;;;;;01456005770439;;;;;;;;;0.73106;47.017299;;Mortagne-sur-Sèvre;; +;The Corner;;;;;;DLM CHAMBERY;FRS86PSOREB1292;FR*SOD*S*MB64*1*1*_*_;VILLEHERVIERS 2926 - Rue de la Gare;;30 chemin du grand bas pays, 50500 Carentan les marais;42005;[0.57681, 46.963507];;FRS40EMB406514;FR*SOD*E*SORE*91*1*2*_;;;;;;;;;;;;;;;;;;;01508682987949;;;;;;;;;1.114696;49.20068;;Montaigu-Vendée;; +;société La Clérine;;;;;;DLM WAMBRECHIES;FRS86PSOREB0241;FR*SOD*S*MB64*43*1*_*_;VERNOU EN SOLOGNE 2928 - Place de l'Eglise;;Place de la Gare, 18100 Vierzon;42237;[0.73106, 47.063082];;FRS40EMB406412;FR*SOD*E*SORE*90*1*1*_;;;;;;;;;;;;;;;;;;;031636422389;;;;;;;;;0.27542;47.42307;;Jard-sur-Mer;; +;GABMAG17;;;;;;ESCAPE MIND;FRS86PSOREB0242;FR*SOD*S*MB64*20*1*_*_;OUZOUER LE MARCHE 2932 - Place du 8 Mai;;Rue Eugène Pottier, 18100 Vierzon;42330;[1.114696, 47.280285];;FRS40EMB406411;FR*SOD*E*SORE*90*1*2*_;;;;;;;;;;;;;;;;;;;5.01E+13;;;;;;;;;1.446263;48.645181;;L'Île-d'Yeu;; +;Les jardins maraichers des bords de rance;;;;;;CAP EMPLOI;FRS86PSOREB1331;FR*SOD*S*MB64*16*1*_*_;MOREE 2935 - Place du 8 Mai;;Rue de la Gaucherie, 18100 Vierzon;42140;[0.27542, 47.112003];;FRS40EMB406414;FR*SOD*E*SORE*89*1*2*_;;;;;;;;;;;;;;;;;;;5.00E+13;;;;;;;;;0.94856;46.913225;;Bouin;; +;LA CONCIERGERIE D'ISA.;;;;;;AUTORECHARGE SAS;FRS86PSOREB1332;FR*SOD*S*MB64*19*1*_*_;COUR CHEVERNY 2937 - Avenue Anciens combattants;;rue Louis Courroy, 88360 Rupt sur Moselle;17028;[1.446263, 47.676153];;FRS40EMB405212;FR*SOD*E*SORE*89*1*1*_;;;;;;;;;;;;;;;;;;;5.0081E+13;;;;;;;;;-1.730994;47.332938;;Beauvoir-sur-Mer;; +;EREMJI;;;;;;LOGIS HOTEL LYON EST;FRS86PSOREB1112;FR*SOD*S*MB64*18*1*_*_;SAINT GERVAIS LA FORET 2945 - Route de Chambord;;A4, Aire de Gueux, 51390 Vrigny;74118;[0.94856, 47.487114];;FRS40EMB406312;FR*SOD*E*SORE*88*1*1*_;;;;;;;;;;;;;;;;;;;5.00665E+13;;;;;;;;;0.77246;47.39714715;;Bazoges-en-Pareds;; +;Dropnplug;;;;;;Fitness park Jarry;FRS86PSOREB1111;FR*SOD*S*MB64*17*1*_*_;NEUILLE PONT PIERRE 2947 - Place de la mairie;;500 Fray Redon, 83136 Rocbaron;62898;[-1.730994, 48.553416];;FRS40EMB406314;FR*SOD*E*SORE*88*1*2*_;;;;;;;;;;;;;;;;;;;5.00954E+13;;;;;;;;;1.02235481;47.3788355;;La Barre-de-Monts;; +;SARL NIPHIS;;;;;;STATION LOUIS PRADEL;FRS86PSOREB1172;FR*SOD*S*MB64*15*1*_*_;CELLETTES 2958 - Rue de l'Angevinière;;Place Alfred Brouette, 51000 Reims;94074;[0.77246, 47.38737];;FRS40EMB406311;FR*SOD*E*SORE*87*1*2*_;;;;;;;;;;;;;;;;;;;5.00737E+13;;;;;;;;;-1.4275;47.422511;;Barbâtre;; +;Daltoner Avranches;;;;;;Argos;FRS86PSOREB1171;FR*SOD*S*MB64*11*1*_*_;VANDOEUVRE - PISCINE MICHEL BERTRAND - 187014;;Place de la Matrassiére, 28160 Brou;73179;[1.02235481, 47.41472228];;FRS40EMB406313;FR*SOD*E*SORE*87*1*1*_;;;;;;;;;;;;;;;;;;;5.00216E+13;;;;;;;;;0.323531;46.198169;;Angles;; +;DIDIER CHARTON-VACHET;;;;;;Hotel Le Moulin;FRS86PSOREB1221;FR*SOD*S*MB64*14*1*_*_;SONEPAR SIX-FOURS;;Place du docteur Bouclet, 28630 Sours;76728;[-1.4275, 48.093584];;FRS40EMB406211;FR*SOD*E*SORE*86*1*2*_;;;;;;;;;;;;;;;;;;;041536027453;;;;;;;;;-0.396948;47.59588842;;Aizenay;; +;SAS SUMATYR CENTRE LECLERC ST VINCENT DE TYROSSE;;;;;;ELEC eCONNECT;FRS86PSOREB1222;FR*SOD*S*MB64*13*1*_*_;SAINT SENOCH 3571 - Rue Charles de Gaulle;;Rue du Saussais, 51500 Taissy;77132;[0.323531, 47.017299];;FRS40EMB405914;FR*SOD*E*SORE*86*1*1*_;;;;;;;;;;;;;;;;;;;031876053262;;;;;;;;;0.66912;48.304113;;Bournezeau;; +;OFFICE DE TOURISME PORT DE GRUISSAN;;;;;;STATION PETITE GROSNE;FRS86PSOREB0942;FR*SOD*S*MB64*12*1*_*_;BRANFERE BORNE 2;;Rue Nicolas Brulart, 51500 Sillery;42059;[-0.396948, 49.20068];;FRS40EMB406212;FR*SOD*E*SORE*85*1*1*_;;;;;;;;;;;;;;;;;;;022076080740;;;;;;;;;6.1842;46.881979;;La Châtaigneraie;; +;AAM TRANSPORT DRIVEONE;;;;;;Golf de La Wantzenau;FRS86PSOREB0941;FR*SOD*S*MB64*44*1*_*_;LOCHE SUR INDROIS 3573 - Place du Mail;;Place du 11 novembre, 37110 DAME MARIE LES BOIS;35021;[0.66912, 47.42307];;FRS40EMB406213;FR*SOD*E*SORE*100*1*1*_;;;;;;;;;;;;;;;;;;;041536027435;;;;;;;;;0.985279;50.738909;;Chantonnay;; +;Hôtel l'Alivi;;;;;;STATION THEODORE BRAUN;FRS86PSOREB1322;FR*SOD*S*MB64*70*1*_*_;VILLEBOURG 3578 - Place de la mairie;;RD 54, 51240 Pogny;03107;[6.1842, 48.645181];;FRS40EMB406111;FR*SOD*E*SORE*100*1*2*_;;;;;;;;;;;;;;;;;;;30000450488206;;;;;;;;;1.046251;47.585916;;La Chaize-le-Vicomte;; +;REVI INTERMARCHE;;;;;;JORIS IDE;FRS86PSOREB1321;FR*SOD*S*MB64*74*1*_*_;SONEPAR CHALLANS;;Rue des Fontaines, 28100 Dreux;42094;[0.985279, 46.913225];;FRS40EMB406112;FR*SOD*E*SORE*101*1*1*_;;;;;;;;;;;;;;;;;;;23234732142507;;;;;;;;;0.80232797;48.229805;;Chaillé-les-Marais;; +;AUTO ARES;;;;;;ZEbonrne;FRS86PSOREB0291;FR*SOD*S*MB64*73*1*_*_;SONEPAR VIRY-CHATILLON;;A85, 37140 La Chapelle-sur-Loire;43137;[1.046251, 47.332938];;FRS40EMB406114;FR*SOD*E*SORE*109*1*1*_;;;;;;;;;;;;;;;;;;;30002320504841;;;;;;;;;0.81891078;48.44961266;;Bretignolles-sur-Mer;; +;SARL RUITER;;;;;;MOULIN DE LABOIRIE;FRS86PSOREB0292;FR*SOD*S*MB64*72*1*_*_;MONTS 3569 - Place de la Fontaine;;Rue du 19 Mars 1962, 18570 Trouy;59343;[0.80232797, 47.39714715];;FRS40EMB406113;FR*SOD*E*SORE*115*1*1*_;;;;;;;;;;;;;;;;;;;30001971432070;;;;;;;;;0.968669;48.095883;;Sainte-Gemme-la-Plaine;; +;LE BISTRO D'HUGO;;;;;;Jo Froid;FRS86PSOREB0272;FR*SOD*S*MB64*71*1*_*_;SAINT OUEN 3717 - Allée du Parc de Bel Air;;Place du Pâtis, 28800 Sancheville;44534;[0.81891078, 47.3788355];;FRS40EMB406012;FR*SOD*E*SORE*115*1*2*_;;;;;;;;;;;;;;;;;;;50021361506267;;;;;;;;;-1.357446;48.5392;;Saint-Fulgent;; +;GAZ DE BORDEAUX;;;;;;Hôtel La Chaumière;FRS86PSOREB0271;FR*SOD*S*MB64*75*1*_*_;CGED MONT-DE-MARSAN;;Place du Champ de Foire, 18600 Sancoins;42149;[0.968669, 47.422511];;FRS40EMB406013;FR*SOD*E*SORE*114*1*2*_;;;;;;;;;;;;;;;;;;;50077510729407;;;;;;;;;0.91261509;48.447741;;Montréverd;; +;Mickael Auto;;;;;;Hôtel La Marmotte;FRS86PSOREB0261;FR*SOD*S*MB64*69*1*_*_;MANUTAN 19;;Rempart des Abreuvoirs, 18300 Sancerre;50647;[-1.357446, 46.198169];;FRS40EMB406014;FR*SOD*E*SORE*114*1*1*_;;;;;;;;;;;;;;;;;;;50052909521469;;;;;;;;;6.150316;47.46819359;;Les Sables-d'Olonne;; +;SCI VERDIERE;;;;;;Hôpital privé Saint Adrien;FRS86PSOREB0262;FR*SOD*S*MB64*68*1*_*_;MANUTAN 9;;Rue de la République , 28150 Ouarville;29236;[0.91261509, 47.59588842];;FRS40EMB406011;FR*SOD*E*SORE*113*1*1*_;;;;;;;;;;;;;;;;;;;50071722683490;;;;;;;;;-1.023238;47.16950518;;Saint-Gilles-Croix-de-Vie;; +;HEXAOM;;;;;;Agence 973;FRS86PSOREB1181;FR*SOD*S*MB64*67*1*_*_;SELIGNY 3557 - Place Drapeau Caillault;;30 rue de Lorraine, 88560 Saint Maurice sur Moselle;43268;[6.150316, 48.304113];;FRS40EMB405312;FR*SOD*E*SORE*113*1*2*_;;;;;;;;;;;;;;;;;;;50033951500509;;;;;;;;;2.736871;47.421157;;Sainte-Hermine;; +;SARL VAHE;;;;;;Maire de Remire-Montjoly;FRS86PSOREB1182;FR*SOD*S*MB64*66*1*_*_;BOURNAN 3559 - Rue Principale;;Place de la Mairie, 18340 Saint-Just;45122;[-1.023238, 46.881979];;FRS40EMB404611;FR*SOD*E*SORE*112*1*1*_;;;;;;;;;;;;;;;;;;;50068683521525;;;;;;;;;0.777857;47.280291;;Moutiers-les-Mauxfaits;; +;FITP SARL;;;;;;Sud Hotel;FRS86PSOREB1091;FR*SOD*S*MB64*76*1*_*_;EPEIGNE LES BOIS 3561 - Parking du plan d'eau;;2 Av. Alfred Nobel, 86100 Châtellerault;85089;[2.736871, 50.738909];;FRS40EMB405211;FR*SOD*E*SORE*112*1*2*_;;;;;;;;;;;;;;;;;;;50037135281327;;;;;;;;;0.128424;47.042476;;Venansault;; +;SAS DE L'AILETTE;;;;;;Renault Lefebvre;FRS86PSOREB1092;FR*SOD*S*MB64*87*1*_*_;LIGRE 3563 - Rue Saint Martin;;Autoroute A10, 86130 Jaunay-Clan;66210;[0.777857, 47.585916];;FRS40EMB403612;FR*SOD*E*SORE*111*1*1*_;;;;;;;;;;;;;;;;;;;50046108698112;;;;;;;;;1.24028784;47.587438;;La Tranche-sur-Mer;; +;BECABLE;;;;;;La Bouche Rit;FRS86PSOREB1002;FR*SOD*S*MB64*82*1*_*_;Suèvres;;Place de l'Eglise, 18300 Veaugues;63258;[0.128424, 48.229805];;FRS40EMB404112;FR*SOD*E*SORE*111*1*2*_;;;;;;;;;;;;;;;;;;;50074182219708;;;;;;;;;1.514194;46.916074;;Le Tablier;; +;sa les broyers;;;;;;Borne Pilotage;FRS86PSOREB1001;FR*SOD*S*MB64*86*1*_*_;MONTREUIL EN TOURAINE 3565 - Rue du Bourg;;Place Bascoulard, 18190 Vallenay;63454;[1.24028784, 48.44961266];;FRS40EMB404011;FR*SOD*E*SORE*110*1*1*_;;;;;;;;;;;;;;;;;;;50095746475826;;;;;;;;;7.527064;47.163506;;Brem-sur-Mer;; +;COMMUNE DE GIVENCHY EN GOHELLE;;;;;;FORD VITROLLES;FRS86PSOREB0732;FR*SOD*S*MB64*85*1*_*_;SONEPAR DOL-DE-BRETAGNE;;Place de la Mairie, 18260 Vailly sur Sauldre;73182;[1.514194, 48.095883];;FRS40EMB404012;FR*SOD*E*SORE*110*1*2*_;;;;;;;;;;;;;;;;;;;50057105519570;;;;;;;;;1.47347;47.51268;;Saint-Hilaire-de-Riez;; +;COMMUNE DE ROUVROY;;;;;;STYLE AND DESIGN;FRS86PSOREB1341;FR*SOD*S*MB64*84*1*_*_;LA VILLE AUX DAMES 2698 - Place du 8 mai 1945;;50 Allée des Genêts, 04200 Sisteron;45145;[7.527064, 48.5392];;FRS40EMB403911;FR*SOD*E*SORE*109*1*2*_;;;;;;;;;;;;;;;;;;;50065500455767;;;;;;;;;1.059549;47.049277;;Pouzauges;; +;Hôtel Ilot Du Golf;;;;;;Mazda - Saint-Etienne;FRS86PSOREB1152;FR*SOD*S*MB64*83*1*_*_;AMBOISE 1688 - Rue André Huard;;3 rue Félix Mothiron, 94140 Alfortville;45028;[1.47347, 48.447741];;FRS40EMB403912;FR*SOD*E*SORE*108*1*1*_;;;;;;;;;;;;;;;;;;;50063762973902;;;;;;;;;0.23937643;47.56963676;;Le Poiré-sur-Vie;; +;Club Hippique de Grasse;;;;;;Ubitricity France Network;FRS86PSOREB1352;FR*SOD*S*MB64*81*1*_*_;SONELOG CHÂTEAUBOURG 4;;Service area Capens-Volvestre, 31410 Capens;42222;[1.059549, 47.46819359];;FRS40EMB403812;FR*SOD*E*SORE*101*1*2*_;;;;;;;;;;;;;;;;;;;50072736870750;;;;;;;;;0.890957;48.677313;;Le Perrier;; +;CHAPITEAUX SERVICE;;;;;;CASINO BATELIERE PLAZZA;FRS86PSORE15511;FR*SOD*S*MB64*80*1*_*_;RICHELIEU 16553 - Route de Chinon;;Aire de la Vallée de la Vire Gouvets, A84, 50420 Gouvets;38563;[0.23937643, 47.16950518];;FRS40EMB403811;FR*SOD*E*SORE*108*1*2*_;;;;;;;;;;;;;;;;;;;50055081284900;;;;;;;;;0.226074;47.357802;;Notre-Dame-de-Monts;; +;STUDIO 30;;;;;;COMMUNE DE SAINT ESPRIT;FRS86PSORE15411;FR*SOD*S*MB64*79*1*_*_;SUSAINTCONTEST BORNE 2;;Aire des Crêts Blancs A410, 74570 Groisy;42279;[0.890957, 47.421157];;FRS40EMB403712;FR*SOD*E*SORE*107*1*2*_;;;;;;;;;;;;;;;;;;;50048567169485;;;;;;;;;0.820331;46.841416;;Noirmoutier-en-l'Île;; +;OUEST CHARGE - 22;;;;;;MARCHE DE RIVIERE PILOTE;FRS86PSOREB1542;FR*SOD*S*MB64*78*1*_*_;SAINT CYR SUR LOIRE 16781 - rue Maurice Genevoix;;Base de Loisirs de Madine, 55210 NONSARD LAMARCHE;92051;[0.226074, 47.280291];;FRS40EMB403711;FR*SOD*E*SORE*107*1*1*_;;;;;;;;;;;;;;;;;;;50041188265592;;;;;;;;;0.902142;47.424187;;Nesmy;; +;OUEST CHARGE - 29;;;;;;972 - SAINT JOSEPH;FRS86PSOREB1541;FR*SOD*S*MB64*77*1*_*_;SONEPAR NANCY;;Route des Templiers, 41170 Arville;93006;[0.820331, 47.042476];;FRS40EMB403611;FR*SOD*E*SORE*106*1*1*_;;;;;;;;;;;;;;;;;;;50002982365921;;;;;;;;;6.337841;47.022995;;Rocheservière;; +;SUPER U CARQUEFOU;;;;;;FIRSTOP;FRS86PSOREB1532;FR*SOD*S*MB64*65*1*_*_;CHARNIZAY 1690;;Aire de Longué-La Couaille, 49160 Longué-Jumelles;93015;[0.902142, 47.587438];;FRS40EMB403511;FR*SOD*E*SORE*106*1*2*_;;;;;;;;;;;;;;;;;;;50055659170512;;;;;;;;;0.252231;47.363137;;Tourgéville;; +;L'AERODROME DE LA BAIE DE SOMME;;;;;;LIDL;FRS86PSOREB1531;FR*SOD*S*MB64*64*1*_*_;CIVRAY DE TOURAINE 1691 - Salle des fêtes;;2 Rue de la Gare, 54330 Quevilloncourt;93014;[6.337841, 46.916074];;FRS40EMB404212;FR*SOD*E*SORE*105*1*2*_;;;;;;;;;;;;;;;;;;;50064632442337;;;;;;;;;0.91056;47.495732;;Creully sur Seulles;; +;Hôtel Mont Blanc;;;;;;PROPERPHI;FRS86PSOREB1491;FR*SOD*S*MB64*49*1*_*_;MONTLOUIS SUR LOIRE 1693 - Rue Leonard de Vinci;;5 Rue Gustave Lang, 90000 Belfort;92014;[0.252231, 47.163506];;FRS40EMB403512;FR*SOD*E*SORE*105*1*1*_;;;;;;;;;;;;;;;;;;;50010506823715;;;;;;;;;0.40336;47.195244;;Courcy;; +;ESPACE AUTO DES COSTIERES;;;;;;Hôtel le bon cap;FRS86PSOREB1522;FR*SOD*S*MB64*53*1*_*_;MONTLOUIS SUR LOIRE 1694 - Maison communautaire;;CHAMP CLOS, 03320 Couleuvre;92019;[0.91056, 47.51268];;FRS40EMB403412;FR*SOD*E*SORE*104*1*2*_;;;;;;;;;;;;;;;;;;;50038439917138;;;;;;;;;0.67069575;47.409894;;Vire Normandie;; +;HAPM;;;;;;Hôtel Le Trecelin;FRS86PSOREB1521;FR*SOD*S*MB64*52*1*_*_;NAZELLES NEGRON 1696 - Boulevard de l'Avenir;;4 SAGS Rue de Lobau, 75004 Paris;92002;[0.40336, 47.049277];;FRS40EMB403411;FR*SOD*E*SORE*104*1*1*_;;;;;;;;;;;;;;;;;;;50080697568408;;;;;;;;;-1.337525;44.512308;;Cormolain;; +;ESPACE AUTOMOBILES NIMOIS;;;;;;Les jardins de la matz;FRS86PSOREB1511;FR*SOD*S*MB64*51*1*_*_;SONEPAR ST-MARTIN-DE-RE;;22 Rue Antoine de Saint-Exupéry, 33290 Blanquefort;91326;[0.67069575, 47.56963676];;FRS40EMB403312;FR*SOD*E*SORE*103*1*2*_;;;;;;;;;;;;;;;;;;;14389001338895;;;;;;;;;0.814847;47.383392;;Cricquebœuf;; +;SANYAMARKET;;;;;;LA CONCIERGERIE D'ISA.;FRS86PSOREB1461;FR*SOD*S*MB64*50*1*_*_;CHÂTEAU RENAULT 1700 - Parking rue Gambetta;;4 route de Frazé, 28160 Brou;93030;[-1.337525, 48.677313];;FRS40EMB403311;FR*SOD*E*SORE*103*1*1*_;;;;;;;;;;;;;;;;;;;14517076687113;;;;;;;;;0.88746;48.425225;;Dives-sur-Mer;; +;le relais du monarque;;;;;;IXINA Le cres;FRS86PSOREB1471;FR*SOD*S*MB64*48*1*_*_;Mirecourt;;3 Rue Laurent Lavoisier, 80330 Longueau;92049;[0.814847, 47.357802];;FRS40EMB403211;FR*SOD*E*SORE*102*1*2*_;;;;;;;;;;;;;;;;;;;50086500000000;;;;;;;;;0.976555;47.281329;;Valambray;; +;Rencontre-handi;;;;;;ixina Villeneuve-lès-Béziers;FRS86PSOREB1481;FR*SOD*S*MB64*47*1*_*_;CADETEL BORNE PARKING;;Avenue du Pech, 82370 Labastide-Saint-Pierre;93079;[0.88746, 46.841416];;FRS40EMB403212;FR*SOD*E*SORE*102*1*1*_;;;;;;;;;;;;;;;;;;;50024000000000;;;;;;;;;0.45328;48.9646;;Cuverville;; +;LE MANOIR DE L ISLE;;;;;;IXINA Saint Jean de Vedas;FRS86PSOREB1502;FR*SOD*S*MB64*46*1*_*_;Logis Belle Hôtel - 59270 - 2;;3 Av. de l'Europe, 18150 La Guerche-sur-l'Aubois;94001;[0.976555, 47.424187];;FRS40EMB403111;FR*SOD*E*SORE*20*1*2*_;;;;;;;;;;;;;;;;;;;50072600000000;;;;;;;;;0.438924;43.980521;;Démouville;; +;NOVABIO;;;;;;DLM GRENOBLE;FRS86PSOREB1501;FR*SOD*S*MB64*45*1*_*_;SAINT LAURENT EN GATINES 1581;;Les Maillottes A28 Aire Des Haras, 61230 Le Sap-André;94015;[0.45328, 47.022995];;FRS40EMB403112;FR*SOD*E*SORE*57*1*1*_;;;;;;;;;;;;;;;;;;;50021400000000;;;;;;;;;0.631847;47.26778016;;Aurseulles;; +;PROVIRIDIS;;;;;;DESENFANS;FRS86PSOREB1451;FR*SOD*S*MB64*54*1*_*_;SUPER U 72170 BORNE 2;;Aire de Pays de Brive, A89, 19600 Saint Pantaléon de Larche;94054;[0.438924, 47.363137];;FRS40EMB403011;FR*SOD*E*SORE*19*1*2*_;;;;;;;;;;;;;;;;;;;2388860000000;;;;;;;;;0.183346;47.4194015;;Colleville-Montgomery;; +;Royan Ravalement Services;;;;;;Réseau de recharge Mairie Saint-Brieuc;FRS86PSOREB1442;FR*SOD*S*MB64*55*1*_*_;COURVILLE SUR EURE - 1 Rue Des Planches - 137731;;Aire de Pays de Brive, A89, 19600 19600 Saint-Pantaléon-de-Larche;94022;[0.631847, 47.495732];;FRS40EMB404111;FR*SOD*E*SORE*5*1*2*_;;;;;;;;;;;;;;;;;;;30001451058047;;;;;;;;;0.669537;47.507438;;Dozulé;; +;Societe moderne d'isolation;;;;;;Réseau de recharge Dropbird;FRS86PSOREB1441;FR*SOD*S*MB64*63*1*_*_;VARIZE - Rue du Châteaux - 130758;;4 Rue de la Mortagne, 54520 Laxou;93070;[0.183346, 47.195244];;FRS40EMB404211;FR*SOD*E*SORE*9*1*2*_;;;;;;;;;;;;;;;;;;;50085637525987;;;;;;;;;4.756788;49.060816;;Carpiquet;; +;ABSOLUT CONCEPT;;;;;;Réseau de recharge Mairie Kintzheim;FRS86PSOREB1431;FR*SOD*S*MB64*62*1*_*_;MERCK SITES EUR P4-02;;49 Rue Jacques Villermaux, 54000 Nancy;93071;[0.669537, 47.409894];;FRS40EMB405213;FR*SOD*E*SORE*8*1*2*_;;;;;;;;;;;;;;;;;;;25825904419708;;;;;;;;;0.76171;47.269214;;Noues de Sienne;; +;TRUCHIDIM;;;;;;Réseau de recharge Langouet;FRS86PSOREB1421;FR*SOD*S*MB64*61*1*_*_;MAINVILLIERS - Rue de la république - 137395;;1 Rue Lucien Galtier, 54500 Laneuveville-devant-Nancy;93077;[4.756788, 44.512308];;FRS40EMB404914;FR*SOD*E*SORE*8*1*1*_;;;;;;;;;;;;;;;;;;;243 285 092 704 63;;;;;;;;;2.773284;50.225478;;Clécy;; +;EHPAD DOURDAN;;;;;;Réseau de recharge Enedis Nantes;FRS86PSOREB1422;FR*SOD*S*MB64*60*1*_*_;CANGEY 1643;;Aire de Bourges Sainte Thorette, A71, 18500 Marmagne;93072;[0.76171, 47.383392];;FRS40EMB405214;FR*SOD*E*SORE*7*1*2*_;;;;;;;;;;;;;;;;;;;243 538 349 893 01;;;;;;;;;1.111411;46.42090355;;Feuguerolles-Bully;; +;Société d'Application de Peinture;;;;;;Réseau de recharge Citedia Rennes;FRS86PSOREB1402;FR*SOD*S*MB64*59*1*_*_;CHINON 1644 - Parking de la forteresse;;A41 Aire de, Allée des Fontanelles, 74600 Seynod;94079;[2.773284, 48.425225];;FRS40EMB405111;FR*SOD*E*SORE*7*1*1*_;;;;;;;;;;;;;;;;;;;243 872 646 820 19;;;;;;;;;3.054163;47.3376;;Colleville-sur-Mer;; +;Le Temps Des Cerises;;;;;;Réseau de recharge Hopital de Cholet;FRS86PSOREB1401;FR*SOD*S*MB64*58*1*_*_;NOIZAY 1646;;46P Voie des Alliés, 14440 Douvres-la-Délivrande;94080;[1.111411, 47.281329];;FRS40EMB405112;FR*SOD*E*SORE*6*1*1*_;;;;;;;;;;;;;;;;;;;30000111254712;;;;;;;;;1.33295;43.075236;;Coquainvilliers;; +;Bénédictines du Sacré-Coeur de Montmartre;;;;;;Réseau de recharge Station Mobile;FRS86PSOREB1411;FR*SOD*S*MB64*57*1*_*_;RESTIGNE 1701;;Aire de Nemours A6, 77140 Nemours;94075;[3.054163, 48.9646];;FRS40EMB405114;FR*SOD*E*SORE*6*1*2*_;;;;;;;;;;;;;;;;;;;30000150898002;;;;;;;;;0.35220841;46.13428529;;Condé-en-Normandie;; +;SAS CHATEAU DE MEMANAT;;;;;;Réseau de recharge CROUS Pauliane;FRS86PSOREB1391;FR*SOD*S*MB64*56*1*_*_;LIGUEIL 2579 - Allée des Cyclamens;;73 Rue Dr Blain, 73290 La Motte-Servolex;94068;[1.33295, 43.980521];;FRS40EMB405113;FR*SOD*E*SORE*4*1*2*_;;;;;;;;;;;;;;;;;;;50096617388830;;;;;;;;;0.97706083;43.618817;;Grentheville;; +;SARL LES BAINS DE ROYAN;;;;;;Réseau de recharge ACCOR Castelnaudary;FRS86PSOREB1381;FR*SOD*S*MB64*114*1*_*_;CHÂTEAU RENAULT 1842 - Gare Boulevard National;;A11 Aire De Parce Est, 72300 Parcé-sur-Sarthe;94060;[0.35220841, 47.26778016];;FRS40EMB405013;FR*SOD*E*SORE*10*1*1*_;;;;;;;;;;;;;;;;;;;01570188035348;;;;;;;;;0.257426;48.58155;;Fontaine-Henry;; +;LEL MENUISERIES;;;;;;CARREFOUR CONTACT;FRS86PSOREB1371;FR*SOD*S*MB64*118*1*_*_;SONEPAR PONTARLIER;;A77, Aire du Jardin des Arbres, 45290 Varennes-Changy;94055;[0.97706083, 47.4194015];;FRS40EMB405014;FR*SOD*E*SORE*4*1*1*_;;;;;;;;;;;;;;;;;;;2.38E+12;;;;;;;;;1.430869;50.83325;;Glos;; +;EHPAD VILLEBON;;;;;;Daltoner Avranches;FRS86PSOREB1361;FR*SOD*S*MB64*117*1*_*_;CHINON 2572 - Parking de la gare;;1 Rue Port Arthur, 33130 Bègles;94070;[0.257426, 47.507438];;FRS40EMB405012;FR*SOD*E*SORE*3*1*2*_;;;;;;;;;;;;;;;;;;;2.32E+12;;;;;;;;;-1.772852;49.194108;;Gouvix;; +;Jardinerie d'Aveze;;;;;;DIDIER CHARTON-VACHET;FRS86PSOREB1351;FR*SOD*S*MB64*88*1*_*_;NEUILLE LE LIERRE 2575 - Place de la mairie;;25 Cours Manuel, 18200 St AMAND-MONTROND;94069;[1.430869, 49.060816];;FRS40EMB405011;FR*SOD*E*SORE*3*1*1*_;;;;;;;;;;;;;;;;;;;2.35E+12;;;;;;;;;3.070357;47.807101;;Grainville-Langannerie;; +;ENNESSER ET FILS;;;;;;DOUBLET;FRS86PSOREB1281;FR*SOD*S*MB64*116*1*_*_;LA TOUR SAINT GELIN 2576 - Rue de l'Eglise;;Les Carreaux, 89240 Diges;93048;[-1.772852, 47.269214];;FRS40EMB404911;FR*SOD*E*SORE*2*1*2*_;;;;;;;;;;;;;;;;;;;2.33E+12;;;;;;;;;4.86500418;47.237775;;Grainville-sur-Odon;; +;Entreprise gle electricite noel beranger;;;;;;LECLERC;FRS86PSOREB1282;FR*SOD*S*MB64*115*1*_*_;BEAUMONT LA RONCE 2577 - Rue des Prés;;Route de Bourges, 18520 Bengy-sur-Craon;93049;[3.070357, 50.225478];;FRS40EMB404912;FR*SOD*E*SORE*2*1*1*_;;;;;;;;;;;;;;;;;;;2.39E+12;;;;;;;;;0.6564;47.32298;;Grandcamp-Maisy;; +;AUTO SERVICES PIXIEN;;;;;;CAPITAINERIE PORT DE GRUISSAN;FRS86PSOREB0232;FR*SOD*S*MB64*113*1*_*_;SONEPAR AVRANCHES;;Aire De Labenne Ouest, A63, 40530 Labenne;93031;[4.86500418, 46.42090355];;FRS40EMB404312;FR*SOD*E*SORE*1*1*1*_;;;;;;;;;;;;;;;;;;;19972648280502;;;;;;;;;1.642716;43.423878;;Hermanville-sur-Mer;; +;HYPER U PONT DE BEAUVOISIN;;;;;;DRIVEONE;FRS86PSOREB0231;FR*SOD*S*MB64*119*1*_*_;VERETZ 1698;;Aire De Labenne Est, A63, 40530 Labenne;93033;[0.6564, 47.3376];;FRS40EMB404913;FR*SOD*E*SORE*1*1*2*_;;;;;;;;;;;;;;;;;;;12106367536824;;;;;;;;;4.76685137;49.110221;;Campagnolles;; +;SUPER U CAEN;;;;;;Hôtel l'Alivi;FRS86PSOREB0931;FR*SOD*S*MB64*112*1*_*_;BOUSSAY 2681 - Rue Notre Dame des Champs;;Route de Jargeau, allée du bois vert Zac Du, 45640 Sandillon;93039;[1.642716, 43.075236];;FRS40EMB404712;FR*SOD*E*SORE*9*1*1*_;;;;;;;;;;;;;;;;;;;30000130236177;;;;;;;;;2.268863;48.32822;;Houlgate;; +;SUPER U FARGUES ST HILAIRE;;;;;;INTERMARCHE;FRS86PSOREB0932;FR*SOD*S*MB64*111*1*_*_;NAZELLES NEGRON 1287 - Avenue du Centre;;Route de Jargeau allée du bois vert ZAC Du, 45640 Sandillon;93063;[4.76685137, 46.13428529];;FRS40EMB404711;FR*SOD*E*SORE*5*1*1*_;;;;;;;;;;;;;;;;;;;30001641248396;;;;;;;;;1.242347;47.469991;;Ellon;; +;SUPER U LAMASTRE;;;;;;PORTE 90;FRS86PSOREB0482;FR*SOD*S*MB64*110*1*_*_;LUZE 2682 - Parking derrière la mairie;;Parking relais du chu brabois, 54547 Vandoeuvre les Nancy;93050;[2.268863, 43.618817];;FRS40EMB404612;FR*SOD*E*SORE*10*1*2*_;;;;;;;;;;;;;;;;;;;25700000002313;;;;;;;;;2.54317;47.03591;;Épron;; +;SUPER U GANGES;;;;;;LE BISTRO D'HUGO;FRS86PSOREB0481;FR*SOD*S*MB64*109*1*_*_;CINQ MARS LA PILE 2685 - Z.A. Actiloire;;Aire de Saint-Nazaire les Eymes A41, 38330 Saint-Nazaire les Eymes;93059;[1.242347, 48.58155];;FRS40EMB409114;FR*SOD*E*SORE*15*1*1*_;;;;;;;;;;;;;;;;;;;24258900115977;;;;;;;;;-1.40054;47.177919;;Équemauville;; +;SUPER U LA TOURETTE;;;;;;GAZ DE BORDEAUX;FRS86PSOREB0301;FR*SOD*S*MB64*108*1*_*_;SAINT ANTOINE DU ROCHER 2686 - R. Seriniere;;32 Rue du Nouvel-Hôpital, 88100 Saint-Dié-des-Vosges;74278;[2.54317, 50.83325];;FRS40EMB404512;FR*SOD*E*SORE*11*1*1*_;;;;;;;;;;;;;;;;;;;30001614669799;;;;;;;;;-0.166865;50.572433;;Fontaine-Étoupefour;; +;HYPER U AIZENAY;;;;;;Mickael Auto;FRS86PSOREB0302;FR*SOD*S*MB64*125*1*_*_;BEAUMONT EN VERON 2690 - Rue du Parc;;11 Rue de l'Innovation, 85200 Fontenay-le-Comte;92280;[-1.40054, 49.194108];;FRS40EMB404511;FR*SOD*E*SORE*18*1*1*_;;;;;;;;;;;;;;;;;;;06571779967773;;;;;;;;;0.126858;48.814144;;Fierville-les-Parcs;; +;HYPER U BLAIN;;;;;;Réseau de recharge SIPECC;FRS86PSOREB0161;FR*SOD*S*MB64*129*1*_*_;SAINT CYR SUR LOIRE 1838 -Parking Guy Raynaud;;Place de Montléan, 51380 Montmirail;93029;[-0.166865, 47.807101];;FRS40EMB404412;FR*SOD*E*SORE*18*1*2*_;;;;;;;;;;;;;;;;;;;02554269100730;;;;;;;;;0.916704;43.99972129;;Fleury-sur-Orne;; +;SUPER U SAVIGNEUX;;;;;;RESEAU DE RECHARGE JAV;FRS86PSOREB0162;FR*SOD*S*MB64*128*1*_*_;MANOIR LE ROURE BORNE 2;;Avenue du Maréchal FOCH, 18120 Massay;92033;[0.126858, 47.237775];;FRS40EMB404411;FR*SOD*E*SORE*17*1*2*_;;;;;;;;;;;;;;;;;;;25299131565740;;;;;;;;;5.990385;48.67393864;;Cambremer;; +;SUPER U ST LEGER DE LA MARTINIERE;;;;;;Borne de recharge HEXAOM Bouc bel air;FRS86PSOREB1132;FR*SOD*S*MB64*127*1*_*_;LA VILLE AUX DAMES 1724 - Jacqueline Auriol;;Aire de Ussy sur Marne A4, 77260 Ussy-sur-Marne;78646;[0.916704, 47.32298];;FRS40EMB404311;FR*SOD*E*SORE*17*1*1*_;;;;;;;;;;;;;;;;;;;252290088191731;;;;;;;;;7.097127;48.992969;;Blainville-sur-Orne;; +;SUPER U TARASCON SUR ARIEGE;;;;;;Réseau de recharge VAHE EKNADISSIAN;FRS86PSOREB1131;FR*SOD*S*MB64*126*1*_*_;SONEPAR VULAINES;;1 rue des écoles, 18370 Préveranges;94042;[5.990385, 43.423878];;FRS40EMB409113;FR*SOD*E*SORE*16*1*1*_;;;;;;;;;;;;;;;;;;;25217655433140;;;;;;;;;1.69377;48.274978;;Bény-sur-Mer;; +;SUPER U LE CHEYLARD;;;;;;FITP Bureau;FRS86PSOREB0742;FR*SOD*S*MB64*124*1*_*_;EPEIGNE LES BOIS 1737;;51 Rue Bobby Sands, 44800 Saint-Herblain;92023;[7.097127, 49.110221];;FRS40EMB408613;FR*SOD*E*SORE*16*1*2*_;;;;;;;;;;;;;;;;;;;50068541988307;;;;;;;;;0.608911;48.4162747;;Bernières-sur-Mer;; +;MJS DISTRIBUTION;;;;;;HOTEL DU GOLF DE L'AILETTE;FRS86PSOREB0741;FR*SOD*S*MB64*120*1*_*_;Aire de Changis sur Marne;;Rue du Balay, 41700 Chemery;62700;[1.69377, 48.32822];;FRS40EMB409112;FR*SOD*E*SORE*15*1*2*_;;;;;;;;;;;;;;;;;;;25258321140154;;;;;;;;;2.65359;48.25514781;;Beuvron-en-Auge;; +;SUPER U VIVONNE;;;;;;BECABLE;FRS86PSOREB0051;FR*SOD*S*MB64*123*1*_*_;DRB BORNE 1;;21 Rue Jacques Tati, 69120 Vaulx-en-Velin;75000;[0.608911, 47.469991];;FRS40EMB409012;FR*SOD*E*SORE*19*1*1*_;;;;;;;;;;;;;;;;;;;30000410910286;;;;;;;;;1.208185;47.508607;;Bretteville-sur-Odon;; +;SAS VERNAIDIS;;;;;;chateau des broyers;FRS86PSOREB0461;FR*SOD*S*MB64*122*1*_*_;RIVARENNES 1830;;Aire de Saint Ambreuil A6, 71240 Saint Ambreuil;84081;[2.65359, 47.03591];;FRS40EMB407212;FR*SOD*E*SORE*14*1*2*_;;;;;;;;;;;;;;;;;;;30001210891135;;;;;;;;;2.379636;46.203218;;Carcagny;; +;SUPER U ST BONNET DE JOUX;;;;;;evzen;FRS86PSOREB0692;FR*SOD*S*MB64*121*1*_*_;NAZELLES NEGRON 1832 - Rue d'Amboise;;22B Av. des Platanes, 79330 Saint-Varent;28100;[1.208185, 47.177919];;FRS40EMB407214;FR*SOD*E*SORE*14*1*1*_;;;;;;;;;;;;;;;;;;;6938627517B;;;;;;;;;2.456267;47.502321;;Blangy-le-Château;; +;4M RETAIL;;;;;;TALK FUNDRAISING;FRS86PSOREB0691;FR*SOD*S*MB64*97*1*_*_;SAINT LAURENT DE LIN 1834;;Zone d'activités de Kergoët, D46, 22350 Saint-Jouan-de-l'Isle;49400;[2.379636, 50.572433];;FRS40EMB407213;FR*SOD*E*SORE*13*1*1*_;;;;;;;;;;;;;;;;;;;1621C900302148;;;;;;;;;4.70014885;47.44248;;Blonville-sur-Mer;; +;FOURNIER SAS;;;;;;CHAPITEAUX SERVICE;FRS86PSOREB0451;FR*SOD*S*MB64*96*1*_*_;RAW PARISGIVERNY 15;;3 Rue Emile Dewoitine, 31600 Seysses;69800;[2.456267, 48.814144];;FRS40EMB407311;FR*SOD*E*SORE*13*1*2*_;;;;;;;;;;;;;;;;;;;01514326972582;;;;;;;;;1.46055656;47.1862674;;Bonnebosq;; +;Hôtel du Pont Vieux;;;;;;STUDIO30;FRS86PSOREB0452;FR*SOD*S*MB64*95*1*_*_;SUPER U SEM BORNE 6;;Avenue Raymond Pinchard, 54000 Nancy;83115;[4.70014885, 43.99972129];;FRS40EMB407314;FR*SOD*E*SORE*12*1*1*_;;;;;;;;;;;;;;;;;;;05559044773960;;;;;;;;;1.633507;42.684685;;Bonneville-la-Louvet;; +;MANEO;;;;;;OUEST CHARGE - 22;FRS86PSOREB1241;FR*SOD*S*MB64*94*1*_*_;Baralle;;Aire de Service MENARS-A10, 41000 Villerbon;83048;[1.46055656, 48.67393864];;FRS40EMB407313;FR*SOD*E*SORE*12*1*2*_;;;;;;;;;;;;;;;;;;;24533140286307;;;;;;;;;1.856042;45.462082;;Bénouville;; +;F.B. AUTOMOBILES;;;;;;OUEST CHARGE - 29;FRS86PSOREB1242;FR*SOD*S*MB64*93*1*_*_;Mâcon Saint-Albain;;158 Les Vincentes, 78930 Guerville;30312;[1.633507, 48.992969];;FRS40EMB407312;FR*SOD*E*SORE*11*1*2*_;;;;;;;;;;;;;;;;;;;19574384870656;;;;;;;;;1.87900427;48.44726082;;Bellengreville;; +;MARVINGIL;;;;;;SUPER U CARQUEFOU;FRS86PSOREB1162;FR*SOD*S*MB64*92*1*_*_;JOUE LES TOURS 5907 - RUE DE LA GITONNIERE;;Aerodrome de Blois, 41330 Villefrancoeur;42000;[1.856042, 48.274978];;FRS40EMB407412;FR*SOD*E*LYON*186*1*2*_;;;;;;;;;;;;;;;;;;;30002450507255;;;;;;;;;0.95679523;47.28464;;Amayé-sur-Orne;; +;Thibal Distribution;;;;;;AERODROME BAIE SOMME;FRS86PSOREB1161;FR*SOD*S*MB64*91*1*_*_;Verniolle | Super U, Parc Commercial Delta-Sud;;Aire de Saint-Rambert-d'Albon Ouest A7, 26140 Saint-Rambert-d'Albon;83094;[1.87900427, 48.4162747];;FRS40EMB407413;FR*SOD*E*LYON*191*1*2*_;;;;;;;;;;;;;;;;;;;01130245881330;;;;;;;;;-3.121673;48.817955;;Annebault;; +;HOPITAL PRIVE MARNE CHANTEREINE;;;;;;Hôtel Mont Blanc;FRS86PSOREB0061;FR*SOD*S*MB64*90*1*_*_;Taponas;;134 Rue Gambetta - Parking rectorat, 51100 Reims;84128;[0.95679523, 48.25514781];;FRS40EMB407414;FR*SOD*E*LYON*191*2*2*_;;;;;;;;;;;;;;;;;;;50087374253525;;;;;;;;;6.269339;47.486261;;Saint-Pierre-en-Auge;; +;POUCHARD TUBES ET BARRES;;;;;;VOLKSWAGEN;FRS86PSOREB0062;FR*SOD*S*MB64*107*1*_*_;WELDOM CASTRES BORNE 1;;Rue Paul Emile Janson, 08600 Chooz;83042;[-3.121673, 47.508607];;FRS40EMB407411;FR*SOD*E*LYON*191*2*1*_;;;;;;;;;;;;;;;;;;;30002450689805;;;;;;;;;0.790964;47.813445;;Argences;; +;MEA CONSULT;;;;;;SCI 35 RUE DE ROUBAIX;FRS86PSOREB0782;FR*SOD*S*MB64*89*1*_*_;CHATEAUNEUF EN THYMERAIS - Halles - 134333;;D59/2 Lourmel chemin d'exploitation n°33, 22400 Andel;73800;[6.269339, 46.203218];;FRS40EMB407514;FR*SOD*E*LYON*187*2*2*_;;;;;;;;;;;;;;;;;;;50026303401650;;;;;;;;;0.322448;46.152422;;Arromanches-les-Bains;; +;daltoner Caen;;;;;;SKODA;FRS86PSOREB0781;FR*SOD*S*MB64*98*1*_*_;Winnezeele;;Aire des Eglantiers, N10, 16700 Barro, France, 16700 Barro;83036;[0.790964, 47.502321];;FRS40EMB407511;FR*SOD*E*LYON*187*2*1*_;;;;;;;;;;;;;;;;;;;19495803129617;;;;;;;;;5.3338292;43.216129;;Malherbe-sur-Ajon;; +;TEM53;;;;;;SANYA MARKET;FRS86PSOREB0132;FR*SOD*S*MB64*103*1*_*_;Périers;;Autoroute A28, 37360 Neuille-Pont-Pierre;83119;[0.322448, 47.44248];;FRS40EMB407512;FR*SOD*E*LYON*187*1*1*_;;;;;;;;;;;;;;;;;;;12167293726770;;;;;;;;;-3.122062;47.10015;;Saint-Paul-du-Vernay;; +;Gite Ver;;;;;;Le Relais du Monarque;FRS86PSOREB0131;FR*SOD*S*MB64*106*1*_*_;Sarthe Nord;;75 Rue des Entreprises, 86440 Migné-Auxances;84068;[5.3338292, 47.1862674];;FRS40EMB407513;FR*SOD*E*LYON*187*1*2*_;;;;;;;;;;;;;;;;;;;50006455404528;;;;;;;;;2.8678;47.444663;;Bavent;; +;SIEML;;;;;;Rencontre-handi;FRS86PSOREB1151;FR*SOD*S*MB64*105*1*_*_;CHOUZE SUR LOIRE 5520 - PLACE DE L'EGLISE;;Place Aristide Briand, 08171 Fumay;83120;[-3.122062, 47.509629];;FRS40EMB407612;FR*SOD*E*LYON*184*2*2*_;;;;;;;;;;;;;;;;;;;01544573056808;;;;;;;;;4.399705;47.341249;;Bayeux;; +;SYDELA;;;;;;LA FERME DU GRAND AIR;FRS86PSOREB1211;FR*SOD*S*MB64*104*1*_*_;Athée sur Cher 10838 - Place de la Mairie 2;;Rue du Grand Cap, 34300 Agde;83101;[2.8678, 42.684685];;FRS40EMB407611;FR*SOD*E*LYON*186*1*1*_;;;;;;;;;;;;;;;;;;;01432127240120;;;;;;;;;1.48407805;45.673865;;Tilly-sur-Seulles;; +;Daltoner Vire;;;;;;BIG MAT;FRS86PSOREB1212;FR*SOD*S*MB64*102*1*_*_;Cambarette Nord;;Aire de service de Bolleville Est, A29, 76210 Bolleville;84055;[4.399705, 45.462082];;FRS40EMB407613;FR*SOD*E*LYON*185*1*2*_;;;;;;;;;;;;;;;;;;;14586541196310;;;;;;;;;0.781369;45.775344;;Cagny;; +;ICS Schilitghiem;;;;;;Manoir de l isle;FRS86PSOREB0871;FR*SOD*S*MB64*99*1*_*_;SONEPAR SARREGUEMINES;;Avenue Maréchal Maunoury, 41500 Mer;30011;[1.48407805, 48.44726082];;FRS40EMB407614;FR*SOD*E*LYON*185*1*1*_;;;;;;;;;;;;;;;;;;;01190448534067;;;;;;;;;2.42548;44.004071;;Cahagnes;; +;KEOLIS BOURGOGNE;;;;;;SC FRANETTI;FRS86PSOREB0961;FR*SOD*S*MB64*101*1*_*_;BOISVILLE LA SAINT PERE - Pl République - 129052;;3 Allée du 1er Mai, 77183 Croissy-Beaubourg;92380;[0.781369, 47.28464];;FRS40EMB407714;FR*SOD*E*LYON*191*1*1*_;;;;;;;;;;;;;;;;;;;50057562633720;;;;;;;;;-0.543986;47.321429;;Cahagnolles;; +;E.LECLERC SOCADI;;;;;;DACIA BEAURAINS;FRS86PSOREB0221;FR*SOD*S*MB64*100*1*_*_;CHARENTILLY 5579 - PLACE DE LA MAIRIE;;5 rue de la plaine de la croix Besnard, 77000 Vaux-le-Pénil;13095;[2.42548, 48.817955];;FRS40EMB407713;FR*SOD*E*LYON*184*1*2*_;;;;;;;;;;;;;;;;;;;01409985472803;;;;;;;;;5.22454;47.327701;;Bretteville-sur-Laize;; +;Ambroise avocat;;;;;;SCI CD;FRS86PSOREB0222;FR*SOD*S*SYDR*73*1*_*_;AVORD - Bibliothèque -112685;;19 Pl. de la Mairie, 18110 St Martin d'Auxigny;84095;[-0.543986, 47.486261];;FRS40EMB407711;FR*SOD*E*LYON*184*2*1*_;;;;;;;;;;;;;;;;;;;50068686278289;;;;;;;;;-1.205198;47.282663;;Saint-Germain-le-Vasson;; +;SAS SOLEFA;;;;;;NOVABIO;FRS86PSOREB1312;FR*SOD*S*SYDR*72*1*_*_;BEAUMONT VILLAGE 5655 - Rue du Bourg neuf;;Parking Casino, 51269 Giffaumont Champaubert 1;33069;[5.22454, 47.813445];;FRS40EMB407712;FR*SOD*E*LYON*184*1*1*_;;;;;;;;;;;;;;;;;;;15250506455760;;;;;;;;;3.089531;45.774399;;Saint-Manvieu-Norrey;; +;FLYOPS;;;;;;Z-E-N;FRS86PSOREB1311;FR*SOD*S*SYDR*71*1*_*_;Aire de Saint Hilaire Cottes;;50 Allée des Genêts BP 200, 04200 Sisteron;84141;[-1.205198, 46.152422];;FRS40EMB407211;FR*SOD*E*LYON*183*1*2*_;;;;;;;;;;;;;;;;;;;30001912882330;;;;;;;;;2.48274;48.589346;;Souleuvre en Bocage;; +;MANUBOB;;;;;;Royan Ravalement Services;FRS86PSOREB1261;FR*SOD*S*SYDR*70*1*_*_;SAINT-MAURICE ESPACES VERTS;;Place de l'Hôtel de Ville, 08170 Haybes;83152;[3.089531, 43.216129];;FRS40EMB407111;FR*SOD*E*LYON*183*1*1*_;;;;;;;;;;;;;;;;;;;21482923219277;;;;;;;;;0.49908;48.112966;;Saint-Martin-des-Entrées;; +;AGP;;;;;;SMI;FRS86PSOREB1262;FR*SOD*S*SYDR*69*1*_*_;Tavel Sud;;LA MORERIE - SAINT-HILAIRE-DU-HARCOUËT, 50600 Saint Hilaire du Harcouët;17286;[2.48274, 47.10015];;FRS40EMB407112;FR*SOD*E*LYON*116*3*1*_;;;;;;;;;;;;;;;;;;;12345678901234;;;;;;;;;0.510935;47.033837;;Bernières-d'Ailly;; +;THEMIS;;;;;;Recharge Absolut;FRS86PSOREB0031;FR*SOD*S*SYDR*68*1*_*_;VILLEMEUX SUR EURE - Rue de la libération - 134403;;28 Pl. du Marché, 86160 Gençay;17354;[0.49908, 47.444663];;FRS40EMB406811;FR*SOD*E*LYON*120*2*1*_;;;;;;;;;;;;;;;;;;;50069271814301;;;;;;;;;5.929976;47.024564;;Saint-Sylvain;; +;LEGA;;;;;;EDF;FRS86PSOREB0032;FR*SOD*S*SYDR*74*1*_*_;Rosny Nord;;Rue de Montrieux, 41100 Naveil;48012;[0.510935, 47.341249];;FRS40EMB406512;FR*SOD*E*LYON*117*3*1*_;;;;;;;;;;;;;;;;;;;15299421103649;;;;;;;;;4.796718;48.793804;;Commes;; +;OCR MAINTENANCE ELECTRONIQUE;;;;;;SAP;FRS86PSOREB0431;FR*SOD*S*SYDR*67*1*_*_;Plaines de Beauce;;Rue de la Saulaie, 41400 Pontlevoy;83350;[5.929976, 45.673865];;FRS40EMB406611;FR*SOD*E*LYON*182*1*2*_;;;;;;;;;;;;;;;;;;;30001630671374;;;;;;;;;4.703626;45.70124;;Subles;; +;Acelec;;;;;;Le Temps Des Cerises;FRS86PSOREB0432;FR*SOD*S*SYDR*79*1*_*_;SAINVILLE - Place Farcot - 130159;;A46, 01390 Mionnay;84142;[4.796718, 45.775344];;FRS40EMB406614;FR*SOD*E*LYON*116*4*1*_;;;;;;;;;;;;;;;;;;;17280607771169;;;;;;;;;1.669796;47.431032;;Surville;; +;Mas des olives;;;;;;BSCM;FRS86PSOREB1231;FR*SOD*S*SYDR*1*1*_*_;BEAUMONT-LES-AUTELS - Rue du Gal. de Gaulle-139133;;Aire du Larzac, 12230 Larzac;26100;[4.703626, 44.004071];;FRS40EMB406613;FR*SOD*E*LYON*116*1*1*_;;;;;;;;;;;;;;;;;;;15265412389183;;;;;;;;;1.762513;43.640079;;Sannerville;; +;E.LECLERC BARROIDIS S.A.S.;;;;;;CHATEAU DE MEMANAT;FRS86PSOREB1232;FR*SOD*S*SYDR*82*1*_*_;ENVSN OUEST;;Allée des prés Doulet, 18000 Bourges;35000;[1.669796, 47.321429];;FRS40EMB406612;FR*SOD*E*LYON*116*2*1*_;;;;;;;;;;;;;;;;;;;9585963646;;;;;;;;;1.828502;47.276707;;Cernay;; +;BUSINESS NORD AUTOMOBILES;;;;;;Réseau de recharge Monsieur Boissier;FRS86PSOREB0962;FR*SOD*S*SYDR*81*1*_*_;JALIX VLG BORNE 1;;345 All. de Curebourse, 01150 Saint-Vulbas;41046;[1.762513, 47.327701];;FRS40EMB406711;FR*SOD*E*LYON*117*1*1*_;;;;;;;;;;;;;;;;;;;50052773256834;;;;;;;;;4.793041;47.248199;;Sommervieu;; +;Aeroports de lyon;;;;;;Réseau de recharge Soulier;FRS86PSOREB0721;FR*SOD*S*SYDR*78*1*_*_;MONNAIE 6556 - Place Jean Baptiste Moreau;;Aire de Vémars Ouest A1, 95470 Vémars;67100;[1.828502, 47.282663];;FRS40EMB406713;FR*SOD*E*LYON*117*2*1*_;;;;;;;;;;;;;;;;;;;09101012944238;;;;;;;;;1.578366;47.501399;;Saint-Arnoult;; +;SCI DRC IMMO;;;;;;alterna energie;FRS86PSOREB0872;FR*SOD*S*SYDR*75*1*_*_;SAVIGNE-SUR-LATHAN 6558 - Rue de la gare;;Rue Mickael Faraday, 18000 Bourges;73100;[4.793041, 45.774399];;FRS40EMB406712;FR*SOD*E*LYON*117*4*1*_;;;;;;;;;;;;;;;;;;;67004/E1/0777832;;;;;;;;;1.330665;49.006164;;Saint-Aubin-sur-Mer;; +;AUTEL EUROPE GmbH;;;;;;Jardinerie d'Aveze;FRS86PSOREB0722;FR*SOD*S*SYDR*77*1*_*_;Aire de Pont Val de Saône;;136 Rue du Général Delestraint, 77000 Vaux-le-Pénil;73249;[1.578366, 48.589346];;FRS40EMB406714;FR*SOD*E*LYON*118*2*2*_;;;;;;;;;;;;;;;;;;;50087409496507;;;;;;;;;0.395618;47.49941;;Saint-Aubin-d'Arquenay;; +;WAAT sas;;;;;;Peinture Ennesser;FRS86PSOREB1252;FR*SOD*S*SYDR*76*1*_*_;ENVSN NORD;;6D Avenue de Verdun, 55700 Stenay;33240;[1.330665, 48.112966];;FRS40EMB406812;FR*SOD*E*LYON*120*1*2*_;;;;;;;;;;;;;;;;;;;04296526748716;;;;;;;;;0.788014;47.52429;;Saint-Benoît-d'Hébertot;; +;SMEG Développement;;;;;;AUTO SERVICES PIXIEN;FRS86PSOREB1251;FR*SOD*S*SYDR*35*1*_*_;SONEPAR PERPIGNAN;;Bd Pierre Lefaucheux, 72230 Arnage;83079;[0.395618, 47.033837];;FRS40EMB406814;FR*SOD*E*LYON*118*2*1*_;;;;;;;;;;;;;;;;;;;30000111265403;;;;;;;;;2.298291;47.276675;;Saint-Désir;; +;ATLANTE SRL;;;;;;HYPER U PONT DE BEAUVOISIN;FRS86PSOREB1301;FR*SOD*S*SYDR*48*1*_*_;SONEPAR CONNECT ST-ETIENNE3;;N10, 17210 Bedenac;92032;[0.788014, 47.024564];;FRS40EMB407114;FR*SOD*E*LYON*118*1*1*_;;;;;;;;;;;;;;;;;;;50087644016502;;;;;;;;;4.740681;48.7998;;Saint-Gatien-des-Bois;; +;WATTZHUB;;;;;;SUPER U CAEN;FRS86PSOREB1302;FR*SOD*S*SYDR*52*1*_*_;CHARTRES - Place Chatelet - 134784;;Beauvoir, 14290 Orbec;85106;[2.298291, 48.793804];;FRS40EMB406813;FR*SOD*E*LYON*118*1*2*_;;;;;;;;;;;;;;;;;;;24129667129224;;;;;;;;;0.95397;47.68865;;Notre-Dame-d'Estrées-Corbon;; +;Greenyellow;;;;;;SUPER U FARGUES ST HILAIRE;FRS86PSOREB0822;FR*SOD*S*SYDR*51*1*_*_;ESVRES SUR INDRE 6023 - RUE NATIONALE;;Rue François Pilatre de Rozier, 59500 Douai;85096;[4.740681, 45.70124];;FRS40EMB406912;FR*SOD*E*LYON*119*1*1*_;;;;;;;;;;;;;;;;;;;04093100158317;;;;;;;;;1.474702;47.794548;;Thaon;; +;Proviridis;;;;;;SUPER U LAMASTRE;FRS86PSOREB0821;FR*SOD*S*SYDR*50*1*_*_;SAINT-MAURICE BORNE 2;;5 ZA la Burlière, 13530 Trets;85084;[0.95397, 47.431032];;FRS40EMB406911;FR*SOD*E*LYON*119*2*1*_;;;;;;;;;;;;;;;;;;;01351664181341;;;;;;;;;1.390391;47.613725;;Ver-sur-Mer;; +;;;;;;;SUPER U GANGES;FRS86PSOREB0922;FR*SOD*S*SYDR*49*1*_*_;SONEPAR ANGERS;;A31 Aire de Loisy, 54700 Loisy;85081;[1.474702, 43.640079];;FRS40EMB406914;FR*SOD*E*LYON*119*2*2*_;;;;;;;;;;;;;;;;;;;30002250012258;;;;;;;;;0.222464;47.75244;;Verson;; +;;;;;;;SUPER U LA TOURETTE;FRS86PSOREB0921;FR*SOD*S*SYDR*53*1*_*_;Langres Noidant;;4 Accès Dépôt Orchestra, 34130 Saint-Aunès;85070;[1.390391, 47.276707];;FRS40EMB406913;FR*SOD*E*LYON*119*1*2*_;;;;;;;;;;;;;;;;;;;50000723533695;;;;;;;;;1.171846;47.751579;;Vierville-sur-Mer;; +;;;;;;;HYPER U AIZENAY;FRS86PSOREB1192;FR*SOD*S*SYDR*47*1*_*_;SAG CHARGEPOINT BORNE 1;;1911 Rte de Thuile, 38510 Saint Victor de Morestel;85128;[0.222464, 47.248199];;FRS40EMB407011;FR*SOD*E*LYON*182*1*1*_;;;;;;;;;;;;;;;;;;;12 145 730 813 770;;;;;;;;;2.503619;45.214781;;Villers-Bocage;; +;;;;;;;HYPER U BLAIN;FRS86PSOREB1191;FR*SOD*S*SYDR*46*1*_*_;Narbonne-Vinassan Nord;;2 Mnt du Beffroi, 26400 Grane;85135;[1.171846, 47.501399];;FRS40EMB407012;FR*SOD*E*LYON*174*1*2*_;;;;;;;;;;;;;;;;;;;25871635201270;;;;;;;;;1.173305;43.618714;;Villerville;; +;;;;;;;SUPER U SAVIGNEUX;FRS86PSOREB1272;FR*SOD*S*SYDR*45*1*_*_;St GERMAIN-DU-PUY - Eglise - 112986;;Rue d'Autriche, 84100 Orange;85152;[2.503619, 49.006164];;FRS40EMB407013;FR*SOD*E*LYON*181*1*2*_;;;;;;;;;;;;;;;;;;;30002210803401;;;;;;;;;1.25007;43.247782;;Cesny-les-Sources;; +;;;;;;;SUPER U ST LEGER DE LA MARTINIERE;FRS86PSOREB1271;FR*SOD*S*SYDR*44*1*_*_;PERNAY 5514 - RUE DE LA MAIRIE;;1A Rue Hans Arp, 67202 Wolfisheim;85060;[1.173305, 47.49941];;FRS40EMB407014;FR*SOD*E*LYON*172*2*1*_;;;;;;;;;;;;;;;;;;;30002212416538;;;;;;;;;1.400757;43.247576;;Ifs;; +;;;;;;;SUPER U TARASCON SUR ARIEGE;FRS86PSOREB0052;FR*SOD*S*SYDR*43*1*_*_;VILLANDRY 5060 - Parking du potager;;Place de la Mairie, 88310 Ventron;85151;[1.25007, 47.52429];;FRS40EMB407113;FR*SOD*E*LYON*173*2*1*_;;;;;;;;;;;;;;;;;;;50031637353110;;;;;;;;;2.2858;47.545012;;Valdallière;; +;;;;;;;SUPER U LE CHEYLARD;FRS86PSOREB0151;FR*SOD*S*SYDR*54*1*_*_;Mouxy;;22 Grande Rue, 14430 Dozulé;85150;[1.400757, 47.276675];;FRS40EMB407813;FR*SOD*E*LYON*173*2*2*_;;;;;;;;;;;;;;;;;;;02493921739010;;;;;;;;;1.01733;46.118881;;Urville;; +;;;;;;;MJS DISTRIBUTION;FRS86PSOREB1022;FR*SOD*S*SYDR*64*5*_*_;GVA LYON 9 ABB;;1 Rue Jean-Marie Merle, 69120 Vaulx-en-Velin;85146;[2.2858, 48.7998];;FRS40EMB407814;FR*SOD*E*LYON*173*1*2*_;;;;;;;;;;;;;;;;;;;25213748101165;;;;;;;;;1.060181;45.27639194;;Trévières;; +;;;;;;;SUPER U VIVONNE;FRS86PSOREB0082;FR*SOD*S*SYDR*60*1*_*_;Tavel Nord;;D39, 22830 Plouasne;85114;[1.01733, 47.68865];;FRS40EMB407811;FR*SOD*E*LYON*173*1*1*_;;;;;;;;;;;;;;;;;;;02547612154438;;;;;;;;;1.416839;43.826979;;La Caine;; +;;;;;;;SAS VERNAIDIS;FRS86PSOREB0402;FR*SOD*S*SYDR*64*7*_*_;PRUNIERS EN SOLOGNE 5013 - Salle des Fêtes;;Rue de la Croisée, 85000 Mouilleron-le-Captif;85113;[1.060181, 47.794548];;FRS40EMB408714;FR*SOD*E*LYON*172*1*2*_;;;;;;;;;;;;;;;;;;;02462373312955;;;;;;;;;0.68782;45.78501;;Trouville-sur-Mer;; +;;;;;;;SUPER U ST BONNET DE JOUX;FRS86PSOREB0512;FR*SOD*S*SYDR*63*8*_*_;ROMORANTIN LANTHENAY 5150;;Avenue du quai des fontaines, 51300 Vitry le François;85029;[1.416839, 47.613725];;FRS40EMB408513;FR*SOD*E*LYON*172*2*2*_;;;;;;;;;;;;;;;;;;;17309406635020;;;;;;;;;0.861458;48.599459;;Sainte-Honorine-du-Fay;; +;;;;;;;DLM MARCQ EN BAROEUL;FRS86PSOREB0511;FR*SOD*S*SYDR*63*5*_*_;LANGON 5162 - Route de Mennetou-Sur-Cher;;9129F Route de Corneilhan, 34500 Béziers;85027;[0.68782, 47.75244];;FRS40EMB408512;FR*SOD*E*LYON*172*1*1*_;;;;;;;;;;;;;;;;;;;6744/E1/078563449;;;;;;;;;5.685096;43.668879;;Lisieux;; +;;;;;;;4M RETAIL;FRS86PSOREB0702;FR*SOD*S*SYDR*63*7*_*_;GVA ÉCULLY ABB;;27 Rue René Descartes, 51110 Reims;85018;[0.861458, 47.751579];;FRS40EMB408511;FR*SOD*E*LYON*171*2*1*_;;;;;;;;;;;;;;;;;;;30001220207270;;;;;;;;;2.26932;43.29269;;Le Tronquay;; +;;;;;;;FOURNIER SAS;FRS86PSOREB0701;FR*SOD*S*SYDR*63*6*_*_;MAINTENON - Parking rue D'Harleville - 128960;;1 Avenue Georges Pompidou, 81100 Castres;85014;[5.685096, 45.214781];;FRS40EMB408612;FR*SOD*E*LYON*174*2*1*_;;;;;;;;;;;;;;;;;;;50074619647905;;;;;;;;;6.537008;46.835669;;Lion-sur-Mer;; +;;;;;;;Hôtel du Pont Vieux - Securecharge;FRS86PSOREB0391;FR*SOD*S*SYDR*62*1*_*_;MARBOUE - Avenue Aristide Briand - 134835;;Aire de repos de la Maxe, 57140 La Maxe;85012;[2.26932, 43.618714];;FRS40EMB408614;FR*SOD*E*LYON*171*1*2*_;;;;;;;;;;;;;;;;;;;15554703267038;;;;;;;;;6.536712;45.790201;;Le Molay-Littry;; +;;;;;;;PULLMAN;FRS86PSOREB0392;FR*SOD*S*SYDR*61*1*_*_;COURCOUE 5206 - Rue de Richelieu;;31 Place Ferry, 54710 Ludres;85011;[6.537008, 43.247782];;FRS40EMB402911;FR*SOD*E*LYON*171*1*1*_;;;;;;;;;;;;;;;;;;;21524167831566;;;;;;;;;0.744771;45.790203;;Livarot-Pays-d'Auge;; +;;;;;;;F.B. AUTOMOBILES;FRS86PSOREB0662;FR*SOD*S*SYDR*59*1*_*_;CUSSAY 5207 - Place du 8 Mai;;Aire du Village Catalan Ouest, A9, Sens Franc, 66300 Banyuls-dels-Aspres;85004;[6.536712, 43.247576];;FRS40EMB408611;FR*SOD*E*LYON*171*2*2*_;;;;;;;;;;;;;;;;;;;500 210 738 290 18;;;;;;;;;5.001365;47.09662;;Louvigny;; +;;;;;;;FRANCE ENVIRONNEMENT;FRS86PSOREB0591;FR*SOD*S*SYDR*58*1*_*_;SCI FONTENAY BORNE 1;;Rue du Stade, 37150 LA CROIX EN TOURAINE;85003;[0.744771, 47.545012];;FRS40EMB408712;FR*SOD*E*LYON*170*1*2*_;;;;;;;;;;;;;;;;;;;5000833108032;;;;;;;;;4.8280004;45.74865449;;Luc-sur-Mer;; +;;;;;;;Borne de recharge gratuite;FRS86PSOREB0661;FR*SOD*S*SYDR*57*1*_*_;MEHARI COR BORNE SE;;Parking de l'Eglise, 51260 St Just St Sauvage;85034;[5.001365, 46.118881];;FRS40EMB408713;FR*SOD*E*LYON*170*2*2*_;;;;;;;;;;;;;;;;;;;30002100000000;;;;;;;;;4.225126;47.821051;;Maltot;; +;;;;;;;aucun;FRS86PSOREB0672;FR*SOD*S*SYDR*56*1*_*_;NAZELLES NEGRON 4899 - Place des patis;;22 Route de l'Etrat, 42270 Saint-Priest-en-Jarez;85059;[4.8280004, 45.27639194];;FRS40EMB408711;FR*SOD*E*LYON*170*1*1*_;;;;;;;;;;;;;;;;;;;30000110910030;;;;;;;;;3.1344;47.08144;;Isigny-sur-Mer;; +;;;;;;;ENERGEM;FRS86PSOREB0671;FR*SOD*S*SYDR*55*1*_*_;SONEPAR CCF TOULOUSE;;A46 St Galmier Aut, 01390 Mionnay;85051;[4.225126, 43.826979];;FRS40EMB408813;FR*SOD*E*LYON*170*2*1*_;;;;;;;;;;;;;;;;;;;50088800000000;;;;;;;;;1.644529;46.731131;;Jort;; +;;;;;;;PARC DE PRAGNAT;FRS86PSOREB0992;FR*SOD*S*SYDR*42*1*_*_;NOYERS SUR CHER 4843 - Rue Saint Lazare;;3 Rue des Platriers, 69009 Lyon;85046;[3.1344, 45.78501];;FRS40EMB408411;FR*SOD*E*LYON*174*2*2*_;;;;;;;;;;;;;;;;;;;25821128732947;;;;;;;;;6.988249;46.79318772;;La Vespière-Friardel;; +;;;;;;;Daltoner Caen;FRS86PSOREB0991;FR*SOD*S*SYDR*24*1*_*_;LA CHAPELLE SUR LOIRE 4864 - Place Albert Ruell;;360 Boulevard du Parc, 62231 Coquelles;85042;[1.644529, 48.599459];;FRS40EMB408811;FR*SOD*E*LYON*174*1*1*_;;;;;;;;;;;;;;;;;;;19464109902887;;;;;;;;;5.423609;49.06124;;Langrune-sur-Mer;; +;;;;;;;TEM53;FRS86PSOREB0001;FR*SOD*S*SYDR*29*1*_*_;VEUZAIN 4866 - Rue de l'Ecrevissière;;Novotel Saint-Witz, Route De Survilliers, 95470 Saint-Witz;85035;[6.988249, 43.668879];;FRS40EMB408814;FR*SOD*E*LYON*181*1*1*_;;;;;;;;;;;;;;;;;;;50060002647508;;;;;;;;;-1.872837;48.182481;;Le Mesnil-Guillaume;; +;;;;;;;FGS;FRS86PSOREB0002;FR*SOD*S*SYDR*28*1*_*_;CHS1 BORNE 4;;Aire de Dracé A6, 69220 Dracé;85217;[5.423609, 43.29269];;FRS40EMB408812;FR*SOD*E*LYON*177*1*1*_;;;;;;;;;;;;;;;;;;;69299B5010;;;;;;;;;3.262097;47.06273;;Pont-l'Évêque;; +;;;;;;;Gite La Vicomterie;FRS86PSOREB0401;FR*SOD*S*SYDR*27*1*_*_;VEUZAIN 4880 - Ruelle des Planches;;Aire du Jardin des Arbres - A77, 45290 Varennes-Changy;85216;[-1.872837, 46.835669];;FRS40EMB408912;FR*SOD*E*LYON*180*1*2*_;;;;;;;;;;;;;;;;;;;50024254419221;;;;;;;;;3.262372;47.892491;;Ouilly-le-Vicomte;; +;;;;;;;SIEML;FRS86PSOREB0081;FR*SOD*S*SYDR*26*1*_*_;VALLOIRE SUR CISSE 4884 - Route de la Champagne;;Rue Paul Langevin, 37420 Beaumont en Véron;85215;[3.262097, 45.790201];;FRS40EMB408911;FR*SOD*E*LYON*180*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.39293;47.31485;;Ouistreham;; +;;;;;;;SYDELA;FRS86PSOREB0592;FR*SOD*S*SYDR*25*1*_*_;NOYERS SUR CHER 4999 - Place des Guerriers;;Avenue Marc Hamet, 51470 Saint-Memmie;85212;[3.262372, 45.790203];;FRS40EMB408913;FR*SOD*E*LYON*179*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.86274734;48.45013673;;Pont-d'Ouilly;; +;;;;;;;Daltoner;FRS86PSOREB0791;FR*SOD*S*SYDR*41*1*_*_;SONEPAR VENISSIEUX;;A7, Aire de Morières, 84310 Morières-lès-Avignon;85197;[2.39293, 47.09662];;FRS40EMB408914;FR*SOD*E*LYON*179*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.392645;47.35043589;;Orbec;; +;;;;;;;Réseau de charge 17 BOULEVARD CARNOT 03200 VICHY;FRS86PSOREB0711;FR*SOD*S*SYDR*23*1*_*_;SAINT AMAND LONGPRE 4911 - Place du 11 Out 1944;;Place Jeanne d'arc, 88000 Épinal;85194;[4.86274734, 45.74865449];;FRS40EMB409014;FR*SOD*E*LYON*178*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.415632;47.077214;;Saint-Denis-de-Méré;; +;;;;;;;ICS Schiltigheim;FRS86PSOREB0751;FR*SOD*S*SYDR*22*1*_*_;VENDOME 4919 - Rue des Etats-unis;;Aire du Village Catalan Est, A9, Sens Espagne, 66300 Banyuls-dels-Aspres;85222;[1.392645, 47.821051];;FRS40EMB409013;FR*SOD*E*LYON*178*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.638367;47.16264;;Potigny;; +;;;;;;;KEOLIS;FRS86PSOREB0752;FR*SOD*S*SYDR*21*1*_*_;SAINT CLAUDE DE DIRAY 4922;;Aire de Ceignes Haut Bugey, A40, 01430 Ceignes;85223;[2.415632, 47.08144];;FRS40EMB409011;FR*SOD*E*LYON*177*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.18557399;49.061104;;Ranville;; +;;;;;;;E.LECLERC;FRS86PSOREB0142;FR*SOD*S*SYDR*20*1*_*_;COUTURE SUR LOIR 4929-4930;;Rue du Colonel Beltrame, 55200 Commercy;85156;[2.638367, 46.731131];;FRS40EMB408514;FR*SOD*E*LYON*176*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.431281;49.061392;;Rots;; +;;;;;;;Ambroise avocat;FRS86PSOREB0141;FR*SOD*S*SYDR*19*1*_*_;MONTOIRE SUR LE LOIR 4931 - Rue Marecot;;17 Rue Mgr Millaux, 35220 Châteaubourg;85307;[2.18557399, 46.79318772];;FRS40EMB408414;FR*SOD*E*LYON*115*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.385027;43.56734;;Marolles;; +;;;;;;;Non concerné;FRS86PSOREB0101;FR*SOD*S*SYDR*30*1*_*_;SONEPAR LE VINOUX;;23 rue de la gare, 08430 Poix terron;85300;[1.431281, 49.06124];;FRS40EMB407812;FR*SOD*E*LYON*176*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.32158;48.013685;;Mathieu;; +;;;;;;;FLYOPS;FRS86PSOREB0102;FR*SOD*S*SYDR*31*1*_*_;WELDOM CASTRES BORNE 2;;Rue Marcel Géré, 41200 VILLEFRANCHE SUR CHER;85294;[1.385027, 48.182481];;FRS40EMB408111;FR*SOD*E*LYON*176*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.042746;43.061587;;Merville-Franceville-Plage;; +;;;;;;;MANUBOB;FRS86PSOREB0792;FR*SOD*S*SYDR*40*1*_*_;E.LECLERC BORNE 5 DC;;68 Rue Joseph Benatier, 85100 Les Sables-d'Olonne;85285;[2.32158, 47.06273];;FRS40EMB407912;FR*SOD*E*LYON*176*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.25506;48.102864;;Mézidon Vallée d'Auge;; +;;;;;;;AGP;FRS86PSOREB1021;FR*SOD*S*SYDR*39*1*_*_;E.LECLERC BORNE 3 DC;;Place de la Mairie, 37310 Courcay;85243;[0.042746, 47.892491];;FRS40EMB407913;FR*SOD*E*LYON*175*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.51529213;49.061634;;Moyaux;; +;;;;;;;edf;FRS86PSOREB1082;FR*SOD*S*SYDR*38*1*_*_;NOUZILLY 5512 - RUE DU PRIEURE;;Aire d’Ambrussum Nord A9, 34400 Villetelle;85226;[2.25506, 47.31485];;FRS40EMB407911;FR*SOD*E*LYON*175*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.19572406;47.30968;;Norolles;; +;;;;;;;OCR MAINTENANCE ELECTRONIQUE;FRS86PSOREB1081;FR*SOD*S*SYDR*37*1*_*_;CHATILLON CHARLES RIVER 2;;1 Rue Clerion, 13530 Trets;85224;[1.51529213, 48.45013673];;FRS40EMB407914;FR*SOD*E*LYON*175*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.390459;49.061551;;Morteaux-Coulibœuf;; +;;;;;;;HOTEL KYRIAD PARIS BEZONS;FRS86PSOREB1071;FR*SOD*S*SYDR*36*1*_*_;Saint-Rambert Est;;36 Rue des Bellangeres, 28630 Le Coudray;85182;[2.19572406, 47.35043589];;FRS40EMB408012;FR*SOD*E*LYON*175*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.05005;47.14505949;;Fontenilles;; +;;;;;;;Camaïeu France;FRS86PSOREB1072;FR*SOD*S*SYDR*34*1*_*_;MSP CLARENSAC BORNE 1;;rue de la croix Saint-André, 41230 GY EN SOLOGNE;85178;[2.390459, 47.077214];;FRS40EMB408014;FR*SOD*E*LYON*115*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.432073;47.07331786;;Fonsorbes;; +;;;;;;;Acelec;FRS86PSOREB1101;FR*SOD*S*SYDR*33*1*_*_;SONEPAR CONNECT CLERMONT-FER 1;;Avenue Gustave Eiffel, 36130 Déols;85172;[2.05005, 47.16264];;FRS40EMB408013;FR*SOD*E*LYON*111*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.431669;47.097181;;Fourquevaux;; +;;;;;;;MAS DES OLIVES;FRS86PSOREB1102;FR*SOD*S*SYDR*32*1*_*_;HANCHES - Rue de la barre - 134752;;2700 Rte de Sorgues, 84130 Le Pontet;85166;[1.432073, 49.061104];;FRS40EMB408011;FR*SOD*E*LYON*115*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.005494;47.559254;;Escalquens;; +;;;;;;;PARC BOIS DIEU;FRS86PSOREB0712;FR*SOD*S*SYDR*64*6*_*_;GERANIUMS OPIO BORNE 1;;14h Rue du Patis Tatelin, 35700 Rennes;85164;[1.431669, 49.061392];;FRS40EMB408113;FR*SOD*E*LYON*102*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.481157;47.601158;;Frontignan-de-Comminges;; +;;;;;;;PARC DEPAGNEUX;FRGLYPLYON18612;FR*SOD*S*SYDR*64*8*_*_;SONEPAR MARSEILLE;;Aire-jardin des Causses du Lot A20, 46240 Coeur-de-Causse;85163;[2.005494, 43.56734];;FRS40EMB408112;FR*SOD*E*LYON*101*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.589824;47.025656;;Cintegabelle;; +;;;;;;;ADL;FRGLYPLYON19112;FR*SOD*S*SYDR*14*1*_*_;HU CHALLANS BORNE 1;;Aire de Rosny-Sud A13, 78710 Rosny-sur-Seine;85160;[1.481157, 48.013685];;FRS40EMB408114;FR*SOD*E*LYON*101*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.622504;47.839764;;Encausse-les-Thermes;; +;;;;;;;PARC LAGUNE SUD;FRGLYPLYON19122;FR*SOD*S*SYDR*11*1*_*_;SUPERUPDC BORNE 4;;Rue du Lionnais, 49220 Grez-Neuville;85190;[0.589824, 43.061587];;FRS40EMB408412;FR*SOD*E*LYON*101*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.430694;45.675954;;Eaunes;; +;;;;;;;AUTEL EUROPE GmbH;FRGLYPLYON19121;FR*SOD*S*SYDR*12*1*_*_;SUPERUPDC BORNE 1;;Parc de Saules, 27100 Val de Reuil;14701;[-1.622504, 48.102864];;FRS40EMB408214;FR*SOD*E*LYON*101*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.501811;46.56209;;Cierp-Gaud;; +;;;;;;;WAAT;FRGLYPLYON18722;FR*SOD*S*SYDR*13*1*_*_;BOURGES - Parc Comitec - 93955;;20 Av. des Grottes de Passelourdain, 86280 Saint-Benoît;14200;[1.430694, 49.061634];;FRS40EMB408213;FR*SOD*E*LYON*102*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.431084;47.14286071;;Caubiac;; +;;;;;;;Norauto - Bornes publiques;FRGLYPLYON18721;FR*SOD*S*SYDR*10*1*_*_;ALPTIS 25CAT PLACE 35 36;;365 Av. des Paluds, 13400 Aubagne;14190;[4.501811, 47.30968];;FRS40EMB409214;FR*SOD*E*LYON*102*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.42903752;48.967538;;Fronton;; +;;;;;;;CARF - Bornes Publiques;FRGLYPLYON18711;FR*SOD*S*SYDR*15*1*_*_;MARCHENOIR 2930 - Route de Blois;;A89, 24330 Boulazac Isle Manoire;14762;[1.431084, 49.061551];;FRS40EMB408211;FR*SOD*E*LYON*102*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.65022261;46.92545849;;Labège;; +;;;;;;;EVzen;FRGLYPLYON18712;FR*SOD*S*SYDR*16*1*_*_;BOURGES - LAHITOLLE - 96889;;Rue Blaise Pascal, 24200 Sarlat-la-Canéda;14182;[2.42903752, 47.14505949];;FRS40EMB408212;FR*SOD*E*LYON*103*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.439158;47.447922;;Frouzins;; +;;;;;;;Atlante;FRGLYPLYON18422;FR*SOD*S*SYDR*17*1*_*_;CHARENTON-du-Cher - Rue Nationale - 214305;;3 Cité de Passelourdain, 86280 Saint-Benoît;14202;[2.65022261, 47.07331786];;FRS40EMB408312;FR*SOD*E*LYON*100*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.446997;47.23177;;Lanta;; +;;;;;;;ENGIE MAMP - Bornes publiques;FRGLYPLYON18611;FR*SOD*S*SYDR*9*1*_*_;LA CELLE-CONDE - Mairie - 148843;;Parking de l'Hotel Dieu, 37230 Luynes;14225;[0.439158, 47.097181];;FRS40EMB408313;FR*SOD*E*LYON*103*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.026326;48.31185045;;Castelmaurou;; +;;;;;;;SOMIMAR - Bornes publiques;FRGLYPLYON18512;FR*SOD*S*SYDR*18*1*_*_;RAW PARISGIVERNY 10;;Rue de Couleuvrou, 37390 NOTRE DAME D'OE;14005;[2.446997, 47.559254];;FRS40EMB408311;FR*SOD*E*LYON*103*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.03166;47.10178143;;Lagardelle-sur-Lèze;; +;;;;;;;WattzHub;FRGLYPLYON18511;FR*SOD*S*SYDR*5*1*_*_;BONNEVAL - Promenade du Mail - 129287;;Place de l'Eglise, 37120 Jaulnay;14215;[2.026326, 47.601158];;FRS40EMB408314;FR*SOD*E*LYON*103*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.262646;47.52983244;;Lafitte-Vigordane;; +;;;;;;;GreenYellow Shift Mobility;FRGLYPLYON19111;FR*SOD*S*SYDR*2*1*_*_;LA CHAPELLE ST URSIN - Mairie - 108359;;A85 Aire, 49160 Longué-Jumelles;14221;[3.03166, 47.025656];;FRS40EMB408413;FR*SOD*E*LYON*104*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.768718;47.111991;;Labroquère;; +;;;;;;;Proviridis;FRGLYPLYON18412;FR*SOD*S*SYDR*3*1*_*_;SUPER U LA SUZE BORNE 2;;21 Rue Pierre de Luxembourg, 55130 Treveray;14011;[0.262646, 47.839764];;FRS40EMB403012;FR*SOD*E*LYON*104*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.20101;47.00417;;Labarthe-sur-Lèze;; +;;;;;;;;FRGLYPLYON18421;FR*SOD*S*SYDR*4*1*_*_;NEUVY S/ BARANGEON - Mairie - 109655;;Rue Guy Vasselais, 28700 AUNEAU BLEURY ST SYMPHORIEN;14166;[4.768718, 45.675954];;FRS40EMB406513;FR*SOD*E*LYON*104*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.84443388;47.30317135;;Léguevin;; +;;;;;;;;FRGLYPLYON18411;FR*SOD*S*SYDR*6*1*_*_;CHARTRES - Avenue Des Sablons - 129928;;5 Rue du Cantal, 91090 Lisses;14229;[2.20101, 46.56209];;FRS40EMB402912;FR*SOD*E*LYON*104*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.461195;49.061255;;La Salvetat-Saint-Gilles;; +;;;;;;;;FRGLYPLYON18312;FR*SOD*S*SYDR*65*1*_*_;NANCAY - Mairie - 109617;;D11, 37460 Loché-sur-Indrois;14137;[1.84443388, 47.14286071];;FRS40EMB401312;FR*SOD*E*LYON*100*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.40725547;48.27051423;;Grenade;; +;;;;;;;;FRGLYPLYON18311;FR*SOD*S*SYDR*7*1*_*_;BOURGES - Plateau d'Auron - 98368;;4 Place Gambetta, 28220 CLOYES-SUR-LE-LOIR;14658;[2.461195, 48.967538];;FRS40EMB401211;FR*SOD*E*LYON*100*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.307908;46.951868;;Gratens;; +;;;;;;;;FRGLYPLYON11631;FR*SOD*S*SYDR*8*1*_*_;MEREAU - Place de la Mairie - 112328;;D403 super U, 14460 Colombelles;14162;[2.40725547, 46.92545849];;FRS40EMB401112;FR*SOD*E*LYON*105*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.49023;47.268943;;Gardouch;; +;;;;;;;;FRGLYPLYON12021;FR*SOD*S*SYDR*66*2*_*_;RAW PARISGIVERNY 63;;6 Rue Auguste Marliot, 59540 Caudry;14266;[2.307908, 47.447922];;FRS40EMB401111;FR*SOD*E*LYON*97*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.99115189;43.42185;;Beauchalot;; +;;;;;;;;FRGLYPLYON11731;FR*SOD*S*AVPT*8*1*_*_;RAW PARISGIVERNY 21;;2 Rue Brummel, 14530 Luc-sur-Mer;14165;[2.49023, 47.23177];;FRS40EMB401011;FR*SOD*E*LYON*94*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.28396022;48.543534;;Auzeville-Tolosane;; +;;;;;;;;FRGLYPLYON18212;FR*SOD*S*AVPT*7*1*_*_;ITM PUYLAURENS BRVE ITM 81;;Place du Château, 41400 CHISSAY EN TOURAINE;14177;[0.99115189, 48.31185045];;FRS40EMB401012;FR*SOD*E*LYON*94*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.30708873;48.40772761;;Belberaud;; +;;;;;;;;FRGLYPLYON11641;FR*SOD*S*AVPT*5*1*_*_;VILLEMAURY - Place Saint Martin - 134823;;1210 Av. Dwight Eisenhower, 84200 Carpentras;14174;[2.28396022, 47.10178143];;FRS40EMB40912;FR*SOD*E*LYON*95*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.729634;50.540027;;Barbazan;; +;;;;;;;;FRGLYPLYON11611;FR*SOD*S*AVPT*3*2*_*_;Gourdan Polignan;;E611, A42, 01120 Dagneux;14319;[1.30708873, 47.52983244];;FRS40EMB40911;FR*SOD*E*LYON*95*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.265967;47.671469;;Bagnères-de-Luchon;; +;;;;;;;;FRGLYPLYON11621;FR*SOD*S*AVPT*2*1*_*_;SONEPAR CESSON-SEVIGNE;;80 Rte de la Paoute, 06130 Grasse;14275;[0.729634, 47.111991];;FRS40EMB40812;FR*SOD*E*LYON*96*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5261468;50.755426;;Avignonet-Lauragais;; +;;;;;;;;FRGLYPLYON11711;FR*SOD*S*AVPT*1*1*_*_;RAW PARISGIVERNY 22;;26 Avenue de Bellande, 07200 Aubenas;14303;[2.265967, 47.00417];;FRS40EMB40811;FR*SOD*E*LYON*96*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.431005;48.115521;;Auterive;; +;;;;;;;;FRGLYPLYON11721;FR*SOD*S*AVPT*4*1*_*_;Lochères;;30 Rue Pasteur, 28240 La Loupe;14309;[2.5261468, 47.30317135];;FRS40EMB40711;FR*SOD*E*LYON*97*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.62672506;47.533105;;Castanet-Tolosan;; +;;;;;;;;FRGLYPLYON11741;FR*SOD*S*MB24*93*1*_*_;RAW PARISGIVERNY 23;;Place Aristide Briand, 28130 Maintenon;14310;[1.431005, 49.061255];;FRS40EMB40712;FR*SOD*E*LYON*98*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.948825;48.52747;;Aurignac;; +;;;;;;;;FRGLYPLYON11822;FR*SOD*S*MB24*78*1*_*_;FUSSY - La poste - 207176;;Route d'Arches, 88220 RAON AUX BOIS;14311;[1.62672506, 48.27051423];;FRS40EMB40611;FR*SOD*E*LYON*100*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.373159;48.343955;;Auribail;; +;;;;;;;;FRGLYPLYON12012;FR*SOD*S*MB24*103*1*_*_;FARGES EN SEPTAINE - Mairie - 188336;;16 Avenue Marc CHAPPEY, 28500 Vernouillet;14312;[2.948825, 46.951868];;FRS40EMB40612;FR*SOD*E*LYON*98*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.598593;49.3797657;;Aspet;; +;;;;;;;;FRGLYPLYON11821;FR*SOD*S*MB24*102*1*_*_;THENEUIL 16754 - Grande Rue;;197 Le Plan Ouest, 83830 Callas;14325;[1.373159, 47.268943];;FRS40EMB40511;FR*SOD*E*LYON*98*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.01794363;43.632368;;Antichan-de-Frontignes;; +;;;;;;;;FRGLYPLYON11811;FR*SOD*S*MB24*77*1*_*_;ARGENT-sur-Sauldre - Place du Marché - 207811;;Place de la Mairie, 28260 Sorel-Moussel;14127;[-0.598593, 43.42185];;FRS40EMB40512;FR*SOD*E*LYON*98*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.13248609;47.179275;;Laréole;; +;;;;;;;;FRGLYPLYON11812;FR*SOD*S*MB24*79*1*_*_;LAMOTTE-BEUVRON- 117722- Rue Ernest Gaugiran;;Aire de Maison Dieu, A6, 89420 Guillon-Terre-Plaine;14338;[2.01794363, 48.543534];;FRS40EMB40411;FR*SOD*E*LYON*99*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.63058;45.903285;;Bessières;; +;;;;;;;;FRGLYPLYON11911;FR*SOD*S*MB24*81*1*_*_;COURS-LES*BARRES - Grande Rue - 181472;;Place Exelmans, 55000 BAR LE DUC;14236;[1.13248609, 48.40772761];;FRS40EMB40412;FR*SOD*E*LYON*99*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.239974;48.993908;;Boudrac;; +;;;;;;;;FRGLYPLYON11921;FR*SOD*S*MB24*82*1*_*_;HYPERU BORNE 3;;9 Rue Aristide Berges, 82000 Montauban;14242;[2.63058, 50.540027];;FRS40EMB40312;FR*SOD*E*LYON*99*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.250812;49.2429735;;Carbonne;; +;;;;;;;;FRGLYPLYON11922;FR*SOD*S*MB24*84*1*_*_;CGED CGED BRIGNAIS;;34 Rue Charles de Gaulle, 88160 Le Thillot;14243;[1.239974, 47.671469];;FRS40EMB40311;FR*SOD*E*LYON*99*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.184395;48.225489;;Caraman;; +;;;;;;;;FRGLYPLYON11912;FR*SOD*S*MB24*104*1*_*_;CHATEAUMEILLANT - Place de l'église - 182394;;rue jean Jacques ROUSSEAU, 37270 MONTLOUIS SUR LOIRE;14274;[2.250812, 50.755426];;FRS40EMB40212;FR*SOD*E*LYON*105*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.806087;47.404129;;Capens;; +;;;;;;;;FRGLYPLYON18211;FR*SOD*S*MB24*106*1*_*_;GRACAY - Place Gapion - 206002;;Aire de Jonchets - Les Récompenses A5, 77130 Seine-et-Marne;14269;[1.184395, 48.115521];;FRS40EMB40211;FR*SOD*E*LYON*105*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.68742;49.654708;;Calmont;; +;;;;;;;;FRGLYPLYON17412;FR*SOD*S*MB24*107*1*_*_;MANUTAN 16;;Parking Rue Pinceloup, 28700 BEVILLE LE COMTE;14271;[1.806087, 47.533105];;FRS40EMB40112;FR*SOD*E*LYON*115*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.494161;47.410482;;Cadours;; +;;;;;;;;FRGLYPLYON18112;FR*SOD*S*MB24*108*1*_*_;LEVET - Mairie - 150932;;Aire de Verdun Saint Nicolas Nord, 55160 Haudiomont;14126;[1.68742, 48.52747];;FRS40EMB40111;FR*SOD*E*LYON*112*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.37289291;48.600134;;Buzet-sur-Tarn;; +;;;;;;;;FRGLYPLYON17221;FR*SOD*S*MB24*109*1*_*_;MÉNÉTRÉOL-SUR-SAULDRE - Place de l'Eglise - 147512;;Le Peron, 56350 Allaire;14076;[1.494161, 48.343955];;FRS40EMB409212;FR*SOD*E*LYON*169*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.493841;45.611787;;Bretx;; +;;;;;;;;FRGLYPLYON17321;FR*SOD*S*MB24*110*1*_*_;THIRON-GARDAIS - Place du Marché - 130987;;Rue du Commandant St Sernin, 88220 Xertigny;14062;[1.37289291, 49.3797657];;FRS40EMB409211;FR*SOD*E*LYON*111*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.332896;47.19505287;;Boussens;; +;;;;;;;;FRGLYPLYON17322;FR*SOD*S*MB24*111*1*_*_;MARMAGNE - Place de la mairie - 109050;;Impasse du Chaintre, 53150 Montsûrs;14066;[5.493841, 43.632368];;FRS40EMB409311;FR*SOD*E*LYON*111*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.930531;47.22576477;;Boulogne-sur-Gesse;; +;;;;;;;;FRGLYPLYON17312;FR*SOD*S*MB24*112*1*_*_;CHAILLES 2956 - Rue des Cormiers;;38 Rue de la Gare, 54180 Houdemont;14070;[5.332896, 47.179275];;FRS40EMB409312;FR*SOD*E*LYON*111*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.299441;46.907568;;Bouloc;; +;;;;;;;;FRGLYPLYON17311;FR*SOD*S*MB24*113*1*_*_;BOSSEE - 117836 - PLACE DE LA MAIRIE;;1 All. des Frères Lumière, 89000 Auxerre;14101;[0.930531, 45.903285];;FRS40EMB409213;FR*SOD*E*LYON*112*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.7737244;47.491274;;Launac;; +;;;;;;;;FRGLYPLYON17212;FR*SOD*S*MB24*85*1*_*_;St FLORENT SUR CHER - La Vigonnière - 179307;;Rue Philippe Séguin, 88000 Épinal;14135;[2.299441, 48.993908];;FRS40EMB402811;FR*SOD*E*LYON*112*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.133247;45.317662;;Saint-Clar-de-Rivière;; +;;;;;;;;FRGLYPLYON17222;FR*SOD*S*MB24*100*1*_*_;HENRICHEMONT - Eglise - 113070;;189 Avenue des Druides, 56340 Carnac;14077;[0.7737244, 49.2429735];;FRS40EMB401212;FR*SOD*E*LYON*112*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.593695;47.032703;;Saint-Sulpice-sur-Lèze;; +;;;;;;;;FRGLYPLYON17211;FR*SOD*S*MB24*94*1*_*_;RAW PARISGIVERNY 13;;Rue de Châteaudun, 28150 LES VILLAGES VOVEENS;14079;[4.133247, 48.225489];;FRS40EMB409111;FR*SOD*E*LYON*113*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.54027;49.34888;;Saint-Lys;; +;;;;;;;;FRGLYPLYON17121;FR*SOD*S*MB24*95*1*_*_;VOVES - Bd Maurice Violette - 134417;;Avenue Maréchal Foch, 18120 Massay;14727;[0.593695, 47.404129];;FRS40EMB401311;FR*SOD*E*LYON*110*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.608736;47.082201;;Saint-Gaudens;; +;;;;;;;;FRGLYPLYON17421;FR*SOD*S*MB24*96*1*_*_;LA GUERCHE - Place Auguste FOURNIER - 151547;;14 Av. de l'Europe, 02400 Château-Thierry;14083;[4.54027, 49.654708];;FRS40EMB402112;FR*SOD*E*LYON*113*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.382251;47.532264;;Saint-Élix-le-Château;; +;;;;;;;;FRGLYPLYON17112;FR*SOD*S*MB24*97*1*_*_;SAINT AIGNAN 2954 - Place du Président Wilson;;Rue du Moulin-sur-Allier, 88580 SAULCY SUR MEURTHE;14085;[0.608736, 47.410482];;FRS40EMB402712;FR*SOD*E*LYON*113*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.212795;48.647444;;Sainte-Foy-d'Aigrefeuille;; +;;;;;;;;FRGLYPLYON17111;FR*SOD*S*MB24*114*1*_*_;Lacq Audéjos Sud;;23 rue de la Carolerie, 18140 Sancergues;14060;[1.382251, 48.600134];;FRS40EMB402812;FR*SOD*E*LYON*113*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.56562948;46.895598;;Saiguède;; +;;;;;;;;FRGLYPLYON17122;FR*SOD*S*MB24*98*1*_*_;Dourdan;;76 Bd de Buffon, 53000 Laval;14057;[5.212795, 45.611787];;FRS40EMB401411;FR*SOD*E*LYON*114*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3184578;44.369325;;Pouy-de-Touges;; +;;;;;;;;FRGLYPLYON17012;FR*SOD*S*MB24*99*1*_*_;LE THIEULIN - Rue de la mairie - 134175;;6 route de Chaon, 18410 Brinon sur Sauldre;14006;[2.56562948, 47.19505287];;FRS40EMB402711;FR*SOD*E*LYON*114*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.046277;47.273001;;Rouffiac-Tolosan;; +;;;;;;;;FRGLYPLYON17022;FR*SOD*S*MB24*101*1*_*_;BIOPATH HDF BETHUNE;;Square de la Mairie, 18390 Brecy;14016;[2.3184578, 47.22576477];;FRS40EMB402612;FR*SOD*E*LYON*114*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.437891;48.24397;;Roquettes;; +;;;;;;;;FRGLYPLYON17011;FR*SOD*S*MB24*86*1*_*_;LA CHAPELLE VENDOMOISE 3803;;2 Les Quatre Chemins, 85140 Essarts-en-Bocage;14654;[3.046277, 46.907568];;FRS40EMB402511;FR*SOD*E*LYON*114*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.810449;50.638442;;Rieux-Volvestre;; +;;;;;;;;FRGLYPLYON17021;FR*SOD*S*MB24*92*1*_*_;BIOPATH HDF SAINT-OMER;;Route de sancerre, 18250 Henrichemont;14020;[2.437891, 47.491274];;FRS40EMB402512;FR*SOD*E*LYON*110*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.651837;48.450232;;Rieumes;; +;;;;;;;;FRGLYPLYON17422;FR*SOD*S*MB24*91*1*_*_;CHATILLON EN DUNOIS - rue de Courtalain - 134208;;16 Pl. de la Pyrotechnie, 18000 Bourges;14021;[4.810449, 45.317662];;FRS40EMB402412;FR*SOD*E*LYON*110*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.09289;47.618868;;Ramonville-Saint-Agne;; +;;;;;;;;FRGLYPLYON17411;FR*SOD*S*MB24*90*1*_*_;NEUNG SUR BEUVRON - Henry de Geoffre - 167613;;Rue Charles de Gaulle, 51170 Ville-en-Tardenois;14037;[2.651837, 47.032703];;FRS40EMB402411;FR*SOD*E*LYON*105*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.729526;43.456489;;Sainte-Foy-de-Peyrolières;; +;;;;;;;;FRGLYPLYON18111;FR*SOD*S*MB24*89*1*_*_;GALLARDON - Résidence de la tour - 129289;;Place de la Poste, 18160 CHEZAL BENOIT;14643;[0.09289, 49.34888];;FRS40EMB402311;FR*SOD*E*LYON*107*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.528385;45.850533;;Sengouagnet;; +;;;;;;;;FRGLYPLYON17711;FR*SOD*S*MB24*87*1*_*_;La Chapelle-Vendômoise | Chemin des Coulisses;;Quai du Canal, 18300 Dun-sur-Auron;14046;[2.729526, 47.082201];;FRS40EMB402312;FR*SOD*E*LYON*106*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.533494;49.005955;;Villemur-sur-Tarn;; +;;;;;;;;FRGLYPLYON18012;FR*SOD*S*MB24*88*1*_*_;DAMMARIE - Place de l'église - 137348;;5, Le Port, 18240 Lere;14047;[2.528385, 47.532264];;FRS40EMB402212;FR*SOD*E*LYON*106*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.730751;48.97530229;;Villefranche-de-Lauragais;; +;;;;;;;;FRGLYPLYON18011;FR*SOD*S*MB24*131*1*_*_;Charleval;;Rue de la grève, 28800 Bonneval;14692;[1.533494, 48.647444];;FRS40EMB402211;FR*SOD*E*LYON*106*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.586006;48.783972;;Vieille-Toulouse;; +;;;;;;;;FRGLYPLYON17911;FR*SOD*S*MB24*115*1*_*_;Meyrargues;;Rue des Gobbiers, 18340 Plaimpied-Givaudins;14119;[2.730751, 46.895598];;FRS40EMB402611;FR*SOD*E*LYON*106*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.598126;48.946919;;Verfeil;; +;;;;;;;;FRGLYPLYON17912;FR*SOD*S*MB24*141*1*_*_;Aire de Pont Chêne d'Argent;;Place de la Résistance, 18300 Saint-Satur;14120;[2.586006, 44.369325];;FRS40EMB402111;FR*SOD*E*LYON*107*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.48426;47.223166;;Venerque;; +;;;;;;;;FRGLYPLYON17812;FR*SOD*S*MB24*142*1*_*_;SONEPAR CONNECT SAINT-JUNIEN;;Rue du Flocmagny, 51000 Châlons-en-Champagne;14121;[0.598126, 47.273001];;FRS40EMB401712;FR*SOD*E*LYON*107*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.973989;49.091377;;Valentine;; +;;;;;;;;FRGLYPLYON17811;FR*SOD*S*MB24*143*1*_*_;SONEPAR CONNECT SOISY;;Rue de la Meurthe, 88100 ST MARGUERITE;14100;[1.48426, 48.24397];;FRS40EMB401412;FR*SOD*E*LYON*107*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.491615;48.961659;;Valcabrère;; +;;;;;;;;FRGLYPLYON17712;FR*SOD*S*MB24*144*1*_*_;Shell Aire du Domaine d'Harcourt HW;;Rue de Remiremont, 88000 Épinal;14589;[2.973989, 50.638442];;FRS40EMB401511;FR*SOD*E*LYON*108*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.131711;48.953695;;Urau;; +;;;;;;;;FRGLYPLYON17611;FR*SOD*S*MB24*145*1*_*_;Troyes Sud;;4 Rue Gustave Eiffel, 69360 Saint-Symphorien-d'Ozon;14610;[1.491615, 48.450232];;FRS40EMB402012;FR*SOD*E*LYON*110*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.851806;48.48067742;;Tarabel;; +;;;;;;;;FRGLYPLYON11541;FR*SOD*S*MB24*146*1*_*_;Fondettes 7613 - Rue de l'Aubrière;;D 941, 87200 Rochechouart;14061;[6.131711, 47.618868];;FRS40EMB401612;FR*SOD*E*LYON*108*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.22626;48.610027;;Seysses;; +;;;;;;;;FRGLYPLYON17622;FR*SOD*S*MB24*147*1*_*_;Launois sur Vence - 1 rue Louis Joly - 129231;;Place du Général de Gaulle, 88430 Corcieux;14630;[5.851806, 43.456489];;FRS40EMB401611;FR*SOD*E*LYON*108*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.503833;50.125142;;L'Isle-en-Dodon;; +;;;;;;;;FRGLYPLYON17612;FR*SOD*S*MB24*149*1*_*_;Fondettes 7736 - Rue Alfred de Musset;;Rue de la Papeterie, 88000 Dinoze;14064;[4.22626, 45.850533];;FRS40EMB401512;FR*SOD*E*LYON*108*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.34514679;48.6947;;Miramont-de-Comminges;; +;;;;;;;;FRGLYPLYON17621;FR*SOD*S*MB24*150*1*_*_;TREMBLAY LES VILLAGES - Rue Taugourdeau - 130903;;Prairie des Gimonets, 18250 Henrichemont;14659;[2.503833, 49.005955];;FRS40EMB401711;FR*SOD*E*LYON*109*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.912567;47.123171;;Merville;; +;;;;;;;;FRGLYPLYON17511;FR*SOD*S*MB24*140*1*_*_;l'Isle-d'Abeau;;Place du Monument, 18380 LA CHAPELLE D'ANGILLON;14172;[4.34514679, 48.97530229];;FRS40EMB401812;FR*SOD*E*LYON*109*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.889667;46.957;;Massabrac;; +;;;;;;;;FRGLYPLYON17521;FR*SOD*S*MB24*138*1*_*_;Les Aix d'Angillon - Rte de Bourges - 205346;;Avenue du Gal De Gaulle, 18230 Saint Doulchard;14679;[4.912567, 48.783972];;FRS40EMB401811;FR*SOD*E*LYON*109*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.010984;47.2896;;Martres-Tolosane;; +;;;;;;;;FRGLYPLYON17522;FR*SOD*S*MB24*132*1*_*_;ALLOGNY - Rue de l'abreuvoir - 186205;;D4 - Route de St VITTE, 18360 Vesdun;14682;[4.889667, 48.946919];;FRS40EMB401911;FR*SOD*E*LYON*109*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.89263;48.88282251;;Longages;; +;;;;;;;;FRGLYPLYON17512;FR*SOD*S*MB24*130*1*_*_;APREMONT - Parking de l'église - 201975;;Place de la Mairie, 18170 Le Chatelet;14666;[5.010984, 47.223166];;FRS40EMB401912;FR*SOD*E*LYON*169*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.319038;47.390752;;Lherm;; +;;;;;;;;FRGLYPLYON11531;FR*SOD*S*MB24*129*1*_*_;AUBIGNY-SUR-NERE - Gymnase - 147205;;Les Carcillières, 78270 Bonnieres sur Seine;14147;[4.89263, 49.091377];;FRS40EMB402011;FR*SOD*E*LYON*164*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.384208;49.340218;;Montaigut-sur-Save;; +;;;;;;;;FRGLYPLYON11131;FR*SOD*S*MB24*128*1*_*_;SONEPAR CHANAS;;Plc des Erables, 88200 ROVILLE AUX CHENES;14676;[4.319038, 48.961659];;FRTDAEAVTD2011;FR*SOD*E*LYON*169*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.160305;48.047523;;Le Fousseret;; +;;;;;;;;FRGLYPLYON11521;FR*SOD*S*MB24*127*1*_*_;AVORD - Alouettes - 206381;;Place Saint Georges, 18210 Bannegon;14557;[4.384208, 48.953695];;FRTDAEAVTD1011;FR*SOD*E*LYON*132*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.674677;47.28643;;Le Fauga;; +;;;;;;;;FRGLYPLYON10221;FR*SOD*S*MB24*126*1*_*_;CGED DEAUVILLE;;1 RUE DE BEAUCE, 28190 COURVILLE SUR EURE;14562;[1.160305, 48.48067742];;FRTDAEAVTD1811;FR*SOD*E*LYON*134*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.411334;49.088602;;Lavernose-Lacasse;; +;;;;;;;;FRGLYPLYON10111;FR*SOD*S*MB24*133*1*_*_;BAUGY - Rue de la Halle - 206419;;A26 Aire de Sommesous, 51320 Sommesous;14558;[1.674677, 48.610027];;FRTDAEAVTD1662;FR*SOD*E*LYON*134*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.20983;48.591197;;Lavelanet-de-Comminges;; +;;;;;;;;FRGLYPLYON10121;FR*SOD*S*MB24*134*1*_*_;BLANCAFORT-Place de la Mairie-150331;;Le Bourg, 18270 Reigny;14563;[3.411334, 50.125142];;FRTDAEAVTD1661;FR*SOD*E*LYON*133*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.45919;48.298942;;Plaisance-du-Touch;; +;;;;;;;;FRGLYPLYON10141;FR*SOD*S*MB24*135*1*_*_;NOGENT-LE-ROI -Pkg du Marché aux Chevaux - 139383;;2 Rue de l'Arsenal, 28140 ORGERES-EN-BEAUCE;14574;[6.20983, 48.6947];;FRTDAEAVTD1541;FR*SOD*E*LYON*133*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.3399;47.354024;;Montastruc-la-Conseillère;; +;;;;;;;;FRGLYPLYON10131;FR*SOD*S*MB24*136*1*_*_;BLET - Château - 186579;;7 rue Maurice Roy, 18000 Bourges;14578;[0.45919, 47.123171];;FRTDAEAVTD1542;FR*SOD*E*LYON*133*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.7177;46.682133;;Nailloux;; +;;;;;;;;FRGLYPLYON10241;FR*SOD*S*MB24*137*1*_*_;Rodez;;Avenue du General de Gaulle, 18230 Saint-Doulchard;14474;[0.3399, 46.957];;FRTDAEAVTD1411;FR*SOD*E*LYON*133*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.47865754;47.52712;;Pins-Justaret;; +;;;;;;;;FRGLYPLYON10211;FR*SOD*S*MB24*121*1*_*_;ARTANNES SUR INDRE 9051 - Place de la Liberté;;Parking Coubertin, 18000 Bourges;14685;[0.7177, 47.2896];;FRTDAEAVTD1311;FR*SOD*E*LYON*132*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.666942;48.906003;;Pinsaguel;; +;;;;;;;;FRGLYPLYON10231;FR*SOD*S*MB24*125*1*_*_;LE GAULT SAINT DENIS - Place de l'église - 134509;;Rue du moulin, 28200 Moléans;14739;[1.47865754, 48.88282251];;FRTDAEAVTD1211;FR*SOD*E*LYON*132*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.869877;48.716747;;Peyssies;; +;;;;;;;;FRGLYPLYON10311;FR*SOD*S*MB24*124*1*_*_;SONEPAR LILLE;;14 Rue Antoine Parmentier, 02100 Saint-Quentin;14738;[0.666942, 47.390752];;FRTDAEAVTD412;FR*SOD*E*LYON*134*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.163071;47.756018;;Pechbonnieu;; +;;;;;;;;FRGLYPLYON10041;FR*SOD*S*MB24*123*1*_*_;CHARTRES - Bd Foch - 129905;;Rue de Séraucourt, 18000 Bourges;14745;[4.869877, 49.340218];;FRTDAEAVTD811;FR*SOD*E*LYON*132*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.984678;48.769477;;Noé;; +;;;;;;;;FRGLYPLYON10321;FR*SOD*S*MB24*122*1*_*_;SONEPAR VESOUL;;26 Rte de la Justice, 05000 Gap;14752;[3.163071, 48.047523];;FRTDAEAVTD621;FR*SOD*E*LYON*131*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.823047;48.208833;;Montréjeau;; +;;;;;;;;FRGLYPLYON10331;FR*SOD*S*MB24*120*1*_*_;HYPER U BORNE 1 DC;;75 Le Petit Himbaumont, 88420 Moyenmoutier;14755;[0.984678, 47.28643];;FRTDAEAVTD522;FR*SOD*E*LYON*131*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.567431;49.061843;;Montjoire;; +;;;;;;;;FRGLYPLYON10341;FR*SOD*S*MB24*162*1*_*_;Loire;;2 Rue des Remparts, 28210 Coulombs;14150;[-0.823047, 49.088602];;FRTDAEAVTD521;FR*SOD*E*LYON*131*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.244511;48.32166905;;Montesquieu-Volvestre;; +;;;;;;;;FRGLYPLYON10421;FR*SOD*S*MB24*119*1*_*_;CHS1 BORNE 3;;Route de Bourges, 18350 Nerondes;14341;[1.567431, 48.591197];;FRTDAEAVTD411;FR*SOD*E*LYON*131*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.654346;45.716052;;Montberon;; +;;;;;;;;FRGLYPLYON10411;FR*SOD*S*MB24*118*1*_*_;ST MARTIN/PRE - 40811 - Rte Louvois;;Place du 11 août, 28400 Nogent-le-Rotrou;14726;[1.244511, 48.298942];;FRTDAEAVTD321;FR*SOD*E*LYON*130*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.264386;47.633002;;Gueux;; +;;;;;;;;FRGLYPLYON10431;FR*SOD*S*MB24*117*1*_*_;SERMAIZE LES BAINS - 40907 - Rue de Saint Dizier;;Route de Saint Mihiel, 55210 VIGNEULLES LES HATTONCHATEL;14719;[0.654346, 47.354024];;FRTDAEAVTD221;FR*SOD*E*LYON*130*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.460099;50.539301;;Arlay;; +;;;;;;;;FRGLYPLYON10441;FR*SOD*S*MB24*116*1*_*_;GIVRY EN ARGONNE - 40897 - Pkg Centre Commercial;;Autoroute de la Maurienne, 73500 Freney;14711;[0.264386, 46.682133];;FRTDAEAVTD191;FR*SOD*E*LYON*134*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.005171;48.081364;;Varennes-Changy;; +;;;;;;;;FRGLYPLYON10031;FR*SOD*S*MB24*76*1*_*_;Gevrey-Chambertin Est;;4 Rue Sœur Saint-Henri, 28310 JANVILLE-EN-BEAUCE;14616;[0.460099, 47.52712];;FRTDAEAVTD2412;FR*SOD*E*LYON*135*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.625279;50.352072;;La Sure en Chartreuse;; +;;;;;;;;FRGLYPLYON10021;FR*SOD*S*MB24*151*1*_*_;STE MENEHOULD - 40867 - Place d'Austerlitz;;31 Rue de la Mude, 79000 Niort Saint-Florent;14122;[4.005171, 48.906003];;FRTDAEAVTD2411;FR*SOD*E*LYON*130*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.192719;48.31978104;;Orschwiller;; +;;;;;;;;FRGLYPLYON10531;FR*SOD*S*MB24*155*2*_*_;ST MEMMIE - 40802 - Rue de Poix;;Place de la République, 08300 Rethel;14715;[4.625279, 48.716747];;FRTDAEAVTD721;FR*SOD*E*LYON*140*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.848956;49.26254;;Maizières-lès-Metz;; +;;;;;;;;FRGLYPLYON9711;FR*SOD*S*MB24*152*1*_*_;PONTGOUIN - Place des halles - 137387;;Parking Co-voiturage, 08300 Le Châtelet sur Retourne;14592;[1.192719, 47.756018];;FRS86ESOREB0281;FR*SOD*E*LYON*143*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.189542;49.852902;;Giberville;; +;;;;;;;;FRGLYPLYON9412;FR*SOD*S*MB24*153*2*_*_;Epernon - Rue du Général Leclerc;;Parking Co-voiturage, 08190 Brienne sur Aisne;14366;[4.848956, 48.769477];;FRS86ESOREB0631;FR*SOD*E*LYON*143*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.432082;48.325104;;Glanon;; +;;;;;;;;FRGLYPLYON9422;FR*SOD*S*MB24*154*2*_*_;CAUDRY MUSEE;;Rue de la Libération, 51370 Saint Brice Courcelles;14714;[1.189542, 48.208833];;FRS86ESOREB0252;FR*SOD*E*LYON*142*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.80373021;48.072181;;Freney;; +;;;;;;;;FRGLYPLYON9512;FR*SOD*S*MB24*156*2*_*_;NANCY - Parking PZ stade marcel picot - 187497;;Aire De Verdun Saint Nicolas Sud, A4, 55160 Haudiomont;14365;[1.432082, 49.061843];;FRS86ESOREB0601;FR*SOD*E*LYON*142*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.92147;47.40762349;;Gevrey-Chambertin;; +;;;;;;;;FRGLYPLYON9511;FR*SOD*S*MB24*161*1*_*_;CROUZILLES - 56267 - Parking Ronsard;;Le Pont Félix, 44590 Derval;14370;[0.80373021, 48.32166905];;FRS86ESOREB0602;FR*SOD*E*LYON*141*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.852306;49.290951;;Annecy;; +;;;;;;;;FRGLYPLYON9612;FR*SOD*S*MB24*157*2*_*_;FAYE LA VINEUSE 19690 - Place de la Huchette;;Place Victor Hugo, 08300 Rethel;14371;[5.92147, 45.716052];;FRS86ESOREB1041;FR*SOD*E*LYON*141*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.65424;48.069902;;Villaines-la-Gonais;; +;;;;;;;;FRGLYPLYON9611;FR*SOD*S*MB24*158*1*_*_;MONTBAZON 19674 - Route Nationale;;Autoroute des Anglais Autoroute A26 - Aire De, 62860 Rumaucourt;14383;[1.852306, 47.633002];;FRS86ESOREB1042;FR*SOD*E*LYON*140*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.924876;48.21094659;;Caulnes;; +;;;;;;;;FRGLYPLYON9712;FR*SOD*S*MB24*159*1*_*_;LA CHAUSSEE-D'IVRY - Place de l'Eglise - 139414;;4 Route de Nogent le Roi, 28500 SAINTE GEMME MORONVAL;14384;[2.65424, 50.539301];;FRS86ESOREB0771;FR*SOD*E*LYON*139*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.484881;49.073952;;L'Hospitalet-du-Larzac;; +;;;;;;;;FRGLYPLYON9821;FR*SOD*S*MB24*160*1*_*_;LA RICHE 1257;;1 Rue de Sanssat, 03300 Cusset;14396;[6.924876, 48.081364];;FRS86ESOREB0772;FR*SOD*E*LYON*135*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.8226861;48.70356;;Albaret-Sainte-Marie;; +;;;;;;;;FRGLYPLYON10011;FR*SOD*S*MB24*5*1*_*_;GRANDPRE - Rue de Montlix - 144223;;11 Rue du Général Louis Artous, 12110 Cransac;14342;[2.484881, 50.352072];;FRS86ESOREB1121;FR*SOD*E*LYON*139*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.981914;48.42602984;;Précy-sur-Vrin;; +;;;;;;;;FRGLYPLYON9812;FR*SOD*S*MB24*31*1*_*_;Piffonds;;42 Rue de Créhange, 57380 Faulquemont;14345;[0.8226861, 48.31978104];;FRS86ESOREB1122;FR*SOD*E*LYON*138*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.261027;43.448813;;Perrogney-les-Fontaines;; +;;;;;;;;FRGLYPLYON9811;FR*SOD*S*MB24*26*1*_*_;Super Chargeur Sublaines A85 CCS;;Aire de Saint-Léger A1, 62128 Saint-Léger;14740;[3.981914, 49.26254];;FRS86ESOREB0472;FR*SOD*E*LYON*138*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.064474;48.97577513;;L'Isle-d'Abeau;; +;;;;;;;;FRGLYPLYON9822;FR*SOD*S*MB24*27*1*_*_;Caumont-sur-Aure;;Hailo France, 86300 Chapelle-Viviers;14354;[3.261027, 49.852902];;FRS86ESOREB0471;FR*SOD*E*LYON*137*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.871981;49.130925;;Éguilly;; +;;;;;;;;FRGLYPLYON9921;FR*SOD*S*MB24*28*1*_*_;PIERRES - Place Marcel Rouleau - 128891;;Saint-Sébastien, 29870 Lannilis;14421;[1.064474, 48.325104];;FRS86ESOREB0951;FR*SOD*E*LYON*137*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.62133245;50.352127;;Néronde;; +;;;;;;;;FRGLYPLYON9911;FR*SOD*S*MB24*29*1*_*_;ILLIERS-COMBRAY - place Maunoury - 134925;;15 rue du général Patton, 28702 Bleury St Symphorien;14514;[6.871981, 48.072181];;FRS86ESOREB0952;FR*SOD*E*LYON*136*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.120891;47.553475;;Longvic;; +;;;;;;;;FRGLYPLYON9931;FR*SOD*S*MB24*30*1*_*_;JOUÉ-LES-TOURS 15746 - Hervé Thermique;;12 Avenue de la Baltique, 91140 Villebon-sur-Yvette;14487;[0.62133245, 47.40762349];;FRS86ESOREB0632;FR*SOD*E*LYON*136*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.867606;47.249526;;Longué-Jumelles;; +;;;;;;;;FRGLYPLYON9941;FR*SOD*S*MB24*32*1*_*_;LUMELEC NEUVILLE;;Place du 14 juillet, 18000 Bourges;14488;[4.120891, 49.290951];;FRS86ESOREB0841;FR*SOD*E*LYON*130*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.16588111;48.040627;;Noyant-de-Touraine;; +;;;;;;;;FRGLYPLYON10541;FR*SOD*S*MB24*25*1*_*_;SONZAY 1584;;Place de la Résistance, 18700 AUBIGNY SUR NERE;14764;[6.867606, 48.069902];;FRS86ESOREB0071;FR*SOD*E*LYON*129*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.878221;48.202498;;Darvault;; +;;;;;;;;FRGLYPLYON10521;FR*SOD*S*MB24*33*1*_*_;BLANCS COTEAUX - 40985 - Boulebard Jean Brion;;Place Vivin-Rue de l'Eglise, 88220 Hadol;14478;[1.16588111, 48.21094659];;FRS86ESOREB0072;FR*SOD*E*LYON*169*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.19429;43.202944;;Capendu;; +;;;;;;;;FRGLYPLYON11511;FR*SOD*S*MB24*34*1*_*_;MAROLLES - 40928 - Rue Saint Hubert;;Rue Paul Gauchery , 18000 Bourges;14572;[3.878221, 49.073952];;FRS86ESOREB0641;FR*SOD*E*LYON*122*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.92882606;48.857906;;Châteauneuf;; +;;;;;;;;FRGLYPLYON11221;FR*SOD*S*MB24*35*1*_*_;SELOMMES 3964 - Rue de la Mairie;;Aire de service de Pech Montat Ouest, A20, 46600 Cressensac;14516;[6.19429, 48.70356];;FRS86ESOREB0642;FR*SOD*E*LYON*124*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.473152;49.249985;;Sailly-Flibeaucourt;; +;;;;;;;;FRGLYPLYON16911;FR*SOD*S*MB24*36*1*_*_;PARGNY SUR SAULX - 40915 - Place Jean Monet;;Place Saint Jean, 28000 Chartres;14530;[2.92882606, 48.42602984];;FRS86ESOREB0891;FR*SOD*E*LYON*124*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.46809232;48.42006;;Rumaucourt;; +;;;;;;;;FRGLYPLYON11141;FR*SOD*S*MB24*37*1*_*_;YEVRES - Rue du pont - 134257;;22B Bd Kelsch, 88400 Gérardmer;14543;[6.473152, 43.448813];;FRS86ESOREB0892;FR*SOD*E*LYON*124*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.531267;48.098514;;Bedenac;; +;;;;;;;;FRGLYPLYON11111;FR*SOD*S*MB24*24*1*_*_;RAW PARISGIVERNY 01;;Place du Tilleul, 88400 Gerardmer;14403;[4.46809232, 48.97577513];;FRS86ESOREB0582;FR*SOD*E*LYON*123*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.485743;49.213219;;Villerbon;; +;;;;;;;;FRGLYPLYON11121;FR*SOD*S*MB24*38*1*_*_;NOGENT-LE-ROTROU - Rue Maison Maraine - 139030;;18 Bd Kelsch, 88400 Gérardmer;14407;[4.531267, 49.130925];;FRS86ESOREB0581;FR*SOD*E*LYON*123*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.328899;49.301307;;Saint-Sulpice-les-Feuilles;; +;;;;;;;;FRGLYPLYON11231;FR*SOD*S*MB24*17*1*_*_;SONEPAR GRESY;;Aire de Gueux, A4., 51140 Gueux;14409;[2.485743, 50.352127];;FRS86ESOREB1051;FR*SOD*E*LYON*123*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.496372;48.09518;;Bolleville;; +;;;;;;;;FRGLYPLYON11211;FR*SOD*S*MB24*12*1*_*_;YVOY LE MARRON-Parking de l’église-200504;;Place de l'hôtel de ville, 28240 La Loupe;14431;[0.328899, 47.553475];;FRS86ESOREB1052;FR*SOD*E*LYON*123*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.470224;49.013191;;Bonneville;; +;;;;;;;;FRGLYPLYON11241;FR*SOD*S*MB24*13*1*_*_;SONEPAR BETHUNE 1;;Route de Vielfond, 18100 Vierzon;14460;[1.496372, 47.249526];;FRS86ESOREB1062;FR*SOD*E*LYON*122*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.944969;48.445765;;Yzeure;; +;;;;;;;;FRGLYPLYON11311;FR*SOD*S*MB24*14*1*_*_;XONRUPT LONGEMER - All des Ecoliers - 145648-CCS;;97 Rte de Béthune, 62223 Sainte Catherine;14466;[1.470224, 48.040627];;FRS86ESOREB1061;FR*SOD*E*LYON*125*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.317688;48.871712;;Foëcy;; +;;;;;;;;FRGLYPLYON11021;FR*SOD*S*MB24*15*1*_*_;TINCQUES BORNE 2 AC;;Place de l'Eglise, 88230 Plainfaine;14452;[5.944969, 48.202498];;FRS86ESOREB0181;FR*SOD*E*LYON*122*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.440394;49.251015;;Ceignes;; +;;;;;;;;FRGLYPLYON11331;FR*SOD*S*MB24*16*1*_*_;NOGENT-LE-ROTROU - Rue du château - 139015;;Rue de la Baronie, 28350 Saint-Lubin-des-Joncherets;31188;[2.317688, 43.202944];;FRS86ESOREB0251;FR*SOD*E*LYON*122*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.977766;51.031205;;Farges-Allichamps;; +;;;;;;;;FRGLYPLYON11321;FR*SOD*S*MB24*75*1*_*_;St Brice Courcelles - 93668 - 4 août 1789;;Rue du Port, 18150 Cuffy;31187;[1.440394, 48.857906];;FRS86ESOREB0012;FR*SOD*E*LYON*121*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.71418;47.948716;;Chigny-les-Roses;; +;;;;;;;;FRGLYPLYON11341;FR*SOD*S*MB24*18*1*_*_;SONEPAR SAINT-QUENTIN;;19 Rue nationale, 85250 Saint-Fulgent;31192;[3.977766, 49.249985];;FRS86ESOREB0011;FR*SOD*E*LYON*121*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.123919;49.24513;;Gasville-Oisème;; +;;;;;;;;FRGLYPLYON11441;FR*SOD*S*MB24*19*1*_*_;COMBRES - Place de l'Église - 139348;;Aire de Bedenac Est, N10, 17210 Bedenac;31169;[-1.71418, 48.42006];;FRS86ESOREB0882;FR*SOD*E*LYON*121*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.344638;47.177667;;Déols;; +;;;;;;;;FRGLYPLYON11411;FR*SOD*S*MB24*20*1*_*_;GERARDMER - Place des Déportés - 145636 - CCS;;Rue du Champ de Foire, 18000 Bourges;31200;[1.123919, 48.098514];;FRS86ESOREB0762;FR*SOD*E*LYON*121*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.320071;48.442585;;Giscos;; +;;;;;;;;FRGLYPLYON11421;FR*SOD*S*MB24*21*1*_*_;FONDETTES 1248 - Rue Edouard Branly;;Place François Chapus, 18290 Charost;31145;[-0.344638, 49.213219];;FRS86ESOREB0761;FR*SOD*E*LYON*120*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.693474;48.737629;;Val-de-Reuil;; +;;;;;;;;FRGLYPLYON11431;FR*SOD*S*MB24*22*1*_*_;WITRY LES REIMS - 41643 - Place Gambetta;;Cours Anatole France, 18000 Bourges;31167;[4.320071, 49.301307];;FRS86ESOREB0371;FR*SOD*E*LYON*124*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8708;49.082242;;Vrigny;; +;;;;;;;;FRGLYPLYON11041;FR*SOD*S*MB24*23*1*_*_;GERARDMER - Av. de la Ville de Vichy - 145510-CCS;;D252, Rte de Mesquer, 44350 Guérande;31165;[-0.693474, 48.09518];;FRS86ESOREB0372;FR*SOD*E*LYON*125*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.495829;49.210139;;Parcé-sur-Sarthe;; +;;;;;;;;FRGLYPLYON11011;FR*SOD*S*MB24*39*1*_*_;BROU - place de l'hôtel de ville - 134921;;Rue de l'Eglise, 28500 Vert-en-Drouais;31144;[3.8708, 49.013191];;FRS86ESOREB0832;FR*SOD*E*LYON*129*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.54109;48.689084;;Sisteron;; +;;;;;;;;FRGLYPLYON10511;FR*SOD*S*MB24*11*1*_*_;Damery - 93748 - Place rue Paul Douce;;2 Rue du Château d'Eau, 78360 Montesson;31126;[1.495829, 48.445765];;FRS86ESOREB0831;FR*SOD*E*LYON*127*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.991429;49.366192;;Soissons;; +;;;;;;;;FRGLYPLYON10731;FR*SOD*S*MB24*60*1*_*_;SAINT MAX - Parking Champlain - 203728;;15 La Frm du Manoir, 27310 Bosgouet;31202;[3.54109, 48.871712];;FRS86ESOREB0522;FR*SOD*E*LYON*120*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.371518;47.234257;;Dracé;; +;;;;;;;;FRGLYPLYON10631;FR*SOD*S*MB24*54*1*_*_;Aire de Jonchets - La Grande Paroisse;;Rue Jacques Rimbault, 18000 Bourges;31254;[3.991429, 49.251015];;FRS86ESOREB0521;FR*SOD*E*LYON*129*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.859535;48.264249;;Tavel;; +;;;;;;;;FRGLYPLYON10611;FR*SOD*S*MB24*55*1*_*_;BORNE HU LOCATION U;;La Brande Nord, 24110 Saint-Léon-sur-l'Isle;31203;[2.371518, 51.031205];;FRS86ESOREB0312;FR*SOD*E*LYON*129*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.025731;49.146104;;Monnaie;; +;;;;;;;;FRGLYPLYON10621;FR*SOD*S*MB24*56*1*_*_;L'Epine - 40008 - Rue des Moissons;;Rue Cécile Brunschvicg, 54510 Tomblaine;31271;[1.859535, 47.948716];;FRS86ESOREB0311;FR*SOD*E*LYON*128*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.161148;48.099579;;Les Bordes-Aumont;; +;;;;;;;;FRGLYPLYON10641;FR*SOD*S*MB24*58*1*_*_;SUIPPES - 39992 - Place de l'Hotel de Ville;;27 Rue du Gave, 64150 Os Marsillon;31117;[4.025731, 49.24513];;FRS86ESOREB0802;FR*SOD*E*LYON*128*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.493938;48.138462;;Valleiry;; +;;;;;;;;FRGLYPLYON10711;FR*SOD*S*MB24*59*1*_*_;TINCQUES BORNE 1 DC;;Lieu-dit "Sarrade", 82500 Beaumont-de-Lomagne;31263;[2.161148, 47.177667];;FRS86ESOREB0801;FR*SOD*E*LYON*128*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.414958;49.141384;;Haudiomont;; +;;;;;;;;FRGLYPLYON10741;FR*SOD*S*MB24*61*1*_*_;Couesmes;;Aire de Mas d\'Agenais, A62, 47430 Le Mas-d\'Agenais;31261;[1.493938, 48.442585];;FRS86ESOREB0421;FR*SOD*E*LYON*128*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.977128;49.086712;;Lignerolles;; +;;;;;;;;FRGLYPLYON10721;FR*SOD*S*MB24*53*1*_*_;MEUSNES-121603-Rue Paul Couton;;9 Impasse des Genivres, 03160 Bourbon-l'Archambault;31255;[1.414958, 48.737629];;FRS86ESOREB0422;FR*SOD*E*LYON*127*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.174924;48.299421;;Veyre-Monton;; +;;;;;;;;FRGLYPLYON10811;FR*SOD*S*MB24*62*1*_*_;VILLEMAURY - Rue de Murgers - 134810;;Aire de Hastingues Sud, A64, 40300 Hastingues;31248;[3.977128, 49.082242];;FRS86ESOREB1012;FR*SOD*E*LYON*125*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.073028;47.057907;;Vidauban;; +;;;;;;;;FRGLYPLYON11031;FR*SOD*S*MB24*63*1*_*_;VITTEL - Rue Robert de Flers - 145771 - CCS;;A43, 73390 Chateauneuf;31291;[6.174924, 49.210139];;FRS86ESOREB1011;FR*SOD*E*LYON*127*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.307805;48.333791;;Banyuls-dels-Aspres;; +;;;;;;;;FRGLYPLYON10841;FR*SOD*S*MB24*64*1*_*_;Carcassonne;;Aire de L'Obrion A31, 54700 Loisy;31526;[1.073028, 48.689084];;FRS86ESOREB0501;FR*SOD*E*LYON*127*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.647127;48.605856;;La Bosse;; +;;;;;;;;FRGLYPLYON10821;FR*SOD*S*MB24*65*1*_*_;ANET - 1 Rue LENOTRE - 139423;;Aire de service de Pech Montat Est, A20, 46600 Cressensac;31232;[3.307805, 49.366192];;FRS86ESOREB0502;FR*SOD*E*LYON*126*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.752446;49.175214;;Armissan;; +;;;;;;;;FRGLYPLYON10831;FR*SOD*S*MB24*66*1*_*_;TINQUEUX - 41686 -Rue Sarah Bernhardt;;2 Avenue des Deux Vallées, 59554 Raillencourt-Sainte-Olle;31229;[-1.647127, 47.234257];;FRS86ESOREB0322;FR*SOD*E*LYON*126*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.162963;48.917944;;Saint-Rambert-d'Albon;; +;;;;;;;;FRGLYPLYON10931;FR*SOD*S*MB24*52*1*_*_;Combourg;;12 Rue Christian Huygens, 37100 Tours;31210;[1.752446, 48.264249];;FRS86ESOREB0321;FR*SOD*E*LYON*126*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.046298;45.400288;;Saint-Witz;; +;;;;;;;;FRGLYPLYON10921;FR*SOD*S*MB24*45*1*_*_;ARROU - rue du docteur Vaisbuch - 134214;;Autoroute A11, 49480 Saint-Sylvain d'Anjou;31050;[4.162963, 49.146104];;FRS86ESOREB0091;FR*SOD*E*LYON*126*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.9805;49.264755;;Nemours;; +;;;;;;;;FRGLYPLYON10941;FR*SOD*S*MB24*40*1*_*_;CGED CAEN;;Voie Jacques Prevert, 83460 Les Arcs;31035;[6.046298, 48.099579];;FRS86ESOREB0092;FR*SOD*E*LYON*125*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.365981;49.264588;;Savigny-en-Terre-Plaine;; +;;;;;;;;FRGLYPLYON10911;FR*SOD*S*MB24*41*1*_*_;PONTFAVERGER - 42468 - Rue de la gare;;Aire des Herbiers, 85500 Les Herbiers;31057;[0.9805, 48.138462];;FRS86ESOREB0041;FR*SOD*E*LYON*144*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.788295;44.51506617;;Mionnay;; +;;;;;;;;FRGLYPLYON16912;FR*SOD*S*MB24*42*1*_*_;Mayenne;;Rue du stade, 88200 Saint-Amé;31045;[4.365981, 49.141384];;FRS86ESOREB0042;FR*SOD*E*LYON*144*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.243168;43.458331;;Labastide-Saint-Pierre;; +;;;;;;;;FRGLYPLYON16421;FR*SOD*S*MB24*43*1*_*_;St MARTIN D'ABLOIS - 42569 - Rue Julien Ducos;;3 Calsacy, 15600 Maurs;31042;[3.788295, 49.086712];;FRS86ESOREB0681;FR*SOD*E*LYON*144*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.101471;47.45647829;;Allan;; +;;;;;;;;FRGLYPLYON16921;FR*SOD*S*MB24*44*1*_*_;CHARTRES - Place Morard - 130744;;34 Boulevard de l'Europe, 13127 Vitrolles;31037;[1.243168, 48.299421];;FRS86ESOREB0682;FR*SOD*E*LYON*161*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.836236;49.225489;;Saint-Aunès;; +;;;;;;;;FRGLYPLYON13221;FR*SOD*S*MB24*46*1*_*_;Montmirail - 93789 - Parking Rochefoucauld;;211 Av. Jean Jaurès, 51100 Reims;31033;[1.101471, 47.057907];;FRS86ESOREB0881;FR*SOD*E*LYON*163*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.679155;48.717581;;Mornas;; +;;;;;;;;FRGLYPLYON13421;FR*SOD*S*MB24*47*1*_*_;TINQUEUX - 66955 - Pl du commerce;;53 Rue des Graviers, 78200 Magnanville;31113;[0.836236, 48.333791];;FRS86ESOREB0182;FR*SOD*E*LYON*162*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.222709;45.344595;;Steenvoorde;; +;;;;;;;;FRGLYPLYON13412;FR*SOD*S*MB24*48*1*_*_;18B95097;;1 Rue René Cassin, 14280 Saint-Contest;31028;[1.679155, 48.605856];;FRS86ESOREB0861;FR*SOD*E*LYON*162*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.404936;46.064297;;Saran;; +;;;;;;;;FRGLYPLYON13311;FR*SOD*S*MB24*49*1*_*_;Orléans Nord;;45 Rue du Faubourg Saint-Antoine, 75011 Paris;31027;[4.222709, 49.175214];;FRS86ESOREB0862;FR*SOD*E*LYON*162*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.586678;47.715684;;Rosny-sur-Seine;; +;;;;;;;;FRGLYPLYON13321;FR*SOD*S*MB24*50*1*_*_;REIMS René THYS - 41688 -Chaussée Bocquaine;;1 Square du Huit Mai 1945, 18500 Mehun-sur-Yèvre;31020;[4.404936, 48.917944];;FRS86ESOREB0622;FR*SOD*E*LYON*162*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.025412;47.31321;;Onet-le-Château;; +;;;;;;;;FRGLYPLYON13322;FR*SOD*S*MB24*51*1*_*_;FOECY - Rue Gaston Cornavin - 143319;;Route de Montigny, 28220 CLOYES SUR LE LOIR;31009;[1.586678, 45.400288];;FRS86ESOREB0352;FR*SOD*E*LYON*161*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.103658;47.356158;;Rely;; +;;;;;;;;FRGLYPLYON13312;FR*SOD*S*MB24*10*1*_*_;CHARTRES - Rue Pierre Mendes France - 130752;;Place de Schweinfurt, 28200 Chateaudun;31275;[4.025412, 49.264755];;FRS86ESOREB0561;FR*SOD*E*LYON*161*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.78081763;47.363383;;Verniolle;; +;;;;;;;;FRGLYPLYON13222;FR*SOD*S*MB24*2*1*_*_;SAINTE GEMME MORONVAL - Rte de Moronval - 130561;;Mail Pierre Charlot, 41000 Blois;31066;[4.103658, 49.264588];;FRS86ESOREB0562;FR*SOD*E*LYON*161*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.863764;47.71724;;La Salle;; +;;;;;;;;FRGLYPLYON13211;FR*SOD*S*MB24*68*1*_*_;CHAMPILLON - 42589 - Rue Jean Jaurés;;Rue Didier DAURAT, 18000 Bourges;31078;[4.78081763, 44.51506617];;FRS86ESOREB0901;FR*SOD*E*LYON*163*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.67407399;47.685381;;Cressensac-Sarrazac;; +;;;;;;;;FRGLYPLYON13422;FR*SOD*S*MB24*69*1*_*_;Maizières-lès-Metz | Route de Mézière;;La Verrière, 88240 La Vôge les Bains;31107;[5.863764, 43.458331];;FRS86ESOREB0902;FR*SOD*E*LYON*160*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.052451;48.313407;;Villers-Carbonnel;; +;;;;;;;;FRGLYPLYON13212;FR*SOD*S*MB24*70*1*_*_;BREZOLLES - Rue de la Ferté - 128792;;118 Rue Henri Gautier, 44550 Montoir-de-Bretagne;31106;[0.67407399, 47.45647829];;FRS86ESOREB0571;FR*SOD*E*LYON*160*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.369631;47.805809;;Pont-de-l'Arche;; +;;;;;;;;FRGLYPLYON13112;FR*SOD*S*MB24*71*1*_*_;Soissons Ouest;;Aire de Veyre, A75, 63690 Veyre-Monton;31104;[4.052451, 49.225489];;FRS86ESOREB0572;FR*SOD*E*LYON*159*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.818785;47.880445;;Saint-Philbert-sur-Risle;; +;;;;;;;;FRGLYPLYON13111;FR*SOD*S*MB24*72*1*_*_;SONEPAR SAINT HERBLAIN;;Aire de service de Bolleville Ouest, A29, 76210 Bolleville;31100;[1.369631, 48.717581];;FRS86ESOREB0022;FR*SOD*E*LYON*159*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.411364;47.7913;;Verneuil d'Avre et d'Iton;; +;;;;;;;;FRGLYPLYON13121;FR*SOD*S*MB24*73*1*_*_;YMONVILLE - Rue du Haut C hemin - 134341;;Place de l'Eglise, 18240 Boulleret;31098;[4.818785, 45.344595];;FRS86ESOREB0021;FR*SOD*E*LYON*158*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.605512;47.918855;;Giverny;; +;;;;;;;;FRGLYPLYON13122;FR*SOD*S*MB24*74*1*_*_;VERZY - 42108 - Rue Chanzy;;Aire de Béziers-Montblanc (sud), 34290 Montblanc;31094;[6.411364, 46.064297];;FRS86ESOREB1201;FR*SOD*E*LYON*158*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.03553;47.803382;;Pîtres;; +;;;;;;;;FRGLYPLYON13022;FR*SOD*S*MB24*6*1*_*_;Bonvillet;;AUTOROUTE A72 - AIRE DE LA PLAINE DU FOREZ OUEST, 42600 Magneux-Haute-Rive;31089;[1.605512, 47.715684];;FRS86ESOREB1202;FR*SOD*E*LYON*158*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.744565;47.901046;;Lieurey;; +;;;;;;;;FRGLYPLYON13011;FR*SOD*S*MB24*9*1*_*_;LA BAZOCHE-GOUET - Rue des fossés - 134878;;81 Av. de Montélimar, 84840 Lapalud;31080;[2.03553, 47.31321];;FRS86ESOREB1141;FR*SOD*E*LYON*163*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.74353;47.793571;;Fleury-sur-Andelle;; +;;;;;;;;FRGLYPLYON13411;FR*SOD*S*MB24*8*1*_*_;MOURMELON LE GRAND - 42093 -Rue du Maréchal Joffre;;41 Chem. de Labraouste, 40700 Hagetmau;31079;[1.744565, 47.356158];;FRS86ESOREB1142;FR*SOD*E*LYON*163*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.612878;48.468156;;Rugles;; +;;;;;;;;FRGLYPLYON13512;FR*SOD*S*MB24*7*1*_*_;Reuil;;150 Av. d'Albi, 81400 Blaye-les-Mines;31281;[1.74353, 47.363383];;FRS86ESOREB0551;FR*SOD*E*LYON*144*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.560186;47.04476;;Saint-Georges-du-Vièvre;; +;;;;;;;;FRGLYPLYON13012;FR*SOD*S*MB24*4*1*_*_;ILLIERS-COMBRAY - Rue des trois mariés - 137321;;11 Rte de Bram, 11000 Carcassonne;31475;[1.612878, 47.71724];;FRS86ESOREB0552;FR*SOD*E*LYON*167*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.831243;43.418629;;Breteuil;; +;;;;;;;;FRGLYPLYON14012;FR*SOD*S*MB24*3*1*_*_;SAINT HIPPOLYTE 15629 - Parking du Stade;;A64 Aire De Garonne, 31410 Capens;31517;[1.560186, 47.685381];;FRS86ESOREB0341;FR*SOD*E*LYON*168*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.995529;47.746526;;Pont-Audemer;; +;;;;;;;;FRGLYPLYON14312;FR*SOD*S*RMBT*28*1*_*_;MARGON - Rue de la Cloche - 139073;;AIRE CO-VOITURAGE RD 50, 37240 Manthelan;31499;[0.831243, 48.313407];;FRS86ESOREB0342;FR*SOD*E*LYON*168*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.809068;47.010678;;Saint-Ouen-du-Tilleul;; +;;;;;;;;FRGLYPLYON14311;FR*SOD*S*RMBT*30*1*_*_;EPERNON - Avenue de la Prairie - 130906;;La Ceriseraie, 76270 Quièvrecourt;31483;[0.995529, 47.805809];;FRS86ESOREB1032;FR*SOD*E*LYON*168*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.0739;46.812997;;Serquigny;; +;;;;;;;;FRGLYPLYON14212;FR*SOD*S*RMBT*29*1*_*_;VAL DE VESLE - 41910 -Rue du Général de Gaulle;;Grande Rue, 51590 Vanault Les Dames;31476;[0.809068, 47.880445];;FRS86ESOREB1031;FR*SOD*E*LYON*168*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.085881;47.18535428;;Le Vaudreuil;; +;;;;;;;;FRGLYPLYON14211;FR*SOD*S*RMBT*24*1*_*_;SARRY - 41698 - Rue Basse;;A. des Anglais A26, Aire De, Support Number, 10150 Charmont-sous-Barbuise;31480;[1.0739, 47.7913];;FRS86ESOREB0171;FR*SOD*E*LYON*167*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.070766;48.06675;;Gisors;; +;;;;;;;;FRGLYPLYON14112;FR*SOD*S*RMBT*27*1*_*_;LE GAULIAT BORNE 1;;Aire de Lagarde, 48200 Albaret-Sainte-Marie;31466;[1.085881, 47.918855];;FRS86ESOREB0172;FR*SOD*E*LYON*167*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.929588;46.96955;;Bernay;; +;;;;;;;;FRGLYPLYON14111;FR*SOD*S*RMBT*26*1*_*_;REIMS St Thomas - 41690 -Rue Perin;;41 Rue Jean Jaurès, 51110 Bazancourt;31436;[1.070766, 47.803382];;FRS86ESOREB0531;FR*SOD*E*LYON*167*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.070017;48.60777195;;Saint-André-de-l'Eure;; +;;;;;;;;FRGLYPLYON14011;FR*SOD*S*RMBT*25*1*_*_;CERNAY-LES-REIMS - 42110 -Rue Saint Martin;;Place de l'église, 28190 Saint Georges sur Eure;31462;[0.929588, 47.901046];;FRS86ESOREB0532;FR*SOD*E*LYON*166*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.99526099;47.045568;;Saint-Aubin-sur-Gaillon;; +;;;;;;;;FRGLYPLYON13911;FR*SOD*S*RMBT*31*1*_*_;Montélimar Ouest;;Rue Emile Labiche, 28700 Auneau;31460;[1.070017, 47.793571];;FRS86ESOREB0282;FR*SOD*E*LYON*164*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.88865;46.775898;;Gaillon;; +;;;;;;;;FRGLYPLYON13511;FR*SOD*S*RMBT*35*1*_*_;HYPER U BORNE 5;;Terrier blanc, 82110 Lauzerte;31455;[0.99526099, 48.468156];;FRS86ESOREB0362;FR*SOD*E*LYON*166*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.584799;48.201157;;Vexin-sur-Epte;; +;;;;;;;;FRGLYPLYON13912;FR*SOD*S*RMBT*32*1*_*_;METTRAY 1285 - Les Gaudières;;Place Drouaise, 28000 Chartres;31454;[2.88865, 47.04476];;FRS86ESOREB0361;FR*SOD*E*LYON*165*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.115551;47.775214;;Gasny;; +;;;;;;;;FRGLYPLYON13812;FR*SOD*S*RMBT*33*1*_*_;CORMONTREUIL - 42377 - Rue Manoel Pinto;;4001 Rue de la Belle-Epine, 35132 Vezin-le-Coquet;31446;[-0.584799, 43.418629];;FRS86ESOREB0842;FR*SOD*E*LYON*165*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.292711;47.806584;;Fleury-la-Forêt;; +;;;;;;;;FRGLYPLYON13811;FR*SOD*S*RMBT*34*1*_*_;VERNOUILLET - Rue de ROME - 139351;;23 Rue Jean Perrin, 28600 Luisant;31481;[7.115551, 47.746526];;FRS86ESOREB0351;FR*SOD*E*LYON*165*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.460635;47.42555;;Brionne;; +;;;;;;;;FRGLYPLYON13711;FR*SOD*S*RMBT*36*1*_*_;CP 6000 BORNE 1;;rue Guy Pouille, 28320 Gallardon;31544;[2.292711, 47.010678];;FRS86ESOREB0621;FR*SOD*E*LYON*165*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.61345925;47.514688;;Vascœuil;; +;;;;;;;;FRGLYPLYON13712;FR*SOD*S*RMBT*37*1*_*_;Bonneville;;Champs des Gourdins, 33790 Auriolles;31584;[2.460635, 46.812997];;FRS86ESOREB0441;FR*SOD*E*LYON*164*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.289339;48.560028;;Heudebouville;; +;;;;;;;;FRGLYPLYON13612;FR*SOD*S*RMBT*38*1*_*_;SAINT LAURENT NOUAN 4615 - Rue des écoles;;Rue de l'Eglise, 51230 Fere-Champenoise;31582;[2.61345925, 47.18535428];;FRS86ESOREB0972;FR*SOD*E*LYON*164*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.68531;47.634797;;Thiberville;; +;;;;;;;;FRGLYPLYON13611;FR*SOD*S*RMBT*23*1*_*_;THEILLAY 4582 - Rue de la Pierre;;Allée du Chesne, 37550 Saint Avertin;31575;[1.289339, 48.06675];;FRS86ESOREB0442;FR*SOD*E*LYON*158*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.67909863;47.590104;;Mesnils-sur-Iton;; +;;;;;;;;FRGLYPLYON13021;FR*SOD*S*RMBT*6*1*_*_;ROMORANTIN LANTHENAY 4586;;134 All. du Luxembourg ZI ARTOIPOLE 2, 62128 Wancourt;31573;[2.68531, 46.96955];;FRS86ESOREB0491;FR*SOD*E*LYON*157*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.987481;47.59298;;Cormeilles;; +;;;;;;;;FRGLYPLYON12922;FR*SOD*S*RMBT*10*1*_*_;Romorantin 24592 - Rue de Sabard;;26 Rue Georges Clemenceau, 62118 Biache-Saint-Vaast;31572;[1.67909863, 48.60777195];;FRS86ESOREB0492;FR*SOD*E*LYON*157*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.522627;47.252928;;Lyons-la-Forêt;; +;;;;;;;;FRGLYPLYON16922;FR*SOD*S*RMBT*9*1*_*_;SAINT LAURENT NOUAN 4605 - Place du Soleil d'Or;;Rue du Docteur Genillon, 51170 Fismes;31565;[2.987481, 47.045568];;FRS86ESOREB0382;FR*SOD*E*LYON*147*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.885469;47.395095;;La Haye-Malherbe;; +;;;;;;;;FRGLYPLYON12211;FR*SOD*S*RMBT*8*1*_*_;SAINT LAURENT NOUAN 4613 - Place Saint-Aignan;;Chemin d'Hauvine, 51490 Pontfaverger-Moronvilliers;31564;[5.522627, 46.775898];;FRS86ESOREB0381;FR*SOD*E*LYON*150*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.791078;48.611702;;La Neuve-Lyre;; +;;;;;;;;FRGLYPLYON12422;FR*SOD*S*RMBT*7*1*_*_;NOGENT-LE-ROTOU - Rue du Commandant Charcot-138014;;Place des Lacs, 51390 Gueux;31562;[1.885469, 48.201157];;FRS86ESOREB0811;FR*SOD*E*LYON*150*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.057401;47.89923;;Conteville;; +;;;;;;;;FRGLYPLYON12412;FR*SOD*S*RMBT*5*1*_*_;VILLIERS SUR LOIR 4664 - Avenue du Petit Thouars;;2 car d'Enserune, 34440 Nissan-lez-Enserune;31551;[0.791078, 47.775214];;FRS86ESOREB0812;FR*SOD*E*LYON*149*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.05053;42.742776;;Romilly-sur-Andelle;; +;;;;;;;;FRGLYPLYON12421;FR*SOD*S*RMBT*11*1*_*_;SAVIGNY SUR BRAYE - Avenue de la Braye - 153650;;1 Avenue Marechal Leclerc, 51162 Conflans sur Seine;31547;[1.057401, 47.806584];;FRS86ESOREB0152;FR*SOD*E*LYON*149*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.150983;47.5426;;Igoville;; +;;;;;;;;FRGLYPLYON12322;FR*SOD*S*RMBT*22*1*_*_;VENDOME 4674 - Geoffrey Martel;;Aire de repos de Est, 87160 Saint-Sulpice-les-Feuilles;31239;[2.05053, 47.42555];;FRS86ESOREB0111;FR*SOD*E*LYON*148*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.038915;47.325755;;Ézy-sur-Eure;; +;;;;;;;;FRGLYPLYON12312;FR*SOD*S*RMBT*4*1*_*_;LA VILLE AUX CLERCS 4676 - Rue de l'Abreuvoir;;2 rue Jean Mermoz, 51460 Courtisols;31344;[2.150983, 47.514688];;FRS86ESOREB0112;FR*SOD*E*LYON*148*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.284024;47.343958;;Épaignes;; +;;;;;;;;FRGLYPLYON12311;FR*SOD*S*RMBT*3*1*_*_;VENDOME 4678 - Square des Anciens d'Indochine;;Notre-Dame-de-Sanilhac, 24660 Sanilhac;31341;[1.038915, 48.560028];;FRS86ESOREB0212;FR*SOD*E*LYON*94*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.658134;47.413841;;Louviers;; +;;;;;;;;FRGLYPLYON12321;FR*SOD*S*RMBT*2*1*_*_;EPUISAY 4680 - Rue des Bleuets;;Aire De Mionnay, A46, 01390 Mionnay;31326;[1.284024, 47.634797];;FRS86ESOREB0211;FR*SOD*E*LYON*147*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.457308;47.418349;;Étrépagny;; +;;;;;;;;FRGLYPLYON12222;FR*SOD*S*RMBT*1*1*_*_;VENDOME 4682 - Route du Dr Faton;;6 Rue Gustave Eiffel, 24100 Bergerac;31324;[1.658134, 47.590104];;FRS86ESOREB0201;FR*SOD*E*LYON*157*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.299326;45.717133;;Les Andelys;; +;;;;;;;;FRGLYPLYON12511;FR*SOD*S*RMBT*12*1*_*_;Vaupillon;;4 rue Jean Moulin, 28290 Chapelle royale;31303;[1.457308, 47.59298];;FRS86ESOREB0202;FR*SOD*E*LYON*146*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.286574;47.982211;;Tillières-sur-Avre;; +;;;;;;;;FRGLYPLYON12212;FR*SOD*S*RMBT*17*1*_*_;St Hilaire de Gondilly - Le Golf - 126241;;10 Rue Sainte-Elisabeth, 71300 Montceau-les-Mines;31299;[0.299326, 47.252928];;FRS86ESOREB0331;FR*SOD*E*LYON*146*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.901331;47.448915;;Bourth;; +;;;;;;;;FRGLYPLYON12221;FR*SOD*S*RMBT*21*1*_*_;Lacq Audéjos Nord;;15 Chem. des Virées Julies, 44600 Saint-Nazaire;31356;[0.286574, 47.395095];;FRS86ESOREB0332;FR*SOD*E*LYON*146*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.415112;47.752657;;Conches-en-Ouche;; +;;;;;;;;FRGLYPLYON12121;FR*SOD*S*RMBT*20*1*_*_;CGED EPC SOLUTIONS;;2 Avenue Chevallier Debeausse, 28800 Alluyes;31193;[0.901331, 48.611702];;FRS86ESOREB0652;FR*SOD*E*LYON*146*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.456518;49.904515;;Léry;; +;;;;;;;;FRGLYPLYON12112;FR*SOD*S*RMBT*19*1*_*_;LE SUBDRAY - Salle des Fêtes - 212076;;A20 Aire de Boismandé Ouest, 87160 Saint-Sulpice-les-Feuilles;31181;[-2.415112, 47.89923];;FRS86ESOREB0651;FR*SOD*E*LYON*145*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.848995;47.744154;;La Bonneville-sur-Iton;; +;;;;;;;;FRGLYPLYON12122;FR*SOD*S*RMBT*18*1*_*_;UZAY-LE-VENON - Eglise - 212026;;A62 Aire de Terres de Graves Nord, 33720 Saint-Michel-de-Rieufret;31287;[9.456518, 42.742776];;FRS86ESOREB0191;FR*SOD*E*LYON*145*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.124944;47.411859;;Saint-Pierre-des-Fleurs;; +;;;;;;;;FRGLYPLYON12111;FR*SOD*S*RMBT*16*1*_*_;RIANS - Place de l'Eglise - 205324;;Rue du bourg Joli, 51190 Avize;31286;[1.848995, 47.5426];;FRS86ESOREB0192;FR*SOD*E*LYON*145*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.18419;47.581612;;Sainte-Colombe-la-Commanderie;; +;;;;;;;;FRGLYPLYON12022;FR*SOD*S*RMBT*15*1*_*_;SAINT DENIS LANNERAY - Rue Jean Moulin - 134842;;50 Route de Voves, 28310 Gommerville;31424;[1.124944, 47.325755];;FRS86ESOREB0852;FR*SOD*E*LYON*151*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.525134;48.21525836;;Beaumont-le-Roger;; +;;;;;;;;FRGLYPLYON12411;FR*SOD*S*RMBT*14*1*_*_;RAYMOND -Le Far West -117401;;Avenue de Champagne, 51150 Tours sur Marne;31358;[1.18419, 47.343958];;FRS86ESOREB0851;FR*SOD*E*LYON*151*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.425003;43.446167;;Nonancourt;; +;;;;;;;;FRGLYPLYON12541;FR*SOD*S*RMBT*13*1*_*_;EPERNON - Rue Nouvelle du Sycomore - 130887;;Place du Général de Gaulle, 51270 Montmort Lucy;31396;[1.525134, 47.413841];;FRS86ESOREB0912;FR*SOD*E*LYON*152*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.864668;49.579074;;Le Neubourg;; +;;;;;;;;FRGLYPLYON12912;FR*SOD*S*MAMP*13*1*_*_;JOUET-sur-L'Aubois - Mairie - 205672;;La surprise, 18380 Ennordres;31421;[1.425003, 47.418349];;FRS86ESOREB0121;FR*SOD*E*LYON*152*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.896907;49.4928271;;Broglie;; +;;;;;;;;FRGLYPLYON12711;FR*SOD*S*MAMP*11*2*_*_;Jura;;2 Place de la République, 51260 Anglure;31420;[4.864668, 45.717133];;FRS86ESOREB0982;FR*SOD*E*LYON*157*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.341651;46.053918;;Montreuil-l'Argillé;; +;;;;;;;;FRGLYPLYON12011;FR*SOD*S*MAMP*12*1*_*_;JANVILLE-EN-BEAUCE - Parking Bretonnerie - 130534;;Rue de Charette, 28140 Terminiers;31416;[0.896907, 47.982211];;FRS86ESOREB0981;FR*SOD*E*LYON*156*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.862056;48.20839;;Bueil;; +;;;;;;;;FRGLYPLYON12921;FR*SOD*S*MAMP*15*1*_*_;TROO 4684;;Rue des Vergers, 41100 Aze;31410;[1.341651, 47.448915];;FRS86ESOREB0971;FR*SOD*E*LYON*156*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.679052;47.851546;;Alizay;; +;;;;;;;;FRGLYPLYON12911;FR*SOD*S*MAMP*14*1*_*_;VENDOME 4745 - AVENUE JEAN MOULIN;;RUE DE LA CHOISILLE, 37390 LA MEMBROLLE SUR CHOISILLE;31399;[0.862056, 47.752657];;FRS86ESOREB0911;FR*SOD*E*LYON*156*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.362749;47.261805;;Le Val d'Hazey;; +;;;;;;;;FRGLYPLYON12831;FR*SOD*S*MAMP*17*1*_*_;SALBRIS 4717 - Place du 11 Novembre;;Rue des Côtes sur Lhery, 51160 Hautvillers;31390;[1.679052, 49.904515];;FRS86ESOREB0462;FR*SOD*E*LYON*156*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.608919;46.407926;;Gravigny;; +;;;;;;;;FRGLYPLYON12821;FR*SOD*S*MAMP*10*1*_*_;PIERREFITTE SUR SAULDRE 4719 - Rue des Fossés;;Rue de Madeleine, 51700 Chatillon sur Marne;31383;[1.362749, 47.744154];;FRS86ESOREB0122;FR*SOD*E*LYON*155*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.378134;49.309771;;Marbois;; +;;;;;;;;FRGLYPLYON12841;FR*SOD*S*MAMP*4*1*_*_;SENONCHES - Rue du four banal - 134263;;4 Rue de Lobau, 75004 Paris;31375;[1.608919, 47.411859];;FRS86ESOREB1342;FR*SOD*E*LYON*155*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.17964854;47.22609066;;Mesnil-en-Ouche;; +;;;;;;;;FRGLYPLYON12811;FR*SOD*S*MAMP*9*2*_*_;FOSSE 4816 - Rue de Vendome;;1 Route de Lignières, 18200 Orval;31364;[1.378134, 47.581612];;FRS86ESOREB0731;FR*SOD*E*LYON*155*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.469628;47.21801;;Saint-Germain-la-Campagne;; +;;;;;;;;FRGLYPLYON12741;FR*SOD*S*MAMP*7*2*_*_;DHUIZON - Rue de la ferte st cyr - 167439;;6 Zone D’Activite les Poutrelles, 59125 Trith-Saint-Léger;51282;[1.17964854, 48.21525836];;FRS86ESOREB1291;FR*SOD*E*LYON*155*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.303173;47.22265878;;Pacy-sur-Eure;; +;;;;;;;;FRGLYPLYON12531;FR*SOD*S*MAMP*6*2*_*_;HUISSEAU SUR COSSON 4739 - Champs de Ligny;;Aire de Poitou-Charentes, A10, 79230 Vouillé;39017;[6.469628, 43.446167];;FRS86ESOREB1292;FR*SOD*E*LYON*154*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.0966466;49.060984;;Authevernes;; +;;;;;;;;FRGLYPLYON12721;FR*SOD*S*MAMP*5*2*_*_;RIGNY USSE 4741 - Chemin du pont Félicie;;3 Rue de l'Égalité, 31200 Toulouse;45332;[-1.303173, 49.579074];;FRS86ESOREB0241;FR*SOD*E*LYON*154*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.096281;47.926333;;Frenelles-en-Vexin;; +;;;;;;;;FRGLYPLYON12731;FR*SOD*S*MAMP*18*1*_*_;AVRILLE LES PONCEAUX 4747 - Rue basse;;A10, Aire de Val Neuvy, 28310 Fresnay-l'Évêque;38407;[0.0966466, 49.4928271];;FRS86ESOREB0242;FR*SOD*E*LYON*154*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.285056;49.244383;;Bourneville-Sainte-Croix;; +;;;;;;;;FRGLYPLYON12621;FR*SOD*S*MAMP*3*2*_*_;LA FERTE-VIDAME - Place de la Mairie - 128756;;15 Av. Jean Monnet, 07200 Aubenas;67362;[4.096281, 46.053918];;FRS86ESOREB1331;FR*SOD*E*LYON*154*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.352503;43.315614;;Bourg-Achard;; +;;;;;;;;FRGLYPLYON12641;FR*SOD*S*MAMP*2*1*_*_;CLOSEAU1 BORNE 2;;Rue Jean BUEIL, 37370 EPEIGNE SUR DEME;57433;[1.285056, 48.20839];;FRS86ESOREB1332;FR*SOD*E*LYON*153*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.462877;49.260411;;Hondouville;; +;;;;;;;;FRGLYPLYON12611;FR*SOD*S*MAMP*37*1*_*_;MAIRIE SMDL HOTEL DE VILLE;;11 Avenue Dumoulin, 80080 Amiens;14301;[-0.352503, 47.851546];;FRS86ESOREB1112;FR*SOD*E*LYON*153*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.691969;48.211401;;Saint-Pierre-du-Vauvray;; +;;;;;;;;FRGLYPLYON12631;FR*SOD*S*MAMP*19*1*_*_;LA FERTE BEAUHARNAIS 4727;;Shell Cestas Est A63. Autoroute A63, 33610 Cestas;21301;[0.462877, 47.261805];;FRS86ESOREB1111;FR*SOD*E*LYON*94*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.238614;48.41284129;;Le Bec-Hellouin;; +;;;;;;;;FRGLYPLYON12521;FR*SOD*S*MAMP*35*1*_*_;SAINT GEORGES SUR CHER 4715 - Place Bretonneau;;Turwiese, 57910 Hambach;73119;[0.691969, 46.407926];;FRS86ESOREB1172;FR*SOD*E*LYON*5*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.06009837;49.21244;;Grand Bourgtheroulde;; +;;;;;;;;FRGLYPLYON14412;FR*SOD*S*MAMP*36*1*_*_;MONTRICHARD VAL DE CHER (B1) 4713;;1 Rdpt de l'Océan, 56340 Plouharnel;21295;[-1.238614, 49.309771];;FRS86ESOREB1171;FR*SOD*E*LYON*93*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.09868;49.197361;;Bosroumois;; +;;;;;;;;FRGLYPLYON14421;FR*SOD*S*MAMP*40*1*_*_;SOING EN SOLOGNE 4690 - Rue de la Salle des Fêtes;;73 Rue du 8 Mai 1945, 85340 Les Sables-d'Olonne;74010;[2.06009837, 47.22609066];;FRS86ESOREB1221;FR*SOD*E*LYON*38*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0649617;47.54070211;;Saint-Sébastien-de-Morsent;; +;;;;;;;;FRGLYPLYON14411;FR*SOD*S*MAMP*41*1*_*_;CONTRES 4692 - Rue de la Gare;;1320 Avenue des Marchés, 84200 Carpentras;72375;[2.09868, 47.21801];;FRS86ESOREB1222;FR*SOD*E*LYON*35*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.431413;48.861906;;Quillebeuf-sur-Seine;; +;;;;;;;;FRGLYPLYON16121;FR*SOD*S*MAMP*42*1*_*_;GVA VÉNISSIEUX AC2;;82 Chem. des Espélugues, 84800 L'Isle-sur-la-Sorgue;22032;[2.0649617, 47.22265878];;FRS86ESOREB0942;FR*SOD*E*LYON*35*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.660559;48.741367;;Routot;; +;;;;;;;;FRGLYPLYON16311;FR*SOD*S*MAMP*43*1*_*_;MONDOUBLEAU 4700-4701;;Parking du bourg, 37150 Dierre;12115;[1.431413, 49.060984];;FRS86ESOREB0941;FR*SOD*E*LYON*36*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.924072;47.254236;;Ludres;; +;;;;;;;;FRGLYPLYON16231;FR*SOD*S*MAMP*45*1*_*_;FOUGERES SUR BIEVRE 17065 - Rue Aimable Quenioux;;Place Milo Freslon, 37160 Descartes;48002;[6.660559, 47.926333];;FRS86ESOREB1322;FR*SOD*E*LYON*36*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.078394;49.061212;;Vandœuvre-lès-Nancy;; +;;;;;;;;FRGLYPLYON16211;FR*SOD*S*MAMP*52*1*_*_;MONTOIRE SUR LE LOIR 4704 - Place Clémenceau;;491 Rte de Ripaille, 74380 Bonne;89313;[3.924072, 49.244383];;FRS86ESOREB1321;FR*SOD*E*LYON*36*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.046795;47.01014909;;Pulnoy;; +;;;;;;;;FRGLYPLYON16221;FR*SOD*S*MAMP*34*1*_*_;Nesle-Normandeuse;;11 Rue Gutenberg, 45500 Gien;52384;[6.078394, 43.315614];;FRS86ESOREB0291;FR*SOD*E*LYON*36*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.167616;48.1923956;;Joudreville;; +;;;;;;;;FRGLYPLYON16241;FR*SOD*S*MAMP*28*1*_*_;MAVES 4706 - Rue du Cèdre;;Avenue Jeanne d'Arc, 37700 LA VILLE AUX DAMES;38193;[4.046795, 49.260411];;FRS86ESOREB0292;FR*SOD*E*LYON*37*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.59944811;46.82955189;;Tucquegnieux;; +;;;;;;;;FRGLYPLYON16141;FR*SOD*S*MAMP*20*1*_*_;MUR DE SOLOGNE 4709 - Place de la Poste;;Aire de Villers Bretonneux Autoroute A29, 80000 Villers-Bretonneux;21244;[1.167616, 48.211401];;FRS86ESOREB0272;FR*SOD*E*LYON*37*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.092707;47.33148416;;Mercy-le-Bas;; +;;;;;;;;FRGLYPLYON16111;FR*SOD*S*MAMP*21*1*_*_;VINEUIL 4711 - Place Gaspard Imbert;;Rue du 8 mai 1946, 37270 Larcay;42154;[1.59944811, 48.41284129];;FRS86ESOREB0271;FR*SOD*E*LYON*37*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.1323;48.35464382;;Landres;; +;;;;;;;;FRGLYPLYON16131;FR*SOD*S*MAMP*27*1*_*_;BROU - route de Chartres (intermarché) - 134902;;Av Charles de Gaulle, 37390 LA MEMBROLLE SUR CHOISILLE;21355;[4.092707, 49.21244];;FRS86ESOREB0261;FR*SOD*E*LYON*37*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.03213549;47.854989;;Chaligny;; +;;;;;;;;FRGLYPLYON16331;FR*SOD*S*MAMP*29*1*_*_;MAISON DES VINS RH CH STATION 2;;81 Rte du Mans, 72220 Écommoy;49180;[4.1323, 49.197361];;FRS86ESOREB0262;FR*SOD*E*LYON*38*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.484739;46.99228393;;Audun-le-Roman;; +;;;;;;;;FRGLYPLYON16012;FR*SOD*S*MAMP*30*1*_*_;BORNE CAMPING LE RIVAGE;;Aire de Valleiry Sud, A40, 74520 Valleiry;37176;[1.03213549, 47.54070211];;FRS86ESOREB1181;FR*SOD*E*LYON*38*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.375991;46.829121;;Neuves-Maisons;; +;;;;;;;;FRGLYPLYON16011;FR*SOD*S*MAMP*31*1*_*_;ABB Office du tourisme;;170 Chem. de Farnier, 43000 Le Puy-en-Velay;77156;[4.484739, 48.861906];;FRS86ESOREB1182;FR*SOD*E*LYON*41*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.166757;46.701436;;Azerailles;; +;;;;;;;;FRGLYPLYON15912;FR*SOD*S*MBDG*3*1*_*_;Roanne;;9 Chau. Jules César, 95520 Osny;11068;[1.375991, 48.741367];;FRS86ESOREB1091;FR*SOD*E*LYON*38*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.431778;47.257608;;Errouville;; +;;;;;;;;FRGLYPLYON15911;FR*SOD*S*MBDG*1*1*_*_;DANGEAU - Rue de Brou - 129205;;365 Av. Antoine Becquerel, 83130 La Garde;73079;[0.166757, 47.254236];;FRS86ESOREB1092;FR*SOD*E*LYON*39*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3580831;46.8011169;;Rehainviller;; +;;;;;;;;FRGLYPLYON15812;FR*SOD*S*MBDG*2*1*_*_;SUPER U SABLE BORNE 3;;7 Rue Raoul Cezard, 54410 Laneuveville-devant-Nancy;80692;[1.431778, 49.061212];;FRS86ESOREB1002;FR*SOD*E*LYON*39*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.57491568;47.45830163;;Crusnes;; +;;;;;;;;FRGLYPLYON15822;FR*SOD*S*MBDG*6*1*_*_;AZAY LE RIDEAU 1202;;15 Rue Edith Piaf, 72230 Arnage;62728;[2.3580831, 47.01014909];;FRS86ESOREB1001;FR*SOD*E*LYON*39*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.92143963;44.236282;;Bouligny;; +;;;;;;;;FRGLYPLYON15811;FR*SOD*S*MBDG*5*1*_*_;LUMELEC MAZEROLLES;;5000 Les Tomples, 26700 Pierrelatte;17038;[1.57491568, 48.1923956];;FRS86ESOREB0732;FR*SOD*E*LYON*39*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.83647572;48.78011;;Baccarat;; +;;;;;;;;FRGLYPLYON16321;FR*SOD*S*MBDG*7*3*_*_;LE HAUT DICK BORNE 1;;Place du Marechal Savoie, 37350 LE GRAND PRESSIGNY;41288;[2.92143963, 46.82955189];;FRS86ESOREB1341;FR*SOD*E*LYON*40*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.77138871;43.33794647;;Essey-lès-Nancy;; +;;;;;;;;FRGLYPLYON16341;FR*SOD*S*SHEL*3*1*_*_;VIERZON - Gare - 148664;;9 Chem. de Penboch, 56610 Arradon;87182;[2.83647572, 47.33148416];;FRS86ESOREB1152;FR*SOD*E*LYON*40*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.818616;48.908924;;Mont-Bonvillers;; +;;;;;;;;FRGLYPLYON14422;FR*SOD*S*SHEL*1*1*_*_;VIERZON - Rue Eugène Pottier - 112365;;47 Rue Claude Henri Gorceix, 87280 Limoges;76115;[1.77138871, 48.35464382];;FRS86ESOREB1352;FR*SOD*E*LYON*40*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.51002394;45.998903;;Blénod-lès-Pont-à-Mousson;; +;;;;;;;;FRGLYPLYON16711;FR*SOD*S*SHEL*2*1*_*_;VIERZON - Parking Gaucherie - 109669;;8 Boulevard Deodat de Sévérac, 31770 Colomiers;74042;[6.818616, 47.854989];;FRS86ESORE15511;FR*SOD*E*LYON*40*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.539255;48.928281;;Dieulouard;; +;;;;;;;;FRGLYPLYON16822;FR*SOD*S*SHEL*12*1*_*_;RAW PARISGIVERNY 31;;5 Rue Paul Démange, 78120 Rambouillet;03321;[2.51002394, 46.99228393];;FRS86ESORE15411;FR*SOD*E*LYON*41*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.366838;48.06335936;;Laneuveville-devant-Nancy;; +;;;;;;;;FRGLYPLYON16821;FR*SOD*S*SHEL*4*1*_*_;RUPT SUR MOSELLE - Rue Louis Courroy - 145479-CCS;;Shell Cestas Ouest A63, Autoroute A63, 33610 Cestas;18096;[0.539255, 46.829121];;FRS86ESOREB1542;FR*SOD*E*LYON*41*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.75716;47.41925327;;Houdemont;; +;;;;;;;;FRGLYPLYON16811;FR*SOD*S*SHEL*7*1*_*_;Vrigny | A4, Aire de Gueux;;Rue des Martyrs, 37300 JOUE LES TOURS;01067;[0.366838, 46.701436];;FRS86ESOREB1541;FR*SOD*E*LYON*35*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.37077109;48.47696;;Tomblaine;; +;;;;;;;;FRGLYPLYON16812;FR*SOD*S*SHEL*9*1*_*_;BORNE ROCBARON BORNE 2;;Place de l'église, 37140 INGRANDES DE TOURAINE;18091;[2.75716, 47.257608];;FRS86ESOREB1532;FR*SOD*E*LYON*35*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.65083;49.060762;;Saint-Clément;; +;;;;;;;;FRGLYPLYON16722;FR*SOD*S*SHEL*10*1*_*_;REIMS - Place Alfred Brouette;;20 ZI de Fontvergnes, 12300 Decazeville;51152;[2.37077109, 46.8011169];;FRS86ESOREB1531;FR*SOD*E*LYON*34*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.912706;47.640214;;Vathiménil;; +;;;;;;;;FRGLYPLYON16721;FR*SOD*S*SHEL*11*1*_*_;BROU - place de la matrassière - 134890;;Rue des Noisetiers, 37460 Genille;28173;[2.65083, 47.45830163];;FRS86ESOREB1491;FR*SOD*E*LYON*34*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.425486;46.675976;;Laneuveville-aux-Bois;; +;;;;;;;;FRGLYPLYON16712;FR*SOD*S*SHEL*13*1*_*_;SOURS - Place du docteur Bouclet - 127349;;15 Rue Aimé Cotton, 69800 Saint-Priest;36063;[5.912706, 44.236282];;FRS86ESOREB1522;FR*SOD*E*LYON*28*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.24555436;48.856298;;Gélacourt;; +;;;;;;;;FRGLYPLYON16612;FR*SOD*S*SHEL*14*1*_*_;TAISSY - 41147 - Rue du Saussais;;1076 Bd Bernard Long, 83170 Brignoles;33188;[2.425486, 48.78011];;FRS86ESOREB1521;FR*SOD*E*LYON*29*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.102999;44.920927;;Glonville;; +;;;;;;;;FRGLYPLYON16431;FR*SOD*S*SHEL*15*2*_*_;SILLERY - 41135 - Rue Nicolas Brulart;;7 Rue Fulgence Bienvenue, 92230 Gennevilliers;27701;[1.24555436, 43.33794647];;FRS86ESOREB1511;FR*SOD*E*LYON*29*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.166899;48.221297;;Lamath;; +;;;;;;;;FRGLYPLYON16611;FR*SOD*S*SHEL*5*1*_*_;DAME MARIE DES BOIS 1238;;73 route du Crêt Gojon, 74200 Margencel;51657;[-1.102999, 48.908924];;FRS86ESOREB1461;FR*SOD*E*LYON*29*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.757126;49.242168;;Deneuvre;; +;;;;;;;;FRGLYPLYON16531;FR*SOD*S*OTHR*133*6*_*_;POGNY - 40935 - RD 54;;15 Rue René Cassin, 62223 Saint-Laurent-Blangy;72228;[6.166899, 45.998903];;FRS86ESOREB1471;FR*SOD*E*LYON*29*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.94658719;49.877237;;Pettonville;; +;;;;;;;;FRGLYPLYON16541;FR*SOD*S*OTHR*133*1*_*_;DREUX - Rue de la fontaine - 134368;;20 Av. du Gué Langlois, 77600 Bussy-Saint-Martin;04209;[5.757126, 48.928281];;FRS86ESOREB1481;FR*SOD*E*LYON*30*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.13469517;43.91498099;;Chanteheux;; +;;;;;;;;FRGLYPLYON16511;FR*SOD*S*OTHR*133*2*_*_;La Chapelle-sur-Loire/A85;;5 Rue Louise Michel, 32000 Auch;02722;[0.94658719, 48.06335936];;FRS86ESOREB1502;FR*SOD*E*LYON*30*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09642;46.940088;;Colombey-les-Belles;; +;;;;;;;;FRGLYPLYON16521;FR*SOD*S*OTHR*133*5*_*_;RAW PARISGIVERNY 45;;280 Rue du Rhône, 74800 Saint-Pierre-en-Faucigny;69077;[-0.13469517, 47.41925327];;FRS86ESOREB1501;FR*SOD*E*LYON*30*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.431222;48.8488274;;Hablainville;; +;;;;;;;;FRGLYPLYON16441;FR*SOD*S*OTHR*133*3*_*_;TROUY - Place du Marché - 188401;;18 Rte d'Orschwiller, 67600 Sélestat;30326;[6.09642, 48.47696];;FRS86ESOREB1451;FR*SOD*E*LYON*30*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.873729;45.160721;;Vaxainville;; +;;;;;;;;FRGLYPLYON16411;FR*SOD*S*OTHR*133*4*_*_;SANCHEVILLE - Place du Pâtis - 134359;;Ruelle Mathieu de Dombasle, 54500 Vandoeuvre;37153;[1.431222, 49.060762];;FRS86ESOREB1442;FR*SOD*E*LYON*31*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.896767;49.060529;;Reherrey;; +;;;;;;;;FRGLYPLYON15821;FRS55E6635;SANCOINS - Place du champ de Foire - 117712;;Rue de la croix blanche, 27950 Saint Marcel;10049;[6.873729, 47.640214];;FRS86ESOREB1441;FR*SOD*E*LYON*31*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.353031;45.161043;;Brouville;; +;;;;;;;;FRGLYPLYON15722;FRS41E432;SANCERRE - Rempart des Abreuvoirs - 151321;;ZA PORTE DE TOURAINE, 37110 Autreche;26235;[2.896767, 46.675976];;FRS86ESOREB1431;FR*SOD*E*LYON*31*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.61192;48.6994;;Bertrichamps;; +;;;;;;;;FRGLYPLYON15712;FRS37E434;OUARVILLE - Rue de le République - 129076;;A75, Aire de Lafayette Lorlanges, 43360 Lorlanges;74288;[2.353031, 48.856298];;FRS86ESOREB1421;FR*SOD*E*LYON*31*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.163118;48.6931;;Thiaville-sur-Meurthe;; +;;;;;;;;FRGLYPLYON14711;FRIENE002602;ST MAURICE - Rue de Lorraine - 145495 - CCS;;Parking du château, 37400 Amboise;55237;[-0.61192, 44.920927];;FRS86ESOREB1422;FR*SOD*E*LYON*32*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.041287;48.6585;;Flin;; +;;;;;;;;FRGLYPLYON15012;FRIENE002601;SAINT-JUST - Mairie - 150513;;1 Rue du Lionnais, 49220 Grez-Neuville;03145;[1.163118, 48.221297];;FRS86ESOREB1402;FR*SOD*E*LYON*32*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.367618;47.094379;;Virecourt;; +;;;;;;;;FRGLYPLYON15011;FRS55E6636;SONEPAR CONNECT CHATELLERAULT;;A72, Aires de Service de la Plaine du Forez O, 42600 Magneux-Haute-Rive;63455;[4.041287, 49.242168];;FRS86ESOREB1401;FR*SOD*E*LYON*32*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.30883262;45.875816;;Pompey;; +;;;;;;;;FRGLYPLYON14911;FRS37E433;Poitiers Jaunay-Clan;;3 Rue de la Pommeraie, 78310 Coignières;83148;[2.367618, 49.877237];;FRS86ESOREB1411;FR*SOD*E*LYON*93*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.939804;49.061577;;Marainviller;; +;;;;;;;;FRGLYPLYON14912;FRS37E138;VEAUGUES - Eglise - 200482;;956 Miomo, 20200 Santa-Maria-di-Lota;66015;[1.30883262, 43.91498099];;FRS86ESOREB1391;FR*SOD*E*LYON*33*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.3735372;49.301268;;Jolivet;; +;;;;;;;;FRGLYPLYON14812;FRS37E133;VALLENAY - Place Bascoulard - 117415;;Avenue Charles de Gaulle, 62231 Coquelles;72040;[2.939804, 46.940088];;FRS86ESOREB1381;FR*SOD*E*LYON*33*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.440923;48.263874;;Champigneulles;; +;;;;;;;;FRGLYPLYON14811;FRS55E6647;VALLY SUR SAULDRE-Mairie-150315;;A25, Aire de Saint Laurent Steenvoorde, 59114 Saint Laurent;11014;[0.3735372, 48.8488274];;FRS86ESOREB1371;FR*SOD*E*LYON*33*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.43087;45.59649;;Custines;; +;;;;;;;;FRGLYPLYON9411;FRIENE004902;S.U VAL DURANCE BORNE 1-2;;Rue Jean Causseret, 37140 Bourgueil;26325;[1.440923, 45.160721];;FRS86ESOREB1361;FR*SOD*E*LYON*33*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.440653;47.803507;;Allain;; +;;;;;;;;FRGLYPLYON14712;FRCPIE6704845;CGED ALFORTVILLE;;Rue des Anciens Combatants, 37600 BETZ LE CHÂTEAU;95580;[1.43087, 49.060529];;FRS86ESOREB1351;FR*SOD*E*LYON*34*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.13388;47.852305;;Lesménils;; +;;;;;;;;FRGLYPLYON15721;FRS41E430;Volvestre;;Place de l'église, 37420 Avoine;77333;[1.440653, 45.161043];;FRS86ESOREB1281;FR*SOD*E*LYON*34*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.19956;44.817371;;Veney;; +;;;;;;;;FRGLYPLYON14621;FRCPIE6604335;Vallée de la vire Gouvets;;CITE DE L HERMITAGE, 37160 CELLE SAINT AVANT;89379;[6.13388, 48.6994];;FRS86ESOREB1282;FR*SOD*E*LYON*41*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.22902;43.247589;;Lachapelle;; +;;;;;;;;FRGLYPLYON14612;FRS55E6634;Aire des Crêts Blancs;;A9, Aire de Béziers Montblanc Nord, 34290 Montblanc;01248;[6.19956, 48.6931];;FRS86ESOREB0232;FR*SOD*E*LYON*42*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.241201;46.720829;;Vallois;; +;;;;;;;;FRGLYPLYON14622;FRS55E6657;NONSARD LAMARCHE - 66378 - Base Loisirs de Madine;;10 rue Régis et Guylaine Caspard, 10600 La Chapelle-Saint-Luc;82079;[6.22902, 48.6585];;FRS86ESOREB0231;FR*SOD*E*LYON*55*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.06949;47.720211;;Chenevières;; +;;;;;;;;FRGLYPLYON14611;FRS28E13420;ARVILLE 4926;;83 rue d'Amsterdam, 59910 Bondues;26005;[2.241201, 47.094379];;FRS86ESOREB0931;FR*SOD*E*LYON*52*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.431517;47.002756;;Fraimbois;; +;;;;;;;;FRGLYPLYON14522;FRS55E6659;Longué la Couaille;;1 Rue du 8 Mai 1945 Floor -2, 06310 Beaulieu-sur-Mer;34240;[6.06949, 45.875816];;FRS86ESOREB0932;FR*SOD*E*LYON*49*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.379958;43.586775;;Manonviller;; +;;;;;;;;FRGLYPLYON14521;FRS28E13933;Quevilloncourt;;5 Rue du Houblon, 59290 Marcq-en-Barœul;84083;[1.431517, 49.061577];;FRS86ESOREB0482;FR*SOD*E*LYON*49*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.720788;43.585904;;Hériménil;; +;;;;;;;;FRGLYPLYON14511;FRS55E6658;RAW PARISGIVERNY 67;;Place de l'Eglise, 28250 La Saucelle;59580;[-0.379958, 49.301268];;FRS86ESOREB0481;FR*SOD*E*LYON*49*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.874112;47.849887;;Vitrimont;; +;;;;;;;;FRGLYPLYON15112;FRS55E9338;SONEPAR BELFORT CONNECT;;3 Rue des Selliers, 45170 Neuville-aux-Bois;45302;[2.720788, 48.263874];;FRS86ESOREB0301;FR*SOD*E*LYON*50*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.16809;47.849873;;Gerbéviller;; +;;;;;;;;FRGLYPLYON15111;FRS55E6660;Couleuvre;;Parking de Miomo RD 80, 20200 SANTA MARIA DI-LOTA;78531;[5.874112, 45.59649];;FRS86ESOREB0302;FR*SOD*E*LYON*50*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.684845;48.6494;;Einville-au-Jard;; +;;;;;;;;FRGLYPLYON15211;FRS37E134;TERRA_54_013;;A89, Aire du Haut Forez Sud, 42440 Les Salles;12176;[-0.16809, 47.803507];;FRS86ESOREB0161;FR*SOD*E*LYON*50*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.538226;45.243957;;Damelevières;; +;;;;;;;;FRGLYPLYON15212;FRCPIE6604545;SDS BORNE 2;;23 rue Jean Bussière, 23000 Guéret;62701;[2.684845, 47.852305];;FRS86ESOREB0162;FR*SOD*E*LYON*50*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.537032;48.290046;;Cirey-sur-Vezouze;; +;;;;;;;;FRGLYPLYON15711;FRCPIE6637385;Brou;;5 Rue du Pré Droue, 88150 Chavelot;09332;[-0.538226, 44.817371];;FRS86ESOREB1132;FR*SOD*E*LYON*51*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.507029;46.447174;;Blainville-sur-l'Eau;; +;;;;;;;;FRGLYPLYON15622;FRS55E6618;REIMS - 49177 - Parking St Remi Place Lenoncourt;;Super U 185 route de cabasse RN7, 83340 Flassans-sur-Issole;71494;[6.537032, 43.247589];;FRS86ESOREB1131;FR*SOD*E*LYON*51*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.347765;48.870452;;Blâmont;; +;;;;;;;;FRGLYPLYON15612;FRS55E6617;Asia Automotive;;Autoroute du Nord, 95470 Vémars;46083;[2.507029, 46.720829];;FRS86ESOREB0742;FR*SOD*E*LYON*51*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.748407;48.289919;;Badonviller;; +;;;;;;;;FRGLYPLYON15621;FRS37E431;Labastide-Saint-Pierre | Avenue du Pech;;Rue Principale, 37120 Braslou;80801;[3.347765, 47.720211];;FRS86ESOREB0741;FR*SOD*E*LYON*51*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.420473;47.155156;;Thiébauménil;; +;;;;;;;;FRGLYPLYON15611;FRS41E438;LA GUERCHE - Parking NETTO - 146807;;Rue Paul Langevin, 37420 BEAUMONT EN VERON;27469;[2.748407, 47.002756];;FRS86ESOREB0051;FR*SOD*E*LYON*52*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.418951;48.970463;;Fontenoy-la-Joûte;; +;;;;;;;;FRGLYPLYON15512;FRIONE45920;Shell Aire de Haras HW;;Parking Salle Socio Culturelle, 37800 Drache;27562;[-1.420473, 43.586775];;FRS86ESOREB0461;FR*SOD*E*LYON*42*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.046546;46.4339625;;Magnières;; +;;;;;;;;FRGLYPLYON15521;FRS41E444;Pays de Brives Sud;;320 Av. Marc Lefrancq, 59121 Prouvy;27587;[-1.418951, 43.585904];;FRS86ESOREB0692;FR*SOD*E*LYON*52*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.046836;47.237075;;Moyen;; +;;;;;;;;FRGLYPLYON15522;FRS28E13075;RAW PARISGIVERNY 72;;lieu dit les peyroutilles, 46340 Salviac;27679;[2.046546, 47.849887];;FRS86ESOREB0691;FR*SOD*E*LYON*52*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.14581;47.350599;;Haudonville;; +;;;;;;;;FRGLYPLYON15511;FRS41E448;Pays de Brives Nord;;22 Rue du Vall Maillard, 41000 Blois;27285;[2.046836, 47.849873];;FRS86ESOREB0451;FR*SOD*E*LYON*53*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.86101;45.751247;;Vacqueville;; +;;;;;;;;FRGLYPLYON15411;FRS41E449;LAXOU - Centre commercial la cascade - 187763;;6 Rue de la Grande Épine, 76800 Saint-Étienne-du-Rouvray;27458;[6.14581, 48.6494];;FRS86ESOREB0452;FR*SOD*E*LYON*53*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.965497;46.69318;;Bénaménil;; +;;;;;;;;FRGLYPLYON15412;FRS41E443;NANCY - Parking mail de l'horloge - 187727;;23 Rue du Vall Maillard, 41000 Blois;27367;[5.86101, 45.243957];;FRS86ESOREB1241;FR*SOD*E*LYON*53*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.814386;46.895022;;Moncel-lès-Lunéville;; +;;;;;;;;FRGLYPLYON15422;FRCPIE6640555;LANEUVEVILLE - Parking de la piscine - 187442;;1 bis Place Pierre Alliet, 37500 Cravant-les-Côteaux;27246;[6.965497, 48.290046];;FRS86ESOREB1242;FR*SOD*E*LYON*53*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.54542;48.273996;;Merviller;; +;;;;;;;;FRGLYPLYON15421;FRS41E450;Bourges Sainte Thorette;;Rue des Clos, 22310 Plestin-les-Grèves;27502;[-0.814386, 46.447174];;FRS86ESOREB1162;FR*SOD*E*LYON*54*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.964374;43.489727;;Xermaménil;; +;;;;;;;;FRGLYPLYON15312;FRS37E450;Fontanelles;;A13, Aire de Rosny-sur-Seine Sud, 78710 Rosny-sur-Seine;27542;[3.54542, 48.870452];;FRS86ESOREB1161;FR*SOD*E*LYON*54*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.995222;48.69796;;Laronxe;; +;;;;;;;;FRGLYPLYON15311;FRS37E565;RAW PARISGIVERNY 41;;Aire de Vémars Est A1, 95470 Vémars;27112;[6.964374, 48.289919];;FRS86ESOREB0061;FR*SOD*E*LYON*54*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.063073;47.664023;;Croisilles;; +;;;;;;;;FRGLYPLYON9421;FRS41E451;BORNE HYPER U STATION 2;;15 Rue François Rochaix, 01100 Arbent;27467;[1.995222, 47.155156];;FRS86ESOREB0062;FR*SOD*E*LYON*54*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.25417363;48.93661;;Chavanod;; +;;;;;;;;FRGLYPLYON521;FRS18E20537;Nemours;;A9, Aire de Béziers Montblanc Sud, 34290 Montblanc;27131;[3.063073, 48.970463];;FRS86ESOREB0782;FR*SOD*E*LYON*55*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.661829;47.682055;;Quiéry-la-Motte;; +;;;;;;;;FRGLYPLYON9311;FRIONE46310;SONEPAR ALDIANCE 1;;RUE DU LAVOIR, 37340 Continvoir;27582;[2.25417363, 46.4339625];;FRS86ESOREB0781;FR*SOD*E*LYON*49*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.482925;45.275563;;Saint-Martin-d'Hères;; +;;;;;;;;FRGLYPLYON3812;FRS55E6536;Sarthe Sud;;Aire covoiturage, 37310 Chambourg-sur-Indre;27622;[-1.661829, 47.237075];;FRS86ESOREB0132;FR*SOD*E*LYON*48*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.931112;49.245067;;Val-de-Moder;; +;;;;;;;;FRGLYPLYON3521;FRCPIE6637615;Varennes-Changy | A77, Aire du Jardin des Arbres;;A35, Aire de Haut Koenigsbourg, 67600 Orschwiller;27528;[1.482925, 47.350599];;FRS86ESOREB0131;FR*SOD*E*LYON*48*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.844517;50.10205;;Kilstett;; +;;;;;;;;FRGLYPLYON3522;FRS41E435;644a2ea935cf6d6b98b2a0b7;;Rue des Caves Vaslins, 37500 Chinon;27284;[4.931112, 45.751247];;FRS86ESOREB1151;FR*SOD*E*LYON*48*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.239191;48.480158;;Le Vernois;; +;;;;;;;;FRGLYPLYON3611;FRS41E13911;E.LECLERC BORNE 2 DC;;Rue de l'Averne, 37370 CHEMILLE-SUR-DEME;27056;[4.844517, 46.69318];;FRS86ESOREB1211;FR*SOD*E*LYON*42*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.187398;46.0008547;;Morbecque;; +;;;;;;;;FRGLYPLYON3622;FRS41E437;St AMAND-MONTROND - Cours Manuel 2 - 171693;;Rue Creuse, 37190 Cheille;27507;[-0.239191, 46.895022];;FRS86ESOREB1212;FR*SOD*E*LYON*42*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.31743;47.555778;;Hondschoote;; +;;;;;;;;FRGLYPLYON3621;FRCPIE6638005;Diges;;Parc Commercial Delta-Sud ZA de la Grausette, 09340 Verniolle;27517;[-2.187398, 48.273996];;FRS86ESOREB0871;FR*SOD*E*LYON*43*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.14207;46.612695;;Ledringhem;; +;;;;;;;;FRGLYPLYON3612;FRS88E14423;BENGY-sur-Craon - Rte de Bourges - 186608;;Rue de la Fourbisserie, 37170 CHAMBRAY LES TOURS;27275;[1.31743, 43.489727];;FRS86ESOREB0961;FR*SOD*E*LYON*43*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.387813;49.992544;;Saint-Jans-Cappel;; +;;;;;;;;FRGLYPLYON3711;FRS88E14424;Labenne Ouest;;Le Colombier, 71340 Iguerande;27355;[6.14207, 48.69796];;FRS86ESOREB0221;FR*SOD*E*LYON*43*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.74469;43.29862;;Renescure;; +;;;;;;;;FRGLYPLYON3722;FRCPIE6639555;Labenne Est;;1 Rue Montgolfier, 62000 Arras;27213;[1.387813, 47.664023];;FRS86ESOREB0222;FR*SOD*E*LYON*43*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.208417;49.614324;;Rexpoëde;; +;;;;;;;;FRGLYPLYON3712;FRS55E6624;SAS AUNAUDIS BORNE 1;;rue de la mairie, 41130 Chatillon sur Cher;27279;[1.74469, 48.93661];;FRS86ESOREB1312;FR*SOD*E*LYON*44*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.825571;47.700796;;Hardifort;; +;;;;;;;;FRGLYPLYON3721;FRS88E14425;SAS AUNAUDIS BORNE 2;;Esplanade Pierre MENDES-FRANCE, 18000 Bourges;27245;[1.208417, 47.682055];;FRS86ESOREB1311;FR*SOD*E*LYON*44*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.040516;48.825393;;Holque;; +;;;;;;;;FRGLYPLYON3821;FRS88E14426;VANDOEUVRE-Parking relais du CHU Brabois - 187881;;Rue de la Gare, 37130 CINQ MARS LA PILE;27116;[4.825571, 45.275563];;FRS86ESOREB1261;FR*SOD*E*LYON*44*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.807788;48.289934;;Bollezeele;; +;;;;;;;;FRGLYPLYON3811;FRS28E12924;Aire de Saint-Nazaire les Eymes;;Allée Pré le Duc, 88170 Châtenois;27672;[4.040516, 49.245067];;FRS86ESOREB1262;FR*SOD*E*LYON*44*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.529178;48.532623;;Cassel;; +;;;;;;;;FRGLYPLYON4112;FRCPIE6530285;HMV SAINT DIE 4;;Place de la Mairie, 37310 Cigogne;27332;[4.807788, 50.10205];;FRS86ESOREB0031;FR*SOD*E*LYON*45*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.2005877;47.204422;;Cappelle-Brouck;; +;;;;;;;;FRGLYPLYON3822;FRS55E6533;LA BOUCHERIE RESTAURANT;;36 allée Flandre Dunkerque, 84190 Beaumes-de-Venise;27629;[-2.529178, 48.480158];;FRS86ESOREB0032;FR*SOD*E*LYON*45*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.59565;48.554601;;Buysscheure;; +;;;;;;;;FRGLYPLYON3911;FRS41E405;MONTMIRAIL - 48602 - Place de Montlean;;A11 Aire De Chartres Bois, 28300 Gasville-Oisème;27198;[0.2005877, 46.0008547];;FRS86ESOREB0431;FR*SOD*E*LYON*45*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.312729;44.236495;;Brouckerque;; +;;;;;;;;FRGLYPLYON3921;FRSHEE164;HMV SAINT DIE 3;;274 Rue Léon Gambetta, 59000 Lille;27170;[0.59565, 47.555778];;FRS86ESOREB0432;FR*SOD*E*LYON*45*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.702371;50.010736;;Boëseghem;; +;;;;;;;;FRGLYPLYON3912;FRCPIE6631655;MASSAY - Avenue Marechal Foch - 205973;;Centre - Abbé FIOT, 37250 Veigne;27166;[0.312729, 46.612695];;FRS86ESOREB1231;FR*SOD*E*LYON*46*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.476357;48.573786;;Blaringhem;; +;;;;;;;;FRGLYPLYON3922;FRCPIE6631545;Aire de Ussy sur Marne;;A8, Aire de l'Arc, 13790 Rousset;27377;[4.702371, 49.992544];;FRS86ESOREB1232;FR*SOD*E*LYON*46*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.547145;46.373134;;Steenbecque;; +;;;;;;;;FRGLYPLYON4021;FRCPIE6631745;PREVERANGES - Mairie - 148778;;Allée René Coulon, 37540 Saint-Cyr-sur-Loire;27322;[3.476357, 43.29862];;FRS86ESOREB0962;FR*SOD*E*LYON*46*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.509765;47.797822;;Bailleul;; +;;;;;;;;FRGLYPLYON4011;FRCPIE6632045;GEORGES RENAULT BORNE 1;;43 Bd de Thibaud, 31100 Toulouse;27431;[0.547145, 49.614324];;FRS86ESOREB0721;FR*SOD*E*LYON*46*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.635956;47.390532;;Arnèke;; +;;;;;;;;FRGLYPLYON4022;FRCPIE6632365;CHEMERY 2952 - Rue du Balay;;64 Rue Théophraste Renaudot, 56000 Vannes;27169;[1.509765, 47.700796];;FRS86ESOREB0872;FR*SOD*E*LYON*47*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.963021;45.8899;;Saint-Sylvestre-Cappel;; +;;;;;;;;FRGLYPLYON4012;FRS41E404;SONEPAR VAULX-EN-VELIN;;Parking Ronsard, 37800 SAINTE MAURE DE TOURAINE;27493;[2.635956, 48.825393];;FRS86ESOREB0722;FR*SOD*E*LYON*47*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.695643;43.985279;;Bierne;; +;;;;;;;;FRGLYPLYON4121;FRSHEE163;Aire de Saint Ambreuil;;42 Avenue Jean JAURES, 18200 St AMAND-MONTROND;27348;[6.963021, 48.289934];;FRS86ESOREB1252;FR*SOD*E*LYON*47*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.418074;47.082805;;Steenwerck;; +;;;;;;;;FRGLYPLYON4122;FRS41E407;LUMELEC SOFITOM1;;Rue de Couchot, 55000 BAR LE DUC;27230;[2.695643, 48.532623];;FRS86ESOREB1251;FR*SOD*E*LYON*47*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.765788;48.855598;;Wulverdinghe;; +;;;;;;;;FRGLYPLYON3512;FRS28E18653;Kergoët;;6 Rue Allory, 35740 Pacé;27218;[2.418074, 47.204422];;FRS86ESOREB1301;FR*SOD*E*LYON*48*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.912983;45.78463;;Thiennes;; +;;;;;;;;FRGLYPLYON3511;FRS41E409;ITM SEYESSES 1 BRVE 1;;75 Rue Edmond Rostand, 31200 Toulouse;27375;[4.765788, 48.554601];;FRS86ESOREB1302;FR*SOD*E*LYON*28*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.707178;45.856641;;Oudezeele;; +;;;;;;;;FRGLYPLYON3421;FRCPIE6633745;NANCY - PARKING PISCINE GENTILLY - 188610;;415 Chem. de Bottecreux, 74160 Collonges-sous-Salève;27226;[5.912983, 44.236495];;FRS86ESOREB0822;FR*SOD*E*LYON*28*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.114786;49.073179;;Neuf-Berquin;; +;;;;;;;;FRGLYPLYON3422;FRCPIE6633755;Blois Ménars;;Aire de Mornas Village, A7, 84550 Mornas;27016;[4.707178, 50.010736];;FRS86ESOREB0821;FR*SOD*E*LYON*28*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.404699;47.096046;;Eecke;; +;;;;;;;;FRGLYPLYON2821;FRS55E6621;Boinville-en-Mantois;;Aire d’Achères - La Forêt A6, 77760 Achères-la-Forêt;27643;[-1.114786, 48.573786];;FRS86ESOREB0922;FR*SOD*E*LYON*11*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.024389;48.538046;;Boeschepe;; +;;;;;;;;FRGLYPLYON2912;FRS55E6619;VILLEFRANCOEUR - 60409 - Aerodrome de BLOIS;;Place Alexandre CALDER, 37190 Sache;27108;[0.404699, 46.373134];;FRS86ESOREB0921;FR*SOD*E*LYON*8*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.255731;49.490326;;Bavinchove;; +;;;;;;;;FRGLYPLYON2922;FRIONE4017;Saint-Rambert Ouest;;8-10 Rue du Général de Gaulle, 37600 SAINT FLOVIER;27653;[1.024389, 47.797822];;FRS86ESOREB1192;FR*SOD*E*LYON*8*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.894038;47.939582;;Wormhout;; +;;;;;;;;FRGLYPLYON2911;FRS41E378;Reims - 95878 - Rue Gambetta - Parking rectorat;;Rue du Pressoir, 37140 SAINT NICOLAS DE BOURGUEIL;27165;[1.255731, 47.390532];;FRS86ESOREB1191;FR*SOD*E*LYON*8*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.183078;45.173218;;Watten;; +;;;;;;;;FRGLYPLYON2921;FRS28E13736;CHOOZ - Rue Paul Emile Janson - 57639;;Parking de la Gare, 55000 BAR LE DUC;27365;[4.894038, 45.8899];;FRS86ESOREB1272;FR*SOD*E*LYON*9*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.383523;49.017264;;Royère-de-Vassivière;; +;;;;;;;;FRGLYPLYON3012;FRIENE008501;Andel;;Avenue de la Foire, 37320 SAINT BRANCHS;27082;[3.183078, 43.985279];;FRS86ESOREB1271;FR*SOD*E*LYON*9*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35303;50.394888;;Chambon-sur-Voueize;; +;;;;;;;;FRGLYPLYON3021;FRIENE008502;Shell Aire des Eglantiers - Ruffec;;215 rue Louison Bobet, 29490 Guipavas;27593;[2.383523, 47.082805];;FRS86ESOREB0052;FR*SOD*E*LYON*9*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.133649;43.452155;;La Souterraine;; +;;;;;;;;FRGLYPLYON3022;FRCPIE6630425;Super Chargeur Neuille-Pont-Pierre A28 CCS;;Autoroute A10, Aire de Fontaine Colette, 37800 Saint-Épain;27524;[2.35303, 48.855598];;FRS86ESOREB0151;FR*SOD*E*LYON*9*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.284115;48.86053;;Évaux-les-Bains;; +;;;;;;;;FRGLYPLYON3011;FRIONE40170;SONEPAR CONNECT POITIERS;;Aire de la baie de Somme Autoroute, A16, 80970 Sailly-Flibeaucourt;27051;[3.133649, 45.78463];;FRS86ESOREB1022;FR*SOD*E*LYON*10*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.551434;47.254983;;Dun-le-Palestel;; +;;;;;;;;FRGLYPLYON3111;FRCPIE6630485;FUMAY - Place Aristide Briand - 57685;;Place André Mauxion, 37510 BALLAN MIRE;27438;[5.284115, 45.856641];;FRS86ESOREB0082;FR*SOD*E*LYON*10*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.431989;43.650765;;Bénévent-l'Abbaye;; +;;;;;;;;FRGLYPLYON3112;FRCPIE6630495;HYPER U AGDE BORNE 3;;Parking Maginot, 37210 Vouvray;27428;[2.551434, 49.073179];;FRS86ESOREB0402;FR*SOD*E*LYON*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.689664;45.691062;;Bonnat;; +;;;;;;;;FRGLYPLYON3121;FRS28E13737;Bolleville Est;;Rue Norbert Segard, 59223 Roncq;27117;[2.431989, 47.096046];;FRS86ESOREB0512;FR*SOD*E*LYON*10*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.191293;44.734301;;Saint-Vaury;; +;;;;;;;;FRGLYPLYON3122;FRCPIE6717765;MER 4037 - 1 Avenue Maréchal Maunoury;;Chemin du Mont, 55230 Spincourt;27414;[2.689664, 48.538046];;FRS86ESOREB0511;FR*SOD*E*LYON*11*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.182761;44.1183;;Aubusson;; +;;;;;;;;FRGLYPLYON3222;FRCPIE6719675;SONEPAR 3CCLIM CROISSY;;Rue principale - Place des Costois, 37130 LA CHAPELLE AUX NAUX;27119;[5.191293, 49.490326];;FRS86ESOREB0702;FR*SOD*E*LYON*27*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.333831;48.590522;;Guéret;; +;;;;;;;;FRGLYPLYON3212;FRCPIE6719695;HMV SAINT DIE 2;;37 Rue de Domrémy, 75013 Paris;27041;[0.182761, 47.939582];;FRS86ESOREB0701;FR*SOD*E*LYON*11*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.389028;47.9399;;Crozant;; +;;;;;;;;FRGLYPLYON3211;FRCPIE6715655;SONEPAR MELUN;;Parking du stade, 37390 ST ROCH;27008;[-0.333831, 45.173218];;FRS86ESOREB0391;FR*SOD*E*LYON*11*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.103642;49.232653;;Bourganeuf;; +;;;;;;;;FRGLYPLYON9321;FRIONE43860;St MARTIN D'AUXIGNY - Place de la Mairie - 188179;;Aire de service de Tours la Longue Vue, A10, 37380 Monnaie;27022;[0.389028, 49.017264];;FRS86ESOREB0392;FR*SOD*E*LYON*12*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.680558;45.778018;;Sainte-Feyre;; +;;;;;;;;FRGLYPLYON3322;FRS55E6626;GUIFFAUMONT CHAMPAUBERT - 48890 - Casino;;23 Rue de la Retardais, 35000 Rennes;27299;[3.103642, 50.394888];;FRS86ESOREB0662;FR*SOD*E*LYON*12*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.091331;48.326772;;Saint-Sulpice-le-Guérétois;; +;;;;;;;;FRGLYPLYON3312;FRCPIE6747105;Sisteron;;14 Rue Germain Sommeiller, 74100 Annemasse;27007;[5.680558, 43.452155];;FRS86ESOREB0591;FR*SOD*E*LYON*12*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.139773;46.725151;;Lussat;; +;;;;;;;;FRGLYPLYON3311;FRS55E6627;HAYBES - Place de la mairie - 57561;;Rue de la fontaine, 37110 Les Hermites;27157;[6.091331, 48.86053];;FRS86ESOREB0661;FR*SOD*E*LYON*12*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.983211;48.728361;;Le Grand-Bourg;; +;;;;;;;;FRGLYPLYON3321;FRS55E6646;Saint Hilaire du Harcouët;;3 bis Rue Barthélémy Thimonnier, 78120 Rambouillet;27049;[1.139773, 47.254983];;FRS86ESOREB0672;FR*SOD*E*LYON*13*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.484484;43.361722;;Pontarion;; +;;;;;;;;FRGLYPLYON3412;FRS55E6645;KRYS BORNE 1;;19 avenue du val de l'eure, 28630 Fontenay-sur-Eure;27547;[3.983211, 43.650765];;FRS86ESOREB0671;FR*SOD*E*LYON*13*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.925021;49.228438;;Vallière;; +;;;;;;;;FRGLYPLYON3411;FRS41E422;NAVEIL 4933 - Rue de Montrieux;;1082 Rte de Bordeaux, 40600 Biscarrosse;27448;[5.484484, 45.691062];;FRS86ESOREB0992;FR*SOD*E*LYON*13*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.841747;43.621346;;Auzances;; +;;;;;;;;FRGLYPLYON4111;FRS55E6637;PONTLEVOY 2950 - Rue de la Saulaie;;A36, 21250 Glanon;27026;[4.925021, 44.734301];;FRS86ESOREB0991;FR*SOD*E*LYON*13*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.670186;49.150483;;Boussac;; +;;;;;;;;FRGLYPLYON4221;FRS55E6625;Mionnay | A46, Aire De Mionnay;;2B Av. de l'Evre Saint-Pierre Montlimart, 49110 Montrevault-sur-Èvre;27636;[4.841747, 44.1183];;FRS86ESOREB0001;FR*SOD*E*LYON*14*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.87145;48.6219;;Gouzon;; +;;;;;;;;FRGLYPLYON5512;FRS41E423;Larzac;;10-14 rue Foulques NERRA, 37360 Semblancay;27070;[7.670186, 48.590522];;FRS86ESOREB0002;FR*SOD*E*LYON*8*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.039059;42.577784;;Bellegarde-en-Marche;; +;;;;;;;;FRGLYPLYON5222;FRCPIE6634845;BOURGES - PRADO - 109619;;Place Marcellin Renault, 37140 Bourgueil;27635;[6.87145, 47.9399];;FRS86ESOREB0401;FR*SOD*E*LYON*7*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.912453;47.3403572;;Crocq;; +;;;;;;;;FRGLYPLYON4922;FRS55E6638;09911164;;Rue du Stade, 37420 SAVIGNY EN VERON;27107;[-0.039059, 49.232653];;FRS86ESOREB0081;FR*SOD*E*LYON*7*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.05837;48.555099;;Felletin;; +;;;;;;;;FRGLYPLYON4911;FRCPIE6634875;SONEPAR CLERMONT-FER 3;;RUE DE LA REPUBLIQUE, 37800 Sepmes;27103;[4.912453, 45.778018];;FRS86ESOREB0592;FR*SOD*E*LYON*7*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.427018;45.470713;;Fursac;; +;;;;;;;;FRGLYPLYON4921;FRS55E6630;SONEPAR ST-VULBAS 8;;Impasse des Cabrières, 06250 Mougins;27339;[-2.05837, 48.326772];;FRS86ESOREB0791;FR*SOD*E*LYON*5*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.581681;45.8843468;;Genouillac;; +;;;;;;;;FRGLYPLYON5022;FRCPIE6635705;Aire de Vémars Ouest;;RUE PAUL MARCHAND, 37130 ST PATRICE;27598;[-1.427018, 46.725151];;FRS86ESOREB0711;FR*SOD*E*LYON*5*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.211785;45.775456;;Genay;; +;;;;;;;;FRGLYPLYON5021;FRCPIE6747085;BOURGES - Esprit 1 - 97832;;55 Rue Alain Gerbault, 56000 Vannes;27052;[4.581681, 48.728361];;FRS86ESOREB0751;FR*SOD*E*LYON*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.036179;50.927617;;Pierre-Buffière;; +;;;;;;;;FRGLYPLYON5012;FRIONE4386;SONEPAR CONNECT VAUX LE PENIL;;35 Bd de la Baie du Gaou, 83230 Bormes-les-Mimosas;27105;[3.211785, 43.361722];;FRS86ESOREB0752;FR*SOD*E*LYON*4*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.267674;49.089443;;Migron;; +;;;;;;;;FRGLYPLYON5011;FRS37E416;STENAY - 124570 - Parking Codécom;;ROUTE DE COUDRAY, 37600 ST JEAN ST GERMAIN;27090;[4.036179, 49.228438];;FRS86ESOREB0142;FR*SOD*E*LYON*4*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1847;48.814104;;Meursac;; +;;;;;;;;FRGLYPLYON5112;FRS55E6628;SUPER U ARNAGE ARNAGE 2;;Avenue du 11 novembre, 37250 Sorigny;27602;[2.267674, 43.621346];;FRS86ESOREB0141;FR*SOD*E*LYON*4*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16172;46.14335;;Cram-Chaban;; +;;;;;;;;FRGLYPLYON5122;FRCPIE6678665;Bedenac Ouest;;Ecurey - Rue de l'abbaye, 55290 MONTIERS SUR SAULX;27485;[6.1847, 49.150483];;FRS86ESOREB0101;FR*SOD*E*LYON*3*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.848341;47.852405;;Tesson;; +;;;;;;;;FRGLYPLYON5111;FRCPIE6678675;Orbec;;Aire d'Armor et d'Argoat, 35590 Saint-Gilles;27500;[6.16172, 48.6219];;FRS86ESOREB0102;FR*SOD*E*LYON*3*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.98495561;47.211736;;Saint-Georges-des-Coteaux;; +;;;;;;;;FRGLYPLYON5121;FRCPIE6678685;SONEPAR DOUAI 2;;41 Rue de la Lande, 49000 Angers;54328;[2.848341, 42.577784];;FRS86ESOREB0792;FR*SOD*E*LYON*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.783627;48.943368;;Montils;; +;;;;;;;;FRGLYPLYON5212;FRS55E6632;Centre Médical de la Burlière;;Aire de L’Ile Rose, A48, 38340 Voreppe;54547;[0.98495561, 47.3403572];;FRS86ESOREB1021;FR*SOD*E*LYON*3*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.383175;43.92298703;;Cabrières-d'Avignon;; +;;;;;;;;FRGLYPLYON4212;FRS55E6633;Aire de Loisy;;PLACE ST VINCENT, 37120 MARIGNY MARMANDE;54439;[3.783627, 48.555099];;FRS86ESOREB1082;FR*SOD*E*LYON*2*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.89454062;48.177233;;Mazères;; +;;;;;;;;FRGLYPLYON5211;FRIONE42340;Montpellier Saint-Aunès;;Rue de l'Abbé Favoreau, 37240 LA CHAPELLE-BLANCHE-ST-MARTIN;54284;[4.383175, 45.470713];;FRS86ESOREB1081;FR*SOD*E*LYON*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.795431;42.578429;;Biars-sur-Cère;; +;;;;;;;;FRGLYPLYON5221;FRIONE40960;Saint Victor de Morestel;;77 Route de Tours, 18100 Thenioux;54536;[4.89454062, 45.8843468];;FRS86ESOREB1071;FR*SOD*E*LYON*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.805584;46.11788;;Le Haillan;; +;;;;;;;;FRGLYPLYON5312;FRIENE002101;UTILE GRANE BORNE 1;;Parking Espace Coselia, 37390 Mettray;54362;[4.795431, 45.775456];;FRS86ESOREB1072;FR*SOD*E*LYON*2*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.548005;48.755076;;Pringy;; +;;;;;;;;FRGLYPLYON5311;FRS28E13739;GVA ORANGE ABB;;9 Chem. des Ramonets, 82000 Montauban;54295;[1.805584, 50.927617];;FRS86ESOREB1101;FR*SOD*E*LYON*1*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.456708;48.111453;;Riquewihr;; +;;;;;;;;FRGLYPLYON5321;FRIENE000502;SUPER U WOLFI BORNE 1;;Impasse de la Masniere, 72560 Changé;54111;[2.548005, 49.089443];;FRS86ESOREB1102;FR*SOD*E*LYON*1*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.76787;49.649323;;Châtel;; +;;;;;;;;FRGLYPLYON5322;FRIENE000501;VENTRON - Place de la Mairie - CCS;;46 Rue Nicolas Copernic, 13200 Arles;54029;[2.456708, 48.814104];;FRS86ESOREB0712;FR*SOD*E*LYON*1*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.684731;47.292443;;Vezin-le-Coquet;; +;;;;;;;;FRGLYPLYON5421;FRIENE001402;SUPER U DOZULE BORNE 1;;ZA Près de la Garde, 73300 Saint-Jean-de-Maurienne;54397;[4.76787, 46.14335];;FRGLYELYON18612;FR*SOD*E*LYON*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.170022;46.503822;;Le Carbet;; +;;;;;;;;FRGLYPLYON5422;FRIENE001401;GVA VAULX ABBGAUCHE;;401 Rue Daniel Trudaine, 56600 Lanester;54038;[2.684731, 47.852405];;FRGLYELYON19112;FR*SOD*E*LYON*6*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.39603;47.249876;;Ducos;; +;;;;;;;;FRGLYPLYON5411;FRIONE4096;Plouasne;;Rue de Beauregard, 21600 Longvic;54181;[0.170022, 47.211736];;FRGLYELYON19122;FR*SOD*E*LYON*6*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.91212277;43.715255;;Le Lamentin;; +;;;;;;;;FRGLYPLYON5412;FRIENE002102;638a101cbb23fb6dc695b185;;12 Rue Jacques Monod, 81000 Albi;54449;[4.39603, 48.943368];;FRGLYELYON19121;FR*SOD*E*LYON*6*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.447394;43.447921;;Fort-de-France;; +;;;;;;;;FRGLYPLYON5511;FRIENE004402;VITRY LE FRANCOIS-Av. du quai des fontaines-127010;;274 Av. de l'Europe, 83140 Six-Fours-les-Plages;54149;[4.91212277, 43.92298703];;FRGLYELYON18722;FR*SOD*E*LYON*6*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.846994;48.417013;;Le Diamant;; +;;;;;;;;FRGLYPLYON4912;FRIENE004401;PECHBLEU BORNE 3;;2 Rue Arago, 60000 Beauvais;55063;[6.447394, 48.177233];;FRGLYELYON18721;FR*SOD*E*LYON*7*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.490129;47.32171;;Le Marigot;; +;;;;;;;;FRGLYPLYON4812;FRS37E120;REIMS- René DESCARTES - 175071;;7 rue des fondrières, 89100 Saint-Clément;54039;[2.846994, 42.578429];;FRGLYELYON18711;FR*SOD*E*LYON*14*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.602227;47.343718;;Vaison-la-Romaine;; +;;;;;;;;FRGLYPLYON4822;FRIENE002302;SUPER U CASTRES BORNE 2;;5 Rue de la Peyrière, 34430 Saint-Jean-de-Védas;54184;[5.490129, 46.11788];;FRGLYELYON18712;FR*SOD*E*LYON*14*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.406892;46.850918;;Beaumettes;; +;;;;;;;;FRGLYPLYON4821;FRIENE002301;Aire de La Maxe;;660 Rte des Maisons Blanches, 05100 Briançon;54084;[5.602227, 48.755076];;FRGLYELYON18422;FR*SOD*E*LYON*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.63894;43.987314;;Péronne;; +;;;;;;;;FRGLYPLYON4211;FRIONE4318;LUDRES - PARKING DE LA MAIRIE - 187775;;Place Adolphe Langlois, 37130 LIGNIERES DE TOURAINE;54079;[-1.406892, 48.111453];;FRGLYELYON18611;FR*SOD*E*LYON*21*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.769307;48.133595;;Le Porge;; +;;;;;;;;FRGLYPLYON4222;FRIONE43180;Village Catalan Ouest;;Boulevard Pierre Lefacheux, 72230 Arnage;54157;[4.63894, 49.649323];;FRGLYELYON18512;FR*SOD*E*LYON*22*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.798736;44.658051;;Mondragon;; +;;;;;;;;FRGLYPLYON4322;FRIENE012022000201;LA CROIX EN TOURAINE 1256;;80 Rte de Travaillan, 84290 Sainte-Cécile-les-Vignes;54300;[1.769307, 47.292443];;FRGLYELYON18511;FR*SOD*E*LYON*22*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.876433;48.992331;;Le Prêcheur;; +;;;;;;;;FRGLYPLYON4321;FRIONE40420;SAINT JUST SAUVAGE - 57728 - Parking de l'Eglise;;54 Rue Georges Besse, 63100 Clermont-Ferrand;54265;[-1.798736, 46.503822];;FRGLYELYON19111;FR*SOD*E*LYON*22*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.13341;47.615521;;Le Morne-Rouge;; +;;;;;;;;FRGLYPLYON4312;FRIONE4024;GVA PRIEST-EN AC2;;300 rue Marcel Doret, 62100 Calais;54526;[0.876433, 47.249876];;FRGLYELYON18412;FR*SOD*E*LYON*22*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.684894;49.24801;;Les Abymes;; +;;;;;;;;FRGLYPLYON4311;FRIENE002202;Mionnay Saint-Galmier;;7 Rue Montespan, 91000 Évry-Courcouronnes;54472;[4.13341, 43.715255];;FRGLYELYON18421;FR*SOD*E*LYON*23*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.490503;46.54068;;Petit-Bourg;; +;;;;;;;;FRGLYPLYON4412;FRIENE002201;GVA ECULLY AC;;Place de Verdun, 37600 Loches;54550;[5.684894, 43.447921];;FRGLYELYON18411;FR*SOD*E*LYON*23*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.915513;50.927424;;Saint-Thibéry;; +;;;;;;;;FRGLYPLYON4411;FRCPIE6715665;BIOPATH HDF COQUELLES 1;;Rue de la Gare, 37800 Maille;54297;[1.490503, 48.417013];;FRGLYELYON18312;FR*SOD*E*LYON*23*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.583139;43.287488;;Meyrueis;; +;;;;;;;;FRGLYPLYON4421;FRIENE012022000202;Saint-Witz;;275 Rue Camille Desmoulins, 69400 Villefranche-sur-Saône;54217;[0.915513, 47.32171];;FRGLYELYON18311;FR*SOD*E*LYON*23*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.705334;45.14952753;;Saint-Vigor-le-Grand;; +;;;;;;;;FRGLYPLYON4422;FRIENE001302;SAINT-MAURICE BORNE 3;;Rue de la Dindassière, 37370 Louestault;54229;[1.583139, 47.343718];;FRGLYELYON11631;FR*SOD*E*LYON*24*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.862741;44.877413;;Verquigneul;; +;;;;;;;;FRGLYPLYON4522;FRIONE41710;Aire de Dracé;;23 Rue des Prairies Voie F, 76370 Rouxmesnil-Bouteilles;54292;[1.705334, 46.850918];;FRGLYELYON12021;FR*SOD*E*LYON*24*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.638258;46.541203;;Wambrechies;; +;;;;;;;;FRGLYPLYON4521;FRIENE001301;Jardin des arbres;;Parking Gué Romain, 37310 Reignac-sur-Indre;54154;[4.862741, 43.987314];;FRGLYELYON11731;FR*SOD*E*LYON*24*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.568067;47.383873;;Hénin-Beaumont;; +;;;;;;;;FRGLYPLYON4511;FRS51E4311;BEAUMONT EN VERON 15074 - Rue Paul Langevin;;22 chemin de Cruque Pignon Parking SONELOG, 33610 Cestas;54422;[-1.638258, 48.133595];;FRGLYELYON18212;FR*SOD*E*LYON*24*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.63311;47.456044;;Beaucouzé;; +;;;;;;;;FRGLYPLYON4512;FRIENE000402;638a0f9abb23fb6dc695ab55;;50 Rue François Coli, 34130 Mauguio;54116;[1.568067, 44.658051];;FRGLYELYON11641;FR*SOD*E*LYON*25*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.707788;46.948665;;Saint-Maurice-de-Beynost;; +;;;;;;;;FRGLYPLYON4621;FRIENE000401;Morières;;Parking Clos du Potager, 37530 POCE SUR CISSE;54135;[1.63311, 48.992331];;FRGLYELYON11611;FR*SOD*E*LYON*25*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.188615;47.4185;;Baie-Mahault;; +;;;;;;;;FRGLYPLYON4612;FRIONE4171;EPINAL - Place Jeanne Arc - 144226 - CCS;;22 Chem. de Cruque Pignon Parking SONELOG, 33610 Cestas;54243;[-0.707788, 47.615521];;FRGLYELYON11621;FR*SOD*E*LYON*25*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.332889;48.610175;;Saint-Claude;; +;;;;;;;;FRGLYPLYON4622;FRS37E157;Village Catalan Est;;34 Rue Nobel, 62360 Saint-Léonard;54555;[1.188615, 49.24801];;FRGLYELYON11711;FR*SOD*E*LYON*25*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.80509;48.515332;;Remire-Montjoly;; +;;;;;;;;FRGLYPLYON4611;FRS51E4265;Ceignes Haut Bugey;;Aire de Glanon A36, 21250 Glanon;54450;[0.332889, 46.54068];;FRGLYELYON11721;FR*SOD*E*LYON*26*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.60124;48.612608;;Charnay-lès-Mâcon;; +;;;;;;;;FRGLYPLYON4711;FRS37E127;COMMERCY - 157987 - Piscine;;rue du 11 Novemebre, 37360 ROUZIERS DE TOURAINE;54101;[1.80509, 50.927424];;FRGLYELYON11741;FR*SOD*E*LYON*26*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.8003045;47.05409;;La Wantzenau;; +;;;;;;;;FRGLYPLYON4722;FRS37E156;ITEP-ROCHERS BORNE 1;;18 Rue Victor Grignard, 42000 Saint-Étienne;54065;[5.60124, 43.287488];;FRGLYELYON11822;FR*SOD*E*LYON*26*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.232587;47.997089;;Castres;; +;;;;;;;;FRGLYPLYON4721;FRCPIE6708365;Poix Terron - Rue de la gare - 188242;;Parking Espace de loisir Jean Vimenet, 37160 NEUILLY LE BRIGNON;54519;[0.8003045, 45.14952753];;FRGLYELYON12012;FR*SOD*E*LYON*26*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.331326;45.856939;;Amiens;; +;;;;;;;;FRGLYPLYON4712;FRS51E4268;VILLEFRANCHE SUR CHER 5020 - Rue Marcel Géré;;Chartres-Gasville A11, 28300 Gasville-Oisème;54199;[1.232587, 44.877413];;FRGLYELYON11821;FR*SOD*E*LYON*27*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.556317;49.189088;;Saint-Côme;; +;;;;;;;;FRGLYPLYON4811;FRIONE4041;SU LA CHAUME BORNE 1;;8 Rue du Dr Ducroquet, 59700 Marcq-en-Barœul;54585;[0.331326, 46.541203];;FRGLYELYON11811;FR*SOD*E*LYON*27*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.710812;50.12472;;Matoury;; +;;;;;;;;FRGLYPLYON2822;FRIONE40410;COURCAY 1234;;7 Rue Léon Berthault, 35000 Rennes;54430;[0.556317, 47.383873];;FRGLYELYON11812;FR*SOD*E*LYON*27*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.413577;49.318152;;Huttenheim;; +;;;;;;;;FRGLYPLYON2811;FRIENE006301;Aire d’Ambrussum Nord;;77 Rue des Rigondes, 93170 Bagnolet;54350;[0.710812, 47.456044];;FRGLYELYON11911;FR*SOD*E*LYON*21*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.131556;47.336889;;Fauquembergues;; +;;;;;;;;FRGLYPLYON2812;FRS51E4264;Trets | Rue Clerion 1;;Place du mail, 37370 NEUVY LE ROI;54281;[0.413577, 46.948665];;FRGLYELYON11921;FR*SOD*E*LYON*21*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.396898;44.039853;;Wissant;; +;;;;;;;;FRGLYPLYON1112;FRS37E122;09910787;;Rte de Tournai, 59500 Douai;54115;[-0.131556, 47.4185];;FRGLYELYON11922;FR*SOD*E*LYON*15*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.760154;45.84386863;;Marck;; +;;;;;;;;FRGLYPLYON822;FRCPIE6679575;Athée sur Cher 10710 - Place de la Mairie 1;;4 Av. du Gros Chêne, 95610 Éragny-sur-Oise;54150;[5.396898, 48.610175];;FRGLYELYON11912;FR*SOD*E*LYON*21*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.427055;43.63593;;Octeville-sur-Mer;; +;;;;;;;;FRGLYPLYON812;FRIONE4404;GY EN SOLOGNE 211305 - rue croix Saint-André;;Aire du Cœur d'Aquitaine, A65, 33840 Captieux;54008;[1.760154, 48.515332];;FRGLYELYON18211;FR*SOD*E*LYON*15*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.21332;44.609766;;Criquetot-l'Esneval;; +;;;;;;;;FRGLYPLYON821;FRIONE44041;Châteauroux Nord;;Rue du Prieuré, 37220 PARCEY SUR VIENNE;54312;[2.427055, 48.612608];;FRGLYELYON17412;FR*SOD*E*LYON*15*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.233912;48.470684;;Schœlcher;; +;;;;;;;;FRGLYPLYON911;FRS28E13740;SONELOG LE PONTET 6;;Impasse de la Forge, 37600 Perrusson;54560;[1.21332, 47.05409];;FRGLYELYON18112;FR*SOD*E*LYON*15*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.284364;48.586706;;Saint-Esprit;; +;;;;;;;;FRGLYPLYON912;FRIENE001801;BNR BORNE 1;;7 Av. Jules Verne, 44230 Saint-Sébastien-sur-Loire;54287;[1.233912, 47.997089];;FRGLYELYON17221;FR*SOD*E*LYON*16*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.299493;48.0588;;Rivière-Pilote;; +;;;;;;;;FRGLYPLYON922;FRIENE001202;Aire-jardin des Causses du Lot;;22 Rue de la Rigourdière, 35510 Cesson-Sévigné;54543;[5.284364, 45.856939];;FRGLYELYON17321;FR*SOD*E*LYON*16*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.409856;48.730179;;Saint-Joseph;; +;;;;;;;;FRGLYPLYON921;FRIENE001201;Aire de Rosny-Sud;;6 Av. d'Ouessant, 91140 Villebon-sur-Yvette;54125;[-0.299493, 49.189088];;FRGLYELYON17322;FR*SOD*E*LYON*16*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.358236;43.58019;;Sahune;; +;;;;;;;;FRGLYPLYON1012;FRS37E132;BORNES WELDOM BORNE 2;;526 Chem. de la Source, 83400 Hyères;54206;[3.409856, 50.12472];;FRGLYELYON17312;FR*SOD*E*LYON*16*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.133889;48.840804;;Yvetot;; +;;;;;;;;FRGLYPLYON1021;FRIENE001502;Val de Reuil;;A62, Aire de Mas d'Agenais, 47430 Le Mas-d'Agenais;54349;[-0.358236, 49.318152];;FRGLYELYON17311;FR*SOD*E*LYON*17*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.049093;45.856424;;Canteleu;; +;;;;;;;;FRGLYPLYON1011;FRIENE001501;QUADRIPACK BORNE 1;;Super U 28 Route de Valbonne, 06130 Grasse;54260;[1.133889, 47.336889];;FRGLYELYON17212;FR*SOD*E*LYON*17*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.07050827;47.504363;;Gruchet-le-Valasse;; +;;;;;;;;FRGLYPLYON1022;FRIENE001802;BIOPATH HDF COQUELLES 2;;Aire de Valmy Le Moulin A4, 51800 Valmy;54588;[5.049093, 44.039853];;FRGLYELYON17222;FR*SOD*E*LYON*17*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.955762;48.775137;;Le Grand-Quevilly;; +;;;;;;;;FRGLYPLYON1111;FRSPSESHEL121;SONEPAR CCF AUBAGNE;;Rue de Mulhouse, 68300 Saint-Louis;54222;[5.07050827, 45.84386863];;FRGLYELYON17211;FR*SOD*E*LYON*17*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.395161;44.039147;;Saint-Sulpice-sur-Risle;; +;;;;;;;;FRGLYPLYON2711;FRIENE006302;Aire du Manoire;;1 Cours Manuel, 18200 Saint AMAND-MONTROND;54176;[6.955762, 43.63593];;FRGLYELYON17121;FR*SOD*E*LYON*18*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.012166;47.8782;;Saint-Aubin-sur-Scie;; +;;;;;;;;FRGLYPLYON1121;FRIENE000302;CGED SARLAT;;Rue de l'hotel de ville, 41250 MONT PRES CHAMBORD;54152;[4.395161, 44.609766];;FRGLYELYON17421;FR*SOD*E*LYON*18*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.577741;47.387572;;Harfleur;; +;;;;;;;;FRGLYPLYON1122;FRIENE000301;QUADRIPACK BORNE 2;;Parking rue du Lavoir, 37110 Villedomer;54129;[1.012166, 48.470684];;FRGLYELYON17112;FR*SOD*E*LYON*18*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.52264;48.4286;;Saint-Pierre-lès-Elbeuf;; +;;;;;;;;FRGLYPLYON1221;FRS51E4286;LUYNES 1339;;zac les Masselettes, 34490 Thézan-lès-Béziers;54076;[1.577741, 48.586706];;FRGLYELYON17111;FR*SOD*E*LYON*18*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.339952;48.435547;;Éloyes;; +;;;;;;;;FRGLYPLYON1212;FRIENE000902;NOTRE DAME D'OE 1341;;zi la Champagne, 45420 Bonny-sur-Loire;54077;[6.52264, 48.0588];;FRGLYELYON17122;FR*SOD*E*LYON*19*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.544851;49.119967;;Baume-les-Dames;; +;;;;;;;;FRGLYPLYON1211;FRIENE000901;JAULNAY 1337;;La Benetiere, 85590 Treize-Vents;54040;[1.339952, 48.730179];;FRGLYELYON17012;FR*SOD*E*LYON*19*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.381954;47.6492611;;Plurien;; +;;;;;;;;FRGLYPLYON1222;FRIENE001901;Longué-les-Cossonnières;;Avenue du Léman, 74380 Bonne;54520;[6.544851, 43.58019];;FRGLYELYON17022;FR*SOD*E*LYON*19*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.283908;48.0442;;Sainte-Adresse;; +;;;;;;;;FRGLYPLYON1312;FRCPIE6753155;TREVERAY - 122901 - Mairie;;D981, 60590 Trie-la-Ville;54201;[1.381954, 48.840804];;FRGLYELYON17011;FR*SOD*E*LYON*19*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.035971;48.121309;;Épouville;; +;;;;;;;;FRGLYPLYON1311;FRIONE4385;AUNEAU BLEURY ST SYMPHORIEN-Guy Vasselais-175635;;Autoroute du Soleil, 77140 Darvault;54331;[5.283908, 45.856424];;FRGLYELYON17021;FR*SOD*E*LYON*20*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.162319;48.6458;;Plévenon;; +;;;;;;;;FRGLYPLYON1321;FRIONE43850;SONEPAR LISSES;;27 Chem. d'Uliet, 31700 Cornebarrieu;54393;[4.035971, 47.504363];;FRGLYELYON17422;FR*SOD*E*LYON*20*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.359979;47.812847;;Plouër-sur-Rance;; +;;;;;;;;FRGLYPLYON1322;FRCPIE6753165;Loché-sur-Indrois;;30 Av. des Puisatiers Centre commercial Super, 13580 La Fare-les-Oliviers;54255;[5.162319, 48.775137];;FRGLYELYON17411;FR*SOD*E*LYON*20*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.76674;48.19388;;Le Crès;; +;;;;;;;;FRGLYPLYON1412;FRCPIE6753085;CLOYES-SUR-LE-LOIR - Place Gambetta - 127147;;Place du 18 Octobre, 28200 Chateaudun;54209;[1.359979, 44.039147];;FRGLYELYON18111;FR*SOD*E*LYON*20*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.826062;47.575025;;Villeneuve-lès-Béziers;; +;;;;;;;;FRGLYPLYON811;FRCPIE6753145;SONEPAR ST-VULBAS 2;;Aire Hastingues Nord, A64, 40300 Hastingues;54539;[6.76674, 47.8782];;FRGLYELYON17711;FR*SOD*E*LYON*55*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9315;48.271745;;Calais;; +;;;;;;;;FRGLYPLYON721;FRCPIE6753035;SU COLOMBELLES BORNE 1;;Aire de Keskastel-Ouest A4, 67260 Keskastel;54061;[0.826062, 47.387572];;FRGLYELYON18012;FR*SOD*E*LYON*32*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.709964;47.15519;;Kintzheim;; +;;;;;;;;FRGLYPLYON722;FRS28E13967;CAUDRY MAIRIE;;9 place d'Armes, 88350 Liffol-le-Grand;54373;[2.9315, 48.4286];;FRGLYELYON18011;FR*SOD*E*LYON*55*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.508255;49.036892;;Langouet;; +;;;;;;;;FRGLYPLYON711;FRCPIE6752245;LA CAPRICIEUSE GOLD;;Piscine, 28150 Voves;54365;[1.709964, 48.435547];;FRGLYELYON17911;FR*SOD*E*LYON*78*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.21506944;48.2364;;Cholet;; +;;;;;;;;FRGLYPLYON512;FRCPIE6752235;CHISSAY EN TOURAINE 4723 - Place du Château;;6 Boulevard Salomé, 59820 Gravelines;54595;[5.508255, 49.119967];;FRGLYELYON17912;FR*SOD*E*LYON*75*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.40224;47.157244;;Saint-Vallerin;; +;;;;;;;;FRGLYPLYON522;FRIENE003102;GVA CARPENTRAS ABB;;21 Chem. d'Uliet, 31700 Cornebarrieu;54303;[-2.21506944, 47.6492611];;FRGLYELYON17812;FR*SOD*E*LYON*75*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.546522;48.088989;;Avelin;; +;;;;;;;;FRGLYPLYON411;FRIENE003101;Lyon-Dagneux Sud;;sise La Terra, 42140 Chazelles sur Lyon;62259;[6.40224, 48.0442];;FRGLYELYON17811;FR*SOD*E*LYON*76*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.18008;47.567883;;Gruissan;; +;;;;;;;;FRGLYPLYON421;FRCPIE6629455;SONEPAR GRASSE;;Aire de Corbières Nord, A61, 11700 Capendu;74067;[-0.546522, 48.121309];;FRGLYELYON17712;FR*SOD*E*LYON*76*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.585304;47.12379;;Ville-di-Pietrabugno;; +;;;;;;;;FRGLYPLYON412;FRIENE001902;SONEPAR AUBENAS 2;;1 rue de la croix st Jacques, 88200 St nabord;62680;[6.18008, 48.6458];;FRGLYELYON17611;FR*SOD*E*LYON*76*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.466396;46.808706;;Latour-Bas-Elne;; +;;;;;;;;FRGLYPLYON422;FRS41E457;LA LOUPE - Rue Pasteur - 134213;;1 rue sœur Sidonie, 88440 Nomexy;38421;[3.585304, 47.812847];;FRGLYELYON11541;FR*SOD*E*LYON*76*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.059607;47.285643;;Courlans;; +;;;;;;;;FRGLYPLYON312;FRIONE4631;MAINTENON - Place Aristide Briand - 128898;;Rte de Gallardon, 28130 Hanches;38261;[6.466396, 48.19388];;FRGLYELYON17622;FR*SOD*E*LYON*77*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.624898;47.076978;;Chamouille;; +;;;;;;;;FRGLYPLYON322;FRS41E8822;RAON AUX BOIS - ROUTE D'ARCHES - 162333 - CCS;;Place de la république, 88410 MONTHUREUX-SUR SAÔNE;67372;[-3.059607, 47.575025];;FRGLYELYON17612;FR*SOD*E*LYON*77*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.99582;49.182375;;La Chapelle-de-Guinchay;; +;;;;;;;;FRGLYPLYON311;FRS41E8823;VERNOUILLET - 16 Avenue Marc CHAPPEY - 139069;;111 Rue Sébastien Charléty, 73490 La Ravoire;67237;[1.624898, 48.271745];;FRGLYELYON17621;FR*SOD*E*LYON*77*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.400307;46.82673;;Givenchy-en-Gohelle;; +;;;;;;;;FRGLYPLYON321;FRS41E453;BASTIDE DU PLAN BORNE 1;;Aire de Saint Leger Est Autoroutes A10, 17800 Saint Léger;39553;[1.99582, 47.15519];;FRGLYELYON17511;FR*SOD*E*LYON*77*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.95925;46.88286;;Bois-Bernard;; +;;;;;;;;FRGLYPLYON221;FRS41E454;SOREL-MOUSSEL - Place De La Mairie - 139436;;Place du Champ de Foire, 18270 Culan;59416;[3.400307, 49.036892];;FRGLYELYON17521;FR*SOD*E*LYON*78*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.911604;47.473644;;Pordic;; +;;;;;;;;FRGLYPLYON212;FRS41E455;SONEPAR ST-VULBAS 9;;Parc du Loreau Route de Gallardon, 28130 Hanches;59309;[6.95925, 48.2364];;FRGLYELYON17522;FR*SOD*E*LYON*81*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.747075;48.17977;;Penvénan;; +;;;;;;;;FRGLYPLYON211;FRIENE003501;Maison Dieu;;Chemin de Villeneuve, 18000 Bourges;59338;[2.911604, 47.157244];;FRGLYELYON17512;FR*SOD*E*LYON*78*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.252767;46.99799;;Camlez;; +;;;;;;;;FRGLYPLYON222;FRIENE003502;55 BAR LE DUC-place des exelmans-66230;;24 Rte de Couëron, 44360 Saint-Étienne-de-Montluc;59535;[-0.747075, 48.088989];;FRGLYELYON11531;FR*SOD*E*LYON*78*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.61971;47.336965;;Laurenan;; +;;;;;;;;FRGLYPLYON112;FRS28E13478;GRAMAGLIA SARL BORNE ELECTRIC;;D2152, 45130 Baule;59497;[2.252767, 47.567883];;FRGLYELYON11131;FR*SOD*E*LYON*79*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.140409;48.957709;;Glomel;; +;;;;;;;;FRGLYPLYON121;FRS51E5014;LE THILLOT - 177158 - CCS;;A8 Aire De Bréguieres Nord, 06250 Mougins;59499;[2.61971, 47.12379];;FRGLYELYON11521;FR*SOD*E*LYON*79*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.57943;48.26783;;Pleubian;; +;;;;;;;;FRGLYPLYON122;FRS28E12929;MONTLOUIS SUR LOIRE 1213 - Rue Rousseau;;La petite Croix, 72300 Sablé-sur-Sarthe;59282;[-1.140409, 46.808706];;FRGLYELYON10221;FR*SOD*E*LYON*79*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.418853;48.159642;;La Roche-Jaudy;; +;;;;;;;;FRGLYPLYON111;FRIENE006102;Aire de Jonchets - Les Récompenses;;Rue Philippe Lebon, 85000 La Roche-sur-Yon;59307;[2.57943, 47.285643];;FRGLYELYON10111;FR*SOD*E*LYON*79*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.80268;45.634803;;Le Mené;; +;;;;;;;;FRGLYPLYON611;FRIENE006101;BEVILLE LE COMTE - Rue Pinceloup - 130145;;60 Chem. des Evequaux, 38330 Biviers;59089;[2.418853, 47.076978];;FRGLYELYON10121;FR*SOD*E*LYON*80*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.11646;45.897783;;Pleudihen-sur-Rance;; +;;;;;;;;FRGLYPLYON622;FRCPIE6590225;Verdun Saint-Nicolas Nord;;Z.A. des Landes, La Gesvais, 22490 Plouër-sur-Rance;59135;[3.80268, 49.182375];;FRGLYELYON10141;FR*SOD*E*LYON*80*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.56521;48.1726;;Binic-Étables-sur-Mer;; +;;;;;;;;FRGLYPLYON621;FRIONE4234;Allaire;;38 Pl. de la Liberté, 38400 Saint-Martin-d'Hères;59130;[2.11646, 46.82673];;FRGLYELYON10131;FR*SOD*E*LYON*80*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.874999;48.1402;;Hillion;; +;;;;;;;;FRGLYPLYON612;FRS28E13943;XERTIGNY - 177098 - CCS;;Parking Louis Victor de Broglie, 51430 Bezannes;59119;[2.56521, 46.88286];;FRGLYELYON10241;FR*SOD*E*LYON*80*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.387454;47.304761;;Plaintel;; +;;;;;;;;FRGLYPLYON712;FRS28E13903;SOMOUEST BORNE 1;;Rue des Tilleuls, 53170 Meslay-du-Maine;59110;[2.874999, 47.473644];;FRGLYELYON10211;FR*SOD*E*LYON*75*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.45226;47.36434;;Plédran;; +;;;;;;;;FRGLYPLYON1421;FRCPIE6715775;HOUDEMONT - Parking relais de la gare - 187685;;Le Haut des Carrières Route de Lunéville, 88700 Rambervilliers;59087;[1.387454, 48.17977];;FRGLYELYON10231;FR*SOD*E*LYON*75*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.857829;47.101366;;Dinan;; +;;;;;;;;FRGLYPLYON1422;FRCPIE6601735;CGED AUXERRE;;Place Jean Baptiste Clément, 08800 Monthermé;59084;[2.45226, 46.99799];;FRGLYELYON10311;FR*SOD*E*LYON*74*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.366913;46.53885;;Guingamp;; +;;;;;;;;FRGLYPLYON1411;FRIENE001602;EPINAL - Rue Philippe Séguin - 159235 - CCS;;Place René Sarette-Rue Emile Wenz, 51140 Jonchery sur Vesle;59578;[2.857829, 47.336965];;FRGLYELYON10041;FR*SOD*E*LYON*74*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.978697;46.642269;;La Vicomté-sur-Rance;; +;;;;;;;;FRGLYPLYON2111;FRIENE001601;SUPER U CARNAC BORNE 3;;50 Route d'Hirson, 08 Maubert Fontaine;59043;[4.366913, 48.957709];;FRGLYELYON10321;FR*SOD*E*LYON*67*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.451327;49.01664;;Perros-Guirec;; +;;;;;;;;FRGLYPLYON2222;FRS28E13434;VOVES - Rue de Châteaudun - 141761;;8 Rue Claude Bloch, 14000 Caen;59018;[6.978697, 48.26783];;FRGLYELYON10331;FR*SOD*E*LYON*67*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.877437;48.385134;;Plourivo;; +;;;;;;;;FRGLYPLYON2212;FRCPIE6715865;MASSAY - Place de l'église - 112319;;Parking Vaubecourt, 51000 Chalons en Champagne;59546;[6.451327, 48.159642];;FRGLYELYON10341;FR*SOD*E*LYON*68*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.919794;46.80106;;Plumieux;; +;;;;;;;;FRGLYPLYON2221;FRCPIE6715855;UNILABS BIO CT CHATEAU THIERRY;;Parking Rue Louis Victor de Broglie, 51430 Bezannes;59082;[4.877437, 45.634803];;FRGLYELYON10421;FR*SOD*E*LYON*68*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.87923;48.449077;;Broons;; +;;;;;;;;FRGLYPLYON2211;FRCPIE6715785;SAULCY SUR MEURTHE - 161611 - CCS;;La Grande Galienais, 35506 Vitré;59581;[0.919794, 45.897783];;FRGLYELYON10411;FR*SOD*E*LYON*68*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.47546;48.7293536;;Langoat;; +;;;;;;;;FRGLYPLYON2321;FRIENE000602;SANCERGUES - La Chicane - 181993;;5 Rue François Arago, 76150 La Vaupalière;59664;[6.87923, 48.1726];;FRGLYELYON10431;FR*SOD*E*LYON*68*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.544709;46.57702787;;Plouézec;; +;;;;;;;;FRGLYPLYON2312;FRCPIE6715765;SONEPAR LAVAL;;Centre E.Leclerc, A31, 57280 Maizières-lès-Metz;59590;[6.47546, 48.1402];;FRGLYELYON10441;FR*SOD*E*LYON*69*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.43186;48.146012;;Plouguiel;; +;;;;;;;;FRGLYPLYON2322;FRCPIE6715745;BRINON-sur-Sauldre - Maire - 186370;;Aire de Rouillé Pamproux Sud, 79800 Pamproux;59453;[2.544709, 47.304761];;FRGLYELYON10031;FR*SOD*E*LYON*69*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.373375;47.081654;;Bégard;; +;;;;;;;;FRGLYPLYON2311;FRCPIE6715695;BRECY - Mairie - 112944;;ZA du, Impasse de Beauregard, 47520 Le Passage;59423;[2.43186, 47.36434];;FRGLYELYON10021;FR*SOD*E*LYON*69*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.43252;47.10104724;;Louannec;; +;;;;;;;;FRGLYPLYON2411;FRCPIE6715685;FIDEMECA BORNE 2;;Place de la Marie, 08400 Monthois;59189;[2.373375, 47.101366];;FRGLYELYON10531;FR*SOD*E*LYON*69*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.283484;47.09136482;;Plancoët;; +;;;;;;;;FRGLYPLYON2412;FRIENE000802;HENRICHEMONT - La Borne - 186354;;935 Z.I. la Gloriette, 38160 Chatte;59086;[2.43252, 46.53885];;FRGLYELYON9711;FR*SOD*E*LYON*70*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.56678;48.113672;;Ploubezre;; +;;;;;;;;FRGLYPLYON2422;FRIENE000801;BOURGES - Parking Pyrotechnie - 96970;;Lac Bairon, 08390 BAIRON ET SES ENVIRONS;59054;[2.283484, 46.642269];;FRGLYELYON9412;FR*SOD*E*LYON*70*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.602354;49.851873;;Ploubazlanec;; +;;;;;;;;FRGLYPLYON2421;FRIENE002001;VILLE EN TARDENOIS;;Rue Noël Champagne, 08230 Rocroi;59663;[1.56678, 49.01664];;FRGLYELYON9422;FR*SOD*E*LYON*72*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.71346;47.078991;;Saint-Quay-Portrieux;; +;;;;;;;;FRGLYPLYON2511;FRIENE002002;CHEZAL-BENOIT - Poste - 112663;;A10 Aire de Fenioux Est, 17350 Fenioux;59647;[6.602354, 48.385134];;FRGLYELYON9512;FR*SOD*E*LYON*72*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.252578;44.566656;;Yvignac-la-Tour;; +;;;;;;;;FRGLYPLYON2512;FRIENE000601;DUN-SUR-AURON - Piscine - 115406;;Village Historique, 08090 Montcornet;23165;[2.71346, 46.80106];;FRGLYELYON9511;FR*SOD*E*LYON*72*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2288233;48.375871;;Belle-Isle-en-Terre;; +;;;;;;;;FRGLYPLYON2522;FRCPIE6715845;LERE - Port - 204137;;Aire Camping Car, 08 Bogny sur Meuse;23045;[1.252578, 48.449077];;FRGLYELYON9612;FR*SOD*E*LYON*72*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35150861;48.651644;;Châtelaudren-Plouagat;; +;;;;;;;;FRGLYPLYON2521;FRCPIE6715835;BONNEVAL - Rue de la grève - 134496;;Aire de service A10 Blois, 41000 Villerbon;23176;[4.2288233, 48.7293536];;FRGLYELYON9611;FR*SOD*E*LYON*73*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.682819;46.99737769;;Gouarec;; +;;;;;;;;FRGLYPLYON2612;FRCPIE6715825;PLAIMPIED GIVAUDINS - Gobbiers - 112214;;Centre des Congrès, 08500 Les Mazures;23076;[2.35150861, 46.57702787];;FRGLYELYON9712;FR*SOD*E*LYON*73*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.414504;48.322194;;Maël-Pestivien;; +;;;;;;;;FRGLYPLYON2622;FRCPIE6715815;SAINT-SATUR - Résistance - 200419;;Aire de service d’Ostwald – Autoroute A35, 67540 Ostwald;23075;[1.682819, 48.146012];;FRGLYELYON9821;FR*SOD*E*LYON*73*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.37298052;48.976424;;Pédernec;; +;;;;;;;;FRGLYPLYON2621;FRCPIE6715805;Châlons-en-Champagne | Rue du Flocmagny;;Place Mairie, 08 Bairon et ses Environs;23021;[2.414504, 47.081654];;FRGLYELYON10011;FR*SOD*E*LYON*73*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.40000606;45.196766;;Plouëc-du-Trieux;; +;;;;;;;;FRGLYPLYON2611;FRCPIE6715795;ST MARGUERITE - Rue de la Meurthe - 159296 - CCS;;Couture d'en Bas, 08 Thilay;23025;[2.37298052, 47.10104724];;FRGLYELYON9812;FR*SOD*E*LYON*74*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.392723;48.200212;;Louargat;; +;;;;;;;;FRGLYPLYON2722;FRIENE000702;EPINAL - Rue de Remiremont - 159049 - Type 2;;Place de la Mairie, 0! Machault;23247;[2.40000606, 47.09136482];;FRGLYELYON9811;FR*SOD*E*LYON*81*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.26026;46.302012;;Plougrescant;; +;;;;;;;;FRGLYPLYON2721;FRIENE000701;ZI PONTET BORNE 1;;Place de la Mairie- Parking Poste, 08 Les Hautes Rivieres;23008;[1.392723, 48.113672];;FRGLYELYON9822;FR*SOD*E*LYON*81*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.398691;49.508675;;Ploumilliau;; +;;;;;;;;FRGLYPLYON2712;FRIENE001702;Saint Junien;;Rue Verlaine, 08130 Attigny;23096;[3.26026, 49.851873];;FRGLYELYON9921;FR*SOD*E*LYON*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.107851;49.4177;;Plouvara;; +;;;;;;;;FRGLYPLYON2122;FRIENE001701;CORCIEUX - Pl. du Gén de Gaulle - 161737 - CCS;;31 Rue du Bois d'Orly, 57685 Augny;23070;[2.398691, 47.078991];;FRGLYELYON9911;FR*SOD*E*LYON*90*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.880171;49.42853006;;Le Vieux-Marché;; +;;;;;;;;FRGLYPLYON2121;FRIENE001102;DINOZE - 161636 - CCS;;Place Aristide Briand, 08460 Signy L'Abbaye;23030;[6.107851, 44.566656];;FRGLYELYON9931;FR*SOD*E*LYON*88*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.543013;49.262042;;Saint-Michel-en-Grève;; +;;;;;;;;FRGLYPLYON1511;FRIENE001101;Henrichemont;;Cinema Confluences, 55000 BAR LE DUC;23193;[6.880171, 48.375871];;FRGLYELYON9941;FR*SOD*E*LYON*56*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.81153005;49.118571;;Pleumeur-Bodou;; +;;;;;;;;FRGLYPLYON2112;FRS37E356;LA CHAPELLE D'ANGILLON - Pl. du Monument - 112719;;Rue des Hayettes, 08 Les Mazures;23245;[1.543013, 48.651644];;FRGLYELYON10541;FR*SOD*E*LYON*88*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.818359;47.6509206;;Plélo;; +;;;;;;;;FRGLYPLYON1512;FRCPIE6609535;St DOULCHARD - Gal De Gaulle - 140155;;Rue de la Gare, 08150 Rimogne;23114;[2.81153005, 46.99737769];;FRGLYELYON10521;FR*SOD*E*LYON*88*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.701676;49.504894;;Cavan;; +;;;;;;;;FRGLYPLYON1522;FRS37E146;VESDUN - Rte de St VITTE - 182380;;Place Danton, 08 Bogny sur Meuse;23095;[0.818359, 48.322194];;FRGLYELYON11511;FR*SOD*E*LYON*89*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.623059;50.2274772;;Coatréven;; +;;;;;;;;FRGLYPLYON1521;FRCPIE6609465;LE CHATELET - Place de la Mairie - 143927;;ROUTE DE SAZERET, 03390 Montmarault;23155;[5.701676, 48.976424];;FRGLYELYON11221;FR*SOD*E*LYON*89*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.884251;48.727654;;Grâces;; +;;;;;;;;FRGLYPLYON1611;FRS37E147;Bonnieres sur Seine;;Grande Rue, 08 Rouvroy sur Aubry;23257;[6.623059, 45.196766];;FRGLYELYON16911;FR*SOD*E*LYON*89*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.47814;47.574824;;Kermoroc'h;; +;;;;;;;;FRGLYPLYON1621;FRCPIE6609475;ROVILLE AUX CHENES - Plc des Erables - 159270-CCS;;181 avenue du Douard, 13400 Aubagne;23013;[1.884251, 48.200212];;FRGLYELYON11141;FR*SOD*E*LYON*89*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.365318;46.141037;;Langueux;; +;;;;;;;;FRGLYPLYON1612;FRCPIE6609505;BANNEGON - Place saint Georges -117205;;Place de l'Eglise, 08150 Renwez;23031;[-0.47814, 46.302012];;FRGLYELYON11111;FR*SOD*E*LYON*90*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2676;44.524191;;Lanvollon;; +;;;;;;;;FRGLYPLYON1622;FRCPIE6609195;COURVILLE SUR EUR - Beauce - 137388;;Rue Gambetta, 08 Vouziers;23093;[4.365318, 49.508675];;FRGLYELYON11121;FR*SOD*E*LYON*90*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.04468352;49.050216;;Trébeurden;; +;;;;;;;;FRGLYPLYON1722;FRCPIE6609845;Shell- France Aire de Sommesous HW;;Place de l'Eglise, 08 Signy le Petit;23020;[4.2676, 49.4177];;FRGLYELYON11231;FR*SOD*E*LYON*90*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.98555;50.173438;;Éréac;; +;;;;;;;;FRGLYPLYON1711;FRS51E7024;REIGNY - Le Bourg - 148756;;Gare de Lucquy, 0! Lucquy;23069;[4.04468352, 49.42853006];;FRGLYELYON11211;FR*SOD*E*LYON*81*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.509793;46.480447;;Beaussais-sur-Mer;; +;;;;;;;;FRGLYPLYON1712;FRS41E21188;ORGERES-EN-BEAUCE - Rue de l'Arsenal - 130014;;A. de Lorraine-Bourgogne, 21220 Gevrey-Chambertin;23079;[3.98555, 49.262042];;FRGLYELYON11241;FR*SOD*E*LYON*91*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.66933846;48.563374;;Plélan-le-Petit;; +;;;;;;;;FRGLYPLYON1721;FRCPIE6610335;BOURGES - SDE18 - 186239;;Aire de Romagnieu A43, 38480 Romagnieu;23192;[5.509793, 49.118571];;FRGLYELYON11311;FR*SOD*E*LYON*91*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.369649;48.506516;;Pleslin-Trigavou;; +;;;;;;;;FRGLYPLYON1812;FRCPIE6610415;St DOULCHARD - Clos Chaperon - 98613;;618 Route des Tournelles, 73370 Le Bourget-du-Lac;23089;[-1.66933846, 47.6509206];;FRGLYELYON11021;FR*SOD*E*LYON*91*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0643557;48.688773;;Trélévern;; +;;;;;;;;FRGLYPLYON1811;FRCPIE6610355;BOURGES - Coubertin - 153420;;Autoroute des Anglais, 62120 Rely;69278;[4.369649, 49.504894];;FRGLYELYON11331;FR*SOD*E*LYON*91*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.391091;47.12422876;;Pléhédel;; +;;;;;;;;FRGLYPLYON1821;FRCPIE6610375;MOLEANS - Rue du moulin - 134801;;Avenue de la Gare, 37800 NOYANT DE TOURAINE;87119;[3.0643557, 50.2274772];;FRGLYELYON11321;FR*SOD*E*LYON*92*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.058594;47.48927488;;Bourbriac;; +;;;;;;;;FRGLYPLYON1822;FRCPIE6610385;CGED CGED ST QUENTIN;;160 ch du halage ZA de la CNR, 38121 Reventin-Vaugris;17235;[1.391091, 48.727654];;FRGLYELYON11341;FR*SOD*E*LYON*92*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.447106;48.0905;;Lanrivain;; +;;;;;;;;FRGLYPLYON1912;FRCPIE6609145;BOURGES - Séraucourt - 214519;;Place de la Nation, 18000 Bourges;17232;[-3.058594, 47.574824];;FRGLYELYON11441;FR*SOD*E*LYON*92*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.279899;47.10553756;;Maël-Carhaix;; +;;;;;;;;FRGLYPLYON1921;FRIONE42150;SONEPAR GAP;;Rue du Champ de Foire, 08400 Vouzier;17132;[3.447106, 46.141037];;FRGLYELYON11411;FR*SOD*E*LYON*92*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.593659;45.030881;;Le Hinglé;; +;;;;;;;;FRGLYPLYON1911;FRIONE4215;HMV MOYENMOUTIER 2;;Avenue de Quimper, 08310 Juniville;17441;[2.279899, 44.524191];;FRGLYELYON11421;FR*SOD*E*LYON*93*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.873564;48.449832;;Pléneuf-Val-André;; +;;;;;;;;FRGLYPLYON1922;FRS37E144;COULOMBS - Rue des Remparts - 139389;;12 Rue Jacques Anquetil, 95140 Garges-lès-Gonesse;17336;[6.593659, 49.050216];;FRGLYELYON11431;FR*SOD*E*LYON*93*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.730978;48.072141;;Trémuson;; +;;;;;;;;FRGLYPLYON2012;FRCPIE6609135;NERONDES - Route de Bourges - 146793;;Place de la Halle, 08450 RAUCOURT ET PLABA;17242;[2.873564, 50.173438];;FRGLYELYON11041;FR*SOD*E*LYON*88*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.515931;48.0687;;Trévou-Tréguignec;; +;;;;;;;;FRGLYPLYON2011;FRCPIE6609155;NOGENT-LE-ROTROU - Place du 11 août - 139024;;Rue de Pont, 88200 Dommartin-lès-Remiremont;84025;[0.730978, 46.480447];;FRGLYELYON11011;FR*SOD*E*LYON*87*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.762427;48.072562;;Erquy;; +;;;;;;;;FRGLYPLYON2021;FRS37E145;VIGNEULES LES HATTONCHATEL - 66442 - Rte St MIhiel;;ZaC Garnier, 83470 Saint-Maximin-la-Sainte-Baume;33279;[-4.515931, 48.563374];;FRGLYELYON10511;FR*SOD*E*LYON*87*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.206429;49.2444;;Jugon-les-Lacs - Commune nouvelle;; +;;;;;;;;FRGLYPLYON2022;FRCPIE6609175;Freney;;McArthurGlen Provence Mas de la Péronne, 13140 Miramas;46029;[1.762427, 48.506516];;FRGLYELYON10731;FR*SOD*E*LYON*87*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.40283817;48.471682;;Languenan;; +;;;;;;;;FRGLYPLYON5522;FRCPIE6609185;JANVILLE-EN-BEAUCE - Rue Sœur Saint-Henri - 130244;;Autoroute du Soleil A7 Aire De Roussillon, 38150 Roussillon;33200;[2.206429, 48.688773];;FRGLYELYON10631;FR*SOD*E*LYON*82*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.44161714;47.24563167;;Lanvallay;; +;;;;;;;;FRGLYPLYON3221;FRS37E1574;Niort Saint-Florent;;A9/E15, La Languedocienne, 30126 Tavel;77378;[2.40283817, 47.12422876];;FRGLYELYON10611;FR*SOD*E*LYON*82*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.47679;50.3234446;;Bon Repos sur Blavet;; +;;;;;;;;FRGLYPLYON5521;FRCPIE6612645;RETHEL - 46445 - Place de la republique;;Route de Bourges, 18500 Sainte-Thorette;68277;[2.44161714, 47.48927488];;FRGLYELYON10621;FR*SOD*E*LYON*82*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.40458209;48.1736;;Plouaret;; +;;;;;;;;FRGLYPLYON7831;FRIENE007701;CHATELET SUR RETOURNE - 46461 - Parking D925;;Autoroute A10 Est, 86130 Jaunay-Clan;74063;[6.47679, 48.0905];;FRGLYELYON10641;FR*SOD*E*LYON*82*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.524313;48.766006;;Paimpol;; +;;;;;;;;FRGLYPLYON7521;FRIENE007702;BRIENNE SUR AISNE - 46468 - Parking Co-voiturage;;383 Rue de la Belle Étoile, 95700 Roissy-en-France;35353;[2.40458209, 47.10553756];;FRGLYELYON10711;FR*SOD*E*LYON*83*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.482988;46.94724;;Plaine-Haute;; +;;;;;;;;FRGLYPLYON7531;FRS28E13731;Saint Brice Courcelle rue libération - 112430;;14 Rue de la Champagne, 45420 Bonny-sur-Loire;97204;[1.524313, 45.030881];;FRGLYELYON10741;FR*SOD*E*LYON*83*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.877246;46.849766;;Corlay;; +;;;;;;;;FRGLYPLYON7611;FRCPIE6612695;Verdun Saint-Nicolas Sud;;avenue de L'Epinette, 59113 Seclin;97207;[1.482988, 48.449832];;FRGLYELYON10721;FR*SOD*E*LYON*83*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.87392;45.169865;;Plounévez-Moëdec;; +;;;;;;;;FRGLYPLYON7631;FRCPIE6612705;Derval;;Chem. de Trucy, 89660 Mailly-le-Chateau;97213;[6.877246, 48.072141];;FRGLYELYON10811;FR*SOD*E*LYON*83*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.876856;47.08333836;;Évran;; +;;;;;;;;FRGLYPLYON7621;FRCPIE6612625;RETHEL - 46434 - Parking Place Victor Hugo;;93 Place Drouet d'Erlon, 51100 Reims;97209;[6.87392, 48.0687];;FRGLYELYON11031;FR*SOD*E*LYON*84*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.923522;46.99243;;Trégastel;; +;;;;;;;;FRGLYPLYON7641;FRS37E155;Shell- France Aire de Rumaucourt HW;;24 Rte de Crossac, 44160 Pontchateau;97206;[6.876856, 48.072562];;FRGLYELYON10841;FR*SOD*E*LYON*84*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.014208;47.08186564;;Plouguernével;; +;;;;;;;;FRGLYPLYON7711;FRCPIE6613045;SAINTE GEMME MORONVAL - Rte Nogent le Roi - 130548;;670 chemin de Maquens, 11000 Carcassonne;97216;[3.923522, 49.2444];;FRGLYELYON10821;FR*SOD*E*LYON*84*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.06768176;47.371248;;Lanrelas;; +;;;;;;;;FRGLYPLYON7721;FRCPIE6665345;SUPER U CARNAC BORNE 1;;5 Rue de Pouilly, 51100 Reims;84137;[1.014208, 48.471682];;FRGLYELYON10831;FR*SOD*E*LYON*84*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.75174608;48.76059;;Lancieux;; +;;;;;;;;FRGLYPLYON7741;FRS37E1573;SONEPAR CONNECT VICHY;;Aire du Val Gelon, A43, 73390 Chateauneuf;84013;[2.06768176, 47.24563167];;FRGLYELYON10931;FR*SOD*E*LYON*85*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.015;48.908117;;Brusvily;; +;;;;;;;;FRGLYPLYON7731;FRCPIE6613825;BORNHDP BORNE 1;;22 Rue Gambetta, 51100 Reims;80620;[2.75174608, 50.3234446];;FRGLYELYON10921;FR*SOD*E*LYON*85*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.198119;49.360989;;Saint-Glen;; +;;;;;;;;FRGLYPLYON7821;FRCPIE6614125;U FAULQUEMONT EMPLOYES;;Rue de Marechal Leclerc, 28250 Digny;33333;[7.015, 48.1736];;FRGLYELYON10941;FR*SOD*E*LYON*85*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.06775;47.0807;;Saint-Juvat;; +;;;;;;;;FRGLYPLYON8121;FRCPIE6610395;Aire de Saint-Léger;;1 All. des Pins, 26760 Beaumont-lès-Valence;30288;[1.198119, 48.766006];;FRGLYELYON10911;FR*SOD*E*LYON*85*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.175825;45.119945;;Uzel;; +;;;;;;;;FRGLYPLYON7841;FRFASE331010;HAILO FR BORNE 4;;ZA Les Chalussons, 37290 Yzeures-sur-Creuse;84078;[3.06775, 46.94724];;FRGLYELYON16912;FR*SOD*E*LYON*86*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.334795;48.680789;;Lamballe-Armor;; +;;;;;;;;FRGLYPLYON7811;FRS28E13729;LANNILIS SIEGE BORNE 2;;Rue de Tourcoing, 37000 Tours;97219;[-1.175825, 46.849766];;FRGLYELYON16421;FR*SOD*E*LYON*86*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.38806432;43.388968;;Loudéac;; +;;;;;;;;FRGLYPLYON7911;FRCPIE6612085;AUNEAU-BLEURY ST SYMPHORIEN - Rue Patton -137338;;Place Rabelais, 37000 Tours;97218;[-0.334795, 45.169865];;FRGLYELYON16921;FR*SOD*E*LYON*86*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.117433;43.892162;;Calorguen;; +;;;;;;;;FRGLYPLYON7941;FRIONE4035;SONEPAR 3CCLIM VILLEBON;;3 Parc de la Rocade, 62114 Sains-en-Gohelle;97101;[2.38806432, 47.08333836];;FRGLYELYON13221;FR*SOD*E*LYON*86*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.40308834;44.405928;;Tréveneuc;; +;;;;;;;;FRGLYPLYON7931;FRS37E137;BOURGES - Asnieres - 104686;;Rue Giraudeau, 37000 Tours;97118;[2.117433, 46.99243];;FRGLYELYON13421;FR*SOD*E*LYON*87*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.456284;46.579872;;Saint-Vran;; +;;;;;;;;FRGLYPLYON7921;FRS37E5392;AUBIGNY - Place Résistance - 95964;;Avenue Marcel Dassault, 37206 Tours;34289;[2.40308834, 47.08186564];;FRGLYELYON13412;FR*SOD*E*LYON*67*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.290792;43.528739;;Lannion;; +;;;;;;;;FRGLYPLYON8021;FRCPIE6612515;HADOL - PLACE VIVIN - 161845 - CCS;;A89, Station Haut Forez Nord, 42440 Les Salles;48096;[-2.456284, 47.371248];;FRGLYELYON13311;FR*SOD*E*LYON*74*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.156923;45.548788;;Plestin-les-Grèves;; +;;;;;;;;FRGLYPLYON8041;FRS18E20209;BOURGES - Place Cothenet - 104721;;127 Av. du Tourail, 84660 Maubec;14663;[1.290792, 48.76059];;FRGLYELYON13321;FR*SOD*E*LYON*67*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.861169;48.856103;;Plestan;; +;;;;;;;;FRGLYPLYON8031;FRIONE40350;Pech Montat Ouest;;Les Hauts Graviers, 78200 Buchelay;62847;[2.156923, 48.908117];;FRGLYELYON13322;FR*SOD*E*LYON*60*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.39871737;45.030878;;Coadout;; +;;;;;;;;FRGLYPLYON8011;FRCPIE6609045;CHARTRES - Place Saint Jean - 134777;;728 Rte de Villerest, 42155 Ouches;59636;[0.861169, 49.360989];;FRGLYELYON13312;FR*SOD*E*LYON*62*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.48205299;50.186031;;La Motte;; +;;;;;;;;FRGLYPLYON7511;FRCPIE6604555;HMV BORNE 1;;Place Grand Cour, 08190 Asfeld;62427;[2.39871737, 47.0807];;FRGLYELYON13222;FR*SOD*E*LYON*62*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.22542;47.437236;;Mégrit;; +;;;;;;;;FRGLYPLYON7541;FRCPIE6604875;GERARDMER - PLACE DU TILLEUL - 177260 - CCS;;Rue de la Poste, 08370 Margut;49020;[0.48205299, 45.119945];;FRGLYELYON13211;FR*SOD*E*LYON*63*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.595775;47.50032088;;Trégonneau;; +;;;;;;;;FRGLYPLYON7431;FRS37E126;HMV BORNE 2;;Rue de Raucourt, 08450 REMILLY AILLICOURT;01376;[6.22542, 48.680789];;FRGLYELYON13422;FR*SOD*E*LYON*64*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.99387;43.450393;;Saint-Jacut-de-la-Mer;; +;;;;;;;;FRGLYPLYON7441;FRCPIE6604805;Gueux;;Place du 8 MAI, 37150 Luzille;97103;[-0.595775, 43.388968];;FRGLYELYON13212;FR*SOD*E*LYON*64*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.187658;46.904192;;Guerlédan;; +;;;;;;;;FRGLYPLYON6722;FRFASE330040;LA LOUPE - Place de l'hôtel de ville - 134195;;447c Rue Stéphane Hessel, 80450 Camon;97124;[0.99387, 43.892162];;FRGLYELYON13112;FR*SOD*E*LYON*65*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.06458;48.0259;;Tréguier;; +;;;;;;;;FRGLYPLYON6712;FRS28E17649;VIERZON - Pôle d'activités - 112534;;N10, Aire de Bedenac Est, 17210 Bedenac;97309;[0.187658, 44.405928];;FRGLYELYON13111;FR*SOD*E*LYON*65*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.150379;44.70102;;Taden;; +;;;;;;;;FRGLYPLYON6812;FRCPIE6606665;Sainte Catherine;;25 Rue des Capucins, 51100 Reims;67519;[3.06458, 46.579872];;FRGLYELYON13121;FR*SOD*E*LYON*61*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.158265;43.43521;;Quintin;; +;;;;;;;;FRGLYPLYON6811;FRCPIE6606675;PLAINFAINE - Place de l'Eglise - 177421 - CCS;;321 Rue Denis Papin, 56600 Lanester;71105;[-1.150379, 43.528739];;FRGLYELYON13122;FR*SOD*E*LYON*61*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.088926;49.26282;;Saint-Brandan;; +;;;;;;;;FRGLYPLYON6821;FRCPIE6606745;ST-LUBIN-DES-JONCHERETS- Rue de la Baronie -139441;;Place Antoine de St Exupéry, 37250 Sorigny;81065;[6.158265, 45.548788];;FRGLYELYON13022;FR*SOD*E*LYON*61*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.525098;48.973818;;Saint-Clet;; +;;;;;;;;FRGLYPLYON6822;FRCPIE6606795;CUFFY - Le Pont Canal - 117885;;Centre commercial hyper U Sud Dracenie, 83460 Les Arcs;80021;[6.088926, 48.856103];;FRGLYELYON13011;FR*SOD*E*LYON*61*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.190681;49.203458;;Plouasne;; +;;;;;;;;FRGLYPLYON6922;FRCPIE6606835;LES COLONNADES BORNE 1;;10 Chem. Taravel, 84130 Le Pontet;33391;[1.525098, 45.030878];;FRGLYELYON13411;FR*SOD*E*LYON*60*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.700614;48.85239;;Plérin;; +;;;;;;;;FRGLYPLYON6911;FRCPIE6606875;Bedenac Est;;3 avenue de la gare, 88320 Martigny les bains;97307;[3.190681, 50.186031];;FRGLYELYON13512;FR*SOD*E*LYON*63*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.49106235;48.856136;;Le Fœil;; +;;;;;;;;FRGLYPLYON6921;FRCPIE6619845;BOURGES - Juranville - 97770;;Rue de Bellune / Avenue des Tilleuls, 88320 Lamarche;67216;[0.700614, 47.437236];;FRGLYELYON13012;FR*SOD*E*LYON*60*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.489556;47.146574;;Pabu;; +;;;;;;;;FRGLYPLYON6912;FRCPIE6605035;CHAROST - Place François Chapus - 200950;;Autoroute A57, aire de La garde, 83130 La Garde;62325;[-0.49106235, 47.50032088];;FRGLYELYON14012;FR*SOD*E*LYON*57*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.048383;48.005493;;Pontrieux;; +;;;;;;;;FRGLYPLYON7012;FRIONE40950;BOURGES - Parking Anatole France - 98496;;4 Rue des Sables, 54425 Pulnoy;62899;[6.489556, 43.450393];;FRGLYELYON14312;FR*SOD*E*LYON*60*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.67127;48.079206;;Plédéliac;; +;;;;;;;;FRGLYPLYON7011;FRIONE4095;Guérande;;Rue Gaston Chevrolet, 21200 Vignoles;62548;[-1.048383, 46.904192];;FRGLYELYON14311;FR*SOD*E*LYON*56*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.205307;47.602342;;Saint-Nicolas-du-Pélem;; +;;;;;;;;FRGLYPLYON7231;FRIONE40952;VERT-EN-DROUAIS - Rue de l'Eglise - 139425;;La Plante, 42590 Neulise;76481;[6.67127, 48.0259];;FRGLYELYON14212;FR*SOD*E*LYON*56*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.241716;47.063792;;Saint-Cast-le-Guildo;; +;;;;;;;;FRGLYPLYON7221;FRIONE44040;EPPENDORF BORNE 4;;Rue du collége, 08210 Mouzon;76196;[2.205307, 44.70102];;FRGLYELYON14211;FR*SOD*E*LYON*57*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.053657;48.007193;;Rostrenen;; +;;;;;;;;FRGLYPLYON7241;FRIONE40951;Aire de Bosgouet Sud;;Rue de l'épine, 88100 Taintrux;97229;[5.241716, 43.43521];;FRGLYELYON14112;FR*SOD*E*LYON*57*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.692941;47.308871;;Plouha;; +;;;;;;;;FRGLYPLYON7211;FRCPIE6606645;BOURGES - Parking Hôtel de Ville - 95968;;687 Av. de Violési, 13320 Bouc-Bel-Air;97223;[4.053657, 49.26282];;FRGLYELYON14111;FR*SOD*E*LYON*56*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.392879;45.66017323;;Plumaudan;; +;;;;;;;;FRGLYPLYON7341;FRCPIE6606395;Saint-Léon-sur-l'Isle;;3 Rue Stanislas, 88260 Darney;97220;[1.692941, 48.973818];;FRGLYELYON14011;FR*SOD*E*LYON*57*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.372304;49.614343;;Quemper-Guézennec;; +;;;;;;;;FRGLYPLYON7321;FRCPIE6605945;TOMBLAINES - PARKING BOIS LA DAME - 187398;;1 Bd Maurice Pacull, 34300 Agde;97224;[-0.392879, 49.203458];;FRGLYELYON13911;FR*SOD*E*LYON*58*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.353249;47.42393;;Saint-Agathon;; +;;;;;;;;FRGLYPLYON7311;FRCPIE6605205;Os-Marsillon;;10 Rue de la Plaine, 02400 Château-Thierry;26288;[2.372304, 48.85239];;FRGLYELYON13511;FR*SOD*E*LYON*59*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.219219;43.3590418;;Trégueux;; +;;;;;;;;FRGLYPLYON7331;FRCPIE6605175;Beaumont-de-Lomagne;;44 Avenue André Malraux, 19100 Brive-la-Gaillarde;37375;[2.353249, 48.856136];;FRGLYELYON13912;FR*SOD*E*LYON*59*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.237583;45.6828638;;Le Vieux-Bourg;; +;;;;;;;;FRGLYPLYON7421;FRCPIE6606905;Mas D'Agenais;;Aire de SAUGON Ouest sens Paris Bordeaux, 33920 Saugon;76758;[2.219219, 47.146574];;FRGLYELYON13812;FR*SOD*E*LYON*58*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.348317;44.311302;;Quessoy;; +;;;;;;;;FRGLYPLYON8111;FRCPIE6608085;Bourbon-l'Archambault;;Place de la Mairie, 08290 Liart;27824;[1.237583, 48.005493];;FRGLYELYON13811;FR*SOD*E*UNIB*12*12*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.344566;43.654568;;Ploëzal;; +;;;;;;;;FRGLYPLYON8131;FRCPIE6608185;Hastingues Sud;;18 Boulevard de la République, 92420 Vaucresson;76157;[1.348317, 48.079206];;FRGLYELYON13711;FR*SOD*E*UNIB*15*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.36893;44.027508;;Ploumagoar;; +;;;;;;;;FRGLYPLYON511;FRCPIE6608315;Arclusaz;;25 Bd de Thibaud, 31100 Toulouse;76329;[1.344566, 47.602342];;FRGLYELYON13712;FR*SOD*E*UNIB*15*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.275326;43.214493;;Le Quiou;; +;;;;;;;;FRGLYPLYON9021;FRCPIE6608325;Aire de L'Obrion;;Parking Proxi, 08 Buzancy;76322;[2.36893, 47.063792];;FRGLYELYON13612;FR*SOD*E*UNIB*14*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.176307;43.33458687;;Plémet;; +;;;;;;;;FRGLYPLYON8811;FRCPIE6608335;Pech Montat Est;;Route de Paris, 77340 Pontault Combault;61456;[6.275326, 48.007193];;FRGLYELYON13611;FR*SOD*E*UNIB*14*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.15351203;47.140961;;Plourhan;; +;;;;;;;;FRGLYPLYON5622;FRCPIE6608345;SONEPAR CONNECT RAILLENCOURT;;Place de la République, 18400 St FLORENT SUR CHER;76565;[-2.176307, 47.308871];;FRGLYELYON13021;FR*SOD*E*UNIB*14*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.545844;49.723263;;Pluduno;; +;;;;;;;;FRGLYPLYON8821;FRS28E17625;3C CLIM TOURS;;793 Rue de Paris, 62170 Écuires;76341;[3.15351203, 45.66017323];;FRGLYELYON12922;FR*SOD*E*UNIB*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.87324;48.845738;;Ploufragan;; +;;;;;;;;FRGLYPLYON8831;FRCPIE6608655;Portes d'Angers Sud;;Parc multimodal de Longvilliers - A10 D149, 78730 Longvilliers;76640;[0.545844, 49.614343];;FRGLYELYON16922;FR*SOD*E*UNIB*13*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.345357;48.410725;;Lézardrieux;; +;;;;;;;;FRGLYPLYON8921;FRCPIE6608795;BORNE HU BORNE DC 02;;Rue du parc, 08110 Carignan;88158;[2.87324, 47.42393];;FRGLYELYON12211;FR*SOD*E*UNIB*13*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.1547538;44.870544;;Saint-Jouan-de-l'Isle;; +;;;;;;;;FRGLYPLYON8911;FRCPIE6608805;Herbiers;;Place Verte, 08410 Douzy;25047;[3.345357, 43.3590418];;FRGLYELYON12422;FR*SOD*E*UNIB*13*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.685784;49.362772;;Merdrignac;; +;;;;;;;;FRGLYPLYON8941;FRCPIE6608845;ST AME - RUE DU STADE - 184031 - CCS;;Route de Maçais, 18200 Orcenais;86163;[4.1547538, 45.6828638];;FRGLYELYON12412;FR*SOD*E*UNIB*13*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.566574;48.418167;;Landerneau;; +;;;;;;;;FRGLYPLYON8931;FRCPIE6608885;Maurs;;18 Bd de la République Parking extérieur SUPE, 92420 Vaucresson;22242;[4.685784, 44.311302];;FRGLYELYON12421;FR*SOD*E*UNIB*12*10*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.155946;48.461236;;Landivisiau;; +;;;;;;;;FRGLYPLYON9011;FRS37E141;SONEPAR VITROLLES 4;;Aire Village Vendée, Autoroute A 83, 85210 Sainte-Hermine;76552;[-0.566574, 43.654568];;FRGLYELYON12322;FR*SOD*E*UNIB*12*9*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.322924;44.267239;;Lanildut;; +;;;;;;;;FRGLYPLYON9041;FRCPIE6609035;UNILABS BIO CT REIMS PT;;Perrogney-les-Fontaines, A31, 52160 Perrogney-les-Fontaines;76238;[2.155946, 44.027508];;FRGLYELYON12312;FR*SOD*E*UNIB*12*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.24499596;48.45289;;Landrévarzec;; +;;;;;;;;FRGLYPLYON9031;FRS37E136;SONEPAR CONNECT MAGNANVILLE;;272 Avenue Marc Jaquet, 77000 Melun;22201;[2.322924, 43.214493];;FRGLYELYON12311;FR*SOD*E*UNIB*12*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.787667;48.1252516;;Landudec;; +;;;;;;;;FRGLYPLYON8141;FRCPIE6540205;CCI CAEN STATION 1;;Aire de La Reserve A6, 89116 Précy-sur-Vrin;22213;[1.24499596, 43.33458687];;FRGLYELYON12321;FR*SOD*E*UNIB*12*11*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.426494;48.417249;;Lanmeur;; +;;;;;;;;FRGLYPLYON9111;FRCPIE6540225;Paris | Rue du Faubourg Saint-Antoine 45;;Avenue du général de Gaulle Parking Super U, 34700 Lodève;34090;[0.787667, 47.140961];;FRGLYELYON12222;FR*SOD*E*UNIB*11*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.774126;48.522625;;Lannédern;; +;;;;;;;;FRGLYPLYON9131;FRCPIE6541535;TERRA_54_011;;11 RUE DE LA TREMOUILLE, 35500 VITRE;34336;[1.426494, 49.723263];;FRGLYELYON12511;FR*SOD*E*UNIB*10*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.142684;44.7455306;;Landéda;; +;;;;;;;;FRGLYPLYON9121;FRCPIE6607265;MEHUN-sur-Yèvre - Square 8 Mai 1945 - 184331;;1 avenue de la Paix 75001 Paris;62193;[4.774126, 48.845738];;FRGLYELYON12212;FR*SOD*E*UNIB*10*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.253033;48.753599;;Lannilis;; +;;;;;;;;FRGLYPLYON9141;FRS55E13415;CROYES-SUR-LE-LOIR - Piscine - 127485;;5b Grande rue 70700 Villers-chemin-et-mont-lès-etrelles;67239;[4.142684, 48.410725];;FRGLYELYON12221;FR*SOD*E*UNIB*10*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.170852;47.346501;;Huelgoat;; +;;;;;;;;FRGLYPLYON9211;FRS55E13416;CHATEAUDUN - Place de Schweinfurt - 127481;;21 rue de la machotte;35146;[3.253033, 44.870544];;FRGLYELYON12121;FR*SOD*E*UNIB*10*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.353508;50.25722;;Lampaul-Plouarzel;; +;;;;;;;;FRGLYPLYON9231;FRCPIE6607385;BLOIS 4750 - Mail Pierre Charlot;;1 RIPEAU;49099;[4.170852, 49.362772];;FRGLYELYON12112;FR*SOD*E*UNIB*10*9*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.772468;50.310412;;Guilvinec;; +;;;;;;;;FRGLYPLYON9221;FRCPIE6542695;BOURGES - Daurat - 178309;;1 chemin gaulois;54321;[1.353508, 48.418167];;FRGLYELYON12122;FR*SOD*E*UNIB*15*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.102101;49.307914;;Lanrivoaré;; +;;;;;;;;FRGLYPLYON9241;FRCPIE6607575;La Vôge les Bains;;Rue des Machurons ZA, ZA LES GEYMONDS 38250 Villard-de-Lans;71485;[1.772468, 48.461236];;FRGLYELYON12111;FR*SOD*E*UNIB*15*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.48852;49.299799;;Guimaëc;; +;;;;;;;;FRGLYPLYON9322;FRCPIE6607645;SONEPAR CONNECT SAINT NAZAIRE;;134 RUE DE CAMBRAI;59034;[1.102101, 44.267239];;FRGLYELYON12022;FR*SOD*E*UNIB*35*17*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.7547021;49.250571;;Guissény;; +;;;;;;;;FRGLYPLYON9312;FRS28E13430;Veyre;;3 RUE ALESSANDRO VOLTA;11170;[1.48852, 48.45289];;FRGLYELYON12411;FR*SOD*E*UNIB*16*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.45819;43.293939;;Hanvec;; +;;;;;;;;FRGLYPLYON8841;FRS28E13431;Bolleville Ouest;;35 BOULEVARD CLEMENCEAU 13200;2B353;[-1.7547021, 48.1252516];;FRGLYELYON12541;FR*SOD*E*UNIB*18*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.689164;48.552142;;Île-Tudy;; +;;;;;;;;FRGLYPLYON8721;FRS28E13052;BOULLERET - Eglise - 117188;;11 Rue de Bruxelles 53000 Laval;66094;[1.45819, 48.417249];;FRGLYELYON12912;FR*SOD*E*UNIB*19*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.0353191;46.314092;;Irvillac;; +;;;;;;;;FRGLYPLYON8731;FRCPIE6660505;Shell Aire de Béziers-Montblanc SUD;;1bis avenue de l'Europe 02400 Château-Thierry;17338;[1.689164, 48.522625];;FRGLYELYON12711;FR*SOD*E*UNIB*19*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.991867;48.987472;;Kerlouan;; +;;;;;;;;FRGLYPLYON8711;FRS28E13427;Shell Aire de la plaine du Forez Ouest HW;;8 rue paul dautier;39170;[0.0353191, 44.7455306];;FRGLYELYON12011;FR*SOD*E*UNIB*19*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.746969;45.137638;;Kersaint-Plabennec;; +;;;;;;;;FRGLYPLYON8221;FRS28E13735;UTILE LAPALUD BORNE 2;;14 boulevard Alfred Guillou;02158;[3.991867, 48.753599];;FRGLYELYON12921;FR*SOD*E*UNIB*19*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.857445;44.855926;;La Forest-Landerneau;; +;;;;;;;;FRGLYPLYON8211;FRS37E310;Hagetmau;;18 boulevard Gallieni;71090;[0.746969, 47.346501];;FRGLYELYON12911;FR*SOD*E*UNIB*19*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.946034;48.14336;;La Forêt-Fouesnant;; +;;;;;;;;FRGLYPLYON8231;FRS41E20646;U BLAYE MINES BLAYE 2;;Rés Antinea avenue Bosquet;62371;[2.857445, 50.25722];;FRGLYELYON12831;FR*SOD*E*UNIB*19*6*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.682168;49.049168;;Milizac-Guipronvel;; +;;;;;;;;FRGLYPLYON8241;FRS41E20648;CGED CARCASSONNE CGE;;216 Chemin de Mundustenea;62148;[2.946034, 50.310412];;FRGLYELYON12821;FR*SOD*E*UNIB*19*5*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3394;46.688275;;Melgven;; +;;;;;;;;FRGLYPLYON8311;FRIONE41490;Garonne;;Allée JOURNOD;22251;[3.682168, 49.307914];;FRGLYELYON12841;FR*SOD*E*UNIB*19*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.910292;47.288056;;Sainte-Sève;; +;;;;;;;;FRGLYPLYON8341;FRS37E183;MANTHELAN 1279;;7 RUE CHARLES FRANCOIS DAUBIGNY;22166;[4.3394, 49.299799];;FRGLYELYON12811;FR*SOD*E*UNIB*19*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.12869;48.229263;;Mellac;; +;;;;;;;;FRGLYPLYON8321;FRIONE4149;Quièvrecourt;;2 ALLEE DE LA GABARRE;22028;[3.910292, 49.250571];;FRGLYELYON12741;FR*SOD*E*UNIB*19*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.679734;46.313059;;Moëlan-sur-Mer;; +;;;;;;;;FRGLYPLYON8331;FRCPIE6541595;VANAULT LES DAMES;;5 rue Jacque Babinet 86130 Jaunay-Marigny;22122;[3.12869, 43.293939];;FRGLYELYON12531;FR*SOD*E*UNIB*19*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.420088;44.6459629;;Névez;; +;;;;;;;;FRGLYPLYON8421;FRCPIE6620655;Shell- France Aire de Charmont-sous-Barbuise HW;;Rougon 04120 ROUGON;22061;[3.679734, 48.552142];;FRGLYELYON12721;FR*SOD*E*UNIB*19*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.514877;48.971941;;Guilligomarc'h;; +;;;;;;;;FRGLYPLYON8431;FRCPIE6627425;La Garde;;AVENUE JOSEPH CUGNOT;22195;[1.420088, 46.314092];;FRGLYELYON12731;FR*SOD*E*UNIB*18*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.701123;48.347049;;Loperhet;; +;;;;;;;;FRGLYPLYON8441;FRCPIE6627445;BAZANCOURT - 44731 - Rue Jean Jaurès;;19 CHEMIN DE LA GRANDE BATIDE 04700;22264;[4.514877, 48.987472];;FRGLYELYON12621;FR*SOD*E*UNIB*18*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.5202;49.049605;;Lanvéoc;; +;;;;;;;;FRGLYPLYON8411;FRCPIE6627465;SAINT GEORGES SUR EURE - Eglise - 137362;;Route Métropolitaine 1 06510 Carros;22046;[0.701123, 45.137638];;FRGLYELYON12641;FR*SOD*E*UNIB*18*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.052668;45.461682;;Laz;; +;;;;;;;;FRGLYPLYON8511;FRCPIE6626215;AUNEAU - Rue Emile Labiche - 134756;;9 rue de la République, 51160 Champillon;22197;[0.5202, 44.855926];;FRGLYELYON12611;FR*SOD*E*UNIB*16*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.59294;48.92467;;Le Conquet;; +;;;;;;;;FRGLYPLYON8531;FRCPIE6627475;Lauzerte;;45 rue de Bordebasse, 31700 Blagnac;22055;[1.052668, 48.14336];;FRGLYELYON12631;FR*SOD*E*UNIB*18*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.361102;47.411919;;Le Faou;; +;;;;;;;;FRGLYPLYON8541;FRCPIE6624885;CHARTRES - Place Drouaise - 126231;;Rue de l'Escadron des Cracks 27120 Douains;22081;[6.59294, 49.049168];;FRGLYELYON12521;FR*SOD*E*UNIB*18*5*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.256576;48.58333;;Le Folgoët;; +;;;;;;;;FRGLYPLYON8521;FRS37E277;Vezin-le-Coquet;;chemin de la forêt 67350 UHRWILLER;22171;[4.361102, 46.688275];;FRGLYELYON14412;FR*SOD*E*UNIB*18*6*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.364287;48.082374;;Le Juch;; +;;;;;;;;FRGLYPLYON8611;FRS37E278;LUISANT - Rue Jean Perrin - 137353;;101 AVENUE RENE ANTOUNE;22176;[-2.256576, 47.288056];;FRGLYELYON14421;FR*SOD*E*UNIB*18*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.416918;47.851507;;Lesneven;; +;;;;;;;;FRGLYPLYON8631;FRS41E292;GALLARDON - Rue Guy Pouillé - 178731;;17B RUE LOUIS ARMAND;22050;[1.364287, 48.229263];;FRGLYELYON14411;FR*SOD*E*UNIB*18*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4342274;47.436748;;Locmaria-Plouzané;; +;;;;;;;;FRGLYPLYON8621;FRS41E293;Auriolles;;AVENUE ANATOLE THEVENET 51530 Magenta;22070;[1.416918, 46.313059];;FRGLYELYON16121;FR*SOD*E*UNIB*18*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.009818;49.082391;;Locronan;; +;;;;;;;;FRGLYPLYON8641;FRS41E294;FERE CHAMPENOISE - 44684 - Rue de l'Eglise;;392 AVENUE DES TUMULUS;22385;[-0.4342274, 44.6459629];;FRGLYELYON16311;FR*SOD*E*UNIB*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.944203;49.100557;;Loctudy;; +;;;;;;;;FRGLYPLYON8741;FRS37E294;SAINT AVERTIN- 60636 - Allée du Chesne;;31 avenue du gros chene 95220 herblay;22168;[4.009818, 48.971941];;FRGLYELYON16231;FR*SOD*E*UNIB*18*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.117894;49.060851;;Locunolé;; +;;;;;;;;FRGLYPLYON6721;FRS41E295;638a0f9abb23fb6dc695ab59;;06, Rue des Roches 90160 Denney;22233;[1.944203, 48.347049];;FRGLYELYON16211;FR*SOD*E*UNIB*17*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.400005;48.856471;;Camaret-sur-Mer;; +;;;;;;;;FRGLYPLYON7411;FRCPIE6626205;PERFORMANCE_PRO BORNE 1;;3 place du général de gaule 57990;22241;[4.117894, 49.049605];;FRGLYELYON16221;FR*SOD*E*UNIB*17*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.808141;46.72506;;Briec;; +;;;;;;;;FRGLYPLYON6711;FRN54E18701;BORNE PRO&CIE 1;;151 Rue de Bretagne 61000 Alençon;22020;[4.400005, 45.461682];;FRGLYELYON16241;FR*SOD*E*UNIB*16*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.435292;50.342911;;Plounéour-Brignogan-plages;; +;;;;;;;;FRGLYPLYON6021;FRCPIE6666475;FISMES - 44705 - Rue du Docteur Genillon;;5 rue de Londres 67670;22101;[3.808141, 48.92467];;FRGLYELYON16141;FR*SOD*E*UNIB*16*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.814318;46.296224;;Penmarch;; +;;;;;;;;FRGLYPLYON6211;FRS37E357;Pontfaverger-Moronvilliers;;22 Rue Jean Jaures 59267 Proville;22214;[2.435292, 47.411919];;FRGLYELYON16111;FR*SOD*E*UNIB*16*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.742543;43.632423;;Carantec;; +;;;;;;;;FRGLYPLYON6212;FRCPIE6712375;GUEUX - 44708 - Place des Lacs;;360 Rue Haute des Banchais 49124 Saint-Barthélemy-d'Anjou;22221;[3.814318, 48.58333];;FRGLYELYON16131;FR*SOD*E*UNIB*16*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.995718;48.27086799;;Carhaix-Plouguer;; +;;;;;;;;FRGLYPLYON6312;FRCPIE6712385;Nissan-Lez-Enserune;;50 grand Rue;22004;[1.742543, 48.082374];;FRGLYELYON16331;FR*SOD*E*UNIB*18*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.637889;48.5411;;Cast;; +;;;;;;;;FRGLYPLYON6411;FRCPIE6627985;CONFLANS SUR SEINE - 43640 - Av Marechal Leclerc;;86, ROUTE DE LYON 71000 Mâcon;22134;[0.995718, 47.851507];;FRGLYELYON16012;FR*SOD*E*UNIB*9*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.946328;44.611744;;Châteaulin;; +;;;;;;;;FRGLYPLYON6412;FRCPIE6628885;Boismandé Est;;za banarge duras;22172;[0.637889, 47.436748];;FRGLYELYON16011;FR*SOD*E*UNIB*10*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.758175;47.66849239;;Châteauneuf-du-Faou;; +;;;;;;;;FRGLYPLYON6511;FRS41E371;COURTISOLS;;bd jean brisseau;22211;[3.946328, 49.082391];;FRGLYELYON15912;FR*SOD*E*UNIB*3*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.431708;49.928469;;Cléder;; +;;;;;;;;FRGLYPLYON6512;FRCPIE6629175;Périgueux Sud;;142 ROUTE DE VILLEMONTAIS 42300 Villerest;22210;[3.758175, 49.100557];;FRGLYELYON15911;FR*SOD*E*UNIB*5*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.353733;44.743648;;Clohars-Carnoët;; +;;;;;;;;FRGLYPLYON6111;FRCPIE6601055;Mionnay Chatanay;;1007 ROUTE DE CHADEY;22325;[1.431708, 49.060851];;FRGLYELYON15812;FR*SOD*E*UNIB*5*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.48209;49.050755;;Clohars-Fouesnant;; +;;;;;;;;FRGLYPLYON6112;FRCPIE6601065;CGED CGED BERGERAC;;692 ROUTE D'ORANGE;22391;[2.353733, 48.856471];;FRGLYELYON15822;FR*SOD*E*UNIB*5*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.477834;47.599944;;Brasparts;; +;;;;;;;;FRGLYPLYON6121;FRCPIE6601075;CHAPELLE ROYALE - Rue jean moulin - 134851;;1 Bis rue Camille Pelletan 134;22005;[2.48209, 46.72506];;FRGLYELYON15811;FR*SOD*E*UNIB*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.378539;46.54389;;Argol;; +;;;;;;;;FRGLYPLYON6122;FRCPIE6605975;U FAULQUEMONT BORNE 1;;1450 ROUTE DE VALLON 07170;22206;[3.477834, 50.342911];;FRGLYELYON16321;FR*SOD*E*UNIB*5*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.41071;44.033749;;Arzano;; +;;;;;;;;FRGLYPLYON6022;FRCPIE6627495;SONEPAR CONNECT MONCEAU L MINES;;Le Cluzel - D458 07580 St-Jean le Centenier;22064;[-0.378539, 46.296224];;FRGLYELYON16341;FR*SOD*E*UNIB*5*5*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.85591286;43.924904;;Audierne;; +;;;;;;;;FRGLYPLYON6311;FRCPIE6601025;E LECLERC BORNE 2;;Zone de la Maladière,125 Avenue d'Italie 74300 Cluses;22138;[1.41071, 43.632423];;FRGLYELYON14422;FR*SOD*E*UNIB*4*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.531531;47.34592915;;Bannalec;; +;;;;;;;;FRGLYPLYON6011;FRCPIE6627525;ALLUYES - Av Chevallier Debeausse - 129291;;112 Rue du Clair Bocage 85000 Mouilleron-le-Captif;22164;[1.85591286, 48.27086799];;FRGLYELYON16711;FR*SOD*E*UNIB*4*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.401046;46.97447173;;Baye;; +;;;;;;;;FRGLYPLYON5721;FRCPIE6627595;Boismandé Ouest;;Mazda Verdun - Wameau, ZEI du 55430 Belleville-sur-Meuse;22212;[7.531531, 48.5411];;FRGLYELYON16822;FR*SOD*E*UNIB*4*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.61283782;46.16964;;Bénodet;; +;;;;;;;;FRGLYPLYON6012;FRS37E355;Shell Terres de Graves Nord;;7 BOUCLE DU VAL MARIE 57100 Thionville;22135;[4.401046, 44.611744];;FRGLYELYON16821;FR*SOD*E*UNIB*4*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.286503;47.707641;;Beuzec-Cap-Sizun;; +;;;;;;;;FRGLYPLYON5621;FRIENE008202;AVIZE - 43907 - Rue du bourg Joli;;3 RUE DU VERGERS 22120 Yffiniac;22218;[0.61283782, 47.66849239];;FRGLYELYON16811;FR*SOD*E*UNIB*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7046561;47.395589;;Bourg-Blanc;; +;;;;;;;;FRGLYPLYON5612;FRCPIE6601035;GOMMERVILLE - 50 Route de Voves - 129084;;2 RUE DENIS PAPIN 51460 Courtisols;22226;[2.286503, 49.928469];;FRGLYELYON16812;FR*SOD*E*UNIB*4*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.049856;49.854847;;Elliant;; +;;;;;;;;FRGLYPLYON5722;FRCPIE6601045;TOURS SUR MARNE - 43909 - Avenue de Champagne;;19 ROUTE DE FOURQUEUX 78750 Mareil-Marly;22234;[-0.7046561, 44.743648];;FRGLYELYON16722;FR*SOD*E*UNIB*3*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.112239;47.36839944;;Daoulas;; +;;;;;;;;FRGLYPLYON5711;FRCPIE6605985;SONEPAR CONNECT ST-ETIENNE1;;324 Avenue du Général de Gaulle 18000 Bourges;22387;[7.049856, 49.050755];;FRGLYELYON16721;FR*SOD*E*UNIB*3*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.772478;47.43926466;;Dinéault;; +;;;;;;;;FRGLYPLYON5611;FRCPIE6606025;MONTMORT LUCY - 43905 - Place Général de Gaulle;;89, ROUTE DE MARIENTHAL - HAGUENAU, GARAGE DU MOULIN 67500 Haguenau;22319;[-3.112239, 47.599944];;FRGLYELYON16712;FR*SOD*E*UNIB*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.038965;47.8371;;Dirinon;; +;;;;;;;;FRGLYPLYON5712;FRIENE008201;ENNORDRES - La Surprise - 147553;;place des cigo;22198;[-1.772478, 46.54389];;FRGLYELYON16612;FR*SOD*E*UNIB*5*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.064025;46.096296;;Douarnenez;; +;;;;;;;;FRGLYPLYON5812;FRCPIE6623635;ANGLURE - 43647 - Place de la République;;place joffre thann;22182;[5.038965, 44.033749];;FRGLYELYON16431;FR*SOD*E*UNIB*2*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.9507519;45.048606;;Edern;; +;;;;;;;;FRGLYPLYON5911;FRS37E269;TERMINIER - Rue de charette - 141733;;pont d'aspach;22034;[5.064025, 43.924904];;FRGLYELYON16611;FR*SOD*E*UNIB*2*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.70021078;49.049365;;Ergué-Gabéric;; +;;;;;;;;FRGLYPLYON5912;FRS37E168;Created 2021-02-01 15:55 con: 1;;1196 AV de l'Europe 69400 Villefranche-sur-Saône;22042;[0.9507519, 47.34592915];;FRGLYELYON16531;FR*SOD*E*UNIB*2*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.315531;43.137959;;Fouesnant;; +;;;;;;;;FRGLYPLYON5811;FRCPIE6623855;LA MEMBROLLE SUR CHOISILLE 1260 - La Choisille;;7 RUE DE TOKORO 05000 Gap;22067;[0.70021078, 46.97447173];;FRGLYELYON16541;FR*SOD*E*UNIB*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.625555;48.6512;;Gouesnach;; +;;;;;;;;FRURWPUNIB12121;FRCPIE6623865;HAUTVILLERS - 43897 - Rue des Côtes de Lhery;;1 Rue Louis Alphonse Poitevin ZI Sud 71100 Chalon-sur-Saône;22091;[6.315531, 46.16964];;FRGLYELYON16511;FR*SOD*E*UNIB*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.768273;47.938954;;Goulien;; +;;;;;;;;FRURWPUNIB1512;FRS37E1655;CHATILLONS SUR MARNE - 43901 - Rue de Madeleine;;rue du colonnel ornano loos;22106;[2.625555, 47.707641];;FRGLYELYON16521;FR*SOD*E*UNIB*2*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.523729;44.361721;;Guerlesquin;; +;;;;;;;;FRURWPUNIB1522;FRCPIE6681485;RAW PARISGIVERNY 65;;rue du colonnel jean colonna d'ornano loos;22121;[0.768273, 47.395589];;FRGLYELYON16441;FR*SOD*E*UNIB*2*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.77859839;46.9202394;;Crozon;; +;;;;;;;;FRURWPUNIB1422;FRCPIE6681505;18B93139;;240 ALLEE DU CHATEAU 69490;22343;[2.523729, 49.854847];;FRGLYELYON16411;FR*SOD*E*UNIB*2*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.62615408;47.621586;;Combrit;; +;;;;;;;;FRURWPUNIB1412;FRS37E1678;ORVAL - Route de Lignières - 142815;;829 rue Lamarck Jean Baptiste Z.A 43700 Saint-Germain-Laprade;22053;[0.77859839, 47.36839944];;FRGLYELYON15821;FR*SOD*E*UNIB*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.26067;45.888311;;Commana;; +;;;;;;;;FRURWPUNIB1421;FRCPIE6619675;SONEPAR CONNECT VALENCIENNES;;D79 31250 Vaudreuille;22209;[0.62615408, 47.43926466];;FRGLYELYON15722;FR*SOD*E*UNIB*1*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.963056;43.594881;;Concarneau;; +;;;;;;;;FRURWPUNIB1411;FRCPIE6623845;Poitou-Charentes;;36 avenue de l’Hers,31500 Toulouse;22180;[0.26067, 47.8371];;FRGLYELYON15712;FR*SOD*E*UNIB*1*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.906228;48.651863;;Coray;; +;;;;;;;;FRURWPUNIB1321;FRS37E169;SONEPAR CONNECT TOULOUSE NORD;;51 Route Des Iles Sanguinaires;22190;[5.963056, 46.096296];;FRGLYELYON14711;FR*SOD*E*UNIB*1*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.072355;49.317803;;Ploumoguer;; +;;;;;;;;FRURWPUNIB1311;FRS37E170;Aire de Val Neuvy;;Quai de Seine 77000 La Rochette;22363;[3.906228, 45.048606];;FRGLYELYON15012;FR*SOD*E*UNIB*1*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.030362;44.7456293;;Quimper;; +;;;;;;;;FRURWPUNIB1322;FRS37E1561;MERCK SITES EUR BORNE P2-01;;89 rue de lorraine;22178;[2.072355, 49.049365];;FRGLYELYON15011;FR*SOD*E*UNIB*1*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.23585;47.35048561;;Quimperlé;; +;;;;;;;;FRURWPUNIB1312;FRCPIE6620005;CGED AUBENAS;;centre commercial bala;22013;[6.030362, 43.137959];;FRGLYELYON14911;FR*SOD*E*UNIB*5*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.181994;47.282613;;Rédené;; +;;;;;;;;FRURWPUNIB12101;FRIENE007102;EPEIGNE SUR DEME 1246;;12 Rue Salengro LOOS;22115;[6.23585, 48.6512];;FRGLYELYON14912;FR*SOD*E*UNIB*5*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.719126;44.557674;;Roscoff;; +;;;;;;;;FRURWPUNIB1291;FRCPIE6615325;SONEPAR CONNECT AMIENS;;2 rue de Brumath 67350;22137;[0.181994, 47.938954];;FRGLYELYON14812;FR*SOD*E*UNIB*10*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.80337011;47.1818339;;Rosporden;; +;;;;;;;;FRURWPUNIB1271;FRS37E158;Shell Aire de Bordeaux-Cestas Est A63;;5 Boulevard de Verdun 89100 Sens;22082;[4.719126, 44.361721];;FRGLYELYON14811;FR*SOD*E*UNIB*8*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.80018;45.708229;;Saint-Évarzec;; +;;;;;;;;FRURWPUNIB1281;FRCPIE6651955;Hambach;;AVENUE JOSEPH REY 68000 Colmar;22186;[0.80337011, 46.9202394];;FRGLYELYON9411;FR*SOD*E*UNIB*9*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.288579;43.400154;;Saint-Goazec;; +;;;;;;;;FRURWPUNIB12111;FRCPIE6651965;PLOUHARNEL BORNE 2;;15 rue des allies 57050 Metz;22372;[-2.80018, 47.621586];;FRGLYELYON14712;FR*SOD*E*UNIB*9*9*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.355484;48.936485;;Saint-Martin-des-Champs;; +;;;;;;;;FRURWPUNIB1121;FRS28E20057;SUPER U OLONNE OLONNE SUR MER;;34 Rue Ampère 56600 Lanester;22379;[1.288579, 45.888311];;FRGLYELYON15721;FR*SOD*E*UNIB*9*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.850804;46.34256;;Saint-Pabu;; +;;;;;;;;FRURWPUNIB1081;FRIENE007101;SONEPAR CARPENTRAS;;ESPACE VALENTINE BAT B MONTEE DE SAINT MENET 13011 Marseille;22054;[1.355484, 43.594881];;FRGLYELYON14621;FR*SOD*E*UNIB*9*11*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.359933;50.30778;;Saint-Pol-de-Léon;; +;;;;;;;;FRURWPUNIB1012;FRCPIE6618695;SUUPER U BORNE 1;;Route de Mezzavia 20000 Ajaccio;22084;[1.850804, 48.651863];;FRGLYELYON14612;FR*SOD*E*UNIB*9*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7037549;48.845473;;Quéménéven;; +;;;;;;;;FRURWPUNIB1071;FRCPIE6727745;DIERRE 1242;;20 AVENUE DE L'AUTOMOBILE 24100 TRELISSAC;22105;[-0.359933, 49.317803];;FRGLYELYON14622;FR*SOD*E*UNIB*9*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.66514559;43.668793;;Querrien;; +;;;;;;;;FRURWPUNIB1022;FRCPIE6727755;DESCARTES 1241;;Rue Emerson White 60150 Mélicocq;22118;[-0.7037549, 44.7456293];;FRGLYELYON14611;FR*SOD*E*UNIB*9*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.266909;46.073036;;Poullan-sur-Mer;; +;;;;;;;;FRURWPUNIB1091;FRS37E164;MENODIS BORNE 1;;3 rue de la Libération 60620 Betz;22107;[0.66514559, 47.35048561];;FRGLYELYON14522;FR*SOD*E*UNIB*20*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.261484;46.072613;;Saint-Thurien;; +;;;;;;;;FRURWPUNIB1511;FRS37E258;SONEPAR GIEN;;Place Saint-Eloi 60138 Chiry-Ourscamp;22207;[0.266909, 47.282613];;FRGLYELYON14521;FR*SOD*E*UNIB*9*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.09635437;48.255846;;Sibiril;; +;;;;;;;;FRURWPUNIB1521;FRS37E184;LA VILLE AUX DAMES 1258 - Anciens combattants;;2 rue du Général de Gaulle 60280 Clairoix;22162;[2.261484, 44.557674];;FRGLYELYON14511;FR*SOD*E*UNIB*9*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.958707;48.669613;;Santec;; +;;;;;;;;FRURWPUNIB35171;FRCPIE6621925;Aire de Villers-Bretonneux;;Place de l'Eglise 60190 Estrées-Saint-Denis;22170;[1.09635437, 47.1818339];;FRGLYELYON15112;FR*SOD*E*UNIB*8*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.049431;49.091958;;Tréglonou;; +;;;;;;;;FRURWPUNIB1632;FRS37E257;LARCAY 1264;;1 Avenue du Général De Gaulle 60150 Longueil-Annel;22047;[4.958707, 45.708229];;FRGLYELYON15111;FR*SOD*E*UNIB*8*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.264781;47.53765557;;Scrignac;; +;;;;;;;;FRURWPUNIB1861;FRS37E259;LA MEMBROLLE SUR CHOISILLE 1262 - Mazagran;;Rue De La Misacard 60310 Lassigny;22228;[6.049431, 43.400154];;FRGLYELYON15211;FR*SOD*E*UNIB*8*9*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.415382;47.411565;;Tréméven;; +;;;;;;;;FRURWPUNIB1932;FRCPIE6623475;HYPERU BORNE 2 DC;;Rue de Verneuil 60700 Fleurines;22056;[2.264781, 48.936485];;FRGLYELYON15212;FR*SOD*E*UNIB*8*10*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.808017;47.615333;;La Roche-Maurice;; +;;;;;;;;FRURWPUNIB1951;FRS37E268;Valleiry Sud;;5 rue Jean Jaurès 60150 Thourotte;22353;[6.415382, 46.34256];;FRGLYELYON15711;FR*SOD*E*UNIB*8*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.664064;48.743286;;Landunvez;; +;;;;;;;;FRURWPUNIB1922;FRS37E128;SONEPAR CONNECT LE PUY;;Place Paul Emile Victor 60840 Breuil-le-Sec;22220;[2.808017, 50.30778];;FRGLYELYON15622;FR*SOD*E*UNIB*5*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.598175;47.613509;;Cléden-Cap-Sizun;; +;;;;;;;;FRURWPUNIB1921;FRCPIE6621065;SONEPAR CONNECT OSNY;;Avenue Abel Didelet 60190 Estrées-Saint-Denis;22114;[2.664064, 48.845473];;FRGLYELYON15612;FR*SOD*E*UNIB*8*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.38108;42.742843;;Trégunc;; +;;;;;;;;FRURWPUNIB1941;FRS37E172;SONEPAR CONNECT LA GARDE;;Place de Magny 60640 Guiscard;22094;[0.598175, 43.668793];;FRGLYELYON15621;FR*SOD*E*UNIB*8*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.381368;50.927053;;Saint-Renan;; +;;;;;;;;FRURWPUNIB1962;FRCPIE6620685;LANEUVEVILLE - Parking du cimetière - 187519;;33 Rue François Mitterrand 60420 Maignelay-Montigny;22021;[6.38108, 46.073036];;FRGLYELYON15611;FR*SOD*E*UNIB*8*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.435117;50.826737;;Saint-Ségal;; +;;;;;;;;FRURWPUNIB1952;FRS37E173;SUPER U ARNAGE DIRECTION;;Place Jehan Froisart 60138 Chiry-Ourscamp;22296;[6.381368, 46.072613];;FRGLYELYON15512;FR*SOD*E*UNIB*8*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.186692;47.27856391;;Saint-Thégonnec Loc-Eguiner;; +;;;;;;;;FRURWPUNIB1961;FRFASE331110;CGED CGED PIERRELATT;;3 rue de la Tour Roland 60310 Lassigny;22308;[7.435117, 48.255846];;FRGLYELYON15521;FR*SOD*E*UNIB*6*13*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.488107;46.991234;;Saint-Thois;; +;;;;;;;;FRURWPUNIB1942;FRCPIE6620815;LE GRAND PRESSIGNY 1266;;Rue de la Gare 60880 Jaux;22384;[6.186692, 48.669613];;FRGLYELYON15522;FR*SOD*E*UNIB*6*11*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.9873037;47.20550704;;Saint-Yvi;; +;;;;;;;;FRURWPUNIB1912;FRCPIE6620845;PENBOCH BORNE 1;;Rue De Marquéglise 60490 Margny-sur-Matz;22093;[1.488107, 49.091958];;FRGLYELYON15511;FR*SOD*E*UNIB*6*14*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.988131;47.02086795;;Telgruc-sur-Mer;; +;;;;;;;;FRURWPUNIB1931;FRCPIE6621055;SONEPAR CONNECT LIMOGES;;Rue Saint-Antoine 60420 Tricot;22136;[0.9873037, 47.53765557];;FRGLYELYON15411;FR*SOD*E*UNIB*6*12*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.706887;43.36099509;;Scaër;; +;;;;;;;;FRURWPUNIB1911;FRCPIE6738105;FORMATION TLSE BORNE 2;;Rue De La Résistance 01300 Belley;22026;[0.988131, 47.411565];;FRGLYELYON15412;FR*SOD*E*UNIB*6*10*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.917294;48.309339;;Treffiagat;; +;;;;;;;;FRURWPUNIB1822;FRCPIE6746725;BUCHELAY RAMBOUILLET 1;;19 Rue Principale 57640 Servigny-lès-Sainte-Barbe;22377;[-0.706887, 47.615333];;FRGLYELYON15422;FR*SOD*E*UNIB*6*11*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.705724;50.718786;;Sizun;; +;;;;;;;;FRURWPUNIB1821;FRIONE44000;LA CAPRICIEUSE BORNE OMAHA;;Rue du Moulin l'Heuillet 60490 Ressons-sur-Matz;22333;[1.917294, 48.743286];;FRGLYELYON15421;FR*SOD*E*UNIB*6*14*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.453566;43.70836;;Trégourez;; +;;;;;;;;FRURWPUNIB1831;FRIONE4400;Shell Aire de Bordeaux-Cestas Ouest A63;;Rue du Couvent 60350 Saint-Jean-aux-Bois;22113;[-0.705724, 47.613509];;FRGLYELYON15312;FR*SOD*E*UNIB*6*10*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.79825;50.653805;;Plonévez-Porzay;; +;;;;;;;;FRURWPUNIB1631;FRIONE40380;JOUE LES TOURS 1251;;1 Rue de l'Église 60420 Maignelay-Montigny;22194;[9.453566, 42.742843];;FRGLYELYON15311;FR*SOD*E*UNIB*6*12*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.585734;48.629593;;Plouarzel;; +;;;;;;;;FRURWPUNIB1811;FRIONE4038;COTEAUX SUR LOIRE 1250 - Ingrandes;;Rue Jules Ferry 60610 Lacroix Saint-Ouen;22193;[1.79825, 50.927053];;FRGLYELYON9421;FR*SOD*E*UNIB*6*13*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.16848028;48.069102;;Ploudalmézeau;; +;;;;;;;;FRURWPUNIB1852;FRS37E590;CGED DECAZEVILLE;;Quartier De La Tuiliere 83480 Puget-sur-Argens;22040;[2.585734, 50.826737];;FRGLYELYON521;FR*SOD*E*UNIB*20*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.920065;42.740571;;Ploudaniel;; +;;;;;;;;FRURWPUNIB1862;FRCPIE6746675;GENILLE 1249;;1 rue Jean Baptiste Dumaire 57200 Sarreguemines;22155;[0.16848028, 47.27856391];;FRGLYELYON9311;FR*SOD*E*UNIB*20*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.18304333;49.061372;;Plouégat-Guérand;; +;;;;;;;;FRURWPUNIB1812;FRIONE44660;SONEPAR CONNECT SAINT-PRIEST 1;;2 rue Jean Moulin 57510 Puttelange-aux-Lacs;22145;[0.920065, 46.991234];;FRGLYELYON3812;FR*SOD*E*UNIB*20*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.60313761;46.186811;;Plouégat-Moysan;; +;;;;;;;;FRURWPUNIB1851;FRCPIE6746745;SONEPAR CONNECT BRIGNOLES;;Rue de la Montagne 57200 Sarreguemines;22358;[0.18304333, 47.20550704];;FRGLYELYON3521;FR*SOD*E*UNIB*31*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.34403912;48.217011;;Pouldergat;; +;;;;;;;;FRURWPUNIB1832;FRCPIE6746825;SONEPAR CONNECT GENNEVILLIERS;;101 rue du Maréchal Foch 57200 Sarreguemines;22302;[0.60313761, 47.02086795];;FRGLYELYON3522;FR*SOD*E*UNIB*32*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.024265;43.373619;;Plouénan;; +;;;;;;;;FRURWPUNIB1011;FRIONE40390;SONEPAR CONNECT THONON;;3A rue du Stade 57510 Holving;22158;[3.34403912, 43.36099509];;FRGLYELYON3611;FR*SOD*E*UNIB*32*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.132804;49.07246803;;Plouescat;; +;;;;;;;;FRURWPUNIB1841;FRIONE4039;CGED ARRAS _;;Rue Robert Schuman 57910 Hambach;22362;[4.024265, 48.309339];;FRGLYELYON3622;FR*SOD*E*UNIB*32*9*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.332159;47.000005;;Plouezoc'h;; +;;;;;;;;FRURWPUNIB1711;FRCPIE6609815;SONEPAR CONNECT BUSSY-ST-MARTIN;;99 rue du Maréchal Foch 57200 Sarreguemines;22339;[3.132804, 50.718786];;FRGLYELYON3621;FR*SOD*E*UNIB*32*10*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.115542;47.211405;;Plougasnou;; +;;;;;;;;FRURWPUNIB1712;FRS28E13433;SONEPAR CONNECT AUCH 1;;Place de la Gare 57200 Sarreguemines;22262;[7.332159, 43.70836];;FRGLYELYON3612;FR*SOD*E*UNIB*32*13*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.029245;47.054038;;Plougonvelin;; +;;;;;;;;FRURWPUNIB1612;FRIENE004301;MONTBLANC HOTEL BORNE 02;;2 quai de l'Albe 57430 Sarralbe;22277;[3.115542, 50.653805];;FRGLYELYON3711;FR*SOD*E*UNIB*32*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.065324;50.332881;;Plonévez-du-Faou;; +;;;;;;;;FRURWPUNIB1622;FRIENE003901;MONTBLANC HOTEL BORNE 01;;122 rue Nationale 57910 Hambach;22283;[1.029245, 48.629593];;FRGLYELYON3722;FR*SOD*E*UNIB*33*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.460777;44.679571;;Plougonven;; +;;;;;;;;FRURWPUNIB1611;FRIONE40330;CGED SELESTAT 1;;Rue du Maire Massing 57200 Sarreguemines;22208;[2.065324, 48.069102];;FRGLYELYON3712;FR*SOD*E*UNIB*33*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.432419;47.610383;;Plabennec;; +;;;;;;;;FRURWPUNIB1621;FRIONE4033;VANDOEUVRE - RUELLE MATHIEU DE DOMBASLE - 187032;;8 rue René François Jolly 57200 Sarreguemines;22187;[9.460777, 42.740571];;FRGLYELYON3721;FR*SOD*E*UNIB*33*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.877382;49.39632;;Pleuven;; +;;;;;;;;FRURWPUNIB1842;FRS37E552;SONEPAR VERNON;;24 rue Saint-Jean 57510 Rémering-lès-Puttelange;22059;[1.432419, 49.061372];;FRGLYELYON3821;FR*SOD*E*UNIB*33*12*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.436381;47.610357;;Pleyben;; +;;;;;;;;FRURWPUNIB921;FRS37E1083;AUTRECHE 1198;;Parking de Fénétrange, rue des remparts 57930 Fénétrange;22161;[1.877382, 46.186811];;FRGLYELYON3811;FR*SOD*E*UNIB*33*15*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.204112;47.1584;;Pleyber-Christ;; +;;;;;;;;FRURWPUNIB1032;FRIONE40450;Aire de Lafayette Lorlanges;;Place Wilson 57400 Sarrebourg;22250;[6.436381, 48.217011];;FRGLYELYON4112;FR*SOD*E*UNIB*33*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5528702;48.657458;;Plobannalec-Lesconil;; +;;;;;;;;FRURWPUNIB322;FRIONE4045;AMBOISE 1184 - Château;;4 rue du Stade Service technique CdC Sarrebou 57870 Troisfontaines;22175;[6.204112, 43.373619];;FRGLYELYON3822;FR*SOD*E*UNIB*33*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.393657;48.992067;;Plogastel-Saint-Germain;; +;;;;;;;;FRURWPUNIB532;FRIENE003902;SUPER U GREZ N STATION 2;;Parking de covoiturage, ZAC Les terrasses 57400 Sarrebourg;22321;[2.5528702, 49.07246803];;FRGLYELYON3911;FR*SOD*E*UNIB*33*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.171081;49.071747;;Plogonnec;; +;;;;;;;;FRURWPUNIB521;FRCPIE6608715;Aire de la Plaine du Forez Ouest;;13 rue des Chèvres 57200 Sarreguemines;22282;[0.393657, 47.000005];;FRGLYELYON3921;FR*SOD*E*UNIB*33*9*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.625275;46.272776;;Plomelin;; +;;;;;;;;FRURWPUNIB522;FRS28E12905;EBC RECHARGE BORNE 1;;27 rue de Nancy 57915 Woustviller;22266;[0.171081, 47.211405];;FRGLYELYON3912;FR*SOD*E*UNIB*32*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.456806;47.38725302;;Plomeur;; +;;;;;;;;FRURWPUNIB511;FRS37E557;SUPER U GREZ N STATION 4;;16 rue de l'Hôpital 57430 Sarralbe;22222;[0.625275, 47.054038];;FRGLYELYON3922;FR*SOD*E*UNIB*32*11*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.26093;47.18394345;;Plomodiern;; +;;;;;;;;FRURWPUNIB541;FRS37E558;MAIRIE SMDL GROUPE SCOLAIRE;;1 place de la Poste 57200 Sarreguemines;22239;[3.456806, 50.332881];;FRGLYELYON4021;FR*SOD*E*UNIB*32*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.335507;48.23192;;Plonéis;; +;;;;;;;;FRURWPUNIB552;FRS18E20635;Coquelles;;9 Rue du Béal, 38400 Saint-Martin-d'Hères;22256;[1.26093, 44.679571];;FRGLYELYON4011;FR*SOD*E*UNIB*31*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.114081;47.16745011;;Plonéour-Lanvern;; +;;;;;;;;FRURWPUNIB461;FRS18E20636;Saint Laurent;;17 Rue Lochet 51000 Châlons-en-Champagne;22272;[1.335507, 47.610383];;FRGLYELYON4022;FR*SOD*E*UNIB*31*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.336053;47.6595272;;Plouvorn;; +;;;;;;;;FRURWPUNIB431;FRFASE331040;BOURGUEIL 1208 - Rue Jean Causseret;;Rue André Salmon 34500 Béziers;22360;[1.114081, 49.39632];;FRGLYELYON4012;FR*SOD*E*UNIB*31*9*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.346;47.25496397;;Plouzévédé;; +;;;;;;;;FRURWPUNIB451;FRCPIE6573995;BETZ LE CHÂTEAU 1206;;331 Rue Des Longues Raies 60610 Lacroix-Saint-Ouen;22386;[1.336053, 47.610357];;FRGLYELYON4121;FR*SOD*E*UNIB*31*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.632987;43.074883;;Plozévet;; +;;;;;;;;FRURWPUNIB441;FRIONE40530;AVOINE 1200;;111 Avenue de Paris 51000 Châlons-en-Champagne;22258;[0.346, 47.1584];;FRGLYELYON4122;FR*SOD*E*UNIB*31*11*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.633191;47.34927895;;Pluguffan;; +;;;;;;;;FRURWPUNIB411;FRS28E13440;LA CELLE SAINT AVANT 1214;;Rue Du Saint-Quentin 57160 Scy-Chazelles;22204;[-3.632987, 48.657458];;FRGLYELYON3512;FR*SOD*E*UNIB*31*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.552983;46.189118;;Pont-Aven;; +;;;;;;;;FRURWPUNIB421;FRIONE43790;Aire de Béziers Montblanc Nord;;5 Avenue Ampère 51000 Châlons-en-Champagne;22225;[1.633191, 48.992067];;FRGLYELYON3511;FR*SOD*E*UNIB*31*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.657566;50.289375;;Pont-Croix;; +;;;;;;;;FRURWPUNIB321;FRIONE4379;SONEPAR CONNECT TROYES;;Rue De L'esplanade 57160 Scy-Chazelles;22263;[2.552983, 49.071747];;FRGLYELYON3421;FR*SOD*E*UNIB*31*10*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.2211991;47.276351;;Plougourvest;; +;;;;;;;;FRURWPUNIB312;FRIONE45930;CGED TOURCOING;;Rue De Crimée 57160 Scy-Chazelles;22183;[5.657566, 46.272776];;FRGLYELYON3422;FR*SOD*E*UNIB*32*12*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.96435995;47.063632;;Pont-l'Abbé;; +;;;;;;;;FRURWPUNIB311;FRS28E13015;SU BEAULIEU SUPER U;;15 Rue Du Commerce 67550 Vendenheim;22232;[0.2211991, 47.38725302];;FRGLYELYON2821;FR*SOD*E*UNIB*31*12*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.402639;47.34623877;;Porspoder;; +;;;;;;;;FRURWPUNIB551;FRCPIE6588515;SONEPAR CONNECT MARCQ-EN-BAREUL;;14 Avenue Du Pré Robert Nord 74200 Anthy-sur-Léman;22237;[0.96435995, 47.18394345];;FRGLYELYON2912;FR*SOD*E*UNIB*31*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.24037957;48.302818;;Plouvien;; +;;;;;;;;FRURWPUNIB222;FRCPIE6733605;LA SAUCELLE - Place de l'Eglise - 128795;;43 Rue De La Libération 57870 Troisfontaines;22215;[7.402639, 48.23192];;FRGLYELYON2922;FR*SOD*E*UNIB*31*13*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.64957872;47.2602472;;Plouigneau;; +;;;;;;;;FRURWPUNIB231;FRCPIE6588525;SUPERU BORNE CLIENT;;Rue De La Passerine 57160 Scy-Chazelles;22127;[0.24037957, 47.16745011];;FRGLYELYON2911;FR*SOD*E*UNIB*32*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.46238452;44.120483;;Plouguerneau;; +;;;;;;;;FRURWPUNIB232;FRS37E655;MAIRIE SMDL PARKING RDC;;2 Route De Nort-Sur-Erdre 44170 Nozay;22153;[0.64957872, 47.6595272];;FRGLYELYON2921;FR*SOD*E*UNIB*32*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.641617;48.467261;;Plouguin;; +;;;;;;;;FRURWPUNIB212;FRFASE330290;Aire du Haut Forez Sud;;7 rue Georges Charpak 38300 Bourgoin-Jallieu;22305;[0.46238452, 47.25496397];;FRGLYELYON3012;FR*SOD*E*UNIB*32*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.6971043;50.628119;;Plouider;; +;;;;;;;;FRURWPUNIB211;FRCPIE6588565;RAW PARISGIVERNY 59;;4 avenue Mahatma Gandhi 97441 Sainte-Suzanne;22147;[1.641617, 43.074883];;FRGLYELYON3021;FR*SOD*E*UNIB*33*10*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.067522;47.288104;;Plounéventer;; +;;;;;;;;FRURWPUNIB241;FRCPIE6634095;CGED GUERET;;34 Rue Du Maréchal Foch 57200 Sarreguemines;29103;[0.6971043, 47.34927895];;FRGLYELYON3022;FR*SOD*E*UNIB*33*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.804213;43.46925139;;Plounévez-Lochrist;; +;;;;;;;;FRURWPUNIB221;FRIENE004302;CGED EPINAL (VOSGES);;Lane Bazert 31210 Gourdan-Polignan;29105;[4.067522, 46.189118];;FRGLYELYON3011;FR*SOD*E*UNIB*33*11*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.494947;47.41894606;;Plourin;; +;;;;;;;;FRURWPUNIB242;FRCPIE6530215;SUPERU FLASSANS SUPER U 2;;Rue Des Olivines 97410 Saint-Pierre;29112;[2.804213, 50.289375];;FRGLYELYON3111;FR*SOD*E*UNIB*36*12*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.398609;43.545336;;Plourin-lès-Morlaix;; +;;;;;;;;FRURWPUNIB111;FRS37E602;Aire de Vémars Est;;1 Rue Edouard Manes 97490 Saint-Denis;29106;[1.494947, 47.276351];;FRGLYELYON3112;FR*SOD*E*UNIB*36*15*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.45853597;47.660766;;Carquefou;; +;;;;;;;;FRURWPUNIB141;FRCPIE6575095;Braslou 11017 - Rue Principale;;304 Rue de Persigny 42640 SAINT-GERMAIN-LESPI;29108;[2.398609, 47.063632];;FRGLYELYON3121;FR*SOD*E*UNIB*36*17*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.834738;47.11129467;;Buigny-Saint-Maclou;; +;;;;;;;;FRURWPUNIB121;FRCPIE6658765;BEAUMONT EN VERON 7746 - Rue Paul Langevin;;15 avenue de Lingenfeld 77200 Torcy;29113;[0.45853597, 47.34623877];;FRGLYELYON3122;FR*SOD*E*UNIB*36*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.93017391;46.725501;;Saint-Pierre-en-Faucigny;; +;;;;;;;;FRURWPUNIB131;FRCPIE6741345;DRACHE 1244;;3 Rue Charles Martin 69190 Saint-Fons;29115;[5.834738, 48.302818];;FRGLYELYON3222;FR*SOD*E*UNIB*36*18*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.025806;48.776394;;Saint-Martin-de-Valgalgues;; +;;;;;;;;FRURWPUNIB161;FRIONE40910;CGED PROUVY;;D571 13630 Eyragues;29101;[0.93017391, 47.2602472];;FRGLYELYON3212;FR*SOD*E*UNIB*36*16*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.578674;48.146023;;Lalouvesc;; +;;;;;;;;FRURWPUNIB151;FRIONE4091;SALVIADIS U EXPRESS;;14 Avenue Normandie Sussex 76200 Dieppe;29117;[5.025806, 44.120483];;FRGLYELYON3211;FR*SOD*E*UNIB*36*9*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.050931;43.64403;;Montceau-les-Mines;; +;;;;;;;;FRURWPUNIB542;FRCPIE6741805;BLOIS - Rue de la Vall Maillard - 139033;;3 Rue De Mons 7080 Frameries;29081;[1.578674, 48.467261];;FRGLYELYON9321;FR*SOD*E*UNIB*36*13*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.735517;46.137482;;Le Pontet;; +;;;;;;;;FRURWPUNIB512;FRCPIE6741835;CGED ROUEN;;18 Boulevard Notre-Dame de la Trinité 97400 Saint-Denis;29098;[3.050931, 50.628119];;FRGLYELYON3322;FR*SOD*E*UNIB*35*27*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.65567564;49.20378;;Fiennes;; +;;;;;;;;FRURWPUNIB1031;FRIONE43890;BLOIS - Rue du Vall Maillard - 139063;;57 Avenue Frédéric Passy 11400 Castelnaudary;29072;[0.735517, 47.288104];;FRGLYELYON3312;FR*SOD*E*UNIB*36*11*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.65528244;44.194832;;Fragnes-La Loyère;; +;;;;;;;;FRURWPUNIB851;FRIONE4389;CRAVANT LES COTEAUX 21830 - Place Pierre Alliet;;Rue Gutenberg 47250 Samazan;29119;[5.65567564, 43.46925139];;FRGLYELYON3311;FR*SOD*E*UNIB*36*19*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.398564;48.360859;;Bougival;; +;;;;;;;;FRURWPUNIB911;FRS18E11298;SUPER U PLESTIN SUPER U PLESTIN;;21 Avenue De La Loge 86440 Migné-Auxances;29073;[0.65528244, 47.41894606];;FRGLYELYON3321;FR*SOD*E*UNIB*36*14*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.790509;47.246675;;Truchtersheim;; +;;;;;;;;FRURWPUNIB991;FRS37E551;Aire de Rosny sur Seine Sud;;3760 route de Roanne Le Point d'Aiguilly 42720 Vougy;29077;[1.398564, 43.545336];;FRGLYELYON3412;FR*SOD*E*UNIB*35*18*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.61646419;46.96858706;;Blaru;; +;;;;;;;;FRURWPUNIB941;FRS37E506;SONEPAR CONNECT OYONNAX;;22 Rue de la Marne 68360 Soultz-Haut-Rhin;29078;[-2.790509, 47.660766];;FRGLYELYON3411;FR*SOD*E*UNIB*35*20*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.494957;47.28450308;;Saint-Marcel-lès-Valence;; +;;;;;;;;FRURWPUNIB9111;FRIONE40930;Aire de Béziers Montblanc Sud;;Place du Général de Gaulle 68570 Soultzmatt;29085;[0.61646419, 47.11129467];;FRGLYELYON4111;FR*SOD*E*UNIB*35*23*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.159707;48.773186;;Avezé;; +;;;;;;;;FRURWPUNIB931;FRIONE4093;CONTINVOIR 1233;;12 Boulevard Charles Péguy 30100 Alès;29086;[2.494957, 46.725501];;FRGLYELYON4221;FR*SOD*E*UNIB*35*25*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.764199;47.22798;;Hœrdt;; +;;;;;;;;FRURWPUNIB951;FRCPIE6497835;CHAMBOURG SUR INDRE 1216;;Rue Porte Martel 73870 Saint-Julien-Mont-Denis;29091;[5.159707, 48.776394];;FRGLYELYON5512;FR*SOD*E*UNIB*35*21*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.455994;48.425499;;Poix-Terron;; +;;;;;;;;FRURWPUNIB971;FRCPIE6501945;Haut Koenigsbourg;;26 rue Henri Becquerel 97122 Baie Mahault;29095;[-1.764199, 48.146023];;FRGLYELYON5222;FR*SOD*E*UNIB*33*14*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.157357;47.1661501;;Lamastre;; +;;;;;;;;FRURWPUNIB2021;FRIONE40250;CHINON 1226 - Parking de la Brêche;;Rue de l'Ecole 57530 Silly-sur-Nied;29056;[1.455994, 43.64403];;FRGLYELYON4922;FR*SOD*E*UNIB*34*10*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.392652;50.16728841;;Ganges;; +;;;;;;;;FRURWPUNIB961;FRIONE4025;CHEMILLE SUR DEME 1224;;23 Ter Rue d’En Bas 59161 Escaudœuvres;29057;[6.157357, 46.137482];;FRGLYELYON4911;FR*SOD*E*UNIB*33*13*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.732409;47.34229894;;La Tourette;; +;;;;;;;;FRURWPUNIB981;FRS37E520;CHEILLE 1222;;Place du Marché 60320 Béthisy-Saint-Pierre;29076;[-0.392652, 49.20378];;FRGLYELYON4921;FR*SOD*E*UNIB*34*17*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.57393;47.41115111;;Blain;; +;;;;;;;;FRURWPUNIB871;FRS41E501;Pamiers;;ZAC Paris-Oise 60126 Longueil-Sainte-Marie;29146;[4.732409, 44.194832];;FRGLYELYON5022;FR*SOD*E*UNIB*34*12*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.542878;50.746462;;Savigneux;; +;;;;;;;;FRURWPUNIB831;FRS41E515;CHAMBRAY LES TOURS 1218;;Rue du Maréchal Leclerc 60150 Thourotte;29265;[2.57393, 48.360859];;FRGLYELYON5021;FR*SOD*E*UNIB*34*13*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.02625743;49.331998;;Tarascon-sur-Ariège;; +;;;;;;;;FRURWPUNIB891;FRS41E516;TROISGROS IGUERANDE;;4 Rue du Général Leclerc 60750 Choisy-au-Bac;29147;[0.542878, 47.246675];;FRGLYELYON5012;FR*SOD*E*UNIB*34*14*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.12586534;47.318301;;Le Cheylard;; +;;;;;;;;FRURWPUNIB8101;FRCPIE6505435;SONEPAR CONNECT ARRAS;;rue du Muguet 60126 Longueil-Sainte-Marie;29150;[1.02625743, 46.96858706];;FRGLYELYON5011;FR*SOD*E*UNIB*34*11*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.166973;48.829294;;Neuve-Église;; +;;;;;;;;FRURWPUNIB841;FRS28E12896;CHATILLON SUR CHER - Rue de la mairie - 204266;;Rue Jean Rostand 60870 Brenouille;29153;[0.12586534, 47.28450308];;FRGLYELYON5112;FR*SOD*E*UNIB*34*16*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.769341;47.44355115;;Saint-Bonnet-de-Joux;; +;;;;;;;;FRURWPUNIB531;FRS28E13483;BOURGES - Val d'Auron - 98422;;Sentier du Val des Haies 60700 Pontpoint;29071;[5.166973, 48.773186];;FRGLYELYON5122;FR*SOD*E*UNIB*35*24*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.431382;47.47546806;;Piedigriggio;; +;;;;;;;;FRURWPUNIB811;FRCPIE6720865;CINQ MARS LA PILE 1230;;116 Avenue Général Leclerc 38200 Vienne;29140;[0.769341, 47.22798];;FRGLYELYON5111;FR*SOD*E*UNIB*34*15*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.63142611;48.106302;;Saint-Point;; +;;;;;;;;FRURWPUNIB881;FRCPIE6495255;CHATENOIS - Allée Pré le Duc - 163450 - CCS;;14 Boulevard De La Salanque 66420 Le Barcarès;29120;[-4.431382, 48.425499];;FRGLYELYON5121;FR*SOD*E*UNIB*34*18*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.75572998;46.193253;;Entrechaux;; +;;;;;;;;FRURWPUNIB821;FRS37E489;CIGOGNE 1228;;Rue Du Canivet 76520 Franqueville-Saint-Pierre;29122;[0.63142611, 47.1661501];;FRGLYELYON5212;FR*SOD*E*UNIB*35*19*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.61630268;47.6644;;Ambérieu-en-Bugey;; +;;;;;;;;FRURWPUNIB861;FRCPIE6744725;UEXPRESS BORNE 1;;10 Avenue Du Rhône 74000 Annecy;29040;[1.75572998, 50.16728841];;FRGLYELYON4212;FR*SOD*E*UNIB*35*15*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.7991226;48.622734;;Ernée;; +;;;;;;;;FRURWPUNIB6132;FRS41E484;Chartres Bois Paris;;2 bis RN 1 -ZAC Mon Repos 97410 Saint-Pierre;29053;[0.61630268, 47.34229894];;FRGLYELYON5211;FR*SOD*E*UNIB*35*22*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.138686;48.422931;;Craon;; +;;;;;;;;FRURWPUNIB6112;FRS37E486;BIOPATH HDF WAZEMMES 1;;avenue Des Alliés 83240 Cavalaire-sur-Mer;29055;[0.7991226, 47.41115111];;FRGLYELYON5221;FR*SOD*E*UNIB*35*28*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.662529;44.4147;;Fougerolles-du-Plessis;; +;;;;;;;;FRURWPUNIB6142;FRS41E486;VEIGNE 1330 - Centre Abbé Fiot;;58 Rue de Grosbliederstroff 57200 Sarreguemines;29087;[3.138686, 50.746462];;FRGLYELYON5312;FR*SOD*E*UNIB*31*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.42726;47.030768;;Cossé-le-Vivien;; +;;;;;;;;FRURWPUNIB6122;FRCPIE6741035;Shell Aire de l'Arc Sud HW;;303 route du Port 74290 Talloires-Montmin;29124;[5.662529, 49.331998];;FRGLYELYON5311;FR*SOD*E*UNIB*30*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.371032;47.262565;;Château-Gontier-sur-Mayenne;; +;;;;;;;;FRURWPUNIB6102;FRS41E488;SAINT CYR SUR LOIRE 1308 - René Coulon;;74 Boulevard De Colmar 88400 Gérardmer;29130;[0.42726, 47.318301];;FRGLYELYON5321;FR*SOD*E*UNIB*20*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.57813368;47.4981857;;Le Genest-Saint-Isle;; +;;;;;;;;FRURWPUNIB6111;FRS37E490;SONEPAR CONNECT TOULOUSE 1;;20 Rue De Rouffach 68250 Westhalten;29134;[2.371032, 48.829294];;FRGLYELYON5322;FR*SOD*E*UNIB*30*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.7769873;49.061436;;Gorron;; +;;;;;;;;FRURWPUNIB6141;FRS41E500;IT TRATTORIA BORNE 2;;Rue du 7 février 1944 01110 Aranc;29135;[0.57813368, 47.44355115];;FRGLYELYON5421;FR*SOD*E*UNIB*24*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.729763;47.28483695;;Grez-en-Bouère;; +;;;;;;;;FRURWPUNIB6101;FRCPIE6745105;SAINTE MAURE DE TOURAINE 1310;;70 Rue De L'abbaye 27260 Cormeilles;29136;[0.7769873, 47.47546806];;FRGLYELYON5422;FR*SOD*E*UNIB*24*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.234158;47.20235927;;Javron-les-Chapelles;; +;;;;;;;;FRURWPUNIB6121;FRS41E491;St AMAND-MONTROND - Hôpital - 179113;;55 Rue Principale 67130 Natzwiller;29022;[-1.729763, 48.106302];;FRGLYELYON5411;FR*SOD*E*UNIB*24*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.7501;47.073438;;Jublains;; +;;;;;;;;FRURWPUNIB6131;FRS41E492;55 BAR LE DUC-rue de Couchot-66236;;46a Rue De Barr 67230 Kogenheim;29290;[6.234158, 46.193253];;FRGLYELYON5412;FR*SOD*E*UNIB*24*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.829824;43.5859;;Juvigné;; +;;;;;;;;FRURWPUNIB2032;FRS41E493;SODALEC-PACE STATION 1;;173 Rue De L'église 76750 Morgny-la-Pommeraye;29020;[0.7501, 47.6644];;FRGLYELYON5511;FR*SOD*E*UNIB*25*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.438596;47.28568302;;Lassay-les-Châteaux;; +;;;;;;;;FRURWPUNIB2041;FRS41E499;CGED TOULOUSE N;;2bis rue d'Alsace 62000 Arras;29021;[1.829824, 48.622734];;FRGLYELYON4912;FR*SOD*E*UNIB*25*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.153017;47.665035;;Changé;; +;;;;;;;;FRURWPUNIB2042;FRCPIE6635955;PARKING WEIDNER STATION 1;;51 Rue Du Cauroy 62920 Gonnehem;29158;[1.438596, 48.422931];;FRGLYELYON4812;FR*SOD*E*UNIB*25*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.10745;43.109285;;Val-du-Maine;; +;;;;;;;;FRURWPUNIB3141;FRCPIE6609805;CCI CAEN STATION 2;;5 Rue D'oslo 67170 Bernolsheim;29023;[-1.153017, 44.4147];;FRGLYELYON4822;FR*SOD*E*UNIB*25*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.038942;47.08256988;;Ahuillé;; +;;;;;;;;FRURWPUNIB3221;FRCPIE6740835;Mornas Village;;Rue Du Ruxelier 88460 Cheniménil;29024;[5.10745, 47.030768];;FRGLYELYON4821;FR*SOD*E*UNIB*26*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.57855158;47.24320891;;Ambrières-les-Vallées;; +;;;;;;;;FRURWPUNIB3231;FRCPIE6740785;Aire d’Achères - La Forêt;;50 rue des Paddocks 71580 Fronteneaud;29025;[-1.038942, 47.262565];;FRGLYELYON4211;FR*SOD*E*UNIB*26*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.431325;48.558649;;Argentré;; +;;;;;;;;FRURWPUNIB3291;FRCPIE6740795;SACHE 1302;;Avenue Eugène Pottier 54510 Tomblaine;29026;[0.57855158, 47.4981857];;FRGLYELYON4222;FR*SOD*E*UNIB*26*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.17219177;48.1660532;;La Baconnière;; +;;;;;;;;FRURWPUNIB32101;FRCPIE6741515;SAINT FLOVIER 1305;;3690 Route De Baziège La Lauragaise 31670 Labège;29027;[1.431325, 49.061436];;FRGLYELYON4322;FR*SOD*E*UNIB*26*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.14284648;47.475704;;Bais;; +;;;;;;;;FRURWPUNIB32131;FRCPIE6741535;SAINT NICOLAS DE BOURGUEIL 1306;;32 Grande Rue 08430 Poix-Terron;29030;[0.17219177, 47.28483695];;FRGLYELYON4321;FR*SOD*E*UNIB*27*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.667944;45.277;;Ballots;; +;;;;;;;;FRURWPUNIB3261;FRCPIE6740815;55 BAR LE DUC-parking de la gare-66183;;900 Avenue Olivier De Serres 30100 Alès;29031;[0.14284648, 47.20235927];;FRGLYELYON4312;FR*SOD*E*UNIB*27*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.996808;46.98139;;Bazougers;; +;;;;;;;;FRURWPUNIB3321;FRCPIE6740825;SAINT BRANCHS 1304;;136 Route D'auxerre 10120 Saint-André-les-Vergers;29032;[0.667944, 47.073438];;FRGLYELYON4311;FR*SOD*E*UNIB*27*1*4*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.30915141;47.087225;;Bouessay;; +;;;;;;;;FRURWPUNIB3331;FRCPIE6740845;ASNF BORNE 1;;16 Rue Joachim Du Bellay 25000 Besançon;29016;[6.996808, 43.5859];;FRGLYELYON4412;FR*SOD*E*UNIB*23*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.728485;47.254709;;Pontmain;; +;;;;;;;;FRURWPUNIB3381;FRCPIE6740855;Fontaine Colette;;114 Rue De Constantine 76000 Rouen;29001;[0.30915141, 47.28568302];;FRGLYELYON4411;FR*SOD*E*UNIB*23*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.35618;47.44858502;;Saint-Denis-d'Anjou;; +;;;;;;;;FRURWPUNIB33121;FRCPIE6740865;Baie de Somme;;7 Rue Turgot 02000 Laon;29002;[-2.728485, 47.665035];;FRGLYELYON4421;FR*SOD*E*UNIB*22*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.03475606;44.036716;;Renazé;; +;;;;;;;;FRURWPUNIB33151;FRCPIE6740875;BALLAN MIRE 1332;;29 rue de Chartres 45410 Artenay;29003;[6.35618, 43.109285];;FRGLYELYON4422;FR*SOD*E*UNIB*21*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.69715172;47.981613;;Pré-en-Pail-Saint-Samson;; +;;;;;;;;FRURWPUNIB3371;FRCPIE6740885;VOUVRAY 1331;;144a Route Des Romains 57100 Thionville;29004;[1.03475606, 47.08256988];;FRGLYELYON4522;FR*SOD*E*UNIB*20*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.270227;43.707552;;Montsûrs;; +;;;;;;;;FRURWPUNIB3351;FRCPIE6741075;SONEPAR CONNECT RONCQ;;21 Avenue De Joinville 91170 Viry-Châtillon;29005;[0.69715172, 47.24320891];;FRGLYELYON4521;FR*SOD*E*UNIB*35*26*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.8670518;45.275403;;Mayenne;; +;;;;;;;;FRURWPUNIB3361;FRCPIE6740755;55 SPINCOURT-chemin court-66456;;Rue de l'Eglise 95580 Andilly;29006;[5.270227, 48.558649];;FRGLYELYON4511;FR*SOD*E*UNIB*20*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.598607;47.779533;;Montaudin;; +;;;;;;;;FRURWPUNIB3391;FRCPIE6740745;LA CHAPELLE AUX NAUX 1699;;Grand Rue 57130 Ancy-Dornot;29008;[-1.8670518, 48.1660532];;FRGLYELYON4512;FR*SOD*E*UNIB*20*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.623;47.271963;;Meslay-du-Maine;; +;;;;;;;;FRURWPUNIB3211;FRCPIE6675745;SONEPAR CONNECT PARIS 13;;Rue Lemal-Perrin 57130 Ancy-Dornot;29015;[-0.598607, 47.475704];;FRGLYELYON4621;FR*SOD*E*UNIB*21*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.488611;43.929691;;Saint-Denis-de-Gastines;; +;;;;;;;;FRURWPUNIB32111;FRCPIE6675765;SAINT ROCH 1325;;Avenue De La Maine 85500 Les Herbiers;29049;[5.623, 45.277];;FRGLYELYON4612;FR*SOD*E*UNIB*21*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.791498;43.116997;;Saint-Ouën-des-Toits;; +;;;;;;;;FRURWPUNIB3281;FRIONE41290;Tours La Longue Vue;;18 Rue Jean Perrin 28600 Luisant;29043;[0.488611, 46.98139];;FRGLYELYON4622;FR*SOD*E*UNIB*21*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.934966;49.410973;;Saint-Pierre-des-Nids;; +;;;;;;;;FRURWPUNIB3161;FRIONE4129;SONEPAR CONNECT LA RETARDAIS 2;;335 Avenue Clément Ader 84000 Avignon;29044;[0.791498, 47.087225];;FRGLYELYON4611;FR*SOD*E*UNIB*22*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.6506905;48.221164;;Sainte-Suzanne-et-Chammes;; +;;;;;;;;FRURWPUNIB3171;FRCPIE6684665;CGED ANNEMASSE;;Rue John Kennedy 150 6250 Roselies;29045;[1.934966, 47.254709];;FRGLYELYON4711;FR*SOD*E*UNIB*22*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.358792;43.576667;;Saulges;; +;;;;;;;;FRURWPUNIB3191;FRCPIE6697565;LES HERMITES 19684 - Rue de la fontaine;;La Raufie 19120 Altillac;29046;[0.6506905, 47.44858502];;FRGLYELYON4722;FR*SOD*E*UNIB*22*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.274872;44.88341;;Vaiges;; +;;;;;;;;FRURWPUNIB3151;FRS28E13475;SONEPAR RAMBOUILLET;;24 Rue Du Bois D'orly 57685 Augny;29048;[1.358792, 44.036716];;FRGLYELYON4721;FR*SOD*E*UNIB*22*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.633864;47.297864;;Villaines-la-Juhel;; +;;;;;;;;FRURWPUNIB31111;FRCPIE6755595;SONEPAR CONNECT CHARTRES;;40 Avenue De La Libération 71210 Montchanin;29051;[0.274872, 47.981613];;FRGLYELYON4712;FR*SOD*E*UNIB*22*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.344886;47.939134;;Villiers-Charlemagne;; +;;;;;;;;FRURWPUNIB3131;FRCPIE6676265;Biscarrosse;;ZAC Terrasses de la Sarre 57400 Sarrebourg;29058;[4.633864, 43.707552];;FRGLYELYON4811;FR*SOD*E*UNIB*22*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.33434;44.232656;;Loiron-Ruillé;; +;;;;;;;;FRURWPUNIB3121;FRCPIE6614465;Bois Guillerot;;D 950 Accès D46 62490 Fresnes-lès-Montauban;29060;[6.344886, 45.275403];;FRGLYELYON2822;FR*SOD*E*UNIB*22*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.045629;45.790619;;Martigné-sur-Mayenne;; +;;;;;;;;FRURWPUNIB31101;FRCPIE6614505;NETTO BORNE 1;;9 Rue De La Sandholz 67110 Niederbronn-les-Bains;29063;[-3.33434, 47.779533];;FRGLYELYON2811;FR*SOD*E*UNIB*27*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.175863;50.950711;;Louverné;; +;;;;;;;;FRURWPUNIB32121;FRCPIE6614515;SEMBLANCAY 1315;;Zoning Industriel 46130 Biars-sur-Cère;29067;[5.045629, 47.271963];;FRGLYELYON2812;FR*SOD*E*UNIB*27*2*4*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.845612;48.632526;;La Roche-Neuville;; +;;;;;;;;FRURWPUNIB31121;FRCPIE6740725;RAW PARISGIVERNY 09;;16 Route de Nancy 57830 Héming;29042;[2.175863, 43.929691];;FRGLYELYON1112;FR*SOD*E*UNIB*27*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.119345;47.1288586;;Coron;; +;;;;;;;;FRURWPUNIB3111;FRCPIE6752805;BOURGUEIL 1210 - Place Marcelin;;22 Rue Du Passavent 35770 Vern-sur-Seiche;29037;[5.845612, 43.116997];;FRGLYELYON822;FR*SOD*E*UNIB*30*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.284485;47.05354232;;Orée d'Anjou;; +;;;;;;;;FRURWPUNIB31131;FRCPIE6750405;SAVIGNY EN VERON 1312 - Rue du Stade;;Zone des 4 vents 45550 Saint-Denis de l'Hôtel;29038;[2.119345, 49.410973];;FRGLYELYON812;FR*SOD*E*UNIB*30*10*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.834183;45.994754;;Chemillé-en-Anjou;; +;;;;;;;;FRURWPUNIB3251;FRS18E9395;SEPMES 1317;;2 place du Jard 51160 Ay-Champagne;29039;[3.284485, 48.221164];;FRGLYELYON821;FR*SOD*E*UNIB*30*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.627502;47.61777534;;Candé;; +;;;;;;;;FRURWPUNIB3271;FRCPIE6507275;CGED MOUGINS;;39 avenue Jean Jaurès 18100 Vierzon;29041;[3.834183, 43.576667];;FRGLYELYON911;FR*SOD*E*UNIB*30*6*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.417;49.897972;;Corzé;; +;;;;;;;;FRURWPUNIB3241;FRS41E13515;COTEAUX-SUR-LOIRE 1323;;215 Rue Samuel Morse 34000 Montpellier;29201;[6.627502, 44.88341];;FRGLYELYON912;FR*SOD*E*UNIB*30*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.182008;47.22805033;;Cantenay-Épinard;; +;;;;;;;;FRURWPUNIB33101;FRS18E9688;CGED VANNES;;562 Rue Jules Vallès 50000 Saint-Lô;29232;[0.417, 47.297864];;FRGLYELYON922;FR*SOD*E*UNIB*30*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.882544;44.714666;;Chalonnes-sur-Loire;; +;;;;;;;;FRURWPUNIB3341;FRS18E9689;ASL GAOU BENAT BORNE 1;;5 Rue Du Nouveau Bêle 44470 Carquefou;29233;[0.182008, 47.939134];;FRGLYELYON921;FR*SOD*E*UNIB*30*10*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.144033;43.58831;;Champtocé-sur-Loire;; +;;;;;;;;FRURWPUNIB33111;FRCPIE6751445;SAINT JEAN SAINT GERMAIN 1321;;Route de l'aéroport 67960 Entzheim;29234;[4.882544, 44.232656];;FRGLYELYON1012;FR*SOD*E*UNIB*30*9*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.907528;47.443928;;Les Hauts-d'Anjou;; +;;;;;;;;FRURWPUNIB36121;FRCPIE6752825;SORIGNY 1319 - 11 Novembre;;30 Route De Paris 03000 Avermes;29239;[3.144033, 45.790619];;FRGLYELYON1021;FR*SOD*E*UNIB*30*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.436023;44.714785;;Feneu;; +;;;;;;;;FRURWPUNIB36151;FRS18E21430;55 MONTIERS SUR SAULX-rue de l'abbaye-66319;;av du marechal foch 77860 Quincy Voisins;29241;[1.907528, 50.950711];;FRGLYELYON1011;FR*SOD*E*UNIB*30*9*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.99534765;50.694554;;Étriché;; +;;;;;;;;FRURWPUNIB36171;FRS18E14884;Shell Aire d'Armor et d'Argoat - St Gilles;;Place de L Hotel de Ville 89170 Saint-Fargeau;29247;[2.436023, 48.632526];;FRGLYELYON1022;FR*SOD*E*UNIB*30*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.5827783;47.032073;;Fontevraud-l'Abbaye;; +;;;;;;;;FRURWPUNIB3681;FRCPIE6726655;U EXPRESS BEAUS STATION 1;;Place du Bicentenaire 89200 Sauvigny-Le-Bois;29249;[0.99534765, 47.1288586];;FRGLYELYON1111;FR*SOD*E*UNIB*30*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.737815;47.51457851;;Grez-Neuville;; +;;;;;;;;FRURWPUNIB36181;FRS28E12928;Ile Rose;;Place du Port 89600 Saint-Florentin;29254;[0.5827783, 47.05354232];;FRGLYELYON2711;FR*SOD*E*UNIB*30*8*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.65008968;45.459377;;Ingrandes-Le Fresne sur Loire;; +;;;;;;;;FRURWPUNIB36161;FRS18E10835;MARIGNY MARMANDE 1281;;2 Rue Docteur Tardieux 89530 Saint-Bris-Le-Vineux;29257;[4.737815, 45.994754];;FRGLYELYON1121;FR*SOD*E*UNIB*30*7*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.115305;46.973452;;Jarzé Villages;; +;;;;;;;;FRURWPUNIB3691;FRS18E10836;LA CHAPELLE BLANCHE SAINT MARTIN 1254;;Place Saint Louis 89290 Champs-Sur-Yonne;29259;[0.65008968, 47.61777534];;FRGLYELYON1122;FR*SOD*E*UNIB*30*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.91468289;48.468782;;Écuillé;; +;;;;;;;;FRURWPUNIB36131;FRCPIE6553745;THENIOUX - Route de Tours - 170419;;5 Rue de L Abreuvoir 89580 Vallan;29229;[1.115305, 49.897972];;FRGLYELYON1221;FR*SOD*E*UNIB*30*11*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.753668;50.677842;;Doué-en-Anjou;; +;;;;;;;;FRURWPUNIB35271;FRS18E10965;METTRAY 1283 - Espace Coselia;;Impasse Lavoisier 73100 Grésy-sur-Aix;29230;[0.91468289, 47.22805033];;FRGLYELYON1212;FR*SOD*E*UNIB*30*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.936446;48.108593;;Durtal;; +;;;;;;;;FRURWPUNIB36111;FRS28E12992;CABLOTEC MTB CABLOTEC PARK;;107 avenue Salvador Allende 84500 Bollène;29226;[-0.753668, 44.714666];;FRGLYELYON1211;FR*SOD*E*UNIB*27*2*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.990664;48.873257;;Écouflant;; +;;;;;;;;FRURWPUNIB36191;FRS18E10961;SUPER U CHANGE BORNE 1;;Place Du Palais 84000 Avignon;29269;[3.936446, 43.58831];;FRGLYELYON1222;FR*SOD*E*UNIB*27*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.753907;47.60272923;;Brissac Loire Aubance;; +;;;;;;;;FRURWPUNIB36141;FRS18E9836;SONEPAR ARLES;;Parking relais PEM 89000 Auxerre;29276;[0.990664, 47.443928];;FRGLYELYON1312;FR*SOD*E*UNIB*27*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.607115;50.391205;;Les Garennes sur Loire;; +;;;;;;;;FRURWPUNIB35181;FRS18E20136;SONEPAR CONNECT MAURIENNE;;7 Avenue Monclar 84000 Avignon;29273;[-0.753907, 44.714785];;FRGLYELYON1311;FR*SOD*E*UNIB*27*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.109707;49.027416;;Beaulieu-sur-Layon;; +;;;;;;;;FRURWPUNIB35201;FRCPIE6737415;CGED CGED LORIENT;;Place Pie 84000 Avignon;29275;[1.607115, 50.694554];;FRGLYELYON1321;FR*SOD*E*UNIB*27*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.64893365;44.286754;;Beaupréau-en-Mauges;; +;;;;;;;;FRURWPUNIB35231;FRIENE004901;Dijon Sud;;1 rue des Charmilles 89000 Auxerre;29297;[5.109707, 47.032073];;FRGLYELYON1322;FR*SOD*E*UNIB*27*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.401718;47.103448;;Bécon-les-Granits;; +;;;;;;;;FRURWPUNIB35251;FRCPIE6726665;CGED CGED ALBI;;Parking Saint-Martin les Saint-Marien 89000 Auxerre;29237;[0.64893365, 47.51457851];;FRGLYELYON1412;FR*SOD*E*UNIB*27*6*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.789972;45.459204;;Bégrolles-en-Mauges;; +;;;;;;;;FRURWPUNIB35211;FRCPIE6761165;CGED CGED SIX-FOURS;;Parking des quais 89000 Auxerre;29109;[4.401718, 45.459377];;FRGLYELYON811;FR*SOD*E*UNIB*27*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.580008;47.10072025;;Bouchemaine;; +;;;;;;;;FRURWPUNIB33141;FRS28E13482;CGED BEAUVAIS;;Boulevard Gouraud 89000 Auxerre;29028;[0.789972, 46.973452];;FRGLYELYON721;FR*SOD*E*UNIB*27*5*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.091241;47.210396;;Brain-sur-Allonnes;; +;;;;;;;;FRURWPUNIB34101;FRCPIE6737325;CGED SENS;;88 village de Quelvezin 56340 Carnac;29293;[1.580008, 48.468782];;FRGLYELYON722;FR*SOD*E*UNIB*30*5*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.730784;48.113313;;Briollay;; +;;;;;;;;FRURWPUNIB33131;FRCPIE6737345;U EXPRESS STJEAN-DE-VEDAS;;17 Rue Vauban 67450 Mundolsheim;29260;[3.091241, 50.677842];;FRGLYELYON711;FR*SOD*E*UNIB*27*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.433205;48.690167;;Beaufort-en-Anjou;; +;;;;;;;;FRURWPUNIB34171;FRCPIE6737375;SONEPAR CONNECT BRIANCON;;Place De La Gare 68300 Saint-Louis;29263;[-1.730784, 48.108593];;FRGLYELYON512;FR*SOD*E*UNIB*29*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.59375299;43.109537;;Avrillé;; +;;;;;;;;FRURWPUNIB34121;FRIONE46060;LIGNIERES DE TOURAINE 1272;;Place De L'Ancien Hotel De Ville 68330 Huningue;29266;[2.433205, 48.873257];;FRGLYELYON522;FR*SOD*E*UNIB*29*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.105916;44.405234;;Aubigné-sur-Layon;; +;;;;;;;;FRURWPUNIB34131;FRIONE4606;SUPER U ARNAGE SALARIES 1;;Allée Eugène Moser 68680 Kembs;29267;[0.59375299, 47.60272923];;FRGLYELYON411;FR*SOD*E*UNIB*29*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.104915;43.639705;;Baugé-en-Anjou;; +;;;;;;;;FRURWPUNIB34141;FRCPIE6682045;UEXPRESS STE Cé BORNE 1;;Rue De Kembs 68128 Rosenau;29272;[3.105916, 50.391205];;FRGLYELYON421;FR*SOD*E*UNIB*29*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.229096;49.073637;;Loiré;; +;;;;;;;;FRURWPUNIB34111;FRCPIE6726605;CGED CLERMONT;;Rue Du Port 68330 Huningue;29280;[2.104915, 49.027416];;FRGLYELYON412;FR*SOD*E*UNIB*30*11*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.477806;47.600149;;Sarrigné;; +;;;;;;;;FRURWPUNIB34161;FRCPIE6736125;SONEPAR CONNECT CALAIS;;4 Rue De Hegenheim 68220 Buschwiller;29274;[-0.229096, 44.286754];;FRGLYELYON422;FR*SOD*E*UNIB*30*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.401525;46.72097;;Saumur;; +;;;;;;;;FRURWPUNIB35241;FRCPIE6736215;IRVE CAGPS MAGELLAN 3;;Rue Du Marechal Joffre 68330 Huningue;29284;[0.477806, 47.103448];;FRGLYELYON312;FR*SOD*E*UNIB*10*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.0139662;47.562823;;Savennières;; +;;;;;;;;FRURWPUNIB34151;FRIONE41030;LOCHES - Place de Verdun - 166912;;9 Rue De Huningue 68300 Saint-Louis;29277;[4.401525, 45.459204];;FRGLYELYON322;FR*SOD*E*LVPR*5*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.48718;47.544659;;Segré-en-Anjou Bleu;; +;;;;;;;;FRURWPUNIB34181;FRCPIE6736705;MAILLE 1277;;Chemin Tafelweg 68150 Sierentz;29291;[1.0139662, 47.10072025];;FRGLYELYON311;FR*SOD*E*LVPR*2*18*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.587558;43.421307;;La Séguinière;; +;;;;;;;;FRURWPUNIB35191;FRCPIE6736485;SONEPAR CONNECT VILLFRANCHE SS;;Pont Du Palmrain 68128 Village-Neuf;29176;[-1.48718, 47.210396];;FRGLYELYON321;FR*SOD*E*LVPR*2*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.229205;47.565669;;Saint-Melaine-sur-Aubance;; +;;;;;;;;FRURWPUNIB35151;FRS18E20717;LOUESTAULT 1275;;Rue De La Gare 68870 Bartenheim;29177;[-1.587558, 48.113313];;FRGLYELYON221;FR*SOD*E*LVPR*2*10*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.108717;46.90976;;Seiches-sur-le-Loir;; +;;;;;;;;FRURWPUNIB35221;FRS18E18833;SONEPAR DIEPPE;;Parking General Cassagnou 68300 Saint-Louis;29178;[2.229205, 48.690167];;FRGLYELYON212;FR*SOD*E*LVPR*2*9*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.187245;46.16987;;Val-du-Layon;; +;;;;;;;;FRURWPUNIB35281;FRS37E1675;REIGNAC SUR INDRE 1299;;17 Rue Théo Bachmann 68300 Saint-Louis;29179;[6.108717, 43.109537];;FRGLYELYON211;FR*SOD*E*LVPR*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.978652;49.281413;;Saint-Lambert-la-Potherie;; +;;;;;;;;FRURWPUNIB3181;FRS18E20781;SONELOG CESTAS 10;;1 Rue Du Bon Coin 68220 Hesingue;29182;[0.187245, 44.405234];;FRGLYELYON222;FR*SOD*E*LVPR*2*20*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.790058;48.26436754;;Saint-Léger-de-Linières;; +;;;;;;;;FRURWPUNIB3042;FRIONE4103;SONEPAR CCF MAUGUIO;;Rue De Bourgfelden 68220 Hegenheim;29183;[6.978652, 43.639705];;FRGLYELYON112;FR*SOD*E*LVPR*2*6*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.549262;43.658837;;Saint-Léger-sous-Cholet;; +;;;;;;;;FRURWPUNIB2022;FRCPIE6736785;POCE SUR CISSE 1298 - Clos du Potager;;Rue Du Ballon 68300 Saint-Louis;29224;[4.790058, 49.073637];;FRGLYELYON121;FR*SOD*E*LVPR*2*5*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.50502;46.169875;;Sèvremoine;; +;;;;;;;;FRURWPUNIB3011;FRS41E11772;SONELOG CESTAS 04;;579 Route De Nîmes 30220 Aigues-Mortes;29184;[7.549262, 47.600149];;FRGLYELYON122;FR*SOD*E*LVPR*2*13*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.457725;43.549941;;Saint-Martin-du-Fouilloux;; +;;;;;;;;FRURWPUNIB2421;FRS18E18147;SONEPAR CONNECT BOULOGNE;;Zone Industrielle Eygreteau 33230 Coutras;29185;[2.50502, 46.72097];;FRGLYELYON111;FR*SOD*E*LVPR*2*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.887593;49.061637;;Loire-Authion;; +;;;;;;;;FRURWPUNIB2411;FRCPIE6637895;Glanon;;Rue De Metz 57660 Lixing-lès-Saint-Avold;29186;[1.457725, 47.562823];;FRGLYELYON611;FR*SOD*E*LVPR*2*13*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.162406;48.070716;;Varennes-sur-Loire;; +;;;;;;;;FRURWPUNIB2412;FRCPIE6637885;ROUZIERS DE TOURAINE 1300;;1 Chemin du Coucheux 88100 Saint-Dié-des-Vosges;29188;[0.887593, 47.544659];;FRGLYELYON622;FR*SOD*E*LVPR*2*14*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.836453;43.529309;;Varrains;; +;;;;;;;;FRURWPUNIB2422;FRCPIE6634505;CGED ST-ETIENNE 2;;2 Quai du Maréchal Leclerc 88100 Saint-Dié-des-Vosges;29190;[3.162406, 43.421307];;FRGLYELYON621;FR*SOD*E*LVPR*2*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.85359;48.974923;;Vaudelnay;; +;;;;;;;;FRURWPUNIB2512;FRS18E18239;NEUILLY LE BRIGNON 1289;;1 rue des Capucins 88100 Saint-Dié-des-Vosges;29175;[2.836453, 47.565669];;FRGLYELYON612;FR*SOD*E*LVPR*2*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.315979;48.317543;;Erdre-en-Anjou;; +;;;;;;;;FRURWPUNIB2522;FRS18E20600;Chartres Gasville;;Place de l'Hôtel de Ville 88200 Saint-Étienne-lès-Remiremont;29191;[-0.85359, 46.90976];;FRGLYELYON712;FR*SOD*E*LVPR*2*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.832382;48.2765;;Vernantes;; +;;;;;;;;FRURWPUNIB2521;FRCPIE6609935;BORNE MARCQ MARCQ;;Rue Jean-Baptiste Lamarck 43700 Saint-Germain-Laprade;29160;[6.315979, 46.16987];;FRGLYELYON1421;FR*SOD*E*LVPR*2*19*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.72181146;50.984165;;Lys-Haut-Layon;; +;;;;;;;;FRURWPUNIB2511;FRS18E15093;SODIS-RENNES BORNE 1;;Rue Des Aros 38680 Saint-Just-de-Claix;29161;[1.832382, 49.281413];;FRGLYELYON1422;FR*SOD*E*LVPR*2*20*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.346573;43.658268;;Rives-du-Loir-en-Anjou;; +;;;;;;;;FRURWPUNIB2612;FRCPIE6609545;SONEPAR CONNECT BAGNOLET;;40 rue des Jardins 88650 Saint-Léonard;29162;[2.72181146, 48.26436754];;FRGLYELYON1411;FR*SOD*E*LVPR*2*9*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.315442;45.634283;;Vivy;; +;;;;;;;;FRURWPUNIB2622;FRS18E14751;NEUVY LE ROI 1291;;Rue du Général Rampont 57560 Abreschviller;29163;[1.346573, 43.658837];;FRGLYELYON2111;FR*SOD*E*LVPR*2*15*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.182904;43.1782826;;Yzernay;; +;;;;;;;;FRURWPUNIB2611;FRS28E13098;CGED DOUAI;;9 chemin d'Imling 57400 Sarrebourg;29165;[6.315442, 46.169875];;FRGLYELYON2222;FR*SOD*E*LVPR*2*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.432414;48.04599;;Soulaines-sur-Aubance;; +;;;;;;;;FRURWPUNIB2621;FRS18E10905;SONEPAR CONNECT ERAGNY;;Etang du Stock 57400 Langatte;29167;[5.182904, 43.549941];;FRGLYELYON2212;FR*SOD*E*LVPR*2*8*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.328964;48.307361;;Soulaire-et-Bourg;; +;;;;;;;;FRURWPUNIB2711;FRS37E11783;Cœur d'Aquitaine;;Parking, Place des Cordeliers 57400 Sarrebourg;29169;[1.432414, 49.061637];;FRGLYELYON2221;FR*SOD*E*LVPR*1*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.150044;48.594147;;La Tessoualle;; +;;;;;;;;FRURWPUNIB2742;FRS37E11782;PARCAY SUR VIENNE 1295;;Place de la Gare 57445 Réding;29170;[1.328964, 48.070716];;FRGLYELYON2211;FR*SOD*E*LVPR*1*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.064557;48.0297;;Bellevigne-en-Layon;; +;;;;;;;;FRURWPUNIB2714;FRS18E17930;CGED ST-ETIENNE 1;;Avenue Thomas Bata 57770 Moussey;29171;[-1.150044, 43.529309];;FRGLYELYON2321;FR*SOD*E*LVPR*1*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.581239;45.56295;;Tiercé;; +;;;;;;;;FRURWPUNIB2311;FRS18E11307;PERRUSSON 1296;;Rue de la Division Leclerc 57400 Sarrebourg;29172;[7.064557, 48.974923];;FRGLYELYON2312;FR*SOD*E*LVPR*1*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.632298;45.562744;;Trémentines;; +;;;;;;;;FRURWPUNIB2312;FRCPIE6736395;PROTHEOS STATION 1;;Rue de la Faïencerie 57565 Niderviller;29173;[5.581239, 48.317543];;FRGLYELYON2322;FR*SOD*E*LVPR*1*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.122851;45.610095;;La Ménitré;; +;;;;;;;;FRURWPUNIB2221;FRCPIE6736355;ALIZES BORNE 1;;60 rue de la Gare 88650 Saint-Léonard;29174;[1.632298, 48.2765];;FRGLYELYON2311;FR*SOD*E*LVPR*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.346915;46.547078;;Montreuil-Juigné;; +;;;;;;;;FRURWPUNIB2122;FRCPIE6736325;SONEPAR CONNECT VILLEBON;;D45 57870 Plaine-de-Walsch;29210;[2.122851, 50.984165];;FRGLYELYON2411;FR*SOD*E*LVPR*1*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.371323;48.591983;;Montreuil-Bellay;; +;;;;;;;;FRURWPUNIB2011;FRS28E13441;SONEPAR CONNECT HYERES;;18 Place De La Gare 57400 Sarrebourg;29213;[1.346915, 43.658268];;FRGLYELYON2412;FR*SOD*E*LVPR*2*12*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5437517;47.069203;;Morannes sur Sarthe-Daumeray;; +;;;;;;;;FRURWPUNIB35261;FRS18E20309;Le Mas-d'Agenais | A62, Aire de Mas d'Agenais;;Rue des Vosges 57790 Lorquin;29215;[4.371323, 45.634283];;FRGLYELYON2422;FR*SOD*E*LVPR*2*12*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5813;47.270106;;Mouliherne;; +;;;;;;;;FRURWPUNIB2012;FRCPIE6736765;SUPER U SUPER U 1;;6 Rue de Bièvre 57870 Troisfontaines;29216;[2.5437517, 43.1782826];;FRGLYELYON2421;FR*SOD*E*LVPR*2*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.383636;47.819899;;Mozé-sur-Louet;; +;;;;;;;;FRURWPUNIB2031;FRCPIE6736465;Aire de Valmy Le Moulin;;Boulevard du Franc 36250 Saint-Maur;29217;[6.5813, 48.04599];;FRGLYELYON2511;FR*SOD*E*LVPR*2*17*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.677737;43.59198274;;Noyant-Villages;; +;;;;;;;;FRURWPUNIB2112;FRIONE40280;SONEPAR SAINT-LOUIS;;35 route de Ville-en-Vermois 54210 Saint-Nicolas-de-Port;29218;[6.383636, 48.307361];;FRGLYELYON2512;FR*SOD*E*LVPR*2*10*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.96886;47.834549;;Longuenée-en-Anjou;; +;;;;;;;;FRURWPUNIB2121;FRIONE4028;St AMAND-MONTROND - Cours Manuel - 112836;;25 Rue De La Colonne 85260 Montréverd;29193;[1.677737, 48.594147];;FRGLYELYON2522;FR*SOD*E*LVPR*2*7*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.966089;46.701209;;Le Lion-d'Angers;; +;;;;;;;;FRURWPUNIB2111;FRIENE007901;MONT PRES CHAMBORD 4434 - Rue de l'hotel de ville;;Rue du Marché Gare 67200 Strasbourg;29220;[5.96886, 48.0297];;FRGLYELYON2521;FR*SOD*E*LVPR*2*16*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.966165;45.238924;;Val d'Erdre-Auxence;; +;;;;;;;;FRURWPUNIB2232;FRIENE007902;VILLEDOMER 4348 - Parking rue du Lavoir;;20 Route De San-Martino 20200 San-Martino-di-Lota;29221;[5.966089, 45.56295];;FRGLYELYON2612;FR*SOD*E*LVPR*2*14*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.598651;48.530831;;Maulévrier;; +;;;;;;;;FRURWPUNIB2222;FRS28E13417;BORNES U TECHNO BORNE 2;;RN 193, Lieu-dit Accendi Pipa, 20252 Campitello;29209;[5.966165, 45.562744];;FRGLYELYON2622;FR*SOD*E*LVPR*2*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.346737;45.165133;;Le May-sur-Èvre;; +;;;;;;;;FRURWPUNIB2242;FRCPIE6742035;CHAMPADIS BORNE 1;;Lieu dit Baccario - route de Calvi 20218 Morosaglia;29199;[-0.598651, 45.610095];;FRGLYELYON2621;FR*SOD*E*LVPR*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.676055;49.217693;;Mazé-Milon;; +;;;;;;;;FRURWPUNIB2231;FRS41E380;LA BENETIERE BORNE 1;;Rue de Saint-Avold 57890 Porcelette;29195;[2.346737, 46.547078];;FRGLYELYON2611;FR*SOD*E*LVPR*2*16*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.375201;47.955226;;Saint-Clément-de-la-Place;; +;;;;;;;;FRURWPUNIB2212;FRCPIE6742055;MENODIS BORNE 8;;931 Boulevard De L'industrie 33260 La Teste-de-Buch;29196;[1.676055, 48.591983];;FRGLYELYON2722;FR*SOD*E*LVPR*4*5*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.774085;48.361737;;La Romagne;; +;;;;;;;;FRURWPUNIB2241;FRS41E16761;Trie-la-Ville;;360 Avenue Des Etats - Unis 31200 Toulouse;29197;[2.375201, 47.069203];;FRGLYELYON2721;FR*SOD*E*LVPR*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.68091;49.885189;;Gennes-Val-de-Loire;; +;;;;;;;;FRURWPUNIB2211;FRS28E13734;Darvault;;08 Route De Sablé 53200 Château-Gontier-sur-Mayenne;29198;[-1.774085, 47.270106];;FRGLYELYON2712;FR*SOD*E*LVPR*4*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.03652099;49.288572;;Saint-Christophe-du-Bois;; +;;;;;;;;FRURWPUNIB2722;FRIENE005601;ULIET ULIET 1;;43 Rue Du Maréchal Foch 65000 Tarbes;29204;[1.68091, 47.819899];;FRGLYELYON2122;FR*SOD*E*LVPR*4*9*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.357699;49.869541;;Sainte-Gemmes-sur-Loire;; +;;;;;;;;FRURWPUNIB2724;FRIENE005602;MENODIS BORNE 5;;83 Boulevard Godard 33110 Le Bouscat;29206;[7.03652099, 43.59198274];;FRGLYELYON2121;FR*SOD*E*LVPR*4*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.430753;49.209799;;Saint-Georges-sur-Loire;; +;;;;;;;;FRURWPUNIB2751;FRIONE45160;LFO BORNE 2;;des Agglomérés 92000 Nanterre;29208;[-0.357699, 47.834549];;FRGLYELYON1511;FR*SOD*E*LVPR*4*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.81642;48.95182009;;Saint-Germain-des-Prés;; +;;;;;;;;FRURWPUNIB3061;FRFASE330280;RAW PARISGIVERNY 55;;7 Rue Artzamendi 64250 Cambo-les-Bains;29207;[-1.430753, 46.701209];;FRGLYELYON2112;FR*SOD*E*LVPR*4*8*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.012698;49.218544;;Rochefort-sur-Loire;; +;;;;;;;;FRURWPUNIB30101;FRIONE4053;CHATEAUDUN - Place du 18 Octobre - 127476;;222 Rue Etienne Lenoir 67200 Nîmes;44026;[5.81642, 45.238924];;FRGLYELYON1512;FR*SOD*E*LVPR*4*6*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.767761;48.1272092;;Le Plessis-Grammoire;; +;;;;;;;;FRURWPUNIB3022;FRCPIE6712645;Hastingues Nord;;RN152 45190 Tavers;80149;[-2.012698, 48.530831];;FRGLYELYON1522;FR*SOD*E*LVPR*5*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.998884;49.482685;;Mauges-sur-Loire;; +;;;;;;;;FRURWPUNIB3062;FRCPIE6654305;Aire de Keskastel-Ouest;;Rue Gallet 45130 Meung-sur-Loire;74250;[5.767761, 45.165133];;FRGLYELYON1521;FR*SOD*E*LVPR*5*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.559775;49.215116;;Ombrée d'Anjou;; +;;;;;;;;FRURWPUNIB3041;FRSHEE79;LIFFOL - Rue de l'Orme - 163471 - CCS;;La Planche 25770 Franois;30284;[3.998884, 49.217693];;FRGLYELYON1611;FR*SOD*E*LVPR*4*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.624104;46.451625;;La Possonnière;; +;;;;;;;;FRURWPUNIB3081;FRSHEE80;VOVES - Piscine - 126260;;ZAC Actipolis 1 - Parking P+R 62232 Fouquières-lès-Béthune;07128;[-0.559775, 47.955226];;FRGLYELYON1621;FR*SOD*E*LVPR*5*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.738553;45.74851;;Haute-Goulaine;; +;;;;;;;;FRURWPUNIB30102;FRIONE4380;BIOPATH HDF GRAVELINES;;26 Rue De Villons Les Buissons 14000 Caen;71306;[6.624104, 48.361737];;FRGLYELYON1612;FR*SOD*E*LVPR*5*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.814135;44.171306;;Héric;; +;;;;;;;;FRURWPUNIB3091;FRS37E761;DAHERTLS CORLOG 6;;D909E 95270 Asnières-sur-Oise;84092;[4.738553, 49.885189];;FRGLYELYON1622;FR*SOD*E*LVPR*4*9*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.427569;49.312189;;Herbignac;; +;;;;;;;;FRURWPUNIB3031;FRS08E12923;Chazelles sur Lyon;;19 Avenue Gay Lussac 66160 Le Boulou;62334;[3.814135, 49.288572];;FRGLYELYON1722;FR*SOD*E*LVPR*4*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.35969;45.140801;;Issé;; +;;;;;;;;FRURWPUNIB3092;FRS37E773;Corbières Nord;;15 Rue Saint-Christophe 25480 École-Valentin;62743;[4.427569, 49.869541];;FRGLYELYON1711;FR*SOD*E*LVPR*4*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.36394976;49.526756;;Joué-sur-Erdre;; +;;;;;;;;FRURWPUNIB3051;FRS28E13090;ST NABORD-rue de la croix st Jacques-150258-CCS;;Rue des Champs 57890 Diesen;62009;[-0.35969, 49.209799];;FRGLYELYON1712;FR*SOD*E*LVPR*4*7*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.996112;49.924518;;Le Landreau;; +;;;;;;;;FRURWPUNIB3071;FRIONE43800;NOMEXY-rue sœur Sidonie-150251-CCS;;Rue de la Gare 57730 Valmont;71204;[4.36394976, 48.95182009];;FRGLYELYON1721;FR*SOD*E*LVPR*4*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.23960961;45.8923;;Legé;; +;;;;;;;;FRURWPUNIB3082;FRIONE41250;Hanches;;Rue de la Mairie 57730 Valmont;78092;[3.996112, 49.218544];;FRGLYELYON1812;FR*SOD*E*LVPR*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.014127;49.828116;;Fégréac;; +;;;;;;;;FRURWPUNIB3072;FRS18E20534;MONTHUREUX SUR SAONE - 161826 - CCS;;Rue d'Usson du Poitou 57730 Folschviller;67495;[-1.23960961, 48.1272092];;FRGLYELYON1811;FR*SOD*E*LVPR*4*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.171845;49.858676;;La Haie-Fouassière;; +;;;;;;;;FRURWPUNIB3021;FRS18E18620;SUPER GRANIER BORNE 5;;Route de Carling 57500 Saint-Avold;78068;[1.014127, 49.482685];;FRGLYELYON1821;FR*SOD*E*LVPR*2*11*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.017597;46.751937;;Ligné;; +;;;;;;;;FRURWPUNIB30111;FRS18E20197;SUPER GRANIER BORNE 2;;Rue de l'Europort 57500 Saint-Avold;23060;[6.171845, 49.215116];;FRGLYELYON1822;FR*SOD*E*LVPR*3*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.862591;47.665885;;Frossay;; +;;;;;;;;FRURWPUNIB3012;FRS18E14720;Saint Léger Est;;Avenue De L'étang 57500 Saint-Avold;26313;[-0.017597, 46.451625];;FRGLYELYON1912;FR*SOD*E*LVPR*2*18*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.60966;49.873325;;Le Gâvre;; +;;;;;;;;FRURWPUNIB2723;FRCPIE6632585;CULAN - Champ de foire - 148765;;Place du Marché 57500 Saint-Avold;72020;[4.862591, 45.74851];;FRGLYELYON1921;FR*SOD*E*LVPR*2*15*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.708943;43.658878;;Gétigné;; +;;;;;;;;FRURWPUNIB2761;FRS18E20638;HYPER U HANCHES RETAIL 5;;Rue de la Gare 57490 L'Hôpital;67205;[0.60966, 44.171306];;FRGLYELYON1911;FR*SOD*E*LVPR*2*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.300302;48.5387872;;Gorges;; +;;;;;;;;FRURWPUNIB2713;FRCPIE6695555;BOURGES - Lautier - 107000;;Rue de la Frontière 57490 Carling;08341;[4.708943, 49.312189];;FRGLYELYON1922;FR*SOD*E*LVPR*2*11*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.782989;49.513165;;Grandchamp-des-Fontaines;; +;;;;;;;;FRURWPUNIB2731;FRIONE4125;SUPER U SEM BORNE 2;;Rue Des Poulies 45240 La Ferté-Saint-Aubin;38315;[5.300302, 45.140801];;FRGLYELYON2012;FR*SOD*E*LVPR*2*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.520988;49.870549;;Guémené-Penfao;; +;;;;;;;;FRURWPUNIB2721;FRS18E20641;BORNE U BORNE PUBLIQUE4;;550 Boulevard Sébastien Brant 67400 Illkirch-Graffenstaden;14201;[4.782989, 49.526756];;FRGLYELYON2011;FR*SOD*E*LVPR*2*17*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.60405;49.354924;;Guenrouet;; +;;;;;;;;FRURWPUNIB2712;FRS18E15033;Bréguières Nord;;910 Mas de Gentil 34980 Combaillaux;07129;[4.520988, 49.924518];;FRGLYELYON2021;FR*SOD*E*LVPR*2*19*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.625257;49.883542;;Guérande;; +;;;;;;;;FRURWPUNIB2762;FRS28E13938;Sablé-sur-Sarthe;;23 Chemin de l'Armée d'Afrique 13005 Marseille;34111;[-0.60405, 45.8923];;FRGLYELYON2022;FR*SOD*E*LVPR*3*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.744732;49.474329;;Moisdon-la-Rivière;; +;;;;;;;;FRURWPUNIB2732;FRS28E13969;La Roche sur Yon;;Chemin de la Fossella 66100 Perpignan;42312;[4.625257, 49.828116];;FRGLYELYON5522;FR*SOD*E*LVPR*3*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.417075;49.074974;;Nort-sur-Erdre;; +;;;;;;;;FRURWPUNIB2752;FRS18E18657;SUPER U BIVIERS BORNE 1;;21 rue de la Grande Armée, Willer-sur-Thur 68760 Willer-sur-Thur;44015;[4.744732, 49.858676];;FRGLYELYON3221;FR*SOD*E*LVPR*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.387757;49.698213;;Montoir-de-Bretagne;; +;;;;;;;;FRURWPUNIB3052;FRS18E18658;Plouer sur Rance;;19 Rue D'anjou 76240 Le Mesnil-Esnard;42299;[2.417075, 46.751937];;FRGLYELYON5521;FR*SOD*E*LVPR*3*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.599876;48.768588;;Les Moutiers-en-Retz;; +;;;;;;;;FRURWPUNIB2741;FRCPIE6736415;SONEPAR AED ST-M.HERES;;5 route de l'Aviation 54600 Villers-lès-Nancy;79264;[1.387757, 47.665885];;FRGLYELYON7831;FR*SOD*E*LVPR*3*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.3467;49.890051;;Mouzeil;; +;;;;;;;;FRURWPUNIB2921;FRIONE4594;BEZANNES -1 - Pkg Louis Victor de Broglie - 49675;;60 Rue Du Drouillard 44620 La Montagne;09306;[4.599876, 49.873325];;FRGLYELYON7521;FR*SOD*E*LVPR*3*8*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.7179736;49.841842;;Mouzillon;; +;;;;;;;;FRURWPUNIB2931;FRIONE45940;SUPER U MESLAY BORNE 2;;80 Rue André Vitu 88000 Épinal;07064;[1.3467, 43.658878];;FRGLYELYON7531;FR*SOD*E*LVPR*3*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.763445;49.851378;;Notre-Dame-des-Landes;; +;;;;;;;;FRURWPUNIB2911;FRIONE45161;Rambervilliers;;1000 Avenue De L'europe 82000 Montauban;67320;[7.7179736, 48.5387872];;FRGLYELYON7611;FR*SOD*E*LVPR*3*7*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.806857;46.319259;;Oudon;; +;;;;;;;;FRURWPUNIB2941;FRIONE4516;08 MONTHERMÉ - Pl Jean Batiste Clément - DC 57541;;1 Place De L'église 63410 Charbonnières-les-Vieilles;71394;[4.763445, 49.513165];;FRGLYELYON7631;FR*SOD*E*LVPR*3*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.499447;49.788094;;Paimbœuf;; +;;;;;;;;FRURWPUNIB30112;FRS37E905;JONCHERY-SUR-VESLE;;Grande Rue 89100 Gron;2B220;[4.806857, 49.870549];;FRGLYELYON7621;FR*SOD*E*LVPR*1*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.842865;43.285628;;Fay-de-Bretagne;; +;;;;;;;;FRURWPUNIB3032;FRS28E13450;08 MAUBERT FONTAINE - 50 route d'hirson - DC 57529;;14 rue Lobineau 75006 Paris;71470;[4.499447, 49.354924];;FRGLYELYON7641;FR*SOD*E*LVPR*6*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.578276;49.838277;;La Limouzinière;; +;;;;;;;;FRURWPUNIB1021;FRCPIE6664735;BORNE ICEP STATION 01;;Route De Sélestat 67600 Kintzheim;84044;[4.842865, 49.883542];;FRGLYELYON7711;FR*SOD*E*LVPR*5*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.103798;49.395875;;Malville;; +;;;;;;;;FROTHPLVPR542;FRS28E12990;CHALONS EN CHAMPAGNE - Pkg Vaubecourt - 125306;;Avenue De Quentovic 62520 Le Touquet-Paris-Plage;01004;[4.578276, 49.474329];;FRGLYELYON7721;FR*SOD*E*LVPR*6*7*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.419153;49.903185;;Le Loroux-Bottereau;; +;;;;;;;;FROTHPLVPR2182;FRCPIE6665275;BEZANNES -2 - 49689 - Pkg Louis Victor de Broglie;;Place Edouard Vii 62520 Le Touquet-Paris-Plage;53096;[6.103798, 49.074974];;FRGLYELYON7741;FR*SOD*E*LVPR*6*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.167409;49.523656;;Machecoul-Saint-Même;; +;;;;;;;;FROTHPLVPR221;FRCPIE6610465;Vitré;;Avenue De L'hippodrome 62520 Le Touquet-Paris-Plage;53084;[4.419153, 49.698213];;FRGLYELYON7731;FR*SOD*E*LVPR*6*5*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.626666;47.216809;;Maisdon-sur-Sèvre;; +;;;;;;;;FROTHPLVPR2101;FRCPIE6610485;SONEPAR VAUPALIERE 1;;3 Rue Pierre Clostermann 68730 Blotzheim;53100;[5.167409, 48.768588];;FRGLYELYON7821;FR*SOD*E*LVPR*6*8*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.539584;45.577663;;Marsac-sur-Don;; +;;;;;;;;FROTHPLVPR292;FRCPIE6616535;Hauconcourt;;12 quai des Salinières 33000 Bordeaux;53077;[4.626666, 49.890051];;FRGLYELYON8121;FR*SOD*E*LVPR*6*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.765891;45.660712;;Montbert;; +;;;;;;;;FROTHPLVPR211;FRCPIE6642765;Rouille Sud;;44 Vieux Chemin De Sélestat 67730 Châtenois;53062;[4.539584, 49.841842];;FRGLYELYON7841;FR*SOD*E*LVPR*6*6*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.955605;50.571808;;Mésanger;; +;;;;;;;;FROTHPLVPR2202;FRIONE42160;ALPTIS 25CAT PARC 37 38;;52 quai du Lazaret 13002 Marseille;53103;[4.765891, 49.851378];;FRGLYELYON7811;FR*SOD*E*LVPR*6*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.49431;47.109985;;Mesquer;; +;;;;;;;;FROTHPLVPR262;FRIONE4216;Agen;;Rue de Lorraine 67730 Châtenois;53107;[2.955605, 46.319259];;FRGLYELYON7911;FR*SOD*E*LVPR*5*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.599154;45.488418;;Missillac;; +;;;;;;;;FROTHPLVPR252;FRCPIE6741095;08 MONTHOIS - Place de la mairie - DC 57716;;Parking, 21000 Dijon 21000 Dijon;53110;[4.49431, 49.788094];;FRGLYELYON7941;FR*SOD*E*MB87*25*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.603013;47.084091;;La Chapelle-Glain;; +;;;;;;;;FROTHPLVPR2131;FRS51E4081;SONEPAR CHATTE;;3 Avenue Marcel Perrin 95540 Méry-sur-Oise;53121;[5.599154, 43.285628];;FRGLYELYON7931;FR*SOD*E*MB87*24*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.699761;49.400247;;La Baule-Escoublac;; +;;;;;;;;FROTHPLVPR241;FRS51E4090;BAIRON - 57547 - Lac Bairon;;Route De Lyons 27790 Rosay-sur-Lieure;53122;[4.603013, 49.838277];;FRGLYELYON7921;FR*SOD*E*MB87*24*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.279186;49.395725;;La Chapelle-des-Marais;; +;;;;;;;;FROTHPLVPR2132;FRS51E4089;ROCROI - Rue Noël Champagne - DC 57693;;Chemin D'écoublay 77610 Fontenay-Trésigny;53123;[4.699761, 49.395875];;FRGLYELYON8021;FR*SOD*E*MB87*25*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4738;48.962298;;Villeneuve-en-Retz;; +;;;;;;;;FROTHPLVPR2142;FRIONE4102;Shell Fenioux Est;;3 rue Saint-Martial 45110 Châteauneuf-sur-Loire;53127;[4.279186, 49.903185];;FRGLYELYON8041;FR*SOD*E*MB87*34*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.001847;49.601797;;Boussay;; +;;;;;;;;FROTHPLVPR231;FRIONE41020;MONTCORNET DC;;15 Rue du Château 37340 Gizeux;53054;[4.4738, 49.523656];;FRGLYELYON8031;FR*SOD*E*MB87*23*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.630208;47.999847;;Bouvron;; +;;;;;;;;FROTHPLVPR261;FRS51E4086;08 BOGNY SUR MEUSE - Air camping car - DC 57722;;6 place d'Armes Général de Gaulle 68600 Neuf-Brisach;53017;[5.001847, 47.216809];;FRGLYELYON8011;FR*SOD*E*MB87*26*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.852213;43.456556;;Casson;; +;;;;;;;;FROTHPLVPR222;FRS51E4080;Centre de la France;;51 Route De Jasseron 01250 Ceyzériat;53001;[5.630208, 45.577663];;FRGLYELYON7511;FR*SOD*E*MB87*27*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.378795;43.593944;;Le Cellier;; +;;;;;;;;FROTHPLVPR2192;FRS28E13738;Blois Villerbon;;3 Parc Des Lizardais 35390 Grand-Fougeray;53003;[5.852213, 45.660712];;FRGLYELYON7541;FR*SOD*E*MB87*23*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.577555;45.406247;;Divatte-sur-Loire;; +;;;;;;;;FROTHPLVPR2201;FRS28E20381;08 LES MAZURES Congrés DC 57726;;1 Rue Jean Segurel 87150 Oradour-sur-Vayres;53007;[2.378795, 50.571808];;FRGLYELYON7431;FR*SOD*E*MB87*20*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.82163;44.004164;;Le Bignon;; +;;;;;;;;FROTHPLVPR291;FRS28E20380;ULIET ULIET 3;;Lieu dit Aérodrome de Mende-Brenoux 48000 Mende;53014;[0.577555, 47.109985];;FRGLYELYON7441;FR*SOD*E*MB87*22*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.390318;47.081187;;Besné;; +;;;;;;;;FROTHPLVPR2151;FRCPIE6698905;Shell Aire de Ostwald HW;;10 rue Jean-Baptiste Pigalle 75009 Paris;53015;[4.82163, 45.488418];;FRGLYELYON6722;FR*SOD*E*MB87*22*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.70136;46.701836;;Abbaretz;; +;;;;;;;;FROTHPLVPR271;FRN54E18749;BAIRON ET SES ENVIRONS - Lac Bairon - DC 57547;;1 Place De La Mairie 68190 Ungersheim;53016;[2.390318, 47.084091];;FRGLYELYON6712;FR*SOD*E*MB87*21*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.383278;48.990975;;Aigrefeuille-sur-Maine;; +;;;;;;;;FROTHPLVPR282;FRS37E5626;08 THILAY - Couture d'en bas - DC 57612;;29 Rue D'ensisheim 68190 Ungersheim;53018;[4.70136, 49.400247];;FRGLYELYON6812;FR*SOD*E*MB87*21*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.39614;47.565651;;Chaumes-en-Retz;; +;;;;;;;;FROTHPLVPR131;FRS37E1969;08 MACHAULT - Place de la mairie - DC 57608;;All. des Stades Universitaires Dijon 21000;53025;[4.383278, 49.395725];;FRGLYELYON6811;FR*SOD*E*MB87*28*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.957174;50.548681;;Assérac;; +;;;;;;;;FROTHPLVPR132;FRS37E1967;08 LES HAUTES RIVIERES-pl de la mairie DC 57604;;22 allée Alan Turing 63000 Clermont-Ferrand;53037;[2.39614, 48.962298];;FRGLYELYON6821;FR*SOD*E*MB87*20*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.642625;47.6033841;;Avessac;; +;;;;;;;;FROTHPLVPR112;FRS28E13941;ATTIGNY DC;;2 Place de la Bourse 33000 Bordeaux;53181;[4.957174, 49.601797];;FRGLYELYON6822;FR*SOD*E*MB87*19*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.852069;49.25696;;Batz-sur-Mer;; +;;;;;;;;FROTHPLVPR142;FRS37E125;MDF MOBILIER FRANCE;;1 Avenue De La Source De La Bièvre 78180 Montigny-le-Bretonneux;53210;[6.642625, 47.999847];;FRGLYELYON6922;FR*SOD*E*MB87*27*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.996295;47.43294;;La Bernerie-en-Retz;; +;;;;;;;;FROTHPLVPR141;FRS08E14422;SIGNY L ABBAYE - Plave Aristide Briand - 57592;;33 Avenue Foch 19400 Argentat;53188;[5.852069, 43.456556];;FRGLYELYON6911;FR*SOD*E*MB87*30*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8160508;43.209029;;Le Pallet;; +;;;;;;;;FROTHPLVPR111;FRIENE006202;BAR LE DUC - 81267 - Cinéma;;Z.I. rue de la Jontière 57255 Sainte-Marie-aux-Chênes;53185;[4.996295, 43.593944];;FRGLYELYON6921;FR*SOD*E*MB87*28*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.702388;49.25696581;;Corsept;; +;;;;;;;;FROTHPLVPR122;FRIENE006201;LES MAZURES - Rue des Hayettes - DC 57615;;2 Place Édouard Moustier 77580 Crécy-la-Chapelle;53161;[4.8160508, 45.406247];;FRGLYELYON6912;FR*SOD*E*MB87*32*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.201718;45.547654;;Couffé;; +;;;;;;;;FROTHPLVPR2122;FRS37E452;RIMOGNE- Rue de la Gare - 57623;;N2002 97412 Bras-Panon;53147;[4.702388, 44.004164];;FRGLYELYON7012;FR*SOD*E*MB87*39*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.371119;49.249946;;Le Croisic;; +;;;;;;;;FROTHPLVPR2121;FRIENE003302;08 BOGNY SUR MEUSE - Place Danton - DC- 57637;;4e Rue Des Pêcheurs 97441 Sainte-Suzanne;53154;[2.201718, 47.081187];;FRGLYELYON7011;FR*SOD*E*MB87*34*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.517406;48.536616;;Crossac;; +;;;;;;;;FROTHPLVPR251;FRIENE003301;HôTEL DE FRANCE BORNE 1;;41 Boulevard Lacaussade 97400 Saint-Denis;53152;[0.371119, 46.701836];;FRGLYELYON7231;FR*SOD*E*MB87*33*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.836951;44.86543;;Derval;; +;;;;;;;;FROTHPLVPR2171;FRS28E12889;ROUVROY SUR AUDRY - 57687 - Grande Rue;;4f Rue Des Pêcheurs 97441 Sainte-Suzanne;53211;[2.517406, 48.990975];;FRGLYELYON7221;FR*SOD*E*MB87*33*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.053197;46.782642;;Donges;; +;;;;;;;;FROTHPLVPR2102;FRS28E13492;SONEPAR CONNECT AUBAGNE;;Route nationale 2 97441 Ste Suzanne;53243;[2.836951, 47.565651];;FRGLYELYON7241;FR*SOD*E*MB87*33*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.64276092;47.421294;;Drefféac;; +;;;;;;;;FROTHPLVPR272;FRCPIE6643575;RENWEZ -Place de l'Eglise - 57633;;N1 97420 Le Port;53246;[3.053197, 50.548681];;FRGLYELYON7211;FR*SOD*E*MB87*32*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.025925;47.38439695;;Erbray;; +;;;;;;;;FROTHPLVPR2162;FRS51E4098;08 VOUZIERS - rue Gambetta - DC 57629;;Avenue de la Palestine / ZAC Moulin Joli 97419 La Possession;53255;[3.64276092, 47.6033841];;FRGLYELYON7341;FR*SOD*E*MB87*32*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.09677;50.443324;;Cordemais;; +;;;;;;;;FROTHPLVPR2141;FRS51E4092;SIGNY LE PETIT - 57627 - Place de l'église;;2 rue de la Guadeloupe 97490 Sainte-Clotilde;53257;[4.025925, 49.25696];;FRGLYELYON7321;FR*SOD*E*MB87*29*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.315192;47.3794927;;Châteaubriant;; +;;;;;;;;FROTHPLVPR242;FRS41E396;LUCQUY - 57625 - Gare;;Avenue de l'Europe 97430 Le Tampon;53267;[-2.09677, 47.43294];;FRGLYELYON7311;FR*SOD*E*MB87*31*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.03122394;47.36370564;;La Chapelle-Heulin;; +;;;;;;;;FROTHPLVPR212;FRS51E4091;Aire de Gevrey - Chambertin Ouest;;Route du Théâtre 97434 Saint-Gilles les Bains;53271;[2.315192, 43.209029];;FRGLYELYON7331;FR*SOD*E*MB87*31*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.156668;43.867189;;La Chapelle-Launay;; +;;;;;;;;FROTHPLVPR2161;FRS37E135;Aire de Romagnieu;;82 Rue Charles Baudelaire 97430 Le Tampon;53273;[4.03122394, 49.25696581];;FRGLYELYON7421;FR*SOD*E*MB87*31*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.036172;48.984947;;Clisson;; +;;;;;;;;FROTHPLVPR452;FRS28E13425;ATMOSPHERES BORNE;;17, RN1 97410 Pierrefond;53137;[6.156668, 45.547654];;FRGLYELYON8111;FR*SOD*E*MB87*18*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.15479;46.010641;;Château-Thébaud;; +;;;;;;;;FROTHPLVPR511;FRCPIE6741025;Rely;;Avenue Ile de France 97440 Saint-André;53146;[4.036172, 49.249946];;FRGLYELYON8131;FR*SOD*E*MB87*29*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.939949;49.468399;;Chauvé;; +;;;;;;;;FROTHPLVPR461;FRCPIE6726825;NOYANT DE TOURAINE 1293;;N2 97438 Sainte-Marie;53140;[1.15479, 48.536616];;FRGLYELYON511;FR*SOD*E*MB87*19*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.88317;49.584589;;La Chevrolière;; +;;;;;;;;FROTHPLVPR491;FRCPIE6664205;SONEPAR VIENNE;;Rue Léopold Rambaud 97490 Sainte-Clotilde;53136;[4.939949, 44.86543];;FRGLYELYON9021;FR*SOD*E*MB87*18*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.683976;49.651375;;Pornic;; +;;;;;;;;FROTHPLVPR422;FRS41E20050;BOURGES - Place de la Nation - 140281;;Avenue Jean Jaurès 97470 Saint-Benoit;50626;[0.88317, 46.782642];;FRGLYELYON8811;FR*SOD*E*MB87*8*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.67656243;47.260997;;Paulx;; +;;;;;;;;FROTHPLVPR481;FRCPIE6664165;VOUZIERS - 57619 - Rue du Champ de Foire;;Route de Paris 16430 Champniers;49103;[0.683976, 47.421294];;FRGLYELYON5622;FR*SOD*E*MB87*7*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.693481;49.901528;;Saint-Julien-de-Concelles;; +;;;;;;;;FROTHPLVPR482;FRS88E14565;JUNIVILLE - 57595 - Avenue de Quimper;;Thermes, Allée du Parc 66820 Vernet les Bains;49106;[0.67656243, 47.38439695];;FRGLYELYON8821;FR*SOD*E*MB87*6*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.67732483;45.169464;;Sainte-Pazanne;; +;;;;;;;;FROTHPLVPR462;FRS88E14564;BORNE GAZZOLA DEPOT GMT;;45 route du buchel 57100 Thionville;49094;[2.693481, 50.443324];;FRGLYELYON8831;FR*SOD*E*MB87*6*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.6776078;49.252337;;Saint-Père-en-Retz;; +;;;;;;;;FROTHPLVPR522;FRCPIE6689255;RAUCOURT ET FLABA - 57539 - Place de la Halle;;8 rue des Terres Rouges 57100 Thionville-Metzange;49109;[0.67732483, 47.3794927];;FRGLYELYON8921;FR*SOD*E*MB87*39*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.146781;47.780896;;Saint-Philbert-de-Grand-Lieu;; +;;;;;;;;FROTHPLVPR531;FRS28E13901;DOMMARTIN - Rue de Pont - 163280 - CCS;;25 Route De L'aven 11160 Villeneuve-Minervois;49069;[0.6776078, 47.36370564];;FRGLYELYON8911;FR*SOD*E*MB87*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.662975;47.256705;;Sainte-Reine-de-Bretagne;; +;;;;;;;;FROTHPLVPR441;FRCPIE6720145;HYPER U BORNE 4;;Rue Leconte de Lisle 97442 Saint-Philippe;49092;[5.146781, 43.867189];;FRGLYELYON8941;FR*SOD*E*MB87*5*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.992031;43.451614;;Saint-Viaud;; +;;;;;;;;FROTHPLVPR521;FRS51E9366;RAW PROVENCE 09;;Route des Tamarins 97422 La Saline Les Hauts;49054;[1.662975, 48.984947];;FRGLYELYON8931;FR*SOD*E*MB87*4*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.117;43.987237;;Saint-Vincent-des-Landes;; +;;;;;;;;FROTHPLVPR532;FRCPIE6663945;Shell Aire de Roussilllon;;112, Route de Cambuston 97440 Saint-André;49110;[3.992031, 46.010641];;FRGLYELYON9011;FR*SOD*E*MB87*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.264165;43.987408;;Sautron;; +;;;;;;;;FROTHPLVPR492;FRS28E13934;Tavel | A9/E15, La Languedocienne;;17 Rue Nationale 60540 Belle-Église;49055;[4.117, 49.468399];;FRGLYELYON9041;FR*SOD*E*MB87*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.99298;48.10823;;Savenay;; +;;;;;;;;FROTHPLVPR421;FRS88E14563;Ste THORETTE - Route de Bourges - 148714;;Avenue Du Commandant Maurice Séneschal 62520 Le Touquet-Paris-Plage;49063;[5.264165, 49.584589];;FRGLYELYON9031;FR*SOD*E*MB87*3*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.060857;48.0684;;Sévérac;; +;;;;;;;;FROTHPLVPR451;FRS37E124;Poitiers Chincé;;Rue Des Alluets 78920 Ecquevilly;49065;[4.99298, 49.651375];;FRGLYELYON8141;FR*SOD*E*MB87*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.358258;43.14877;;Sion-les-Mines;; +;;;;;;;;FROTHPLVPR472;FRS51E4164;BSMD BORNE 2;;N1C, Le Centre 97410 Saint Pierre;49068;[1.060857, 47.260997];;FRGLYELYON9111;FR*SOD*E*MB87*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.335403;48.70712;;Saint-Nicolas-de-Redon;; +;;;;;;;;FROTHPLVPR471;FRS88E14551;CHAMPADIS BORNE 2;;Digue-promenade des Princes de Monaco 62520 Le Touquet-Paris-Plage;49072;[2.358258, 49.901528];;FRGLYELYON9131;FR*SOD*E*MB87*1*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.028962;47.024413;;Saint-Mars-de-Coutais;; +;;;;;;;;FROTHPLVPR411;FRS51E9374;Seclin;;185 Boulevard Du Docteur Jules Pouget 62520 Le Touquet-Paris-Plage;49080;[-0.335403, 45.169464];;FRGLYELYON9121;FR*SOD*E*MB87*17*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.335422;48.093861;;Sainte-Luce-sur-Loire;; +;;;;;;;;FROTHPLVPR431;FRN54E20372;Mailly-le-Chateau;;Avenue du Général Bigeard 54200 Toul;49083;[4.028962, 49.252337];;FRGLYELYON9141;FR*SOD*E*MB87*39*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.693495;45.9148288;;Saint-Lumine-de-Clisson;; +;;;;;;;;FROTHPLVPR2111;FRFASE330210;Erlon 1 - 7680;;Impasse des teinturiers 54200 Toul;49135;[-3.335422, 47.780896];;FRGLYELYON9211;FR*SOD*E*MB87*7*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.490806;49.606;;Saint-Lumine-de-Coutais;; +;;;;;;;;FROTHPLVPR371;FRCPIE6557345;Pontchateau;;6 Avenue De Fondeyre 31200 Toulouse;49132;[0.693495, 47.256705];;FRGLYELYON9231;FR*SOD*E*MB87*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.862979;48.2494;;Saint-Lyphard;; +;;;;;;;;FROTHPLVPR2181;FRS51E4000;SONEPAR CONNECT CARCASSONNE;;Boulevard De La Plage 62520 Le Touquet-Paris-Plage;49137;[6.490806, 43.451614];;FRGLYELYON9221;FR*SOD*E*MB87*8*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.862462;43.440935;;Saint-Malo-de-Guersac;; +;;;;;;;;FROTHPLVPR2152;FRS51E3999;Hôtel de ville 2 - 7689;;8 Allée De La Découverte 4000 Liège;49140;[4.862979, 43.987237];;FRGLYELYON9241;FR*SOD*E*MB87*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.82574;48.087704;;Saint-Mars-du-Désert;; +;;;;;;;;FROTHPLVPR232;FRCPIE6690055;Val Gelon;;Clinique le Val d'Orb, 1 Mail Philippe Lamour 34760 Boujan-sur-Libron;49145;[4.862462, 43.987408];;FRGLYELYON9322;FR*SOD*E*MB87*15*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.78046;43.298803;;Vallons-de-l'Erdre;; +;;;;;;;;FROTHPLVPR2112;FRIENE005702;Gambetta 3 - 7686;;Boulevard de Ratalens 31240 Saint-Jean;49149;[5.82574, 48.10823];;FRGLYELYON9312;FR*SOD*E*MB87*17*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.033437;48.777379;;Saint-Michel-Chef-Chef;; +;;;;;;;;FROTHPLVPR281;FRIENE005701;DIGNY - Rue de Marechal Leclerc - 171587;;60 Rue Des Hirondelles 84130 Le Pontet;49151;[5.78046, 48.0684];;FRGLYELYON8841;FR*SOD*E*MB87*9*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.252347;49.036656;;Saint-Molf;; +;;;;;;;;FROTHPLVPR2172;FRS41E12160;POUSSY BORNE SUPERU BEAUMONT;;12 rue Notre Dame 31370 Rieumes;49153;[6.033437, 43.14877];;FRGLYELYON8721;FR*SOD*E*MB87*15*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.866943;45.161604;;Soudan;; +;;;;;;;;FROTHPLVPR2191;FRS28E13481;YZEURES-SUR-CREUSE 18319 - ZA Les Chalussons;;165 boulevard de Valmy 92700 Colombes;49155;[6.252347, 48.70712];;FRGLYELYON8731;FR*SOD*E*MB87*14*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.427526;45.188934;;Vieillevigne;; +;;;;;;;;FROTHPLVPR321;FRS88E14577;Tours 10699 - Rue de Tourcoing;;9 Rue de l'Hirondelle 49044 Angers;49160;[4.866943, 47.024413];;FRGLYELYON8711;FR*SOD*E*MB87*14*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.17560786;49.769178;;Vallet;; +;;;;;;;;FROTHPLVPR332;FRIENE007802;Tours 10698 - Place Rabelais;;235 Avenue Louis Pasteur 84700 Sorgues;49002;[-1.427526, 48.093861];;FRGLYELYON8221;FR*SOD*E*MB87*15*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.0775;47.820159;;Loireauxence;; +;;;;;;;;FROTHPLVPR311;FRIENE007801;SAS PETIT BORNE 1;;10 rue François Epailly 67000 Strasbourg;49162;[4.17560786, 45.9148288];;FRGLYELYON8211;FR*SOD*E*MB87*12*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8991;48.838141;;Vay;; +;;;;;;;;FROTHPLVPR331;FRS28E13942;Tours 24226 - Rue Giraudeau;;Avenue Jean Jaurès 77160 Provins;49163;[5.0775, 49.606];;FRGLYELYON8231;FR*SOD*E*MB87*11*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.39821;43.551582;;Vigneux-de-Bretagne;; +;;;;;;;;FROTHPLVPR381;FRS51E4168;Tours 10694 - Avenue Marcel Dassault;;3 Rue De La Barre 63460 Combronde;49130;[6.8991, 48.2494];;FRGLYELYON8241;FR*SOD*E*MB87*9*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.044664;49.428651;;Geneston;; +;;;;;;;;FROTHPLVPR382;FRIENE002902;Aire du Haut Forez Nord;;Rue Thérèse 57600 Forbach;49117;[5.39821, 43.440935];;FRGLYELYON8311;FR*SOD*E*MB87*11*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.474615;48.776964;;La Grigonnais;; +;;;;;;;;FROTHPLVPR312;FRS28E13421;SUPER U COUST BORNE CLIENT;;110 Rue Des Moulins 57600 Forbach;49125;[6.044664, 48.087704];;FRGLYELYON8341;FR*SOD*E*MB87*10*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.589812;46.99259;;La Turballe;; +;;;;;;;;FROTHPLVPR372;FRCPIE6706575;BUCHELAY BUCHELAY 1;;Place Johann Fischart 57600 Forbach;49126;[3.474615, 43.298803];;FRGLYELYON8321;FR*SOD*E*MB87*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.389744;50.451251;;Sucé-sur-Erdre;; +;;;;;;;;FROTHPLVPR322;FRS51E4246;TROISGROS OUCHES;;Rue-Saint-François 57350 Stiring-Wendel;49127;[2.589812, 48.777379];;FRGLYELYON8331;FR*SOD*E*MB87*12*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.485549;48.565925;;Touvois;; +;;;;;;;;FROTHPLVPR121;FRIONE4168;ASFELD - 57563 - Place Grand Cour;;Rue du Château 57600 Forbach;49129;[3.389744, 49.036656];;FRGLYELYON8421;FR*SOD*E*WIIZ*149*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.492422;49.63044664;;Teillé;; +;;;;;;;;FROTHPLVPR651;FRIONE41680;MARGUT - 57702 - Rue de la Poste;;Rue De La Chartreuse 63770 Les Ancizes-Comps;49050;[1.485549, 45.161604];;FRGLYELYON8431;FR*SOD*E*WIIZ*151*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.340441;49.6695;;Le Temple-de-Bretagne;; +;;;;;;;;FROTHPLVPR512;FRIENE002901;REMILLY AILLICOURT - 57519 - Rue de Raucourt;;21 Rue Victor Mazuel 63410 Manzat;49167;[-0.492422, 45.188934];;FRGLYELYON8441;FR*SOD*E*WIIZ*150*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.680823;46.7149;;Thouaré-sur-Loire;; +;;;;;;;;FROTHPLVPR672;FRS51E4256;LUZILLE 1451;;Jardin Des Seigneurs 67330 Bouxwiller;49004;[4.340441, 49.769178];;FRGLYELYON8411;FR*SOD*E*WIIZ*150*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.16581;48.83775;;Les Touches;; +;;;;;;;;FROTHPLVPR661;FRS28E13074;CGED CGED AMIENS;;35 Route De Riom 63410 Manzat;49006;[1.680823, 47.820159];;FRGLYELYON8511;FR*SOD*E*WIIZ*149*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.402838;46.573538;;Treillières;; +;;;;;;;;FROTHPLVPR652;FRS51E9379;Bedenac | N10, Aire de Bedenac Est;;Place de la mairie 45160 Ardon;49022;[2.16581, 48.838141];;FRGLYELYON8531;FR*SOD*E*WIIZ*149*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.954685;47.815173;;Pornichet;; +;;;;;;;;FROTHPLVPR682;FRS51E9378;Cathédrale 2 - 7676 place 1151;;Gymnase 45240 Marcilly-en-Villette, Gymnase;49023;[1.402838, 43.551582];;FRGLYELYON8541;FR*SOD*E*WIIZ*149*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.589698;48.556927;;Saint-Joachim;; +;;;;;;;;FROTHPLVPR671;FRS51E6695;SONEPAR LORIENT;;Centre bourg 45240 Ligny le Ribault;49026;[4.954685, 49.428651];;FRGLYELYON8521;FR*SOD*E*WIIZ*148*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.24461;47.974493;;Port-Saint-Père;; +;;;;;;;;FROTHPLVPR662;FRTNME18B95097;SORIGNY 2480 - Place Antoine de St Exupéry;;Place de la mairie 45240 Marcilly-en-Villette;49027;[2.589698, 48.776964];;FRGLYELYON8611;FR*SOD*E*WIIZ*148*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.752628;43.72454;;Le Pouliguen;; +;;;;;;;;FROTHPLVPR681;FRTNME18B95093;BORNE HU BORNE 2;;5 Rue Jules Verne 57600 Forbach;49035;[2.24461, 46.99259];;FRGLYELYON8631;FR*SOD*E*WIIZ*148*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.986062;48.12;;Préfailles;; +;;;;;;;;FROTHPLVPR541;FRTNME18B95089;SONEPAR LE PONTET 13;;Place Robert Schuman 57600 Forbach;49041;[1.752628, 50.451251];;FRGLYELYON8621;FR*SOD*E*WIIZ*152*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.16687293;48.345345;;Prinquiau;; +;;;;;;;;FRS87PMB872512;FRTNME18B92941;SONEPAR LE PONTET 9;;Place Du Marche 57540 Petite-Rosselle;49048;[1.986062, 48.565925];;FRGLYELYON8641;FR*SOD*E*WIIZ*147*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.044;47.44;;Plessé;; +;;;;;;;;FRS87PMB872412;FRIONE43550;MARTIGNY - 3 avenue de la gare - 150325 - CCS;;rue du 11 novembre 67340 Ingwiller;49021;[5.16687293, 49.63044664];;FRGLYELYON8741;FR*SOD*E*WIIZ*151*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.41992;47.24;;Le Pellerin;; +;;;;;;;;FRS87PMB872411;FRS18E14331;LAMARCHE - 162018 - CCS;;4 rue de l'Église 67340 Lichtenberg;49015;[5.044, 49.6695];;FRGLYELYON6721;FR*SOD*E*WIIZ*155*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.165492;44.9177712;;Petit-Mars;; +;;;;;;;;FRS87PMB872511;FRS28E13056;Chaberte;;Rue principale 67320 Graufthal;49012;[2.41992, 46.7149];;FRGLYELYON7411;FR*SOD*E*WIIZ*152*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.118014;43.78;;Piriac-sur-Mer;; +;;;;;;;;FRS87PMB873411;FRS51E4258;PULNOY - PARKING ATELIER ARTISANAL - 186925;;2 Rue du Château 67290 La Petite-Pierre;49018;[2.165492, 48.83775];;FRGLYELYON6711;FR*SOD*E*WIIZ*153*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.222737;45.087757;;La Plaine-sur-Mer;; +;;;;;;;;FRS87PMB872311;FRIONE43241;SONEPAR BEAUNE;;Route de Novéan 54530 Arnaville;49178;[-1.118014, 46.573538];;FRGLYELYON6021;FR*SOD*E*WIIZ*153*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.643851;50.2817902;;La Planche;; +;;;;;;;;FRS87PMB872612;FRS28E12879;SONELOG CHÂTEAUBOURG 6;;Rue du Château 54800 Mars la Tour;49172;[5.222737, 47.815173];;FRGLYELYON6211;FR*SOD*E*WIIZ*154*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.197267;44.8539403;;Pontchâteau;; +;;;;;;;;FRS87PMB872712;FRS18E14332;Neulise;;Place Sainte-Marthe 57350 Stiring-Wendel;49313;[2.643851, 48.556927];;FRGLYELYON6212;FR*SOD*E*WIIZ*154*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.323697;43.67;;Pont-Saint-Martin;; +;;;;;;;;FRS87PMB872312;FRIONE4483;Mouzon 35483 - Rue du collége;;Rue Des Roses 57460 Behren-lès-Forbach;49326;[3.197267, 47.974493];;FRGLYELYON6312;FR*SOD*E*WIIZ*155*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.21;48.0578853;;La Regrippière;; +;;;;;;;;FRS87PMB872012;FRIONE44830;TAINTRUX - Rue de l'épine - 162386;;Rue Des Bruyères 73440 Les Belleville;49328;[3.323697, 43.72454];;FRGLYELYON6411;FR*SOD*E*WIIZ*157*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.487105;49.0376111;;Saint-Colomban;; +;;;;;;;;FRS87PMB872212;FRCPIE6617515;SUPER U BBA BORNE 2;;310 Rue Étienne Lenoir 59494 Petite-Forêt;49329;[-1.21,48.12];;FRGLYELYON6412;FR*SOD*E*WIIZ*157*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.87;48.78;;Corcoué-sur-Logne;; +;;;;;;;;FRS87PMB872211;FRIONE4355;DARNEY - Rue Stanislas - 150303 - CCS;;Avenue De La Croisette 73440 Les Belleville;49331;[7.487105, 48.345345];;FRGLYELYON6511;FR*SOD*E*WIIZ*158*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.93;47.87;;Saint-Étienne-de-Mer-Morte;; +;;;;;;;;FRS87PMB872111;FRTNME08990399;Agde;;656 Route De Val Thorens 73440 Les Belleville;49332;[5.87,47.44];;FRGLYELYON6512;FR*SOD*E*WIIZ*158*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.1781618;48.92;;Saint-Étienne-de-Montluc;; +;;;;;;;;FRS87PMB872112;FRS51E4210;WAAT 4 CHENES 14;;Rue Du Soleil 73440 Les Belleville;49308;[5.93, 47.24];;FRGLYELYON6111;FR*SOD*E*WIIZ*159*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.83;43.28;;Saint-Brevin-les-Pins;; +;;;;;;;;FRS87PMB872812;FRIENE007002;SONEPAR CONNECT CHÂTEAU-THIERRY;;Route de ville 67220 Bassemberg;49333;[-0.1781618, 44.9177712];;FRGLYELYON6112;FR*SOD*E*WIIZ*159*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.559237;43.43;;Vair-sur-Loire;; +;;;;;;;;FRS87PMB872011;FRIENE007001;SONEPAR BRIVE;;Route Des Vikings 76890 Varneville-Bretteville;49292;[4.83,43.78];;FRGLYELYON6121;FR*SOD*E*WIIZ*144*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8043099;44.57;;Saint-Hilaire-de-Chaléons;; +;;;;;;;;FRS87PMB871911;FRS28E13487;Saugon Ouest;;7 Allée James Watt 33700 Mérignac;49294;[5.559237, 45.087757];;FRGLYELYON6122;FR*SOD*E*WIIZ*147*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.670170199999;48.91;;Saint-Hilaire-de-Clisson;; +;;;;;;;;FRS87PMB872711;FRS51E4209;LIART - Place de la Mairie - 57724;;512 Avenue De Dunkerque 59130 Lambersart;49295;[2.8043099, 50.2817902];;FRGLYELYON6022;FR*SOD*E*WIIZ*135*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.62;44.821036;;Saint-Aignan-Grandlieu;; +;;;;;;;;FRS87PMB873013;FRIENE009802;BORNE U BORNE PUBLIQUE3;;512 Avenue de Dunkerque 59130 Lambersart;49296;[-0.670170199999, 44.8539403];;FRGLYELYON6311;FR*SOD*E*WIIZ*144*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7363293;46.698981;;Remouillé;; +;;;;;;;;FRS87PMB872811;FRIENE009801;PARKING EXTERIE BORNE 2;;1 Boulevard D'halluin 59223 Roncq;49298;[4.62,43.67];;FRGLYELYON6011;FR*SOD*E*WIIZ*135*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4019962;46.698999;;Riaillé;; +;;;;;;;;FRS87PMB873211;FRS28E13732;CGED TOULOUSE 1 _;;130 Rue De La Boucle 73440 Les Belleville;49299;[-0.7363293, 48.0578853];;FRGLYELYON5721;FR*SOD*E*WIIZ*160*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.21;46.698967;;Rouans;; +;;;;;;;;FRS87PMB873912;FRTNME08990395;BUZANCY - 57517 - Parking Proxi;;Impasse Du Petit Pontigny 89800 Chablis;49301;[3.4019962, 49.0376111];;FRGLYELYON6012;FR*SOD*E*WIIZ*130*9*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.93;43.79;;Rougé;; +;;;;;;;;FRS87PMB873421;FRS37E1563;WAAT 4 CHENES 11;;Zone Commerciale Sud - Sélestat 67600 selestat;49306;[2.21,48.78];;FRGLYELYON5621;FR*SOD*E*WIIZ*130*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.32;50.277657;;Saffré;; +;;;;;;;;FRS87PMB873312;FRS37E1562;St FLORENT SUR CHER - République - 113095;;14 rue Rhin et Danube 69009 Lyon;49307;[-3.93,47.87];;FRGLYELYON5612;FR*SOD*E*WIIZ*130*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.35;43.9;;Saint-Aubin-des-Châteaux;; +;;;;;;;;FRS87PMB873313;FRS28E13907;CGED MONTREUIL;;484 Avenue Maréchal De Lattre De Tassigny 71000 Mâcon;49290;[2.32,48.92];;FRGLYELYON5722;FR*SOD*E*WIIZ*131*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.6;43.77;;Saint-André-des-Eaux;; +;;;;;;;;FRS87PMB873311;FRS51E4191;Longvilliers;;2 Rue Alfred De Glehn 68200 Mulhouse;49361;[3.35,43.28];;FRGLYELYON5711;FR*SOD*E*WIIZ*131*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.68;49.091403;;Sainte-Anne-sur-Brivet;; +;;;;;;;;FRS87PMB873212;FRS51E4190;Carignan 35990 - Rue du Parc;;Château de Vernhes 31340 Bondigoux;49362;[-1.60,43.43];;FRGLYELYON5611;FR*SOD*E*WIIZ*132*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2;43.638003;;Vichy;; +;;;;;;;;FRS87PMB873213;FRS51E4169;Douzy 35886 - Place Verte;;4 Rue Des Lucioles 97300 Cayenne;49363;[6.68,44.57];;FRGLYELYON5712;FR*SOD*E*WIIZ*132*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5203551;49.06520319135481;;Schiltigheim;; +;;;;;;;;FRS87PMB872912;FRCPIE6648515;ORCENAIS - Route de Marçais - 112821;;37 Avenue Stanislas Gimart 97490 Saint-Denis;49364;[2.20,48.91];;FRGLYELYON5812;FR*SOD*E*WIIZ*133*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.398171;48.89;;Le Vigen;; +;;;;;;;;FRS87PMB873113;FRS51E4211;PARKING EXTERIE BORNE 1;;130 Zone Artisanale Les Bruottees 21200 Vignoles;49367;[-0.5203551, 44.821036];;FRGLYELYON5911;FR*SOD*E*WIIZ*133*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.398099;44.8662562;;Halluin;; +;;;;;;;;FRS87PMB873112;FRIONE40360;Vendée;;2 Avenue du Général Leclerc 90120 Morvillars;49368;[0.398171, 46.698981];;FRGLYELYON5912;FR*SOD*E*WIIZ*134*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.398226;51.01408;;Vence;; +;;;;;;;;FRS87PMB873111;FRTNME08990391;Langres Perrogney;;16 Cours De La Portelle 01120 Montluel;49373;[0.398099, 46.698999];;FRGLYELYON5811;FR*SOD*E*WIIZ*134*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.4;49.058989;;Bailly-Romainvilliers;; +;;;;;;;;FRS87PMB871811;FRTNME08990384;07910270;;Rue De Sakal 19360 Malemort;49375;[0.398226, 46.698967];;FRURWEUNIB12121;FR*SOD*E*WIIZ*137*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.923926;43.36;;Bédoin;; +;;;;;;;;FRS87PMB872911;FRTNME08990376;La Réserve;;route de Saint-Paul ZAC du Pradas 34570 Montarnaud;49376;[6.40,43.79];;FRURWEUNIB1512;FR*SOD*E*WIIZ*143*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.91;49.0227649;;;; +;;;;;;;;FRS87PMB871912;FRTNME08990136;STATION U BORNE 1;;Avenue de Lengel 31490 Léguevin;49377;[3.923926, 50.277657];;FRURWEUNIB1522;FR*SOD*E*WIIZ*137*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.2;47.6485392;;;; +;;;;;;;;FRS87PMB871812;FRTNME08910938;Le magic, VITRE;;Route De La Meyze 87800 Nexon;49378;[5.91,43.90];;FRURWEUNIB1422;FR*SOD*E*WIIZ*138*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.976324;49.108413;;;; +;;;;;;;;FRS87PMB87811;FRTNME08910318;Picpus;;64 Avenue Charles De Gaulle 29470 Plougastel-Daoulas;49381;[7.20,43.77];;FRURWEUNIB1412;FR*SOD*E*WIIZ*138*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.3746;48.432196;;;; +;;;;;;;;FRS87PMB87711;FRCPIE6610525;Villers-chemin;;Centre Commercial Le Riberal, Camí Camp Llarg 66130 Ille-sur-Têt;49360;[3.976324, 49.091403];;FRURWEUNIB1421;FR*SOD*E*WIIZ*139*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.4253467530332162;48.75567;;;; +;;;;;;;;FRS87PMB87612;FRS51E4237;henry serre les sapins;;29 Rue De La Gare 67370 Truchtersheim;49337;[1.3746, 43.638003];;FRURWEUNIB1411;FR*SOD*E*WIIZ*139*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.58;50.1621653;;;; +;;;;;;;;FRS87PMB87611;FRS28E13935;CHATEAU RIPEAU;;24 Rue De Lyons 27460 Igoville;49338;[1.4253467530332162, 49.06520319135481];;FRURWEUNIB1321;FR*SOD*E*WIIZ*140*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.654599599999;47.48421863;;;; +;;;;;;;;FRS87PMB873913;FRCPIE6758325;MAS DES CARASSINS;;85 Rue Anne De Bretagne 29490 Guipavas;49339;[7.58,48.89];;FRURWEUNIB1311;FR*SOD*E*WIIZ*140*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.37615;48.04;;;; +;;;;;;;;FRS87PMB87511;FRIONE4036;Bricomarché - Villard de lans - 22kW AC;;13 Route De La Wantzenau 67800 Hœnheim;49343;[-0.654599599999, 44.8662562];;FRURWEUNIB1322;FR*SOD*E*WIIZ*141*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.964415;48.8869587;;;; +;;;;;;;;FRS87PMB87512;FRIONE4127;RENAULT ARRAS;;240 Avenue Du Général De Gaulle 26260 Saint-Donat-sur-l'Herbasse;49345;[2.37615, 51.01408];;FRURWEUNIB1312;FR*SOD*E*WIIZ*141*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.7;44.6656545;;;; +;;;;;;;;FRS87PMB87412;FRIONE41270;SA GLASTINT;;254 Avenue Du Général De Gaulle 26260 Saint-Donat-sur-l'Herbasse;49347;[3.964415, 49.058989];;FRURWEUNIB12101;FR*SOD*E*WIIZ*142*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1165115;44.677126551459914;;;; +;;;;;;;;FRS87PMB87411;FRS41E461;Hôtel Le Cheval Blanc 13;;Route De Valence 26260 Saint-Donat-sur-l'Herbasse;49349;[6.70,43.36];;FRURWEUNIB1291;FR*SOD*E*WIIZ*142*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8872073;46.020022;;;; +;;;;;;;;FRS87PMB87311;FRS41E458;Mazda - Laval - 22kW AC;;256 Rue De Nantes 35136 Saint-Jacques-de-la-Lande;49350;[2.1165115, 49.0227649];;FRURWEUNIB1271;FR*SOD*E*WIIZ*143*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.980447;44.51;;;; +;;;;;;;;FRS87PMB87312;FRS41E2459;INTENZ Chateau-Thierry by Autosphere VW - 22KW AC;;Route de Challans 85160 Saint-Jean-de-Monts;49355;[6.8872073, 47.6485392];;FRURWEUNIB1281;FR*SOD*E*WIIZ*160*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.071825;44.08;;;; +;;;;;;;;FRS87PMB87211;FRS41E2489;INTENZ Chateau-Thierry by Autosphere VW - 24KW DC;;Cc Le Chateau, 118 D1001 60730 Sainte-Geneviève;49201;[6.980447, 49.108413];;FRURWEUNIB12111;FR*SOD*E*WIIZ*163*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.66609;43.4535293;;;; +;;;;;;;;FRS87PMB87111;FRS41E460;Gring HUB;;Avenue du Président Kennedy 31330 Grenade;49206;[0.071825, 48.432196];;FRURWEUNIB1121;FR*SOD*E*WIIZ*161*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2081186;44.49;;;; +;;;;;;;;FRS87PMB87112;FRS28E13801;CSE - BdF - Concarneau;;9 rue Dieu me Garde 17450 Fouras;49212;[7.66609,48.75567];;FRURWEUNIB1081;FR*SOD*E*WIIZ*210*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.51178345;44.5888;;;; +;;;;;;;;FRS87PMB871711;FRCPIE6618015;BM92;;Chemin du Clausenhofferweg 67507 Schweighouse-sur-Moder;49214;[3.2081186, 50.1621653];;FRURWEUNIB1012;FR*SOD*E*WIIZ*206*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.54;46.047794;;;; +;;;;;;;;FRS87PMB873911;FRS41E466;CSE - BdF - Portiragnes;;1 Rue René Laënnec 67300 Schiltigheim;49215;[-0.51178345, 47.48421863];;FRURWEUNIB1071;FR*SOD*E*WIIZ*206*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0766169;46.708982;;;; +;;;;;;;;FRS87PMB87712;FRS41E15365;CSE - BdF - Bidart;;Angle de la rue Pcple et Rte de la Muhlenbach 57230 Sturzelbronn;49220;[7.54,48.04];;FRURWEUNIB1022;FR*SOD*E*WIIZ*207*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.1984829;49.1825257;;;; +;;;;;;;;FRS87PMB87212;FRS41E467;CSE - BdF - Vars;;Rue Des Prés Calans 22680 Binic-Étables-sur-Mer;49221;[2.0766169, 48.8869587];;FRURWEUNIB1091;FR*SOD*E*WIIZ*207*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.18225850129804153;49.3591525;;;; +;;;;;;;;FRS87PMB87812;FRS41E468;MP - Bezon;;Rue Étienne Achavanne 76240 Bonsecours;49222;[0.1984829, 44.6656545];;FRURWEUNIB1511;FR*SOD*E*WIIZ*208*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.046409;48.478447;;;; +;;;;;;;;FRS87PMB871411;FRIENE002501;SAS HOTEL BORDEAUX FLOIRAC;;14 Rue Du Vigneau De Souché 79000 Niort;49228;[0.18225850129804153, 44.677126551459914];;FRURWEUNIB1521;FR*SOD*E*WIIZ*208*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.31;48.9874447;;;; +;;;;;;;;FRS87PMB871512;FRS18E12624;LMS Charge;;1 route de Murat 15400 Riom-ès-Montagnes;49200;[4.046409, 46.020022];;FRURWEUNIB35171;FR*SOD*E*WIIZ*210*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.99;47.1112893;;;; +;;;;;;;;FRS87PMB871712;FRIONE40270;Auberge du Point Sublime Gorges du Verdon;;2 Avenue Du Docteur Jean Laigret 41000 Blois;49176;[4.31,44.51];;FRURWEUNIB1632;FR*SOD*E*WIIZ*161*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4307718;48.796153;;;; +;;;;;;;;FRS87PMB87911;FRCPIE6652065;SCI CAP IMMO;;17 Quai De La Saussaye 41000 Blois;49289;[4.99,44.08];;FRURWEUNIB1861;FR*SOD*E*WIIZ*211*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.48;48.159583;;;; +;;;;;;;;FRS87PMB871513;FRS18E21207;LA GRANDE BASTIDE;;12 Place Jean Jaurés 41000 Blois;49177;[4.4307718,43.4535293];;FRURWEUNIB1932;FR*SOD*E*WIIZ*211*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.5269;47.8108275;;;; +;;;;;;;;FRS87PMB871412;FRS18E21202;Lou Castelet Hôtel;;2147 Avenue Du Languedoc 66000 Perpignan;49179;[4.48,44.49];;FRURWEUNIB1951;FR*SOD*E*WIIZ*212*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.598465;47.7402178;;;; +;;;;;;;;FRS87PMB871413;FRS18E20532;Royal Champagne Hotel & Spa;;Boulevard Pasteur 27000 Évreux;49183;[4.5269,44.5888];;FRURWEUNIB1922;FR*SOD*E*WIIZ*212*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.430464;0.0;;;; +;;;;;;;;FRS87PMB871511;FRS28E13484;Hotel Ibis Style Toulouse Blagnac Aéroport;;Place De La République 27000 Évreux;49191;[6.598465, 46.047794];;FRURWEUNIB1921;FR*SOD*E*WIIZ*213*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.3688759;44.5662689;;;; +;;;;;;;;FRS87PMB871211;FRIONE4027;Station IRVE Kallista BDR de Vernon-Douains;;Rue Frédéric Legrand 87220 Feytiat;49192;[-1.430464, 46.708982];;FRURWEUNIB1941;FR*SOD*E*WIIZ*213*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1352017;46.7680197;;;; +;;;;;;;;FRS87PMB871111;FRS18E11740;Domaine des Bufflonnes, Uhrwiller;;Parking Rue Saint-Jean 89500 Villeneuve-Sur-Yonne;49193;[5.3688759, 49.1825257];;FRURWEUNIB1962;FR*SOD*E*WIIZ*204*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.676455;50.61;;;; +;;;;;;;;FRS87PMB87912;FRS28E13088;CIGIMMO;;69 Route De Cheverny 41700 Le Controis-en-Sologne;49194;[6.1352017, 49.3591525];;FRURWEUNIB1952;FR*SOD*E*WIIZ*204*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.5024568;45.86;;;; +;;;;;;;;FRS87PMB871112;FRS18E20567;FENBAT;;39 Route De Valognes. 50260 Bricquebec-en-Cotentin;49196;[-2.676455, 48.478447];;FRURWEUNIB1961;FR*SOD*E*WIIZ*204*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4149303;45.048291304036994;;;; +;;;;;;;;FRS87PMB871012;FRIONE4083;VOLKSWAGEN Magenta - Emil Frey - 24kW DC;;Route De Limoges 16150 Chabanais;49229;[4.5024568, 48.9874447];;FRURWEUNIB1942;FR*SOD*E*WIIZ*204*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.804283;43.426421561643096;;;; +;;;;;;;;FRS87PMB871011;FRIONE40830;VOLKSWAGEN Magenta - Emil Frey - 22KW AC;;Rue Du Chalet 49120 Chemillé-en-Anjou;49271;[2.4149303, 47.1112893];;FRURWEUNIB1912;FR*SOD*E*WIIZ*203*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.371309;43.6137170539075;;;; +;;;;;;;;FRS87PMB871212;FRIENE002502;JONNARD LES ISSAMBRES;;Rue des Prérot 90400 Sevenans;49260;[7.804283, 48.796153];;FRURWEUNIB1931;FR*SOD*E*WIIZ*203*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.1012758;41.90917768392654;;;; +;;;;;;;;FRA16PWIIZ14922;FRS28E13053;SKYMAT;;1 Avenue De Lattre De Tassigny 90200 Rougegoutte;49261;[7.371309, 48.159583];;FRURWEUNIB1911;FR*SOD*E*WIIZ*201*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.1444077;48.52;;;; +;;;;;;;;FRA16PWIIZ15111;FRS41E474;KIA - Denney - 24kW DC;;19 Rue du Château 90100 Delle;49264;[7.1012758, 47.8108275];;FRURWEUNIB1822;FR*SOD*E*WIIZ*201*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.0;48.21;;;; +;;;;;;;;FRA16PWIIZ15012;FRS41E471;KIA - Denney - 22kW AC;;12 Place Général de Gaulle 90200 Giromagny;49269;[7.1444077, 47.7402178];;FRURWEUNIB1821;FR*SOD*E*WIIZ*200*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0996823;43.46;;;; +;;;;;;;;FRA16PWIIZ15011;FRS41E472;PHARMACIE DE HUNDLING;;29 Grande Rue 90170 Étueffont;49276;[0.00000000,0.00000000];;FRURWEUNIB1831;FR*SOD*E*WIIZ*200*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8675419;50.615449;;;; +;;;;;;;;FRA16PWIIZ14912;FRS28E13426;Mazda - Alençon - 22kW AC;;Jonxion 1, Avenue de la Gare TGV 90400 Meroux-Moval;49278;[6.0996823, 44.5662689];;FRURWEUNIB1631;FR*SOD*E*WIIZ*199*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.02;48.81823;;;; +;;;;;;;;FRA16PWIIZ14911;FRS41E481;Kiehl France Parking;;1 Place de la Résistance 90000 Belfort;49283;[4.8675419, 46.7680197];;FRURWEUNIB1811;FR*SOD*E*WIIZ*199*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.45;48.2050603;;;; +;;;;;;;;FRA16PWIIZ14921;FRS41E16743;Renault - Proville - 7kW AC;;12 Rue Aristide Briand 90300 Offemont;49284;[3.02,50.61];;FRURWEUNIB1852;FR*SOD*E*WIIZ*198*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9592363524417444;48.0956304;;;; +;;;;;;;;FRA16PWIIZ14812;FRS41E16744;Renault - Proville - 22kW AC;;Sous l'Etang de la Veronne 90300 Sermamagny;49287;[4.45,45.86];;FRURWEUNIB1862;FR*SOD*E*WIIZ*198*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9811023182169172;48.816567;;;; +;;;;;;;;FRA16PWIIZ14811;FRS41E473;Super U - Saint Barthelemy d'Anjou - 22kW AC;;10 Rue de Dampierre 90500 Beaucourt;49259;[3.9592363524417444, 45.048291304036994];;FRURWEUNIB1812;FR*SOD*E*WIIZ*197*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.4808844929161726;47.77843796;;;; +;;;;;;;;FRA16PWIIZ14821;FRS37E474;Borne Hager Hostellerie aux deux cléfs;;1 Rue des Champs de la Belle 90800 Bavilliers;49238;[1.9811023182169172, 43.426421561643096];;FRURWEUNIB1851;FR*SOD*E*WIIZ*197*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.639024184472166;43.2910961;;;; +;;;;;;;;FRA16PWIIZ15212;FRS28E12875;Mazda - Mâcon - 22kW AC;;24 rue du Dr Eugène Jacquot 90400 Danjoutin;49241;[1.4808844929161726, 43.6137170539075];;FRURWEUNIB1832;FR*SOD*E*WIIZ*196*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.67;41.947088;;;; +;;;;;;;;FRA16PWIIZ14712;FRCPIE6752265;Banarge;;7 Rue des Prés 90400 Andelnans;49242;[8.639024184472166, 41.90917768392654];;FRURWEUNIB1011;FR*SOD*E*WIIZ*214*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.44;48.8161972;;;; +;;;;;;;;FRA16PWIIZ15112;FRCPIE6752305;parking;;27 bis Rue Jean Moulin 90110 Rougemont-le-Château;49244;[2.67,48.52];;FRURWEUNIB1841;FR*SOD*E*WIIZ*214*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.69;50.617509;;;; +;;;;;;;;FRA16PWIIZ15512;FRCPIE6664415;Mazda - Roanne - 22kW AC;;25 Avenue d'Alsace 90000 Belfort;49248;[6.44,48.21];;FRURWEUNIB1711;FR*SOD*E*WIIZ*215*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.014273;49.49181;;;; +;;;;;;;;FRA16PWIIZ15211;FRCPIE6740985;LA CLE DES CHAMPS;;Place de la République 90000 Belfort;49249;[3.69,43.46];;FRURWEUNIB1712;FR*SOD*E*WIIZ*223*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.63357;49.1574;;;; +;;;;;;;;FRA16PWIIZ15312;FRS41E469;COMPTEUR LORIOL 1;;Voie du Tram 90700 Châtenois-les-Forges;49247;[3.014273, 50.615449];;FRURWEUNIB1612;FR*SOD*E*WIIZ*231*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2858373;49.53518707;;;; +;;;;;;;;FRA16PWIIZ15311;FRCPIE6495345;VILA DE LA MAR HOTEL;;86 Rue du Général de Gaulle 90850 Essert;44071;[7.63357,48.81823];;FRURWEUNIB1622;FR*SOD*E*WIIZ*231*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.3664798;49.4408;;;; +;;;;;;;;FRA16PWIIZ15411;FRCPIE6497755;CAMPING LE SOUS BOIS;;6 Rue de la Cavalerie 90000 Belfort;44073;[3.2858373, 48.2050603];;FRURWEUNIB1611;FR*SOD*E*WIIZ*230*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.615871;49.4259;;;; +;;;;;;;;FRA16PWIIZ15412;FRCPIE6497765;Camping lesArches;;25 Avenue du Maréchal Juin 90000 Belfort;44072;[7.3664798, 48.0956304];;FRURWEUNIB1621;FR*SOD*E*WIIZ*230*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.33756327;49.4637;;;; +;;;;;;;;FRA16PWIIZ15511;FRS41E470;Mercedes Benz - Cluses EMB74 -22kW AC;;30 Rue Georges Helminger 90130 Montreux-Château;44075;[2.615871, 48.816567];;FRURWEUNIB1842;FR*SOD*E*WIIZ*229*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.4936366;49.57962857;;;; +;;;;;;;;FRA16PWIIZ15711;FRS41E1706;Mazda - La Roche sur Yon - 22kW AC;;Bessoncourt, Avenue du tilleul 90160 Bessoncourt;44077;[-3.33756327, 47.77843796];;FRURWEUNIB921;FR*SOD*E*WIIZ*229*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.763026;49.2589;;;; +;;;;;;;;FRA16PWIIZ15712;FRIENE007201;Mazda - Verdun - 22kW AC;;5 Chemin de Curculis 11000 Carcassonne;44079;[5.4936366, 43.2910961];;FRURWEUNIB1032;FR*SOD*E*WIIZ*228*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.6151818;49.4777;;;; +;;;;;;;;FRA16PWIIZ15812;FRIENE007202;Mazda - Thionville - 22kW AC;;5 Rue De La Forêt 68990 Heimsbrunn;44081;[8.763026, 41.947088];;FRURWEUNIB322;FR*SOD*E*WIIZ*228*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.009613;49.376;;;; +;;;;;;;;FRA16PWIIZ15811;FRS28E13490;KIA - Yffiniac - 24kW DC;;9 Rue Du Quatorze Juillet 61600 La Ferté Macé;44057;[2.6151818, 48.8161972];;FRURWEUNIB532;FR*SOD*E*WIIZ*226*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.854015;49.4292;;;; +;;;;;;;;FRA16PWIIZ15911;FRCPIE6685345;KIA - Yffiniac - 22kW AC;;62 Rue Ventôse 80100 Abbeville;44070;[3.009613, 50.617509];;FRURWEUNIB521;FR*SOD*E*WIIZ*226*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.95344;49.6555;;;; +;;;;;;;;FRA16PWIIZ15912;FRCPIE6718385;Intermarché - Courtisols - 7.4kW AC;;Avenue Des Eaux Blanches 34200 Sète;44082;[2.854015, 49.49181];;FRURWEUNIB522;FR*SOD*E*WIIZ*225*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.97103979;49.5474;;;; +;;;;;;;;FRA16PWIIZ14412;FRSHEE24;Mazda - Mareil-Marly - 22kW AC;;Square Albert Schweitzer 67600 Sélestat;44061;[2.95344, 49.1574];;FRURWEUNIB511;FR*SOD*E*WIIZ*225*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8454;49.5433;;;; +;;;;;;;;FRA16PWIIZ14711;FRSHEE21;Mazda - Bourges - 22kW AC;;Rue Sainte Foy 67600 Sélestat;44062;[2.97103979, 49.53518707];;FRURWEUNIB541;FR*SOD*E*WIIZ*224*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.64507;49.5876;;;; +;;;;;;;;FRA16PWIIZ13512;FRIENE004002;Mazda - Haguenau - 22kW AC;;342 Avenue Éole 83160 La Valette-du-Var;44063;[2.8454, 49.4408];;FRURWEUNIB552;FR*SOD*E*WIIZ*224*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.86353;49.3866;;;; +;;;;;;;;FRA16PWIIZ14411;FRIENE004001;IRVE OSTHEIM;;2 rue Du Colonel Fabien 54490 Piennes;44064;[2.64507, 49.4259];;FRURWEUNIB461;FR*SOD*E*WIIZ*223*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.83789452;49.52149139;;;; +;;;;;;;;FRA16PWIIZ13511;FRCPIE6685355;IRVE THANN;;Place Paul Mennegand 54800 Jarny;44066;[2.86353, 49.4637];;FRURWEUNIB431;FR*SOD*E*WIIZ*215*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.58226;49.5608;;;; +;;;;;;;;FRA16PWIIZ16011;FRS28E12920;IRVE BURNAUPT LE HAUT;;7a Place Du Général De Gaulle 54560 Audun-le-Roman;44067;[2.83789452, 49.57962857];;FRURWEUNIB451;FR*SOD*E*WIIZ*222*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.88124;45.758969;;;; +;;;;;;;;FRA16PWIIZ13091;FRCPIE6700465;Peugeot NOMBLOT;;89 rue du souvenir – 44850 LIGNE 44850 Ligné;44068;[2.58226, 49.2589];;FRURWEUNIB441;FR*SOD*E*WIIZ*222*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.45262;49.14952;;;; +;;;;;;;;FRA16PWIIZ13061;FRCPIE6603165;Toyota - GAP - 22KW AC;;89 rue du souvenir 44850 Ligné;44069;[2.88124, 49.4777];;FRURWEUNIB411;FR*SOD*E*WIIZ*221*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.64299;49.5406;;;; +;;;;;;;;FRA16PWIIZ13051;FRCPIE6611305;KIA - Chalon-sur-Saône - 50kW DC;;2 Rue De Rome 67300 Schiltigheim;44099;[2.45262, 49.376];;FRURWEUNIB421;FR*SOD*E*WIIZ*221*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.05025;49.3464;;;; +;;;;;;;;FRA16PWIIZ13111;FRS18E14866;KIA - Chalon-sur-Saône - 43kW AC;;2 Rue Du Maréchal Foch 54150 Briey;44110;[2.64299, 49.4292];;FRURWEUNIB321;FR*SOD*E*WIIZ*220*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.50962;49.5537;;;; +;;;;;;;;FRA16PWIIZ13112;FRS18E11236;Loos, Parking de la Gare;;30 Place De L'hôtel De Ville 54240 Jœuf;44103;[3.05025, 49.6555];;FRURWEUNIB312;FR*SOD*E*WIIZ*220*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.95433;49.3543;;;; +;;;;;;;;FRA16PWIIZ13211;FRS18E10967;CHATEAU DE RONZIERE;;6 Allée De Maître Zaccharius 80440 Glisy;44106;[2.50962, 49.5474];;FRURWEUNIB311;FR*SOD*E*WIIZ*219*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.83884;43.444467;;;; +;;;;;;;;FRA16PWIIZ13212;FRS18E10966;Armstrong France;;Place Xavier Jourdain 68130 Altkirch;44107;[2.95433, 49.5433];;FRURWEUNIB551;FR*SOD*E*WIIZ*219*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.77651;49.1075;;;; +;;;;;;;;FRA16PWIIZ13312;FRCPIE6737175;Mairie Vaudreuille;;Place Joffre 68800 Thann;44108;[2.83884, 49.5876];;FRURWEUNIB222;FR*SOD*E*WIIZ*218*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.77630573;49.0529;;;; +;;;;;;;;FRA16PWIIZ13311;FRCPIE6700485;Ligue Occitanie Basketball;;Aire de covoiturage, Burnhaupt le Haut 68250 Burnhaupt le Haut;44111;[2.77651, 49.3866];;FRURWEUNIB231;FR*SOD*E*WIIZ*218*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.58555;49.0929;;;; +;;;;;;;;FRA16PWIIZ13412;FRS88E14547;Hotel dolce vita;;Ferrette,Place de la gare 68480 Ferrette;44113;[2.77630573, 49.52149139];;FRURWEUNIB232;FR*SOD*E*WIIZ*217*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.691131;49.1181;;;; +;;;;;;;;FRA16PWIIZ13411;FRIONE40260;Camping la Belle Etoile;;Place Des Fêtes 68920 Wintzenheim;44115;[2.58555, 49.5608];;FRURWEUNIB212;FR*SOD*E*WIIZ*217*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.27616;49.0118;;;; +;;;;;;;;FRA16PWIIZ13711;FRCPIE6633865;Hôtel Atrium;;15 Rue Du Bois Saint-Jean 4102 Seraing;44116;[5.691131, 45.758969];;FRURWEUNIB211;FR*SOD*E*WIIZ*216*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.74747;49.0435;;;; +;;;;;;;;FRA16PWIIZ14311;FRCPIE6633855;Hôtel Kyriad Montpellier Sète Balaruc;;Belfort, rue Georges Pompidou 90000 Belfort;44056;[6.27616, 49.14952];;FRURWEUNIB241;FR*SOD*E*WIIZ*216*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.90553;49.1176;;;; +;;;;;;;;FRA16PWIIZ13712;FRS51E4132;Loos, Parking Salengro;;Place Des Cigognes 68150 Ostheim;44083;[2.74747, 49.5406];;FRURWEUNIB221;FR*SOD*E*WIIZ*196*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.52149;49.1048;;;; +;;;;;;;;FRA16PWIIZ13812;FRIONE40265;LA PRAIRIE;;Rue des Coulerins 74580 Viry;44089;[2.90553, 49.3464];;FRURWEUNIB242;FR*SOD*E*WIIZ*195*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.78571;49.0023;;;; +;;;;;;;;FRA16PWIIZ13811;FRS28E13489;KIA SENS - 22KW AC;;7 Allée Du Midi 54270 Essey-lès-Nancy;44084;[2.52149, 49.5537];;FRURWEUNIB111;FR*SOD*E*WIIZ*195*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.698357;49.06;;;; +;;;;;;;;FRA16PWIIZ13911;FRS51E4114;KIA - Sens - 24kW DC;;Grande Rue 78490 Les Mesnuls;44087;[2.78571, 49.3543];;FRURWEUNIB141;FR*SOD*E*WIIZ*172*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.08822;49.1102;;;; +;;;;;;;;FRA16PWIIZ13912;FRS51E4113;Mazda - Colmar 22kW AC;;Route de Paris 89400 Charmoy;44088;[6.698357, 43.444467];;FRURWEUNIB121;FR*SOD*E*WIIZ*179*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.92897;49.1007;;;; +;;;;;;;;FRA16PWIIZ14012;FRS37E123;Toyota - Metz- 22kW AC D;;50 Grande Rue 89113 Charbuy;44091;[7.08822, 49.1075];;FRURWEUNIB131;FR*SOD*E*WIIZ*178*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.04137;49.0376;;;; +;;;;;;;;FRA16PWIIZ14011;FRS51E4093;Toyota - Metz- 22kW AC G;;40 Grande Rue 89120 Charny;44102;[6.92897, 49.0529];;FRURWEUNIB161;FR*SOD*E*WIIZ*178*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.08275;48.8498;;;; +;;;;;;;;FRA16PWIIZ14111;FRS28E13436;Ford - Lanester - 24 kW DC;;Chemin De Montmeuille 06480 La Colle-sur-Loup;44096;[7.04137, 49.0929];;FRURWEUNIB151;FR*SOD*E*WIIZ*177*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.96526;48.7341;;;; +;;;;;;;;FRA16PWIIZ14112;FRCPIE6700495;Ford - Lanester - 22KW AC;;Rue Saint-Louis 34280 La Grande-Motte;44097;[7.08275, 49.1181];;FRURWEUNIB542;FR*SOD*E*WIIZ*177*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.04492;48.6709;;;; +;;;;;;;;FRA16PWIIZ14212;FRCPIE6737065;SNS - Marseille - 22kW AC;;4337 Route De Giens 83400 Hyères;44098;[6.96526, 49.0118];;FRURWEUNIB512;FR*SOD*E*WIIZ*176*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.08213;48.719;;;; +;;;;;;;;FRA16PWIIZ14211;FRCPIE6736735;Mazda - Ajaccio - 22kW AC;;Place Des Chenevières 54940 Belleville;44031;[7.04492, 49.0435];;FRURWEUNIB1031;FR*SOD*E*WIIZ*176*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.07152;49.1104;;;; +;;;;;;;;FRA16PWIIZ14312;FRS18E18840;Mazda - Perigueux (Trelissac) - 22kW AC;;1 Rue Jacques Monod 81000 Albi;44055;[7.08213, 49.1176];;FRURWEUNIB851;FR*SOD*E*WIIZ*175*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.03067;49.0743;;;; +;;;;;;;;FRA16PWIIZ16012;FRS28E13435;Loos, Parking CIL;;Route De L'arcoule 13520 Paradou;44030;[7.07152, 49.1048];;FRURWEUNIB911;FR*SOD*E*WIIZ*175*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.03343;49.1129;;;; +;;;;;;;;FRA16PWIIZ16311;FRS18E11771;Melicocq, rue Emerson White;;2 Route d'Orsay 91400 Saclay;44021;[7.03067, 49.0023];;FRURWEUNIB991;FR*SOD*E*WIIZ*174*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.07077;45.16480908;;;; +;;;;;;;;FRA16PWIIZ16112;FRS18E15132;Betz, Libération;;1 route des lacs 63610 Besse-et-Saint-Anastais;44022;[7.03343, 49.06];;FRURWEUNIB941;FR*SOD*E*WIIZ*174*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.09606;48.9579;;;; +;;;;;;;;FRA16PWIIZ21011;FRCPIE6736825;Chiry Ourscamp, Place Saint-Eloi;;14 Rue Philippe Trinquet 21200 Beaune;44023;[7.07077, 49.1102];;FRURWEUNIB9111;FR*SOD*E*WIIZ*173*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.93729;43.34597207;;;; +;;;;;;;;FRA16PWIIZ20611;FRCPIE6736755;Clairoix, De Gaulle;;Place Du Château 45330 Augerville-la-Rivière;44027;[7.09606, 49.1007];;FRURWEUNIB931;FR*SOD*E*WIIZ*173*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.01936;49.35462135;;;; +;;;;;;;;FRA16PWIIZ20612;FRCPIE6736745;Estrées-Saint-Denis, Eglise;;Allée De Glain 64100 Bayonne;44028;[6.93729, 49.0376];;FRURWEUNIB951;FR*SOD*E*WIIZ*172*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.05582;48.95442304;;;; +;;;;;;;;FRA16PWIIZ20711;FRCPIE6736495;Longueil-Annel, De Gaulle;;Promenade Des Sources 64600 Anglet;44029;[7.01936, 48.8498];;FRURWEUNIB971;FR*SOD*E*WIIZ*171*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.11605;49.11512365;;;; +;;;;;;;;FRA16PWIIZ20712;FRCPIE6736945;Lassigny, Parking;;406 Avenue De L'estérel 83400 Hyères;44014;[7.05582, 48.7341];;FRURWEUNIB2021;FR*SOD*E*WIIZ*180*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.04749;48.973217;;;; +;;;;;;;;FRA16PWIIZ20811;FRCPIE6736255;Fleurines, Verneuil;;10 Rue Du Cardinal 34800 Clermont-l'Hérault;44013;[7.11605, 48.6709];;FRURWEUNIB961;FR*SOD*E*WIIZ*171*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.06471;49.1137168;;;; +;;;;;;;;FRA16PWIIZ20812;FRCPIE6726685;Thourotte, Jean-Jaurès;;31 rue Jean-Jacques Kieffer 57230 Bitche;44001;[7.04749, 48.719];;FRURWEUNIB981;FR*SOD*E*WIIZ*170*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.00797;49.113535;;;; +;;;;;;;;FRA16PWIIZ21012;FRCPIE6726675;Breuil-le-Sec, Emile Victor;;Route de Saint-Médard 33160 Saint-Aubin-de-Médoc;44002;[7.06471, 49.1104];;FRURWEUNIB871;FR*SOD*E*WIIZ*170*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.02753;48.66115458;;;; +;;;;;;;;FRA16PWIIZ16111;FRS28E12907;Estrées-Saint-Denis, Piscine;;29 Avenue Eugène et Marc Dulout 33600 Pessac;44005;[7.00797, 49.0743];;FRURWEUNIB831;FR*SOD*E*WIIZ*168*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.06484;46.351146;;;; +;;;;;;;;FRA16PWIIZ21112;FRS88E14549;Guiscard, Place de Magny;;130 Avenue Charles de Gaulle 33200 Bordeaux;44006;[7.02753, 48.9976];;FRURWEUNIB891;FR*SOD*E*WIIZ*168*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.75706931;48.67408039;;;; +;;;;;;;;FRA16PWIIZ21111;FRS18E15051;Maignelay-Montigny, François Mitterrand;;297 Avenue d'Arès 33200 Mérignac;44007;[7.06484, 49.1129];;FRURWEUNIB8101;FR*SOD*E*WIIZ*167*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.36122;49.10941874;;;; +;;;;;;;;FRA16PWIIZ21212;FRS88E14548;Chiry-Ourscamp, Place Jehan Froisart;;95 Rue de la Gare 33290 Parempuyre;44010;[5.75706931, 45.16480908];;FRURWEUNIB841;FR*SOD*E*WIIZ*167*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2535821;47.562551;;;; +;;;;;;;;FRA16PWIIZ21211;FRCPIE6737895;Lassigny, Trésor Public;;1 Rue Aristide Briand 33150 Cenon;44012;[4.36122, 48.9579];;FRURWEUNIB531;FR*SOD*E*WIIZ*166*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.77214118;45.59161;;;; +;;;;;;;;FRA16PWIIZ21311;FRIONE40940;Jaux, Rue de la Gare;;1 bahr 33200 Bordeaux;44117;[3.2535821, 43.34597207];;FRURWEUNIB811;FR*SOD*E*WIIZ*166*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.33924538;-20.9288;;;; +;;;;;;;;FRA16PWIIZ21312;FRCPIE6736935;Margny-sur-Matz, Parking;;11 Avenue des Martyrs de la Resistance 33520 Bruges;44046;[2.77214118, 49.35462135];;FRURWEUNIB881;FR*SOD*E*WIIZ*165*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.11471684;49.114495;;;; +;;;;;;;;FRA16PWIIZ20412;FRCPIE6736885;Tricot, Rue Saint-Antoine;;142 Avenue du Docteur Albert Schweitzer 33600 Pessac;44048;[4.33924538, 48.95442304];;FRURWEUNIB821;FR*SOD*E*WIIZ*165*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.352533;43.06237424;;;; +;;;;;;;;FRA16PWIIZ20421;FRCPIE6736845;BELLEY Rue de la résistance;;57 Avenue de la Gare 33700 Bordeaux;44049;[6.11471684, 49.11512365];;FRURWEUNIB861;FR*SOD*E*WIIZ*164*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.11662159;-21.3245085;;;; +;;;;;;;;FRA16PWIIZ20411;FRCPIE6736275;Servigny-lès-Sainte-Barbe;;4 Quai Louis XVIII 33000 Bordeaux;44050;[4.352533, 48.973217];;FRURWEUNIB6132;FR*SOD*E*WIIZ*164*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.113817;-20.895464;;;; +;;;;;;;;FRA16PWIIZ20422;FRCPIE6726695;Ressons-sur-Matz, Rue du Moulin l'Heuillet;;35 Rue Gabriel Leglise 33200 Bordeaux;44051;[6.11662159, 49.1137168];;FRURWEUNIB6112;FR*SOD*E*WIIZ*163*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.72547177;46.10233755;;;; +;;;;;;;;FRA16PWIIZ20312;FRS18E20048;Saint-Jean-aux-Bois, Rue du Couvent;;80 Rue Des Peupliers 03300 Cusset;44052;[6.113817, 49.113535];;FRURWEUNIB6142;FR*SOD*E*WIIZ*179*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.435594;48.8443;;;; +;;;;;;;;FRA16PWIIZ20311;FRS18E11741;Maignelay-Montigny, Rue de l'Église;;Route De Thiers 63350 Maringues;44053;[7.72547177, 48.66115458];;FRURWEUNIB6122;FR*SOD*E*WIIZ*180*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.12032366;45.71411313;;;; +;;;;;;;;FRA16PWIIZ20111;FRS18E15031;Lacroix Saint-Ouen, Rue Jules Ferry;;102 Avenue Léo Lagrange 63300 Thiers;44054;[6.435594, 46.351146];;FRURWEUNIB6102;FR*SOD*E*WIIZ*194*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12215775;43.83706131;;;; +;;;;;;;;FRA16PWIIZ20112;FRCPIE6706125;Puget-sur-Argens, Société Joseph COSTAMAGNA;;89 Rue De L'industrie 74330 Epagny Metz-Tessy;44045;[7.12032366, 48.67408039];;FRURWEUNIB6111;FR*SOD*E*WIIZ*190*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.625849;49.91905333;;;; +;;;;;;;;FRA16PWIIZ20011;FRCPIE6706085;Sarreguemines, Centre Technique;;13 Route de Joigny 89710 Senan;44036;[6.12215775, 49.10941874];;FRURWEUNIB6141;FR*SOD*E*WIIZ*194*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.240314;50.42002379;;;; +;;;;;;;;FRA16PWIIZ20012;FRCPIE6706075;Puttelange-aux-Lacs, Place du Marché;;83 Boulevard De Paris 13003 Marseille;44032;[-1.625849, 47.562551];;FRURWEUNIB6101;FR*SOD*E*WIIZ*193*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.6346;-20.8928222;;;; +;;;;;;;;FRA16PWIIZ19912;FRIONE4094;Sarreguemines, Rue de la Montagne;;Chaussée de Marche 620, 5100 Wierde;44033;[5.240314, 45.59161];;FRURWEUNIB6121;FR*SOD*E*WIIZ*193*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.074826;43.30517;;;; +;;;;;;;;FRA16PWIIZ19911;FRCPIE6571185;Sarreguemines, Services Techniques;;Rue De L'expansion 6900 Marche-en-Famenne;44043;[55.6346, -20.9288];;FRURWEUNIB6131;FR*SOD*E*WIIZ*193*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.59244163;44.43558016;;;; +;;;;;;;;FRA16PWIIZ19811;FRIONE40190;Holving, Mairie;;14 Rue Gilles De Roberval 28630 Nogent-le-Phaye;44037;[7.074826, 49.114495];;FRURWEUNIB2032;FR*SOD*E*WIIZ*193*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.47332648;46.61455;;;; +;;;;;;;;FRA16PWIIZ19812;FRIONE41040;Hambach, Rue Robert Schuman;;3 Impasse De Pologne 17138 Puilboreau;44038;[0.59244163, 43.06237424];;FRURWEUNIB2041;FR*SOD*E*WIIZ*193*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.495491;46.0745;;;; +;;;;;;;;FRA16PWIIZ19711;FRFASE330950;Sarreguemines, Parking CASC;;3 Rue Léna Bernstein 51100 Reims;44041;[55.47332648, -21.3245085];;FRURWEUNIB2042;FR*SOD*E*WIIZ*193*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9670507;47.8882;;;; +;;;;;;;;FRA16PWIIZ19712;FRIONE4022;Sarreguemines, Place de la Gare;;Rond point de Baudre 50000 Saint Lô;44131;[55.495491, -20.895464];;FRURWEUNIB3141;FR*SOD*E*WIIZ*193*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.65466;47.9611;;;; +;;;;;;;;FRA16PWIIZ19611;FRIONE40220;Sarralbe, Quai de l'Albe;;Rue Antoine Parmentier 02100 Saint-Quentin;44119;[3.9670507, 46.10233755];;FRURWEUNIB3221;FR*SOD*E*WIIZ*193*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.84818957;44.13769312;;;; +;;;;;;;;FRA16PWIIZ21411;FRIONE4104;Hambach, Mairie;;2 Route De Presles 02200 Soissons;44169;[2.65466, 48.8443];;FRURWEUNIB3231;FR*SOD*E*WIIZ*192*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.83675553;45.25527961;;;; +;;;;;;;;FRA16PWIIZ21412;FRIENE008601;Sarreguemines, Place de la Mairie;;1 Avenue Marc Hamet 51470 Saint-Memmie;44186;[4.84818957, 45.71411313];;FRURWEUNIB3291;FR*SOD*E*WIIZ*192*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.08563248;16.24180386;;;; +;;;;;;;;FRA16PWIIZ21512;FRCPIE6736515;Sarreguemines, Hôpital;;1 Avenue Henri Adnot 60200 Compiègne;44187;[4.83675553, 43.83706131];;FRURWEUNIB32101;FR*SOD*E*WIIZ*191*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.90284255;49.11970351;;;; +;;;;;;;;FRA16PWIIZ22311;FRCPIE6737525;Rémering-lès-Puttelange, Mairie;;39 Avenue Louis Bréguet 78140 Vélizy-Villacoublay;44188;[1.08563248, 49.91905333];;FRURWEUNIB32131;FR*SOD*E*WIIZ*191*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.46482086;50.1938;;;; +;;;;;;;;FRA16PWIIZ23112;FRCPIE6736995;Fénétrange, Parking Remparts;;139 rue des Entrepreneurs 50400 Granville;44189;[3.90284255, 50.42002379];;FRURWEUNIB3261;FR*SOD*E*WIIZ*190*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.95892;49.2982;;;; +;;;;;;;;FRA16PWIIZ23111;FRCPIE6736975;Sarrebourg, Mairie;;Technopôle 58470 Magny-Cours;44192;[55.46482086, -20.8928222];;FRURWEUNIB3321;FR*SOD*E*WIIZ*190*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.13106762;49.3215;;;; +;;;;;;;;FRA16PWIIZ23011;FRCPIE6736525;Troisfontaines, Moselle Sud;;840 Cote De La Justice 77100 Mareuil-lès-Meaux;44193;[1.95892, 43.30517];;FRURWEUNIB3331;FR*SOD*E*WIIZ*181*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.315211;49.4799;;;; +;;;;;;;;FRA16PWIIZ23012;FRIENE008602;Sarrebourg, Parking Covoiturage;;7 Boulevard De L'europe 28500 Vernouillet;44194;[0.13106762, 44.43558016];;FRURWEUNIB3381;FR*SOD*E*WIIZ*190*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.09795;49.438;;;; +;;;;;;;;FRA16PWIIZ22912;FRCPIE6665205;Sarreguemines, Rue des Chèvres;;Avenue Des Dessus De Lives 5101 Namur;44195;[0.315211, 46.61455];;FRURWEUNIB33121;FR*SOD*E*WIIZ*190*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.23131;49.3573;;;; +;;;;;;;;FRA16PWIIZ22911;FRIENE005302;Woustviller, Mairie;;37 rue DE PRES 27950 ST MARCEL;44196;[4.09795, 46.0745];;FRURWEUNIB33151;FR*SOD*E*WIIZ*189*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.23984;49.3047;;;; +;;;;;;;;FRA16PWIIZ22812;FRIENE005301;Sarralbe, Hôpital;;D940 62180 Rang-du-Fliers;44197;[7.23131, 47.8882];;FRURWEUNIB3371;FR*SOD*E*WIIZ*189*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.09615459;49.2995;;;; +;;;;;;;;FRA16PWIIZ22811;FRIONE4019;Sarreguemines, Poste;;Rue Du Château 67600 Baldenheim;44185;[7.23984, 47.9611];;FRURWEUNIB3351;FR*SOD*E*WIIZ*188*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.39631194;45.505937;;;; +;;;;;;;;FRA16PWIIZ22612;FRTNMETERRA54012;Saint-Martin-d'Hères, Rue du Béal;;Route de Cabasse 83170 Brignoles;44178;[4.09615459, 44.13769312];;FRURWEUNIB3361;FR*SOD*E*WIIZ*188*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.5681025;42.78322046;;;; +;;;;;;;;FRA16PWIIZ22611;FRCPIE6639505;Châlons-en-Champagne, Haute-Mère-Dieu;;4 L’Avenue Marchande 57520 Grosbliederstroff;44172;[6.39631194, 45.25527961];;FRURWEUNIB3391;FR*SOD*E*WIIZ*187*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.35787921;49.39504655;;;; +;;;;;;;;FRA16PWIIZ22511;FRCPIE6639495;Béziers, Rue André Salmon;;35 rue de la Gare 75019 Paris;44173;[-61.5681025, 16.24180386];;FRURWEUNIB3211;FR*SOD*E*WIIZ*187*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.26296;45.89946517;;;; +;;;;;;;;FRA16PWIIZ22512;FRCPIE6639455;La-Croix-Saint-Ouen, 331 Rue des Longues Raies;;Rue Des Monts Richards 61100 Flers;44174;[6.35787921, 49.11970351];;FRURWEUNIB32111;FR*SOD*E*WIIZ*185*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8008;-21.3238889;;;; +;;;;;;;;FRA16PWIIZ22411;FRIENE006702;Châlons-en-Champagne, Avenue de Paris;;114-116 Avenue Des Pyrénées 33140 Villenave-d'Ornon;44175;[3.26296, 50.1938];;FRURWEUNIB3281;FR*SOD*E*WIIZ*183*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.69736;43.171142;;;; +;;;;;;;;FRA16PWIIZ22412;FRIENE006701;Scy-Chazelles rue du Saint-Quentin;;71 Impasse De La Bourgade 31670 Labège;44176;[2.8008, 49.2982];;FRURWEUNIB3161;FR*SOD*E*WIIZ*183*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.88313;49.11464708;;;; +;;;;;;;;FRA16PWIIZ22312;FRS51E4917;Châlons en Champagne , Avenue Ampère;;2 Av. François Mitterrand 33700 Mérignac;44179;[2.69736, 49.3215];;FRURWEUNIB3171;FR*SOD*E*WIIZ*182*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.87829;45.8393;;;; +;;;;;;;;FRA16PWIIZ21511;FRIONE42155;Scy-Chazelles, rue de l'Esplanade;;65 Jean Jaurès 33150 Cenon;44180;[2.88313, 49.4799];;FRURWEUNIB3191;FR*SOD*E*WIIZ*182*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.71831;48.08101062;;;; +;;;;;;;;FRA16PWIIZ22212;FRS18E14680;Scy-Chazelles, rue de Crimée;;9 Place des Capucins 33800 Bordeaux;44182;[2.87829, 49.438];;FRURWEUNIB3151;FR*SOD*E*WIIZ*181*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5354;47.956663;;;; +;;;;;;;;FRA16PWIIZ22211;FRSHEE68;Vendenheim, Rue du Commerce;;63 cours de verdun bordeaux 33000 Bordeaux;44183;[2.71831, 49.3573];;FRURWEUNIB31111;FR*SOD*E*WIIZ*185*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.64194;46.00356;;;; +;;;;;;;;FRA16PWIIZ22111;FRIONE45210;Anthy-sur-Léman, Satoriz;;33 Rue de la Béchade 33000 Bordeaux;44199;[2.5354, 49.3047];;FRURWEUNIB3131;FR*SOD*E*WIIZ*113*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.856848;49.24620227;;;; +;;;;;;;;FRA16PWIIZ22112;FRIONE4521;Troisfontaines, Schott VTF;;34 Avenue du Maréchal de Lattre de Tassigny 33700 Mérignac;44216;[2.64194, 49.2995];;FRURWEUNIB3121;FR*SOD*E*WIIZ*130*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.03399435;48.436511;;;; +;;;;;;;;FRA16PWIIZ22012;FRSHEE70;Scy-Chazelles, rue de la Passerine;;12 Quai de la Monnaie 33800 Bordeaux;44212;[4.856848, 45.505937];;FRURWEUNIB31101;FR*SOD*E*WIIZ*47*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.17950063;48.3396;;;; +;;;;;;;;FRA16PWIIZ22011;FRSHEE69;Scipitternall, Nozay;;Cours du Quebec 33000 Bordeaux;44213;[3.03399435, 42.78322046];;FRURWEUNIB32121;FR*SOD*E*WIIZ*46*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.11762293;49.508633;;;; +;;;;;;;;FRA16PWIIZ21911;FRCPIE6737655;Bourgoin-Jallieu, rue Georges Charpak;;25 Place de la Victoire 33000 Bordeaux;44214;[1.17950063, 49.39504655];;FRURWEUNIB31121;FR*SOD*E*WIIZ*45*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.44710048;50.27924346;;;; +;;;;;;;;FRA16PWIIZ21912;FRIONE4520;Speedy Réunion, Sainte Suzanne;;140 Cours de l'Yser 33800 Bordeaux;44217;[6.11762293, 45.89946517];;FRURWEUNIB3111;FR*SOD*E*WIIZ*45*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.527067;50.56336763;;;; +;;;;;;;;FRA16PWIIZ21811;FRIONE45201;Speedy Sarreguemines, Rue du Maréchal Foch;;12 Rue Coudol 33110 Le Bouscat;44223;[55.44710048, -21.3238889];;FRURWEUNIB31131;FR*SOD*E*WIIZ*44*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.04512836;48.747559;;;; +;;;;;;;;FRA16PWIIZ21812;FRIONE45200;Gourdan-Polignan, Sport 2000;;bègles 213 victor hugo 33130 Be?gles;44224;[6.527067, 43.171142];;FRURWEUNIB3251;FR*SOD*E*WIIZ*44*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2107;48.128755;;;; +;;;;;;;;FRA16PWIIZ21711;FRN54E18776;St Denis, JCA;;1 eglise saint augustin bordeaux 33000 Bordeaux;44211;[7.04512836, 49.11464708];;FRURWEUNIB3271;FR*SOD*E*WIIZ*43*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.89764358;46.5526;;;; +;;;;;;;;FRA16PWIIZ21712;FRN54E18772;Saint-Germain-Lespinasse, Rue de Persigny;;2 Rue Honoré Picon 33100 Bordeaux;44201;[6.2107, 45.8393];;FRURWEUNIB3241;FR*SOD*E*WIIZ*43*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.260456;48.689763;;;; +;;;;;;;;FRA16PWIIZ21611;FRN54E18744;Torcy, Star Food;;322 Route de Toulouse 33140 Villenave-d'Ornon;44206;[6.89764358, 48.08101062];;FRURWEUNIB33101;FR*SOD*E*WIIZ*42*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.508629;43.55204124;;;; +;;;;;;;;FRA16PWIIZ21612;FRCPIE6737665;Saint Fons, Rue Charles Martin;;5 Rue Robert Lateulade 33000 Bordeaux;44202;[7.260456, 47.956663];;FRURWEUNIB3341;FR*SOD*E*WIIZ*42*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.37956223;49.651056;;;; +;;;;;;;;FRA16PWIIZ19612;FRIONE41610;Eyragues, Station Astouin;;4 Cours de l'Argonne 33000 Bordeaux;44203;[5.508629, 46.00356];;FRURWEUNIB33111;FR*SOD*E*WIIZ*41*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.258089;44.1063329;;;; +;;;;;;;;FRA16PWIIZ19511;FRIONE4161;Avia Dieppe Marchand, Rue Louis de Bures;;118 Quai de Bacalan 33300 Bordeaux;44204;[0.37956223, 49.24620227];;FRURWEUNIB36121;FR*SOD*E*WIIZ*41*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.54018;48.271031;;;; +;;;;;;;;FRA16PWIIZ19512;FRIONE40900;Frameries, Sparkoh;;22 Avenue Marcel Dassault 33300 Bordeaux;44205;[7.258089, 48.436511];;FRURWEUNIB36151;FR*SOD*E*WIIZ*40*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.258675;47.2137;;;; +;;;;;;;;FRA16PWIIZ17211;FRCPIE6726615;Société Marchande de Carburant, Saint-Denis;;1 Place du Capitaine Dutertre 33000 Bordeaux;44209;[7.54018, 48.3396];;FRURWEUNIB36171;FR*SOD*E*WIIZ*40*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.78942227;49.447921;;;; +;;;;;;;;FRA16PWIIZ17911;FRCPIE6720155;Castelnaudary, Société Rivière;;87 quai des queyries bordeaux 33100 Bordeaux;44132;[1.258675, 49.508633];;FRURWEUNIB3681;FR*SOD*E*WIIZ*39*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.60349443;49.57855;;;; +;;;;;;;;FRA16PWIIZ17811;FRIONE4090;Samazan, rue Gutenberg;;210 Avenue Thiers 33100 Bordeaux;44168;[2.78942227, 50.27924346];;FRURWEUNIB36181;FR*SOD*E*WIIZ*39*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.678525;48.082;;;; +;;;;;;;;FRA16PWIIZ17812;FRCPIE6590315;Poitiers, Avenue de la Loge;;1 Rue Jacques Ellul 33800 Bordeaux;44133;[2.60349443, 50.56336763];;FRURWEUNIB36161;FR*SOD*E*WIIZ*38*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.603303;49.35392;;;; +;;;;;;;;FRA16PWIIZ17711;FRIONE40860;Vougy, Garage Sogemo;;23 Chemin Pomerol 33000 Bordeaux;44135;[7.678525, 48.747559];;FRURWEUNIB3691;FR*SOD*E*WIIZ*38*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.32366;48.681627;;;; +;;;;;;;;FRA16PWIIZ17712;FRCPIE6583555;Soultz-Haut-Rhin, Rue de la Marne;;281 Cours de la Libération 33400 Talence;44136;[6.603303, 48.128755];;FRURWEUNIB36131;FR*SOD*E*WIIZ*37*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.216214;49.0047;;;; +;;;;;;;;FRA16PWIIZ17611;FRIONE4086;Soultzmatt, Mairie;;66 Quai des Chartrons 33000 Bordeaux;44137;[5.32366, 46.5526];;FRURWEUNIB35271;FR*SOD*E*WIIZ*37*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.50990428;49.0471033;;;; +;;;;;;;;FRA16PWIIZ17612;FRCPIE6737625;Skoda Alès Laganier, boulevard Charles Péguy;;9 rue de l'Eglise 33200 Bordeaux;44128;[6.216214, 48.689763];;FRURWEUNIB36111;FR*SOD*E*WIIZ*36*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.642383;49.05647267;;;; +;;;;;;;;FRA16PWIIZ17511;FRTNMETERRA54013;Saint Julien Montdenis, SOREA;;Place de l'Eglise Saint-Augustin 33000 Bordeaux;44120;[1.50990428, 43.55204124];;FRURWEUNIB36191;FR*SOD*E*WIIZ*36*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0887877;48.681423;;;; +;;;;;;;;FRA16PWIIZ17512;FRCPIE6742495;Baie Mahaut, Rue Henri Becquerel;;Rue de la Pelouse de Douet 33000 Bordeaux;44122;[4.642383, 49.651056];;FRURWEUNIB36141;FR*SOD*E*WIIZ*35*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.052203;46.87560944;;;; +;;;;;;;;FRA16PWIIZ17412;FRCPIE6742485;Silly-sur-Nied, Mairie;;Rue du Grand Barail 33300 Bordeaux;44125;[4.0887877, 44.1063329];;FRURWEUNIB35181;FR*SOD*E*WIIZ*35*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.94978;48.417253;;;; +;;;;;;;;FRA16PWIIZ17411;FRIONE4034;Escaudoeuvres, rue d'En Bas;;Avenue Maryse Bastié 33520 Bruges;44126;[4.052203, 48.271031];;FRURWEUNIB35201;FR*SOD*E*WIIZ*34*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.072434;43.906685;;;; +;;;;;;;;FRA16PWIIZ17312;FRIONE40340;Béthisy-Saint-Pierre, Marché;;1 rue Carayon Latour 33000 Bordeaux;44127;[5.94978, 47.2137];;FRURWEUNIB35231;FR*SOD*E*WIIZ*34*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.65487;50.41575798;;;; +;;;;;;;;FRA16PWIIZ17311;FRIONE41565;Longueil-Sainte-Marie, ZAC Paris-Oise;;65 Cours Georges Clémenceau 33000 Bordeaux;44129;[1.072434, 49.447921];;FRURWEUNIB35251;FR*SOD*E*WIIZ*33*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.87468;44.9478;;;; +;;;;;;;;FRA16PWIIZ17212;FRIONE41560;Thourotte, Maréchal Leclerc;;Rue François de Sourdis 33000 Bordeaux;44130;[3.65487, 49.57855];;FRURWEUNIB35211;FR*SOD*E*WIIZ*33*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.134913;49.07656605;;;; +;;;;;;;;FRA16PWIIZ17112;FRTNME08910961;Choisy-au-Bac, Général Leclerc;;65 rue de la Bénauge 33100 Bordeaux;44140;[1.87468, 48.082];;FRURWEUNIB33141;FR*SOD*E*WIIZ*32*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.378329;46.757135;;;; +;;;;;;;;FRA16PWIIZ18011;FRTNME08912792;Longueil-Sainte-Marie, Mairie;;9 Allée Serr 33100 Bordeaux;44160;[6.134913, 49.35392];;FRURWEUNIB34101;FR*SOD*E*WIIZ*32*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.30075;48.71954046;;;; +;;;;;;;;FRA16PWIIZ17111;FRCPIE6741255;Brenouille, Jean Rostand;;Rue du Commandant Charcot 33290 Blanquefort;44155;[2.378329, 48.681627];;FRURWEUNIB33131;FR*SOD*E*WIIZ*46*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.05840231;50.334399;;;; +;;;;;;;;FRA16PWIIZ17011;FRCPIE6737035;Pontpoint, Sentier du Val des Haies;;5 Rue du Dr Rocaz 33000 Bordeaux;44156;[2.30075, 49.0047];;FRURWEUNIB34171;FR*SOD*E*WIIZ*47*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.05923348;48.92970706;;;; +;;;;;;;;FRA16PWIIZ17012;FRCPIE6737565;Vienne, Smile;;Avenue Abadie 33100 Bordeaux;44157;[6.05840231, 49.0471033];;FRURWEUNIB34121;FR*SOD*E*WIIZ*31*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.377849;44.93490781;;;; +;;;;;;;;FRA16PWIIZ16811;FRCPIE6737255;Le Barcarès, Station Montaner;;31 frere bonie 33000 Bordeaux;44158;[6.05923348, 49.05647267];;FRURWEUNIB34131;FR*SOD*E*WIIZ*48*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.02513243;44.948029;;;; +;;;;;;;;FRA16PWIIZ16812;FRCPIE6737185;Franqueville-Saint-Pierre, Station U;;34 Boulevard Pierre 1er 33000 Bordeaux;44154;[2.377849, 48.681423];;FRURWEUNIB34141;FR*SOD*E*WIIZ*62*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.452093;44.934925;;;; +;;;;;;;;FRA16PWIIZ16711;FRCPIE6736625;Anncey, Banque Laydernier;;56 Cours Saint-Louis 33000 Bordeaux;44163;[-1.02513243, 46.87560944];;FRURWEUNIB34111;FR*SOD*E*WIIZ*62*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.896488;48.6927;;;; +;;;;;;;;FRA16PWIIZ16712;FRCPIE6736575;OLA Energy Pierrefonds Réunion, Parking;;1 avenue vercingetorix bordeaux 33000 Bordeaux;44164;[1.452093, 48.417253];;FRURWEUNIB34161;FR*SOD*E*WIIZ*60*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.57130327;48.060483;;;; +;;;;;;;;FRA16PWIIZ16611;FRCPIE6736235;Cavalaire, Route nationale;;Allées de Tourny 33000 Bordeaux;44165;[4.896488, 43.906685];;FRURWEUNIB35241;FR*SOD*E*WIIZ*60*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.856136;47.898629;;;; +;;;;;;;;FRA16PWIIZ16612;FRCPIE6741505;Sarreguemines, Auberge de Saint Walfrid;;5 Rue de Caudéran 33000 Bordeaux;44150;[4.57130327, 50.41575798];;FRURWEUNIB34151;FR*SOD*E*WIIZ*59*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.10338269;49.0518;;;; +;;;;;;;;FRA16PWIIZ16512;FRCPIE6736615;Talloires-Montmin, Auberge du Père Bise;;18 Cours Georges Clemenceau 33000 Bordeaux;44142;[1.856136, 44.9478];;FRURWEUNIB34181;FR*SOD*E*WIIZ*59*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.479675;47.2309;;;; +;;;;;;;;FRA16PWIIZ16511;FRS18E17169;Gérardmer, Auberge du Pont des Fées;;90 Rue André Messager 33520 Bruges;44144;[6.10338269, 49.07656605];;FRURWEUNIB35191;FR*SOD*E*WIIZ*58*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.05011091;43.606863;;;; +;;;;;;;;FRA16PWIIZ16412;FRIENE007601;Westhalten, Rue de Rouffach;;9 eglise bordeaux 33200 Bordeaux;44145;[4.479675, 46.757135];;FRURWEUNIB35151;FR*SOD*E*WIIZ*58*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.936072;49.10163;;;; +;;;;;;;;FRA16PWIIZ16411;FRS18E18660;Auberge d'Aranc, Aranc;;4 Rue du Professeur Vézes 33300 Bordeaux;44146;[7.05011091, 48.71954046];;FRURWEUNIB35221;FR*SOD*E*WIIZ*57*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.64588345;47.269888;;;; +;;;;;;;;FRA16PWIIZ16312;FRIONE4052;Cormeilles, Rue de l'Abbaye;;Place Amédée Larrieu 33000 Bordeaux;44149;[2.936072, 50.334399];;FRURWEUNIB35281;FR*SOD*E*WIIZ*57*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.85226899;48.545;;;; +;;;;;;;;FRA16PWIIZ17912;FRIONE40520;Natzwiller, Auberge Metzger;;38 cours de verdun bordeaux 33000 Bordeaux;44153;[7.64588345, 48.92970706];;FRURWEUNIB3181;FR*SOD*E*WIIZ*56*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.856194;46.581404;;;; +;;;;;;;;FRA16PWIIZ18012;FRIONE4029;Kogenheim, Auberge Fritsch;;47 Rue de Compostelle 33170 Pessac;44151;[1.85226899, 44.93490781];;FRURWEUNIB3042;FR*SOD*E*WIIZ*56*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.851934;48.9103995;;;; +;;;;;;;;FRA16PWIIZ19412;FRIONE40290;Morgny-la-Pommeraye, Au Panier de la Pommeraye;;120 Boulevard George V 33000 Bordeaux;44152;[1.856194, 44.948029];;FRURWEUNIB2022;FR*SOD*E*WIIZ*55*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.96478;47.6413375;;;; +;;;;;;;;FRA16PWIIZ19031;FRCPIE6753115;Arras, Au Boulot de Mick;;267 Boulevard Godard 33110 Bordeaux;03310;[1.851934, 44.934925];;FRURWEUNIB3011;FR*SOD*E*WIIZ*55*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.624337;47.5152884;;;; +;;;;;;;;FRA16PWIIZ19411;FRCPIE6753105;Gonnehem, Au boulot de Mick;;204 Cours Saint-Louis 33300 Bordeaux;67447;[6.96478, 48.6927];;FRURWEUNIB2421;FR*SOD*E*WIIZ*54*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.161801;47.99722361;;;; +;;;;;;;;FRA16PWIIZ19322;FRIENE007602;Bernolsheim, Atolon Park Hôtel;;264 Boulevard Jean Jacques Bosc 33800 Bordeaux;87205;[-1.624337, 48.060483];;FRURWEUNIB2411;FR*SOD*E*WIIZ*54*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.004;47.74408337;;;; +;;;;;;;;FRA16PWIIZ19332;FRN54E18788;Cheniménil, Auberge du Ruxelier;;2 Rue des Boucheries 33000 Bordeaux;59279;[2.161801, 47.898629];;FRURWEUNIB2412;FR*SOD*E*WIIZ*53*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.04512;47.73803183;;;; +;;;;;;;;FRA16PWIIZ19331;FRFASE330970;Fronteneaud, Auto Park de Bresse;;51 Boulevard Albert 1er 33800 Bordeaux;06157;[4.004, 49.0518];;FRURWEUNIB2422;FR*SOD*E*WIIZ*53*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.916137;47.74316892;;;; +;;;;;;;;FRA16PWIIZ19341;FRCPIE6654415;Tomblaine, Avenue Eugène Pottier;;42 Avenue Roul 33400 Talence;77018;[2.04512, 47.2309];;FRURWEUNIB2512;FR*SOD*E*WIIZ*52*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.073204;45.71597843;;;; +;;;;;;;;FRA16PWIIZ19342;FRCPIE6693455;Labège, Route de Baziège la Lauragaise;;75 Rue Furtado 33800 Bordeaux;84017;[3.916137, 43.606863];;FRURWEUNIB2522;FR*SOD*E*WIIZ*52*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.498943;48.5401;;;; +;;;;;;;;FRA16PWIIZ19312;FRS51E4860;Poix-Terron, Auto Services Pixien;;166 Cours de l'Argonne 33800 Bordeaux;;[-1.073204, 49.10163];;FRURWEUNIB2521;FR*SOD*E*WIIZ*51*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.62645;43.952648;;;; +;;;;;;;;FRA16PWIIZ19321;FRN54E20708;Alès, Avenue Olivier de Serres;;95 Rue de Tauzia 33800 Bordeaux;;[-1.498943, 47.269888];;FRURWEUNIB2511;FR*SOD*E*WIIZ*51*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.320415;47.8026;;;; +;;;;;;;;FRA16PWIIZ19311;FRCPIE6654585;Troyes, Audi;;3 Avenue du Président François Mitterrand 33270 Floirac;;[7.62645, 48.545];;FRURWEUNIB2612;FR*SOD*E*WIIZ*51*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8814761;43.94223997;;;; +;;;;;;;;FRA16PWIIZ19211;FRS18E20597;Besançon, Audi Espace 3000;;419 eysines 33200 Bordeaux;;[3.320415, 46.581404];;FRURWEUNIB2622;FR*SOD*E*WIIZ*51*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0711867;43.94793351;;;; +;;;;;;;;FRA16PWIIZ19212;FRFASE331120;Rouen, rue de Constantine;;127 Avenue d'Arès 33200 Bordeaux;;[2.8814761, 48.9103995];;FRURWEUNIB2611;FR*SOD*E*WIIZ*50*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9398107;47.7927;;;; +;;;;;;;;FRA16PWIIZ19112;FRS18E14877;Laon, Audi;;122 Avenue de la République 33200 Bordeaux;;[3.0711867, 47.6413375];;FRURWEUNIB2621;FR*SOD*E*WIIZ*50*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.73299658;47.7986;;;; +;;;;;;;;FRA16PWIIZ19111;FRCPIE6654735;Artenay, As Hôtel;;310 Boulevard du Président Wilson 33200 Bordeaux;;[3.9398107, 47.5152884];;FRURWEUNIB2711;FR*SOD*E*WIIZ*49*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.64666767;47.7974;;;; +;;;;;;;;FRA16PWIIZ19021;FRCPIE6530035;Thionville, Arthur Bonnet;;70 Rue Pierre Brossolette 50110 Cherbourg-en-Cotentin;;[3.73299658, 47.99722361];;FRURWEUNIB2742;FR*SOD*E*WIIZ*49*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.59902024;47.8043;;;; +;;;;;;;;FRA16PWIIZ19051;FRCPIE6527975;Viry-Châtillon, avenue du Général de Gaulle;;Rue Rene Char 21000 Dijon;;[3.64666767, 47.74408337];;FRURWEUNIB2714;FR*SOD*E*WIIZ*48*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.53779346;47.62961024;;;; +;;;;;;;;FRA16PWIIZ18111;FRCPIE6634525;Andilly, Eglise;;Cours des Martyrs de la Résistance 21292 Genlis;;[3.59902024, 47.73803183];;FRURWEUNIB2311;FR*SOD*E*WIIZ*31*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.92307884;48.63519881;;;; +;;;;;;;;FRA16PWIIZ19041;FRFASE330250;Ancy-Dornot, Grand Rue;;Park. Rue Jean Jacques Collenot 21603 Semur-En-Auxois;;[3.53779346, 47.74316892];;FRURWEUNIB2312;FR*SOD*E*WIIZ*30*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.61761;47.591037;;;; +;;;;;;;;FRA16PWIIZ19011;FRCPIE6650145;Ancy-Dornot, Rue Lemal Perrin;;Parking Rue Carnot 21573 Saint-Seine-L'Abbaye;;[5.92307884, 45.71597843];;FRURWEUNIB2221;FR*SOD*E*WIIZ*64*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.80583629;47.591991;;;; +;;;;;;;;FRA16PWIIZ18912;FRIONE43600;Les Herbiers, avenue de la Maine;;Parking Salle des Fetes 21611 Sombernon;;[7.61761, 48.5401];;FRURWEUNIB2122;FR*SOD*E*WIIZ*15*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.56561;47.66949847;;;; +;;;;;;;;FRA16PWIIZ18911;FRCPIE6731545;Luisant, Alliance Automobile;;Parking Route de langres 21120 Til-Châtel;;[4.80583629, 43.952648];;FRURWEUNIB2011;FR*SOD*E*WIIZ*14*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.80886886;47.637421;;;; +;;;;;;;;FRA16PWIIZ18811;FRCPIE6654685;Avignon, Alectron energy;;Route de Dijon 21632 Thorey-En-Plaine;;[3.56561, 47.8026];;FRURWEUNIB35261;FR*SOD*E*WIIZ*13*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.81052113;47.589907;;;; +;;;;;;;;FRA16PWIIZ18812;FRN54E18861;Aiseau - Presles;;Avenue de la Gare 21607 Seurre;;[4.80886886, 43.94223997];;FRURWEUNIB2012;FR*SOD*E*WIIZ*13*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.56509;47.559339;;;; +;;;;;;;;FRA16PWIIZ18711;FRIONE40780;Parking Visiteurs Manoir;;Parking Rue Voltaire 21425 Montbard;;[4.81052113, 43.94793351];;FRURWEUNIB2031;FR*SOD*E*WIIZ*12*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.57738;47.591719;;;; +;;;;;;;;FRA16PWIIZ18712;FRIENE005002;Augny, Arthur Bonnet;;Route D'Avallon 21710 Vitteaux;;[3.56509, 47.7927];;FRURWEUNIB2112;FR*SOD*E*WIIZ*12*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.57466;47.586385;;;; +;;;;;;;;FRA16PWIIZ18511;FRIENE005001;Montchanin, Art Esthétique;;Place de la Libération 21663 Venarey-Les-Laumes;;[3.57738, 47.7986];;FRURWEUNIB2121;FR*SOD*E*WIIZ*11*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.55363;47.648974;;;; +;;;;;;;;FRA16PWIIZ18311;FRS41E6041;Sarrebourg, ZAC Terrasses de la Sarre;;Pl des Martyrs de la Résist 21496 Pontailler-Sur-Saone;;[3.57466, 47.7974];;FRURWEUNIB2111;FR*SOD*E*WIIZ*11*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.0881124;47.601045;;;; +;;;;;;;;FRA16PWIIZ18312;FRS41E6040;Fresnes les Montauban, Restaurant l'Aquarium;;Parking Place de L'Eglise 21492 Pommard;;[3.55363, 47.8043];;FRURWEUNIB2232;FR*SOD*E*WIIZ*10*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.71965817;47.634955;;;; +;;;;;;;;FRA16PWIIZ18212;FRIONE4130;Niederbronn-les-Bains, Aptar CSP Technologies;;Rue de la Tournelle 21532 Rouvres-En-Plaine;;[-3.0881124, 47.62961024];;FRURWEUNIB2222;FR*SOD*E*WIIZ*10*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.556566;47.590898;;;; +;;;;;;;;FRA16PWIIZ18211;FRIONE41300;Parking Visiteurs Andros;;Place de la République 21501 Pouilly-En-Auxois;;[7.71965817, 48.63519881];;FRURWEUNIB2242;FR*SOD*E*WIIZ*10*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.582926;47.586884;;;; +;;;;;;;;FRA16PWIIZ18112;FRS51E9587;Parking Visiteurs R&D;;Parking Place du 8 Mai 21425 Montbard;;[7.556566, 47.591037];;FRURWEUNIB2231;FR*SOD*E*WIIZ*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.49751204;47.575432;;;; +;;;;;;;;FRA16PWIIZ18512;FRS08E5764;Héming, Parking Communal;;Parking Rue des Citeaux 21412 Meursault;;[7.582926, 47.591991];;FRURWEUNIB2212;FR*SOD*E*WIIZ*9*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.5338922;47.561586;;;; +;;;;;;;;FRA16PWIIZ11312;FRIENE005802;Vern-sur-Seiche, rue du Passavent;;Parking Place Saint Vincent 21220 Morey-Saint-Denis;;[7.49751204, 47.66949847];;FRURWEUNIB2241;FR*SOD*E*WIIZ*9*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.583157;47.590753;;;; +;;;;;;;;FRA16PWIIZ13071;FRSHEE72;Aéroport d'Orléans;;Place de la Libération 21700 Nuits-Saint-Georges;;[7.5338922, 47.637421];;FRURWEUNIB2211;FR*SOD*E*WIIZ*8*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.509913;43.573451;;;; +;;;;;;;;FRA16PWIIZ4712;FRSHEE71;Ay champagne, Place du Jard;;Parking Rue de la Poste 21461 Nolay;;[7.583157, 47.589907];;FRURWEUNIB2722;FR*SOD*E*WIIZ*8*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.585879;45.03417647;;;; +;;;;;;;;FRA16PWIIZ4612;FRIENE005801;Vierzon, Axione;;Parking Salle Communale 21043 Baigneux-Les-Juifs;;[7.509913, 47.559339];;FRURWEUNIB2724;FR*SOD*E*WIIZ*7*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.565505;49.0355117;;;; +;;;;;;;;FRA16PWIIZ4511;FRIONE4078;Montpellier, Rue Samuel Morse;;Place des Martyrs 58160 Imphy;;[7.585879, 47.591719];;FRURWEUNIB2751;FR*SOD*E*WIIZ*7*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.460502;48.2822;;;; +;;;;;;;;FRA16PWIIZ4512;FRS37E449;Saint-Lô, Rue Jules Valles;;Rue du Chanoine Donin 21590 Savigny-Les-Beaune;;[7.565505, 47.586385];;FRURWEUNIB3061;FR*SOD*E*WIIZ*6*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.588663;48.2851;;;; +;;;;;;;;FRA16PWIIZ4411;FRCPIE6738725;Carquefou, rue du Nouveau Bêle;;Place de L'Iliotte 21038 Auxonne;;[7.460502, 47.648974];;FRURWEUNIB30101;FR*SOD*E*WIIZ*6*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.561453;48.288;;;; +;;;;;;;;FRA16PWIIZ4412;FRS08E5763;Aéroport de Strasbourg Parking P2;;Parking Pierre Meunier 21023 Arnay-Le-Duc;;[7.588663, 47.601045];;FRURWEUNIB3022;FR*SOD*E*WIIZ*5*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.56071;48.0207;;;; +;;;;;;;;FRA16PWIIZ4312;FRS08E5768;Avermes, Autopièces N7;;Rue Dominique Clement 21071 Beze;;[7.487105, 47.634955];;FRURWEUNIB3062;FR*SOD*E*WIIZ*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.521945;45.0524;;;; +;;;;;;;;FRA16PWIIZ4311;FRCPIE6608855;Quincy Voisins , av du Marechal Foch;;Place Charles de Gaulle 21200 Couchey;;[7.561453, 47.590898];;FRURWEUNIB3041;FR*SOD*E*WIIZ*4*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.527033;45.07409411;;;; +;;;;;;;;FRA16PWIIZ4212;FRIONE4023;Saint-Fargeau, Place de L Hotel de Ville;;Place Cours L'Abbe 21154 Chatillon-Sur-Seine;;[7.56071, 47.586884];;FRURWEUNIB3081;FR*SOD*E*WIIZ*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.5540214;47.66957673;;;; +;;;;;;;;FRA16PWIIZ4211;FRIONE40230;Sauvigny-Le-Bois, Place du Bicentenaire;;Place du General de Candras 21247 Epoisses;;[7.521945, 47.575432];;FRURWEUNIB30102;FR*SOD*E*WIIZ*3*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.19557;48.2156;;;; +;;;;;;;;FRA16PWIIZ4112;FRS41E403;Saint-Florentin, Place du Port;;Rue Rene Char 21000 Dijon;;[7.527033, 47.561586];;FRURWEUNIB3091;FR*SOD*E*WIIZ*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.09035865;48.6382;;;; +;;;;;;;;FRA16PWIIZ4111;FRCPIE6759675;Saint-Bris-Le-Vineux, 2 rue Docteur Tardieux;;Parking devant la Mairie 21086 Bligny-Les-Beaune;;[7.5540214, 47.590753];;FRURWEUNIB3031;FR*SOD*E*WIIZ*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.75110754;48.7223;;;; +;;;;;;;;FRA16PWIIZ4012;FRCPIE6654675;Champs-Sur-Yonne, Place Saint Louis;;Place du 8 Mai 1945 21087 Bligny-Sur-Ouche;;[4.19557, 43.573451];;FRURWEUNIB3092;FR*SOD*E*WIIZ*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.96797;48.7563;;;; +;;;;;;;;FRA16PWIIZ4011;FRCPIE6759465;Vallan, 5 rue de L Abreuvoir;;Rue Grande Rue 21320 Chateauneuf-En-Auxois;;[-0.09035865, 45.03417647];;FRURWEUNIB3051;FR*SOD*E*WIIZ*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.95026;48.7357;;;; +;;;;;;;;FRA16PWIIZ3912;FRS18E18818;B&B Hôtel Grésy-sur-Aix, Impasse Lavoisier;;Place de L'Europe 21150 Chassagne-Montrachet;;[6.75110754, 49.0355117];;FRURWEUNIB3071;FR*SOD*E*WIIZ*1*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.94854;48.743;;;; +;;;;;;;;FRA16PWIIZ3911;FRS18E18817;Bollène, B&B Hôtel;;Rue D'Argentine 21584 Saulieu;;[6.96797, 48.2822];;FRURWEUNIB3082;FR*SOD*E*WIIZ*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.61108;48.6874;;;; +;;;;;;;;FRA16PWIIZ3811;FRS51E4889;Avignon, Parking Palais des Papes;;Avenue de la Gare D'Eau 21554 Saint-Jean-De-Losne;;[6.95026, 48.2851];;FRURWEUNIB3072;FR*SOD*E*WIIZ*15*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.95608;48.7339;;;; +;;;;;;;;FRA16PWIIZ3812;FRS51E4888;Auxerre, Parking relais PEM;;Parking Rue de L'éGlise 21599 Selongey;;[6.94854, 48.288];;FRURWEUNIB3021;FR*SOD*E*WIIZ*30*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.28325956;48.7109;;;; +;;;;;;;;FRA16PWIIZ3711;FRCPIE6608865;Avignon, Parking Gare Centre;;Avenue du Champ de Foire 21606 Ladoix-Serrigny;;[6.61108, 48.0207];;FRURWEUNIB30111;FR*SOD*E*WIIZ*16*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.49739994;48.2166;;;; +;;;;;;;;FRA16PWIIZ3712;FRCPIE6608875;Avignon, Parking des Halles;;Place Villeneuve Moret 21317 Is-Sur-Tille;;[3.95608, 45.0524];;FRURWEUNIB3012;FR*SOD*E*WIIZ*29*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.94496;48.6916;;;; +;;;;;;;;FRA16PWIIZ3611;FRIONE4490;Auxerre, Parking Charmilles;;Parc Salengro 58000 Nevers;;[5.28325956, 45.07409411];;FRURWEUNIB2723;FR*SOD*E*WIIZ*29*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.0921;48.73824807;;;; +;;;;;;;;FRA16PWIIZ3612;FRS08E5756;Auxerre, St-Martin les St-Marien;;Impasse de la Grippe 58000 Nevers;;[7.49739994, 47.66957673];;FRURWEUNIB2761;FR*SOD*E*WIIZ*28*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.04263;48.6655;;;; +;;;;;;;;FRA16PWIIZ3512;FRIENE005502;Auxerre, parking des quais;;Parking Pierre Beregovoy 58000 Nevers;;[6.94496, 48.2156];;FRURWEUNIB2713;FR*SOD*E*WIIZ*28*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.95799;48.6767;;;; +;;;;;;;;FRA16PWIIZ3511;FRIENE005501;Auxerre, Gouraud;;Parking Rue du Docteur Monot 58230 Montsauche;;[7.0921, 48.6382];;FRURWEUNIB2731;FR*SOD*E*WIIZ*27*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.05345;46.7855;;;; +;;;;;;;;FRA16PWIIZ3411;FRIONE44900;Carnac, Village de Quelvezin,;;Place du Marche 58310 St-Amand-En-Puisaye;;[7.04263, 48.7223];;FRURWEUNIB2721;FR*SOD*E*WIIZ*27*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.09613;48.6192;;;; +;;;;;;;;FRA16PWIIZ3412;FRCPIE6665415;Mundolsheim, Airtec;;Place du 11 Novembre 58110 Rouy;;[6.95799, 48.7563];;FRURWEUNIB2712;FR*SOD*E*WIIZ*26*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.80403;46.89444002;;;; +;;;;;;;;FRA16PWIIZ3312;FRIONE40445;Saint-Louis, Place De La Gare;;Place de la Resistance 58230 Planchez;;[7.05345, 48.7357];;FRURWEUNIB2762;FR*SOD*E*WIIZ*26*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.06064;48.5968;;;; +;;;;;;;;FRA16PWIIZ3311;FRIONE43250;Huningue, Place De L'Ancien Hotel De Ville;;Parking de la Tour de Musique 58320 Pougues-Les-Eaux-;;[7.09613, 48.743];;FRURWEUNIB2732;FR*SOD*E*WIIZ*25*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.10259;42.719918;;;; +;;;;;;;;FRA16PWIIZ3212;FRS18E10962;Kembs, Rue De L'Europe;;Parking Vauban 58140 Lormes;;[6.80403, 48.6874];;FRURWEUNIB2752;FR*SOD*E*WIIZ*25*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.94185;42.50669575;;;; +;;;;;;;;FRA16PWIIZ3211;FRTNME09911164;Rosenau, Rue De Kembs;;Avenue du Dr Dollet 58170 Luzy;;[7.06064, 48.7339];;FRURWEUNIB3052;FR*SOD*E*WIIZ*24*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.15556;42.477;;;; +;;;;;;;;FRA16PWIIZ4611;FRTNME08912228;Huningue, Rue Du Port;;Place de la Mairie 58000 St-Eloi;;[7.10259, 48.7109];;FRURWEUNIB2741;FR*SOD*E*WIIZ*24*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.05301864;49.1559;;;; +;;;;;;;;FRA16PWIIZ4711;FRTNME08912220;Buschwiller, 4 Rue De Hegenheim;;Rue Eugéne Boyer 58360 St-Honore-Les-Bains;;[6.94185, 48.2166];;FRURWEUNIB2921;FR*SOD*E*WIIZ*23*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.00442;44.610044;;;; +;;;;;;;;FRA16PWIIZ3111;FRTNME08912218;Huningue, Rue Du Marechal Joffre;;Epicerie 58300 St-Leger-Des-Vignes;;[7.15556, 48.6916];;FRURWEUNIB2931;FR*SOD*E*WIIZ*23*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.12927;43.66019118;;;; +;;;;;;;;FRA16PWIIZ4811;FRCPIE6678655;Saint-Louis, 9 Rue De Huningue;;Rue des Ecoles 58150 Pouilly-Sur-Loire;;[7.05301864, 48.73824807];;FRURWEUNIB2911;FR*SOD*E*WIIZ*22*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.65143;47.831799;;;; +;;;;;;;;FRA16PWIIZ6212;FRCPIE6678625;Sierentz, Chemin Tafelweg;;Place du Champ de Foire 58700 Premery;;[7.00442, 48.6655];;FRURWEUNIB2941;FR*SOD*E*WIIZ*22*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.27727;43.231781;;;; +;;;;;;;;FRA16PWIIZ6211;FRIONE4325;Village-Neuf, Pont Du Palmrain;;Place De La Gare 58200 Cosne-Cours-sur-Loire;;[7.12927, 48.6767];;FRURWEUNIB30112;FR*SOD*E*WIIZ*21*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.41478498;44.8623179;;;; +;;;;;;;;FRA16PWIIZ6011;FRCPIE6535085;Bartenheim, Rue De La Gare;;Parking Ch dela Croix Brunot 21277 Fontaine-Francaise;;[1.65143, 46.7855];;FRURWEUNIB3032;FR*SOD*E*WIIZ*21*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.73546;48.8965;;;; +;;;;;;;;FRA16PWIIZ6012;FRFASE330980;Saint-Louis, Parking General Cassagnou;;Avenue du Général de Gaulle 21292 Genlis;;[6.27727, 48.6192];;FRURWEUNIB1021;FR*SOD*E*WIIZ*20*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.453555;43.348384;;;; +;;;;;;;;FRA16PWIIZ5911;FRFASE330981;Saint-Louis, 17 Rue Théo Bachmann;;Place Pouyat 58250 Fours;;[-1.41478498, 46.89444002];;FROTHELVPR542;FR*SOD*E*WIIZ*20*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.31865954;43.80998863;;;; +;;;;;;;;FRA16PWIIZ5912;FRCPIE6699815;Hesingue, 1 Rue Du Bon Coin;;Place du General de Gaulle 58200 Cosne-Sur-Loire;;[7.73546, 48.5968];;FROTHELVPR2182;FR*SOD*E*WIIZ*19*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.20069;47.76883595;;;; +;;;;;;;;FRA16PWIIZ5811;FRCPIE6696725;Hegenheim, Rue De Bourgfelden;;Rue du Fournil 58470 Magny-Cours;;[9.453555, 42.719918];;FROTHELVPR221;FR*SOD*E*WIIZ*19*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.65478;47.8386646;;;; +;;;;;;;;FRA16PWIIZ5812;FRCPIE6696715;Saint-Louis, Rue Du Ballon;;Place St Louis 58180 Fourchambault;;[9.31865954, 42.50669575];;FROTHELVPR2101;FR*SOD*E*WIIZ*19*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.128946;47.23002;;;; +;;;;;;;;FRA16PWIIZ5711;FRIONE40440;Route de Nimes, Bazarland;;Place Gambetta 58220 Donzy;;[9.20069, 42.477];;FROTHELVPR292;FR*SOD*E*WIIZ*19*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.41874822;50.51542;;;; +;;;;;;;;FRA16PWIIZ5712;FRS18E9783;Coutras, ZI Eygreteau Public;;Rue Du Champ De Foire 58310 Bouhy;;[6.65478, 49.1559];;FROTHELVPR211;FR*SOD*E*WIIZ*18*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.688721;49.199265;;;; +;;;;;;;;FRA16PWIIZ5611;FRCPIE6685065;Lixing-lès-Saint-Avold, Rue de Metz;;Champ de la Porte 58660 Coulanges Les Nevers;;[-1.128946, 44.610044];;FROTHELVPR2202;FR*SOD*E*WIIZ*18*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.076645;49.1471;;;; +;;;;;;;;FRA16PWIIZ5612;FRS55E12457;Saint-Dié, Chemin du Coucheux;;Rue du Gue 89100 Saligny;;[1.41874822, 43.66019118];;FROTHELVPR262;FR*SOD*E*WIIZ*17*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.58571634;42.53316786;;;; +;;;;;;;;FRA16PWIIZ5512;FRCPIE6580395;Saint-Dié, Quai du Maréchal Leclerc;;Rue de L Eglise 89100 Nailly;;[-0.688721, 47.831799];;FROTHELVPR252;FR*SOD*E*WIIZ*17*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.18462;47.27715089;;;; +;;;;;;;;FRA16PWIIZ5511;FRCPIE6580385;Saint Dié, rue des Capucins;;Rue Dr Courtois 89190 Saint-Maurice-Aux-Riches-Hommes;;[0.076645, 43.231781];;FROTHELVPR2131;FR*SOD*E*WIIZ*16*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.397154;49.1776;;;; +;;;;;;;;FRA16PWIIZ5412;FRIONE4473;Saint-Étienne-lès-Remiremont, Mairie;;20 Rue de la République 89150 Saint-Valerien;;[-0.58571634, 44.8623179];;FROTHELVPR241;FR*SOD*E*WIIZ*64*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.33669653;49.0861;;;; +;;;;;;;;FRA16PWIIZ5411;FRIONE44730;Saint-Germain-Laprade, Garage Fraisse;;24 Rue du Champ du Cerf 89100 Subligny;;[2.18462, 48.8965];;FROTHELVPR2132;FR*SOD*E*WIIZ*65*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.61389631;49.0829;;;; +;;;;;;;;FRA16PWIIZ5312;FRIENE003601;Saint-Just-de-Claix, Rue des Aros;;1 Place du Moment 89100 Soucy;;[-1.397154, 43.348384];;FROTHELVPR2142;FR*SOD*E*WIIZ*130*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.71117858;49.0758;;;; +;;;;;;;;FRA16PWIIZ5311;FRIENE003602;Saint-Léonard, rue des Jardins;;7 Avenue Aristide Briand 89100 Paron;;[4.33669653, 43.80998863];;FROTHELVPR231;FR*SOD*E*WIIZ*114*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.937185;49.1282;;;; +;;;;;;;;FRA16PWIIZ5212;FRCPIE6677615;Abreschviller, Gal. Rampont;;4 Rt du Miroir 89320 Theil-Sur-Vanne;;[1.61389631, 47.76883595];;FROTHELVPR261;FR*SOD*E*WIIZ*232*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.6225;49.1435;;;; +;;;;;;;;FRA16PWIIZ5211;FRFASE331090;Sarrebourg, CdC Moselle Sud;;8 Rue de la Vallee 89340 Villeneuve-La-Guyard;;[1.71117858, 47.8386646];;FROTHELVPR222;FR*SOD*E*WIIZ*112*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.402562;49.129777;;;; +;;;;;;;;FRA16PWIIZ5121;FRIONE43590;Langatte, Etang du Stock;;Quai de la Republique 89140 Pont-Sur-Yonne;;[5.937185, 47.23002];;FROTHELVPR2192;FR*SOD*E*WIIZ*112*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.38581;49.1065;;;; +;;;;;;;;FRA16PWIIZ5111;FRIENE007502;Sarrebourg, Parking Cordeliers;;3 Rue de L'Hotel de Ville 89140 Sergines;;[2.6225, 50.51542];;FROTHELVPR2201;FR*SOD*E*WIIZ*111*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.83561702;49.1605;;;; +;;;;;;;;FRA16PWIIZ5122;FRIENE007501;Réding, Gare;;Place de la Mairie 89190 Villeneuve-L'Archeveque;;[-0.402562, 49.199265];;FROTHELVPR291;FR*SOD*E*WIIZ*111*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9743661;49.1669;;;; +;;;;;;;;FRA16PWIIZ5112;FRCPIE6618725;Moussey, Thomas Bata;;Place du Cerbouilly 89260 Thorigny-Sur-Oreuse;;[2.38581, 49.1471];;FROTHELVPR2151;FR*SOD*E*WIIZ*110*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.67412;47.71970516;;;; +;;;;;;;;FRA16PWIIZ5012;FRCPIE6501915;Sarrebourg, CineStar;;Rue Émile Loubet 89100 Saint-Martin-du-Tertre;;[2.83561702, 42.53316786];;FROTHELVPR271;FR*SOD*E*WIIZ*110*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.72042;48.523048;;;; +;;;;;;;;FRA16PWIIZ5011;FRCPIE6615295;Niderviller, Faïencerie;;Rue Paul Grappillard 89340 Saint-Agnan;;[5.9743661, 47.27715089];;FROTHELVPR282;FR*SOD*E*WIIZ*109*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.69759;43.66688431;;;; +;;;;;;;;FRA16PWIIZ4911;FRS88E16202;Saint-Léonard, rue de la Gare;;Rue Ernest Salmon 89100 Saint-Denis;;[6.67412, 49.1776];;FROTHELVPR131;FR*SOD*E*WIIZ*109*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.68403;43.2905;;;; +;;;;;;;;FRA16PWIIZ4912;FRCPIE6709175;Plaine-de-Walsch, Rehthal;;Place de L'Eglise 89100 Saint-Clement;;[6.72042, 49.0861];;FROTHELVPR132;FR*SOD*E*WIIZ*107*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.71039;42.672;;;; +;;;;;;;;FRA16PWIIZ4812;FRCPIE6709155;Sarrebourg, Gare;;3 Rue de la Republique 89100 Malay-Le-Grand;;[6.69759, 49.0829];;FROTHELVPR112;FR*SOD*E*WIIZ*107*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.68992;47.84359733;;;; +;;;;;;;;FRA16PWIIZ3112;FRIONE4359;Lorquin, Vosges;;6 Grande Rue 89320 Arces-Dilo;;[6.68403, 49.0758];;FROTHELVPR142;FR*SOD*E*WIIZ*106*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.704073;49.414058;;;; +;;;;;;;;FRA16PWIIZ3012;FRCPIE6502285;Troisfontaines, Station de Lavage;;Contre Allée Bd Marceau 89500 Villeneuve-Sur-Yonne;;[6.71039, 49.1282];;FROTHELVPR141;FR*SOD*E*WIIZ*106*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.70929;48.65873718;;;; +;;;;;;;;FRA16PWIIZ6411;FRCPIE6506505;Centre E.Leclerc, Saint-Maur Cap Sud;;Villeneuve La Guyard, Parking de la gare 89340 Villeneuve-la-Guyard;;[6.68992, 49.1435];;FROTHELVPR111;FR*SOD*E*WIIZ*103*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.73917;47.177474;;;; +;;;;;;;;FRA16PWIIZ1512;FRIENE008802;Saint-Nicolas-de-Port;;Rue Du Général De Gaulle 89140 Vinneuf;;[6.704073, 49.129777];;FROTHELVPR122;FR*SOD*E*WIIZ*103*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.71804;48.176019;;;; +;;;;;;;;FRA16PWIIZ1412;FRTNME18B92447;Montreverd, Parking;;Place de L Eglise 89320 Cerisiers;;[6.70929, 49.1065];;FROTHELVPR2122;FR*SOD*E*WIIZ*103*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.94082796;43.99147145;;;; +;;;;;;;;FRA16PWIIZ1311;FRTNME18B92392;Samins, Marché Gare Strasbourg;;4 Place de la Fontaine 89400 Bussy-En-Othe;;[6.73917, 49.1605];;FROTHELVPR2121;FR*SOD*E*WIIZ*103*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.73905;45.994531;;;; +;;;;;;;;FRA16PWIIZ1312;FRS51E12701;San-Martino-di-Lota, Hôtel Pietracap;;Abords de la Place Garibaldi 89100 Sens;;[6.71804, 49.1669];;FROTHELVPR251;FR*SOD*E*WIIZ*102*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.80023166;48.15970379;;;; +;;;;;;;;FRA16PWIIZ1212;FRCPIE6713095;Restaurant Accendi Pipa;;Place des Jacobins 89100 Sens;;[1.94082796, 47.71970516];;FROTHELVPR2171;FR*SOD*E*WIIZ*102*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.4044;48.8517;;;; +;;;;;;;;FRA16PWIIZ1211;FRCPIE6713075;Morosaglia, Sarl In Terra Corsa;;Abords de la Place des Héros 89100 Sens;;[7.73905, 48.523048];;FROTHELVPR2102;FR*SOD*E*WIIZ*101*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.89513;48.25690735;;;; +;;;;;;;;FRA16PWIIZ1112;FRCPIE6711655;Porcelette, Saint-Avold;;Parking Gare Baudry 89100 Sens;;[3.80023166, 43.66688431];;FROTHELVPR272;FR*SOD*E*WIIZ*101*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.07067616;50.526286;;;; +;;;;;;;;FRA16PWIIZ1111;FRS51E17507;La Teste-de-Buch, AUTO 33;;Place Victor Hugo 89100 Sens;;[5.4044, 43.2905];;FROTHELVPR2162;FR*SOD*E*WIIZ*101*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.149003;50.520311;;;; +;;;;;;;;FRA16PWIIZ1022;FRIENE008801;Toulouse, AUTO NORD;;Quai Ernest landry 89100 Sens;;[2.89513, 42.672];;FROTHELVPR2141;FR*SOD*E*WIIZ*101*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12840509;50.520015;;;; +;;;;;;;;FRA16PWIIZ1021;FRCPIE6669225;Château-gontier, route de sablé;;Parking Intermarche 89690 Cheroy;;[7.07067616, 47.84359733];;FROTHELVPR242;FR*SOD*E*WIIZ*100*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.680396;47.608292;;;; +;;;;;;;;FRA16PWIIZ1012;FRCPIE6669215;Tarbes, Rue Maréchal Foch;;Rue des Vignes 89150 Villeneuve-La-Dondagre;;[1.149003, 49.414058];;FROTHELVPR212;FR*SOD*E*WIIZ*100*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.478806;44.8355;;;; +;;;;;;;;FRA16PWIIZ1011;FRFASE331101;Le Bouscat, AUTO PORT, 83 Boulevard Godard;;Place de la Mairie 89290 Villeblevin;;[6.12840509, 48.65873718];;FROTHELVPR2161;FR*SOD*E*WIIZ*99*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.33287519;48.27;;;; +;;;;;;;;FRA16PWIIZ912;FRFASE331100;Nanterre, Rexel;;Rue des Vieilles Chenevières 89190 Chigy;;[-1.680396, 47.177474];;FROTHELVPR452;FR*SOD*E*WIIZ*99*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.996826;43.3109;;;; +;;;;;;;;FRA16PWIIZ911;FRFASE33111;Cambo-les-Bains, Agence Cascino;;Place Lucien Pothier 89140 Cuy;;[6.478806, 48.176019];;FROTHELVPR511;FR*SOD*E*WIIZ*98*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.26102436;47.31288;;;; +;;;;;;;;FRA16PWIIZ811;FRN54E18777;Nîmes, Rue Etienne Lenoir;;Place du Four 89140 Courlon-Sur-Yonne;;[1.33287519, 43.99147145];;FROTHELVPR461;FR*SOD*E*WIIZ*98*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33566;49.066268;;;; +;;;;;;;;FRA16PWIIZ812;FRIONE41320;Tavers, Adefi;;17 Grand Rue 29260 La-Chapelle-Sur-Oreuse;;[2.996826, 45.994531];;FROTHELVPR491;FR*SOD*E*WIIZ*113*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.4192784;49.37899343;;;; +;;;;;;;;FRA16PWIIZ712;FRS51E5772;Meung-sur-Loire, Adefi;;Place de L Eglise 89150 Domats;;[3.26102436, 48.15970379];;FROTHELVPR422;FR*SOD*E*WIIZ*114*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.589047;48.68005243;;;; +;;;;;;;;FRA16PWIIZ711;FRIONE4132;B.T.S - La Planche, Franois;;33 Contre Allée Cd606 89100 Rosoy;;[2.33566, 48.8517];;FROTHELVPR481;FR*SOD*E*WIIZ*97*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.58715882;47.8647;;;; +;;;;;;;;FRA16PWIIZ611;FRCPIE6498985;Fouquières-lès-Béthune, Parking P+R;;Faubourg Saint Nicolas 89500 Villeneuve-Sur-Yonne;;[7.4192784, 48.25690735];;FROTHELVPR482;FR*SOD*E*WIIZ*115*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.595679;47.39066148;;;; +;;;;;;;;FRA16PWIIZ612;FRIONE4040;Villers-Bocage, Actalia;;Place des déportés 89190 Courgenay;;[1.589047, 50.526286];;FROTHELVPR462;FR*SOD*E*WIIZ*129*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.507444;48.0176;;;; +;;;;;;;;FRA16PWIIZ512;FRIONE40400;Asnières-sur-Oise, Abbaye de Royaumont;;Place Louis dubost 89600 Saint-Florentin;;[1.58715882, 50.520311];;FROTHELVPR522;FR*SOD*E*WIIZ*129*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.56499;46.17974498;;;; +;;;;;;;;FRA16PWIIZ511;FRCPIE6499325;Le Boulou, ZA Font de la Banquière;;Place de L'Europe 58400 La-Charite-Sur-Loire;;[1.595679, 50.520015];;FROTHELVPR531;FR*SOD*E*WIIZ*129*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.4014;47.719212;;;; +;;;;;;;;FRA16PWIIZ412;FRCPIE6676155;École-Valentin, Rue Saint-Christophe;;place du 19 mars 1962 71100 Chalon-Sur-Saone;;[7.507444, 47.608292];;FROTHELVPR441;FR*SOD*E*WIIZ*129*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.36746;45.73266223;;;; +;;;;;;;;FRA16PWIIZ411;FRCPIE6736725;Diesen, Champs;;quai de la poterne 71120 Charolles;;[-0.56499, 44.8355];;FROTHELVPR521;FR*SOD*E*WIIZ*128*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.4017;44.50620136;;;; +;;;;;;;;FRA16PWIIZ312;FRIONE43960;Valmont, Gare;;rue du 11 novembre 71140 Bourbon-Lancy;;[7.4014, 48.27];;FROTHELVPR532;FR*SOD*E*WIIZ*128*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.064793;48.8785;;;; +;;;;;;;;FRA16PWIIZ311;FRCPIE6658785;Valmont, Mairie;;Place saint jean 71350 Verdun Sur Le Doubs;;[5.36746, 43.3109];;FROTHELVPR492;FR*SOD*E*WIIZ*126*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.190163;47.877868;;;; +;;;;;;;;FRA16PWIIZ212;FRFASE330240;Folschviller, Poitou;;place du champ de Foire 71520 Tramayes;;[7.4017, 48.27];;FROTHELVPR421;FR*SOD*E*WIIZ*126*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.43988136;47.87713109;;;; +;;;;;;;;FRA16PWIIZ211;FRIONE4396;Saint-Avold, aire de covoiturage;;le bourg 71550 Anost;;[5.064793, 47.31288];;FROTHELVPR451;FR*SOD*E*WIIZ*126*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.83972872;47.8772;;;; +;;;;;;;;FRA16PWIIZ111;FRIONE43961;Saint-Avold, Zone Europort;;rue du bourg 71500 Bantanges;;[2.190163, 49.066268];;FROTHELVPR472;FR*SOD*E*WIIZ*126*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.22186;47.31530824;;;; +;;;;;;;;FRA16PWIIZ112;FRS37E1507;Régie Municipale, Saint Avold;;route de chalon 71400 Auxy;;[1.43988136, 49.37899343];;FROTHELVPR471;FR*SOD*E*WIIZ*126*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.20602047;45.7587;;;; +;;;;;;;;FRA16PWIIZ1411;FRTNME18B92614;Saint-Avold, place du Marché;;rue du pressoir 71640 Dracy Le Fort;;[2.83972872, 48.68005243];;FROTHELVPR411;FR*SOD*E*WIIZ*126*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.52746;44.841;;;; +;;;;;;;;FRA16PWIIZ1511;FRIONE4085;L'Hôpital, Gare;;place de la bascule 71520 Dompierre Les Ormes;;[2.22186, 47.8647];;FROTHELVPR431;FR*SOD*E*WIIZ*126*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.32510201;48.7846607;;;; +;;;;;;;;FRA16PWIIZ3011;FRIONE40850;Carling, Frontière;;place charles de gaulles 71360 Epinac;;[0.20602047, 47.39066148];;FROTHELVPR2111;FR*SOD*E*WIIZ*126*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.733194;45.0932;;;; +;;;;;;;;FRA16PWIIZ1611;FRS88E14422;La Ferté-Saint-Aubin, Parking Hôtel de Ville;;place de l'église 71130 Gueugnon;;[7.52746, 48.0176];;FROTHELVPR371;FR*SOD*E*WIIZ*125*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.86947191;49.19050326;;;; +;;;;;;;;FRA16PWIIZ2912;FRIONE4131;Illkirch-Graffenstaden, 550 Boulevard Sébastien Brant;;place de la poste 71640 Givry;;[5.32510201, 46.17974498];;FROTHELVPR2181;FR*SOD*E*WIIZ*125*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.52842377;48.858492;;;; +;;;;;;;;FRA16PWIIZ2911;FRIONE41310;Combaillaux, Mas de Gentil;;place de la grève 71160 Digoin;;[-1.733194, 47.719212];;FROTHELVPR2152;FR*SOD*E*WIIZ*123*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33274;-20.9961;;;; +;;;;;;;;FRA16PWIIZ2811;FRIONE4156;Marseille, Hôpitaux Universitaires;;place de la république 71490 Couches;;[0.86947191, 45.73266223];;FROTHELVPR232;FR*SOD*E*WIIZ*123*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.304028;-20.914099;;;; +;;;;;;;;FRA16PWIIZ2812;FRTNME18B92617;Perpignan, AMK;;parking du prado 71250 Cluny;;[3.52842377, 44.50620136];;FROTHELVPR2112;FR*SOD*E*WIIZ*122*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.31206953;-20.883698;;;; +;;;;;;;;FRA16PWIIZ2712;FRIONE43120;AG Garage, Willer-Sur-Thur;;place de l'église 71140 Cronat;;[2.33274, 48.8785];;FROTHELVPR281;FR*SOD*E*WIIZ*122*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.31188;-20.9385849;;;; +;;;;;;;;FRA16PWIIZ2711;FRS55E16758;Le Mesnil-Esnard, Pôle Formation UIMM Rouen Dieppe;;place de la gare 71160 Digoin;;[7.304028, 47.877868];;FROTHELVPR2172;FR*SOD*E*WIIZ*121*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.06919251;-20.9499;;;; +;;;;;;;;FRA16PWIIZ2612;FRS55E15801;ADH, route de l'Aviation;;place du champ de Foire 71290 Cuisery;;[7.31206953, 47.87713109];;FROTHELVPR2191;FR*SOD*E*WIIZ*121*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.129841;-20.9621;;;; +;;;;;;;;FRA16PWIIZ2611;FRS55E15800;La Montagne, Rue du Drouillard;;Place Gabriel Gauthier 71140 Saint-Aubin-sur-Loire;;[7.31188, 47.8772];;FROTHELVPR321;FR*SOD*E*WIIZ*121*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.56999;-20.9015;;;; +;;;;;;;;FRA16PWIIZ2512;FRS55E15798;Épinal, ABW Auto;;14 Avenue Du Général De Gaulle 71150 Chagny;;[5.06919251, 47.31530824];;FROTHELVPR332;FR*SOD*E*WIIZ*121*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.04132712;-21.28043;;;; +;;;;;;;;FRA16PWIIZ2511;FRS55E15795;ABM MONTAUBAN, Avenue de l'Europe;;place docteur henri ferrere 71170 Chaufailles;;[3.129841, 45.7587];;FROTHELVPR311;FR*SOD*E*WIIZ*120*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9325;-21.0401;;;; +;;;;;;;;FRA16PWIIZ2411;FRCPIE6672815;Charbonnières-les-Vieilles, A l'Aube des Volcans;;place du champ de Foire 71390 Buxy;;[-0.56999, 44.841];;FROTHELVPR331;FR*SOD*E*WIIZ*120*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.98651939;-21.257457;;;; +;;;;;;;;FRA16PWIIZ2412;FRIONE4312;Gron, Grande rue;;Place Pierre Saury 58110 Chatillon-En-Bazois;;[2.04132712, 48.7846607];;FROTHELVPR381;FR*SOD*E*WIIZ*116*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.925667;-21.3213;;;; +;;;;;;;;FRA16PWIIZ2311;FRS08E18824;Paris, Parking Marché Saint-Germain;;place du luminaire 71570 Chaintre;;[1.9325, 45.0932];;FROTHELVPR382;FR*SOD*E*WIIZ*116*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.6787;-20.9511;;;; +;;;;;;;;FRA16PWIIZ2312;FRS41E502;Kintzheim, Hôtel Cigoland;;rue mamby 71200 Le Creusot;;[5.98651939, 49.19050326];;FROTHELVPR312;FR*SOD*E*WIIZ*115*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.618326;-20.8982;;;; +;;;;;;;;FRA16PWIIZ2211;FRCPIE6580005;Touquet, Avenue Quentovic;;place schneider 71200 Le Creusot;;[2.925667, 48.858492];;FROTHELVPR372;FR*SOD*E*WIIZ*97*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.447557;-20.8856;;;; +;;;;;;;;FRA16PWIIZ2212;FRFASE330070;Touquet, Place Edouard VII;;place de la poste 71800 La Clayette;;[55.6787, -20.9961];;FROTHELVPR322;FR*SOD*E*WIIZ*94*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.64261895;-21.0381;;;; +;;;;;;;;FRA16PWIIZ2111;FRTNME18B92615;Touquet, Avenue de l'Hippodrome;;Place Du Marché 71880 Châtenoy-le-Royal;;[55.618326, -20.914099];;FROTHELVPR121;FR*SOD*E*WIIZ*65*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.3191;45.6899;;;; +;;;;;;;;FRA16PWIIZ2112;FRTNME09910787;Blotzheim, Track Complex;;41 Grande Rue 71590 Gergy;;[55.447557, -20.883698];;FROTHELVPR651;FR*SOD*E*WIIZ*79*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.3261;42.544;;;; +;;;;;;;;FRA16PWIIZ2012;FRS37E3632;Bordeaux, Parking Salinières;;6 Rue Pierre Et Marie Curie 60000 Beauvais;;[55.64261895, -20.9385849];;FROTHELVPR512;FR*SOD*E*WIIZ*78*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.49691;49.3569;;;; +;;;;;;;;FRA16PWIIZ2011;FRS37E1071;Châtenois, 44 Vieux Chemin de Sélestat;;89 Rue Des Droits De L'homme 60740 Saint-Maximin;;[55.3191, -20.9499];;FROTHELVPR672;FR*SOD*E*WIIZ*77*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.5014;49.3621;;;; +;;;;;;;;FRA16PWIIZ1921;FRS41E21130;Transdev Park Marseille - Euromed public;;Allée De La Cardamine 08000 La Francheville;;[55.3261, -20.9621];;FROTHELVPR661;FR*SOD*E*WIIZ*77*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.2237;43.321568;;;; +;;;;;;;;FRA16PWIIZ1912;FRIONE4489;Châtenois, Rue de Lorraine;;1 Avenue De La Défense Passive 80080 Amiens;;[55.49691, -20.9015];;FROTHELVPR652;FR*SOD*E*WIIZ*76*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.503491;-21.3598;;;; +;;;;;;;;FRA16PWIIZ1911;FRIONE44890;Dijon, MSH;;Place Du Paquier 71260 Lugny;;[55.5014, -21.28043];;FROTHELVPR682;FR*SOD*E*WIIZ*76*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.446;-21.0889;;;; +;;;;;;;;FRA16PWIIZ1922;FRCPIE6729915;Châteauform de Mery, Avenue Marcel Perrin;;2 Promenade Sainte-Marie 71100 Chalon-sur-Saône;;[55.2237, -21.0401];;FROTHELVPR671;FR*SOD*E*WIIZ*75*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.6487;-20.9323;;;; +;;;;;;;;FRA16PWIIZ1811;FRCPIE6531055;Châteauform de Rosay, Route de Lyons;;Rue Deguin 71400 Autun;;[55.503491, -21.257457];;FROTHELVPR662;FR*SOD*E*WIIZ*75*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.5675;49.18942764;;;; +;;;;;;;;FRA16PWIIZ1812;FRCPIE6697285;Fontenay-Tresigny, Châteauform des Prés d'Écoublay;;Place De La Mairie 71680 Crêches-sur-Saône;;[55.446, -21.3213];;FROTHELVPR681;FR*SOD*E*WIIZ*74*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.4701;50.514246;;;; +;;;;;;;;FRA16PWIIZ1712;FRFASE330080;Châteauneuf-sur-Loire, Rue Saint-Martial;;Place De L'église 71380 Saint-Marcel;;[55.6487, -20.9511];;FROTHELVPR541;FR*SOD*E*WIIZ*74*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.7171;48.9396452;;;; +;;;;;;;;FRA16PWIIZ1711;FRFASE331020;Gizeux, Rue du Château;;12 Rue Des Maranges 71150 Cheilly-lès-Maranges;;[55.5675, -20.8982];;FRS87EMB872512;FR*SOD*E*WIIZ*73*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.17805;-21.2831;;;; +;;;;;;;;FRA16PWIIZ1612;FRCPIE6645705;Neuf-Brisach, Place d'Armes;;Rue De La Brile 71990 La Grande-Verrière;;[55.4701, -20.8856];;FRS87EMB872412;FR*SOD*E*WIIZ*73*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.39025;50.52363179;;;; +;;;;;;;;FRA16PWIIZ6412;FRCPIE6645695;Ceyzeriat, Route de Jasseron;;2-4 Rue De L'ardelière 49070 Beaucouzé;;[55.7171, -21.0381];;FRS87EMB872411;FR*SOD*E*WIIZ*72*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1106;50.516639;;;; +;;;;;;;;FRA16PWIIZ6512;FRIONE4377;Grand-Fougeray, Parc des Lizardais;;89 Rue Auguste Martin 71100 Saint-Rémy;;[0.17805, 45.6899];;FRS87EMB872511;FR*SOD*E*WIIZ*72*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.10489;48.6713;;;; +;;;;;;;;FRA16PWIIZ13081;FRIONE43770;Oradour-sur-Vayres, U Express;;Rue de la Mairie 71570 La Chapelle-de-Guinchay;;[2.39025, 42.544];;FRS87EMB873411;FR*SOD*E*WIIZ*71*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.456722;48.6753;;;; +;;;;;;;;FRA16PWIIZ11411;FRCPIE6671585;Mende, Aérodrome de Mende-Brenou;;207 Rue Bernard De La Rochefoucault 45450 Fay-aux-Loges;;[6.1106, 49.3569];;FRS87EMB872311;FR*SOD*E*WIIZ*71*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.7659;43.64393;;;; +;;;;;;;;FRA16PWIIZ23212;FRCPIE6676145;Paris, Parking Transdev Pigalle;;Grand rue 71390 St Boil;;[6.10489, 49.3621];;FRS87EMB872612;FR*SOD*E*WIIZ*70*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.257;43.64235;;;; +;;;;;;;;FRA16PWIIZ11211;FRCPIE6724145;Ungersheim, Mairie;;Place Du Commandant Boidot 58500 Clamecy;;[2.456722, 43.321568];;FRS87EMB872712;FR*SOD*E*WIIZ*70*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.6423;50.52617;;;; +;;;;;;;;FRA16PWIIZ11212;FRFASE330490;Ungersheim, Salle des Fêtes;;Place Des Fusillés 58260 La Machine;;[55.7659, -21.3598];;FRS87EMB872312;FR*SOD*E*WIIZ*69*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.22362082;50.58494308;;;; +;;;;;;;;FRA16PWIIZ11112;FRCPIE6724055;Dijon, Halle des Sports;;Place De La Mairie 58390 Dornes;;[55.257, -21.0889];;FRS87EMB872012;FR*SOD*E*WIIZ*69*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.618406;43.365852;;;; +;;;;;;;;FRA16PWIIZ11111;FRCPIE6671685;Clermont-Ferrand, Turing 22;;Les Oudilles 58300 Toury-Lurcy;;[55.6423, -20.9323];;FRS87EMB872212;FR*SOD*E*WIIZ*68*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.91693937;43.6507;;;; +;;;;;;;;FRA16PWIIZ11012;FRCPIE6671695;Bordeaux, Parking Bourse;;Avenue de la Charité 58210 Varzy;;[2.22362082, 49.18942764];;FRS87EMB872211;FR*SOD*E*WIIZ*68*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.4001;43.95911;;;; +;;;;;;;;FRA16PWIIZ11011;FRIONE4021;Bordeaux, Parking Jean-Jaurès;;Parking Mairie 58270 St-Benin-D'Azy;;[1.618406, 50.514246];;FRS87EMB872111;FR*SOD*E*WIIZ*67*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.58046484;43.4146;;;; +;;;;;;;;FRA16PWIIZ10911;FRIONE40210;Saint-Quentin-en-Yvelines, Espace St Quentin;;Rue Pasteur 58330 St-Saulge;;[1.91693937, 48.9396452];;FRS87EMB872112;FR*SOD*E*WIIZ*67*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.57934;48.9351;;;; +;;;;;;;;FRA16PWIIZ10912;FRS55E12290;Argentat, Transport Billy;;Avenue du 8 Mai 58240 St-Pierre-Le-Moutier;;[55.4001, -21.2831];;FRS87EMB872812;FR*SOD*E*WIIZ*67*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.89333;47.44477797;;;; +;;;;;;;;FRA16PWIIZ10712;FRS28E17563;Treffert SAS , rue de la Jontière;;Parking Salle Polyvalente 58160 Sauvigny-Les-Bois;;[1.58046484, 50.52363179];;FRS87EMB872011;FR*SOD*E*WIIZ*67*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.88729;43.985588;;;; +;;;;;;;;FRA16PWIIZ10711;FRCPIE6758525;Châteauform de Crécy la Chapelle, Place Edouard Moustier;;Place de L'Eglise 58190 Tannay;;[1.57934, 50.516639];;FRS87EMB871911;FR*SOD*E*WIIZ*66*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.425368;48.5713;;;; +;;;;;;;;FRA16PWIIZ10621;FRIENE005902;TotalEnergies, Bras-Panon;;Impasse Georges Rochegrosse 58380 Lucenay-lès-Aix;;[5.89333, 48.6713];;FRS87EMB872711;FR*SOD*E*WIIZ*66*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.42556;48.55595014;;;; +;;;;;;;;FRA16PWIIZ10611;FRS28E12714;Sainte Suzanne, Burger King La Marine;;rue du 13e de ligne 58000 Nevers;;[5.88729, 48.6753];;FRS87EMB873013;FR*SOD*E*WIIZ*66*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.581165;45.97806508;;;; +;;;;;;;;FRA16PWIIZ10322;FRCPIE6696685;TotalEnergies, Lacaussade;;rue des quatre fils Aymond 58000 Nevers;;[1.425368, 43.64393];;FRS87EMB872811;FR*SOD*E*WIIZ*66*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.55983046;49.1841614;;;; +;;;;;;;;FRA16PWIIZ10311;FRCPIE6696695;TotalEnergies, La Marine;;Chemin de Halage 58430 Cercy-La-Tour;;[1.42556, 43.64235];;FRS87EMB873211;FR*SOD*E*WIIZ*78*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.247558;49.18391946;;;; +;;;;;;;;FRA16PWIIZ10321;FRCPIE6696705;TotalEnergies, Begue;;Place J.B.durbise 58420 Brinon-Sur-Beuvron;;[1.581165, 50.52617];;FRS87EMB873912;FR*SOD*E*WIIZ*79*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.51156;49.187323;;;; +;;;;;;;;FRA16PWIIZ10312;FRCPIE6696765;TotalEnergies, ZAC 2000;;Parking Francois Mitterand 58660 Coulanges-;;[5.55983046, 50.58494308];;FRS87EMB873421;FR*SOD*E*WIIZ*94*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.850875;49.20176712;;;; +;;;;;;;;FRA16PWIIZ10211;FRCPIE6608205;TotalEnergies, Moulin Joli;;Gare 58500 Clamecy;;[3.247558, 43.365852];;FRS87EMB873312;FR*SOD*E*WIIZ*80*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.11892;49.18574624;;;; +;;;;;;;;FRA16PWIIZ10212;FRCPIE6735385;TotalEnergies, Bd Sud;;Parking Mairie 58430 Arleuf;;[1.51156, 43.6507];;FRS87EMB873313;FR*SOD*E*WIIZ*93*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.25396;45.92521533;;;; +;;;;;;;;FRA16PWIIZ10122;FRCPIE6735855;TotalEnergies, La Châtoire;;Place du Champ de Foire 58800 Corbigny;;[4.850875, 43.95911];;FRS87EMB873311;FR*SOD*E*WIIZ*93*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5400952;45.96136862;;;; +;;;;;;;;FRA16PWIIZ10111;FRIENE005901;TotalEnergies, Théâtre;;Parking Rue de Veaugues 58200 Cosne-Sur-Loire;;[1.11892, 43.4146];;FRS87EMB873212;FR*SOD*E*WIIZ*92*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.889706;48.82510663;;;; +;;;;;;;;FRA16PWIIZ10112;FRCPIE6509805;TotalEnergies, Piscine;;Rue Jean Sallonnyer 58120 Château-Chinon Ville;;[2.25396, 48.9351];;FRS87EMB873213;FR*SOD*E*WIIZ*92*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.79375;45.96295378;;;; +;;;;;;;;FRA16PWIIZ10121;FRIONE40840;TotalEnergies, Pierrefond;;rue des tanneries 71460 St Gengoux Le National;;[-0.5400952, 47.44477797];;FRS87EMB872912;FR*SOD*E*WIIZ*92*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.30351457;47.778742;;;; +;;;;;;;;FRA16PWIIZ10011;FRIONE4084;TotalEnergies, Saint-André;;rue de Caudroyes 71640 Mercurey;;[4.889706, 43.985588];;FRS87EMB873113;FR*SOD*E*WIIZ*92*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.09001769;47.767776;;;; +;;;;;;;;FRA16PWIIZ10012;FRCPIE6630285;TotalEnergies, Ste-Marie-les-Cafés;;place du champ de Foire 71520 Matour;;[7.79375, 48.5713];;FRS87EMB873112;FR*SOD*E*WIIZ*91*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.91072536;47.684238;;;; +;;;;;;;;FRA16PWIIZ9911;FRCPIE6755645;TotalEnergies, Butor;;Parking salle des fêtes 71300 Mont St Vincent;;[3.30351457, 48.55595014];;FRS87EMB873111;FR*SOD*E*WIIZ*91*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.88038297;47.764535;;;; +;;;;;;;;FRA16PWIIZ9912;FRS88E16233;TotalEnergies, Saint-Benoit;;place de l'europe 71600 Paray Le Monial;;[3.09001769, 45.97806508];;FRS87EMB871811;FR*SOD*E*WIIZ*90*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.903634;49.206235;;;; +;;;;;;;;FRA16PWIIZ9812;FRS28E13906;Champniers, ZAC Montagnes Ouest;;place de l'église 71300 Montceau Les Mines;;[6.91072536, 49.1841614];;FRS87EMB872911;FR*SOD*E*WIIZ*90*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.92792894;49.18857569;;;; +;;;;;;;;FRA16PWIIZ9811;FRCPIE6757325;Vernet les Bains, Thermes;;place Irene Popard 71110 Marcigny;;[6.88038297, 49.18391946];;FRS87EMB871912;FR*SOD*E*WIIZ*89*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.89472258;49.20795323;;;; +;;;;;;;;FRA16PWIIZ11311;FRCPIE6696735;Thionville, Aire de covoiturage de Buchel;;parking de la gare 71500 Louhans;;[6.903634, 49.187323];;FRS87EMB871812;FR*SOD*E*WIIZ*89*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.80802051;48.87181854;;;; +;;;;;;;;FRA16PWIIZ11412;FRIONE43880;Thionville, Parking P+R Metzange;;Quai Lamartine 71000 Macon Centre;;[6.92792894, 49.20176712];;FRS87EMB87811;FR*SOD*E*WIIZ*88*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.94087598;48.9214597;;;; +;;;;;;;;FRA16PWIIZ9712;FRS55E6623;Villeneuve-Minervois, Tohmelec;;parking route de juliénas 71000 Macon Sud;;[6.89472258, 49.18574624];;FRS87EMB87711;FR*SOD*E*WIIZ*88*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.48433048;48.81953672;;;; +;;;;;;;;FRA16PWIIZ11512;FRCPIE6672145;TotalEnergies, Saint-Philippe;;parking route du chemin neuf OS 71000 Macon Nord;;[2.80802051, 45.92521533];;FRS87EMB87612;FR*SOD*E*WIIZ*87*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.94856318;48.85661682;;;; +;;;;;;;;FRA16PWIIZ12922;FRS88E17715;TotalEnergies, Tamarins;;route de Saint-Sernin 71200 St Sernin Du Bois;;[2.94087598, 45.96136862];;FRS87EMB87611;FR*SOD*E*WIIZ*87*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.874431;49.0103569;;;; +;;;;;;;;FRA16PWIIZ12921;FRS88E17716;TotalEnergies, Cambuston;;rue du port 71510 St Leger Sur Dheune;;[7.48433048, 48.82510663];;FRS87EMB873913;FR*SOD*E*WIIZ*86*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.016118;49.09737014;;;; +;;;;;;;;FRA16PWIIZ12912;FRS37E121;Belle-Eglise, Châteauform Saint Just;;route de plottes 71700 Tournus;;[2.94856318, 45.96295378];;FRS87EMB87511;FR*SOD*E*WIIZ*86*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.782903;49.19944;;;; +;;;;;;;;FRA16PWIIZ12911;FRFASE330220;Touquet, Avenue du Commandant Maurice Seneschal;;place du 8 mai 71330 St Germain Du Bois;;[1.874431, 47.778742];;FRS87EMB87512;FR*SOD*E*WIIZ*85*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.022384;49.1688363;;;; +;;;;;;;;FRA16PWIIZ12811;FRS28E13014;Ecquevilly, Châteauform Romainville;;Rue du Portail 71250 Salornay;;[2.016118, 47.767776];;FRS87EMB87412;FR*SOD*E*WIIZ*85*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.904417;45.313778;;;; +;;;;;;;;FRA16PWIIZ12812;FRIONE41370;TotalEnergies, Le Gol;;place de la mairie 71270 Pierre De Bresse;;[1.782903, 47.684238];;FRS87EMB87411;FR*SOD*E*WIIZ*84*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.89959369;50.38043065;;;; +;;;;;;;;FRA16PWIIZ12631;FRIENE006001;Touquet, Digue-promenade des Princes de Monaco;;rue le platre durand 71570 St Amour;;[2.022384, 47.764535];;FRS87EMB87311;FR*SOD*E*WIIZ*84*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.84535971;45.3234;;;; +;;;;;;;;FRA16PWIIZ12612;FRCPIE6696745;Touquet, Boulevard Jules Pouget;;Etang sur Arroux, Place du Mousseau 71190 Etang sur Arroux;;[6.904417, 49.206235];;FRS87EMB87312;FR*SOD*E*WIIZ*83*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.48075151;48.25635664;;;; +;;;;;;;;FRA16PWIIZ12642;FRCPIE6696755;Toul, Parking Michonette;;9 Rue Patrice Lumumba 34000 Montpellier;;[6.89959369, 49.18857569];;FRS87EMB87211;FR*SOD*E*WIIZ*83*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.48219259;45.33017124;;;; +;;;;;;;;FRA16PWIIZ12611;FRCPIE6699795;Toul, Ilôt des Teinturiers;;Avenue Georges De Fabry 13540 Aix-en-Provence;;[6.84535971, 49.20795323];;FRS87EMB87111;FR*SOD*E*WIIZ*82*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.27947071;45.29836569;;;; +;;;;;;;;FRA16PWIIZ12622;FRIENE006002;Toulouse, zone 2;;Avenue De La Résistance 09200 Saint-Girons;;[7.48075151, 48.87181854];;FRS87EMB87112;FR*SOD*E*WIIZ*82*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.31883777;45.29810533;;;; +;;;;;;;;FRA16PWIIZ12632;FRS88E17709;Toulouse, zone 1;;Chemin De La Grangefort 63500 Les Pradeaux;;[7.48219259, 48.9214597];;FRS87EMB871711;FR*SOD*E*WIIZ*81*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.03647947;48.3369;;;; +;;;;;;;;FRA16PWIIZ12641;FRS88E17710;Touquet, Boulevard de la Plage;;Route de Léoube 83230 Bormes-lès-Mimosas;;[7.27947071, 48.81953672];;FRS87EMB873911;FR*SOD*E*WIIZ*81*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.88027287;49.64518414;;;; +;;;;;;;;FRA16PWIIZ12621;FRCPIE6685205;Liège, 8 Allée de la Découverte;;Rue de Léoube 83230 Bormes-les-Mimosas;;[7.31883777, 48.85661682];;FRS87EMB87712;FR*SOD*E*WIIZ*80*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.927614;44.83122754;;;; +;;;;;;;;FRA16PWIIZ12512;FRN54E18768;Boujan-sur-Libron, Clinique le Val d'Orb;;50 Rue Pouge de Beau 33290 Ludon-Médoc;;[6.03647947, 49.0103569];;FRS87EMB87212;FR*SOD*E*WIIZ*232*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.93608326;50.644677;;;; +;;;;;;;;FRA16PWIIZ12511;FRCPIE6711185;Saint-Jean, Clinique de l'Union;;92 Rue De Monts 37250 Montbazon;;[5.88027287, 49.09737014];;FRS87EMB87812;FR*SOD*E*WIIZ*148*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.540882;50.64439773;;;; +;;;;;;;;FRA16PWIIZ12312;FRS88E15923;Le Pontet, rue des Hirondelles;;401 Château de la Mentone 83510 Saint-Antonin-du-Var;;[6.927614, 49.19944];;FRS87EMB871411;FR*SOD*E*OTHR*154*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4790376;50.7366;;;; +;;;;;;;;FRA16PWIIZ12311;FRCPIE6708765;Rieumes, Notre Dame;;57 Rue Principale 57810 Languimberg;;[6.93608326, 49.1688363];;FRS87EMB871512;FR*SOD*E*OTHR*154*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.537;45.29923357;;;; +;;;;;;;;FRA16PWIIZ12212;FRCPIE6708785;Groupe SMA - Colombes Village;;Route De Clermont 60660 Mello;;[6.540882, 45.313778];;FRS87EMB871712;FR*SOD*E*OTHR*154*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.41787466;48.25629235;;;; +;;;;;;;;FRA16PWIIZ12211;FRS28E14176;Angers, 9 Rue de l'Hirondelle;;28 Rue De La Libération 51500 Mailly-Champagne;;[3.4790376, 50.38043065];;FRS87EMB87911;FR*SOD*E*OTHR*154*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5362314;47.81158905;;;; +;;;;;;;;FRA16PWIIZ12121;FRS18E11231;Sorgues, Clinique ELSAN-Fontvert;;Rue Michel Delmas 89100 Sens;;[6.537, 45.3234];;FRS87EMB871513;FR*SOD*E*MB19*34*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.58031545;48.25024778;;;; +;;;;;;;;FRA16PWIIZ12111;FRS18E11232;Strasbourg, Clinique Rhéna;;Avenue Jean Delpech 89100 Sens;;[7.41787466, 48.25635664];;FRS87EMB871412;FR*SOD*E*MB19*53*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5753071;45.7829;;;; +;;;;;;;;FRA16PWIIZ12122;FRCPIE6643385;Provins, Gare avenue Jean Jaurès;;10 Allée Des Chênes 74100 Vétraz-Monthoux;;[6.5362314, 45.33017124];;FRS87EMB871413;FR*SOD*E*MB19*48*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.28853;46.31490206;;;; +;;;;;;;;FRA16PWIIZ12112;FRS88E16161;Combronde, EHPAD Les Orchis;;Place Charles De Gaulle 63240 Mont-Dore;;[6.58031545, 45.29836569];;FRS87EMB871511;FR*SOD*E*MB19*48*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.0463778;47.74958132;;;; +;;;;;;;;FRA16PWIIZ12011;FRS18E18199;Forbach, Conservatoire;;Aire De La Bigue, Autoroute 57 83160 La Valette-du-Var;;[6.5753071, 45.29810533];;FRS87EMB871211;FR*SOD*E*MB19*50*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.67303924;43.8428697;;;; +;;;;;;;;FRA16PWIIZ12012;FRCPIE6643815;Forbach, Parking CAFPF;;4 rue de Mulhouse 68180 Horbourg-Wihr;;[7.28853, 48.3369];;FRS87EMB871111;FR*SOD*E*MB19*50*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.014525;4.903192;;;; +;;;;;;;;FRA16PWIIZ11611;FRS18E18637;Forbach, Place Johann Fischart;;Route De Chambéry 38490 Les Abrets en Dauphiné;;[1.0463778, 49.64518414];;FRS87EMB87912;FR*SOD*E*MB19*51*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.01449823;-20.896466;;;; +;;;;;;;;FRA16PWIIZ11612;FRS18E20401;Stiring-Wendel, Parking Mairie;;5 rue Gosset 51100 Reims;;[-0.67303924, 44.83122754];;FRS87EMB871112;FR*SOD*E*MB19*51*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.132103;47.021884;;;; +;;;;;;;;FRA16PWIIZ11511;FRCPIE6734595;Forbach, Château Barrabino;;9 Rue Du Château 37120 Lémeré;;[3.014525, 50.644677];;FRS87EMB871012;FR*SOD*E*MB19*52*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.58357924;47.5493;;;; +;;;;;;;;FRA16PWIIZ9711;FRS18E18635;Les Ancizes-Comps, Union Musicale;;Château du Rouet 83490 Le Muy;;[3.01449823, 50.64439773];;FRS87EMB871011;FR*SOD*E*MB19*52*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.41847685;45.85201083;;;; +;;;;;;;;FRA16PWIIZ9411;FRS18E9697;Manzat, Parking Comcom;;Route De La Bâte 78730 Rochefort-en-Yvelines;;[3.132103, 50.7366];;FRS87EMB871212;FR*SOD*E*MB19*53*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8014065;45.17755777;;;; +;;;;;;;;FRA16PWIIZ6511;FRS51E5746;Bouxwiller, Parking de l'orangerie;;1 Rue De La Rolandière 38110 Faverges-de-la-Tour;;[6.58357924, 45.29923357];;FRA16EWIIZ14922;FR*SOD*E*MB19*56*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.43663421;43.6418;;;; +;;;;;;;;FRA16PWIIZ7912;FRS51E5747;Manzat, EHPAD Le Montel;;Rue Du Lavoir 60250 Thury-sous-Clermont;;[7.41847685, 48.25629235];;FRA16EWIIZ15111;FR*SOD*E*MB19*54*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.80697;43.6008;;;; +;;;;;;;;FRA16PWIIZ7812;FRS18E11266;Ardon, Place de la mairie;;2 Place de l'Eglise 78490 Le Tremblay-sur-Mauldre;;[3.8014065, 47.81158905];;FRA16EWIIZ15012;FR*SOD*E*MB19*56*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.83956101;45.66470871;;;; +;;;;;;;;FRA16PWIIZ7711;FRS18E11540;Marcilly-en-Villette, Gymnase;;427 Chemin De Chanzé 69490 Vindry-sur-Turdine;;[7.43663421, 48.25024778];;FRA16EWIIZ15011;FR*SOD*E*MB19*47*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.29364943;48.381631;;;; +;;;;;;;;FRA16PWIIZ7712;FRS18E11566;Ligny le Ribault, Centre bourg;;D 142 60157 Élincourt-Sainte-Marguerite;;[4.80697, 45.7829];;FRA16EWIIZ14912;FR*SOD*E*MB19*32*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.52577599;42.67651986;;;; +;;;;;;;;FRA16PWIIZ7611;FRS18E20413;Marcilly-en-Villette, Place de la mairie;;1 Rue Du Nid De Geai 78910 Béhoust;;[4.83956101, 46.31490206];;FRA16EWIIZ14911;FR*SOD*E*MB19*31*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-52.31936;48.65596157;;;; +;;;;;;;;FRA16PWIIZ7612;FRS28E13449;Forbach, rue Jules Verne;;2a Route De Saint-Germain 77930 Cély;;[7.29364943, 47.74958132];;FRA16EWIIZ14921;FR*SOD*E*MB19*31*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.475221;49.31773016;;;; +;;;;;;;;FRA16PWIIZ7512;FRS18E11221;Forbach, Gare SNCF parking ICE;;155 Avenue Général Leclerc 38200 Vienne;;[1.52577599, 43.8428697];;FRA16EWIIZ14812;FR*SOD*E*MB19*30*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.873812;48.436954;;;; +;;;;;;;;FRA16PWIIZ7511;FRCPIE6718575;Petite Rosselle, Place du Marché Bas;;Avenue Du Maréchal Juin 83980 Le Lavandou;;[-52.31936, 4.903192];;FRA16EWIIZ14811;FR*SOD*E*MB19*30*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.93575;48.63041976;;;; +;;;;;;;;FRA16PWIIZ7412;FRS18E20041;Ingwiller, rue du 11 novembre;;129 D 385 69620 Légny;;[55.475221, -20.896466];;FRA16EWIIZ14821;FR*SOD*E*MB19*29*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.05962027;45.118511;;;; +;;;;;;;;FRA16PWIIZ7411;FRS18E20042;Lichtenberg, 4 rue de l'Église;;Rue De Creis Er Prat 56240 Plouay;;[4.873812, 47.021884];;FRA16EWIIZ15212;FR*SOD*E*MB19*29*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.59336481;45.118791;;;; +;;;;;;;;FRA16PWIIZ7311;FRS51E14185;Graufthal, Rue principale;;27 Avenue Des Bruyères 69150 Décines-Charpieu;;[6.93575, 47.5493];;FRA16EWIIZ14712;FR*SOD*E*MB19*47*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.69559;48.092451;;;; +;;;;;;;;FRA16PWIIZ7312;FRS88E15929;La Petite-Pierre, Rue du Château;;Rue Jean-Baptise Lamarck 43700 Saint-Germain-Laprade;;[5.05962027, 45.85201083];;FRA16EWIIZ15112;FR*SOD*E*MB19*46*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.2638;46.7954;;;; +;;;;;;;;FRA16PWIIZ7212;FRS88E15904;Arnaville, Route de Novéant;;D 1201 74160 Saint-Julien-en-Genevois;;[1.59336481, 45.17755777];;FRA16EWIIZ15512;FR*SOD*E*MB19*29*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.1849276;49.29012164;;;; +;;;;;;;;FRA16PWIIZ7211;FRCPIE6708995;Mars la Tour , Rue du Château;;112 Avenue Général Leclerc 69300 Caluire-et-Cuire;;[3.69559, 43.6418];;FRA16EWIIZ15211;FR*SOD*E*MB19*38*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.377489;43.764;;;; +;;;;;;;;FRA16PWIIZ7112;FRIONE46920;Stiring-Wendel, Place Sainte-Marthe;;87 Rue Des Pieds Blancs 18230 Saint-Doulchard;;[1.2638, 43.6008];;FRA16EWIIZ15312;FR*SOD*E*MB19*32*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.63326643;45.9914;;;; +;;;;;;;;FRA16PWIIZ7111;FRIONE4692;Behren-lès-Forbach, Parking Mairie;;10 Boulevard D'antioche 17650 Saint-Denis-d'Oléron;;[1.1849276, 45.66470871];;FRA16EWIIZ15311;FR*SOD*E*MB19*33*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.60640752;48.8249;;;; +;;;;;;;;FRA16PWIIZ7011;FRS88E16173;Les Belleville, Les Ménuires, Rue des Bruyères;;Route De Bessan 34500 Béziers;;[-4.377489, 48.381631];;FRA16EWIIZ15411;FR*SOD*E*MB19*33*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.15731791;48.611211;;;; +;;;;;;;;FRA16PWIIZ7012;FRS88E16163;Petite-Forêt, Valmotors;;9 Avenue Pierre Sémard 69200 Vénissieux;;[2.63326643, 42.67651986];;FRA16EWIIZ15412;FR*SOD*E*MB19*34*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.408285;49.05670757;;;; +;;;;;;;;FRA16PWIIZ6912;FRIENE009302;Les Belleville, Avenue de la Croisette;;19-25 Avenue de Stalingrad 92700 Colombes;;[7.60640752, 48.65596157];;FRA16EWIIZ15511;FR*SOD*E*MB19*35*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.76347422;48.61325703;;;; +;;;;;;;;FRA16PWIIZ6911;FRS18E11272;Kintzheim, Hôtel Au Parc des Cigognes;;52 Rue De Sarreguemines 57400 Sarrebourg;;[1.15731791, 49.31773016];;FRA16EWIIZ15711;FR*SOD*E*MB19*35*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.973404;49.41753476;;;; +;;;;;;;;FRA16PWIIZ6812;FRS18E14015;Les Belleville, Parking P1 Grande rue;;2 Place De L'égalité 69480 Anse;;[-4.408285, 48.436954];;FRA16EWIIZ15712;FR*SOD*E*MB19*36*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.972122;46.330147;;;; +;;;;;;;;FRA16PWIIZ6811;FRS18E18238;Les Belleville, Parking P2 rue du Soleil;;Sphere Business Park, Z.3 Doornveld 165 1731 Zellik;;[7.76347422, 48.63041976];;FRA16EWIIZ15812;FR*SOD*E*MB19*36*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.692802;45.2798;;;; +;;;;;;;;FRA16PWIIZ6711;FRS18E14392;Bassemberg, Piscine;;Route D'ablemont 76730 Bacqueville-en-Caux;;[4.973404, 45.118511];;FRA16EWIIZ15811;FR*SOD*E*MB19*37*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.0456;47.58592667;;;; +;;;;;;;;FRA16PWIIZ6722;FRS18E11271;Vallée Carburant, Varneville Bretteville;;224 Chemin Rivière de la Cour 69620 Val d'Oingt;;[4.972122, 45.118791];;FRA16EWIIZ15911;FR*SOD*E*MB19*37*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.20183059;47.58522112;;;; +;;;;;;;;FRA16PWIIZ6712;FRIENE004101;Mérignac, VOLVO CAP NORD;;16 Chemin De Chardonnet 63960 Veyre-Monton;;[-1.692802, 48.092451];;FRA16EWIIZ15912;FR*SOD*E*MB19*38*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.29854;47.59067717;;;; +;;;;;;;;FRA16PWIIZ6721;FRIENE004102;Lambersart, Valauto borne accélérée;;15 Avenue Du Châter 69340 Francheville;;[-2.0456, 46.7954];;FRA16EWIIZ14412;FR*SOD*E*MB19*39*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.07607;42.740108;;;; +;;;;;;;;FRA16PWIIZ6611;FRS88E15927;Lambersart, Valauto borne rapide;;Place Monseigneur Ginisty 55100 Verdun;;[2.20183059, 49.29012164];;FRA16EWIIZ14711;FR*SOD*E*MB19*46*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75301;49.0263993;;;; +;;;;;;;;FRA16PWIIZ6622;FRIENE009301;Roncq, Valauto;;1 Avenue Des Oceanites 97410 Saint-Pierre;;[1.29854, 43.764];;FRA16EWIIZ13512;FR*SOD*E*MB19*39*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.722233;49.0259613;;;; +;;;;;;;;FRA16PWIIZ6621;FRS18E19642;Les Belleville, Parking P0 rue de la Boucle;;ZAC La Sablière, RN122 15000 Aurillac;;[-1.07607, 45.9914];;FRA16EWIIZ14411;FR*SOD*E*MB19*40*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.58512547;45.81269757;;;; +;;;;;;;;FRA16PWIIZ6612;FRSHEE44;Kintzheim, Hôtel Restaurant Willmann;;Rue De L'industrie 74100 Étrembières;;[7.75301, 48.8249];;FRA16EWIIZ13511;FR*SOD*E*MB19*40*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.82799104;48.08409;;;; +;;;;;;;;FRA16PWIIZ7811;FRSHEE45;Chablis, Impasse du Petit Pontigny;;50 Avenue De La République 15000 Aurillac;;[7.722233, 48.611211];;FRA16EWIIZ16011;FR*SOD*E*MB19*41*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.13365823;47.42967;;;; +;;;;;;;;FRA16PWIIZ7911;FRS18E14875;Sélestat , Zone Commerciale Sud;;75 rue du karting 97490 Ste-Clotilde;;[7.58512547, 49.05670757];;FRA16EWIIZ13091;FR*SOD*E*MB19*41*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.416289;49.47632985;;;; +;;;;;;;;FRA16PWIIZ9412;FRS28E13001;City Saone, Rhin et Danube;;52b Avenue Des Pyrénées 09100 Saint-Jean-du-Falga;;[-2.82799104, 48.61325703];;FRA16EWIIZ13061;FR*SOD*E*MB19*42*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.6647;45.8815474;;;; +;;;;;;;;FRA16PWIIZ8012;FRS18E18623;Mâcon, 484 Avenue Maréchal de Lattre de Tassigny;;49 Boulevard Lucien Sampaix 69190 Saint-Fons;;[1.13365823, 49.41753476];;FRA16EWIIZ13051;FR*SOD*E*MB19*42*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.32809978;47.20721543;;;; +;;;;;;;;FRA16PWIIZ9312;FRS18E9861;Mulhouse, Cité du train;;Rue de Montréal, ZAC du Mont Blanc 74100 Ville-la-Grand;;[-0.416289, 46.330147];;FRA16EWIIZ13111;FR*SOD*E*MB19*43*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.33434301;47.587;;;; +;;;;;;;;FRA16PWIIZ9311;FRS18E15342;Bondigoux, Château de Vernhes;;27 Avenue Mahatma Gandhi 97441 Sainte-Suzanne;;[2.6647, 45.2798];;FRA16EWIIZ13112;FR*SOD*E*MB19*43*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.33735242;47.7303;;;; +;;;;;;;;FRA16PWIIZ9212;FRS28E13480;Cayenne, Citeos;;Place du 8 Mai 1945 89560 Lain;;[1.32809978, 47.58592667];;FRA16EWIIZ13211;FR*SOD*E*MB19*44*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.891665;47.5083;;;; +;;;;;;;;FRA16PWIIZ9222;FRCPIE6649255;Saint-Denis , Rue Stanislas Gimart;;Chemin des Fosses 89290 Irancy;;[1.33434301, 47.58522112];;FRA16EWIIZ13212;FR*SOD*E*MB19*44*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.15869225;47.7413;;;; +;;;;;;;;FRA16PWIIZ9211;FRS18E21451;Vignoles, Zone Artisanale les Bruottees;;Mairie 89400 Laroche-Saint-Cydroine;;[1.33735242, 47.59067717];;FRA16EWIIZ13312;FR*SOD*E*MB19*29*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.1576805;47.7177;;;; +;;;;;;;;FRA16PWIIZ9221;FRSHEE43;Morvillars, Gare;;Place de la Liberte 89240 Lindry;;[2.891665, 42.740108];;FRA16EWIIZ13311;FR*SOD*E*MB19*54*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.32232101;47.5837;;;; +;;;;;;;;FRA16PWIIZ9111;FRCPIE6593725;Montluel, Super U;;23 Rue de l'Yonne 89290 Vincelles;;[1.15869225, 49.0263993];;FRA16EWIIZ13412;FR*SOD*E*MB19*29*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.29679;47.5838;;;; +;;;;;;;;FRA16PWIIZ9112;FRCPIE6643025;Malemort, Super U;;Place de la Poste 89130 Leugny;;[1.1576805, 49.0259613];;FRA16EWIIZ13411;FR*SOD*E*MB19*18*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.435828;47.6415;;;; +;;;;;;;;FRA16PWIIZ9011;FRS18E14679;Super U Montarnaud;;13 Avenue de Chablis 89144 Ligny-Le-Chatel;;[1.32232101, 45.81269757];;FRA16EWIIZ13711;FR*SOD*E*MB19*12*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.62082928;47.6568;;;; +;;;;;;;;FRA16PWIIZ9012;FRS28E13902;Super U Léguevin;;Rue Neuve 89570 Beugnon;;[3.29679, 48.08409];;FRA16EWIIZ14311;FR*SOD*E*MB19*13*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.7385053;47.6841;;;; +;;;;;;;;FRA16PWIIZ8912;FRS55E6644;Nexon, Super U;;Place De La Mairie 89520 Moutiers-en-Puisaye;;[1.435828, 47.42967];;FRA16EWIIZ13712;FR*SOD*E*MB19*13*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7162002;47.4895;;;; +;;;;;;;;FRA16PWIIZ8911;FRIONE40370;Super U Plougastel, avenue Charles de Gaulle;;Parking Château de Guedelon 89520 Treigny;;[-1.62082928, 49.47632985];;FRA16EWIIZ13812;FR*SOD*E*MB19*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.86469;47.6221;;;; +;;;;;;;;FRA16PWIIZ8812;FRIONE4037;Ille-sur-Têt, Super U;;23 Rue de Vincelles 89580 Val-De-Mercy;;[0.7385053, 45.8815474];;FRA16EWIIZ13811;FR*SOD*E*MB19*14*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.84753;47.6168;;;; +;;;;;;;;FRA16PWIIZ8811;FRS28E13024;Truchtersheim, Super U;;2 Rue de la Mairie 89480 Andryes;;[-0.7162002, 47.20721543];;FRA16EWIIZ13911;FR*SOD*E*MB19*15*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.99797;47.6073;;;; +;;;;;;;;FRA16PWIIZ8712;FRS18E21452;Igoville, Super U;;Grande Rue 89740 Gland;;[6.86469, 47.587];;FRA16EWIIZ13912;FR*SOD*E*MB19*15*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.82794;47.7327;;;; +;;;;;;;;FRA16PWIIZ8711;FRIENE009201;Super U Guipavas, Guipavas;;50 Grande Rue 89300 Champlay;;[6.84753, 47.7303];;FRA16EWIIZ14012;FR*SOD*E*MB19*16*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.92317;47.6497;;;; +;;;;;;;;FRA16PWIIZ8611;FRCPIE6643015;Hoenheim, Super U;;Place de la Paix 89160 Ancy-Le-Franc;;[6.99797, 47.5083];;FRA16EWIIZ14011;FR*SOD*E*MB19*16*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.89554;47.639;;;; +;;;;;;;;FRA16PWIIZ8612;FRS08E4644;McDonald's;;Quai Sully 89220 Rogny-Les-Sept-Ecluses;;[6.82794, 47.7413];;FRA16EWIIZ14111;FR*SOD*E*MB19*17*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.89564;47.5574;;;; +;;;;;;;;FRA16PWIIZ8511;FRS08E4646;Biocoop Saint Donat;;4 Place de la Mairie 89250 Mont-Saint-Sulpice;;[6.92317, 47.7177];;FRA16EWIIZ14112;FR*SOD*E*MB19*17*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.85355;47.6347;;;; +;;;;;;;;FRA16PWIIZ8512;FRS51E11242;Super U;;30 Rue de la Mairie 89450 Saint-Pere;;[6.89554, 47.5837];;FRA16EWIIZ14212;FR*SOD*E*MB19*18*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.86415;47.6411;;;; +;;;;;;;;FRA16PWIIZ8412;FRS51E11243;St Jacques de la Lande, Super U;;Rue de la Gare 89470 Moneteau;;[6.89564, 47.5838];;FRA16EWIIZ14211;FR*SOD*E*MB19*11*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.81418;47.6449;;;; +;;;;;;;;FRA16PWIIZ8411;FRIONE41760;Saint-Jean-de-Monts, Super U;;74 Grande Rue 89000 Saint-Georges-Sur-Baulche;;[6.85355, 47.6415];;FRA16EWIIZ14312;FR*SOD*E*MB19*29*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.92004;47.6106;;;; +;;;;;;;;FRA16PWIIZ8311;FRIONE4176;Sainte-Geneviève, Cc Le Chateau;;Place de la République 89400 Migennes;;[6.86415, 47.6568];;FRA16EWIIZ16012;FR*SOD*E*MB19*27*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.83139;47.641882;;;; +;;;;;;;;FRA16PWIIZ8312;FRIENE003701;Super U Grenade;;4 Place de L Eglise 89550 Hery;;[6.81418, 47.6841];;FRA16EWIIZ16311;FR*SOD*E*MB19*26*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.86136;43.22653036;;;; +;;;;;;;;FRA16PWIIZ8212;FRIENE003702;Fouras, Super U;;5 Avenue du Parc 89440 L'Isle-Sur-Serein;;[6.92004, 47.4895];;FRA16EWIIZ16112;FR*SOD*E*MB19*26*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.86114;47.723598;;;; +;;;;;;;;FRA16PWIIZ8211;FRS08E4643;Schweighouse-sur-Moder, Suez;;Parking Rue du Ruisseau 89800 Beine;;[6.83139, 47.6221];;FRA16EWIIZ21011;FR*SOD*E*MB19*23*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.96892;48.587957;;;; +;;;;;;;;FRA16PWIIZ8112;FRSHEE33;Schiltigheim, rue René Laennec;;Parking D957 - Route D Avallon 89450 Vezelay;;[6.86136, 47.6168];;FRA16EWIIZ20611;FR*SOD*E*MB19*23*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8492;50.102328;;;; +;;;;;;;;FRA16PWIIZ8111;FRIENE009202;Sturzelbronn;;Parking rue du Huit Mai 89110 Aillant-sur-Tholon;;[6.86114, 47.6073];;FRA16EWIIZ20612;FR*SOD*E*MB19*22*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.86137;43.419199;;;; +;;;;;;;;FRA16PWIIZ8011;FRS28E13054;Binic-Étables-sur-Mer, Super U;;Place des Commerces 89360 Flogny-La-Chapelle;;[6.96892, 47.7327];;FRA16EWIIZ20711;FR*SOD*E*MB19*22*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.85294;48.2615;;;; +;;;;;;;;FRA16PWIIZ23211;FRSHEE32;Bonsecours, Super U;;Chemin du Petit Port 89500 Armeau;;[6.8492, 47.6497];;FRA16EWIIZ20712;FR*SOD*E*MB19*21*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.82891;48.2593;;;; +;;;;;;;;FRA16PWIIZ14822;FRCPIE6708745;Niort, Steco;;Rue de la Petite Motte 89113 Fleury-La-Vallee;;[6.86137, 47.639];;FRA16EWIIZ20811;FR*SOD*E*MB19*21*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.86128;43.134229;;;; +;;;;;;;;FROTHPOTHR15421;FRCPIE6647205;Riom-ès-Montagnes, Station Groffal;;Rue du Champs de Foire 89520 Treigny;;[6.85294, 47.5574];;FRA16EWIIZ20812;FR*SOD*E*MB19*20*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.84058;49.30808485;;;; +;;;;;;;;FROTHPOTHR15441;FRCPIE6676785;Blois, Parking Château;;Place des Saules 89210 Esnon;;[6.82891, 47.6347];;FRA16EWIIZ21012;FR*SOD*E*MB19*12*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.85343;49.15722184;;;; +;;;;;;;;FROTHPOTHR15431;FRCPIE6547545;Blois, Parking Valin de la Vaissière;;Place du 8 Mai 89560 Druyes-Les-Belles-Fontaines;;[6.86128, 47.6411];;FRA16EWIIZ16111;FR*SOD*E*MB19*20*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.99513;49.36933788;;;; +;;;;;;;;FROTHPOTHR15411;FRFASE331000;Blois, Parking Halle aux Grains;;Place de la Mairie 89116 La-Celle-Saint-Cyr;;[6.84058, 47.6449];;FRA16EWIIZ21112;FR*SOD*E*MB19*11*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.93591;47.411066;;;; +;;;;;;;;FRS19PMB193411;FRCPIE6644635;Perpignan, Avenue du Languedoc;;3 Rue du Bois 89600 Cheu;;[6.85343, 47.6415];;FRA16EWIIZ21111;FR*SOD*E*MB19*5*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.919325;47.41108404;;;; +;;;;;;;;FRS19PMB195311;FRCPIE6699895;Evreux, Boulevard Pasteur;;Place Saint Martin 89800 Chablis;;[6.99513, 47.6106];;FRA16EWIIZ21212;FR*SOD*E*MB19*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33244097;48.6087136;;;; +;;;;;;;;FRS19PMB194811;FRS28E13733;Evreux, Place de la République;;Place du 11 Novembre 89220 Bleneau;;[6.93591, 47.5493];;FRA16EWIIZ21211;FR*SOD*E*MB19*28*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.220014;49.249274;;;; +;;;;;;;;FRS19PMB194812;FRCPIE6690455;Feytiat, Super U;;Rue Tour du Magasin 89200 Avallon;;[6.919325, 47.641882];;FRA16EWIIZ21311;FR*SOD*E*MB19*28*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.359625;49.229863;;;; +;;;;;;;;FRS19PMB195012;FRS18E10468;Villeneuve-Sur-Yonne, Parking rue Saint-Jean;;Place de L'Église 89290 Augy;;[2.33244097, 43.22653036];;FRA16EWIIZ21312;FR*SOD*E*MB19*27*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.866422;49.867493;;;; +;;;;;;;;FRS19PMB195011;FRS18E9596;Le Controis-en-Sologne, Rue de Cheverny;;Rue Jean Jacques Rousseau 89350 Champignelles;;[7.220014, 47.723598];;FRA16EWIIZ20412;FR*SOD*E*MB19*1*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.713675;47.62172388;;;; +;;;;;;;;FRS19PMB195111;FRS88E16184;Super U Bricquebec, 39 Route de Valognes;;Eglise 89400 Ormoy;;[-0.359625, 48.587957];;FRA16EWIIZ20421;FR*SOD*E*MB19*1*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.45422;47.810705;;;; +;;;;;;;;FRS19PMB195112;FRS18E10472;Chabanais, Super U;;Place du Village 89560 Ouanne;;[1.866422, 50.102328];;FRA16EWIIZ20411;FR*SOD*E*MB19*2*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.45557;47.7409078;;;; +;;;;;;;;FRS19PMB195211;FRCPIE6644555;Chemillé en Anjou, Rue du Chal;;Rue de L'Eglise 89310 Noyers;;[3.713675, 43.419199];;FRA16EWIIZ20422;FR*SOD*E*MB19*3*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.00039;47.495009;;;; +;;;;;;;;FRS19PMB195212;FRCPIE6644565;Sevenans, Parking étudiant;;Rue de la Maitrise 89240 Pourrain;;[7.45422, 48.2615];;FRA16EWIIZ20312;FR*SOD*E*MB19*3*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.7846053;48.07277426;;;; +;;;;;;;;FRS19PMB195312;FRCPIE6699285;Rougegoutte, SMRC Automotive;;Ruelle Biere Cd96 89390 Perrigny-Sur-Armancon;;[7.45557, 48.2593];;FRA16EWIIZ20311;FR*SOD*E*MB19*4*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.88284912;50.5928785;;;; +;;;;;;;;FRS19PMB195611;FRIONE4334;Delle, rue du Château;;Route de Troyes 89570 Neuvy-Sautour;;[6.00039, 43.134229];;FRA16EWIIZ20111;FR*SOD*E*MB19*4*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.89541815;47.63998;;;; +;;;;;;;;FRS19PMB195412;FRS28E13477;Giromagny, Place Général de Gaulle;;Rue Haute des Fosses 89430 Tanlay;;[5.7846053, 49.30808485];;FRA16EWIIZ20112;FR*SOD*E*MB19*2*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.379421;48.1594372;;;; +;;;;;;;;FRS19PMB195612;FRIONE4137;Étueffont, Piscine;;Rue des Grands Vergers 89480 Coulanges-Sur-Yonne;;[5.88284912, 49.15722184];;FRA16EWIIZ20011;FR*SOD*E*MB19*8*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.37949435;46.1158;;;; +;;;;;;;;FRS19PMB194711;FRCPIE6638625;Meroux-Moval, La Jonxion;;Rue Jean Jaurès 89250 Chemilly-Sur-Yonne;;[5.89541815, 49.36933788];;FRA16EWIIZ20012;FR*SOD*E*MB19*5*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.71117147;48.70500749;;;; +;;;;;;;;FRS19PMB193211;FRS88E17726;Belfort, Place de la Résistance;;26 Rue Saint Martin 89460 Cravant;;[-1.379421, 47.411066];;FRA16EWIIZ19912;FR*SOD*E*MB19*6*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.939175;48.75577145;;;; +;;;;;;;;FRS19PMB193111;FRCPIE6638635;Offemont, Poste;;Place de L Eglise 89560 Courson-Les-Carrieres;;[-1.37949435, 47.41108404];;FRA16EWIIZ19911;FR*SOD*E*MB19*6*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.00763121;47.9414334;;;; +;;;;;;;;FRS19PMB193112;FRIONE43340;Sermamagny, Malsaucy;;Rue du Four 89740 Cruzy-Le-Chatel;;[7.71117147, 48.6087136];;FRA16EWIIZ19811;FR*SOD*E*MB19*7*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.397006;47.830781;;;; +;;;;;;;;FRS19PMB193012;FRIONE4026;Beaucourt, Super U;;Rue du Port 89390 Ravieres;;[5.939175, 49.249274];;FRA16EWIIZ19812;FR*SOD*E*MB19*7*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.23530801;47.886972;;;; +;;;;;;;;FRS19PMB193011;FRCPIE6644645;Bavilliers, Super U;;Place de L Eglise 89630 Quarre-Les-Tombes;;[6.00763121, 49.229863];;FRA16EWIIZ19711;FR*SOD*E*MB19*8*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.101503;43.676771;;;; +;;;;;;;;FRS19PMB192941;FRS28E13419;Danjoutin, Parking Ibis;;1 Rue Suzanne 89300 Looze;;[2.397006, 49.867493];;FRA16EWIIZ19712;FR*SOD*E*MB19*10*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.14457463;43.56260966;;;; +;;;;;;;;FRS19PMB192931;FRS18E11253;Andelnans, Leroy Merlin;;Sortie 89200 Sauvigny-Le-Bois;;[7.23530801, 47.62172388];;FRA16EWIIZ19611;FR*SOD*E*MB19*9*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.314226;43.04394683;;;; +;;;;;;;;FRS19PMB194712;FRIENE002801;Rougemont-le-Château, Ancienne gare;;20 Grande Rue 89430 Thorey;;[7.101503, 47.810705];;FRA16EWIIZ21411;FR*SOD*E*MB19*9*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.2943012;48.81827376;;;; +;;;;;;;;FRS19PMB194612;FRIENE002802;Belfort, Avenue d'Alsace;;11 Rue Paul Arrighi 89130 Moulins-Sur-Ouanne;;[7.14457463, 47.7409078];;FRA16EWIIZ21412;FR*SOD*E*MB16*18*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.55929424;43.9286768;;;; +;;;;;;;;FRS19PMB192921;FRS88E17742;Belfort, Place de la République;;Route de Paris 89210 Champlost;;[7.314226, 47.495009];;FRA16EWIIZ21512;FR*SOD*E*MB16*17*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8633002;43.73555372;;;; +;;;;;;;;FRS19PMB193811;FRS28E13944;Châtenois-les-Forges, Complexe Sportif;;D646 89200 Sauvigny-Le-Bois;;[7.2943012, 48.07277426];;FRA16EWIIZ22311;FR*SOD*E*MB16*22*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.37103894;48.756;;;; +;;;;;;;;FRS19PMB193212;FRS18E11788;Essert, Super U;;Rue Du Pont Capureau 89130 Toucy;;[5.55929424, 50.5928785];;FRA16EWIIZ23112;FR*SOD*E*MB16*17*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.03733;45.51721846;;;; +;;;;;;;;FRS19PMB193312;FRCPIE6651395;Belfort, Rue de la Cavalerie;;Echangeur A6 Sur Cd945 89116 Sepeaux;;[6.8633002, 47.63998];;FRA16EWIIZ23111;FR*SOD*E*MB16*19*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.24894131;47.00590714;;;; +;;;;;;;;FRS19PMB193311;FRIONE43230;Belfort, Avenue du Maréchal Juin;;90 Avenue Jean Jaures 89400 Migennes;;[7.37103894, 48.1594372];;FRA16EWIIZ23011;FR*SOD*E*MB16*16*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.83342382;47.00445851;;;; +;;;;;;;;FRS19PMB193412;FRS18E9777;Montreux-Château;;Place Emile Drominy 89210 Brienon-Sur-Armancon;;[6.03733, 46.1158];;FRA16EWIIZ23012;FR*SOD*E*MB16*18*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4915517;48.251975;;;; +;;;;;;;;FRS19PMB193511;FRS18E20095;Bessoncourt, Avenue du tilleul;;Rue de Bruxelles 89000 Saint-Georges-Sur-Baulche;;[6.24894131, 48.70500749];;FRA16EWIIZ22912;FR*SOD*E*MB16*21*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.459646;43.48590064;;;; +;;;;;;;;FRS19PMB193512;FRIONE4323;Carcassonne, Tryba;;Parking Espace Culturel 89470 Moneteau;;[1.83342382, 48.75577145];;FRA16EWIIZ22911;FR*SOD*E*MB16*19*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.09528;43.49646422;;;; +;;;;;;;;FRS19PMB193611;FRS18E9849;Heimsbrunn, Rue de la Forêt;;Place de la Mairie 89290 Venoy;;[3.4915517, 47.9414334];;FRA16EWIIZ22812;FR*SOD*E*MB16*20*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.09998;43.03086672;;;; +;;;;;;;;FRS19PMB193612;FRIENE006801;La Ferté Macé, Rue du Quatorze Juillet;;1 Route De Beaulieu 77240 Seine-Port;;[3.459646, 47.830781];;FRA16EWIIZ22811;FR*SOD*E*MB16*20*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.09986662;43.618492;;;; +;;;;;;;;FRS19PMB193711;FRIENE006802;Abbeville, rue Ventose;;Parking Poids Lourds 89250 Hauterive;;[3.09528, 47.886972];;FRA16EWIIZ22612;FR*SOD*E*MB16*21*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.14711682;49.047;;;; +;;;;;;;;FRS19PMB193712;FRCPIE6727095;Sète exploitation, Auto;;Rue de la Halle 89110 Aillant-Sur-Tholon;;[7.09998, 43.676771];;FRA16EWIIZ22611;FR*SOD*E*MB16*22*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09677956;44.9122;;;; +;;;;;;;;FRS19PMB193812;FRFASE331030;Sélestat, Albert Schweitzer;;1 Rue du Brue 89600 Vergigny;;[4.09986662, 43.56260966];;FRA16EWIIZ22511;FR*SOD*E*MB16*15*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.17909388;44.8043642;;;; +;;;;;;;;FRS19PMB193911;FRIENE003802;Sélestat, Sainte Foy;;Rue des Soupirs 89270 Vermenton;;[6.14711682, 43.04394683];;FRA16EWIIZ22512;FR*SOD*E*MB16*16*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.78282894;44.8499;;;; +;;;;;;;;FRS19PMB194611;FRIENE003801;La Valette du Var, Avenue Eole;;Place Saint-Georges 89440 L'Isle-sur-Serein;;[6.09677956, 48.81827376];;FRA16EWIIZ22411;FR*SOD*E*MB16*9*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.17064;44.83838;;;; +;;;;;;;;FRS19PMB193912;FRCPIE6727115;Mairie, Piennes;;Perrigny, rue des Ecoles 89000 Perrigny;;[2.17909388, 43.9286768];;FRA16EWIIZ22412;FR*SOD*E*MB16*15*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.94351498;44.944686;;;; +;;;;;;;;FRS19PMB194011;FRCPIE6727105;Jarny, Mairie;;Massangis, Ruelle d'Enfer 89440 Massangis;;[4.78282894, 43.73555372];;FRA16EWIIZ22312;FR*SOD*E*MB16*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.85240031;44.8624327;;;; +;;;;;;;;FRS19PMB194012;FRN54E18739;Mairie, Audun le Roman;;Rue des Erables 33170 Gradignan;;[2.17064, 48.756];;FRA16EWIIZ21511;FR*SOD*E*MB16*14*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.85383794;44.8462139;;;; +;;;;;;;;FRS19PMB194111;FRIENE003001;Ligné, Super U;;3 Avenue Victor Hugo 28000 Chartres;;[2.94351498, 45.51721846];;FRA16EWIIZ22212;FR*SOD*E*MB16*13*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.438944;44.881022;;;; +;;;;;;;;FRS19PMB194112;FRIENE004602;Schiltigheim, Chambre d'agriculture de Strasbourg;;119 Avenue des Vosges 54110 Dombasle-sur-Meurthe;;[4.85240031, 47.00590714];;FRA16EWIIZ22211;FR*SOD*E*MB16*13*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.47057402;44.7993976;;;; +;;;;;;;;FRS19PMB194211;FRIONE44070;ST2B, Briey;;La Hirtais 44160 Pontchâteau;;[4.85383794, 47.00445851];;FRA16EWIIZ22111;FR*SOD*E*MB16*12*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.54363498;44.84167;;;; +;;;;;;;;FRS19PMB194212;FRIENE004601;Joeuf, Mairie;;1 Place Du Relais 94150 Rungis;;[2.438944, 48.251975];;FRA16EWIIZ22112;FR*SOD*E*MB16*12*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16087089;44.8436728;;;; +;;;;;;;;FRS19PMB194312;FRIENE005202;Glisy, All. de Maître Zacharius;;04 Rue Marcel Mauss 88100 Saint-Dié-des-Vosges;;[-1.47057402, 43.48590064];;FRA16EWIIZ22012;FR*SOD*E*MB16*11*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.454771;44.85705;;;; +;;;;;;;;FRS19PMB194311;FRIENE005201;Altkirch, Place Xavier Jourdain;;560 Avenue De Bonport 76320 Saint-Pierre-lès-Elbeuf;;[-1.54363498, 43.49646422];;FRA16EWIIZ22011;FR*SOD*E*MB16*11*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.42762;46.13549714;;;; +;;;;;;;;FRS19PMB194412;FRIENE003002;Thann, Place Joffre;;91 Rue De Dettwiller 67700 Saverne;;[6.16087089, 43.03086672];;FRA16EWIIZ21911;FR*SOD*E*MB16*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.725;45.920539;;;; +;;;;;;;;FRS19PMB194411;FRCPIE6727085;Burnhaupt le Haut, Aire de Covoiturage;;46 Chemin de la Bruyère 42600 Savigneux;;[3.454771, 43.618492];;FRA16EWIIZ21912;FR*SOD*E*MB16*10*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6330112;45.845514;;;; +;;;;;;;;FRS19PMB192911;FRIONE45451;Ferrette, Parking Gare;;2a Rue De Drusenheim 67620 Soufflenheim;;[7.42762, 49.047];;FRA16EWIIZ21811;FR*SOD*E*MB16*9*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.603715;46.13548599;;;; +;;;;;;;;FRS19PMB195411;FRIONE45450;Wintzenheim, Place des fêtes;;Centre Commercial Carrefour Le Clos Aux Antes 76410 Tourville-La-Rivière;;[-0.725, 44.9122];;FRA16EWIIZ21812;FR*SOD*E*MB16*8*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.616092;45.9379;;;; +;;;;;;;;FRS19PMB192951;FRIONE4099;Seraing, Technifutur;;Parc Des Saules 27100 Val-de-Reuil;;[-0.6330112, 44.8043642];;FRA16EWIIZ21711;FR*SOD*E*MB16*7*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.618926;47.9125884;;;; +;;;;;;;;FRS19PMB191811;FRIONE40990;Belfort, rue Georges Pompidou;;175 Rue Carnot 85300 Challans;;[-0.603715, 44.8499];;FRA16EWIIZ21712;FR*SOD*E*MB16*23*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5237826;43.30887101;;;; +;;;;;;;;FRS19PMB191212;FRFASE331080;Ostheim, Place des cigognes;;1 RTE de Saint-Paul-trois-Châteaux 84500 Bollène;;[-0.616092, 44.83838];;FRA16EWIIZ21611;FR*SOD*E*MB16*23*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6132285;50.4389957;;;; +;;;;;;;;FRS19PMB191311;FRIONE40870;Viry, Rue des Coulerins;;38 Rue Jules Vallès 54190 Villerupt;;[-0.618926, 44.944686];;FRA16EWIIZ21612;FR*SOD*E*MB16*8*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6116;50.24177291;;;; +;;;;;;;;FRS19PMB191312;FRCPIE6690045;ESSEY LES NANCY , Allée du Midi;;6 Place de L Hôtel de ville 57710 Aumetz;;[-0.5237826, 44.8624327];;FRA16EWIIZ19612;FR*SOD*E*MB16*24*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6190241;48.454124;;;; +;;;;;;;;FRS19PMB191411;FRCPIE6689415;Châteauform Les Mesnuls, Grande Rue;;1 Place du 8 Mai 1945 54880 Thil;;[-0.6132285, 44.8462139];;FRA16EWIIZ19511;FR*SOD*E*MB16*63*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.628291;46.179444;;;; +;;;;;;;;FRS19PMB191412;FRIONE4087;Charmoy, route de Paris;;2 Rue de la Pentecôte 57840 Ottange;;[-0.6116, 44.881022];;FRA16EWIIZ19512;FR*SOD*E*MB16*69*1*4*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5706805;49.23751669;;;; +;;;;;;;;FRS19PMB191512;FRIONE4545;Charbuy, 50 Grande rue;;14 Rue Henri Wallon 54190 Villerupt;;[-0.6190241, 44.7993976];;FRA16EWIIZ17211;FR*SOD*E*MB16*69*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.620298;49.09912957;;;; +;;;;;;;;FRS19PMB191511;FRIONE10140;Charny, 40 Grande rue;;9 Place Joliot Curie 54190 Villerupt;;[-0.628291, 44.84167];;FRA16EWIIZ17911;FR*SOD*E*MB16*69*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.43306962;49.85596361;;;; +;;;;;;;;FRS19PMB191611;FRIONE4407;La Colle-sur-Loup, Les Terrasses de St Paul de Vances;;1 bis route de Metz 57530 Pange;;[-0.5706805, 44.8436728];;FRA16EWIIZ17811;FR*SOD*E*MB16*68*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.337082;49.3672118;;;; +;;;;;;;;FRS19PMB191612;FRCPIE6714275;La Grande-Motte, Belambra Presqu'ile du Ponant;;Rue de la Saline 54110 Dombasle-sur-Meurthe;;[-0.620298, 44.85705];;FRA16EWIIZ17812;FR*SOD*E*MB16*68*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.523745;48.94867145;;;; +;;;;;;;;FRS19PMB191711;FRIONE45410;Hyères, Belambra Riviera Beach Club;;Rue Carnot 54110 Varangéville;;[3.43306962, 46.13549714];;FRA16EWIIZ17711;FR*SOD*E*MB16*67*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.43277992;49.38905597;;;; +;;;;;;;;FRS19PMB191712;FRS88E18403;Belleville, Place des Chenevières;;1 place de la Mairie 51150 Bouzy;;[3.337082, 45.920539];;FRA16EWIIZ17712;FR*SOD*E*MB16*67*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.08063;48.78194961;;;; +;;;;;;;;FRS19PMB191812;FRIENE004802;Albi, Rue Jacques Monod;;73 rue Raoul Briquet 62700 Bruay-la-Buissière;;[3.523745, 45.845514];;FRA16EWIIZ17611;FR*SOD*E*MB16*66*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.35926831;48.83723465;;;; +;;;;;;;;FRS19PMB191112;FRIENE004801;Vallon de L'Arcoule, Les Baux de Provence;;3 rue du Pré Michaux 51160 Germaine;;[3.43277992, 46.13548599];;FRA16EWIIZ17612;FR*SOD*E*MB16*66*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.37070273;46.865;;;; +;;;;;;;;FRS19PMB192961;FRCPIE6739225;Saclay, Best Western;;12 Chemin des 3 Ponts 64230 Lescar;;[6.08063, 45.9379];;FRA16EWIIZ17511;FR*SOD*E*MB16*65*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9084615;48.93416867;;;; +;;;;;;;;FRS19PMB192712;FRCPIE6714285;Besse-et-Saint-Anastaise, Rte des Lacs;;4 rue l'Ecole 51150 Bisseuil;;[3.35926831, 47.9125884];;FRA16EWIIZ17512;FR*SOD*E*MB16*65*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.28868032;48.719848;;;; +;;;;;;;;FRS19PMB192612;FRIONE45411;Beaune, Parking Cité des vins;;12 avenue Pierre Dubois 51160 Avenay-Val-d'Or;;[5.37070273, 43.30887101];;FRA16EWIIZ17412;FR*SOD*E*MB16*64*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.545617;50.46247296;;;; +;;;;;;;;FRS19PMB192611;FRCPIE6642605;Beaune, Parking Covoiturage;;1 place de la Halle 51150 Tours-sur-Marne;;[4.9084615, 50.4389957];;FRA16EWIIZ17411;FR*SOD*E*MB16*64*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.100221;49.10410314;;;; +;;;;;;;;FRS19PMB192311;FRCPIE6645895;Augerville-la-Rivière, Place du Chateau;;162 Avenue De Metz 54700 Pont-à-Mousson;;[5.28868032, 50.24177291];;FRA16EWIIZ17312;FR*SOD*E*MB16*63*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.08224462;50.4305;;;; +;;;;;;;;FRS19PMB192312;FRCPIE6642625;Bayonne, Allée de Glain;;13 Rue Faraday 91540 Mennecy;;[1.545617, 48.454124];;FRA16EWIIZ17311;FR*SOD*E*MB16*70*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.08066214;48.235545;;;; +;;;;;;;;FRS19PMB192211;FRCPIE6642615;Anglet, Belambra La Chambre d'Amour;;73 Faubourg De Belfort 90100 Delle;;[-1.100221, 46.179444];;FRA16EWIIZ17212;FR*SOD*E*MB16*62*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.25804285;43.40428119;;;; +;;;;;;;;FRS19PMB192212;FRCPIE6642565;Hyères, Belambra Les Criques;;Rue Marcel Dassault 33600 Pessac;;[4.08224462, 49.23751669];;FRA16EWIIZ17112;FR*SOD*E*MB16*62*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.30798148;49.13816135;;;; +;;;;;;;;FRS19PMB192111;FRCPIE6666625;Clermont L'Hérault, 10 rue du Cardinal;;National 193 20167 Sarrola;;[-1.08066214, 49.09912957];;FRA16EWIIZ18011;FR*SOD*E*MB16*61*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.39278508;48.9015;;;; +;;;;;;;;FRS19PMB192112;FRIONE4541;Bitche, Intermarché;;Lieu dit Bevinco - RN 193 20620 Biguglia;;[3.25804285, 49.85596361];;FRA16EWIIZ17111;FR*SOD*E*MB16*61*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.7875025;48.73401665;;;; +;;;;;;;;FRS19PMB192011;FRCPIE6600375;Saint-Aubin-de-Médoc, Eglise;;26 avenue Blaise Pascal 60000 Beauvaix;;[3.30798148, 49.3672118];;FRA16EWIIZ17011;FR*SOD*E*MB16*60*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.17580561;44.76579126;;;; +;;;;;;;;FRS19PMB191211;FRCPIE6707215;Pessac, 29 Avenue Eugène et Marc Dulout;;350 Rue Alphonse Beau De Rochas 34500 Béziers;;[4.39278508, 48.94867145];;FRA16EWIIZ17012;FR*SOD*E*MB16*60*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.54881175;43.54469101;;;; +;;;;;;;;FRS19PMB192012;FRTNME08912729;Bordeaux, 130 Avenue Charles de Gaulle;;Place du mlarché 57320 Bouzonville;;[2.7875025, 49.38905597];;FRA16EWIIZ16811;FR*SOD*E*MB16*59*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1615;44.826207;;;; +;;;;;;;;FRS19PMB191111;FRTNME08912728;Mérignac, 297 Avenue d'Arès;;1 Place du Général de Gaulle 57320 Bouzonville;;[2.17580561, 48.78194961];;FRA16EWIIZ16812;FR*SOD*E*MB16*59*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.87933819;44.8557708;;;; +;;;;;;;;FRS19PMB19521;FRTNME08912692;Parempuyre, Rue de la Gare;;Pontone 20124 Zonza;;[-1.54881175, 48.83723465];;FRA16EWIIZ16711;FR*SOD*E*MB16*58*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.37078;44.8308225;;;; +;;;;;;;;FRS19PMB191011;FRTNMETERRA54011;Cenon, 1 Rue Aristide Briand;;Rue Descartes 33370 Artigues-Près-Bordeaux;;[3.1615, 46.865];;FRA16EWIIZ16712;FR*SOD*E*MB16*58*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9217113;44.8512286;;;; +;;;;;;;;FRS19PMB192812;FRTNMETERRA54010;Bordeaux, 1 bahr;;24 Avenue Georges Clémenceau 33110 Le Bouscat;;[2.87933819, 48.93416867];;FRA16EWIIZ16611;FR*SOD*E*MB16*57*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.45320379;44.82586;;;; +;;;;;;;;FRS19PMB192811;FRS18E18433;Bruges, 11 Avenue des Martyrs de la Resistance;;Rue Marc Sangnier 33130 Bègles;;[1.37078, 48.719848];;FRA16EWIIZ16612;FR*SOD*E*MB16*57*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.60757;44.845233;;;; +;;;;;;;;FRS19PMB192711;FRS28E13080;Pessac, 142 Avenue du Docteur Albert Schweitzer;;Place François Mitterrand 33150 Cenon;;[4.9217113, 50.46247296];;FRA16EWIIZ16512;FR*SOD*E*MB16*56*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.541816;44.8341526;;;; +;;;;;;;;FRS19PMB19121;FRS28E12748;Bordeaux, 57 Avenue de la Gare;;Avenue De La République 33530 Bassens;;[1.45320379, 49.10410314];;FRA16EWIIZ16511;FR*SOD*E*MB16*69*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.169737255;44.8783;;;; +;;;;;;;;FRS19PMB19122;FRS41E475;Bordeaux, 4 Quai Louis XVIII;;Place Jean Jaurès 33700 Mérignac;;[1.60757, 50.4305];;FRA16EWIIZ16412;FR*SOD*E*MB16*70*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16973726;44.8313446;;;; +;;;;;;;;FRS19PMB19221;FRS18E17831;Bordeaux, 35 Rue Gabriel Leglise;;Quai Richelieu 33000 Bordeaux;;[7.541816, 48.235545];;FRA16EWIIZ16411;FR*SOD*E*MB16*55*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.04198941;44.8246198;;;; +;;;;;;;;FRS19PMB19322;FRS18E17830;Cusset, Bigmat;;5 Route De Kerourvois 29500 Ergué-Gabéric;;[6.169737255, 43.40428119];;FRA16EWIIZ16312;FR*SOD*E*MB16*76*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.37433;44.8660147;;;; +;;;;;;;;FRS19PMB19321;FRTNME08912730;Maringues, route de Vichy;;111 Avenue 69ème Régiment D'Infanterie 54270 Essey-lès-Nancy;;[6.16973726, 43.40428119];;FRA16EWIIZ17912;FR*SOD*E*MB16*7*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5775891;44.80663;;;; +;;;;;;;;FRS19PMB19421;FRTNME08912731;Thiers, 102 Av. Léo Lagrange;;42 Rue René Prieur 61100 Flers;;[7.04198941, 49.13816135];;FRA16EWIIZ18012;FR*SOD*E*MB16*6*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.56151203;44.8327156;;;; +;;;;;;;;FRS19PMB19422;FRTNME08912788;Epagny Metz-Tessy, Biofrais;;14 Rue Gustave Eiffel 37300 Joué-lès-Tours;;[2.37433, 48.9015];;FRA16EWIIZ19412;FR*SOD*E*MB16*6*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.519791;44.8411016;;;; +;;;;;;;;FRS19PMB19222;FRIENE003402;Senan, 13 route de Joigny;;19 Chemin Des Agriès 31860 Labarthe-sur-Lèze;;[-0.5775891, 48.73401665];;FRA16EWIIZ19031;FR*SOD*E*MB16*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.624746;44.800156;;;; +;;;;;;;;FRS19PMB19812;FRCPIE6666445;Marseille, BMW Mini Station 7;;Rue Du Vallon 29400 Landivisiau;;[-0.56151203, 44.76579126];;FRA16EWIIZ19411;FR*SOD*E*MB16*5*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5343711;44.8386916;;;; +;;;;;;;;FRS19PMB19522;FRIONE4169;Namur, BMW Quoilin;;21 Avenue De La Résistance 54520 Laxou;;[1.519791, 43.54469101];;FRA16EWIIZ19322;FR*SOD*E*MB16*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5671108;44.8302701;;;; +;;;;;;;;FRS19PMB19611;FRIONE41690;Bmw Quoilin, Marche-en-Famenne;;Chemin Des Valettes 83490 Le Muy;;[-0.624746, 44.826207];;FRA16EWIIZ19332;FR*SOD*E*MB16*4*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5743715;44.86105;;;; +;;;;;;;;FRS19PMB19612;FRTNME08912789;BMW, Nogent le Phaye;;21 Avenue Charles De Gaulle 78230 Le Pecq;;[-0.5343711, 44.8557708];;FRA16EWIIZ19331;FR*SOD*E*MB16*3*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.598102;44.88033;;;; +;;;;;;;;FRS19PMB19712;FRIENE003401;Puilboreau, Impasse de Pologne;;200 Rue Des Chantiers Du Beaujolais 69400 Limas;;[-0.5671108, 44.8308225];;FRA16EWIIZ19341;FR*SOD*E*MB16*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.653022;44.840979;;;; +;;;;;;;;FRS19PMB19711;FRIONE4319;Reims, BMW;;01 Rue Clément Ader 54300 Moncel-lès-Lunéville;;[-0.5743715, 44.8512286];;FRA16EWIIZ19342;FR*SOD*E*MB16*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5633591;44.8471942;;;; +;;;;;;;;FRS19PMB19811;FRIONE43190;Saint Lô, Rond point de Baudre;;Avenue De La Haute Borne 77100 Mareuil-lès-Meaux;;[-0.598102, 44.82586];;FRA16EWIIZ19312;FR*SOD*E*MB16*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.57113;44.830625;;;; +;;;;;;;;FRS19PMB191012;FRTNME09911355;Saint-Quentin, Rue Antoine Parmentier;;Rue François Mitterrand 33230 Coutras;;[-0.653022, 44.845233];;FRA16EWIIZ19321;FR*SOD*E*MB16*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5735586;44.81902;;;; +;;;;;;;;FRS19PMB19911;FRTNME08912790;Soissons, BMW;;Route De Brumath 67170 Bernolsheim;;[-0.5633591, 44.8341526];;FRA16EWIIZ19311;FR*SOD*E*MB16*1*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5700369;44.8122102;;;; +;;;;;;;;FRS19PMB19912;FRS18E11718;Saint-Memmie, BMW;;8 Place Stanislas 88600 Bruyères;;[-0.57113, 44.8783];;FRA16EWIIZ19211;FR*SOD*E*MB16*76*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5997005;44.8527873;;;; +;;;;;;;;FRS16PMB161812;FRSHEE176;Compiègne, BMW;;148 Rue du Rhulemoine Centre Commercial Vival 88140 Bulgnéville;;[-0.5735586, 44.8313446];;FRA16EWIIZ19212;FR*SOD*E*MB16*70*1*4*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5596091;44.8514;;;; +;;;;;;;;FRS16PMB161712;FRSHEE157;Vélizy-Villacoublay, BMW;;Boulevard De L'atlantique 44150 Saint-Géréon;;[-0.5700369, 44.8246198];;FRA16EWIIZ19112;FR*SOD*E*MB16*75*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6101414;44.8324;;;; +;;;;;;;;FRS16PMB162211;FRSHEE158;Granville, Rue des Entrepreneurs;;20 Rue Du Petit Launay 49000 Angers;;[-0.5997005, 44.8660147];;FRA16EWIIZ19111;FR*SOD*E*MB16*75*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5595587;44.8302;;;; +;;;;;;;;FRS16PMB161711;FRCPIE6664335;Magny-Cours, BMW Concession;;245 Avenue Salvador Allende 84500 Bollène;;[-0.5596091, 44.80663];;FRA16EWIIZ19021;FR*SOD*E*MB16*74*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5700933;44.8894;;;; +;;;;;;;;FRS16PMB161912;FRCPIE6664345;Mareuil-lès-Meaux, BMW;;6 Rue René Cassin 71100 Chalon-sur-Saône;;[-0.6101414, 44.8327156];;FRA16EWIIZ19051;FR*SOD*E*MB16*74*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5861464;44.88817928;;;; +;;;;;;;;FRS16PMB161612;FRIENE005101;BMW, Dreux;;69 Route De Montfermeil 77500 Chelles;;[-0.5595587, 44.8411016];;FRA16EWIIZ18111;FR*SOD*E*MB16*24*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5728467;44.8368;;;; +;;;;;;;;FRS16PMB161811;FRIENE005102;Namur, Avenue des Dessus-de-Lives;;40 Rue Du 8 Mai 1945 44110 Châteaubriant;;[-0.5700933, 44.800156];;FRA16EWIIZ19041;FR*SOD*E*MB16*73*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.552385;44.8446;;;; +;;;;;;;;FRS16PMB162112;FRSHEE174;Saint-Marcel, Rue des pres;;Rond-Point De Colguen 29900 Concarneau;;[-0.5861464, 44.8386916];;FRA16EWIIZ19011;FR*SOD*E*MB16*73*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5730911;44.8376;;;; +;;;;;;;;FRS16PMB161911;FRCPIE6553755;Bagatelle, Parking;;Rue du Mémorial du Génie 54200 Ecrouves;;[-0.5728467, 44.8302701];;FRA16EWIIZ18912;FR*SOD*E*MB16*73*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.592695;44.8402;;;; +;;;;;;;;FRS16PMB162012;FRCPIE6641115;Baldenheim, Mairie;;Avenue Torre D'en Sorre 66700 Argelès-sur-Mer;;[-0.552385, 44.86105];;FRA16EWIIZ18911;FR*SOD*E*MB16*72*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.56079;44.8414;;;; +;;;;;;;;FRS16PMB162011;FRIONE40180;Brignoles, Route de Cabasse;;Route De Soultz 68500 Issenheim;;[-0.5730911, 44.88033];;FRA16EWIIZ18811;FR*SOD*E*MB16*72*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5489381;44.9218;;;; +;;;;;;;;FRS16PMB162111;FRIONE4018;Grosbliederstroff, Avenue Marchande;;Lac Chambon 63790 Chambon-sur-Lac;;[-0.592695, 44.840979];;FRA16EWIIZ18812;FR*SOD*E*MB16*71*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5621268;44.8240441;;;; +;;;;;;;;FRS16PMB162212;FRCPIE6553735;Paris, Le Millénaire;;Route Du Littoral 66700 Argelès-sur-Mer;;[-0.56079, 44.85006];;FRA16EWIIZ18711;FR*SOD*E*MB16*71*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6008798;44.84365;;;; +;;;;;;;;FRS16PMB161511;FRIENE009701;Flers de l'Orne, BMW-MINI;;Route De Cordes 81140 Cahuzac-sur-Vère;;[-0.5489381, 44.8471942];;FRA16EWIIZ18712;FR*SOD*E*MB16*70*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5910003;44.8367369;;;; +;;;;;;;;FRS16PMB161611;FRIENE009702;Villenave-d'Ornon, BORDEAUX SUD AUTOMOBILES;;22 Chemin Du Quart Du Matelot 85270 Saint-Hilaire-de-Riez;;[-0.5621268, 44.830625];;FRA16EWIIZ18511;FR*SOD*E*MB16*56*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.567786;44.8554383;;;; +;;;;;;;;FRS16PMB16912;FRS51E5391;Labège, BOREAL AUTOMOBILES;;Route De Carmignan 30200 Bagnols-sur-Cèze;;[-0.6008798, 44.81902];;FRA16EWIIZ18311;FR*SOD*E*MB16*73*1*4*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.61431;44.8580555;;;; +;;;;;;;;FRS16PMB161512;FRSHEE25;Mérignac, 2 Av. François Mitterrand;;207 Chemin Des Ormes 47210 Saint-Étienne-de-Villeréal;;[-0.5910003, 44.8122102];;FRA16EWIIZ18312;FR*SOD*E*MB16*55*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.61036;44.84235;;;; +;;;;;;;;FRS16PMB161411;FRIONE43260;Cenon, 65 Jean Jaurès;;Chemin De La Salanque 66700 Argelès-sur-Mer;;[-0.567786, 44.8527873];;FRA16EWIIZ18212;FR*SOD*E*MB16*32*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6046;44.843269;;;; +;;;;;;;;FRS16PMB161412;FRS51E4473;Bordeaux, 9 Place des Capucins;;D7 83520 Roquebrune-sur-Argens;;[-0.61431, 44.8514];;FRA16EWIIZ18211;FR*SOD*E*MB16*38*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.56412;44.8455488;;;; +;;;;;;;;FRS16PMB161312;FRIENE009501;Bordeaux, 63 cours de verdun bordeaux;;1032 Chemin Du Plan D'eau Des Iscles 05400 Veynes;;[-0.61036, 44.8324];;FRA16EWIIZ18112;FR*SOD*E*MB16*38*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.61570076;44.8424538;;;; +;;;;;;;;FRS16PMB161311;FRIENE009502;Bordeaux, 33 Rue de la Béchade;;582 Rue Guy Pernin 54200 Toul;;[-0.6046, 44.8302];;FRA16EWIIZ18512;FR*SOD*E*MB16*37*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5812;44.8785426;;;; +;;;;;;;;FRS16PMB161212;FRS28E12623;Mérignac, 34 Avenue du Maréchal de Lattre de Tassigny;;46 Route De Notre-Dame-De-Monts 85160 Saint-Jean-de-Monts;;[-0.56412, 44.8894];;FRA16EWIIZ11312;FR*SOD*E*MB16*37*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.57826;44.85121;;;; +;;;;;;;;FRS16PMB161211;FRIENE35353A;Bordeaux, 12 Quai de la Monnaie;;Route De Taxo À La Mer 66700 Argelès-sur-Mer;;[-0.61570076, 44.88817928];;FRA16EWIIZ13071;FR*SOD*E*MB16*36*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5902;44.856634;;;; +;;;;;;;;FRS16PMB161111;FRS28E17873;Bordeaux, Ginko;;Chemin Des Molières 38410 Vaulnaveys-le-Bas;;[-0.5812, 44.8368];;FRA16EWIIZ4712;FR*SOD*E*MB16*36*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.55604;44.83053;;;; +;;;;;;;;FRS16PMB161112;FRIENE008402;Bordeaux, 25 Place de la Victoire;;800 Route De Saint-Laurent 66420 Le Barcarès;;[-0.57826, 44.8446];;FRA16EWIIZ4612;FR*SOD*E*MB16*35*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.56097;44.8473288;;;; +;;;;;;;;FRS16PMB161011;FRIENE008401;Bordeaux, 140 Cours de l'Yser;;Avenue De La Parée Préneau 85270 Saint-Hilaire-de-Riez;;[-0.5902, 44.8376];;FRA16EWIIZ4511;FR*SOD*E*MB16*35*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.61944;44.793068;;;; +;;;;;;;;FRS16PMB161012;FRS51E4468;Le Bouscat, 12 Rue Coudol;;54 Avenue De Saint-Claude 39260 Moirans-en-Montagne;;[-0.55604, 44.8402];;FRA16EWIIZ4512;FR*SOD*E*MB16*34*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6106798;44.8240534;;;; +;;;;;;;;FRS16PMB16911;FRS37E6063;Be?gles, bègles 213 victor hugo;;135 Impasse Du Pont Neuf 26150 Die;;[-0.56097, 44.8414];;FRA16EWIIZ4411;FR*SOD*E*MB16*34*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5570323;44.865406;;;; +;;;;;;;;FRS16PMB16811;FRCPIE6708045;Bordeaux, 1 eglise saint augustin bordeaux;;Route de la Tour d'Auvergne 63240 Mont-Dore;;[-0.61944, 44.9218];;FRA16EWIIZ4412;FR*SOD*E*MB16*33*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5802927;44.8630867;;;; +;;;;;;;;FRS16PMB16711;FRCPIE6473655;Bordeaux, 2 Rue Honoré Picon;;986 Boulevard de la 36ème division du Texas 83530 Saint-Raphaël;;[-0.6106798, 44.8240441];;FRA16EWIIZ4312;FR*SOD*E*MB16*33*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5921201;44.81634;;;; +;;;;;;;;FRS16PMB162312;FRS51E4470;Villenave-d'Ornon, 322 Route de Toulouse;;596 Les Côtes 04300 Saint-Maime;;[-0.5570323, 44.84365];;FRA16EWIIZ4311;FR*SOD*E*MB16*32*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5698217;44.835869;;;; +;;;;;;;;FRS16PMB162311;FRIENE006401;Bordeaux, 5 Rue Robert Lateulade;;Hameau Des Pourcelles 04190 Les Mées;;[-0.5802927, 44.8367369];;FRA16EWIIZ4212;FR*SOD*E*MB16*31*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.58493;44.8139114;;;; +;;;;;;;;FRS16PMB16812;FRIENE006402;Bordeaux, 4 Cours de l'Argonne;;710 Chemin De Navarrosse 40600 Biscarrosse;;[-0.5921201, 44.8554383];;FRA16EWIIZ4211;FR*SOD*E*MB16*39*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5755883;44.8063454;;;; +;;;;;;;;FRS16PMB162411;FRS51E4471;Bordeaux, 118 Quai de Bacalan;;45 Rue De Kervillen 56470 La Trinité-sur-Mer;;[-0.5698217, 44.8580555];;FRA16EWIIZ4112;FR*SOD*E*MB16*31*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5942345;44.8240481;;;; +;;;;;;;;FRS16PMB166311;FRIONE4326;Bordeaux, 22 Avenue Marcel Dassault;;Route Biscarosse 33115 Pyla sur Mer;;[-0.58493, 44.84235];;FRA16EWIIZ4111;FR*SOD*E*MB16*30*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5794891;44.825539;;;; +;;;;;;;;FRS16PMB166914;FRIENE009602;Bordeaux, 1 Place du Capitaine Dutertre;;4 Le Pont De Vaux 39270 Écrille;;[-0.5755883, 44.843269];;FRA16EWIIZ4012;FR*SOD*E*MB16*30*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5858919;44.8275893;;;; +;;;;;;;;FRS16PMB166913;FRS51E4363;Bordeaux, 87 quai des queyries bordeaux;;123 Bd Du Maréchal De Lattre De Tassigny 85360 La Tranche-sur-Mer;;[-0.5942345, 44.8455488];;FRA16EWIIZ4011;FR*SOD*E*MB16*29*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.614253;44.8307381;;;; +;;;;;;;;FRS16PMB166911;FRS51E5048;Bordeaux, 210 Avenue Thiers;;2 Avenue Des Anneaux Du Roussillon 66140 Canet-en-Roussillon;;[-0.5794891, 44.8424538];;FRA16EWIIZ3912;FR*SOD*E*MB16*28*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.579258;44.8638037;;;; +;;;;;;;;FRS16PMB166811;FRIONE43910;Bordeaux, 1 Rue Jacques Ellul;;Avenue Joliot Curie 66690 Palau-del-Vidre;;[-0.5858919, 44.8785426];;FRA16EWIIZ3911;FR*SOD*E*MB16*28*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5812665;44.8366088;;;; +;;;;;;;;FRS16PMB166812;FRIONE4391;Bordeaux, 23 Chemin Pomerol;;5 Rue Des Sables 85220 L'Aiguillon-sur-Vie;;[-0.614253, 44.85121];;FRA16EWIIZ3811;FR*SOD*E*MB16*27*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5763597;44.8394463;;;; +;;;;;;;;FRS16PMB166711;FRIONE4044;Talence, 281 Cours de la Libération;;646 Chemin De Navarrosse 40600 Biscarrosse;;[-0.579258, 44.856634];;FRA16EWIIZ3812;FR*SOD*E*MB16*27*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.605597;44.85047;;;; +;;;;;;;;FRS16PMB166712;FRCPIE6668835;Bordeaux, 66 Quai des Chartrons;;41 Rue Salvador Allende 60340 Saint-Leu-d'Esserent;;[-0.5812665, 44.83053];;FRA16EWIIZ3711;FR*SOD*E*MB16*26*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5868384;49.63422841;;;; +;;;;;;;;FRS16PMB166612;FRIONE40240;Bordeaux-Caudéran, Eglise;;Avenue De Millau Plage 12100 Millau;;[-0.5763597, 44.8473288];;FRA16EWIIZ3712;FR*SOD*E*MB16*26*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.576803;47.35246;;;; +;;;;;;;;FRS16PMB166611;FRS28E13485;Bordeaux, Saint-Augustin;;52 Rue Mané Er Groëz 56870 Baden;;[-0.605597, 44.793068];;FRA16EWIIZ3611;FR*SOD*E*MB16*25*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5667689;47.241996;;;; +;;;;;;;;FRS16PMB166511;FRIENE009601;Bordeaux, Douet;;95 Place Des Tamaris 34280 La Grande-Motte;;[-0.5868384, 44.8240534];;FRA16EWIIZ3612;FR*SOD*E*MB16*25*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5497758;47.490227;;;; +;;;;;;;;FRS16PMB166512;FRCPIE6600955;Bordeaux, Barail;;12 Avenue Jean Moulin 13210 Saint-Rémy-de-Provence;;[-0.576803, 44.865406];;FRA16EWIIZ3512;FR*SOD*E*MB16*54*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.569361;47.440595;;;; +;;;;;;;;FRS16PMB166411;FRCPIE6600945;Bruges, Maryse Bastié;;Penanguer 29910 Trégunc;;[-0.5667689, 44.8630867];;FRA16EWIIZ3511;FR*SOD*E*MB16*39*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5693503;47.313509;;;; +;;;;;;;;FRS16PMB166412;FRCPIE6731715;Bordeaux, Carayon;;59 Avenue De L'océan 40530 Labenne;;[-0.5497758, 44.81634];;FRA16EWIIZ3411;FR*SOD*E*MB16*29*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5931506;47.51473703;;;; +;;;;;;;;FRS16PMB166312;FRCPIE6731085;Bordeaux, Clemenceau;;830 Chemin Sans Souci 26400 Mirabel-et-Blacons;;[-0.569361, 44.835869];;FRA16EWIIZ3412;FR*SOD*E*MB16*40*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5585728;47.216845;;;; +;;;;;;;;FRS16PMB167011;FRCPIE6731795;Bordeaux, Sourdis;;986 Route De L'iscle - Hameau de Prelles 05120 Saint-Martin-de-Queyrières;;[-0.5693503, 44.8139114];;FRA16EWIIZ3312;FR*SOD*E*MB16*47*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5776042;46.997105;;;; +;;;;;;;;FRS16PMB166212;FRCPIE6731805;Bordeaux, Bénauge;;4 Rue De La Poudrière 97410 Saint-Pierre;;[-0.5931506, 44.8063454];;FRA16EWIIZ3311;FR*SOD*E*MB16*54*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5567316;47.626874;;;; +;;;;;;;;FRS16PMB166211;FRS51E4364;Bordeaux, Serr;;122 rue du Rocher de Lorzier 38430 Moirans;;[-0.5585728, 44.8240481];;FRA16EWIIZ3212;FR*SOD*E*MB16*40*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5265646;47.39856979;;;; +;;;;;;;;FRS16PMB166112;FRIONE40200;Blanquefort, Charcot;;Za De La Fontenelle 35113 Domagné;;[-0.5776042, 44.825539];;FRA16EWIIZ3211;FR*SOD*E*MB16*53*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6196466;47.542961;;;; +;;;;;;;;FRS16PMB166111;FRSHEE90;Bordeaux, 5 Rue du Dr Rocaz;;Avenue Du Pas De Saint-Jacques 86180 Buxerolles;;[-0.5567316, 44.8275893];;FRA16EWIIZ4611;FR*SOD*E*MB16*53*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6056556;47.304456;;;; +;;;;;;;;FRS16PMB166011;FRSHEE91;Bordeaux, Avenue Abadie;;2 Rue Gérard Toulon 13127 Vitrolles;;[-0.5265646, 44.8307381];;FRA16EWIIZ4711;FR*SOD*E*MB16*52*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.606393;47.00871788;;;; +;;;;;;;;FRS16PMB166012;FRS51E4390;Bordeaux, 31 frere bonie;;30 Rue D'épinal 88150 Chavelot;;[-0.6196466, 44.8638037];;FRA16EWIIZ3111;FR*SOD*E*MB16*52*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.595881;47.237854;;;; +;;;;;;;;FRS16PMB165912;FRS28E12908;Bordeaux, 34 Boulevard Pierre 1er;;179 Avenue Luc Donat 97410 Saint-Pierre;;[-0.6056556, 44.8366088];;FRA16EWIIZ4811;FR*SOD*E*MB16*51*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.59277108;47.26238609;;;; +;;;;;;;;FRS16PMB165911;FRCPIE6557675;Bordeaux, 56 Cours Saint-Louis;;7 Place De La Gare 57200 Sarreguemines;;[-0.606393, 44.8394463];;FRA16EWIIZ6212;FR*SOD*E*MB16*50*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.055057;47.622256;;;; +;;;;;;;;FRS16PMB165811;FRCPIE6678495;Bordeaux, 1 avenue vercingetorix bordeaux;;74 Grande Rue 39380 Chamblay;;[-0.595881, 44.85047];;FRA16EWIIZ6211;FR*SOD*E*MB16*50*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.219405;46.978156;;;; +;;;;;;;;FRS16PMB165812;FRS18E14755;Bordeaux, Allées de Tourny;;Place du Château 54740 Haroué;;[-1.59277108, 49.63422841];;FRA16EWIIZ6011;FR*SOD*E*MB16*49*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.335454;47.198513;;;; +;;;;;;;;FRS16PMB165712;FRIONE4020;Bordeaux, 5 Rue de Caudéran;;227 Rue De La Place D'armes 54200 Écrouves;;[5.055057, 47.35246];;FRA16EWIIZ6012;FR*SOD*E*MB16*49*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.788198;47.13451056;;;; +;;;;;;;;FRS16PMB165711;FRS51E15167;Bordeaux, 18 Cours Georges Clemenceau;;3 avenue Jacques Leclerc 54330 Vézelise;;[5.219405, 47.241996];;FRA16EWIIZ5911;FR*SOD*E*MB16*48*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.710612;46.95115721;;;; +;;;;;;;;FRS16PMB165612;FRS28E14173;Bruges, 90 Rue André Messager;;ZAC de la Vallée du Bois 62450 Bapaume;;[4.335454, 47.490227];;FRA16EWIIZ5912;FR*SOD*E*MB16*48*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.17472886;47.60017;;;; +;;;;;;;;FRS16PMB166912;FRS41E5288;Bordeaux, 9 eglise bordeaux;;400 Route de Maisnil 62130 Herlin le Sec;;[4.788198, 47.440595];;FRA16EWIIZ5811;FR*SOD*E*MB16*51*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.134624;46.9368;;;; +;;;;;;;;FRS16PMB167013;FRS51E4389;Bordeaux, 4 Rue du Professeur Vézes;;La Plaine de Saint-Pol 62130 Herlin-le-Sec;;[4.710612, 47.313509];;FRA16EWIIZ5812;FR*SOD*E*MB16*47*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.149525;47.0628197;;;; +;;;;;;;;FRS16PMB165512;FRS41E5287;Bordeaux, Place Amédée Larrieu;;149 rue d'Hesdin 62130 Saint-Pol-de-Ternoise;;[5.17472886, 47.51473703];;FRA16EWIIZ5711;FR*SOD*E*MB16*43*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.33941;47.19284387;;;; +;;;;;;;;FRS16PMB167612;FRTNME18B92448;Bordeaux, 38 cours de verdun bordeaux;;Rue Des Bons Enfants 97410 Saint-Pierre;;[5.134624, 47.216845];;FRA16EWIIZ5712;FR*SOD*E*MB16*41*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.53628868;47.1309424;;;; +;;;;;;;;FRS16PMB16712;FRTNME18B92449;Pessac, 47 Rue de Compostelle;;Route De Narbonne 11200 Bizanet;;[5.149525, 46.997105];;FRA16EWIIZ5611;FR*SOD*E*MB16*46*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.459429;47.467201;;;; +;;;;;;;;FRS16PMB16612;FRTNME18B92450;Bordeaux, 120 Boulevard George V;;ASL SUPERNOV - 3, rue du Lac Mont Cenis 73290 La Motte-Servolex;;[4.33941, 47.626874];;FRA16EWIIZ5612;FR*SOD*E*MB16*41*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.416139;47.260206;;;; +;;;;;;;;FRS16PMB16611;FRCPIE6737475;Bordeaux, 267 Boulevard Godard;;27 impasse Lazare Carnot 79180 Chauray;;[4.53628868, 47.39856979];;FRA16EWIIZ5512;FR*SOD*E*MB16*42*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.794804;47.86279449;;;; +;;;;;;;;FRS16PMB16511;FRTNME08911696;Bordeaux, 204 Cours Saint-Louis;;Route De Pietramaggiore 20260 Calvi;;[4.459429, 47.542961];;FRA16EWIIZ5511;FR*SOD*E*MB16*43*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.142181;47.505772;;;; +;;;;;;;;FRS16PMB16512;FRTNME08911388;Bordeaux, 264 Boulevard Jean Jacques Bosc;;4 Avenue Armand Lanoux 66750 Saint-Cyprien;;[5.416139, 47.304456];;FRA16EWIIZ5412;FR*SOD*E*MB16*42*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.55660909;46.9858866;;;; +;;;;;;;;FRS16PMB16411;FRS18E14281;Bordeaux, 2 Rue des Boucheries;;Route De Bétête 23600 Malleret-Boussac;;[4.794804, 47.00871788];;FRA16EWIIZ5411;FR*SOD*E*MB16*44*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.33899;47.10687;;;; +;;;;;;;;FRS16PMB16412;FRCPIE6580765;Bordeaux, 51 Boulevard Albert 1er;;1444 Route D'albertville 74410 Saint-Jorioz;;[5.142181, 47.237854];;FRA16EWIIZ5312;FR*SOD*E*MB16*44*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.771158;47.220194;;;; +;;;;;;;;FRS16PMB16312;FRIONE1248;Talence, 42 Avenue Roul;;PK10, côté mer, Paopao, 98728 MOOREA, Moorea 98728 Moorea;;[4.55660909, 47.26238609];;FRA16EWIIZ5311;FR*SOD*E*MB16*45*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.962356;46.938293;;;; +;;;;;;;;FRS16PMB16311;FRIONE12480;Bordeaux, 75 Rue Furtado;;102 Boulevard Edouard Herriot 01440 Viriat 01440 Viriat;;[4.33899, 47.622256];;FRA16EWIIZ5212;FR*SOD*E*MB16*45*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.94829543;47.28151538;;;; +;;;;;;;;FRS16PMB16211;FRCPIE6580595;Bordeaux, 166 Cours de l'Argonne;;3 Rue Des Manzats 63800 Cournon-d'Auvergne;;[4.771158, 46.978156];;FRA16EWIIZ5211;FR*SOD*E*MB16*46*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.63063337;47.10452985;;;; +;;;;;;;;FRS16PMB16212;FRSPSESHEL71;Bordeaux, 95 Rue de Tauzia;;Rue du Buehlfeld 68125 Houssen;;[4.962356, 47.198513];;FRA16EWIIZ5121;FR*SOD*E*MB64*31*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.647839;47.586744;;;; +;;;;;;;;FRS16PMB16111;FRCPIE6721065;Floirac, 3 Avenue du Président François Mitterrand;;6 Rue Du Pâtis 44690 La Haie-Fouassière;;[4.94829543, 47.13451056];;FRA16EWIIZ5111;FR*SOD*E*MB64*27*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2572;47.073573;;;; +;;;;;;;;FRS16PMB16112;FRTNME08912512;Bordeaux, 419 eysines;;Centre bourg 45370 Jouy le Potier;;[4.63063337, 46.95115721];;FRA16EWIIZ5122;FR*SOD*E*MB64*31*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8164268;47.52014855;;;; +;;;;;;;;FRS16PMB167611;FRTNME08912519;Bordeaux, 127 Avenue d'Arès;;Coulomet 32100 Larressingle;;[4.647839, 47.60017];;FRA16EWIIZ5112;FR*SOD*E*MB64*30*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.38383655;46.9891;;;; +;;;;;;;;FRS16PMB167014;FRTNME09911216;Bordeaux, 122 Avenue de la République;;26 Route de Toulouse, Faubourg, Rue St Roch 31540 Saint-Félix-Lauragais;;[3.2572, 46.9368];;FRA16EWIIZ5012;FR*SOD*E*MB64*30*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4896383;46.9864;;;; +;;;;;;;;FRS16PMB167511;FRCPIE6581995;Bordeaux, 310 Boulevard du Président Wilson;;Lieu Dit Roques 33570 Puisseguin;;[4.8164268, 47.0628197];;FRA16EWIIZ5011;FR*SOD*E*MB64*29*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.269768;46.98962;;;; +;;;;;;;;FRS16PMB167512;FRTNME18B93139;Cherbourg-en-Cotentin, Rue Pierre Brossolette;;19 Rue Joseph Cappin 32150 Cazaubon;;[5.38383655, 47.19284387];;FRA16EWIIZ4911;FR*SOD*E*MB64*29*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.978646;47.2145;;;; +;;;;;;;;FRS16PMB167412;FRTNME09990180;Dijon, rue René Char;;17 Avenue Du Docteur Justin Jolly 51240 La Chaussée-sur-Marne;;[4.4896383, 47.1309424];;FRA16EWIIZ4912;FR*SOD*E*MB64*28*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.5721201;47.5296;;;; +;;;;;;;;FRS16PMB167411;FRTNME09910716;Genlis, Cours des Martyrs de la Résistance;;01 Place de la ville 64260 Arudy;;[5.269768, 47.467201];;FRA16EWIIZ4812;FR*SOD*E*MB64*28*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.174551;47.0266;;;; +;;;;;;;;FRS16PMB162412;FRTNME08912881;Semur-En-Auxois, Park. rue Jean Jacques Collenot;;2 Allée de Mégevie 33170 Gradignan;;[4.978646, 47.260206];;FRA16EWIIZ3112;FR*SOD*E*MB64*25*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8236791;47.1361;;;; +;;;;;;;;FRS16PMB167313;FRTNME08912880;Saint-Seine-L'Abbaye, Parking rue Carnot;;5 Rue Auguste Pavie 22100 Dinan;;[4.5721201, 47.86279449];;FRA16EWIIZ3012;FR*SOD*E*MB64*27*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.667447;47.0733;;;; +;;;;;;;;FRS16PMB167312;FRTNME08912520;Sombernon, Parking Salle des Fetes;;02 Rue du Chêne Paumulle 36200 Le Pechereau;;[4.174551, 47.505772];;FRA16EWIIZ6411;FR*SOD*E*MB64*26*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.640472;47.29;;;; +;;;;;;;;FRS16PMB167311;FRCPIE6737455;Tilchatel, Parking route de langres;;Argentonesse 24220 Castels-et-Bézenac;;[4.8236791, 46.9858866];;FRA16EWIIZ1512;FR*SOD*E*MB64*22*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.730724;46.79;;;; +;;;;;;;;FRS16PMB167211;FRCPIE6582005;Thorey-En-Plaine, route de Dijon;;2 Rue De La Tuilerie 91160 Ballainvilliers;;[4.667447, 47.10687];;FRA16EWIIZ1412;FR*SOD*E*MB64*26*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.23079647;46.9809;;;; +;;;;;;;;FRS16PMB167212;FRSHEE83;Seurre, Avenue de la Gare;;Rue Du Plessis 91700 Sainte-Geneviève-des-Bois;;[4.640472, 47.220194];;FRA16EWIIZ1311;FR*SOD*E*MB64*25*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2623935;46.9052;;;; +;;;;;;;;FRS16PMB167111;FRSHEE82;Montbard, Parking rue Voltaire;;2 Avenue Du Clos Mouron 71700 Tournus;;[4.730724, 46.938293];;FRA16EWIIZ1312;FR*SOD*E*MB64*24*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.186601;46.8386;;;; +;;;;;;;;FRS16PMB167121;FRSHEE81;Vitteaux, route D'Avallon;;138 Chemin Du Tour Du Lac 88400 Gérardmer;;[4.23079647, 47.28151538];;FRA16EWIIZ1212;FR*SOD*E*MB64*24*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.879176;47.2839;;;; +;;;;;;;;FRS16PMB167012;FRIENE003202;Venarey-Les-Laumes, Place de la Libération;;Boulevard Abel Faivre 83420 La Croix-Valmer;;[5.2623935, 47.10452985];;FRA16EWIIZ1211;FR*SOD*E*MB64*23*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.10898773;47.1727;;;; +;;;;;;;;FRS16PMB165611;FRIENE003201;Pontailler-Sur-Saone, Pl des Martyrs de la Résist;;2198 RN 20 45770 Saran;;[5.186601, 47.586744];;FRA16EWIIZ1112;FR*SOD*E*MB64*32*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.156;47.414098;;;; +;;;;;;;;FRS16PMB167314;FRCPIE6579905;Pommard, Parking Place de L'Eglise;;125 Route Du Danay 74450 Saint-Jean-de-Sixt;;[4.879176, 47.073573];;FRA16EWIIZ1111;FR*SOD*E*MB64*23*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1514;47.525011;;;; +;;;;;;;;FRS16PMB165511;FRCPIE6579895;Rouvres-En-Plaine, rue de la Tournelle;;95 bis Rue de Briare 45230 La Bussière;;[5.10898773, 47.52014855];;FRA16EWIIZ1022;FR*SOD*E*MB64*32*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.158105;47.2413133;;;; +;;;;;;;;FRS16PMB163212;FRCPIE6579885;Pouilly-En-Auxois, Place de la République;;Bains 64260 Sévignacq-Meyracq;;[3.156, 46.9891];;FRA16EWIIZ1021;FR*SOD*E*MB64*39*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0239;46.8164;;;; +;;;;;;;;FRS16PMB163811;FRSHEE84;Montbard, Parking Place du 8 Mai;;26 Rue Jules Ferry 37400 Amboise;;[3.1514, 46.9864];;FRA16EWIIZ1012;FR*SOD*E*MB64*33*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0739;47.41156346;;;; +;;;;;;;;FRS16PMB163812;FRCPIE6579955;Meursault, Parking rue des Citeaux;;Lieu-dit Céré 36130 Coing;;[3.158105, 46.98962];;FRA16EWIIZ1011;FR*SOD*E*MB64*38*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.564;46.883626;;;; +;;;;;;;;FRS16PMB163711;FRCPIE6608375;Morey-Saint-Denis, Parking Place Saint Vincent;;Route de Tonnerre 10340 Les Riceys;;[4.0239, 47.2145];;FRA16EWIIZ912;FR*SOD*E*MB64*42*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0166;47.0018;;;; +;;;;;;;;FRS16PMB163712;FRCPIE6580435;Nuits-Saint-Georges, Place de la Libération;;7 Rue de l'Abreuvoir 77400 Dampmart;;[3.0739, 47.5296];;FRA16EWIIZ911;FR*SOD*E*MB64*21*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1014;47.3708;;;; +;;;;;;;;FRS16PMB163611;FRCPIE6580425;Nolay, Parking rue de la Poste;;village 12480 Brousse-le-Château;;[3.564, 47.0266];;FRA16EWIIZ811;FR*SOD*E*MB64*42*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8188;47.483746;;;; +;;;;;;;;FRS16PMB163612;FRCPIE6580355;Baigneux-Les-Juifs, Parking Salle Communale;;10 Route De Beaulieu 18240 Belleville-sur-Loire;;[4.0166, 47.1361];;FRA16EWIIZ812;FR*SOD*E*MB64*41*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9707;47.016096;;;; +;;;;;;;;FRS16PMB163512;FRCPIE6560525;Imphy, Place des Martyrs;;20 Avenue Henri Laudier 18000 Bourges;;[3.1014, 47.0733];;FRA16EWIIZ712;FR*SOD*E*MB64*41*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2204;48.21262288;;;; +;;;;;;;;FRS16PMB163511;FRCPIE6579965;Savigny-Les-Beaune, rue du Chanoine Donin;;99 Rue Des Iris 40600 Biscarrosse;;[3.8188, 47.29];;FRA16EWIIZ711;FR*SOD*E*MB64*40*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8417;48.22329579;;;; +;;;;;;;;FRS16PMB163412;FRCPIE6517135;Auxonne, Place de L'Iliotte;;20 Route Nationale 31450 Donneville;;[3.9707, 46.79];;FRA16EWIIZ611;FR*SOD*E*MB64*40*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4547;48.34271681;;;; +;;;;;;;;FRS16PMB163411;FRFASE331050;Arnay-Le-Duc, Parking Pierre Meunier;;6 Rue De La Viotte 25000 Besançon;;[3.2204, 46.9809];;FRA16EWIIZ612;FR*SOD*E*MB64*39*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.957;48.17929342;;;; +;;;;;;;;FRS16PMB163312;FRFASE330150;Beze, rue Dominique Clement;;Le Moulin de la Pipe 26400 Omblèze;;[3.8417, 46.9052];;FRA16EWIIZ512;FR*SOD*E*MB64*38*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3318;48.15891118;;;; +;;;;;;;;FRS16PMB163311;FRCPIE6638045;Couchey, Place Charles de Gaulle;;2 Allée De L'amicale 12210 Laguiole;;[3.4547, 46.8386];;FRA16EWIIZ511;FR*SOD*E*MB64*33*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.931379;48.24885109;;;; +;;;;;;;;FRS16PMB163211;FRCPIE6638035;Chatillon-Sur-Seine, Place Cours L'Abbe;;1 La Prairie de l'étang 45210 Ferrières-en-Gâtinais;;[2.957, 47.2839];;FRA16EWIIZ412;FR*SOD*E*MB64*37*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.36558;48.19546071;;;; +;;;;;;;;FRS16PMB163112;FRIONE4098;Epoisses, Place du General de Candras;;3 Avenue Du Lot 48500 La Canourgue;;[3.3318, 47.1727];;FRA16EWIIZ411;FR*SOD*E*MB64*37*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.22118136;48.16737167;;;; +;;;;;;;;FRS16PMB163911;FRIONE40980;Dijon, rue Rene Char;;70 rue des Déportés 59150 Crespin;;[2.931379, 47.414098];;FRA16EWIIZ312;FR*SOD*E*MB64*36*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.721;48.34022524;;;; +;;;;;;;;FRS16PMB163111;FRCPIE6588555;Bligny-Les-Beaune, Parking devant la Mairie;;Zone d'activité les Forges 51200 Epernay;;[5.36558, 47.525011];;FRA16EWIIZ311;FR*SOD*E*MB64*36*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.92293063;48.2864729;;;; +;;;;;;;;FRS16PMB163011;FRCPIE6589265;Bligny-Sur-Ouche, Place du 8 Mai 1945;;Boulevard victor hugo 02100 Saint Quentin;;[5.22118136, 47.2413133];;FRA16EWIIZ212;FR*SOD*E*MB64*35*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.152152;48.34304529;;;; +;;;;;;;;FRS16PMB163012;FRCPIE6589545;Chateauneuf-En-Auxois, rue Grande rue;;153 rue de Bruxelles 59540 Caudry;;[3.721, 46.8164];;FRA16EWIIZ211;FR*SOD*E*MB64*35*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0831;48.2339607;;;; +;;;;;;;;FRS16PMB162912;FRN54E18752;Chassagne-Montrachet, Place de L'Europe;;Boulevard Saint Firmin 02800 La Fere;;[2.92293063, 47.41156346];;FRA16EWIIZ111;FR*SOD*E*MB64*34*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1288;48.29543923;;;; +;;;;;;;;FRS16PMB162812;FRN54E18751;Saulieu, rue D'Argentine;;52 route de Soissons 51170 Fismes;;[3.152152, 46.883626];;FRA16EWIIZ112;FR*SOD*E*MB64*34*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.164861;48.2118863;;;; +;;;;;;;;FRS16PMB162811;FRCPIE6631485;Saint-Jean-De-Losne, Avenue de la Gare D'Eau;;Rue d'Australie 80000 Amiens;;[3.0831, 47.0018];;FRA16EWIIZ1411;FR*SOD*E*MB64*22*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.166472;48.3052349;;;; +;;;;;;;;FRS16PMB162712;FRCPIE6589465;Selongey, Parking rue de L'éGlise;;Avenue Désandrouin 59300 Valenciennes;;[3.1288, 47.3708];;FRA16EWIIZ1511;FR*SOD*E*MB64*6*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.35302339;48.22524608;;;; +;;;;;;;;FRS16PMB162711;FRCPIE6589125;Ladoix-Serrigny, Avenue du Champ de Foire;;1 Rue Des Acacias 51370 Thillois;;[3.164861, 47.483746];;FRA16EWIIZ3011;FR*SOD*E*MB64*21*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.22550631;48.217381;;;; +;;;;;;;;FRS16PMB162612;FRCPIE6588995;Is-Sur-Tille, Place Villeneuve Moret;;193 Avenue Winston Churchill 62000 Arras;;[3.166472, 47.016096];;FRA16EWIIZ1611;FR*SOD*E*MB64*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5061168;48.17470749;;;; +;;;;;;;;FRS16PMB162611;FRCPIE6721155;Nevers, Parc Salengro;;Avenue Henry Barbusse 59770 Marly;;[3.35302339, 48.21262288];;FRA16EWIIZ2912;FR*SOD*E*MB64*9*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.09662083;48.09110535;;;; +;;;;;;;;FRS16PMB162512;FRCPIE6535055;Nevers, Impasse de la Grippe;;4 Avenue de L' arc 80330 Longueau;;[3.22550631, 48.22329579];;FRA16EWIIZ2911;FR*SOD*E*MB64*8*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.19294184;48.08561;;;; +;;;;;;;;FRS16PMB162511;FRCPIE6733705;Nevers, Parking Pierre Beregovoy;;Avenue Roger Couderc 59610 Fourmies;;[3.5061168, 48.34271681];;FRA16EWIIZ2811;FR*SOD*E*MB64*8*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32516;48.342125;;;; +;;;;;;;;FRS16PMB165411;FRSHEE86;Montsauche, Parking rue du Docteur Monot;;72 rue de la République 62450 Bapaume;;[3.09662083, 48.17929342];;FRA16EWIIZ2812;FR*SOD*E*MB64*7*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.26409414;48.35176095;;;; +;;;;;;;;FRS16PMB163912;FRSHEE85;St-Amand-En-Puisaye, Place du Marche;;7 Rue René Coty 95220 HERBLAY;;[3.19294184, 48.15891118];;FRA16EWIIZ2712;FR*SOD*E*MB64*7*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.42688814;48.13241146;;;; +;;;;;;;;FRS16PMB162911;FRCPIE6582395;Rouy, Place du 11 Novembre;;Avenue des Aulnes 78250 MEULAN EN YVELINES;;[3.32516, 48.24885109];;FRA16EWIIZ2711;FR*SOD*E*MB64*6*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.06671977;48.0195143;;;; +;;;;;;;;FRS16PMB164011;FRCPIE6582075;Planchez, Place de la Resistance;;45 Avenue Du Général Leclerc 94240 L'Haÿ-les-Roses;;[3.26409414, 48.19546071];;FRA16EWIIZ2612;FR*SOD*E*MB64*5*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.205389;48.2001433;;;; +;;;;;;;;FRS16PMB164712;FRCPIE6582065;Pougues-Les-Eaux-, Parking de la Tour de Musique;;rue Lempereur 59750 Feignies;;[3.42688814, 48.16737167];;FRA16EWIIZ2611;FR*SOD*E*MB64*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.26034641;48.197436;;;; +;;;;;;;;FRS16PMB165412;FRSHEE87;Lormes, Parking Vauban;;1 boulevard Lucien Pierquin 08000 Warcq;;[3.06671977, 48.34022524];;FRA16EWIIZ2512;FR*SOD*E*MB64*4*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5574433;48.1983793;;;; +;;;;;;;;FRS16PMB164012;FRCPIE6585715;Luzy, Avenue du Dr Dollet;;2 rue de la Croix Maurencienne 51370 Saint Brice Courcelles;;[3.205389, 48.2864729];;FRA16EWIIZ2511;FR*SOD*E*MB64*10*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.39692652;48.19667382;;;; +;;;;;;;;FRS16PMB165311;FRCPIE6586685;St-Eloi, Place de la Mairie;;43 avenue du Maréchal Leclerc Hauteclocque 59360 Le Cateau Cambrésis;;[3.26034641, 48.34304529];;FRA16EWIIZ2411;FR*SOD*E*MB64*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2575271;48.195586;;;; +;;;;;;;;FRS16PMB165312;FRCPIE6586635;St-Honore-Les-Bains, rue Eugéne Boyer;;rue de la Roche Garde 22680 ETABLES SUR MER;;[3.5574433, 48.2339607];;FRA16EWIIZ2412;FR*SOD*E*MB64*3*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.05021346;48.196246;;;; +;;;;;;;;FRS16PMB165212;FRCPIE6585765;St-Leger-Des-Vignes, Epicerie;;51 Route De L'océan 33590 Grayan-et-l'Hôpital;;[3.39692652, 48.29543923];;FRA16EWIIZ2311;FR*SOD*E*MB64*3*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2680166;48.1995538;;;; +;;;;;;;;FRS16PMB165211;FRSHEE88;Pouilly-Sur-Loire, rue des Ecoles;;42 Rue Du Général Leclerc 59510 Hem;;[3.2575271, 48.2118863];;FRA16EWIIZ2312;FR*SOD*E*MB64*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2870472;48.1387833;;;; +;;;;;;;;FRS16PMB165111;FRCPIE6584335;Premery, Place du Champ de Foire;;2 Avenue De Chanzy 17500 Jonzac;;[3.05021346, 48.3052349];;FRA16EWIIZ2211;FR*SOD*E*MB64*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.34141284;48.3240062;;;; +;;;;;;;;FRS16PMB165011;FRCPIE6584255;Cosne sur Loire, Place de la Gare;;Rue Alsace-Lorraine 17500 Jonzac;;[3.2680166, 48.22524608];;FRA16EWIIZ2212;FR*SOD*E*MB64*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.59796211;48.19868899;;;; +;;;;;;;;FRS16PMB165012;FRCPIE6583625;Fontaine-Francaise, Parking Ch dela Croix Brunot;;Parc du Val de Seugne, ZAC du Val de Seugne 17500 Jonzac;;[3.2870472, 48.217381];;FRA16EWIIZ2111;FR*SOD*E*MB64*1*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2934;48.2579944;;;; +;;;;;;;;FRS16PMB164911;FRCPIE6579405;Genlis, Avenue du Général de Gaulle;;10 Rue De Forbach 57460 Kerbach;;[3.34141284, 48.17470749];;FRA16EWIIZ2112;FR*SOD*E*MB64*43*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.072452;48.3394837;;;; +;;;;;;;;FRS16PMB164912;FRN54E18703;Fours, Place Pouyat;;Rue Justinien Blazy 95780 La Roche-Guyon;;[3.59796211, 48.09110535];;FRA16EWIIZ2012;FR*SOD*E*MB64*9*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.13413979;48.28968586;;;; +;;;;;;;;FRS16PMB164811;FRCPIE6605525;Cosne-Sur-Loire, Place du General de Gaulle;;Place Du Mail 45260 Lorris;;[3.2934, 48.08561];;FRA16EWIIZ2011;FR*SOD*E*MB64*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4868744;48.1136026;;;; +;;;;;;;;FRS16PMB164812;FRS37E119;Magny-Cours, Rue du Fournil;;10 Quartier L'ayguelade 64260 Bielle;;[3.072452, 48.342125];;FRA16EWIIZ1921;FR*SOD*E*MB64*20*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.51373319;48.15216003;;;; +;;;;;;;;FRS16PMB165112;FRSPSESHEL41;Fourchambault, Place St Louis;;8 Rue de la Harpe 57620 Goetzenbruck;;[3.13413979, 48.35176095];;FRA16EWIIZ1912;FR*SOD*E*MB64*16*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2812817;48.088292;;;; +;;;;;;;;FRS16PMB164711;FRS37E118;Donzy, Place Gambetta;;2B rue Charles Jarrin 01000 Bourg-en-Bresse;;[3.4868744, 48.13241146];;FRA16EWIIZ1911;FR*SOD*E*MB64*20*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.279557;48.2864598;;;; +;;;;;;;;FRS16PMB164311;FRCPIE6571345;Bouhy, Rue du champ de foire;;1 Allée des 1r et 5e RTM 01000 Bourg-en-Bresse;;[3.51373319, 48.0195143];;FRA16EWIIZ1922;FR*SOD*E*MB64*19*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.29046029;48.00171053;;;; +;;;;;;;;FRS16PMB164112;FRSPSESHEL111;Coulanges Les Nevers, Champ de la Porte;;1 Avenue du Champs de Foire 01000 Bourg-en-Bresse;;[3.2812817, 48.2001433];;FRA16EWIIZ1811;FR*SOD*E*MB64*19*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.27002048;47.1786;;;; +;;;;;;;;FRS16PMB164611;FRCPIE6655025;Saligny, rue du Gue;;Square Joubert 01000 Bourg-en-Bresse;;[3.279557, 48.197436];;FRA16EWIIZ1812;FR*SOD*E*MB64*18*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.28408;46.7826;;;; +;;;;;;;;FRS16PMB164111;FRCPIE6571365;Nailly, rue de L Eglise;;Grande Rue 27380 Charleval;;[3.29046029, 48.1983793];;FRA16EWIIZ1712;FR*SOD*E*MB64*18*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.27625239;46.4322;;;; +;;;;;;;;FRS16PMB164212;FRCPIE6571335;Saint-Maurice-Aux-Riches-Hommes, rue Dr Courtois;;3 Rue Saint-Martin 57680 Corny-sur-Moselle;;[3.27002048, 48.19667382];;FRA16EWIIZ1711;FR*SOD*E*MB64*17*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.992732;46.6206;;;; +;;;;;;;;FRS16PMB164312;FRCPIE6571325;Saint-Valerien, 20 rue de la République;;Route de Buxerolles 87270 Couzeix;;[3.28408, 48.195586];;FRA16EWIIZ1612;FR*SOD*E*MB64*17*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1360503;46.8968;;;; +;;;;;;;;FRS16PMB164211;FRCPIE6737755;Subligny, 24 rue du Champ du Cerf;;1 Place De L'église 72390 Dollon;;[3.27625239, 48.196246];;FRA16EWIIZ6412;FR*SOD*E*MB64*16*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0821601;46.3075;;;; +;;;;;;;;FRS16PMB164411;FRIONE43970;Soucy, 1 Place du Moment;;1 Place De Sourzy 69700 Montagny;;[2.992732, 48.1995538];;FRA16EWIIZ6512;FR*SOD*E*MB64*15*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.47557699;47.0774;;;; +;;;;;;;;FRS16PMB164412;FRIONE44020;Paron, 7 Avenue Aristide Briand;;85 Avenue Pierre Cormoreche 01120 Montluel;;[3.1360503, 48.1387833];;FRA16EWIIZ13081;FR*SOD*E*MB64*11*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.26496823;46.6094;;;; +;;;;;;;;FRS16PMB164511;FRIONE4402;Theil-Sur-Vanne, 4 Rt du Miroir;;Rue Principale 57170 Sotzeling;;[3.0821601, 48.3240062];;FRA16EWIIZ11411;FR*SOD*E*MB64*15*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1657181;46.9451;;;; +;;;;;;;;FRS16PMB164512;FRIONE4397;Villeneuve-La-Guyard, 8 rue de la Vallee;;Route De Verdun 57180 Terville;;[3.47557699, 48.19868899];;FRA16EWIIZ23212;FR*SOD*E*MB64*14*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.30749631;46.7974;;;; +;;;;;;;;FRS16PMB164612;FRSPSESHEL11;Pont-Sur-Yonne, Quai de la Republique;;Place Santa Terra 73320 Tignes;;[3.26496823, 48.2579944];;FRA16EWIIZ11211;FR*SOD*E*MB64*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0665146;46.3616;;;; +;;;;;;;;FRS64PMB643111;FRCPIE6567525;Sergines, 3 rue de L'Hotel de Ville;;Rue De Chasse Coquins 84600 Valréas;;[3.1657181, 48.3394837];;FRA16EWIIZ11212;FR*SOD*E*MB64*13*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.30987141;46.9909;;;; +;;;;;;;;FRS64PMB642711;FRCPIE6567455;Villeneuve-L'Archeveque, Place de la Mairie;;Zone du Wameau - La Warpillière 55100 Bras-sur-Meuse;;[3.30749631, 48.28968586];;FRA16EWIIZ11112;FR*SOD*E*MB64*13*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.295757;46.6;;;; +;;;;;;;;FRS64PMB643112;FRCPIE6642475;Thorigny-Sur-Oreuse, Place du Cerbouilly;;Impasse Des Quatre Routes 63210 Nébouzat;;[3.0665146, 48.1136026];;FRA16EWIIZ11111;FR*SOD*E*MB64*12*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5484267;46.783;;;; +;;;;;;;;FRS64PMB643012;FRCPIE6567205;Saint Martin du Tertre, Place Emilie Loubet;;9 Rue Dreispitz 67700 Monswiller;;[3.30987141, 48.15216003];;FRA16EWIIZ11012;FR*SOD*E*MB64*12*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.7283349;46.4807;;;; +;;;;;;;;FRS64PMB643011;FRCPIE6567135;Saint-Agnan, rue Paul Grappillard;;21 Rue Du Maréchal Foch 67390 Marckolsheim;;[3.295757, 48.088292];;FRA16EWIIZ11011;FR*SOD*E*MB64*11*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0217;46.8686;;;; +;;;;;;;;FRS64PMB642911;FRCPIE6566565;Saint-Denis, rue Ernest Salmon;;1 Place De La Mairie 86140 Scorbé-Clairvaux;;[3.5484267, 48.2864598];;FRA16EWIIZ10911;FR*SOD*E*MB64*43*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8466;46.434;;;; +;;;;;;;;FRS64PMB642912;FRCPIE6699585;Saint-Clement, Place de L'Eglise;;Place de Roscanvel 73210 Peisey-Nancroix;;[3.7283349, 48.00171053];;FRA16EWIIZ10912;FR*SOD*E*MB64*3*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2742;46.7217;;;; +;;;;;;;;FRS64PMB642812;FRCPIE6699575;Malay-Le-Grand, 3 rue de la Republique;;Impasse Du Wasen 68320 Muntzenheim;;[3.0217, 47.1786];;FRA16EWIIZ10712;FR*SOD*E*MB64*44*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.7762;46.485;;;; +;;;;;;;;FRS64PMB642811;FRSPSESHEL91;Arces-Dilo, 6 Grande rue;;20 Rue Des 80 Fusillés 62590 Oignies;;[4.8466, 46.7826];;FRA16EWIIZ10711;FR*SOD*E*MB64*70*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.0244;46.5573;;;; +;;;;;;;;FRS64PMB642511;FRCPIE6737215;Villeneuve-Sur-Yonne, Contre Allée Bd Marceau;;Place de l'Eglise 62590 Oignies;;[4.2742, 46.4322];;FRA16EWIIZ10621;FR*SOD*E*MB64*74*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.603;46.5684612;;;; +;;;;;;;;FRS64PMB642712;FRCPIE6570275;Villeneuve La Guyard, Parking de la gare sud;;980 Route D'escalles 62231 Peuplingues;;[3.7762, 46.6206];;FRA16EWIIZ10611;FR*SOD*E*MB64*74*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0986;46.912098;;;; +;;;;;;;;FRS64PMB642611;FRCPIE6571155;Vinneuf, Parking de l'Eglise;;23 Rue De La Cure 88300 Rollainville;;[5.0244, 46.8968];;FRA16EWIIZ10322;FR*SOD*E*MB64*73*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.1115;46.2069;;;; +;;;;;;;;FRS64PMB642212;FRCPIE6570455;Cerisiers, Place de L Eglise;;Rue Des Sources 21590 Santenay;;[4.603, 46.3075];;FRA16EWIIZ10311;FR*SOD*E*MB64*73*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3961;46.7142;;;; +;;;;;;;;FRS64PMB642612;FRCPIE6570445;Bussy-En-Othe, 4 Place de la Fontaine;;407 Avenue Sainte-Marguerite 06200 Nice;;[4.0986, 47.0774];;FRA16EWIIZ10321;FR*SOD*E*MB64*72*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.78;47.0533;;;; +;;;;;;;;FRS64PMB642512;FRSPSESHEL152;Sens, Abords de la Place Garibaldi;;Rue Du Sirocco 37510 Ballan-Miré;;[5.1115, 46.6094];;FRA16EWIIZ10312;FR*SOD*E*MB64*72*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4839;46.2602;;;; +;;;;;;;;FRS64PMB642412;FRCPIE6737275;Sens, Place des Jacobins;;10 Rue Gilles De Roberval 28630 Nogent-le-Phaye;;[4.3961, 46.9451];;FRA16EWIIZ10211;FR*SOD*E*MB64*71*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.5141;46.8075;;;; +;;;;;;;;FRS64PMB642411;FRS37E1101;Sens, Abords de la Place des Héros;;2 Avenue Des Monts Gaultier 35230 Noyal-Châtillon-sur-Seiche;;[4.78, 46.7974];;FRA16EWIIZ10212;FR*SOD*E*MB64*71*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0587;46.8057;;;; +;;;;;;;;FRS64PMB642312;FRCPIE6737305;Sens, Parking Gare Baudry;;58 bis rue Lecourbe 39000 Lons-le-Saulnier;;[4.4839, 46.3616];;FRA16EWIIZ10122;FR*SOD*E*MB64*70*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7454;46.2916;;;; +;;;;;;;;FRS64PMB643211;FRCPIE6737295;Sens, Place Victor Hugo;;Le Gascheau 72500 Luceau;;[4.5141, 46.9909];;FRA16EWIIZ10111;FR*SOD*E*MB64*75*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9717;46.794819;;;; +;;;;;;;;FRS64PMB642311;FRS37E774;Sens, Quai Ernest landry;;1 Quai De Nice 45500 Gien;;[4.0587, 46.6];;FRA16EWIIZ10112;FR*SOD*E*MB64*69*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.5735;46.87591316;;;; +;;;;;;;;FRS64PMB643212;FRCPIE6576985;Cheroy, Parking Intermarche;;Rue Du Champ Du Bail 63300 Thiers;;[4.7454, 46.783];;FRA16EWIIZ10121;FR*SOD*E*MB64*69*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.6628;49.41435513;;;; +;;;;;;;;FRS64PMB643911;FRCPIE6576965;Villeneuve-La-Dondagre, rue des Vignes;;Rue Bazelaire 57420 LOUVIGNY;;[3.9717, 46.4807];;FRA16EWIIZ10011;FR*SOD*E*MB64*68*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.6833;49.232101;;;; +;;;;;;;;FRS64PMB643311;FRS41E13903;Villeblevin, Place de la Mairie;;Ruelle du Jeu de Quilles 57050 Lorry-lès-Metz;;[4.5735, 46.8686];;FRA16EWIIZ10012;FR*SOD*E*MB64*68*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9882;49.73738154;;;; +;;;;;;;;FRS64PMB643812;FRCPIE6576835;Chigy, rue des Vieilles Chenevières;;32 Grand Rue 57050 Lorry-lès-Metz;;[4.6628, 46.434];;FRA16EWIIZ9911;FR*SOD*E*MB64*67*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9996;49.9116821;;;; +;;;;;;;;FRS64PMB644211;FRS41E13906;Cuy, Place Lucien Pothier;;1 Avenue de l'Europe 86500 Montmorillon;;[3.6833, 46.7217];;FRA16EWIIZ9912;FR*SOD*E*MB64*67*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.7476577;46.47206;;;; +;;;;;;;;FRS64PMB642112;FRS37E2183;Courlon-Sur-Yonne, Place du Four;;Plan de Campagne 13480 Cabries;;[3.9882, 46.485];;FRA16EWIIZ9812;FR*SOD*E*MB64*66*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.754427;46.783863;;;; +;;;;;;;;FRS64PMB644212;FRCPIE6575785;La-Chapelle-Sur-Oreuse, 17 Grand rue;;12 Avenue Des Tilleuls 54980 Batilly;;[4.9996, 46.5573];;FRA16EWIIZ9811;FR*SOD*E*MB64*66*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3393;46.952661;;;; +;;;;;;;;FRS64PMB644112;FRSPSESHEL61;Domats, Place de L Eglise;;47 Rue Principale 67320 Berg;;[3.7476577, 46.5684612];;FRA16EWIIZ11311;FR*SOD*E*MB64*75*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.696;46.2460945;;;; +;;;;;;;;FRS64PMB644111;FRFASE330990;Rosoy, 33 Contre Allée Cd606;;Place De La Dombes 01700 Beynost;;[4.754427, 46.912098];;FRA16EWIIZ11412;FR*SOD*E*MB64*76*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.655;46.77541;;;; +;;;;;;;;FRS64PMB644011;FRFASE330991;Villeneuve-Sur-Yonne, Faubourg Saint Nicolas;;Place André Malraux 01000 Bourg-en-Bresse;;[4.3393, 46.2069];;FRA16EWIIZ9712;FR*SOD*E*MB64*87*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.76;46.8966172;;;; +;;;;;;;;FRS64PMB644012;FRCPIE6577935;Courgenay, Place des déportés;;Place des Bons Enfants 01000 Bourg-en-Bresse;;[4.696, 46.7142];;FRA16EWIIZ11512;FR*SOD*E*MB64*82*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4315;46.96801739;;;; +;;;;;;;;FRS64PMB643912;FRSPSESHEL21;Saint-Florentin, Place Louis dubost;;Place de l'Hôtel de ville 77260 La Ferté-sous-Jouarre;;[3.655, 47.0533];;FRA16EWIIZ12922;FR*SOD*E*MB64*86*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4219;47.46554085;;;; +;;;;;;;;FRS64PMB643811;FRIONE41380;La-Charite-Sur-Loire, Place de L'Europe;;Kerhuel 29720 Plonéour-Lanvern;;[4.76, 46.2602];;FRA16EWIIZ12921;FR*SOD*E*MB64*85*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3076;46.772568;;;; +;;;;;;;;FRS64PMB643312;FRIONE4466;Chalon-Sur-Saone, place du 19 mars 1962;;02 Rue De La Mairie 88220 Uzemain;;[4.4315, 46.8075];;FRA16EWIIZ12912;FR*SOD*E*MB64*85*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.816533;46.212;;;; +;;;;;;;;FRS64PMB643711;FRCPIE6631675;Charolles, quai de la poterne;;64 rue Foch 57680 Novéant;;[4.4219, 46.8057];;FRA16EWIIZ12911;FR*SOD*E*MB64*84*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.94633148;47.907849;;;; +;;;;;;;;FRS64PMB643712;FRCPIE6573245;Bourbon-Lancy, rue du 11 novembre;;Avenue De La Tarentaise 73210 Aime-la-Plagne;;[4.3076, 46.2916];;FRA16EWIIZ12811;FR*SOD*E*MB64*84*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.11367487;46.6538;;;; +;;;;;;;;FRS64PMB643612;FRS41E20426;Verdun Sur Le Doubs, Place saint jean;;24 Rue D'alsace 88150 Igney;;[4.816533, 46.794819];;FRA16EWIIZ12812;FR*SOD*E*MB64*83*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.467489;47.458741;;;; +;;;;;;;;FRS64PMB643611;FRS18E9842;Tramayes, place du champ de Foire;;Rue Du Général De Gaulle 59730 Solesmes;;[4.94633148, 46.87591316];;FRA16EWIIZ12631;FR*SOD*E*MB64*83*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.70957069;46.890607;;;; +;;;;;;;;FRS64PMB643512;FRS88E16345;Anost, le bourg;;Avenue de la Butte Gayen 94440 SANTENY;;[2.11367487, 49.41435513];;FRA16EWIIZ12612;FR*SOD*E*MB64*82*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33435908;46.715193;;;; +;;;;;;;;FRS64PMB643511;FRIONE4138;Bantanges , rue du bourg;;55 Rue De Melun 77310 Pringy;;[2.467489, 49.232101];;FRA16EWIIZ12642;FR*SOD*E*MB64*81*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.809928;46.7627;;;; +;;;;;;;;FRS64PMB643411;FRCPIE6589695;Auxy, route de chalon;;Avenue Robert Hottinguer 94380 BONNEUIL SUR MARNE;;[4.70957069, 49.73738154];;FRA16EWIIZ12611;FR*SOD*E*MB64*76*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.862446;47.3551;;;; +;;;;;;;;FRS64PMB643412;FRTNME18B92932;Dracy Le Fort, rue du pressoir;;Avenue Julien Duranton 94460 VALENTON;;[2.33435908, 49.9116821];;FRA16EWIIZ12622;FR*SOD*E*MB64*81*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.30009;46.9987;;;; +;;;;;;;;FRS64PMB642211;FRIONE12650;Dompierre Les Ormes, place de la bascule;;avenue de la Victoire 77100 MEAUX;;[4.809928, 46.47206];;FRA16EWIIZ12632;FR*SOD*E*MB64*80*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.786594;47.104;;;; +;;;;;;;;FRS64PMB64611;FRCPIE6599885;Epinac, place charles de gaulles;;37 rue de la Prairie 02400 Château Thierry;;[4.862446, 46.783863];;FRA16EWIIZ12641;FR*SOD*E*MB64*80*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.887815;46.7916;;;; +;;;;;;;;FRS64PMB642111;FRSHEE77;Gueugnon, place de l'église;;36 Avenue du General Patton 77000 MELUN;;[4.30009, 46.952661];;FRA16EWIIZ12621;FR*SOD*E*MB64*79*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.66859444;46.9683;;;; +;;;;;;;;FRS64PMB64411;FRSHEE76;Givry, place de la poste;;50 rue waldeck rousseau 91210 DRAVEIL;;[4.786594, 46.2460945];;FRA16EWIIZ12512;FR*SOD*E*MB64*78*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.14387753;47.3673;;;; +;;;;;;;;FRS64PMB64911;FRSHEE75;Digoin, place de la grève;;Avenue Charles de Gaulle 91420 MORANGIS;;[4.887815, 46.77541];;FRA16EWIIZ12511;FR*SOD*E*MB64*78*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.62090418;46.701629;;;; +;;;;;;;;FRS64PMB64811;FRSHEE74;Couches, place de la république;;Rue Marcel Pagnol 91800 Boussy-Saint-Antoine;;[4.66859444, 46.8966172];;FRA16EWIIZ12312;FR*SOD*E*MB64*77*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.832181;46.991657;;;; +;;;;;;;;FRS64PMB64812;FRSHEE73;Cluny, parking du prado;;rue Jean Jaurès 59278 ESCAUTPONT;;[4.14387753, 46.96801739];;FRA16EWIIZ12311;FR*SOD*E*MB64*77*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.75561;46.98754;;;; +;;;;;;;;FRS64PMB64711;FRS37E130;Cronat, place de l'église;;Allée des Entrepreneurs 10100 ROMILLY SUR SEINE;;[-0.62090418, 47.46554085];;FRA16EWIIZ12212;FR*SOD*E*MB64*65*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.134109;46.8685;;;; +;;;;;;;;FRS64PMB64712;FRCPIE6599965;Digoin, place de la gare;;Rue Ernest Sarron 77410 CLAYE SOUILLY;;[4.832181, 46.772568];;FRA16EWIIZ12211;FR*SOD*E*MB64*65*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.6845;47.2805;;;; +;;;;;;;;FRS64PMB64612;FRCPIE6659155;Cuisery, place du champ de Foire;;chemin des quatres chenes 77340 PONTAULT COMBAULT;;[4.75561, 46.212];;FRA16EWIIZ12121;FR*SOD*E*MB64*64*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.521671;47.0146;;;; +;;;;;;;;FRS64PMB64512;FRS37E131;Saint-Aubin-sur-Loire, Place Gabriel Gauthier;;Rue du 8 Mai 1945 77260 Reuil en Brie;;[2.134109, 47.907849];;FRA16EWIIZ12111;FR*SOD*E*MB64*49*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.464834;47.4588;;;; +;;;;;;;;FRS64PMB64511;FRS18E17911;Chagny, 14 avenue du Général De Gaulle;;rue de la Bernache 77210 SAMOREAU;;[4.6845, 46.6538];;FRA16EWIIZ12122;FR*SOD*E*MB64*53*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.352329;47.0444;;;; +;;;;;;;;FRS64PMB64412;FRCPIE6600295;Chaufailles, place docteur henri ferrere;;Avenue de la Courtillère 77400 SAINT THIBAULT DES VIGNES;;[3.521671, 47.458741];;FRA16EWIIZ12112;FR*SOD*E*MB64*52*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4386;47.2547;;;; +;;;;;;;;FRS64PMB641012;FRCPIE6659145;Buxy, place du champ de Foire;;rue de Bernau 94500 CHAMPIGNY;;[3.464834, 46.890607];;FRA16EWIIZ12011;FR*SOD*E*MB64*52*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3858;47.41023635;;;; +;;;;;;;;FRS64PMB64311;FRCPIE6600265;Chatillon-En-Bazois, Place Pierre Saury;;avenue Paul Langevin 91130 RIS ORANGIS;;[3.352329, 46.715193];;FRA16EWIIZ12012;FR*SOD*E*MB64*51*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.393;47.063706;;;; +;;;;;;;;FRS64PMB64331;FRCPIE6600025;Chaintre, place du luminaire;;route nationale 6 77240 VERT SAINT DENIS;;[3.4386, 46.7627];;FRA16EWIIZ11611;FR*SOD*E*MB64*51*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5139;46.613;;;; +;;;;;;;;FRS64PMB64332;FRCPIE6599985;Le Creusot, Gare Ter, rue mamby;;Rue Saint Jean 72600 Saint Longis;;[3.3858, 47.3551];;FRA16EWIIZ11612;FR*SOD*E*MB64*50*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1196;46.8329;;;; +;;;;;;;;FRS64PMB64212;FRIONE1265;Le Creusot, place schneider;;route de Montereau 77000 VAUX LE PENIL;;[3.393, 46.9987];;FRA16EWIIZ11511;FR*SOD*E*MB64*50*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2727;46.308;;;; +;;;;;;;;FRS64PMB64211;FRCPIE6600385;La Clayette, place de la poste;;Avenue de Villeneuve Saint Georges 94600 CHOISY LE ROI;;[3.5139, 47.104];;FRA16EWIIZ9711;FR*SOD*E*MB64*49*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5924;46.6289;;;; +;;;;;;;;FRS64PMB64111;FRIONE44031;Châtenoy Le Royal, Place du marché;;boulevard John Kennedy 91100 CORBEIL ESSONNES;;[3.1196, 46.7916];;FRA16EWIIZ9411;FR*SOD*E*MB64*48*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.482666;46.4518;;;; +;;;;;;;;FRS64PMB64112;FRIONE44030;Gergy, Parking de la Mairie;;avenue du Général de Gaulle 77370 NANGIS;;[3.2727, 46.9683];;FRA16EWIIZ6511;FR*SOD*E*MB64*64*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.142463;46.6757;;;; +;;;;;;;;FRS64PMB644311;FRFASE330230;Beauvais, BMW;;Rue de l'Orgeval 77120 Coulommiers;;[3.5924, 47.3673];;FRA16EWIIZ7912;FR*SOD*E*MB64*48*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.158236;46.2763;;;; +;;;;;;;;FRS64PMB64912;FRCPIE6660255;Saint-Maximin, BMW;;9 Route de Blois 28200 CHATEAUDUN;;[3.482666, 46.701629];;FRA16EWIIZ7812;FR*SOD*E*MB64*47*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.6462;46.6313;;;; +;;;;;;;;FRS64PMB641011;FRCPIE6660165;Charleville-Mézières, Allée de la Cardamine;;Avenue Geoffroy Perret 30210 Remoulins;;[3.142463, 46.991657];;FRA16EWIIZ7711;FR*SOD*E*MB64*47*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.492;46.3026;;;; +;;;;;;;;FRS64PMB642011;FRIONE4403;Rivery, BMW;;1550 Avenue De Montpellier 34820 Teyran;;[3.158236, 46.98754];;FRA16EWIIZ7712;FR*SOD*E*MB64*46*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1876;46.28;;;; +;;;;;;;;FRS64PMB641612;FRIONE1013;Lugny, Place du Pâquier;;310 Chemin De Monteux 84200 Carpentras;;[3.6462, 46.8685];;FRA16EWIIZ7611;FR*SOD*E*MB64*46*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5215;46.3606;;;; +;;;;;;;;FRS64PMB642012;FRIONE40790;Chalon-Sur-Saone, La maison des vins;;Rue des Brottes 52000 CHAUMONT;;[3.492, 47.2805];;FRA16EWIIZ7612;FR*SOD*E*MB64*45*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0213;46.8416;;;; +;;;;;;;;FRS64PMB641912;FRCPIE6602945;Autun, Place Deguin;;Rue de Rouen 49400 SAUMUR;;[3.1876, 47.0146];;FRA16EWIIZ7512;FR*SOD*E*MB64*45*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.6829;46.8457;;;; +;;;;;;;;FRS64PMB641911;FRCPIE6602545;Crèche sur Saone, Place de la mairie;;22 Avenue De La Paix 41800 Montoire-sur-le-Loir;;[3.5215, 47.4588];;FRA16EWIIZ7511;FR*SOD*E*MB64*44*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.92678642;46.5628;;;; +;;;;;;;;FRS64PMB641812;FRIONE4079;Saint Marcel, Place de l'Eglise;;1 allée Dion Bouton - ZI St Malo 37320 ESVRES SUR INDRE;;[4.0213, 47.0444];;FRA16EWIIZ7412;FR*SOD*E*MB64*53*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.936014;46.7536;;;; +;;;;;;;;FRS64PMB641811;FRIONE10120;Cheilly-lès-Maranges, Parking des Maranges;;Général Paulet 29200 BREST;;[3.6829, 47.2547];;FRA16EWIIZ7411;FR*SOD*E*MB64*54*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7212;46.5197;;;; +;;;;;;;;FRS64PMB641711;FRCPIE6603765;La Grande Verrière, Parking de la Mairie;;ZAC Penn Ar Roz 29150 CHATEAULIN;;[2.92678642, 47.41023635];;FRA16EWIIZ7311;FR*SOD*E*MB64*54*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4852;46.8865;;;; +;;;;;;;;FRS64PMB641712;FRCPIE6604025;Beaucouzé, BMTI;;Lieu-dit Kerivoas 29770 AUDIERNE;;[3.936014, 47.063706];;FRA16EWIIZ7312;FR*SOD*E*MB64*55*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.476;46.2422;;;; +;;;;;;;;FRS64PMB641611;FRS37E1968;Saint Rémy, Parking rue Auguste Martin;;Avenue Robert Fages 34280 La Grande-Motte;;[4.6628, 46.613];;FRA16EWIIZ7212;FR*SOD*E*MB64*63*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.1187;46.86605558;;;; +;;;;;;;;FRS64PMB641512;FRCPIE6651895;La Chapelle-de-Guinchay, Ecole;;28 Route De Bourges 18130 Dun-sur-Auron;;[4.7212, 46.8329];;FRA16EWIIZ7211;FR*SOD*E*MB64*63*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3638;43.57953074;;;; +;;;;;;;;FRS64PMB641111;FRCPIE6603715;Fay Aux Loges, Rue Bernard de la Rochefoucauld;;Route de Vauzelles 37600 LOCHES;;[4.4852, 46.308];;FRA16EWIIZ7112;FR*SOD*E*MB64*62*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0388;43.58035329;;;; +;;;;;;;;FRS64PMB641511;FRCPIE6603595;St Boil, Grand rue;;Boulevard de l'Avenir 18000 BOURGES;;[4.476, 46.6289];;FRA16EWIIZ7111;FR*SOD*E*MB64*62*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2174;42.97724425;;;; +;;;;;;;;FRS64PMB641412;FRIENE008901;Clamecy, Place du Cdt Boidot;;Avenue Jean Causeret 37140 BOURGUEIL;;[4.1187, 46.4518];;FRA16EWIIZ7011;FR*SOD*E*MB64*61*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8322;45.511079;;;; +;;;;;;;;FRS64PMB641411;FRIONE4123;La Machine, Place des fusillés;;Rue Eugène Delacroix 36200 ARGENTON SUR CREUSE;;[4.3638, 46.6757];;FRA16EWIIZ7012;FR*SOD*E*MB64*61*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7926;43.1215;;;; +;;;;;;;;FRS64PMB641311;FRCPIE6600975;Dornes, Place de la Mairie;;Route de Sully 45460 BONNEE;;[4.0388, 46.2763];;FRA16EWIIZ6912;FR*SOD*E*MB64*60*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8412;43.12237719;;;; +;;;;;;;;FRS64PMB641312;FRCPIE6726645;Toury-Lurcy, Les Oudilles;;19 route d'Orléans 41500 MER;;[5.2174, 46.6313];;FRA16EWIIZ6911;FR*SOD*E*MB64*60*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.432;44.98545202;;;; +;;;;;;;;FRS64PMB641211;FRCPIE6726635;Varzy, Parking Salle des Fetes;;rue de Caen 14500 VIRE;;[4.8322, 46.3026];;FRA16EWIIZ6812;FR*SOD*E*MB64*59*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.6337;47.282556;;;; +;;;;;;;;FRS64PMB641212;FRCPIE6726625;St-Benin-D'Azy, Parking Mairie;;Rue de la Rouelle - Avenue de la Baie 35120 DOL DE BRETAGNE;;[4.7926, 46.28];;FRA16EWIIZ6811;FR*SOD*E*MB64*59*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9088;43.52549132;;;; +;;;;;;;;FRS64PMB641112;FRIENE008902;St-Saulge, rue Pasteur;;66 Avenue De Verdun 06800 Cagnes-sur-Mer;;[4.8412, 46.3606];;FRA16EWIIZ6711;FR*SOD*E*MB64*58*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2436;48.745802;;;; +;;;;;;;;FRS64PMB644312;FRCPIE6601395;St-Pierre-Le-Moutier, Avenue du 8 Mai;;Avenue Du Général De Gaulle 16500 Confolens;;[4.432, 46.8416];;FRA16EWIIZ6722;FR*SOD*E*MB64*58*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.5976;49.26749752;;;; +;;;;;;;;FRS64PMB64312;FRIONE41230;Sauvigny-Les-Bois, Parking Salle Polyvalente;;Avenue Du Général De Gaulle 87200 Saint-Junien;;[4.6337, 46.8457];;FRA16EWIIZ6712;FR*SOD*E*MB64*57*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2604;49.158216;;;; +;;;;;;;;FRS64PMB644412;FRCPIE6602145;Tannay, Place de L'Eglise;;Rue Des Quatre Quartiers 17230 Andilly;;[4.9088, 46.5628];;FRA16EWIIZ6721;FR*SOD*E*MB64*57*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.749;48.1747;;;; +;;;;;;;;FRS64PMB647012;FRCPIE6601775;Lucenay Les Aix, Impasse Georges Rochegrosse;;Rue André Citroën 24120 Terrasson-Lavilledieu;;[5.2436, 46.7536];;FRA16EWIIZ6611;FR*SOD*E*MB64*56*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.18896031;48.177;;;; +;;;;;;;;FRS64PMB647412;FRS55E6631;Nevers, rue du 13e de ligne;;210 Route De Grenoble 06200 Nice;;[4.5976, 46.5197];;FRA16EWIIZ6622;FR*SOD*E*MB64*56*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.86193856;46.184467;;;; +;;;;;;;;FRS64PMB647411;FRIONE10130;Nevers, rue des quatre fils Aymond;;91 Rue Carnot 83310 Cogolin;;[5.2604, 46.8865];;FRA16EWIIZ6621;FR*SOD*E*MB64*55*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.40889536;45.575564;;;; +;;;;;;;;FRS64PMB647312;FRSHEE92;Cercy-La-Tour, Chemin de Halage;;2109 Route Nationale 7 / Quartier 83520 Roquebrune Sur Argens;;[4.749, 46.2422];;FRA16EWIIZ6612;FR*SOD*E*MB64*86*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.14673436;43.14269076;;;; +;;;;;;;;FRS64PMB647311;FRCPIE6591685;Brinon-Sur-Beuvron, Place J.B.durbise;;Avenue Gaston De Fontmichel 06210 Mandelieu-la-Napoule;;[4.18896031, 46.86605558];;FRA16EWIIZ7811;FR*SOD*E*MB64*79*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.29266;48.0762;;;; +;;;;;;;;FRS64PMB647211;FRCPIE6591675;Coulanges, Parking Francois Mitterand;;414 Rue De Bordeaux 16000 Angoulême;;[3.86193856, 43.57953074];;FRA16EWIIZ7911;FR*SOD*E*MB64*87*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.27657;45.53511035;;;; +;;;;;;;;FRS64PMB647212;FRIONE4315;Clamecy, Gare;;Rue Du 23 Mars 1908 17560 Bourcefranc-le-Chapus;;[5.40889536, 43.58035329];;FRA16EWIIZ9412;FR*SOD*E*MB64*114*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.29015886;49.26611328;;;; +;;;;;;;;FRS64PMB647111;FRIONE43150;Arleuf, Parking Mairie;;Route De Maureilhan 34500 Béziers;;[1.14673436, 42.97724425];;FRA16EWIIZ8012;FR*SOD*E*MB64*118*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6321366;47.10276877;;;; +;;;;;;;;FRS64PMB647112;FRSHEE93;Corbigny, Place du Champ de Foire;;route de Chauny 02700 CONDREN;;[3.29266, 45.511079];;FRA16EWIIZ9312;FR*SOD*E*MB64*117*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.682521;43.51944269;;;; +;;;;;;;;FRS64PMB647011;FRS18E17041;Cosne-Sur-Loire, Parking rue de Veaugues;;Rue Jean Jaures 59590 Raismes;;[6.27657, 43.1215];;FRA16EWIIZ9311;FR*SOD*E*MB64*117*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.27743151;48.579952;;;; +;;;;;;;;FRS64PMB647511;FRCPIE6593425;Château Chinon, Place Jean Sallonyer;;avenue du Maréchal Juin 51100 Reims;;[6.29015886, 43.12237719];;FRA16EWIIZ9212;FR*SOD*E*MB64*88*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.858976;45.589545;;;; +;;;;;;;;FRS64PMB646912;FRCPIE6593935;St Gengoux Le National, rue des tanneries;;Boulevard de l'Europe 83500 La Seyne sur Mer;;[-0.6321366, 44.98545202];;FRA16EWIIZ9222;FR*SOD*E*MB64*116*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.36895993;49.35824221;;;; +;;;;;;;;FRS64PMB646911;FRCPIE6649455;Mercurey, rue de Caudroyes;;14 rue du moulin 38920 CROLLES;;[0.682521, 47.282556];;FRA16EWIIZ9211;FR*SOD*E*MB64*115*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.108198;48.77668255;;;; +;;;;;;;;FRS64PMB646812;FRCPIE6593545;Matour, place du champ de Foire;;Avenue Aristide Briand 38260 La Côte-Saint-André;;[6.27743151, 43.52549132];;FRA16EWIIZ9221;FR*SOD*E*MB64*115*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.29063;45.903621;;;; +;;;;;;;;FRS64PMB646811;FRCPIE6593495;Mont St Vincent, Parking salle des fêtes;;8 Avenue des Allobroges 26100 ROMANS SUR ISERE;;[6.858976, 48.745802];;FRA16EWIIZ9111;FR*SOD*E*MB64*114*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.28882;49.53538899;;;; +;;;;;;;;FRS64PMB646712;FRIONE4538;Paray Le Monial, place de l'europe;;10 Cours Jean Jaurès 38130 Échirolles;;[2.36895993, 49.26749752];;FRA16EWIIZ9112;FR*SOD*E*MB64*113*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.271643;48.830065;;;; +;;;;;;;;FRS64PMB646711;FRIONE45380;Montceau Les Mines, place de l'église;;337 Avenue De L'europe 38690 Le Grand-Lemps;;[4.108198, 49.158216];;FRA16EWIIZ9011;FR*SOD*E*MB64*119*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.809147;48.46516894;;;; +;;;;;;;;FRS64PMB646612;FRCPIE6644195;Marcigny, place Irene Popard;;508 Route D'albertville 74320 Sevrier;;[3.29063, 48.1747];;FRA16EWIIZ9012;FR*SOD*E*MB64*113*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.01062108;45.502186;;;; +;;;;;;;;FRS64PMB646611;FRCPIE6593945;Louhans, parking de la gare;;Route Nationale 6 Av Saint Just 73190 Saint-Jeoire-Prieuré;;[3.28882, 48.177];;FRA16EWIIZ8912;FR*SOD*E*MB64*112*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.40326;43.13645127;;;; +;;;;;;;;FRS64PMB647512;FRCPIE6590015;Macon Centre, Quai Lamartine;;1304 Route De Beaurepaire 38270 Saint-Barthélemy;;[6.271643, 46.184467];;FRA16EWIIZ8911;FR*SOD*E*MB64*112*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.56040181;45.90715877;;;; +;;;;;;;;FRS64PMB647612;FRCPIE6589935;Macon Sud, parking route de juliénas;;43 impasse Etienne LAUBIN 73330 LE PONT DE BEAUVOISIN;;[2.809147, 45.575564];;FRA16EWIIZ8812;FR*SOD*E*MB64*111*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0404563;47.91795631;;;; +;;;;;;;;FRS64PMB648711;FRCPIE6589845;Macon Nord, parking route du chemin neuf OS;;17 Rue des Glairons 38400 SAINT MARTIN D'HERES;;[6.01062108, 43.14269076];;FRA16EWIIZ8811;FR*SOD*E*MB64*111*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.32263738;46.1648;;;; +;;;;;;;;FRS64PMB648211;FRCPIE6589775;St Sernin Du Bois, route de Saint-Sernin;;Route d'Annecy / Les Boucheroz Sud 74210 FAVERGES;;[7.40326, 48.0762];;FRA16EWIIZ8712;FR*SOD*E*MB64*110*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.61950401;45.0508;;;; +;;;;;;;;FRS64PMB648611;FRCPIE6589755;St Leger Sur Dheune, rue du port;;397 Avenue Charles De Gaulle 74800 La Roche-sur-Foron;;[5.56040181, 45.53511035];;FRA16EWIIZ8711;FR*SOD*E*MB64*110*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.000974;46.13001802;;;; +;;;;;;;;FRS64PMB648511;FRCPIE6631495;Tournus, route de plottes;;rue de la Minière 61100 FLERS;;[4.0404563, 49.26611328];;FRA16EWIIZ8611;FR*SOD*E*MB64*109*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.52744;45.807891;;;; +;;;;;;;;FRS64PMB648512;FRCPIE6589745;St Germain Du Bois, place du 8 mai;;Rue Louis Pasteur 35290 SAINT MEEN LE GRAND;;[0.32263738, 47.10276877];;FRA16EWIIZ8612;FR*SOD*E*MB64*118*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.31350109;47.107203;;;; +;;;;;;;;FRS64PMB648411;FRCPIE6589735;Salornay, place de la Clochette;;route de coutances 50180 AGNEAUX;;[6.61950401, 43.51944269];;FRA16EWIIZ8511;FR*SOD*E*MB64*119*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.87393582;46.03818528;;;; +;;;;;;;;FRS64PMB648412;FRCPIE6590025;Pierre De Bresse, place de la mairie;;Avenue Du Grésivaudan 73800 Montmélian;;[2.000974, 48.579952];;FRA16EWIIZ8512;FR*SOD*E*MB64*108*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.505337;43.357456;;;; +;;;;;;;;FRS64PMB648311;FRCPIE6595255;St Amour, rue le platre durand;;Rue Maryse Bastié 26500 BOURG LES VALENCE;;[5.52744, 45.589545];;FRA16EWIIZ8412;FR*SOD*E*MB64*125*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.81603256;45.70846066;;;; +;;;;;;;;FRS64PMB648312;FRCPIE6591165;Etang sur Arroux, Place du Mousseau;;Route De Grenoble 38590 Saint-Étienne-de-Saint-Geoirs;;[2.31350109, 49.35824221];;FRA16EWIIZ8411;FR*SOD*E*MB64*129*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.724497;48.92738723;;;; +;;;;;;;;FRS64PMB648212;FRCPIE6591145;Montpellier, Rue Patrice Lumumba;;Impasse des Cèdres 74500 EVIAN;;[1.87393582, 48.77668255];;FRA16EWIIZ8311;FR*SOD*E*MB64*129*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.52042378;48.75189522;;;; +;;;;;;;;FRS64PMB648112;FRCPIE6591135;Aix-En-Provence, Chocolaterie de Puyricard public;;Avenue Du 8 Mai 1945 73300 Saint-Jean-de-Maurienne;;[4.505337, 45.903621];;FRA16EWIIZ8312;FR*SOD*E*MB64*128*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.852455;45.93848209;;;; +;;;;;;;;FRS64PMB647611;FRCPIE6591125;Saint-Girons, Logis Château Beauregard;;Avenue Du Crozet 74950 Scionzier;;[2.81603256, 49.53538899];;FRA16EWIIZ8212;FR*SOD*E*MB64*128*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3592665;50.89170991;;;; +;;;;;;;;FRS64PMB648111;FRCPIE6591115;Les Pradeaux, Château La Grange Fort;;Lieudit Le Charmay 38490 Charancieu;;[1.724497, 48.830065];;FRA16EWIIZ8211;FR*SOD*E*MB64*127*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.57660808;49.78908132;;;; +;;;;;;;;FRS64PMB648012;FRCPIE6591105;Château Léoube, Plage;;2 rue Marius Chatte 26120 CHABEUIL;;[2.52042378, 48.46516894];;FRA16EWIIZ8112;FR*SOD*E*MB64*126*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.33412213;45.9221;;;; +;;;;;;;;FRS64PMB648011;FRCPIE6591095;Château Léoube, Château;;Place Foch 14130 PONT-L'EVEQUE;;[4.852455, 45.502186];;FRA16EWIIZ8111;FR*SOD*E*MB64*126*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.07849;45.67069922;;;; +;;;;;;;;FRS64PMB647912;FRS37E16691;Ludon-Médoc, Château Paloumey;;Croisement Le Perrey 14620 MORTEAUX COULIBOEUF;;[6.3592665, 43.13645127];;FRA16EWIIZ8011;FR*SOD*E*MB64*125*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9563;45.747001;;;; +;;;;;;;;FRS64PMB647812;FRCPIE6590195;Montbazon, Château d'Artigny;;Route de Paris 14370 MOULT;;[4.57660808, 45.90715877];;FRA16EWIIZ23211;FR*SOD*E*MB64*124*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.08890496;49.15939176;;;; +;;;;;;;;FRS64PMB647811;FRCPIE6596925;Saint-Antonin-du-Var, Château de la Mentone;;Rue Gustave Flaubert 14590 MOYAUX;;[-3.33412213, 47.91795631];;FRA16EWIIZ14822;FR*SOD*E*MB64*120*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.870304;-21.327415;;;; +;;;;;;;;FRS64PMB647711;FRS37E129;Languimberg, Chez Michèle;;Rue de la liberté 14350 MONTCHAMP;;[5.07849, 46.1648];;FROTHEOTHR15421;FR*SOD*E*MB64*124*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.388285;44.89506938;;;; +;;;;;;;;FRS64PMB647712;FRCPIE6599565;Châteauform Le Grand Mello, Route de Clermont;;Route de Deauville 14100 OUILLY LE VICOMTE;;[3.9563, 45.0508];;FROTHEOTHR15441;FR*SOD*E*MB64*123*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.3746474;46.18073298;;;; +;;;;;;;;FRS64PMB646511;FRCPIE6599535;Mailly Champagne, Rue de la Libération;;Parking de la médiathèque 14120 MONDEVILLE;;[6.08890496, 46.13001802];;FROTHEOTHR15431;FR*SOD*E*MB64*123*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.29386;44.92637035;;;; +;;;;;;;;FRS64PMB646512;FRCPIE6599515;Centre commercial Sens Sud, Rue Michel Delmas;;Rue Emile Zola 14120 MONDEVILLE;;[4.870304, 45.807891];;FROTHEOTHR15411;FR*SOD*E*MB64*122*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.87713341;-20.8906;;;; +;;;;;;;;FRS64PMB646412;FRCPIE6599475;Centre commercial Sens Sud, Av Jean Delpech;;Route de Falaise 14100 ST DESIR;;[2.388285, 47.107203];;FRS19EMB193411;FR*SOD*E*MB64*122*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26163316;43.090005;;;; +;;;;;;;;FRS64PMB644911;FRCPIE6599455;Vétraz-Monthoux, Allée des Chênes;;Rue du 18 juin 1940 14780 LION SUR MER;;[-1.3746474, 46.03818528];;FRS19EMB195311;FR*SOD*E*MB64*121*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.06852562;45.714952;;;; +;;;;;;;;FRS64PMB645311;FRCPIE6599275;Le Mont Dore, Ceres Immobilier;;La Tuilerie 14490 LE TRONQUAY;;[3.29386, 43.357456];;FRS19EMB194811;FR*SOD*E*MB64*121*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7202101;46.20207333;;;; +;;;;;;;;FRS64PMB645211;FRCPIE6599095;La Valette-du-Var, Autoroute 57, Esso La Bigue;;Rue des Brioleurs 14130 ST GATIEN DES BOIS;;[4.87713341, 45.70846066];;FRS19EMB194812;FR*SOD*E*MB64*120*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.26173312;-20.9292757;;;; +;;;;;;;;FRS64PMB645212;FRCPIE6599315;Certie, Rue de Mulhouse;;Rue du Prieure 14480 ST GABRIEL BRECY;;[2.26163316, 48.92738723];;FRS19EMB195012;FR*SOD*E*MB64*109*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.99683523;-20.929436;;;; +;;;;;;;;FRS64PMB645112;FRCPIE6586915;Les Abrets en Dauphiné, Chaboud Automobiles;;Route de Copplestone 14290 ST CYR DU RONCERAY;;[7.06852562, 48.75189522];;FRS19EMB195011;FR*SOD*E*MB64*116*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.58012;47.61749033;;;; +;;;;;;;;FRS64PMB645111;FRIONE4124;Reims, rue Gosset;;Chemin du stade 14100 ST DESIR;;[4.7202101, 45.93848209];;FRS19EMB195111;FR*SOD*E*MB64*108*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.17175276;47.71272277;;;; +;;;;;;;;FRS64PMB645011;FRIONE41240;Lémeré, rue du Château;;Avenue du Maréchal Foch 14150 OUISTREHAM;;[4.26173312, 50.89170991];;FRS19EMB195112;FR*SOD*E*MB64*97*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.772501;47.9640548;;;; +;;;;;;;;FRS64PMB645012;FRCPIE6599365;Le Muy, Château du Rouët;;Avenue du Général de Gaulle 14520 PORT EN BESSIN;;[0.99683523, 49.78908132];;FRS19EMB195211;FR*SOD*E*MB64*96*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.3814214;47.80005966;;;; +;;;;;;;;FRS64PMB644912;FRCPIE6599405;Châteauform de Rochefort, Route de la Bâte;;D513 Boulevard Maurice Thorez 14160 DIVES SUR MER;;[4.58012, 45.9221];;FRS19EMB195212;FR*SOD*E*MB64*96*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.471785;47.70402731;;;; +;;;;;;;;FRS64PMB644812;FRCPIE6599395;Châteauform Faverges de la Tour, 1 rue de la Rolandière;;Rue du marché 14420 POTIGNY;;[3.17175276, 45.67069922];;FRS19EMB195312;FR*SOD*E*MB64*95*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4001393;47.6836009;;;; +;;;;;;;;FRS64PMB646411;FRCPIE6596835;Thury sous Clermont, Châteauform Fillerval;;Chemin de l'église 14100 NOROLLES;;[4.772501, 45.747001];;FRS19EMB195611;FR*SOD*E*MB64*95*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.23202423;47.89523505;;;; +;;;;;;;;FRS64PMB644811;FRIONE12640;Châteauform Le Domaine du Tremblay, 2 Place de l'Eglise;;Carrefour Saint Jean 14340 NOTRE DAME D'ESTREES CORBON;;[5.3814214, 49.15939176];;FRS19EMB195412;FR*SOD*E*MB64*94*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.43459013;48.02125754;;;; +;;;;;;;;FRS64PMB644712;FRCPIE6595775;Vindry-sur-Turdine, Chateauform Dareize;;Place Alfred Thomas 14150 OUISTREHAM;;[55.471785, -21.327415];;FRS19EMB195612;FR*SOD*E*MB64*94*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.5002;47.610384;;;; +;;;;;;;;FRS64PMB644711;FRCPIE6595205;Élincourt-Sainte-Marguerite, Chateauform Bellinglise;;Rue de la Vallée 14860 RANVILLE;;[2.4001393, 44.89506938];;FRS19EMB194711;FR*SOD*E*MB64*93*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.627019;47.5812445;;;; +;;;;;;;;FRS64PMB644612;FRCPIE6595195;Châteauform Behoust, 1 Rue du Nid de Geai;;Place du général de Gaulle 14150 OUISTREHAM;;[6.23202423, 46.18073298];;FRS19EMB193211;FR*SOD*E*MB64*93*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.850701;47.67741993;;;; +;;;;;;;;FRS64PMB644611;FRCPIE6594765;Châteauform Cély-en-Bière, Route de Saint Germain;;Parking de l'église 14690 PONT D'OUILLY;;[2.43459013, 44.92637035];;FRS19EMB193111;FR*SOD*E*MB64*92*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2764229;47.51872413;;;; +;;;;;;;;FRS64PMB644512;FRCPIE6594145;Vienne, Central Motor;;Place Maréchal Foch 14290 ORBEC;;[55.5002, -20.8906];;FRS19EMB193112;FR*SOD*E*MB64*92*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.632901;47.82238;;;; +;;;;;;;;FRS64PMB644511;FRIONE1264;Le Lavandou, Avenue du Maréchal Juin;;Place de la résistance 14270 MEZIDON-CANON;;[1.627019, 43.090005];;FRS19EMB193012;FR*SOD*E*MB64*91*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.6343988;47.95138447;;;; +;;;;;;;;FRS64PMB644411;FRIONE41400;Legny, Carrefour Market;;Le bourg, parking du stade 14350 LE TOURNEUR;;[4.850701, 45.714952];;FRS19EMB193011;FR*SOD*E*MB64*91*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3460571;47.77365094;;;; +;;;;;;;;FRS64PMB645312;FRCPIE6596825;Plouay, Carrefour;;Rue de Brouay 14740 LE MESNIL PATRY;;[6.2764229, 46.20207333];;FRS19EMB192941;FR*SOD*E*MB64*90*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.66544151;47.7454107;;;; +;;;;;;;;FRS64PMB645411;FRCPIE6596525;Décines, Carrosserie Palmieri;;Route d'Orbec 14100 LE MESNIL GUILLAUME;;[55.632901, -20.9292757];;FRS19EMB192931;FR*SOD*E*MB64*107*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4837216;47.95208148;;;; +;;;;;;;;FRS64PMB645412;FRCPIE6596035;Carrosserie Saint-Germain-Laprade;;Rue du Chanoine Cochard 14350 LE BENY BOCAGE;;[55.6343988, -20.929436];;FRS19EMB194712;FR*SOD*E*MB64*89*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.41763318;47.45937177;;;; +;;;;;;;;FRS64PMB645511;FRCPIE6595995;Casino Saint-Julien, Route d'Annecy;;Le Bourg 14240 LIVRY;;[3.3460571, 47.61749033];;FRS19EMB194612;FR*SOD*E*MB64*89*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.63387153;47.85128056;;;; +;;;;;;;;FRS64PMB646312;FRCPIE6595975;Vienne, Central Autos;;Place de la Mairie 14140 LIVAROT;;[3.66544151, 47.71272277];;FRS19EMB192921;FR*SOD*E*MB64*88*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3753439;47.80873781;;;; +;;;;;;;;FRS64PMB646311;FRIONE4140;Caluire-et-Cuire, Central Motor;;D514 Rue du général Leclerc 14830 LANGRUNE SUR MER;;[3.4837216, 47.9640548];;FRS19EMB193811;FR*SOD*E*MB64*97*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.75796258;47.96251221;;;; +;;;;;;;;FRS64PMB646212;FRCPIE6566105;Saint-Doulchard, Rue des Pieds Blancs;;Rue Claude Monet 14400 ST MARTIN DES ENTREES;;[3.41763318, 47.80005966];;FRS19EMB193212;FR*SOD*E*MB64*90*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.80319003;47.90392773;;;; +;;;;;;;;FRS64PMB646211;FRFASE331130;Saint-Denis-D'Oléron, Boulevard D'Antioche;;D54 Le bourg 14770 ST PIERRE LA VIEILLE;;[3.63387153, 47.70402731];;FRS19EMB193312;FR*SOD*E*MB64*98*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.175336;47.58473446;;;; +;;;;;;;;FRS64PMB646112;FRCPIE6663275;Beziers, Route de bessan;;Place Gombault 14170 ST PIERRE SUR DIVES;;[3.3753439, 47.6836009];;FRS19EMB193311;FR*SOD*E*MB64*103*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1558136;47.81809778;;;; +;;;;;;;;FRS64PMB646111;FRS18E11283;Venissieux, Car'dom Sud;;Rue des écoles 14350 ST MARTIN DES BESACES;;[3.75796258, 47.89523505];;FRS19EMB193412;FR*SOD*E*MB64*98*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.59036073;47.4617954;;;; +;;;;;;;;FRS64PMB646012;FRCPIE6544925;Colombes, Résidence l'Envol;;Place du café des images 14200 HEROUVILLE ST CLAIR;;[3.80319003, 48.02125754];;FRS19EMB193511;FR*SOD*E*MB64*107*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.48571032;47.874537;;;; +;;;;;;;;FRS64PMB646011;FRCPIE6528455;Sarrebourg, Rue de Sarreguemines;;Avenue de Garbsen 14200 HEROUVILLE ST CLAIR;;[3.175336, 47.610384];;FRS19EMB193512;FR*SOD*E*MB64*106*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.21;47.95070082;;;; +;;;;;;;;FRS64PMB645912;FRCPIE6528265;Anse, Carrefour Market;;Place de la liberté 14880 HERMANVILLE SUR MER;;[3.1558136, 47.5812445];;FRS19EMB193611;FR*SOD*E*MB64*105*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.43990356;48.04650803;;;; +;;;;;;;;FRS64PMB645911;FRCPIE6528205;Zellik, Sphere Business Park, Doornveld 165;;Impasse du stade Jules Quesnel 14790 FONTAINE ETOUPEFOUR;;[3.59036073, 47.67741993];;FRS19EMB193612;FR*SOD*E*MB64*105*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.16613176;47.8688752;;;; +;;;;;;;;FRS64PMB645812;FRCPIE6529785;Bacqueville-en-Caux, Route d'Ablemont;;Rue de Lapford 14190 GRAINVILLE LANGANNERIE;;[3.48571032, 47.51872413];;FRS19EMB193711;FR*SOD*E*MB64*104*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8816886;47.5496198;;;; +;;;;;;;;FRS64PMB645811;FRCPIE6580375;Val d'Oingt, Carrefour Contact;;Rue de la libération 14210 GRAINVILLE SUR ODON;;[4.21, 47.82238];;FRS19EMB193712;FR*SOD*E*MB64*104*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.62615079;47.98425;;;; +;;;;;;;;FRS64PMB645711;FRIENE006601;Veyre-Monton, Carrefour Contact;;Rue de la mairie 14500 ROULLOURS;;[3.43990356, 47.95138447];;FRS19EMB193812;FR*SOD*E*MB64*103*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.76453936;47.5473062;;;; +;;;;;;;;FRS64PMB645712;FRIONE40810;Francheville, Central Motor;;Place Xavier de Maistre 14140 LIVAROT;;[4.16613176, 47.77365094];;FRS19EMB193911;FR*SOD*E*MB64*106*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.57964262;47.9744138;;;; +;;;;;;;;FRS64PMB645612;FRCPIE6683635;Verdun, Centre Mondial de la Paix, des Libertés et des Droits de l'Homme;;Parking de la Gare 14100 LISIEUX;;[2.8816886, 47.7454107];;FRS19EMB194611;FR*SOD*E*MB64*102*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.53460235;47.96411764;;;; +;;;;;;;;FRS64PMB645611;FRCPIE6683625;Saint Pierre, Centre Commercial Grand Sud;;Rue Saint Pierre 14400 SOMMERVIEU;;[3.62615079, 47.95208148];;FRS19EMB193912;FR*SOD*E*MB64*99*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5150443;47.8162201;;;; +;;;;;;;;FRS64PMB645512;FRIENE006602;Aurillac, Centre Commercial La Sablière;;Parking Médiathèque Communale 14330 LE MOLAY LITTRY;;[3.76453936, 47.45937177];;FRS19EMB194011;FR*SOD*E*MB64*101*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.62774134;47.6989973;;;; +;;;;;;;;FRS64PMB648612;FRCPIE6560545;Étrembières, Centre Commercial;;Place des Ecoles 14500 ST GERMAIN DE TALLEVENDE;;[3.57964262, 47.85128056];;FRS19EMB194012;FR*SOD*E*MB64*101*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.00455549;47.48937079;;;; +;;;;;;;;FRS64PMB647911;FRCPIE6560535;Aurillac, Avenue de la République;;Route de Pontécoulant 14110 ST GERMAIN DU CRIOULT;;[3.53460235, 47.80873781];;FRS19EMB194111;FR*SOD*E*MB64*100*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.72346938;47.76733422;;;; +;;;;;;;;FRS64PMB648712;FRCPIE6529795;Sainte-Clotilde, Centre Commercial Grand Nord;;D237 Le bourg 14190 ST GERMAIN LE VASSON;;[3.5150443, 47.96251221];;FRS19EMB194112;FR*SOD*E*MB64*100*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.7432061;47.7788174;;;; +;;;;;;;;FRS64PMB6411411;FRCPIE6580405;Saint-Jean-du-Falga, Centre Commercial Cap Cythi;;Rue de Verdun 14750 ST AUBIN SUR MER;;[3.62774134, 47.90392773];;FRS19EMB194211;FR*SOD*E*MB64*99*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.347581;47.95238238;;;; +;;;;;;;;FRS64PMB6411812;FRCPIE6546025;Saint Fons, Central Motor;;Rue du maréchal Leclerc 14940 SANNERVILLE;;[4.00455549, 47.58473446];;FRS19EMB194212;FR*SOD*E*MB64*102*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.87835624;47.66138612;;;; +;;;;;;;;FRS64PMB6411711;FRCPIE6736555;Ville-la-Grand, Rue de Montréal, ZAC du Mont Blanc;;Rue du Caprice 14970 ST AUBIN D'ARQUENAY;;[3.72346938, 47.81809778];;FRS19EMB194312;FR*SOD*E*SYDR*73*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.31941336;47.69658468;;;; +;;;;;;;;FRS64PMB6411712;FRCPIE6736185;Sainte-Suzanne, Centre Commercial Grand Est P1;;La Jalousie 14540 ST AIGNAN DE CRAMESNIL;;[3.7432061, 47.4617954];;FRS19EMB194311;FR*SOD*E*SYDR*73*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4516898;47.75529535;;;; +;;;;;;;;FRS64PMB648811;FRCPIE6726845;Sainte-Suzanne, Centre Commercial Grand Est P2;;Parking de la mairie 14800 ST ARNOULT;;[3.347581, 47.874537];;FRS19EMB194412;FR*SOD*E*SYDR*72*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.18165779;47.688826;;;; +;;;;;;;;FRS64PMB6411611;FRS28E12747;Lain, Place du 8 Mai 1945;;Place de la gare 14750 ST AUBIN SUR MER;;[3.87835624, 47.95070082];;FRS19EMB194411;FR*SOD*E*SYDR*72*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5755278;48.04266162;;;; +;;;;;;;;FRS64PMB6411512;FRIONE4519;Irancy, Chemin des Fosses;;Parking de la Mairie 14130 ST BENOIT D'HEBERTOT;;[3.31941336, 48.04650803];;FRS19EMB192911;FR*SOD*E*SYDR*72*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4198563;47.8474925;;;; +;;;;;;;;FRS64PMB6411511;FRIONE45191;Laroche-Saint-Cydroine, Mairie;;Rue du Gaz 14100 LISIEUX;;[3.4516898, 47.8688752];;FRS19EMB195411;FR*SOD*E*SYDR*71*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2890823;47.52556183;;;; +;;;;;;;;FRS64PMB6411412;FRIONE45190;Lindry, Place de la Liberte;;Place de l'église 14210 NOYERS BOCAGE;;[3.18165779, 47.5496198];;FRS19EMB192951;FR*SOD*E*SYDR*71*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.76558346;47.89936488;;;; +;;;;;;;;FRS64PMB6411311;FRCPIE6736905;Vincelles, 23 rue de l'Yonne;;Presqu'île 14000 CAEN;;[3.5755278, 47.98425];;FRS19EMB191811;FR*SOD*E*SYDR*70*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.7985363;47.6815771;;;; +;;;;;;;;FRS64PMB6411912;FRFASE331150;Leugny, Place de la Poste;;Rue du Professeur Joseph Rousselot 14000 Caen;;[3.4198563, 47.5473062];;FRS19EMB191212;FR*SOD*E*SYDR*71*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9467356;47.61447201;;;; +;;;;;;;;FRS64PMB6411312;FRCPIE6528605;Ligny-Le-Chatel, 13 Avenue de Chablis;;6 place de la Résistance 14000 CAEN;;[3.2890823, 47.9744138];;FRS19EMB191311;FR*SOD*E*SYDR*70*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.90832856;47.85600811;;;; +;;;;;;;;FRS64PMB6411212;FRCPIE6527915;Beugnon, rue neuve;;Avenue de la Mer 14390 CABOURG;;[3.76558346, 47.96411764];;FRS19EMB191312;FR*SOD*E*SYDR*69*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.60794395;47.73200664;;;; +;;;;;;;;FRS64PMB6411211;FRCPIE6737115;Moutier-en-Puisaye, Place de la Mairie;;Chemin Saint-Julien 14400 Bayeux;;[3.7985363, 47.8162201];;FRS19EMB191411;FR*SOD*E*SYDR*69*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0787814;47.3679883;;;; +;;;;;;;;FRS64PMB6411112;FRS88E16347;Treigny, Parking Château de Guedelon, 2;;Rue de la gare 14740 BRETTEVILLE L'ORGUEILLEUSE;;[2.9467356, 47.6989973];;FRS19EMB191412;FR*SOD*E*SYDR*68*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.57231282;47.99364816;;;; +;;;;;;;;FRS64PMB6411111;FRS28E12626;Val-De-Mercy, 23 rue de Vincelles;;Place des canadiens 14740 BRETTEVILLE L'ORGUEILLEUSE;;[3.90832856, 47.48937079];;FRS19EMB191512;FR*SOD*E*SYDR*74*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.41720939;47.5088675;;;; +;;;;;;;;FRS64PMB6411011;FRS28E12625;Andryes, 2 rue de la Mairie;;Place de la Mairie 14760 BRETTEVILLE SUR ODON;;[3.60794395, 47.76733422];;FRS19EMB191511;FR*SOD*E*SYDR*67*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.99303742;47.90355193;;;; +;;;;;;;;FRS64PMB6411012;FRCPIE6696955;Gland, Grande rue;;Parking rue des Canadiens 14680 BRETTEVILLE SUR LAIZE;;[3.0787814, 47.7788174];;FRS19EMB191611;FR*SOD*E*SYDR*73*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.41496706;47.707024;;;; +;;;;;;;;FRS64PMB6410912;FRCPIE6684585;Champlay, 50 Grande rue;;Avenue Albert Sorel 14000 CAEN;;[3.57231282, 47.95238238];;FRS19EMB191612;FR*SOD*E*SYDR*79*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.235614;48.02690719;;;; +;;;;;;;;FRS64PMB6411811;FRIENE004202;Ancy-Le-Franc, Place de la Paix, 2;;Centre-Ville, rue Gemare 14000 CAEN;;[3.41720939, 47.66138612];;FRS19EMB191711;FR*SOD*E*SYDR*74*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.79307672;47.50868558;;;; +;;;;;;;;FRS64PMB6411911;FRIONE41480;Ancy-Le-Franc, Place de la Paix, 1;;Boulevard Georges Pompidou 14000 CAEN;;[3.99303742, 47.69658468];;FRS19EMB191712;FR*SOD*E*SYDR*79*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0849445;47.732209;;;; +;;;;;;;;FRS64PMB6410812;FRS88E15026;Rogny-Les-Sept-Ecluses, Quai Sully;;Grâce de Dieu 14000 CAEN;;[3.41496706, 47.75529535];;FRS19EMB191812;FR*SOD*E*SYDR*67*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.54242295;47.93862015;;;; +;;;;;;;;FRS64PMB6412511;FRS88E15025;Mont-Saint-Sulpice, 4 Place de la Mairie;;Esplanade Brillaud de Laujardière 14000 CAEN;;[4.235614, 47.688826];;FRS19EMB191112;FR*SOD*E*SYDR*1*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.56187165;47.96374608;;;; +;;;;;;;;FRS64PMB6412912;FRIONE4627;Saint-Pere, 30 rue de la Mairie;;Avenue Georges Clemenceau 14000 CAEN;;[3.79307672, 48.04266162];;FRS19EMB192961;FR*SOD*E*SYDR*82*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.69055871;47.99331429;;;; +;;;;;;;;FRS64PMB6412911;FRIONE46270;Moneteau, rue de la Gare;;Parking Eglise 14240 CAHAGNES;;[4.0849445, 47.8474925];;FRS19EMB192712;FR*SOD*E*SYDR*82*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4997946;47.8013507;;;; +;;;;;;;;FRS64PMB6412811;FRS88E16182;Saint-Georges-Sur-Baulche, 74 Grande rue;;Place de la Mairie 14490 CAHAGNOLLES;;[3.54242295, 47.52556183];;FRS19EMB192612;FR*SOD*E*SYDR*81*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.21166092;47.8479239;;;; +;;;;;;;;FRS64PMB6412812;FRIONE41481;Migennes, Place de la République;;Rue du Vaugueux 14000 CAEN;;[3.56187165, 47.89936488];;FRS19EMB192611;FR*SOD*E*SYDR*81*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.22435582;47.8067247;;;; +;;;;;;;;FRS64PMB6412711;FRCPIE6534445;Hery, 4 Place de L Eglise;;Parking Notre Dame de la Gloriette 14000 CAEN;;[3.69055871, 47.6815771];;FRS19EMB192311;FR*SOD*E*SYDR*78*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9961991;48.53687;;;; +;;;;;;;;FRS64PMB6412612;FRCPIE6557805;L'Isle-Sur-Serein, 5 Avenue du Parc;;Rue Henri Louvet 14130 BONNEVILLE LA LOUVET;;[3.4997946, 47.61447201];;FRS19EMB192312;FR*SOD*E*SYDR*75*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4384793;47.92888636;;;; +;;;;;;;;FRS64PMB6412611;FRCPIE6557795;Beine, Parking rue du Ruisseau;;Place de la Mare 14000 CAEN;;[4.21166092, 47.85600811];;FRS19EMB192211;FR*SOD*E*SYDR*78*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.99164464;47.8748911;;;; +;;;;;;;;FRS64PMB6412512;FRCPIE6557785;Vezelay, Parking D957 - route D Avallon;;Place de la Liberté 14000 CAEN;;[4.22435582, 47.73200664];;FRS19EMB192212;FR*SOD*E*SYDR*77*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.12184313;47.97061618;;;; +;;;;;;;;FRS64PMB6412411;FRCPIE6557775;Aillant-sur-Tholon, Parking rue du huit mai;;Rue de la Défense Passive 14000 CAEN;;[3.9961991, 47.3679883];;FRS19EMB192111;FR*SOD*E*SYDR*77*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.336888;47.66077552;;;; +;;;;;;;;FRS64PMB6412011;FRCPIE6557945;Flogny-La-Chapelle, Place des Commerces;;Rives de l'Orne 14000 CAEN;;[3.4384793, 47.99364816];;FRS19EMB192112;FR*SOD*E*SYDR*76*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.668228;47.58701;;;; +;;;;;;;;FRS64PMB6412412;FRCPIE6557935;Armeau, Chemin du Petit Port;;Pierre Heuzé, place Champlain 14000 CAEN;;[3.99164464, 47.5088675];;FRS19EMB192011;FR*SOD*E*SYDR*76*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.99151431;47.821982;;;; +;;;;;;;;FRS64PMB6412312;FRCPIE6534365;Fleury-La-Vallee, rue de la Petite Motte;;Place Guillouard 14000 CAEN;;[4.12184313, 47.90355193];;FRS19EMB191211;FR*SOD*E*SYDR*75*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.291223;47.621967;;;; +;;;;;;;;FRS64PMB6412311;FRIONE4148;Treigny, rue du Champs de Foire;;Allée Saint Germain 14630 Cagny;;[3.336888, 47.707024];;FRS19EMB192012;FR*SOD*E*SYDR*67*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.24322849;44.773752;;;; +;;;;;;;;FRS64PMB6412212;FRIENE004201;Treigny, Parking Château de Guedelon, 1;;Place Courtonne 14000 CAEN;;[3.668228, 48.02690719];;FRS19EMB191111;FR*SOD*E*SYDR*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.50966513;48.44756489;;;; +;;;;;;;;FRS64PMB6412211;FRIONE4081;Esnon, Place des Saules;;Rue des Boutiques 14000 CAEN;;[3.99151431, 47.50868558];;FRS19EMB19521;FR*SOD*E*SYDR*35*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.61674294;48.44748692;;;; +;;;;;;;;FRS64PMB6412112;FRIONE43170;Druyes-Les-Belles-Fontaines, Place du 8 Mai;;Rue des Drudes 14500 CAMPAGNOLLES;;[3.291223, 47.732209];;FRS19EMB191011;FR*SOD*E*SYDR*48*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.52757787;48.44751307;;;; +;;;;;;;;FRS64PMB6412111;FRS18E14876;La-Celle-Saint-Cyr, Place de la Mairie;;Avenue des Tilleuls 14340 CAMBREMER;;[3.24322849, 47.93862015];;FRS19EMB192812;FR*SOD*E*SYDR*52*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5804025;48.44749172;;;; +;;;;;;;;FRS64PMB6412012;FRCPIE6530575;Cheu, 3 rue du Bois;;Rue de la Ferière 14240 CAUMONT L'EVENTE;;[3.50966513, 47.96374608];;FRS19EMB192811;FR*SOD*E*SYDR*52*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.6368005;48.6058;;;; +;;;;;;;;FRS64PMB6410911;FRCPIE6530555;Chablis, Place Saint Martin;;Avenue Charles de Gaulle 14650 CARPIQUET;;[3.61674294, 47.99331429];;FRS19EMB192711;FR*SOD*E*SYDR*51*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.558292;47.43460702;;;; +;;;;;;;;FRS64PMB6411612;FRCPIE6530465;Bleneau, Place du 11 Novembre;;Avenue Enchanteur Merlin 14000 CAEN;;[3.52757787, 47.8013507];;FRS19EMB19121;FR*SOD*E*SYDR*51*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.60951036;48.75298099;;;; +;;;;;;;;FRS64PMB6410811;FRS18E10700;Avallon, rue Tour du Magasin;;Avenue Président Coty 14000 CAEN;;[3.5804025, 47.8479239];;FRS19EMB19122;FR*SOD*E*SYDR*50*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3504764;48.29335853;;;; +;;;;;;;;FRS64PMB649712;FRCPIE6542705;Augy, Place de L'Église;;Rue du Stade 14250 TILLY SUR SEULLES;;[3.6368005, 47.8067247];;FRS19EMB19221;FR*SOD*E*SYDR*50*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.71769496;49.28873608;;;; +;;;;;;;;FRS64PMB649611;FRCPIE6530295;Champignelles, rue Jean Jacques Rousseau;;Le Bourg 14380 FONTENERMONT;;[2.558292, 48.53687];;FRS19EMB19322;FR*SOD*E*SYDR*49*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.73200014;49.4055;;;; +;;;;;;;;FRS64PMB649612;FRIONE4317;Ormoy, Eglise;;Rue d'Orbec 14100 GLOS;;[3.60951036, 47.92888636];;FRS19EMB19321;FR*SOD*E*SYDR*49*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.00304;48.741122;;;; +;;;;;;;;FRS64PMB649512;FRCPIE6531025;Ouanne, Place du Village;;Place François Mitterand 14680 GOUVIX;;[3.3504764, 47.8748911];;FRS19EMB19421;FR*SOD*E*SYDR*49*1*3*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.539788;45.61089661;;;; +;;;;;;;;FRS64PMB649511;FRIONE40320;Noyers, rue de L'Eglise;;Rue de Scoriton 14610 FONTAINE HENRY;;[3.71769496, 47.97061618];;FRS19EMB19422;FR*SOD*E*SYDR*48*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.97351;48.8194641;;;; +;;;;;;;;FRS64PMB649411;FRIENE002402;Pourrain, rue de la Maitrise;;Place du Château 14610 FONTAINE HENRY;;[3.73200014, 47.66077552];;FRS19EMB19222;FR*SOD*E*SYDR*53*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.613128;49.32627577;;;; +;;;;;;;;FRS64PMB649412;FRIENE002401;Perrigny-Sur-Armancon, ruelle Biere Cd96;;rue du général dubail 14530 Luc-sur-Mer;;[4.00304, 47.58701];;FRS19EMB19812;FR*SOD*E*SYDR*47*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53889648;49.24856253;;;; +;;;;;;;;FRS64PMB649312;FRIONE4032;Neuvy-Sautour, route de Troyes;;Chemin du puit 14100 MAROLLES;;[3.539788, 47.821982];;FRS19EMB19522;FR*SOD*E*SYDR*47*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53884125;46.853229;;;; +;;;;;;;;FRS64PMB649311;FRIONE4685;Tanlay, rue Haute des Fosses;;Rue de la chaussee 14920 MATHIEU;;[3.97351, 47.621967];;FRS19EMB19611;FR*SOD*E*SYDR*46*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53899911;44.31978763;;;; +;;;;;;;;FRS64PMB649211;FRIONE46850;Coulanges-Sur-Yonne, rue des Grands Vergers;;Parking espace sportif 14930 MALTOT;;[-0.613128, 44.773752];;FRS19EMB19612;FR*SOD*E*SYDR*46*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53897766;49.4715;;;; +;;;;;;;;FRS64PMB649212;FRCPIE6684575;Chemilly-Sur-Yonne, rue Jean Jaurès;;Parking Intermarché 14111 LOUVIGNY;;[1.53889648, 48.44756489];;FRS19EMB19712;FR*SOD*E*SYDR*45*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.35048;49.4179;;;; +;;;;;;;;FRS64PMB649112;FRCPIE6552195;Cravant, 26 rue Saint Martin;;Avenue des Dunes 14810 MERVILLE FRANCEVILLE PLAGE;;[1.53884125, 48.44748692];;FRS19EMB19711;FR*SOD*E*SYDR*45*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.07523059;49.4732;;;; +;;;;;;;;FRS64PMB649111;FRIONE47350;Courson-Les-Carrieres, Place de L Eglise;;Place de l'église 14370 MERY CORBON;;[1.53899911, 48.44751307];;FRS19EMB19811;FR*SOD*E*SYDR*44*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3551384;49.4412;;;; +;;;;;;;;FRS64PMB649012;FRCPIE6735845;Cruzy-Le-Chatel, rue du Four;;Route de Caen 14980 ROTS;;[1.53897766, 48.44749172];;FRS19EMB191012;FR*SOD*E*SYDR*44*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.93503158;49.4634;;;; +;;;;;;;;FRS64PMB6410712;FRS51E4967;Ravieres, rue du Port;;Rue Haute Bonny 14980 ROTS;;[6.35048, 48.6058];;FRS19EMB19911;FR*SOD*E*SYDR*43*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.03729903;49.4588;;;; +;;;;;;;;FRS64PMB648912;FRCPIE6593605;Quarre-Les-Tombes, Place de L Eglise;;Avenue Madame Coty 14880 HERMANVILLE SUR MER;;[-2.07523059, 47.43460702];;FRS19EMB19912;FR*SOD*E*SYDR*53*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.37968;49.086;;;; +;;;;;;;;FRS64PMB648911;FRCPIE6560565;Looze, 1 rue Suzanne;;Rue Urbain Cardon 14540 GRENTHEVILLE;;[2.3551384, 48.75298099];;FRS16EMB161812;FR*SOD*E*SYDR*54*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.382598;48.6237;;;; +;;;;;;;;FRS64PMB648812;FRCPIE6510835;Sauvigny-Le-Bois, Sortie;;Place de la République 14450 GRANDCAMP MAISY;;[6.93503158, 48.29335853];;FRS16EMB161712;FR*SOD*E*SYDR*64*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.09516456;48.6347;;;; +;;;;;;;;FRS64PMB649711;FRCPIE6594565;Thorey, 20 Grande rue;;Complexe EINDHOVEN 14400 Bayeux;;[1.03729903, 49.28873608];;FRS16EMB162211;FR*SOD*E*SYDR*60*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.96419024;49.0797;;;; +;;;;;;;;FRS64PMB649011;FRCPIE6593355;Moulins-Sur-Ouanne, 11 rue Paul Arrighi;;D511 rue des Ponts 14170 JORT;;[1.37968, 49.4055];;FRS16EMB161711;FR*SOD*E*SYDR*64*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.09836744;50.4754;;;; +;;;;;;;;FRS64PMB649812;FRIONE4735;Champlost, route de Paris;;Impasse de la Gare 14260 JURQUES;;[7.382598, 48.741122];;FRS16EMB161912;FR*SOD*E*SYDR*63*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.1864568;49.1133;;;; +;;;;;;;;FRS64PMB6410311;FRIENE006501;Sauvigny-Le-Bois, Sortie 2;;Rue des Pyrénées 14123 IFS;;[4.09516456, 45.61089661];;FRS16EMB161612;FR*SOD*E*SYDR*63*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.893774;43.32335871;;;; +;;;;;;;;FRS64PMB649811;FRS08E5754;Toucy, Avenue de la gare Ultra Rapide;;Route de la vallée de la touques 14130 FIERVILLE LES PARCS;;[7.96419024, 48.8194641];;FRS16EMB161811;FR*SOD*E*SYDR*63*7*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.74468811;49.0441;;;; +;;;;;;;;FRS64PMB6410711;FRS51E6149;Treigny, Parking Château de Guedelon;;Parking rue François Mitterrand 14123 FLEURY SUR ORNE;;[1.09836744, 49.32627577];;FRS16EMB162112;FR*SOD*E*SYDR*63*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9301;49.06444;;;; +;;;;;;;;FRS64PMB6410611;FRS08E5753;Sepeaux, Echangeur A6 Sur Cd945;;Rue des Tilleuls 14540 HUBERT FOLIE;;[1.1864568, 49.24856253];;FRS16EMB161911;FR*SOD*E*SYDR*62*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.94213;49.0469;;;; +;;;;;;;;FRS64PMB6410512;FRS08E5752;Migennes, 90 Avenue Jean Jaures;;Boulevard de Saint-Philbert 14510 Houlgate;;[-1.893774, 46.853229];;FRS16EMB162012;FR*SOD*E*SYDR*62*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.90783;48.91606;;;; +;;;;;;;;FRS64PMB6410511;FRIENE006502;Brienon-Sur-Armancon, Place Emile Drominy;;Esplanade François Mitterand 14123 IFS;;[4.74468811, 44.31978763];;FRS16EMB162011;FR*SOD*E*SYDR*61*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.01774;48.56613528;;;; +;;;;;;;;FRS64PMB6410411;FRCPIE6601985;Saint-Georges-Sur-Baulche, rue de Bruxelles;;Avenue Jean Vilar 14123 IFS;;[5.9301, 49.4715];;FRS16EMB162111;FR*SOD*E*SYDR*61*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.92565;47.517919;;;; +;;;;;;;;FRS64PMB6410412;FRS51E12530;Moneteau, Parking Espace Culturel;;Quai Aristide Briand 14230 ISIGNY SUR MER;;[5.94213, 49.4179];;FRS16EMB162212;FR*SOD*E*SYDR*59*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.92731;44.7821;;;; +;;;;;;;;FRS64PMB6410312;FRS51E1067;Venoy, Place de la Mairie;;D580 prox gare routière 14600 HONFLEUR;;[5.90783, 49.4732];;FRS16EMB161511;FR*SOD*E*SYDR*54*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.35308;41.955503;;;; +;;;;;;;;FRS64PMB6410612;FRS51E4968;Seine-Port, Châteauform Les Berges de Seine;;Rue Guyon de Guercheville 14200 HEROUVILLE ST CLAIR;;[6.01774, 49.4412];;FRS16EMB161611;FR*SOD*E*SYDR*59*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.34338;42.60419;;;; +;;;;;;;;FRS64PMB6410211;FRIENE001002;Hauterive, Parking Poids Lourds;;Place de la Gare 14350 LA GRAVERIE;;[5.92565, 49.4634];;FRS16EMB16912;FR*SOD*E*SYDR*58*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.31463;49.4172;;;; +;;;;;;;;FRS64PMB649912;FRCPIE6585645;Aillant-Sur-Tholon, rue de la Halle;;Parking Zoo 14260 JURQUES;;[5.92731, 49.4588];;FRS16EMB161512;FR*SOD*E*SYDR*58*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.14611;43.373851;;;; +;;;;;;;;FRS64PMB6410112;FRIONE43240;Vergigny, 1 rue du Brue;;Beausoleil 14290 LA VESPIERE FRIARDEL;;[6.35308, 49.086];;FRS16EMB161411;FR*SOD*E*SYDR*57*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5453;49.29204648;;;; +;;;;;;;;FRS64PMB6410111;FRTNME19B91197;Vermenton, rue des Soupirs;;Rue du Port 14600 LA RIVIERE ST SAUVEUR;;[6.34338, 48.6237];;FRS16EMB161412;FR*SOD*E*SYDR*57*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.02944;49.29021357;;;; +;;;;;;;;FRS64PMB6410012;FRIONE4324;L'Isle sur Serein, Place Saint Georges;;Rue du Cimetiere 14840 DEMOUVILLE;;[6.31463, 48.6347];;FRS16EMB161312;FR*SOD*E*SYDR*56*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.44095006;41.6932;;;; +;;;;;;;;FRS64PMB6410011;FRIONE45420;Toucy, Avenue de la gare Rapide;;Rue des Halles 14310 VILLERS BOCAGE;;[4.14611, 49.0797];;FRS16EMB161311;FR*SOD*E*SYDR*56*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.08555;44.8523;;;; +;;;;;;;;FRS64PMB649911;FRIENE001001;Perrigny, rue des Ecoles;;425 Route Du Signal 38750 Huez;;[2.5453, 50.4754];;FRS16EMB161212;FR*SOD*E*SYDR*55*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.043611;44.869939;;;; +;;;;;;;;FRS64PMB6410212;FRIONE4542;Massangis, Ruelle d'Enfer;;8 Rue De Normandie 78630 Orgeval;;[4.02944, 49.1133];;FRS16EMB161211;FR*SOD*E*SYDR*55*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.12055;44.8118;;;; +;;;;;;;;FRS69PSYDR7311;FRIONE45421;Gradignan, Erables;;2 Rue De Normandie 78630 Orgeval;;[-0.44095006, 43.32335871];;FRS16EMB161111;FR*SOD*E*SYDR*43*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.063137;44.8568;;;; +;;;;;;;;FRS69PSYDR7312;FRCPIE6507285;Chartres, Avenue Victor Hugo 1;;5 rue des Tuileries 67190 Still;;[4.08555, 49.0441];;FRS16EMB161112;FR*SOD*E*SYDR*42*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.44817631;44.89619801;;;; +;;;;;;;;FRS69PSYDR7213;FRIONE43270;Chartres, Avenue Victor Hugo 4;;Place du Champ de Foire 14430 DOZULE;;[4.043611, 49.06444];;FRS16EMB161011;FR*SOD*E*SYDR*42*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.000045;44.851745;;;; +;;;;;;;;FRS69PSYDR7211;FRS08E5771;Chartres, Avenue Victor Hugo 2;;D83 Route de Caen 14440 DOUVRES LA DELIVRANDE;;[4.12055, 49.0469];;FRS16EMB161012;FR*SOD*E*SYDR*24*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.653494;44.8384;;;; +;;;;;;;;FRS69PSYDR7212;FRCPIE6665965;Chartres, Avenue Victor Hugo 3;;Rue Henri Rosel 14320 FEUGUEROLLES BULLY;;[6.063137, 48.91606];;FRS16EMB16911;FR*SOD*E*SYDR*29*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.798435;48.000971;;;; +;;;;;;;;FRS69PSYDR7112;FRS08E20042;Dombasle-sur-Meurthe, Gare de Rosières;;Le Bourg 14380 ST MANVIEU BOCAGE;;[2.44817631, 48.56613528];;FRS16EMB16811;FR*SOD*E*SYDR*28*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.43748;48.71081884;;;; +;;;;;;;;FRS69PSYDR7113;FRS08E5769;Pontchâteau, Burger King;;Place du Docteur H Cailloué 14700 FALAISE;;[7.000045, 47.517919];;FRS16EMB16711;FR*SOD*E*SYDR*28*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.11302;48.72619677;;;; +;;;;;;;;FRS69PSYDR7011;FRSHEE95;Rungis, Place du Relais;;Route de Caen 14700 FALAISE;;[-0.653494, 44.7821];;FRS16EMB162312;FR*SOD*E*SYDR*27*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.220258;47.357512;;;; +;;;;;;;;FRS69PSYDR7111;FRSHEE94;Saint-Dié-des-Vosges, Burger King;;Rue Trinité 14700 FALAISE;;[8.798435, 41.955503];;FRS16EMB162311;FR*SOD*E*SYDR*27*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.53107109;43.46467058;;;; +;;;;;;;;FRS69PSYDR7012;FRS08E5772;Saint-Pierre-lès-Elbeuf, Burger King;;Place du général de Gaulle 14220 THURY HARCOURT;;[9.43748, 42.60419];;FRS16EMB16812;FR*SOD*E*SYDR*26*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.53576208;48.51453622;;;; +;;;;;;;;FRS69PSYDR6911;FRIONE4101;Saverne, Burger King;;Place de la mairie 14380 ST SEVER;;[2.11302, 49.4172];;FRS16EMB162411;FR*SOD*E*SYDR*26*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.33588;48.69360911;;;; +;;;;;;;;FRS69PSYDR6912;FRCPIE6684545;Savigneux, Burger King;;Etape en forêt 14380 ST SEVER;;[3.220258, 43.373851];;FRS16EMB166311;FR*SOD*E*SYDR*25*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.49563;43.46713262;;;; +;;;;;;;;FRS69PSYDR6811;FRIONE4080;Soufflenheim, Burger King;;Rue des Sports 14170 ST PIERRE SUR DIVES;;[6.53107109, 49.29204648];;FRS16EMB166914;FR*SOD*E*SYDR*25*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.614437;48.88856813;;;; +;;;;;;;;FRS69PSYDR7411;FRIONE40800;Tourville-La-Rivière, Burger King;;Route d'Omaha Beach 14520 STE HONORINE DES PERTES;;[6.53576208, 49.29021357];;FRS16EMB166913;FR*SOD*E*SYDR*24*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.55321;45.97819852;;;; +;;;;;;;;FRS69PSYDR6712;FRIONE41010;Val-de-Reuil, Burger King;;Rue du Lavoir 14610 THAON;;[9.33588, 41.6932];;FRS16EMB166911;FR*SOD*E*SYDR*41*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.51971;48.57942157;;;; +;;;;;;;;FRS69PSYDR7313;FRCPIE6685935;Challans, Burger King;;Parking de l’église 14130 SURVILLE;;[-0.49563, 44.8523];;FRS16EMB166811;FR*SOD*E*SYDR*23*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.51758541;48.94033181;;;; +;;;;;;;;FRS69PSYDR7912;FRSHEE78;Bollène, Route de St Paul Trois Chateaux;;Rue Saint Martin 14400 SUBLES;;[-0.614437, 44.869939];;FRS16EMB166812;FR*SOD*E*SYDR*23*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.645157;45.04648058;;;; +;;;;;;;;FRS69PSYDR7412;FRS08E5761;Villerupt, Parking Rue Jules Vallé;;Rue des trois Hameaux 14740 ST MANVIEU NORREY;;[-0.55321, 44.8118];;FRS16EMB166711;FR*SOD*E*SYDR*22*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.56712;48.74537984;;;; +;;;;;;;;FRS69PSYDR7911;FRS08E5760;Aumetz, Parking Place de l'Hôtel de ville;;Place du Marché 14710 TREVIERES;;[-0.51971, 44.8568];;FRS16EMB166712;FR*SOD*E*SYDR*22*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.048031;48.2085;;;; +;;;;;;;;FRS69PSYDR6713;FRS08E5759;Thil, Parking place du 8 Mai 1945;;Place Georges Roger 14800 TOUQUES;;[-0.51758541, 44.89619801];;FRS16EMB166612;FR*SOD*E*SYDR*21*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.24186015;48.2099;;;; +;;;;;;;;FRS69PSYDR112;FRCPIE6513335;Ottange, Parking Hôtel de ville;;Le bourg 14210 TROIS MONTS;;[-0.645157, 44.851745];;FRS16EMB166611;FR*SOD*E*SYDR*21*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.58068217;47.37171155;;;; +;;;;;;;;FRS69PSYDR8212;FRS55E8127;Villerupt, Parking Stade Delaune;;Boulevard Fernand Moureaux 14360 TROUVILLE SUR MER;;[-0.56712, 44.8384];;FRS16EMB166511;FR*SOD*E*SYDR*20*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.646493;47.46810112;;;; +;;;;;;;;FRS69PSYDR8211;FRS55E8126;Villerupt, Parking place Joliot Curie;;Avenue de la Gare 14500 VIRE;;[-4.048031, 48.000971];;FRS16EMB166512;FR*SOD*E*SYDR*20*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.39718179;44.28766646;;;; +;;;;;;;;FRS69PSYDR8111;FRS08E5762;Pange, CC Pays de Pange;;Parking Mairie 14480 VILLIERS LE SEC;;[6.24186015, 48.71081884];;FRS16EMB166411;FR*SOD*E*SYDR*19*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.0513394;46.77243698;;;; +;;;;;;;;FRS69PSYDR8112;FRCPIE6518615;Dombasle-sur-Meurthe, Gare;;Rue Louis Aubert, Place du Lavoir 14113 VILLERVILLE;;[-0.58068217, 48.72619677];;FRS16EMB166412;FR*SOD*E*SYDR*29*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12864739;48.89269131;;;; +;;;;;;;;FRS69PSYDR7811;FRCPIE6517155;Varangéville, Gare;;Grande Place, Covoiturage 14500 VIRE;;[0.646493, 47.357512];;FRS16EMB166312;FR*SOD*E*SYDR*30*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5481583;47.70708673;;;; +;;;;;;;;FRS69PSYDR7512;FRCPIE6557815;Bouzy, place de la Mairie;;Rue Turpin 14500 VIRE;;[1.39718179, 43.46467058];;FRS16EMB167011;FR*SOD*E*SYDR*30*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.10321425;47.90089427;;;; +;;;;;;;;FRS69PSYDR7812;FRCPIE6557825;Bruay-la-Buissière, Rue Raoul Briquet;;Rue Saint Martin 14500 VIRE;;[-4.0513394, 48.51453622];;FRS16EMB166212;FR*SOD*E*SYDR*31*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.71875472;48.6822;;;; +;;;;;;;;FRS69PSYDR7712;FRFASE330260;Germaine, rue du Pré Michaux;;Parking StadePierre Compte 14500 VIRE;;[6.12864739, 48.69360911];;FRS16EMB166211;FR*SOD*E*SYDR*41*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.51725041;42.53719241;;;; +;;;;;;;;FRS69PSYDR7711;FRFASE330960;Lescar, CAP NORD BEARN;;Rue du Champ Saint-Michel 14700 FALAISE;;[6.5481583, 43.46713262];;FRS16EMB166112;FR*SOD*E*SYDR*40*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.87844812;47.90067129;;;; +;;;;;;;;FRS69PSYDR7611;FRCPIE6769685;Bisseuil, rue de l'Ecole;;Route de Bayeux 14710 TREVIERES;;[2.10321425, 48.88856813];;FRS16EMB166111;FR*SOD*E*SYDR*40*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.1204683;45.5756;;;; +;;;;;;;;FRS69PSYDR7612;FRIONE4089;Avenay-Val-d'Or, avenue Pierre Dubois;;Avenue du 6 Juin 14114 VER SUR MER;;[4.71875472, 45.97819852];;FRS16EMB166011;FR*SOD*E*SYDR*39*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.68778271;42.55717621;;;; +;;;;;;;;FRS69PSYDR7511;FRIONE40890;Tours-sur-Marne, Place de la Halle;;Place jean Vasnier 14430 DOZULE;;[6.51725041, 48.57942157];;FRS16EMB166012;FR*SOD*E*SYDR*39*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.7227;42.57561279;;;; +;;;;;;;;FRS69PSYDR6711;FRCPIE6632165;Pont-à-Mousson, Burger King;;Place de l'amitié 14600 EQUEMAUVILLE;;[2.87844812, 48.94033181];;FRS16EMB165912;FR*SOD*E*SYDR*38*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.83116;43.98437746;;;; +;;;;;;;;FRS69PSYDR111;FRS18E14028;Mennecy, Burger King;;Parking derrière la mairie 14210 EVRECY;;[-0.1204683, 45.04648058];;FRS16EMB165911;FR*SOD*E*SYDR*38*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.19840202;43.98442417;;;; +;;;;;;;;FRS69PSYDR3511;FRCPIE6551715;Delle, Faubourg de Belfort;;Maison des associations 14210 EVRECY;;[7.68778271, 48.74537984];;FRS16EMB165811;FR*SOD*E*SYDR*37*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.59124713;46.761133;;;; +;;;;;;;;FRS69PSYDR4812;FRS88E16328;Pessac, Rue Marcel Dassault;;Parking de l'hôpital 14600 EQUEMAUVILLE;;[6.7227, 48.2085];;FRS16EMB165812;FR*SOD*E*SYDR*37*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.75204573;44.17387854;;;; +;;;;;;;;FRS69PSYDR5211;FRCPIE6610765;Sarrola Carcopino, Renault Trucks;;Hameau de l'église 14250 ELLON;;[5.83116, 48.2099];;FRS16EMB165712;FR*SOD*E*SYDR*36*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.864405448;44.61024498;;;; +;;;;;;;;FRS69PSYDR5212;FRCPIE6550965;Biguglia, Renault Trucks;;Rue de Joal 14790 VERSON;;[-1.19840202, 47.37171155];;FRS16EMB165711;FR*SOD*E*SYDR*36*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.57866798;42.568332;;;; +;;;;;;;;FRS69PSYDR5112;FRCPIE6770395;Beauvais, Feuillette;;Esplanade des Libérateurs 14610 EPRON;;[-0.59124713, 47.46810112];;FRS16EMB165612;FR*SOD*E*SYDR*35*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.38346433;43.45108975;;;; +;;;;;;;;FRS69PSYDR5111;FRSHEE178;Béziers, Rue Alphonse Beau de Rochas;;Parking de l'église 14410 VASSY;;[4.75204573, 44.28766646];;FRS16EMB166912;FR*SOD*E*SYDR*34*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.90760516;44.518903;;;; +;;;;;;;;FRS69PSYDR5011;FRS18E14871;Bouzonville, Place du marché;;D131 Route de Langannerie 14190 URVILLE;;[4.864405448, 46.77243698];;FRS16EMB167013;FR*SOD*E*SYDR*34*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.8625;48.699533;;;; +;;;;;;;;FRS69PSYDR5012;FRIONE4043;Bouzonville, Mairie;;Place de la Mairie 14500 VAUDRY;;[2.57866798, 48.89269131];;FRS16EMB165512;FR*SOD*E*SYDR*33*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.05223102;46.79957472;;;; +;;;;;;;;FRS69PSYDR4912;FRIONE40430;Ste Lucie de Porto-Vecchio, Zonza;;Route de Formigny 14710 VIERVILLE SUR MER;;[-1.38346433, 47.70708673];;FRS16EMB167612;FR*SOD*E*SYDR*33*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.23638238;42.57131079;;;; +;;;;;;;;FRS69PSYDR4911;FRCPIE6543795;Artigues, Avenue Descartes;;D613, Mairie 14370 CROISSANVILLE;;[-3.90760516, 47.90089427];;FRS16EMB16712;FR*SOD*E*SYDR*32*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.91403;45.100663;;;; +;;;;;;;;FRS69PSYDR4913;FRCPIE6543785;Le Bouscat, Avenue Georges Clémenceau;;Les Résidences Du Golfe De Lava - Hameau D 20167 Appietto;;[5.8625, 48.6822];;FRS16EMB16612;FR*SOD*E*SYDR*32*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.01092663;42.77631046;;;; +;;;;;;;;FRS69PSYDR4811;FRCPIE6543575;Bègles, Rue Marc Sangnier;;Rue Pierre Jacquot 14910 BLONVILLE SUR MER;;[3.05223102, 42.53719241];;FRS16EMB16611;FR*SOD*E*SYDR*31*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.04252466;46.740534;;;; +;;;;;;;;FRS69PSYDR5312;FRIONE4401;Cenon, Place François Mitterrand;;Avenue de la Côte de Nacre 14970 BENOUVILLE;;[7.23638238, 47.90067129];;FRS16EMB16511;FR*SOD*E*SYDR*64*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.91435021;46.42051966;;;; +;;;;;;;;FRS69PSYDR4711;FRIONE44012;Bassens, Avenue de l'Europe;;Route de Paris 14370 BELLENGREVILLE;;[2.91403, 45.5756];;FRS16EMB16512;FR*SOD*E*SYDR*60*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.91440001;44.75737344;;;; +;;;;;;;;FRS69PSYDR4712;FRCPIE6770345;Mérignac, Place Jean Jaurès;;Rue Grande Route 14130 BLANGY LE CHÂTEAU;;[3.01092663, 42.55717621];;FRS16EMB16411;FR*SOD*E*SYDR*64*8*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.023068;45.57902312;;;; +;;;;;;;;FRS69PSYDR4612;FRCPIE6770385;Bordeaux, Maison Ecocitoyenne;;Rue Maurice Hebert 14550 BLAINVILLE SUR ORNE;;[3.04252466, 42.57561279];;FRS16EMB16412;FR*SOD*E*SYDR*14*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.63678848;43.41619671;;;; +;;;;;;;;FRS69PSYDR4611;FRCPIE6770375;Ergué-Gabéric, Brit Hôtel;;Route de Sannerville 14840 CUVERVILLE;;[1.91435021, 43.98437746];;FRS16EMB16312;FR*SOD*E*SYDR*11*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.76213639;43.89801995;;;; +;;;;;;;;FRS69PSYDR4512;FRCPIE6770355;Essey-lès-Nancy, Burger King;;Rue du Général de Gaulle 14550 BLAINVILLE SUR ORNE;;[1.91440001, 43.98442417];;FRS16EMB16311;FR*SOD*E*SYDR*11*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.03333834;43.95327432;;;; +;;;;;;;;FRS69PSYDR4511;FRCPIE6770325;Flers, Burger King;;Le Bourg 14430 ANNEBAULT;;[-2.023068, 46.761133];;FRS16EMB16211;FR*SOD*E*SYDR*12*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.63380721;44.42822916;;;; +;;;;;;;;FRS69PSYDR4411;FRIONE40255;Joué-lès-Tours, rue Gustave Eiffel;;Rue Gueritot 14370 ARGENCES;;[4.63678848, 44.17387854];;FRS16EMB16212;FR*SOD*E*SYDR*12*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.79864;47.57283072;;;; +;;;;;;;;FRS69PSYDR4412;FRIENE008702;Labarthe-sur-Lèze, Chemin des Agriès;;Place champs de foire 14260 AUNAY SUR ODON;;[0.76213639, 44.61024498];;FRS16EMB16111;FR*SOD*E*SYDR*13*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.910392;44.58129089;;;; +;;;;;;;;FRS69PSYDR4312;FRIENE008701;Landivisiau, Burger King;;Route de Bonnebosq 14340 Notre-Dame d'Estrees Corbon;;[3.03333834, 42.568332];;FRS16EMB16112;FR*SOD*E*SYDR*13*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.07039785;46.50972776;;;; +;;;;;;;;FRS69PSYDR5311;FRCPIE6557845;Laxou, Burger King;;D562 14110 Saint-Denis-de-Méré;;[6.63380721, 43.45108975];;FRS16EMB167611;FR*SOD*E*SYDR*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.03189323;46.347566;;;; +;;;;;;;;FRS69PSYDR5411;FRE10E768;Le Muy, Burger King;;Rue Brigade Piron 14460 AUBERVILLE;;[5.79864, 44.518903];;FRS16EMB167014;FR*SOD*E*SYDR*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.801605;42.70705;;;; +;;;;;;;;FRS69PSYDR6451;FRIENE004501;Le Pecq, Burger King;;38 Route De La Ferronnière 14350 Souleuvre en Bocage;;[5.910392, 48.699533];;FRS16EMB167511;FR*SOD*E*SYDR*15*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.02754858;42.57587349;;;; +;;;;;;;;FRS69PSYDR6012;FRCPIE6561965;Limas, Burger King;;Route De Saint-Lô 14490 Vaubadon;;[-2.07039785, 46.79957472];;FRS16EMB167512;FR*SOD*E*SYDR*15*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.986047;46.666772;;;; +;;;;;;;;FRS69PSYDR6471;FRIONE4100;Moncel-lès-Lunéville, Burger King;;Avenue de Verdun 14340 BONNEBOSQ;;[3.03189323, 42.57131079];;FRS16EMB167412;FR*SOD*E*SYDR*16*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.72339157;44.4296686;;;; +;;;;;;;;FRS69PSYDR6381;FRIONE41000;Mareuil les Meaux, Avenue de la Haute Borne;;Parking Mairie 14460 COLOMBELLES;;[5.801605, 45.100663];;FRS16EMB167411;FR*SOD*E*SYDR*16*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.35350427;49.212682;;;; +;;;;;;;;FRS69PSYDR6351;FRS28E17158;Coutras, Burger King;;Place Alain Lemière 14460 COLOMBELLES;;[3.02754858, 42.77631046];;FRS16EMB162412;FR*SOD*E*SYDR*17*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.79263273;44.11561019;;;; +;;;;;;;;FRS69PSYDR6371;FRIENE004502;Bernolsheim, Burger King;;Parking du Pont du Coudray 14320 CLINCHAMPS SUR ORNE;;[-1.986047, 46.740534];;FRS16EMB167313;FR*SOD*E*SYDR*17*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.84802588;47.614325;;;; +;;;;;;;;FRS69PSYDR6361;FRCPIE6565565;Bruyères, Place Stanislas;;Croisement rue Arsène 14570 CLECY;;[5.72339157, 46.42051966];;FRS16EMB167312;FR*SOD*E*SYDR*10*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.80687827;43.56313443;;;; +;;;;;;;;FRS69PSYDR6212;FRCPIE6566095;Bulgnéville, centre commercial;;Rue du Commandant Kieffer 14880 COLLEVILLE- MONTGOMERY;;[5.35350427, 44.75737344];;FRS16EMB167311;FR*SOD*E*SYDR*9*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.93411122;43.56412564;;;; +;;;;;;;;FRS69PSYDR6211;FRS37E1831;Saint-Géréon, boulevard de l'Atlantique;;Cavey 14710 COLLEVILLE SUR MER;;[2.79263273, 45.57902312];;FRS16EMB167211;FR*SOD*E*SYDR*18*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.16311718;43.56341819;;;; +;;;;;;;;FRS69PSYDR6111;FRS37E1070;Angers, rue du Petit Launay;;Zone de Beauvoir 14220 THURY HARCOURT;;[6.84802588, 43.41619671];;FRS16EMB167212;FR*SOD*E*SYDR*5*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.02523165;43.78925551;;;; +;;;;;;;;FRS69PSYDR6112;FRS37E1069;Bollène, Burger King;;Route de Mont Joie 14380 CHAMP DU BOULT;;[5.80687827, 43.89801995];;FRS16EMB167111;FR*SOD*E*SYDR*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2124275;47.840631;;;; +;;;;;;;;FRS69PSYDR5911;FRCPIE6562155;Chalon sur Saone, rue René Cassin;;Place de Margetshöchheim 14112 BIEVILLE BEUVILLE;;[5.93411122, 43.95327432];;FRS16EMB167121;FR*SOD*E*SYDR*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.62049141;43.599069;;;; +;;;;;;;;FRS69PSYDR5412;FRS37E2488;Chelles, Burger King;;Esplanade de Woolsery 14430 BEUVRON EN AUGE;;[-1.16311718, 44.42822916];;FRS16EMB167012;FR*SOD*E*SYDR*3*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.386764;44.708957;;;; +;;;;;;;;FRS69PSYDR5912;FRS37E2422;Châteaubriant, rue du 8 Mai 1945;;D514 Rue Victor Tesnière 14990 BERNIERES SUR MER;;[-3.02523165, 47.57283072];;FRS16EMB165611;FR*SOD*E*SYDR*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.035199;44.85612739;;;; +;;;;;;;;FRS69PSYDR5811;FRSPSESHEL101;Concarneau, Burger King;;Route de Courseulles 14440 BENY SUR MER;;[-1.2124275, 44.58129089];;FRS16EMB167314;FR*SOD*E*SYDR*4*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.96462164;-21.3325437;;;; +;;;;;;;;FRS69PSYDR5812;FRSHEE179;Ecrouves, rue du Mémorial du Génie;;Rue Nicolas Dulong 14100 LISIEUX;;[5.62049141, 46.50972776];;FRS16EMB165511;FR*SOD*E*SYDR*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.825951;45.3216;;;; +;;;;;;;;FRS69PSYDR5712;FRCPIE6558885;Argelès-sur-Mer, Avenue Torre d'en Sorre;;Rue du Bout Maçon 14610 ANGUERNY;;[-1.386764, 46.347566];;FRS16EMB163212;FR*SOD*E*SYDR*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.16716798;48.076864;;;; +;;;;;;;;FRS69PSYDR5711;FRCPIE6531355;Issenheim, camping Le Florival;;Avenue du Fresne 14760 BRETTEVILLE-SUR-ODON;;[3.035199, 42.70705];;FRS16EMB163811;FR*SOD*E*SYDR*9*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.40231;46.6097689;;;; +;;;;;;;;FRS69PSYDR5611;FRCPIE6629385;Chambon-sur-Lac, Camping Le Pré Bas;;Route de Lisieux 14430 Annebault;;[2.96462164, 42.57587349];;FRS16EMB163812;FR*SOD*E*SYDR*6*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.08668388;43.438624;;;; +;;;;;;;;FRS69PSYDR5612;FRS08E5770;Argelès-sur-Mer, Camping Le Soleil;;Place de l'Ermitage 77000 Melun;;[-1.825951, 46.666772];;FRS16EMB163711;FR*SOD*E*SYDR*6*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.925386;48.219178;;;; +;;;;;;;;FRS69PSYDR5512;FRS08E5751;Cahuzac sur Vère, Camping Le Soleil des Bastides;;Rue de l'Usine 67520 Marlenheim;;[-1.16716798, 44.4296686];;FRS16EMB163712;FR*SOD*E*SYDR*65*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.07418678;-21.334427;;;; +;;;;;;;;FRS69PSYDR5511;FRSHEE181;Saint-Hilaire-de-Riez, Camping Les Alizés;;153 Rue Georges Bonnac 33000 Bordeaux;;[2.40231, 49.212682];;FRS16EMB163611;FR*SOD*E*SYDR*7*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.07412793;49.106955;;;; +;;;;;;;;FRS69PSYDR4311;FRSHEE180;Bagnols-sur-Cèze, Route de Carmignan;;Place Roger Salengro 62670 Mazingarbe;;[3.08668388, 44.11561019];;FRS16EMB163612;FR*SOD*E*SYDR*8*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.07493271;46.9978;;;; +;;;;;;;;FRS69PSYDR4211;FRCPIE6652755;Saint-Étienne-de-Villeréal, Chemin des ormes;;103 avenue des Alpes 06800 Cagnes-sur-Mer;;[-2.925386, 47.614325];;FRS16EMB163512;FR*SOD*E*SYDR*8*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.84532543;48.4669;;;; +;;;;;;;;FRS69PSYDR4212;FRIONE43235;Argelès-sur-Mer, Chemin de la Salanque;;9 Boulevard Gambetta 39000 Lons-le-Saunier;;[4.07418678, 43.56313443];;FRS16EMB163511;FR*SOD*E*SYDR*18*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.880052;48.680163;;;; +;;;;;;;;FRS69PSYDR2412;FRE10E767;Roquebrune-sur-Argens, Camping Les Pêcheurs;;5 avenue de la Victoire 77100 Meaux;;[4.07412793, 43.56412564];;FRS16EMB163412;FR*SOD*E*SYDR*7*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.457057;48.681068;;;; +;;;;;;;;FRS69PSYDR2912;FRCPIE6646405;Veynes, Chemin du Plan d'eau;;Rue Paul Doumer 77000 Melun;;[4.07493271, 43.56341819];;FRS16EMB163411;FR*SOD*E*SYDR*19*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.131665;48.488;;;; +;;;;;;;;FRS69PSYDR2811;FRS37E248;Toul, rue Guy Perrin;;306 Avenue Mozart 06600 Antibes;;[4.84532543, 43.78925551];;FRS16EMB163312;FR*SOD*E*SYDR*66*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.58925408;50.1057;;;; +;;;;;;;;FRS69PSYDR2812;FRCPIE6609555;Saint-Jean-de-Monts, Camping Le Bois Joly;;1715 Route De Nice 06600 Antibes;;[-3.880052, 47.840631];;FRS16EMB163311;FR*SOD*E*SYDR*65*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.45680189;50.35473676;;;; +;;;;;;;;FRS69PSYDR2712;FRCPIE6557355;Argelès-sur-Mer, Route de Taxo à la Mer;;719 Avenue Henri Parisot 88500 Mirecourt;;[-1.457057, 43.599069];;FRS16EMB163211;FR*SOD*E*SYDR*66*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.59188;50.364;;;; +;;;;;;;;FRS69PSYDR2711;FRIONE44011;Vaulvaneys-le-Bas, Chemin des Molières;;Rue Du Visenay 39570 Mirebel;;[5.131665, 44.708957];;FRS16EMB163112;FR*SOD*E*AVPT*8*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.399329;50.3787;;;; +;;;;;;;;FRS69PSYDR2612;FRCPIE6729295;Le Barcarès, Camping La Croix du Sud;;8 Rue du Bailliage 88500 Mirecourt;;[6.58925408, 44.85612739];;FRS16EMB163911;FR*SOD*E*AVPT*8*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.36775842;-21.3386997;;;; +;;;;;;;;FRS69PSYDR2611;FRCPIE6729345;Saint Hilaire De Riez, Avenue de la Parée Preneau;;Bd Marechal Leclerc 14400 BAYEUX;;[55.45680189, -21.3325437];;FRS16EMB163111;FR*SOD*E*AVPT*7*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.254323;43.16295103;;;; +;;;;;;;;FRS69PSYDR2511;FRCPIE6729315;Moirans-en-Montagne, Camping La Petite Montagne;;Rue Montfiquet 14400 BAYEUX;;[5.59188, 45.3216];;FRS16EMB163011;FR*SOD*E*AVPT*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.437215;45.637648;;;; +;;;;;;;;FRS69PSYDR2512;FRCPIE6531395;Die, Impasse Du Pont Neuf;;Route de Rouen 14120 MONDEVILLE;;[-1.399329, 48.076864];;FRS16EMB163012;FR*SOD*E*AVPT*3*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.4593;46.34035068;;;; +;;;;;;;;FRS69PSYDR2411;FRS88E15032;Mont-Dore, Camping La Plage Verte;;Rue de la petite justice 14860 BAVENT;;[0.36775842, 46.6097689];;FRS16EMB162912;FR*SOD*E*AVPT*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.069566;42.55176041;;;; +;;;;;;;;FRS69PSYDR4111;FRS88E16201;Saint-Raphaël, Boulevard de la 36ème division du Texas;;Rue du Sapin 14490 BALLEROY;;[5.254323, 43.438624];;FRS16EMB162812;FR*SOD*E*AVPT*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.71506;42.59896285;;;; +;;;;;;;;FRS69PSYDR2312;FRCPIE6730725;Saint-Maime, Camping La Rivière;;Rue d'Instow 14117 ARROMANCHES LES BAINS;;[6.437215, 48.219178];;FRS16EMB162811;FR*SOD*E*AVPT*1*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.17993;46.34909012;;;; +;;;;;;;;FRS69PSYDR2311;FRCPIE6730005;Les Mees, Camping Little Carpe Diem;;70 Rue Du Moulin D'andeux 60400 Noyon;;[55.4593, -21.334427];;FRS16EMB162712;FR*SOD*E*AVPT*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.862269;45.8301449;;;; +;;;;;;;;FRS69PSYDR2211;FRCPIE6729335;Biscarrosse , Chem. de Navarrosse;;144 Rue De La Tégula 42600 Savigneux;;[7.069566, 49.106955];;FRS16EMB162711;FR*SOD*E*AVPT*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.861093;-17.4884487;;;; +;;;;;;;;FRS69PSYDR2212;FRCPIE6729325;La Trinité-Sur-Mer, Camping de la Baie;;Rue Du Puech 34980 Saint-Gély-du-Fesc;;[5.71506, 46.9978];;FRS16EMB162612;FR*SOD*E*MB24*93*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09308;46.2136;;;; +;;;;;;;;FRS69PSYDR2111;FRCPIE6729355;Pyla sur Mer, Camping de la Dune;;1 rue Gay-Lussac 22003 Saint-Brieuc;;[6.17993, 48.4669];;FRS16EMB162611;FR*SOD*E*MB24*78*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8676;45.743585;;;; +;;;;;;;;FRS69PSYDR2112;FRIONE45180;Écrille, Camping de la Faz;;121 Rue Du Lac 38300 Nivolas-Vermelle;;[5.862269, 48.680163];;FRS16EMB162512;FR*SOD*E*MB24*103*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33118227;48.1281;;;; +;;;;;;;;FRS69PSYDR2011;FRIONE45181;La Tranche-sur-Mer, Camping du Jard;;Rue des Varennes 71880 Châtenoy-le-Royal;;[5.861093, 48.681068];;FRS16EMB162511;FR*SOD*E*MB24*103*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.32986;47.170026;;;; +;;;;;;;;FRS69PSYDR2012;FRN54E18692;Canet-en-Roussillon, Camping Le Brasilia 2;;D3B 68500 Merxheim;;[6.09308, 48.488];;FRS16EMB165411;FR*SOD*E*MB24*102*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.32317;42.57529937;;;; +;;;;;;;;FRS69PSYDR1911;FRCPIE6622335;Palau-del-Vidre, Avenue Joliot Curie;;Cabourg, Parking Mairie 14390 Cabourg;;[2.8676, 50.1057];;FRS16EMB163912;FR*SOD*E*MB24*77*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.46906132;47.745587;;;; +;;;;;;;;FRS69PSYDR2911;FRCPIE6729285;L'Aiguillon-sur-Vie, Camping le Parc de la Grève;;1 Avenue De La Libération 14390 Cabourg;;[2.33118227, 50.35473676];;FRS16EMB162911;FR*SOD*E*MB24*102*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.89186964;43.94430626;;;; +;;;;;;;;FRS69PSYDR3012;FRCPIE6623895;Biscarrosse, Camping les Écureuils;;1 Avenue De La Brèche Buhot 14390 Cabourg;;[2.32986, 50.364];;FRS16EMB164011;FR*SOD*E*MB24*78*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.87558193;43.44975075;;;; +;;;;;;;;FRS69PSYDR3011;FRCPIE6623885;Saint-Leu d'Esserent, Camping de l'Abbatiale;;Cabourg, Parking de la Poste 14390 Cabourg;;[2.32317, 50.3787];;FRS16EMB164712;FR*SOD*E*MB24*79*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.39259694;44.94711176;;;; +;;;;;;;;FRS69PSYDR3111;FRCPIE6534535;Camping Millau Plage, Avenue de Millau Plage;;Rue De La Varende 14250 Tilly-sur-Seulles;;[55.46906132, -21.3386997];;FRS16EMB165412;FR*SOD*E*MB24*93*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.75524852;43.934673;;;; +;;;;;;;;FRS69PSYDR4112;FRIENE004702;Baden, Rue Mané er Groez;;Place De La Mairie 14540 Soliers;;[2.89186964, 43.16295103];;FRS16EMB164012;FR*SOD*E*MB24*79*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.03991263;48.832443;;;; +;;;;;;;;FRS69PSYDR4011;FRIENE004701;La Grande Motte, Camping Maïana 3;;Rue Du Tour De Ville 14210 Sainte-Honorine-du-Fay;;[5.87558193, 45.637648];;FRS16EMB165311;FR*SOD*E*MB24*81*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.18668478;43.10563786;;;; +;;;;;;;;FRS69PSYDR4012;FRS08E3548;La Grande Motte, Camping Maïana;;Rue Montauban 14990 Bernières-sur-Mer;;[-0.39259694, 46.34035068];;FRS16EMB165312;FR*SOD*E*MB24*81*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.18049609;44.77402125;;;; +;;;;;;;;FRS69PSYDR3912;FRCPIE6557975;La Grande Motte, Camping Maïana 2;;Rue Georges Clémenceau 14130 PONT-L'EVEQUE;;[8.75524852, 42.55176041];;FRS16EMB165212;FR*SOD*E*MB24*82*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-149.817832;48.452547;;;; +;;;;;;;;FRS69PSYDR3911;FRCPIE6557875;Saint-Rémy-de-Provence, Camping Parc Bastide;;Route de Saint-pierre Sur Dives 14140 Saint-Marguerite-de-Viette;;[3.03991263, 42.59896285];;FRS16EMB165211;FR*SOD*E*MB24*82*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.21839;46.57480921;;;; +;;;;;;;;FRS69PSYDR3812;FRCPIE6557865;Hameau de Penanguer, Camping Domaine de Pendruc;;Rue Richard Lenoir 14310 VILLERS-BOCAGE;;[2.18668478, 46.34909012];;FRS16EMB165111;FR*SOD*E*MB24*84*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.165117;44.86083;;;; +;;;;;;;;FRS69PSYDR3811;FRCPIE6623905;Labenne, Avenue de l'océan;;Rue Guynemer 14530 Luc-sur-Mer;;[6.18049609, 45.8301449];;FRS16EMB165011;FR*SOD*E*MB24*104*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.36831;48.672411;;;; +;;;;;;;;FRS69PSYDR3711;FRS88E16238;Mirabel-et-Blacons, Camping Val Drome Soleil;;Rue du Pressoir 14370 AIRAN;;[-149.817832, -17.4884487];;FRS16EMB165012;FR*SOD*E*MB24*104*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.393396;48.63200582;;;; +;;;;;;;;FRS69PSYDR3712;FRCPIE6564835;Saint-Martin-de-Queyrières, Camping Iscle de Prelles;;Rue du Manoir de Prie 14130 COQUAINVILLIERS;;[5.21839, 46.2136];;FRS16EMB164911;FR*SOD*E*MB24*106*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.03379187;47.110213;;;; +;;;;;;;;FRS69PSYDR3612;FRCPIE6535705;CIVIS - Parking Cadjee;;Rue des terrasses 14800 Tourgeville;;[3.165117, 45.743585];;FRS16EMB164912;FR*SOD*E*MB24*106*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.810482;46.570362;;;; +;;;;;;;;FRS69PSYDR3611;FRCPIE6535375;Moirans, CER France publique;;Jardins Du Casino 14390 Cabourg;;[7.36831, 48.1281];;FRS16EMB164811;FR*SOD*E*MB24*107*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.31290617;48.06762198;;;; +;;;;;;;;FRS69PSYDR3512;FRS88E15030;Domagné, parking;;Rue des prés guillets 14110 CONDE SUR NOIREAU;;[-1.393396, 47.170026];;FRS16EMB164812;FR*SOD*E*MB24*107*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.88531439;43.18814;;;; +;;;;;;;;FRS69PSYDR3412;FRIONE46940;Buxerolles, Avenue du Pas de Saint-Jacques;;Place du Six Juin 14470 COURSEULLES-SUR-MER;;[3.03379187, 42.57529937];;FRS16EMB165112;FR*SOD*E*MB24*108*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.07100038;47.9577;;;; +;;;;;;;;FRS69PSYDR3411;FRIONE4694;Vitrolles, Rue Gérard Toulon;;Le Bourg 14170 COURCY;;[1.810482, 47.745587];;FRS16EMB164711;FR*SOD*E*MB24*108*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.074901;45.92446453;;;; +;;;;;;;;FRS69PSYDR3312;FRIONE46941;Chavelot, CGS AUTO;;Centre hôpitalier 14113 CRICQUEBOEUF;;[0.31290617, 43.94430626];;FRS16EMB164311;FR*SOD*E*MB24*109*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.518204;47.73526312;;;; +;;;;;;;;FRS69PSYDR3311;FRIONE4518;CIVIS - Parking Luc Donat;;Centre-ville, rue des Ecoles 17600 CORMELLES LE ROYAL;;[1.88531439, 43.44975075];;FRS16EMB164112;FR*SOD*E*MB24*109*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.42860295;43.1332234;;;; +;;;;;;;;FRS69PSYDR3212;FRCPIE6541085;Chamblay, Grande Rue;;Parking de la Mairie 14500 COULONCES;;[-0.07100038, 44.94711176];;FRS16EMB164611;FR*SOD*E*MB24*110*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.64044633;47.42034943;;;; +;;;;;;;;FRS69PSYDR3211;FRCPIE6541055;Haroué, Place du Château;;Place de la mairie 14240 CORMOLAIN;;[-0.074901, 43.934673];;FRS16EMB164111;FR*SOD*E*MB24*110*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.042848;46.86875514;;;; +;;;;;;;;FRS69PSYDR3112;FRCPIE6540995;Ecrouves, rue de la Place d'Armes;;Route de Honfleur 14113 CRICQUEBOEUF;;[4.518204, 48.832443];;FRS16EMB164212;FR*SOD*E*MB24*111*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53448855;47.98452;;;; +;;;;;;;;FRS69PSYDR6461;FRCPIE6725925;Vézelise, Avenue Jacques Leclerc;;Rue Irène Joliot Curie 14460 COLOMBELLES;;[-0.42860295, 43.10563786];;FRS16EMB164312;FR*SOD*E*MB24*111*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.06276;48.88381709;;;; +;;;;;;;;FRS69PSYDR6011;FRIONE4314;Bapaume, Aire de covoiturage;;Boulevard de Beauvoir 14290 ORBEC;;[-0.64044633, 44.77402125];;FRS16EMB164211;FR*SOD*E*MB24*112*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.281885;43.99756898;;;; +;;;;;;;;FRS69PSYDR6481;FRIONE43140;Herlin-le-Sec, Maison des Services Hotel Communautaire;;Rue Emile Zimmermann 14500 VIRE;;[-2.042848, 48.452547];;FRS16EMB164411;FR*SOD*E*MB24*112*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33401537;47.50811353;;;; +;;;;;;;;FRS69PSYDR1412;FRCPIE6540215;Herlin-le-Sec, Aire de covoiturage;;Avenue du Général Lyne 14220 THURY-HARCOURT;;[1.53448855, 46.57480921];;FRS16EMB164412;FR*SOD*E*MB24*113*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.253051;47.092914;;;; +;;;;;;;;FRS69PSYDR1112;FRCPIE6627505;Saint-Pol-sur-Ternoise, Hôpital;;Parc de la Vallée 14190 SAINT SYLVAIN;;[1.06276, 44.86083];;FRS16EMB164511;FR*SOD*E*MB24*84*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.905458;44.45071211;;;; +;;;;;;;;FRS69PSYDR1111;FRCPIE6627515;CIVIS - Parking Volnay;;Place de l'église 14210 AMAYE SUR ORNE;;[2.281885, 48.672411];;FRS16EMB164512;FR*SOD*E*MB24*85*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.84123131;43.47239477;;;; +;;;;;;;;FRS69PSYDR1211;FRCPIE6543455;Bizanet, Camping Figurotta;;Route De Four 14540 Soliers;;[2.33401537, 48.63200582];;FRS16EMB164612;FR*SOD*E*MB24*85*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.59471;47.247204;;;; +;;;;;;;;FRS69PSYDR1212;FRIONE44010;La Motte-Servolex, Rue du Lac Mont Cenis;;Rue du Bief 14170 Saint Pierre Sur Dives;;[5.253051, 47.110213];;FRS64EMB643111;FR*SOD*E*MB24*100*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8908;44.83721199;;;; +;;;;;;;;FRS69PSYDR1311;FRCPIE6542295;Chauray, Camif Habitat;;Route de Lanvalou 29250 Saint-Pol-De-Léon;;[4.905458, 46.570362];;FRS64EMB642711;FR*SOD*E*MB24*94*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.41319694;44.684185;;;; +;;;;;;;;FRS69PSYDR1312;FRCPIE6627535;Calvi, Camping Bella Vista;;Avenue des Forgerons 93300 Aubervilliers;;[6.84123131, 48.06762198];;FRS64EMB643112;FR*SOD*E*MB24*94*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.74585148;48.08593055;;;; +;;;;;;;;FRS69PSYDR1411;FRCPIE6541555;Saint-Cyprien, Camping Cala Gogo;;189 Avenue De L'esplanade 83680 La Garde-Freinet;;[6.59471, 43.18814];;FRS64EMB643012;FR*SOD*E*MB24*95*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.39045673;44.433196;;;; +;;;;;;;;FRS69PSYDR1011;FRS18E11309;Malleret-Boussac, Camping Creuse Nature;;374 Rue Nationale 62290 Nœux-les-Mines;;[1.8908, 47.9577];;FRS64EMB643011;FR*SOD*E*MB24*95*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.98148211;50.405368;;;; +;;;;;;;;FRS69PSYDR1512;FRCPIE6577835;Saint-Jorioz, Camping Europa;;30 Avenue Lavoisier 63170 Aubière;;[6.41319694, 45.92446453];;FRS64EMB642911;FR*SOD*E*MB24*96*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.72191453;49.026685;;;; +;;;;;;;;FRS69PSYDR1511;FRIONE4378;PK10;;route de thierenbach 68500 jungholtz;;[2.74585148, 47.73526312];;FRS64EMB642912;FR*SOD*E*MB24*96*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3602;49.843246;;;; +;;;;;;;;FRS69PSYDR1611;FRS08E3599;Viriat, Chambre de Métiers;;178 Avenue D'angleterre 63150 La Bourboule;;[-0.39045673, 43.1332234];;FRS64EMB642812;FR*SOD*E*MB24*97*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.73600207;50.132965;;;; +;;;;;;;;FRS69PSYDR1612;FRS08E3588;Cournon-d'Auvergne, CMGO;;37 Route de Bayonne 40230 Saint-Geours-de-Maremne;;[0.98148211, 47.42034943];;FRS64EMB642811;FR*SOD*E*MB24*97*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.62493827;49.661838;;;; +;;;;;;;;FRS69PSYDR1712;FRS18E11282;Cora, Colmar;;Zone Artisanale Hippodrome 64520 Came;;[1.72191453, 46.86875514];;FRS64EMB642511;FR*SOD*E*MB24*114*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.85101422;49.308478;;;; +;;;;;;;;FRS69PSYDR1711;FRCPIE6536955;La Haie-Fouassière, CR Elec;;29 Quartier Le Village 39310 Lajoux;;[4.3602, 47.98452];;FRS64EMB642712;FR*SOD*E*MB24*98*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.394188;49.904906;;;; +;;;;;;;;FRS69PSYDR1012;FRIONE43780;Argelès-sur-Mer, Domaine Saint Thomas;;152 Rue Étienne Falconet 72100 Le Mans;;[2.73600207, 48.88381709];;FRS64EMB642611;FR*SOD*E*MB24*98*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.24703674;50.3628478;;;; +;;;;;;;;FRS69PSYDR912;FRIONE40970;Jouy le Potier, Centre bourg;;14 Rue Des Rosiers 44190 Clisson;;[2.62493827, 43.99756898];;FRS64EMB642212;FR*SOD*E*MB24*99*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.55281964;49.26091526;;;; +;;;;;;;;FRS69PSYDR1812;FRS08E5741;Larressingle, Coulomet;;42 Rue De La Zone D'activité De Ribaute 31130 Quint-Fonsegrives;;[2.85101422, 47.50811353];;FRS64EMB642612;FR*SOD*E*MB24*101*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.023416;50.299633;;;; +;;;;;;;;FRS69PSYDR512;FRIONE4092;Saint-Félix-Lauragais, Route de Toulouse;;Zone D’Activite Ariane 57400 Buhl-Lorraine;;[2.394188, 47.092914];;FRS64EMB642512;FR*SOD*E*MB24*99*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.18732993;50.351036;;;; +;;;;;;;;FRS69PSYDR212;FRTNME07910270;Puisseguin, lieu-dit, Roques;;Lieu dit la Caberte 32300 Loubersan;;[-1.24703674, 44.45071211];;FRS64EMB642412;FR*SOD*E*MB24*100*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.84741;49.868784;;;; +;;;;;;;;FRS69PSYDR211;FRIONE4126;Cazaubon, Rue Joseph Cappin;;13 Avenue Edmond Michelet 49300 Cholet;;[1.55281964, 43.47239477];;FRS64EMB642411;FR*SOD*E*MB24*86*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.78906947;50.105214;;;; +;;;;;;;;FRS69PSYDR312;FRIONE41260;Logis Clos de mutigny, La chaussé sur Marne;;Rue Du Lustincone 20270 Aléria;;[6.023416, 47.247204];;FRS64EMB642312;FR*SOD*E*MB24*92*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.214071;49.001745;;;; +;;;;;;;;FRS69PSYDR311;FRCPIE6538095;Arudy, Place de la ville;;2647 Rue Des Monts 59253 La Gorgue;;[5.18732993, 44.83721199];;FRS64EMB643211;FR*SOD*E*MB24*92*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.6655;49.011423;;;; +;;;;;;;;FRS69PSYDR412;FRIONE40920;Gradignan, Allée de Mégevie;;83 Av. 69 Régiment d'Infanterie 54270 Essey-lès-Nancy;;[2.84741, 44.684185];;FRS64EMB642311;FR*SOD*E*MB24*101*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.953022;48.77257456;;;; +;;;;;;;;FRS69PSYDR411;FRIONE4097;Dinan, Hôtel Arvor;;12 Rue Du Louvre 06500 Menton;;[2.78906947, 48.08593055];;FRS64EMB643212;FR*SOD*E*MB24*86*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.279678;50.279386;;;; +;;;;;;;;FRS69PSYDR511;58e96c29-ba02-4754-b0c4-98a4a1056975;Le Pechereau, Rue du Chêne Paumulle;;1 Rue Des Jardins 22400 Lamballe-Armor;;[3.214071, 44.433196];;FRS64EMB643911;FR*SOD*E*MB24*91*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.412583;49.776584;;;; +;;;;;;;;FRS69PSYDR911;75722f71-206a-42a3-a3ea-f74ed28659b1;Castels-et-Bézenac, Logis l'Atelier d'Epicure;;Place Du 8 Mai 63450 Saint-Saturnin;;[3.6655, 50.405368];;FRS64EMB643311;FR*SOD*E*MB24*91*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.35206;49.278021;;;; +;;;;;;;;FRS69PSYDR611;bcc51ef9-4e1e-42e9-a6cf-67a98b589dce;Ballainvilliers, rue de la Tuilerie;;Bois d'Imbert 46500 Rocamadour;;[3.953022, 49.026685];;FRS64EMB643812;FR*SOD*E*MB24*90*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.66728;50.101286;;;; +;;;;;;;;FRS69PSYDR612;cbbbdfaf-503c-443a-aee0-62980999f77f;Sainte-Geneviève-des-Bois Rue du Plessis;;1301 Route De Juliénas 71570 La Chapelle-de-Guinchay;;[3.279678, 49.843246];;FRS64EMB644211;FR*SOD*E*MB24*90*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.27385;48.642373;;;; +;;;;;;;;FRS69PSYDR6511;c5352ae8-5a8f-4917-99cb-ad795fd45e27;Lidl, bornes à attribuer;;Rue du Puy 63690 Tauves;;[3.412583, 50.132965];;FRS64EMB642112;FR*SOD*E*MB24*89*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.49416645;45.43337951;;;; +;;;;;;;;FRS69PSYDR711;70565;Gerardmer, Chemin du Tour du Lac;;11 Rue De L'artisanat 67350 Niedermodern;;[3.35206, 49.661838];;FRS64EMB644212;FR*SOD*E*MB24*87*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.96420518;50.654348;;;; +;;;;;;;;FRS69PSYDR812;70564;La Croix-Valmer, Lily of the Valley;;21 Route du Val 80132 Grand-Laviers;;[3.66728, 49.308478];;FRS64EMB644112;FR*SOD*E*MB24*89*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.741073;45.44025668;;;; +;;;;;;;;FRS69PSYDR811;4a833f25-e205-440a-97ce-fc15705a921c;Saran, Line Optic;;91 route de Guebwiller 68260 Kingersheim;;[2.27385, 49.904906];;FRS64EMB644111;FR*SOD*E*MB24*88*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.540683;45.4388527;;;; +;;;;;;;;FRS69PSYDR1811;6bbb97a5-bd3d-4d66-ba5d-25591e1bc39a;Saint-Jean-de-Sixt, Route du Danay;;1254 route du hameau de veaux 84340 Malaucène;;[3.49416645, 50.3628478];;FRS64EMB644011;FR*SOD*E*MB24*88*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.371293;45.4382768;;;; +;;;;;;;;FRS69PSYDR712;6b682e0d-7227-4979-b08c-66740b2c7e61;La Bussière, Rue de la Briare;;360 hameau Le Bosquet 84390 Saint-Christol;;[3.96420518, 49.26091526];;FRS64EMB644012;FR*SOD*E*MB24*87*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.863058;49.166529;;;; +;;;;;;;;FRS69PSYDR1912;64555;Sévignacq-Meyracq, Bains;;57 Avenue Baudin 87000 Limoges;;[2.741073, 50.299633];;FRS64EMB643912;FR*SOD*E*MB24*113*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.185883;49.08;;;; +;;;;;;;;FRS69PSYDR6622;64556;Amboise, Rue Jules Ferry;;Le Mont 03160 Ygrande;;[3.540683, 50.351036];;FRS64EMB643811;FR*SOD*E*MB24*131*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.902652;47.887476;;;; +;;;;;;;;FRS69PSYDR6512;55849;Coing, Lieu-dit Céré;;12 Rue De La Mer 29260 Plouider;;[2.371293, 49.868784];;FRS64EMB643312;FR*SOD*E*MB24*114*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34677484;43.06401;;;; +;;;;;;;;FRS69PSYDR6621;55848;Les Riceys, Logis Le Magny;;119 Avenue Du Maréchal Foch 78400 Chatou;;[2.863058, 50.105214];;FRS64EMB643711;FR*SOD*E*MB24*115*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.925624;48.97655215;;;; +;;;;;;;;FRPA1PAVPT812;0;Dampmart, Rue de l'Abreuvoir;;Calca 20245 Galeria;;[2.185883, 49.001745];;FRS64EMB643712;FR*SOD*E*MB24*141*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.698865;46.2068;;;; +;;;;;;;;FRPA1PAVPT811;e270d760-c439-4b2f-a380-dc52b4568f62;Brousse-le-Château, Logis le relays du Chasteau;;45 Grande Rue 95290 L'Isle-Adam;;[1.902652, 49.011423];;FRS64EMB643612;FR*SOD*E*MB24*141*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0036;46.2047;;;; +;;;;;;;;FRPA1PAVPT711;867580d1-94f0-43af-a80e-bd0da75ee828;Belleville-sur-Loire, Logis Terre de Loire;;Rue Martel 95290 Isle-Adam;;[2.34677484, 48.77257456];;FRS64EMB643611;FR*SOD*E*MB24*142*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.558056;46.2073;;;; +;;;;;;;;FRPA1PAVPT511;d005bf55-220d-4301-93f0-5c7a657c1412;Bourges, Avenue Henri Laudier;;3 Rue Des Entrepreneurs 35850 Gévezé;;[3.925624, 50.279386];;FRS64EMB643512;FR*SOD*E*MB24*142*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.837897;46.203;;;; +;;;;;;;;FRPA1PAVPT321;4f68bd40-89f2-4196-a124-574c808ee030;Biscarosse Plage, Rue des Iris;;87 Rue Commandant Bindel 50300 Avranches;;[4.698865, 49.776584];;FRS64EMB643511;FR*SOD*E*MB24*143*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.14462218;49.3700959;;;; +;;;;;;;;FRPA1PAVPT212;4f3433e4-aeb8-4c48-9301-097b84cefc73;Donneville, Chemin Départemental 24;;17 Rue Du Général Leclerc 77170 Brie-Comte-Robert;;[4.0036, 49.278021];;FRS64EMB643411;FR*SOD*E*MB24*143*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.183836;49.03502755;;;; +;;;;;;;;FRPA1PAVPT211;1354f666-b5b9-49ac-a55b-ccec09570c7d;Besançon, Logis Hôtel Victor Hugo;;Rue de l'Arc-en-Ciel 77240 Cesson;;[3.558056, 50.101286];;FRS64EMB643412;FR*SOD*E*MB24*144*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.43459848;45.87718468;;;; +;;;;;;;;FRPA1PAVPT112;e2706c77-15bb-4ea5-a93f-9cdf65e6ee65;Omblèze, Le Moulin de la Pipe;;Route De Tours 28200 Châteaudun;;[-2.837897, 48.642373];;FRS64EMB642211;FR*SOD*E*MB24*144*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.44077822;48.03847418;;;; +;;;;;;;;FRPA1PAVPT111;55851;Laguiole, Allée de l'Amicale;;181 Route De La Bresse 88400 Gérardmer;;[-1.14462218, 45.43337951];;FRS64EMB64611;FR*SOD*E*MB24*145*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.42500159;45.620729;;;; +;;;;;;;;FRPA1PAVPT411;55852;Ferrières-en-Gâtinais, La Prairie de l'étang;;Esplanade Du Muretain 31600 Muret;;[3.183836, 50.654348];;FRS64EMB642111;FR*SOD*E*MB24*145*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.965524;45.85350942;;;; +;;;;;;;;FRS24PMB249312;9d89bd8b-419e-4124-bb00-3fa1a76feb52;La Canourgue, Avenue du Lot;;11 Boulevard De La Liberté 49000 Angers;;[-0.43459848, 45.44025668];;FRS64EMB64411;FR*SOD*E*MB24*146*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.62523;48.8628938;;;; +;;;;;;;;FRS24PMB247812;EVB-P1941339;Crespin, 70 rue des Déportés - 3302;;19 Avenue Des Cambuses 87280 Limoges;;[-0.44077822, 45.4388527];;FRS64EMB64911;FR*SOD*E*MB24*146*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.513303;49.3443027;;;; +;;;;;;;;FRS24PMB2410311;88247;Epernay-Valentin, Zone d'activité les Forges -3617;;22 Rue Pierre et Marie Curie 73490 La Ravoire;;[-0.42500159, 45.4382768];;FRS64EMB64811;FR*SOD*E*MB24*147*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.424714;45.46952413;;;; +;;;;;;;;FRS24PMB2410312;88248;Saint-Quentin-Hugo, Boulevard victor hugo -3810;;Rue Du Bataillon 12 55430 Belleville-sur-Meuse;;[6.965524, 49.166529];;FRS64EMB64812;FR*SOD*E*MB24*147*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.38112742;44.381617;;;; +;;;;;;;;FRS24PMB2410212;8eb9f23b-54a1-43d8-ad0f-7ed4dd2e1c67;Caudry, 153 rue de Bruxelles - 3304;;4393 Route Des Plages 83350 Ramatuelle;;[1.62523, 49.08];;FRS64EMB64711;FR*SOD*E*MB24*149*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.22295;49.18673477;;;; +;;;;;;;;FRS24PMB247711;49545;La Fere, Boulevard Saint Firmin - 3301;;18 Boulevard Salvador Allende 78700 Conflans-Sainte-Honorine;;[2.513303, 47.887476];;FRS64EMB64712;FR*SOD*E*MB24*149*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.21959;45.72850221;;;; +;;;;;;;;FRS24PMB2410211;2defe8a4-408d-4886-a110-6d1a3918ca16;Fismes, 52 route de Soissons - 3286;;Route de Volvic 63530 Enval;;[-0.424714, 43.06401];;FRS64EMB64612;FR*SOD*E*MB24*150*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.22996;48.73937715;;;; +;;;;;;;;FRS24PMB247811;47259;Amiens-D'Australie, Rue d'Australie -3598;;112 Rue Du Président Roosevelt 78100 Saint-Germain-en-Laye;;[7.38112742, 48.97655215];;FRS64EMB64512;FR*SOD*E*MB24*140*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.22182;48.16407101;;;; +;;;;;;;;FRS24PMB247911;127535;Valenciennes, Rue Desandrouin;;61 Boulevard Gambetta 35400 Saint-Malo;;[5.22295, 46.2068];;FRS64EMB64511;FR*SOD*E*MB24*140*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.38173979;46.812308;;;; +;;;;;;;;FRS24PMB249311;65281;Anthony Sauvage, rue des Acacias;;41 Boulevard De L'europe 78540 Vernouillet;;[5.21959, 46.2047];;FRS64EMB64412;FR*SOD*E*MB24*138*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.05861062;45.54369187;;;; +;;;;;;;;FRS24PMB247912;65280;Arras, 193 Avenue Winston Churchill - 3611;;8 côté Montagne, Punavai 98717 PUNAAUIA, Tah;;[5.22996, 46.2073];;FRS64EMB641012;FR*SOD*E*MB24*132*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.24099307;48.1030083;;;; +;;;;;;;;FRS24PMB248112;Non concerné;Marly, Avenue Henry Barbusse - 4158;;8 Terre Vaiameamea, Afaahiti, Taravao 98719 TAIARAPU EST;;[5.22182, 46.203];;FRS64EMB64311;FR*SOD*E*MB24*130*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.5869454;50.4694764;;;; +;;;;;;;;FRS24PMB248111;95769;Longueau, 4 Avenue de L' arc - 3891;;2 Allée Ulysse Gayon 33650 Martillac;;[1.38173979, 49.3700959];;FRS64EMB64331;FR*SOD*E*MB24*130*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.74732;50.46822285;;;; +;;;;;;;;FRS24PMB248212;ceec7d44-ba61-11ec-8422-0242ac120002;Fourmies, rue Roger Couderc;;120 Chemin De Bessas 26230 Grignan;;[6.05861062, 49.03502755];;FRS64EMB64332;FR*SOD*E*MB24*129*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.05632399;50.91536135;;;; +;;;;;;;;FRS24PMB248211;1ce943d0-0fe2-11ed-861d-0242ac120002;Bapaume, 72 rue de la République - 3188;;15 Rue Du Bosphore 35200 Rennes;;[1.24099307, 45.87718468];;FRS64EMB64212;FR*SOD*E*MB24*129*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.63671609;48.36185234;;;; +;;;;;;;;FRS24PMB248412;50713;Herblay-Coty, 7 Rue René Coty -3959;;6 Rue De L'ouest 78200 Mantes-la-Ville;;[0.5869454, 48.03847418];;FRS64EMB64211;FR*SOD*E*MB24*128*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.13395744;46.907309;;;; +;;;;;;;;FRS24PMB2410412;50663;Meulan-En-Yvelines-Aulnes, Avenue des Aulnes -3958;;19 Rue De L'hermitage 35780 La Richardais;;[4.74732, 45.620729];;FRS64EMB64111;FR*SOD*E*MB24*128*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.907633251;43.70389;;;; +;;;;;;;;FRS24PMB2410411;d8b8f34d-6d12-4830-be62-566a5e50a3b7;L'Haÿ-les-Roses, Avenue du Général Leclerc;;Route De Ploubalay 22100 Taden;;[5.05632399, 45.85350942];;FRS64EMB64112;FR*SOD*E*MB24*127*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.995311;47.3276243;;;; +;;;;;;;;FRS24PMB2410612;a0052293-b341-4373-bb92-86c5949562f8;Feignies-Empereur, rue Lempereur -3467;;199 Rue Marie Fougeray 50400 Granville;;[6.63671609, 48.8628938];;FRS64EMB644311;FR*SOD*E*MB24*127*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.37140483;48.454037;;;; +;;;;;;;;FRS24PMB2410611;e6c1f396-0451-4d51-8190-96321d815134;Warcq, 1 boulevard Lucien Pierquin - 3274;;ZA des Pierres, Rue De L'avenir 28130 Pierres;;[6.13395744, 49.3443027];;FRS64EMB64912;FR*SOD*E*MB24*126*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8988004;48.04035723;;;; +;;;;;;;;FRS24PMB2410712;3d958256-e732-4060-8f85-b8782bb660c3;Saint Brice Courcelles, 2 rue de la Croix Maurencienne - 2918;;Route De La Breze 48150 Meyrueis;;[6.907633251, 45.46952413];;FRS64EMB641011;FR*SOD*E*MB24*126*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.3899349;46.6752;;;; +;;;;;;;;FRS24PMB2410711;35329;Le Cateau Cambrésis, 43 avenue du Maréchal Leclerc Hauteclocque - 2665;;Avenue des plaines villes 22440 PLOUFRAGAN;;[4.995311, 44.381617];;FRS64EMB642011;FR*SOD*E*MB24*132*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.54375346;47.72983;;;; +;;;;;;;;FRS24PMB2410811;35328;Etables-S/-Mer, rue de la Roche Garde -3081;;420 Route Du Puy-Sainte-Réparade 13090 Aix-en-Provence;;[5.37140483, 49.18673477];;FRS64EMB641612;FR*SOD*E*MB24*138*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.415283;47.682443;;;; +;;;;;;;;FRS24PMB2410812;131652;Grayan et l'Hôpital, Route de l'Océan Golf des Pins;;1134 Rue Aubusson 61100 Saint-Georges-des-Groseillers;;[2.8988004, 45.72850221];;FRS64EMB642012;FR*SOD*E*MB24*133*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.75677393;45.85937477;;;; +;;;;;;;;FRS24PMB2410911;131655;HEM, rue du Général Leclerc;;42 Rue Nelson Mandela 14460 Colombelles;;[7.3899349, 48.73937715];;FRS64EMB641912;FR*SOD*E*MB24*133*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.4674687;48.96186;;;; +;;;;;;;;FRS24PMB2410912;50737;Jonzac, Stade Henry Chat-Locussol;;Rue Jean Monnet 67201 ECKBOLSHEIM;;[7.54375346, 48.16407101];;FRS64EMB641911;FR*SOD*E*MB24*134*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9895772;49.1419;;;; +;;;;;;;;FRS24PMB2411011;50659;Gare de Jonzac, Rue Alsace-Lorraine;;Rue de Metz 57130 JOUY AUX ARCHES;;[0.415283, 46.812308];;FRS64EMB641812;FR*SOD*E*MB24*134*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.99039906;49.1425;;;; +;;;;;;;;FRS24PMB2411012;50451;Les Antilles de Jonzac, Parc du Val de Seugne;;5 Rue De L'ancienne Gare 57100 Thionville;;[6.75677393, 45.54369187];;FRS64EMB641811;FR*SOD*E*MB24*135*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.76905147;46.421;;;; +;;;;;;;;FRS24PMB2411111;50452;Kerbach, Mairie;;Rue de la Ferme St Ladre 57155 MARLY;;[7.4674687, 48.1030083];;FRS64EMB641711;FR*SOD*E*MB24*135*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.73840148;43.4206;;;; +;;;;;;;;FRS24PMB2411112;131601;La Roche-Guyon, Hôpital;;Avenue Mounier 1200 Bruxelles 1200 Bruxelles;;[2.9895772, 50.4694764];;FRS64EMB641712;FR*SOD*E*MB24*136*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.687556;49.171395;;;; +;;;;;;;;FRS24PMB2411212;77565;Lorris, Place du Mail;;Route de Chaudes Aigues 48310 Fournels;;[2.99039906, 50.46822285];;FRS64EMB641611;FR*SOD*E*MB24*136*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.197884;48.895022;;;; +;;;;;;;;FRS24PMB2411211;77564;Bielle, Logis l'Ayguelade;;1134 Rue Herri Alde 64700 Biriatou;;[1.76905147, 50.91536135];;FRS64EMB641512;FR*SOD*E*MB24*137*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.6019298;45.834863;;;; +;;;;;;;;FRS24PMB2411312;131600;Mairie de Goetzenbruck, 8 Rue de la Harpe;;59 Route De La Cochette 74410 Saint-Eustache;;[5.73840148, 48.36185234];;FRS64EMB641111;FR*SOD*E*MB24*137*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.546899;46.2026;;;; +;;;;;;;;FRS24PMB248411;57516;Bourg-en-Bresse, Promenade du Bastion;;495 Rue Pasteur 39220 Les Rousses;;[4.687556, 46.907309];;FRS64EMB641511;FR*SOD*E*MB24*150*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.6768422;46.2048;;;; +;;;;;;;;FRS24PMB248512;49606;Bourg-en-Bresse, Pkg Champs de Mars;;6 Esplanade De La Liberté 57700 Hayange;;[7.197884, 43.70389];;FRS64EMB641412;FR*SOD*E*MB24*121*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.54762;49.17113712;;;; +;;;;;;;;FRS24PMB248511;50721;Bourg-en-Bresse, Champ de Foire;;Avenue de l'Europe 57300 MONDELANGE;;[0.6019298, 47.3276243];;FRS64EMB641411;FR*SOD*E*MB24*131*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.38009;48.95011985;;;; +;;;;;;;;FRS24PMB2410012;50722;Bourg-en-Bresse, Place Joubert;;37 Avenue Du Général De Gaulle 08110 Carignan;;[1.546899, 48.454037];;FRS64EMB641311;FR*SOD*E*MB24*125*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.637139;47.93281674;;;; +;;;;;;;;FRS24PMB249411;f8c20a72-b029-4484-a3ac-3158a246b3f0;Charleval, Mairie;;Avenue Saintignon 54400 LONGWY;;[-1.6768422, 48.04035723];;FRS64EMB641312;FR*SOD*E*MB24*125*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.50691834;48.08614603;;;; +;;;;;;;;FRS24PMB249412;142950;Corny, Rue Saint-Martin;;Avenue Jacques Simon 51470 SAINT MEMMIE;;[5.54762, 46.6752];;FRS64EMB641211;FR*SOD*E*MB24*124*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.183034;45.55649945;;;; +;;;;;;;;FRS24PMB249512;142953;Couzeix, Mairie;;1 Rue des Sorbiers 55700 STENAY;;[0.38009, 47.72983];;FRS64EMB641212;FR*SOD*E*MB24*124*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12119;48.27342;;;; +;;;;;;;;FRS24PMB249511;142947;Dollon, Mairie;;Avenue de Thionville 57140 WOIPPY;;[2.637139, 47.682443];;FRS64EMB641112;FR*SOD*E*MB24*123*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12267;50.19622564;;;; +;;;;;;;;FRS24PMB249612;142948;Montagny, Mairie;;14 rue gambetta 54150 BRIEY;;[3.50691834, 45.85937477];;FRS64EMB644312;FR*SOD*E*MB24*123*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.860415;48.714993;;;; +;;;;;;;;FRS24PMB249611;55103;Montluel, Avenue Pierre Cormoreche;;1283 avenue de Paris 50000 Saint-Lô;;[6.183034, 48.96186];;FRS64EMB64312;FR*SOD*E*MB24*122*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.35698;48.52366092;;;; +;;;;;;;;FRS24PMB249711;125090;Sotzeling, Mairie;;Les Chênes 03290 Dompierre-sur-Besbre;;[6.12119, 49.1419];;FRS64EMB644412;FR*SOD*E*MB24*122*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.96966;48.757675;;;; +;;;;;;;;FRS24PMB249712;125091;Terville, Mairie;;35 Avenue du Général Leclerc 10450 Bréviandes;;[6.12267, 49.1425];;FRS64EMB647012;FR*SOD*E*MB24*121*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.153331;48.761441;;;; +;;;;;;;;FRS24PMB2411412;55104;Tignes, Mairie;;Hôtel Savana Réserve 03290 Dompierre-sur-Besbre;;[0.860415, 46.421];;FRS64EMB647412;FR*SOD*E*MB24*120*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.999415;48.956825;;;; +;;;;;;;;FRS24PMB249811;126576;valréas, Rue de Chasse Coquins;;Route de Saleilles 66200 Alénya;;[5.35698, 43.4206];;FRS64EMB647411;FR*SOD*E*MB24*162*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2246;49.037849;;;; +;;;;;;;;FRS24PMB249812;126575;Bras-sur-Meuse, Maison de l'Agriculture;;818 Grande Rue 73440 Les Belleville;;[5.96966, 49.171395];;FRS64EMB647312;FR*SOD*E*MB24*120*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.22804;48.547335;;;; +;;;;;;;;FRS24PMB249912;225f248f-83e1-4ecd-898a-705d94eb7208;Nébouzat, Maisons Lassalas;;35 Route nationale 62580 Gavrelle;;[7.153331, 48.895022];;FRS64EMB647311;FR*SOD*E*MB24*119*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.96995936;48.687488;;;; +;;;;;;;;FRS24PMB2410111;02af2893-256f-4124-8d58-c728dc38f720;Monswiller, Rue Dreispitz;;Route Du Sancy 63240 Mont-Dore;;[4.999415, 45.834863];;FRS64EMB647211;FR*SOD*E*MB24*119*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.12950967;48.70545;;;; +;;;;;;;;FRS24PMB249911;277fec15-9af5-4f6b-b791-8f0a0b536ae2;Marckolsheim, Parking du marché couvert;;595 Chemin De L'estagnol 83260 La Crau;;[5.2246, 46.2026];;FRS64EMB647212;FR*SOD*E*MB24*118*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.21945835;48.678483;;;; +;;;;;;;;FRS24PMB2410011;aad5992e-ec2a-488b-95f6-47523dc8ed89;Scorbé-Clairvaux, Place de la Mairie;;60 Boulevard Carnot 78110 Le Vésinet;;[5.22804, 46.2048];;FRS64EMB647111;FR*SOD*E*MB24*118*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.34592938;50.413734;;;; +;;;;;;;;FRS24PMB248612;3b08bff7-e3d0-4c9a-b1d8-6c6b8a55e874;Peisey-Nancroix, Place de Roscanvel;;Rue Descartes 02000 Chambry;;[5.96995936, 49.17113712];;FRS64EMB647112;FR*SOD*E*MB24*117*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.05129;48.509481;;;; +;;;;;;;;FRS24PMB249212;f8f2a346-5d38-4564-8b12-ed6b28fd2c1b;Mairie de Muntzenheim, Impasse du Wasen;;Zone industrielle Du Belloy - N1 95560 Montsoult;;[3.12950967, 48.95011985];;FRS64EMB647011;FR*SOD*E*MB24*117*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.65184382;48.951953;;;; +;;;;;;;;FRS24PMB249211;63713;Oignies, Parking du Service Technique;;63 Route De Kintzheim 67600 Sélestat;;[-4.21945835, 47.93281674];;FRS64EMB647511;FR*SOD*E*MB24*116*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.396767;48.778438;;;; +;;;;;;;;FRS24PMB2410112;63712;Oignies, Place de l'Eglise;;Cours de la Cure Saint-Martin de Belleville 73440 Les Belleville;;[6.34592938, 48.08614603];;FRS64EMB646912;FR*SOD*E*MB24*116*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5053573;48.955565;;;; +;;;;;;;;FRS24PMB248611;49702;Route d'Escalles , Peuplingues;;126 Rue Du Salève 01630 Saint-Genis-Pouilly;;[6.05129, 49.0258];;FRS64EMB646911;FR*SOD*E*MB24*115*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.573854;48.423309;;;; +;;;;;;;;FRS24PMB249111;48423;Rollainville, Mairie;;1 Rue Du Muret 62179 Wissant;;[6.65184382, 45.55649945];;FRS64EMB646812;FR*SOD*E*MB24*76*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.56127601;48.86813;;;; +;;;;;;;;FRS24PMB249112;48422;Santenay, Voirie;;Lieu-dit, Bigose 48200 Rimeize;;[6.396767, 48.27342];;FRS64EMB646811;FR*SOD*E*MB24*162*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4841;48.816241;;;; +;;;;;;;;FRS24PMB249012;64646;Nice, Avenue Sainte Marguerite;;120 Boulevard Carnot 78110 Le Vésinet;;[3.5053573, 50.19622564];;FRS64EMB646712;FR*SOD*E*MB24*151*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.447902;48.650183;;;; +;;;;;;;;FRS24PMB249011;64645;Puteaux, Parking;;15 rue Alexandre Dumas 78110 Le Vésinet;;[2.573854, 48.714993];;FRS64EMB646711;FR*SOD*E*MB24*155*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.914649;48.563436;;;; +;;;;;;;;FRS24PMB248911;80464;Nogent-le-Phaye, LS Group Chartres;;1500 Rue Du 8 Mai 80580 Eaucourt-sur-Somme;;[2.56127601, 48.52366092];;FRS64EMB646612;FR*SOD*E*MB24*151*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.394425;48.35348355;;;; +;;;;;;;;FRS24PMB248711;80465;Noyal-Châtillon-sur-Seiche, Lysadis;;495 D4 42190 Charlieu;;[2.4841, 48.757675];;FRS64EMB646611;FR*SOD*E*MB24*152*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.649431;48.539965;;;; +;;;;;;;;FRS24PMB248912;128989;Lons-le-Saulnier, Start'N Move;;LE REVERDI Les Villages Clubs du Soleil, D44 83120 Le Plan-de-la-Tour;;[2.447902, 48.761441];;FRS64EMB647512;FR*SOD*E*MB24*152*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.433395;48.757105;;;; +;;;;;;;;FRS24PMB248812;59911;Luceau, Logis le Moulin Calme;;2 route du Petit Paradis 88530 Le Tholy;;[2.914649, 48.956825];;FRS64EMB647612;FR*SOD*E*MB24*153*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.345496;48.591026;;;; +;;;;;;;;FRS24PMB248811;50784;Gien, Quai de Nice;;42 Grande Rue 88340 Le Val-d'Ajol;;[3.394425, 49.037849];;FRS64EMB648711;FR*SOD*E*MB24*153*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.528645;48.561171;;;; +;;;;;;;;FRS24PMB248712;ZQ91ECZ6OH;Thiers , Rue Du Champ Du bail;;Rue du Bailly ZAE CAP NORD 21000 Dijon;;[2.649431, 48.547335];;FRS64EMB648211;FR*SOD*E*MB24*154*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.558648;48.803194;;;; +;;;;;;;;FRS24PMB2411311;TNSVNN;Louvigny, Rue Bazelaire;;1 rue Isaac Newtown ZAC Chanteloup 93600 Aulnay-Sous-Bois;;[2.433395, 48.687488];;FRS64EMB648611;FR*SOD*E*MB24*154*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.712552;48.062142;;;; +;;;;;;;;FRS24PMB2413112;KWJ35E2BFJ;Lorry-lès-Metz, Mairie;;83 Route Des Lavandières 83230 Bormes-les-Mimosas;;[2.345496, 48.70545];;FRS64EMB648511;FR*SOD*E*MB24*155*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.667979;43.939345;;;; +;;;;;;;;FRS24PMB2411411;clairoix;Lorry-lès-Metz, Ateliers Municipaux;;Rue De Guingamp 22140 Bégard;;[2.528645, 48.678483];;FRS64EMB648512;FR*SOD*E*MB24*156*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.586075;43.67346;;;; +;;;;;;;;FRS24PMB2411512;EAQLQS;Montmorillon, avenue de l'Europe;;Rue Couloumine, ZA Actipole du Mas Gaffard 66680 Canohès;;[3.558648, 50.413734];;FRS64EMB648411;FR*SOD*E*MB24*161*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.140941;44.045126;;;; +;;;;;;;;FRS24PMB2414111;RCMPVP;MY Palmeraie Plan de Campagne;;Zone de Fontanille 87230 Chalus;;[3.712552, 48.509481];;FRS64EMB648412;FR*SOD*E*MB24*156*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.771257;48.091598;;;; +;;;;;;;;FRS24PMB2414112;RWQFMMRWHU;Batilly, Mairie;;2 Rue du Servent Zae Les Tannes Basses 34800 Clermont-l'Hérault;;[2.667979, 48.951953];;FRS64EMB648311;FR*SOD*E*MB24*157*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.676408;47.271713;;;; +;;;;;;;;FRS24PMB2414212;LUHPQG;Berg, Rue Principale;;Route de Saint-Cyprien 66200 Latour-Bas-Elne;;[2.586075, 48.778438];;FRS64EMB648312;FR*SOD*E*MB24*157*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.53242;47.759701;;;; +;;;;;;;;FRS24PMB2414211;GFWJEG;Beynost, Place de la Dombes;;24B rue richard 21200 Beaune;;[3.140941, 48.955565];;FRS64EMB648212;FR*SOD*E*MB24*158*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.398765;47.299634;;;; +;;;;;;;;FRS24PMB2414311;KJKQVT;Bourg-en-Bresse, Préfecture;;11 Rue Verte 63118 Cébazat;;[2.771257, 48.423309];;FRS64EMB648112;FR*SOD*E*MB24*158*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.631308;48.415155;;;; +;;;;;;;;FRS24PMB2414312;ERHZAA;Bourg-en-Bresse, Pkg des Bons Enfants;;30 avenue du Général Leclerc 38200 Vienne;;[2.676408, 48.86813];;FRS64EMB647611;FR*SOD*E*MB24*159*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.35587164;48.211137;;;; +;;;;;;;;FRS24PMB2414412;VFKUJC;La Ferté-sous-Jouarre , Place de l'Hôtel de Ville;;172 Boulevard Vermorel 69400 Villefranche-sur-Saône;;[2.53242, 48.816241];;FRS64EMB648111;FR*SOD*E*MB24*159*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.678413;48.026902;;;; +;;;;;;;;FRS24PMB2414411;SMBKVE;Ploneour Lanvern, Kerhuel;;Z.A. Des Uchanes, Route de Sillans 83630 Aups;;[2.398765, 48.650183];;FRS64EMB648012;FR*SOD*E*MB24*160*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.425522;44.044928;;;; +;;;;;;;;FRS24PMB2414512;RYTRGT;Uzemain, Rue de la Mairie;;1 Rue Guy De Jean 58220 Donzy;;[2.631308, 48.563436];;FRS64EMB648011;FR*SOD*E*MB24*160*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.477486;43.559483;;;; +;;;;;;;;FRS24PMB2414511;NPKDFX;Novéant, Rue Foch;;526 Avenue Pierre Brossolette 83300 Draguignan;;[0.35587164, 48.35348355];;FRS64EMB647912;FR*SOD*E*MB24*161*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.015265;46.89240915;;;; +;;;;;;;;FRS24PMB2414611;VCFAXA;Aime-La-Plagne, avenue de Tarentaise;;Avenue De Verdun 47520 Le Passage;;[2.678413, 48.539965];;FRS64EMB647812;FR*SOD*E*MB24*77*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.087051;47.134593;;;; +;;;;;;;;FRS24PMB2414612;OAKCAJ6OZP;Igney, Mairie;;Rue Du Maréchal Foch 27700 Les Andelys;;[2.425522, 48.757105];;FRS64EMB647811;FR*SOD*E*MB24*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.333352;47.084605;;;; +;;;;;;;;FRS24PMB2414711;JZHDPB;Solesmes, rue du Général de Gaulle;;1a Rue Des Tanguiers 50430 Lessay;;[2.477486, 48.591026];;FRS64EMB647711;FR*SOD*E*MB24*76*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.573146;47.278754;;;; +;;;;;;;;FRS24PMB2414712;LLHYXQ9TJ10X4F;Santeny-Gayen, Avenue de la Butte Gayen -3629;;ZAC des Crêts 74500 Lugrin;;[3.015265, 48.561171];;FRS64EMB647712;FR*SOD*E*MB24*31*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.913914;46.589936;;;; +;;;;;;;;FRS24PMB2414911;KVP217VGA5;Pringy, rue de Melun;;15 Rue De L'aguyane 07200 Aubenas;;[3.087051, 48.803194];;FRS64EMB646511;FR*SOD*E*MB24*26*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.025788;47.793541;;;; +;;;;;;;;FRS24PMB2414912;MSPQBQ;Bonneuil-Sur-Marne-Garry, Avenue Robert Hottinguer -3901;;ZA Le Villard 05600 Guillestre;;[1.333352, 48.062142];;FRS64EMB646512;FR*SOD*E*MB24*26*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.144633;47.702978;;;; +;;;;;;;;FRS24PMB2415012;BYSSRF;Valenton-Duranton, Avenue Julien Duranton -3627;;ZAC Des Magots, Avenue des Aulnes 59253 La Gorgue;;[4.573146, 43.939345];;FRS64EMB646412;FR*SOD*E*MB24*27*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.06467;48.85731;;;; +;;;;;;;;FRS24PMB2414011;DRWCTS;Meaux-Victoire, avenue de la Victoire -3276;;43 Avenue Robert Schuman 94150 Rungis;;[3.913914, 43.67346];;FRS64EMB644911;FR*SOD*E*MB24*27*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.878637;48.551888;;;; +;;;;;;;;FRS24PMB2414012;LNEUNA;Château Thierry, 37 rue de la Prairie - 3903;;1 rue du Café 93210 Saint-Denis;;[5.025788, 44.045126];;FRS64EMB645311;FR*SOD*E*MB24*28*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.801116;43.66580333;;;; +;;;;;;;;FRS24PMB2413811;OMEDAZRPPK;Melun, 36 Avenue du General Patton - 4146;;12 Avenue Des Chemins De Fer Industriels 93300 Aubervilliers;;[5.144633, 48.091598];;FRS64EMB645211;FR*SOD*E*MB24*28*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.475283;46.00301708;;;; +;;;;;;;;FRS24PMB2413211;YRFTXHDZQJ;Draveil-Waldeck-Rouseau, 50 rue waldeck rousseau -4113;;24 rue de Villeneuve 94150 Rungis;;[-0.06467, 47.271713];;FRS64EMB645212;FR*SOD*E*MB24*29*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.056725;45.89858412;;;; +;;;;;;;;FRS24PMB2413012;LSDAFX;Morangis, Avenue Charles de Gaulle -3204;;20 rue Saarinen 94150 Rungis;;[0.878637, 47.759701];;FRS64EMB645112;FR*SOD*E*MB24*29*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.555006;46.26329433;;;; +;;;;;;;;FRS24PMB2413011;FMWS019EB5;Boussy-Saint-Antoine;;43 avenue Robert Schumann 94150 Rungis;;[0.801116, 47.299634];;FRS64EMB645111;FR*SOD*E*MB24*30*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.025398;45.12885668;;;; +;;;;;;;;FRS24PMB2412911;HXH8KMZAIL;Escautpont, rue Jean Jaurès -3062;;2 rue des Céréales 93210 Saint-Denis;;[-4.475283, 48.415155];;FRS64EMB645011;FR*SOD*E*MB24*30*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.078401;43.67212823;;;; +;;;;;;;;FRS24PMB2412912;PMMYUQ;Lidl, Romilly-sur-Seine;;Rue du Café 93210 Saint-Denis;;[-4.056725, 48.211137];;FRS64EMB645012;FR*SOD*E*MB24*31*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.56939099;43.25549446;;;; +;;;;;;;;FRS24PMB2412812;G2PBVFTJNU;Claye-Souilly-Sarron, Rue Ernest Sarron -3456;;53 Avenue Victor Hugo 93300 Aubervilliers;;[-4.555006, 48.026902];;FRS64EMB644912;FR*SOD*E*MB24*32*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.983408;43.462738;;;; +;;;;;;;;FRS24PMB2412811;DCZTSR0FDO;Pontault-Combault-Chênes, chemin des quatres chenes -3672;;12 Avenue des Chemins de Fer Industriels 93300 Aubervilliers;;[5.025398, 44.044928];;FRS64EMB644812;FR*SOD*E*MB24*25*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.383981;43.55014998;;;; +;;;;;;;;FRS24PMB2412711;HJTHIBWDZK;Reuil-En-Brie-1945, Rue du 8 Mai 1945 -3742;;113 rue des Solets 94150 Rungis;;[4.078401, 43.559483];;FRS64EMB646411;FR*SOD*E*MB24*32*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.16849;45.64408191;;;; +;;;;;;;;FRS24PMB2412712;W3Q7KKPBUP;Samoreau, rue de la Bernache -3202;;Avenue du District 57380 Faulquemont;;[2.56939099, 46.89240915];;FRS64EMB644811;FR*SOD*E*MB24*33*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.528757;45.83682032;;;; +;;;;;;;;FRS24PMB2412612;SWOWXFTE8O;St-Thibault-Vi, Avenue de la Courtillère -2685;;5 Rue Jean-Pierre Plicque 77124 Villenoy;;[0.983408, 47.134593];;FRS64EMB644712;FR*SOD*E*MB24*33*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.379674;47.11048942;;;; +;;;;;;;;FRS24PMB2412611;CLXN7QZI6H;Champigny-Bernau, rue de Bernau -3567;;11-19 rue des Solets 94150 Rungis;;[2.383981, 47.084605];;FRS64EMB644711;FR*SOD*E*MB24*34*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.513958;49.649677;;;; +;;;;;;;;FRS24PMB2413212;WLYDJRRTX4;Ris-Orangis-Langevin, avenue Paul Langevin -3164;;25 avenue Robert Schumann 94150 Rungis;;[0.16849, 47.278754];;FRS64EMB644612;FR*SOD*E*MB24*34*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.877493;50.392154;;;; +;;;;;;;;FRS24PMB2413812;LJENBZ;Vert-St-Denis-Rn-6, route nationale 6 -3152;;4 Boulevard Du Maréchal Foch 93160 Noisy-le-Grand;;[1.528757, 46.589936];;FRS64EMB644611;FR*SOD*E*MB24*35*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.724508;49.221375;;;; +;;;;;;;;FRS24PMB2413312;fenetrpark;Saint Longis, Rue Saint Jean;;Parc d'Activités Bel Air 22600 Saint-Caradec;;[2.379674, 47.793541];;FRS64EMB644512;FR*SOD*E*MB24*35*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.14345933;43.11617585;;;; +;;;;;;;;FRS24PMB2413311;sarrepide;Vaux-Le-Penil-Montereau, route de Montereau -3568;;Alpha Parc Ouest, route de Nantes 79300 Bressuire;;[1.513958, 47.702978];;FRS64EMB644511;FR*SOD*E*MB24*36*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.67457696;45.274004;;;; +;;;;;;;;FRS24PMB2413411;CHPBCT;Choisy-Le-Roi-Villeneuve, Avenue de Villeneuve-Saint-Georges -3348;;Rue André Raimbault 45130 Baule;;[-0.877493, 48.85731];;FRS64EMB644411;FR*SOD*E*MB24*36*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.91774543;45.393022;;;; +;;;;;;;;FRS24PMB2413412;sarrbcovoit;Corbeil-Essonnes-John-Kennedy, boulevard John Kennedy -3054;;Parc D’Activites De La Vallee De L’Escaut 59264 Onnaing;;[-1.724508, 48.551888];;FRS64EMB645312;FR*SOD*E*MB24*37*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.00531356;45.051415;;;; +;;;;;;;;FRS24PMB2413512;MCKKXL;Nangis, avenue du Général de Gaulle -3016;;Les Bonnes 43410 Lempdes-sur-Allagnon;;[7.14345933, 43.66580333];;FRS64EMB645411;FR*SOD*E*MB24*37*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.3266343;45.157641;;;; +;;;;;;;;FRS24PMB2413511;FDDVWW;Coulommiers-Rue-De-L'Orgeval, Rue de l'Orgeval -3758;;53 Rue De La République 54140 Jarville-la-Malgrange;;[0.67457696, 46.00301708];;FRS64EMB645412;FR*SOD*E*MB24*25*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.20285973;45.393392;;;; +;;;;;;;;FRS24PMB2413612;VVUDTV;Chateaudun, 9 Route de Blois - 4091;;77 Rue De La République 54140 Jarville-la-Malgrange;;[0.91774543, 45.89858412];;FRS64EMB645511;FR*SOD*E*MB24*24*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.53253307;45.87740129;;;; +;;;;;;;;FRS24PMB2413611;YXCRHH;Remoulins, Avenue Geoffroy Perret - 2938;;49 Rue De La République 54140 Jarville-la-Malgrange;;[1.00531356, 46.26329433];;FRS64EMB646312;FR*SOD*E*MB24*38*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.632829;45.53882333;;;; +;;;;;;;;FRS24PMB2413711;NUQVEPZ8AW;Teyran, 1550 Avenue de Montpellier;;Ploërmel 56400 ploërmel;;[1.3266343, 45.12885668];;FRS64EMB646311;FR*SOD*E*MB24*17*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.94866176;45.341785;;;; +;;;;;;;;FRS24PMB2413712;Semchahmd;Carpentras, 310 Chemin de Monteux;;Z.A. le Barderff, 56500 Moréac 56500 Moréac;;[7.20285973, 43.67212823];;FRS64EMB646212;FR*SOD*E*MB24*12*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.13671516;45.530129;;;; +;;;;;;;;FRS24PMB2415011;IXBHNZDQGH;Chaumont-Brottes, Rue des Brottes -3910;;41 rue Claude Louis Berthollet Pontivy 56300;;[6.53253307, 43.25549446];;FRS64EMB646211;FR*SOD*E*MB24*12*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.13335366;45.186638;;;; +;;;;;;;;FRS24PMB2412112;LPYWW8B6QN;Saumur-Rouen, Rue de Rouen -3590;;Zac Les Quemenes 54720 Lexy;;[6.632829, 43.462738];;FRS64EMB646112;FR*SOD*E*MB24*13*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2535804;45.753397;;;; +;;;;;;;;FRS24PMB2413111;ESOO1VY323;Montoire sur Le Loir, 22 avenue de la Paix;;485 Avenue De Lossburg 69480 Anse;;[6.94866176, 43.55014998];;FRS64EMB646111;FR*SOD*E*MB24*13*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.276512;46.069647;;;; +;;;;;;;;FRS24PMB2412512;HZPNJOORZL;Esvres Sur Indre, 1 allée Dion Bouton - ZI St Malo - 2782;;86 Route De Lyon 71000 Mâcon;;[0.13671516, 45.64408191];;FRS64EMB646012;FR*SOD*E*MB24*14*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.477506;48.735403;;;; +;;;;;;;;FRS24PMB2412511;QQFB82S3YL;Brest-Paulet, Général Paulet -3588;;24 Route De Béthune 62223 Sainte-Catherine;;[-1.13335366, 45.83682032];;FRS64EMB646011;FR*SOD*E*MB24*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.016758;48.188886;;;; +;;;;;;;;FRS24PMB2412412;S3YZBNLWII;Chateaulin-Roz, ZAC Penn Ar Roz -3596;;69 Avenue De Paris 51000 Châlons-en-Champagne;;[5.2535804, 47.11048942];;FRS64EMB645912;FR*SOD*E*MB24*15*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.85536994;49.110885;;;; +;;;;;;;;FRS24PMB2412411;QZFN3KUU9F;Audierne-Kerivoas, Lieu-dit Kerivoas -3051;;75 Rue Pontoile 02100 Saint-Quentin;;[3.276512, 49.649677];;FRS64EMB645911;FR*SOD*E*MB24*15*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.883947;45.49638608;;;; +;;;;;;;;FRS24PMB2412311;WAHN3XCBEO;La Grande Motte, Avenue Robert Fages;;51 Rue De La République 54140 Jarville-la-Malgrange;;[3.477506, 50.392154];;FRS64EMB645812;FR*SOD*E*MB24*16*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.248697;44.961164;;;; +;;;;;;;;FRS24PMB2412312;A2NLTYQ2Z5;Dun-Sur-Auron, 28 Route de Bourges;;La Maison Blanche - RN6 71570 Romanèche-Thorins;;[4.016758, 49.221375];;FRS64EMB645811;FR*SOD*E*MB24*16*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.081907;45.341624;;;; +;;;;;;;;FRS24PMB2412211;RETLG65TD9;Loches-Route-De-Vauzelles, Route de Vauzelles -3644;;1859 A Route de Lyon 07430 Davézieux;;[5.85536994, 43.11617585];;FRS64EMB645711;FR*SOD*E*MB24*17*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.708527;46.395105;;;; +;;;;;;;;FRS24PMB2412212;MVI0NG2BIC;Bourges-Avenir, Boulevard de l'Avenir -3636;;Rue de Fabreges ZA du Pont Long II 64121 Serres-Castet;;[5.883947, 45.274004];;FRS64EMB645712;FR*SOD*E*MB24*75*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.422381;45.269494;;;; +;;;;;;;;FRS24PMB2412111;D7MMXLNJZN;Bourgueil-Causeret, Avenue Jean Causeret -3721;;12 avenue Nicolas Lombard 06460 Saint-Vallier-de-Thiey;;[5.248697, 45.393022];;FRS64EMB645612;FR*SOD*E*MB24*24*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.14189899;46.06298096;;;; +;;;;;;;;FRS24PMB2412011;ESNTDAUVON;Argenton-Sur-Creuse, Rue Eugène Delacroix -3347;;1 allée le Clos Pasquier 78124 Mareil-sur-Mauldre;;[5.081907, 45.051415];;FRS64EMB645611;FR*SOD*E*MB24*18*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.98943438;45.52731397;;;; +;;;;;;;;FRS24PMB2416212;Speedyreusuz;Bonnee, Route de Sully -3012;;119 Boulevard De Saint-Loup 13010 Marseille;;[5.708527, 45.157641];;FRS64EMB645512;FR*SOD*E*MB24*19*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.064734;44.902444;;;; +;;;;;;;;FRS24PMB2412012;TFJKXAUZJE;Mer-Orleans, 19 route d'Orléans -4039;;37 Rue Gaston De Flotte 13012 Marseille;;[5.422381, 45.393392];;FRS64EMB648612;FR*SOD*E*MB24*19*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.689769;49.285782;;;; +;;;;;;;;FRS24PMB2411911;OGOEOW5UKX;Vire-Caen, rue de Caen -3658;;148 Rue Des Chalets 01630 Saint-Genis-Pouilly;;[6.14189899, 45.87740129];;FRS64EMB647911;FR*SOD*E*MB24*20*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.761574;48.924759;;;; +;;;;;;;;FRS24PMB2411912;AK6LDZLLUO;Dol-De-Bretagne-Baie, Rue de la Rouelle - Avenue de la Baie -3842;;213 Boulevard De Sainte-Marguerite 13009 Marseille;;[5.98943438, 45.53882333];;FRS64EMB648712;FR*SOD*E*MB24*20*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.27761;49.116592;;;; +;;;;;;;;FRS24PMB2411812;LI6JTMDSG0;Cagnes sur Mer, avenue de Verdun;;2 Rue Émile Dourdet 87400 Sauviat-sur-Vige;;[5.064734, 45.341785];;FRS64EMB6411411;FR*SOD*E*MB24*21*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.308181;49.19585;;;; +;;;;;;;;FRS24PMB2411811;RB8VUBDF3E;Confolens, avenue du Général de Gaulle;;25 Avenue du Maréchal Juin 01000 Bourg-en-Bresse;;[5.689769, 45.530129];;FRS64EMB6411812;FR*SOD*E*MB24*21*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.574797;48.920078;;;; +;;;;;;;;FRS24PMB2411711;QZTHJZ;Saint-Junien, avenue du Général de Gaulle;;241 Avenue John Fitzgerald Kennedy 62000 Arras;;[5.761574, 45.186638];;FRS64EMB6411711;FR*SOD*E*MB24*22*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.171991;49.182022;;;; +;;;;;;;;FRS24PMB2411712;FXARSCAO92;Andilly, Les Quatres Quartiers;;4 Voie Romaine 51100 Heutrégiville;;[6.27761, 45.753397];;FRS64EMB6411712;FR*SOD*E*MB24*22*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.132466;49.178341;;;; +;;;;;;;;FRS24PMB2411612;FCF3ZP09ZM;Terrasson, Les Fauries;;Route De Toulouse 81000 Albi;;[6.308181, 46.069647];;FRS64EMB648811;FR*SOD*E*MB24*23*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.05098444;49.172173;;;; +;;;;;;;;FRS24PMB2411611;PMNDERSS7U;Nice, route de Grenoble;;43 Rue De La République 54140 Jarville-la-Malgrange;;[-0.574797, 48.735403];;FRS64EMB6411611;FR*SOD*E*MB24*23*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.884542;49.136806;;;; +;;;;;;;;FRS24PMB2411511;MJNXCMKMNM;Cogolin, rue Carnot;;41 Rue De La République 54140 Jarville-la-Malgrange;;[-2.171991, 48.188886];;FRS64EMB6411512;FR*SOD*E*MB24*38*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.34937411;49.302155;;;; +;;;;;;;;FRS24PMB247611;GMHWFA6XWU;Roquebrune Sur Argens, 2109 Route Nationale 7 / Quartier - 2956;;Grande Rue 01580 Izernore;;[-1.132466, 49.110885];;FRS64EMB6411511;FR*SOD*E*MB24*39*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.575313;49.219543;;;; +;;;;;;;;FRS24PMB2416211;BVLDH0AW95;Mandelieu la Napoule, avenue Gaston de Fontmichel;;11 rue de Cernay 68500 Issenheim;;[6.05098444, 45.49638608];;FRS64EMB6411412;FR*SOD*E*MB24*11*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.366808;49.348248;;;; +;;;;;;;;FRS24PMB2415111;F5YXGNA3QT;Angoulême, route de Bordeaux;;3a Rue De La Diligence 67600 Sélestat;;[4.884542, 44.961164];;FRS64EMB6411311;FR*SOD*E*MB24*60*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5494817;49.277843;;;; +;;;;;;;;FRS24PMB2415522;UWNJODKKG1;Boucefranc-le-Chapus, ZAC du Riveau;;Rue du Luxembourg 57370 Phalsbourg;;[5.34937411, 45.341624];;FRS64EMB6411912;FR*SOD*E*MB24*54*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.5930157;49.053543;;;; +;;;;;;;;FRS24PMB2415112;MGREFT;Béziers, Route de Maureilhan;;Rue Gustave Eiffel 43100 Brioude;;[6.575313, 46.395105];;FRS64EMB6411312;FR*SOD*E*MB24*54*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.009508;49.137093;;;; +;;;;;;;;FRS24PMB2415212;REGTQN;Condren-Chauny, route de Chauny -3207;;Route De Conliège 39570 Perrigny;;[6.366808, 45.269494];;FRS64EMB6411212;FR*SOD*E*MB24*55*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.186472;49.277668;;;; +;;;;;;;;FRS24PMB2415211;KFCMGC;Raismes-Jaures, Rue Jean Jaures -3174;;Avenue de L'Europe 63370 LEMPDES;;[6.5494817, 46.06298096];;FRS64EMB6411211;FR*SOD*E*MB24*55*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.073741;49.34211;;;; +;;;;;;;;FRS24PMB2415321;LDO26AVCKK;Reims-Juin, avenue du Maréchal Juin -3306;;Avenue Du Maréchal De Lattre De Tassigny 63150 La Bourboule;;[5.5930157, 45.52731397];;FRS64EMB6411112;FR*SOD*E*MB24*56*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.167836;49.287991;;;; +;;;;;;;;FRS24PMB2415322;KD6VCY4UHY;La Seyne sur Mer, Boulevard de l'Europe;;Route De Clermont 63800 Le Cendre;;[5.009508, 44.902444];;FRS64EMB6411111;FR*SOD*E*MB24*56*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.357187;48.96925;;;; +;;;;;;;;FRS24PMB2415421;BNCC1SH0T1;Crolles-Croizat, 14 rue du moulin -3615;;20 Avenue Jean De Chalon-Arlay 39140 Bletterans;;[0.186472, 49.285782];;FRS64EMB6411011;FR*SOD*E*MB24*58*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.768018;49.198738;;;; +;;;;;;;;FRS24PMB2415422;KNEHR4REYA;La Cote Saint André, Avenue Aristide Briand;;Rue Denis Papin 89000 Auxerre;;[-0.073741, 48.924759];;FRS64EMB6411012;FR*SOD*E*MB24*58*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.224748;49.14109;;;; +;;;;;;;;FRS24PMB2415521;VDSBUE;Romans-Sur-Isere-Allobroges, 8 Avenue des Allobroges -3339;;15 Rue René Cassin 71380 Saint-Marcel;;[-0.167836, 49.116592];;FRS64EMB6410912;FR*SOD*E*MB24*59*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.317765;49.288376;;;; +;;;;;;;;FRS24PMB2415622;ECFJGR;Echirolles, 10 Cours Jean Jaurès;;Rue De Charlieu 42300 Roanne;;[0.357187, 49.19585];;FRS64EMB6411811;FR*SOD*E*MB24*59*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.318416;49.23476;;;; +;;;;;;;;FRS24PMB2416111;NOGCX5IK1U;Le Grand-Lemps, 337 Av. de l'Europe;;12 Rue Marcel Sembat 21000 Dijon;;[-0.768018, 48.920078];;FRS64EMB6411911;FR*SOD*E*MB24*60*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.207578;49.278812;;;; +;;;;;;;;FRS24PMB2415621;SAYTBZ;Sevrier, 508 Route d'Albertville;;2 Avenue Pierre Mendès-France 63500 Issoire;;[0.224748, 49.182022];;FRS64EMB6410812;FR*SOD*E*MB24*61*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.314508;48.872952;;;; +;;;;;;;;FRS24PMB2415722;choisyaubaclec;Saint-Jeoire-Prieuré, Route Nationale 6 Av Saint Just;;1 Rue Pablo Picasso 77380 Combs-la-Ville;;[-0.317765, 49.178341];;FRS64EMB6412511;FR*SOD*E*MB24*53*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.789644;49.020981;;;; +;;;;;;;;FRS24PMB2415721;RQBMXR;Saint Barthelemy, 1304 Route de Beaurepaire – 3542;;Boulevard Du Champ Bossu 71600 Paray-le-Monial;;[-0.318416, 49.172173];;FRS64EMB6412912;FR*SOD*E*MB24*61*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.185999;49.071609;;;; +;;;;;;;;FRS24PMB2415811;FJJSHD;Pont-De-Beauvoisin-Baronnie, 43 impasse Etienne LAUBIN -3641;;49 Avenue Léo Lagrange 63300 Thiers;;[0.207578, 49.136806];;FRS64EMB6412911;FR*SOD*E*MB24*62*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.568107;48.965939;;;; +;;;;;;;;FRS24PMB2415812;GCMJCV;Saint Martin D'Heres, 17 Rue des Glairons - 3562;;25 Route D'autun 58120 Château-Chinon;;[-0.314508, 49.302155];;FRS64EMB6412811;FR*SOD*E*MB24*62*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.297287;49.195198;;;; +;;;;;;;;FRS24PMB2415912;SOKSVEUQOF;Faverges, Route d'Annecy / Les Boucheroz Sud -3033;;12 Avenue de l'Europe 89470 MONETEAU;;[-0.789644, 49.219543];;FRS64EMB6412812;FR*SOD*E*MB24*63*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.202366;49.108196;;;; +;;;;;;;;FRS24PMB2415911;AYWC7E3K5E;La Roche sur Foron, 397 Avenue Charles de Gaulle - 3422;;18 Route De Montmarault 03500 Saint-Pourçain-sur-Sioule;;[0.185999, 49.348248];;FRS64EMB6412711;FR*SOD*E*MB24*63*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.257186;48.937435;;;; +;;;;;;;;FRS24PMB2416012;K5OWM91ZVL;Flers-Miniere, rue de la Minière -4165;;RD 707 03400 TOULON SUR ALLIER;;[-0.568107, 49.277843];;FRS64EMB6412612;FR*SOD*E*MB24*64*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.753076;49.108475;;;; +;;;;;;;;FRS24PMB2416011;HWIOS76HPC;Saint-Meen-Le-Grand-Pasteur, Rue Louis Pasteur -3757;;12 Route De Saint-Pourçain 03110 Charmeil;;[0.297287, 49.053543];;FRS64EMB6412611;FR*SOD*E*MB24*64*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.098968;49.004524;;;; +;;;;;;;;FRS24PMB2416112;EPSOXWJL5C;Agneaux-Coutances, route de coutances -3744;;4 Rue De L'echelotte 21170 Saint-Usage;;[0.202366, 49.137093];;FRS64EMB6412512;FR*SOD*E*MB24*65*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.242004;49.325378;;;; +;;;;;;;;FRS24PMB247712;WXCAUXDWQZ;Montmelian, Av. de Gresivaudan;;1054 Route Du Champ De La Croix 71680 VINZELLES;;[-0.257186, 49.277668];;FRS64EMB6412411;FR*SOD*E*MB24*65*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.242383;49.266899;;;; +;;;;;;;;FRS24PMB24511;T7NT4TEAJS;Bourg-Les-Valence-Bastié, Rue Maryse Bastié -3954;;4 Rue Du Puits Du Manoir 63700 Saint-Éloy-les-Mines;;[-0.753076, 49.34211];;FRS64EMB6412011;FR*SOD*E*MB24*66*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.009537;48.920029;;;; +;;;;;;;;FRS24PMB247612;CPMKO0KCT6;St Etienne De St Geoirs, Route de Grenoble-Le Village;;14 Rue De La Champagne 25300 Houtaud;;[-0.098968, 49.287991];;FRS64EMB6412412;FR*SOD*E*MB24*66*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.258216;49.02076;;;; +;;;;;;;;FRS24PMB243111;YKZIHSYQXN;Evian, Impasse des Cèdres - 2068;;Route De Caen 14650 Carpiquet;;[-0.242004, 48.96925];;FRS64EMB6412312;FR*SOD*E*MB24*53*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.259154;49.011806;;;; +;;;;;;;;FRS24PMB242612;V3EMVP93X7;Saint Jean De Maurienne, 8 Rue du 8 Mai 1945;;Rue De La Salle 27590 Pîtres;;[0.242383, 49.198738];;FRS64EMB6412311;FR*SOD*E*MB24*52*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.250781;49.202087;;;; +;;;;;;;;FRS24PMB242611;MDMC6YBZXB;Scionzier, Avenue du Crozet;;Route de Pontaubert 89200 AVALLON;;[-0.009537, 49.14109];;FRS64EMB6412212;FR*SOD*E*MB24*39*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.411662;49.213123;;;; +;;;;;;;;FRS24PMB242711;EQCDH9J1JP;Charancieu, Lieudit Le Charmay;;Rue Des Champs De Tennes 25410 Saint-Vit;;[-0.258216, 49.288376];;FRS64EMB6412211;FR*SOD*E*MB24*45*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.405064;49.286636;;;; +;;;;;;;;FRS24PMB242712;AC2FNB43AS;Chabeuil, 2 rue Marius Chatte - 2705;;10 Rue Du Nouveau Bois Du Verne 71300 Montceau-les-Mines;;[-0.259154, 49.23476];;FRS64EMB6412112;FR*SOD*E*MB24*40*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.073146;49.142525;;;; +;;;;;;;;FRS24PMB242812;HPIJ5SALHF;Pont-l'Évêque, Place du Maréchal Foch;;Avenue Pierre Semard 94200 IVRY SUR SEINE;;[-0.250781, 49.278812];;FRS64EMB6412111;FR*SOD*E*MB24*40*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.830717;49.014362;;;; +;;;;;;;;FRS24PMB242811;ACRYNFDCV8;Morteaux-Coulibœuf, Rue du stade;;avenue de Paris 92320 CHATILLON;;[-0.411662, 48.872952];;FRS64EMB6412012;FR*SOD*E*MB24*41*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.545198;49.135658;;;; +;;;;;;;;FRS24PMB242912;AYAHQAUM1C;Moult-Chicheboville, Route de Paris;;Rue Président Salvador Allende 92700 COLOMBES;;[0.405064, 49.020981];;FRS64EMB6410911;FR*SOD*E*MB24*41*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.29001;48.83251;;;; +;;;;;;;;FRS24PMB242911;C1GNC8FCNX;Moyaux, Rue Gustave Flaubert;;Rue Costes Et Bellonte 39100 Dole;;[-0.073146, 49.071609];;FRS64EMB6411612;FR*SOD*E*MB24*42*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.84048;49.005394;;;; +;;;;;;;;FRS24PMB243011;CXJ72OM8NT;Valdallière, Rue de la liberté;;10 Rue De La Plage 70100 Gray;;[-0.830717, 48.965939];;FRS64EMB6410811;FR*SOD*E*MB24*42*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.765131;49.138123;;;; +;;;;;;;;FRS24PMB243012;VF5EU1QLKV;Ouilly-le-Vicomte, Route de Deauville;;772 Chemin De La Tuilerie 42300 Villerest;;[-0.545198, 49.195198];;FRS64EMB649712;FR*SOD*E*MB24*43*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.149838;49.292091;;;; +;;;;;;;;FRS24PMB243112;AVPIZQYZVQ;Mondeville, Rue Calmette;;7 Rue Des Vérottes 21200 Beaune;;[0.29001, 49.108196];;FRS64EMB649611;FR*SOD*E*MB24*43*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.369945;49.242004;;;; +;;;;;;;;FRS24PMB243212;LLK174HG81PAI5;Mondeville, Rue Emile Zola 1;;0 Rue Du Matrait 58170 Luzy;;[-0.84048, 48.937435];;FRS64EMB649612;FR*SOD*E*MB24*44*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.673939;48.800545;;;; +;;;;;;;;FRS24PMB242512;QL0SAGXFVN;Saint-Désir, Route de Falaise;;50 Route De Labège 31400 Toulouse;;[-0.765131, 49.108475];;FRS64EMB649512;FR*SOD*E*MB24*44*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.576396;48.857273;;;; +;;;;;;;;FRS24PMB243211;WZ79ENR8ZB;Lion-sur-Mer, Rue du 18 juin 1940;;Route D'espagne 31120 Portet-sur-Garonne;;[0.149838, 49.004524];;FRS64EMB649511;FR*SOD*E*MB24*45*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.030718;49.000648;;;; +;;;;;;;;FRS24PMB243311;T6VGAWB4RJ;Le Tronquay, La Tuilerie;;En Saumie 31450 Baziège;;[-0.369945, 49.325378];;FRS64EMB649411;FR*SOD*E*MB24*46*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.845168;49.332512;;;; +;;;;;;;;FRS24PMB243312;IQG36TGCXO;Saint-Gatien-des-Bois, Rue des Brioleurs;;Rue Jean Suberville 31800 Saint-Gaudens;;[-0.673939, 49.266899];;FRS64EMB649412;FR*SOD*E*MB24*52*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.332626;49.178085;;;; +;;;;;;;;FRS24PMB243412;VEAFCWDTLI;Creully sur Seulles, Rue du Moulin;;24 Rte de Mirepoix 11400 Castelnaudary;;[-0.576396, 48.920029];;FRS64EMB649312;FR*SOD*E*MB24*46*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.342878;49.262711;;;; +;;;;;;;;FRS24PMB243411;LL76TVKIP4;Valorbiquet, Route de Copplestone;;21 Avenue Jean Jaurès 65800 Aureilhan;;[-0.030718, 49.02076];;FRS64EMB649311;FR*SOD*E*MB24*47*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.313085;49.073658;;;; +;;;;;;;;FRS24PMB243511;EVGRRYJMAI;Saint-Désir, Chemin du Stade;;Z.A.E. Du Moulin À Huile 62340 Guînes;;[-0.845168, 49.011806];;FRS64EMB649211;FR*SOD*E*MB24*47*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.457769;49.338612;;;; +;;;;;;;;FRS24PMB243512;KJ10TZEAZY;Ouistreham, Avenue du Maréchal Foch;;Route de Callac 29270 CARHAIX PLOUGUER;;[-0.332626, 49.202087];;FRS64EMB649212;FR*SOD*E*MB24*48*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.268632;49.327827;;;; +;;;;;;;;FRS24PMB243611;U4TFFCDH2S;Port-en-Bessin-Huppain, Avenue du Général de Gaulle;;Rue De Kervail 29300 Quimperlé;;[-0.342878, 49.213123];;FRS64EMB649112;FR*SOD*E*MB24*48*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.526418;49.317024;;;; +;;;;;;;;FRS24PMB243612;SBPX6OZUXS;Dives-sur-Mer, Boulevard Maurice Thorez;;ZAC Ty Ar Menez 29470 PLOUGASTEL DAOULAS;;[-0.313085, 49.286636];;FRS64EMB649111;FR*SOD*E*MB24*49*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.838209;49.143112;;;; +;;;;;;;;FRS24PMB243712;DTWHHE;Potigny, Rue du Marché;;Route Départementale 56570 LOCMIQUELIC;;[-0.457769, 49.142525];;FRS64EMB649012;FR*SOD*E*MB24*49*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.15161;49.121574;;;; +;;;;;;;;FRS24PMB243711;RM0ROAPILM;Norolles, Le Bourg;;parc commercial de Ker d'Hervé 22600 LOUDEAC;;[-0.268632, 49.014362];;FRS64EMB6410712;FR*SOD*E*MB24*50*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.229788;49.181694;;;; +;;;;;;;;FRS24PMB242511;DHOGICTC4J;Notre-Dame-d'Estrées-Corbon, Carrefour Saint-Jean;;zone commerciale de kerfolic 22220 MINIHY TREGUIER;;[-0.526418, 49.135658];;FRS64EMB648912;FR*SOD*E*MB24*50*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.649742;49.203658;;;; +;;;;;;;;FRS24PMB242412;UG3WVGHZF7;Ouistreham, Place Alfred Thomas;;ZA de Brénanvec Nevez 29720 PLONEOUR LANVERN;;[-0.838209, 48.83251];;FRS64EMB648911;FR*SOD*E*MB24*51*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.869728;49.180374;;;; +;;;;;;;;FRS24PMB243811;JZ543QKP9R;Ranville, Rue de la Vallée;;137 Bd de Plymouth 29200 BREST;;[0.15161, 49.005394];;FRS64EMB648812;FR*SOD*E*MB24*51*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.900723;49.28772;;;; +;;;;;;;;FRS24PMB241712;L3MM8AGQ9C;Ouistreham, Place du Général de Gaulle;;Lieu-dit Pendreff 29120 PLOMEUR;;[0.229788, 49.138123];;FRS64EMB649711;FR*SOD*E*MB24*11*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.606036;49.27946;;;; +;;;;;;;;FRS24PMB241212;MSPSTZ6J2B;Pont-d'Ouilly, Rue du Stade René Vallée;;Rue de Guergay 22310 PLESTIN LES GREVES;;[-0.649742, 49.292091];;FRS64EMB649011;FR*SOD*E*MB24*18*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.303315;49.203705;;;; +;;;;;;;;FRS24PMB241211;PRMTMC6S3N;Orbec, Place Maréchal Foch 1;;boulevard Schweitzer 62110 HENIN BEAUMONT;;[-0.869728, 49.242004];;FRS64EMB649812;FR*SOD*E*MB24*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.395594;49.212273;;;; +;;;;;;;;FRS24PMB241311;PX3HCA6K3H;Mézidon Vallée d'Auge, Rue Voltaire;;Rue du Fond à Marle 62800 LIEVIN;;[-0.900723, 48.800545];;FRS64EMB6410311;FR*SOD*E*MB24*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.220241;49.16581;;;; +;;;;;;;;FRS24PMB241312;YOK4NQXJLT;Souleuvre en Bocage, Le bourg;;14 Rue du 4 Septembre 62210 AVION;;[-0.606036, 48.857273];;FRS64EMB649811;FR*SOD*E*MB24*10*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.281319;49.044224;;;; +;;;;;;;;FRS24PMB241412;GL45JADQ7A;Thue et Mue, Rue du 11 Juin 1944;;rue Notre Dame 59190 HAZEBROUCK;;[-0.303315, 49.000648];;FRS64EMB6410711;FR*SOD*E*MB24*68*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.298521;49.176125;;;; +;;;;;;;;FRS24PMB241411;LWAX2VIBUV;Le Mesnil-Guillaume, Route d'Orbec;;71 Avenue Du Général De Gaulle 62510 Arques;;[-0.395594, 49.332512];;FRS64EMB6410611;FR*SOD*E*MB24*69*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.09212;49.184155;;;; +;;;;;;;;FRS24PMB241512;TXR4EPVUDZ;Souleuvre en Bocage, Rue du Chanoine Cochard;;rue Camille Desmoulins 62680 MERICOURT;;[-0.220241, 49.178085];;FRS64EMB6410512;FR*SOD*E*MB24*69*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.391624;49.182137;;;; +;;;;;;;;FRS24PMB241511;TDVUPC3TPJ;Caumont-sur-Aure, Le Bourg;;Route du Crotoy 80120 RUE;;[-0.281319, 49.262711];;FRS64EMB6410511;FR*SOD*E*MB24*70*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.269729;49.161114;;;; +;;;;;;;;FRS24PMB241612;U335H3JLYA;Livarot-Pays-d'Auge, Place Georges Bisson;;Avenue Roger Salengro 62100 CALAIS;;[-0.298521, 49.073658];;FRS64EMB6410411;FR*SOD*E*MB24*70*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.221156;49.199852;;;; +;;;;;;;;FRS24PMB241611;XMSBUV;Langrune-sur-Mer, Rue du Général Leclerc;;Rue Edouard Vaillant 62230 OUTREAU;;[0.09212, 49.338612];;FRS64EMB6410412;FR*SOD*E*MB24*71*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.567159;49.190582;;;; +;;;;;;;;FRS24PMB241711;JBKLIDJFMT;Saint-Martin-des-Entrées, Rue Claude Monet;;Route de Berck 62180 RANG DU FLIERS;;[-0.391624, 49.327827];;FRS64EMB6410312;FR*SOD*E*MB24*71*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.346611;49.066422;;;; +;;;;;;;;FRS24PMB247511;JRJ1YQKCPS;Condé-en-Normandie, Le Bourg;;Rue Eric Tabarly 62700 BRUAY LA BUISSIERE;;[0.269729, 49.317024];;FRS64EMB6410612;FR*SOD*E*MB24*72*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.359741;49.158428;;;; +;;;;;;;;FRS24PMB242411;ZSBLAQ;Saint-Pierre-en-Auge, Place Gombault;;Zone Industrielle de la Vigogne 62600 BERCK;;[0.221156, 49.143112];;FRS64EMB6410211;FR*SOD*E*MB24*72*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.355928;49.187054;;;; +;;;;;;;;FRS24PMB241811;NKM6A0PYWP;Souleuvre en Bocage, Rue des écoles;;rue du Général San Martin 62480 LE PORTEL;;[-0.567159, 49.121574];;FRS64EMB649912;FR*SOD*E*MB24*73*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.116762;49.180958;;;; +;;;;;;;;FRS24PMB241912;BFRXEAP6WP;Hérouville-Saint-Clair, Place du Café des Images;;route de Béthune 62750 LOOS EN GOHELLE;;[-0.346611, 49.181694];;FRS64EMB6410112;FR*SOD*E*MB24*73*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.718632;49.27467;;;; +;;;;;;;;FRS24PMB241911;LRH9XRGS4L;Hérouville-Saint-Clair, Avenue de Garbsen;;rue des Frères Caron 62460 DIVION;;[-0.359741, 49.203658];;FRS64EMB6410111;FR*SOD*E*MB24*74*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.512477;49.18668;;;; +;;;;;;;;FRS24PMB242012;WRBRGD5HQU;Hermanville-sur-Mer, Grande Rue;;rue Georges Clémenceau 62270 FREVENT;;[-0.355928, 49.180374];;FRS64EMB6410012;FR*SOD*E*MB24*74*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.514652;49.160675;;;; +;;;;;;;;FRS24PMB242011;ZSFMSZ;Fontaine-Étoupefour, Impasse du Stade Jules Quesnel;;quai Gustave Lamarle 62100 CALAIS;;[-0.116762, 49.28772];;FRS64EMB6410011;FR*SOD*E*MB24*68*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.417781;49.199177;;;; +;;;;;;;;FRS24PMB242112;REUFMB3JUC;Grainville-Langannerie, Rue de Lapford;;rue de Lumbres 62219 LONGUENESSE;;[-0.718632, 49.27946];;FRS64EMB649911;FR*SOD*E*MB24*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.326488;49.178352;;;; +;;;;;;;;FRS24PMB242111;XQ1TNK1LIC;Grainville-sur-Odon, Rue de la Libération;;avenue de Saint Exupery 62100 CALAIS;;[-0.512477, 49.203705];;FRS64EMB6410212;FR*SOD*E*MB24*6*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.369844;49.197529;;;; +;;;;;;;;FRS24PMB242211;Y168YXLDGQ;Vire Normandie, Rue de la Mairie 14;;90 Chemin Des Roues 38670 Chasse-sur-Rhône;;[-0.514652, 49.212273];;FRS69ESYDR7311;FR*SOD*E*MB24*9*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.364503;49.180359;;;; +;;;;;;;;FRS24PMB242212;XPRVLAFTZW;Livarot-Pays-d'Auge, Place Xavier de Maistre;;1 Route De Feurs 69170 Tarare;;[-0.417781, 49.16581];;FRS69ESYDR7312;FR*SOD*E*MB24*9*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.402715;49.146415;;;; +;;;;;;;;FRS24PMB242311;WWQDW4NOVM;Lisieux, Rue des Blanches Portes;;5 Rue Jean-Jacques Rousseau 42000 Saint-Étienne;;[-0.326488, 49.044224];;FRS69ESYDR7213;FR*SOD*E*MB24*8*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.360565;49.184055;;;; +;;;;;;;;FRS24PMB242312;QCI92NVVNY;Sommervieu, Rue Saint-Pierre;;Route De Valence 38150 Roussillon;;[-0.369844, 49.176125];;FRS69ESYDR7211;FR*SOD*E*MB24*8*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.380138;49.204082;;;; +;;;;;;;;FRS24PMB243812;N2TOJUBYT5;Le Molay-Littry, Le Haut Varet;;Chemin D'anclenoux 38390 Montalieu-Vercieu;;[-0.364503, 49.184155];;FRS69ESYDR7212;FR*SOD*E*MB24*7*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.34179;48.889202;;;; +;;;;;;;;FRS24PMB243912;LCFU7VLMR8;Vire Normandie, Place des écoles;;Chemin des Sables 42110 FEURS;;[-0.402715, 49.182137];;FRS69ESYDR7112;FR*SOD*E*MB24*7*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.767352;49.149574;;;; +;;;;;;;;FRS24PMB241111;LLJ3Z2AGU2555D;Condé-en-Normandie, Route de Vassy;;Rue de la Ferme Saint Ladre 95470 FOSSES;;[-0.360565, 49.161114];;FRS69ESYDR7113;FR*SOD*E*MB24*6*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.761437;49.090714;;;; +;;;;;;;;FRS24PMB246011;SMMADKASZB;Saint-Germain-le-Vasson, Le Bourg/D237;;25 Avenue Jacques Chirac 69520 Grigny;;[-0.380138, 49.199852];;FRS69ESYDR7011;FR*SOD*E*MB24*75*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.360357;49.185043;;;; +;;;;;;;;FRS24PMB245412;HFER1CVNZZ;Saint-Aubin-sur-Mer, Rue de Verdun;;rue Paul Claudel 38510 MORESTEL;;[-0.34179, 49.190582];;FRS69ESYDR7111;FR*SOD*E*MB24*5*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.365959;49.175629;;;; +;;;;;;;;FRS24PMB245411;PXTTGR;Saline, Rue du maréchal Leclerc;;boulevard Duguet 42600 SAVIGNEUX;;[-0.767352, 49.066422];;FRS69ESYDR7012;FR*SOD*E*MB24*4*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.339124;49.191658;;;; +;;;;;;;;FRS24PMB245512;AGQMYEHSNO;Saint-Aubin-d'Arquenay, Route de Ouistreham;;Avenue de la Mairie 42160 BONSON;;[-0.761437, 49.158428];;FRS69ESYDR6911;FR*SOD*E*MB24*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.366633;49.176746;;;; +;;;;;;;;FRS24PMB245511;G2DDRJSDVR;Le Castelet, Chemin de la Jalousie;;rue Edmond Locard 42400 SAINT CHAMOND;;[-0.360357, 49.187054];;FRS69ESYDR6912;FR*SOD*E*MB24*3*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.34267;48.823738;;;; +;;;;;;;;FRS24PMB245612;XZMEWP;Saint-Arnoult, Avenue Michel d'Ornano;;Rue des Silos 38300 BOURGOIN JALLIEU;;[-0.365959, 49.180958];;FRS69ESYDR6811;FR*SOD*E*MB24*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.365122;49.124573;;;; +;;;;;;;;FRS24PMB245611;LQVZYC;Saint-Aubin-sur-Mer, Place de la Gare 1;;Rue de Saint Denis 93000 AUBERVILLIERS;;[0.339124, 49.27467];;FRS69ESYDR7411;FR*SOD*E*RMBT*28*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.348103;49.034939;;;; +;;;;;;;;FRS24PMB245812;MSSQHX;Saint-Benoît-d'Hébertot, L'Eglise;;20 à 28 Boulevard Jean Moulin 93190 Livry Gargan Moulin;;[-0.366633, 49.18668];;FRS69ESYDR6712;FR*SOD*E*RMBT*30*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.347497;49.276985;;;; +;;;;;;;;FRS24PMB245811;YFNNSM;Lisieux, Rue du Gaz;;2 rue du Marechal Juin 60150 THOUROTTE;;[-0.34267, 49.160675];;FRS69ESYDR7313;FR*SOD*E*RMBT*30*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.371259;49.274509;;;; +;;;;;;;;FRS24PMB245912;B61GBWQAVL;Val d'Arry, Place de l'Église;;284 Rue de Rosny 93100 MONTREUIL SOUS BOIS;;[-0.365122, 49.199177];;FRS69ESYDR7912;FR*SOD*E*RMBT*29*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.254735;49.318889;;;; +;;;;;;;;FRS24PMB245911;THY3EJOYI0;Caen, Cours Caffarelli;;Boulevard Alsace Lorraine 93110 ROSNY SOUS BOIS;;[-0.348103, 49.178352];;FRS69ESYDR7412;FR*SOD*E*RMBT*29*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.355559;49.138321;;;; +;;;;;;;;FRS24PMB246012;KGQUEN557E;Caen, Rue Professeur Joseph Rousselot;;Rue de Tailbouis 60130 SAINT JUST EN CHAUSSEE;;[-0.347497, 49.197529];;FRS69ESYDR7911;FR*SOD*E*RMBT*28*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.380302;49.254955;;;; +;;;;;;;;FRS24PMB246111;UQMWXP1LTB;Caen, Place de la Résistance 6;;ZA "Le Bois Noir Nord" 60250 BURY;;[-0.371259, 49.180359];;FRS69ESYDR6713;FR*SOD*E*RMBT*24*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.924642;49.128597;;;; +;;;;;;;;FRS24PMB245311;KCFNXIKPD8;Cabourg, Avenue de la Mer;;Allée Louis Bréguet 93420 VILLEPINTE 2;;[-0.254735, 49.146415];;FRS69ESYDR112;FR*SOD*E*RMBT*27*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.046794;49.160816;;;; +;;;;;;;;FRS24PMB246112;KCM19NLBYJ;Bayeux, Rue St Julien;;121 rue de la roche 85190 AIZENAY;;[-0.355559, 49.184055];;FRS69ESYDR8212;FR*SOD*E*RMBT*27*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.806385;49.279522;;;; +;;;;;;;;FRS24PMB246212;AAWFK13ZEK;Thue et Mue, Rue de la Gare 13;;Route de Vannes 44800 ST HERBLAIN;;[-0.380302, 49.204082];;FRS69ESYDR8211;FR*SOD*E*RMBT*26*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.44147;49.136223;;;; +;;;;;;;;FRS24PMB246211;WKJ7SGGVME;Thue et Mue, Place des Canadiens 1;;François Cevert 85000 LA ROCHE SUR YON;;[-0.924642, 48.889202];;FRS69ESYDR8111;FR*SOD*E*RMBT*25*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.401482;49.199406;;;; +;;;;;;;;FRS24PMB246311;O957ZEQDER;Bretteville-sur-Odon, Place de la Mairie;;Route de la Villès Mollé 44600 St NAZAIRE;;[0.046794, 49.149574];;FRS69ESYDR8112;FR*SOD*E*RMBT*25*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.396299;49.205502;;;; +;;;;;;;;FRS24PMB246312;MJ3GBZ3PFX;Bretteville-sur-Laize, Rue des Canadiens;;Mail du Grand Clos 49610 MUR ERIGNE;;[-0.806385, 49.090714];;FRS69ESYDR7811;FR*SOD*E*RMBT*31*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.624253;49.2966;;;; +;;;;;;;;FRS24PMB246412;AMXCWSBMV3;Caen, Avenue Albert Sorel;;3 Rue Marcel Cerdan 95140 GARGES LES GONESSE;;[-0.44147, 49.185043];;FRS69ESYDR7512;FR*SOD*E*RMBT*31*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.104626;49.149944;;;; +;;;;;;;;FRS24PMB246411;DNGMRSFWLE;Caen, Rue Gémare;;125 rue de la Liberté 60740 SAINT MAXIMIN;;[-0.401482, 49.175629];;FRS69ESYDR7812;FR*SOD*E*RMBT*35*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.276981;49.387611;;;; +;;;;;;;;FRS24PMB246512;VW40LGQ14C;Caen, Boulevard Georges Pompidou;;Boulevard Jean Mermoz 93380 Pierrefitte sur Seine;;[-0.396299, 49.191658];;FRS69ESYDR7712;FR*SOD*E*RMBT*32*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.303596;49.283667;;;; +;;;;;;;;FRS24PMB246511;KVTKW80MWI;Caen, Avenue du Père Charles de Foucauld;;Avenue Robert Schumann 93330 NEUILLY SUR MARNE;;[-0.624253, 49.176746];;FRS69ESYDR7711;FR*SOD*E*RMBT*32*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.458241;48.975983;;;; +;;;;;;;;FRS24PMB246611;L0ZK51ZAHC;Caen, Esplanade Brillaud de Laujardière;;Avenue de la Ferté Milon 02600 Villers Cotterets;;[-1.104626, 48.823738];;FRS69ESYDR7611;FR*SOD*E*RMBT*33*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.452932;49.02071;;;; +;;;;;;;;FRS24PMB246612;TBLCLSJ4PF;Caen, Le Clos Joli;;1227 rue pasteur 60700 PONT SAINTE MAXENCE;;[0.276981, 49.124573];;FRS69ESYDR7612;FR*SOD*E*RMBT*33*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.351417;49.140018;;;; +;;;;;;;;FRS24PMB245312;YOTUP5OVAQ;Cahagnes, D54;;2 rue Marcel Proust 42000 SAINT ETIENNE;;[-0.303596, 49.034939];;FRS69ESYDR7511;FR*SOD*E*RMBT*34*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.371768;49.251003;;;; +;;;;;;;;FRS24PMB245212;JWK3GA2LBR;Cahagnolles, Place de la Mairie;;1 rue de l'Alcazar 42700 FIRMINY;;[-0.458241, 49.276985];;FRS69ESYDR6711;FR*SOD*E*RMBT*34*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.373516;49.152481;;;; +;;;;;;;;FRS24PMB243911;TJNUX7EA3X;Caen, Rue du Vaugueux;;19 Boulevard de la République 59120 LOOS;;[-0.452932, 49.274509];;FRS69ESYDR111;FR*SOD*E*RMBT*35*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.422221;49.127815;;;; +;;;;;;;;FRS24PMB244512;CY1SUZNSHO;Caen, Place du parvis Notre Dame;;Route du Chapeau Rouge 59229 TETEGHEM;;[-0.351417, 49.318889];;FRS69ESYDR3511;FR*SOD*E*RMBT*36*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.399309;49.30206;;;; +;;;;;;;;FRS24PMB244012;V38WQLOKLK;Bonneville-la-Louvet, Rue Henri Louvet;;Place Saint Auguste 62880 VENDIN-LE-VIEIL;;[0.371768, 49.138321];;FRS69ESYDR4812;FR*SOD*E*RMBT*36*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.20465;49.137749;;;; +;;;;;;;;FRS24PMB244011;ZWRJVV;Caen, Rue Chanoine Xavier de Saint Pol;;Albert de Mun 59280 ARMENTIERES;;[-0.373516, 49.254955];;FRS69ESYDR5211;FR*SOD*E*RMBT*37*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.082768;49.150547;;;; +;;;;;;;;FRS24PMB244112;ZSYZPW;Caen, Place de la Liberté;;rue Paul Langevin 59119 WAZIERS;;[-0.422221, 49.128597];;FRS69ESYDR5212;FR*SOD*E*RMBT*37*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.471729;49.320122;;;; +;;;;;;;;FRS24PMB244111;WFAJKQ;Caen, Rue de la Défense Passive;;rue Jean Jaurès 59290 WASQUEHAL;;[-0.399309, 49.160816];;FRS69ESYDR5112;FR*SOD*E*RMBT*38*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.476986;49.418694;;;; +;;;;;;;;FRS24PMB244212;SYMTCVEZGS;Caen, Rue Rosa Parks;;6 Rue Jacquard 59260 HELLEMMES LILLE;;[-0.20465, 49.279522];;FRS69ESYDR5111;FR*SOD*E*RMBT*38*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.30163;49.2024;;;; +;;;;;;;;FRS24PMB244211;CRWPFJ;Caen, Place Champlain;;rue du Levant 59200 TOURCOING;;[-0.082768, 49.136223];;FRS69ESYDR5011;FR*SOD*E*RMBT*23*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.288273;48.893047;;;; +;;;;;;;;FRS24PMB244312;EMXWMFSZZT;Caen, Place Guillouard;;2 Faubourg de Cassel 59380 SOCX;;[-0.471729, 49.199406];;FRS69ESYDR5012;FR*SOD*E*RMBT*24*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.041252;49.002502;;;; +;;;;;;;;FRS24PMB244311;CJUUZX;Cagny, Allée Saint Germain 33;;Rue du Général Koenig 59136 WAVRIN;;[-0.476986, 49.205502];;FRS69ESYDR4912;FR*SOD*E*RMBT*26*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.707928;49.024189;;;; +;;;;;;;;FRS24PMB244411;SNGFSA;Caen, Quai de la Londe;;Rue Mirabeau 62410 MEURCHIN;;[-0.30163, 49.2966];;FRS69ESYDR4911;FR*SOD*E*RMBT*23*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.079796;49.408573;;;; +;;;;;;;;FRS24PMB244412;RULGFH;Caen, Rue des Acadiens;;Rue Maurice Richard 59450 Sin-le-Noble;;[-0.288273, 49.149944];;FRS69ESYDR4913;FR*SOD*E*RMBT*6*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.739149;49.177143;;;; +;;;;;;;;FRS24PMB244511;MJLMPN;Campagnolles, Le Bourg;;rue d'Armentières 59560 COMINES;;[-1.041252, 49.387611];;FRS69ESYDR4811;FR*SOD*E*RMBT*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.355094;49.07996;;;; +;;;;;;;;FRS24PMB244611;sarrbcord;Cambremer, Avenue des Tilleuls;;rue Horace Vernet 59100 ROUBAIX;;[-0.707928, 49.283667];;FRS69ESYDR5312;FR*SOD*E*RMBT*10*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.220548;45.093005;;;; +;;;;;;;;FRS24PMB245211;redinggare;Caumont-sur-Aure, Rue de la Ferière;;avenue du Général de Gaulle 59710 PONT A MARCQ;;[-0.079796, 48.975983];;FRS69ESYDR4711;FR*SOD*E*RMBT*9*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.371682;48.930635;;;; +;;;;;;;;FRS24PMB244612;XBWVSQ;Carpiquet, Avenue Charles de Gaulle;;route de Lyon 07430 DAVEZIEUX;;[-0.739149, 49.02071];;FRS69ESYDR4712;FR*SOD*E*RMBT*9*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.316764;48.931375;;;; +;;;;;;;;FRS24PMB244712;sarrbcinestar;Caen, Avenue Enchanteur Merlin;;route de Lyon 38110 St Jean de Soudain;;[-0.355094, 49.140018];;FRS69ESYDR4612;FR*SOD*E*RMBT*8*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.07457;48.5522;;;; +;;;;;;;;FRS24PMB244711;XLNZYE;Caen, Avenue Président Coty;;Rue Nationale 69330 JONAGE;;[0.220548, 49.251003];;FRS69ESYDR4611;FR*SOD*E*RMBT*8*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.349523;49.230087;;;; +;;;;;;;;FRS24PMB244812;ENPRTC;Tilly-sur-Seulles, Rue du Stade 1;;Route de Cremieu 38230 TIGNIEU JAMEZIEU;;[-0.371682, 49.152481];;FRS69ESYDR4512;FR*SOD*E*RMBT*7*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.350859;49.29459;;;; +;;;;;;;;FRS24PMB244811;TVZBFA;Noues de Sienne, Le Bourg;;Chemin de Milan 26140 SAINT RAMBERT D ALBON;;[-0.316764, 49.127815];;FRS69ESYDR4511;FR*SOD*E*RMBT*7*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.101562;49.113762;;;; +;;;;;;;;FRS24PMB244912;UHPYPQ;Glos, Rue d'Orbec;;152 Avenue Marcel Cachin 69120 Vaulx-en-Velin;;[-0.07457, 49.30206];;FRS69ESYDR4411;FR*SOD*E*RMBT*6*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.237649;48.825451;;;; +;;;;;;;;FRS24PMB244911;LSZFYN;Gouvix, Place François Mitterrand;;avenue Francis de Pressensé 69200 Vénissieux;;[-0.349523, 49.137749];;FRS69ESYDR4412;FR*SOD*E*RMBT*5*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.345371;48.892605;;;; +;;;;;;;;FRS24PMB245011;SQMVNC;Fontaine-Henry, Rue de Scoriton;;15 Rue De Saint-Nazaire 44800 Saint-Herblain;;[-0.350859, 49.150547];;FRS69ESYDR4312;FR*SOD*E*RMBT*11*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.883248;48.908218;;;; +;;;;;;;;FRS24PMB245012;TXSQQA;Fontaine-Henry, Rue du Régiment de la Chaudière;;78 Route de Montfort 40100 Dax;;[-1.101562, 49.320122];;FRS69ESYDR5311;FR*SOD*E*RMBT*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.753121;48.895374;;;; +;;;;;;;;FRS24PMB245111;RACFXH;Luc-sur-Mer, Rue du Général Dubail;;Avenue des Vergers 13750 Plan D'Orgon;;[0.237649, 49.418694];;FRS69ESYDR5411;FR*SOD*E*RMBT*22*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.419354;48.9856;;;; +;;;;;;;;FRS24PMB245112;IQXOTO9RCO;Marolles, Le Bourg;;1900 Avenue Paul Jullien 13100 Le Tholonet;;[-0.345371, 49.2024];;FRS69ESYDR6451;FR*SOD*E*RMBT*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.269149;48.840977;;;; +;;;;;;;;FRS24PMB241112;KJAUUA;Mathieu, Rue de la Chaussée;;310 Allée De Szentendre 13300 Salon-de-Provence;;[-0.883248, 48.893047];;FRS69ESYDR6012;FR*SOD*E*RMBT*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.266243;48.832748;;;; +;;;;;;;;FRS24PMB241812;BCNPMZIP3X;Maltot, Rue du Dorset;;30 Allée des Genets 04200 Sisteron;;[-0.753121, 49.002502];;FRS69ESYDR6471;FR*SOD*E*RMBT*3*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.657508;49.016411;;;; +;;;;;;;;FRS24PMB241011;SFNDWUV1R9;Louvigny, Rue Edouard Boubat;;Chemin de la Grange 33650 Martillac;;[0.419354, 49.024189];;FRS69ESYDR6381;FR*SOD*E*RMBT*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.066339;49.347195;;;; +;;;;;;;;FRS24PMB24211;KEZTK8O7PQ;Merville-Franceville-Plage, Boulevard Wattier;;4 Avenue Léo Lagrange 33210 Langon;;[0.269149, 49.408573];;FRS69ESYDR6351;FR*SOD*E*RMBT*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.977225;49.258343;;;; +;;;;;;;;FRS24PMB241012;porcelavold;Méry-Bissières-en-Auge, Place Saint-Martin;;40/42 Route de Bordeaux 33340 Lesparre;;[-0.266243, 49.177143];;FRS69ESYDR6371;FR*SOD*E*RMBT*1*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.976106;49.299999;;;; +;;;;;;;;FRS24PMB246811;IYORKBPKU5;Rots, Route de Caen;;Chemin lagrua 33260 La Teste;;[-0.657508, 49.07996];;FRS69ESYDR6361;FR*SOD*E*RMBT*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.40364;49.240765;;;; +;;;;;;;;FRS24PMB246911;THONXFPNYV;Rots, Rue Haute Bonny;;210 Route de Socoa 64122 Urrugne;;[6.066339, 45.093005];;FRS69ESYDR6212;FR*SOD*E*RMBT*11*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.045078;49.180573;;;; +;;;;;;;;FRS24PMB246912;ZVUO3G8E9O;Hermanville-sur-Mer, Avenue Madame Coty;;1 avenue du 19 Mars 1962 13390 Auriol;;[1.977225, 48.930635];;FRS69ESYDR6211;FR*SOD*E*RMBT*4*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.376339;49.308865;;;; +;;;;;;;;FRS24PMB247012;LLHUFEKVP2OW7B;Grentheville, Rue Urbain Cardon;;87 Chemin de la Pépinière 13600 La Ciotat;;[1.976106, 48.931375];;FRS69ESYDR6111;FR*SOD*E*RMBT*12*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.403748;49.34425;;;; +;;;;;;;;FRS24PMB247011;VNGYVMGGN2;Grandcamp-Maisy, Place de la République;;90 avenue d'Embrun 05000 Gap;;[7.40364, 48.5522];;FRS69ESYDR6112;FR*SOD*E*RMBT*17*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.977295;49.049606;;;; +;;;;;;;;FRS24PMB247112;DXPKNG;Bayeux, Complexe EINDHOVEN;;137 boulevard pont de Vivaux 13010 Marseille;;[-0.045078, 49.230087];;FRS69ESYDR5911;FR*SOD*E*RMBT*12*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.201822;49.36565;;;; +;;;;;;;;FRS24PMB247111;WHQDPMTUSJ;Jort, Rue des Ponts;;Route Napoléon 04000 Digne Les Bains;;[-0.376339, 49.29459];;FRS69ESYDR5412;FR*SOD*E*RMBT*22*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.207155;48.84539;;;; +;;;;;;;;FRS24PMB247211;ZIBNJW6L9E;Dialan sur Chaîne, Impasse de la Gare;;4 Ronde des Florins 13800 Istres;;[-0.403748, 49.113762];;FRS69ESYDR5912;FR*SOD*E*RMBT*21*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.200854;49.290745;;;; +;;;;;;;;FRS24PMB247212;QQHTLB;Ifs, Rue des Pyrénées;;90 Rue Oustalots 64400 Oloron-Sainte-Marie;;[-0.977295, 48.825451];;FRS69ESYDR5811;FR*SOD*E*RMBT*21*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.478406;49.399658;;;; +;;;;;;;;FRS24PMB247311;GPVWBL;Fierville-les-Parcs, Route de la vallée de la Touques;;Hameau De Frimont 33190 La Réole;;[-0.201822, 48.892605];;FRS69ESYDR5812;FR*SOD*E*RMBT*20*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.048561;48.84039;;;; +;;;;;;;;FRS24PMB247312;ANFTOPYB1P;Fleury-sur-Orne, Avenue d'Harcourt;;1 Avenue Salvador Allende 33270 Floirac;;[-0.207155, 48.908218];;FRS69ESYDR5712;FR*SOD*E*RMBT*19*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.038759;48.837307;;;; +;;;;;;;;FRS24PMB247412;O19SAEMHWV;Castine-en-Plaine, Rue des Tilleuls;;11 Avenue de Fumel 47500 Montayral;;[-0.200854, 48.895374];;FRS69ESYDR5711;FR*SOD*E*RMBT*19*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.028522;48.844872;;;; +;;;;;;;;FRS24PMB247411;ESA4E2FUK6;Houlgate, Boulevard de Saint-Philbert 1;;25 Avenue Charles Moureu 64150 Mourenx;;[-0.478406, 48.9856];;FRS69ESYDR5611;FR*SOD*E*RMBT*18*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.8074;48.849442;;;; +;;;;;;;;FRS24PMB246812;KHLEBW;Ifs, Esplanade François Mitterrand;;5 Rue des Satellites 33185 Le Haillan;;[-1.048561, 48.840977];;FRS69ESYDR5612;FR*SOD*E*RMBT*18*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.44972;48.896561;;;; +;;;;;;;;FRS24PMB24212;ZVL7ATPPWY;Ifs, Avenue Jean Vilar;;La Chaussée 44310 Saint Philbert de Grand Lieu;;[-1.038759, 48.832748];;FRS69ESYDR5512;FR*SOD*E*RMBT*20*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.212339;49.3088;;;; +;;;;;;;;FRS24PMB24611;ISHILDOGFQ;Isigny-sur-Mer, Quai Aristide Briand;;avenue des Sables 85700 POUZAUGES;;[-0.028522, 49.016411];;FRS69ESYDR5511;FR*SOD*E*RMBT*17*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.750126;49.343346;;;; +;;;;;;;;FRS24PMB24912;diesenchamps;Honfleur, Rue Vannier;;8 Rue du 8 mai 1945 85470 BREM SUR MER;;[-0.8074, 49.347195];;FRS69ESYDR4311;FR*SOD*E*RMBT*16*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.497137;49.232769;;;; +;;;;;;;;FRS24PMB24911;valmontgare;Hérouville-Saint-Clair, Rue Guyon de Guercheville;;Impasse Claudius Petit 85000 LA ROCHE SUR YON;;[-0.44972, 49.258343];;FRS69ESYDR4211;FR*SOD*E*RMBT*15*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.905397;49.391857;;;; +;;;;;;;;FRS24PMB24811;valmontmairie;Souleuvre en Bocage, Place de la gare;;des Ajoncs 85340 OLONNE SUR MER;;[0.212339, 49.299999];;FRS69ESYDR4212;FR*SOD*E*RMBT*15*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.103004;49.098824;;;; +;;;;;;;;FRS24PMB24812;folschviller;Dialan sur Chaîne, La Butte;;Rue Jean Jaurès 49800 TRELAZE;;[-0.750126, 49.240765];;FRS69ESYDR2412;FR*SOD*E*RMBT*14*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.477086;49.101223;;;; +;;;;;;;;FRS24PMB24712;RFSKEP;La Vespière-Friardel, Beausoleil;;65 Avenue Du Général De Gaulle 85120 La Châtaigneraie;;[-0.497137, 49.180573];;FRS69ESYDR2912;FR*SOD*E*RMBT*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.080297;49.383171;;;; +;;;;;;;;FRS24PMB24711;MYVULR;La Rivière-Saint-Sauveur, Rue du Port 44;;Paul Caniot 44250 ST BREVIN LES PINS;;[-0.905397, 49.308865];;FRS69ESYDR2811;FR*SOD*E*RMBT*13*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.8849;49.220016;;;; +;;;;;;;;FRS24PMB24612;VSAKX7WKLW;Démouville, Rue du Cimetière;;rue Chevreul 44100 NANTES;;[0.103004, 49.34425];;FRS69ESYDR2812;FR*SOD*E*RMBT*16*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.566371;49.1567;;;; +;;;;;;;;FRS24PMB247512;YKTKBS;Villers-Bocage, Rue des Halles;;Boulevard Jules Verne 44300 NANTES;;[-0.477086, 49.049606];;FRS69ESYDR2712;FR*SOD*E*RMBT*13*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.126629;49.220695;;;; +;;;;;;;;FRS24PMB24512;lhopitalgare;Huez, Hôtel Grandes Rousses;;rue de Surcouf 44570 TRIGNAC;;[0.080297, 49.36565];;FRS69ESYDR2711;FR*SOD*E*MAMP*13*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.888584;48.853397;;;; +;;;;;;;;FRS24PMB24412;carlingfron;Orgeval, 8 rue de Normandie;;Avenue Des Olives 13013 Marseille;;[-0.8849, 48.84539];;FRS69ESYDR2612;FR*SOD*E*MAMP*11*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.885866;49.024796;;;; +;;;;;;;;FRS24PMB24411;RGPNLAOCAJ;Orgeval, rue de Normandie;;5 rue olivier leclerc 13200 Arles;;[-0.566371, 49.290745];;FRS69ESYDR2611;FR*SOD*E*MAMP*11*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.901956;48.840118;;;; +;;;;;;;;FRS24PMB24312;T8NDNATOEV;Still, Tuileries;;Rue du Grand Rouet 85500 LES HERBIERS;;[0.126629, 49.399658];;FRS69ESYDR2511;FR*SOD*E*MAMP*12*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.882365;49.374043;;;; +;;;;;;;;FRS24PMB24311;G0HAPOBGP3;Dozulé, Place du champ de Foire;;Pré du Fauré 05120 Saint Martin De Queyrieres;;[-0.888584, 48.84039];;FRS69ESYDR2512;FR*SOD*E*MAMP*12*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.196851;49.121693;;;; +;;;;;;;;FRA05PRMBT2811;IEDDDF0Q0L;Douvres-la-Délivrande, Résidence les Portes de Douvres;;5 allée du Stade 67120 Ernolsheim-sur-bruche;;[-0.885866, 48.837307];;FRS69ESYDR2411;FR*SOD*E*MAMP*13*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.902956;41.99213631;;;; +;;;;;;;;FRA05PRMBT3011;W10TRRJXGH;Feuguerolles-Bully, Rue Henri Rosel;;19 rue du Générél de Gaulle 67190 Gresswiller;;[-0.901956, 48.844872];;FRS69ESYDR4111;FR*SOD*E*MAMP*15*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.516991;49.33881;;;; +;;;;;;;;FRA05PRMBT3012;OEOGLXCZFN;Falaise, Place du Docteur Cailloué;;259 Route des Soudanières 13013 Ceyzériat;;[-0.882365, 48.849442];;FRS69ESYDR2312;FR*SOD*E*MAMP*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.042063;49.24791;;;; +;;;;;;;;FRA05PRMBT2911;P7ZEAJRSCL;Falaise, Route de Caen;;5 ROUTE DE LAON 08190 SAINT-GERMAINMONT;;[-0.196851, 48.896561];;FRS69ESYDR2311;FR*SOD*E*MAMP*14*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.206739;49.124958;;;; +;;;;;;;;FRA05PRMBT2912;EOGRMLSQTW;Falaise, Rue Trinité 24;;Boulevard Jean Jaurès 27200 Vernon;;[-0.902956, 49.3088];;FRS69ESYDR2211;FR*SOD*E*MAMP*15*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.502256;49.245373;;;; +;;;;;;;;FRA05PRMBT2812;YO82KYWPO8;Le Hom, Place du Général de Gaulle;;38 Rue Clément Ader 91700 Fleury-Mérogis;;[-0.516991, 49.343346];;FRS69ESYDR2212;FR*SOD*E*MAMP*17*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.504844;49.226357;;;; +;;;;;;;;FRA05PRMBT2411;CJB1ZC4BR6;Noues de Sienne, Place de la Mairie;;Route Nationale 20620 Biguglia;;[-0.042063, 49.232769];;FRS69ESYDR2111;FR*SOD*E*MAMP*17*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.203363;49.192703;;;; +;;;;;;;;FRA05PRMBT2712;V7EXT2CMXB;Noues de Sienne, Rue du Vieux Château;;30 Rue Carnot 37130 Langeais;;[0.206739, 49.391857];;FRS69ESYDR2112;FR*SOD*E*MAMP*10*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.677874;49.228291;;;; +;;;;;;;;FRA05PRMBT2711;CJIGQX5EEN;Saint-Pierre-en-Auge, Rue des Sports;;Chemin De Rocpierre 63500 Issoire;;[-0.502256, 49.098824];;FRS69ESYDR2011;FR*SOD*E*MAMP*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.450656;49.252686;;;; +;;;;;;;;FRA05PRMBT2611;ZAGK3DXQNE;Aure sur Mer, Route d'Omaha Beach;;322 Route De Chambly 60530 Le Mesnil-en-Thelle;;[-0.504844, 49.101223];;FRS69ESYDR2012;FR*SOD*E*MAMP*4*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.37422;49.127666;;;; +;;;;;;;;FRA05PRMBT2512;HGYDHN;Thaon, Rue du Lavoir;;3 Terrasse Bretagne 57400 Sarrebourg;;[0.203363, 49.383171];;FRS69ESYDR1911;FR*SOD*E*MAMP*9*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.672848;49.021641;;;; +;;;;;;;;FRA05PRMBT2511;YIW9RNHBFD;Surville, L'Eglise;;1000 Rue Briquet-Taillandier 62223 Anzin-Saint-Aubin;;[-0.677874, 49.220016];;FRS69ESYDR2911;FR*SOD*E*MAMP*9*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.292248;49.141176;;;; +;;;;;;;;FRA05PRMBT3112;QAHLNICPOS;Subles, Rue Saint-Martin 12;;125 Avenue Louis Roche 92230 Gennevilliers;;[-0.450656, 49.1567];;FRS69ESYDR3012;FR*SOD*E*MAMP*7*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.854415;48.86885129;;;; +;;;;;;;;FRA05PRMBT3111;GBTVFCOXRK;Saint-Manvieu-Norrey, Rue de l'église;;20 Rue De L'attaque Du Courrier De Lyon 77240 Vert-Saint-Denis;;[-0.37422, 49.220695];;FRS69ESYDR3011;FR*SOD*E*MAMP*7*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.904563;49.306469;;;; +;;;;;;;;FRA05PRMBT3512;P2SBBU9AIE;Trévières, Place du Marché;;24 Rue Guillaume de la Tremblay 27300 Berney;;[-0.672848, 48.853397];;FRS69ESYDR3111;FR*SOD*E*MAMP*6*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.101527;48.929178;;;; +;;;;;;;;FRA05PRMBT3212;IOA9IKAACX;Touques, Place Georges Roger;;11 Allée De L'économie 67370 Wiwersheim;;[-0.292248, 49.024796];;FRS69ESYDR4112;FR*SOD*E*MAMP*6*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.66997785;49.20576297;;;; +;;;;;;;;FRA05PRMBT3211;NW2L9MBAJT;Montillières-sur-Orne, Le bourg;;11 Rue René Dumont 77380 Combs-la-Ville;;[-0.854415, 48.840118];;FRS69ESYDR4011;FR*SOD*E*MAMP*5*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.027659;49.204884;;;; +;;;;;;;;FRA05PRMBT3312;QGKCHS3PHE;Trouville-sur-Mer, Boulevard Fernand Moureaux;;Chemin Des Sept Voies 14100 Hermival-les-Vaux;;[-0.904563, 49.374043];;FRS69ESYDR4012;FR*SOD*E*MAMP*18*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.275651;49.204266;;;; +;;;;;;;;FRA05PRMBT3311;DPDFCD;Vire Normandie, Avenue de la Gare;;7 Rue Saint-Germain 27400 Louviers;;[-0.101527, 49.121693];;FRS69ESYDR3912;FR*SOD*E*MAMP*5*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.207299;49.18362;;;; +;;;;;;;;FRA05PRMBT3411;LLKI9GCZU29A8F;Creully sur Seulles, Rue de Bayeux;;7 Terrasse Champagne 57400 Sarrebourg;;[8.66997785, 41.99213631];;FRS69ESYDR3911;FR*SOD*E*MAMP*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.273392;49.085377;;;; +;;;;;;;;FRA05PRMBT3412;PDC6ZL4PFH;Villerville, Place du Lavoir 11;;24 Route De Nîmes 30190 Saint-Geniès-de-Malgoirès;;[0.027659, 49.33881];;FRS69ESYDR3812;FR*SOD*E*MAMP*3*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.303067;48.917553;;;; +;;;;;;;;FRA05PRMBT3511;XLPHWS;Vire Normandie, Rue du Cotin;;Route De Mouthiers 16440 Roullet-Saint-Estèphe;;[-0.275651, 49.24791];;FRS69ESYDR3811;FR*SOD*E*MAMP*3*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.263063;49.292938;;;; +;;;;;;;;FRA05PRMBT3612;LLJYET1MT29ZIY;Vire Normandie, Rue Turpin;;Suaralta 20169 Bastelicaccia;;[-0.207299, 49.124958];;FRS69ESYDR3711;FR*SOD*E*MAMP*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.298162;49.359657;;;; +;;;;;;;;FRA05PRMBT3611;KVIRJDVIRT;Vire Normandie, Rue Saint-Martin;;3 Terrasse Champagne 57400 Sarrebourg;;[0.273392, 49.245373];;FRS69ESYDR3712;FR*SOD*E*MAMP*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.059013;48.986382;;;; +;;;;;;;;FRA05PRMBT3712;IPYVK0DJ6C;Vire Normandie, Rue des Peupliers;;Pentone 20250 Corte;;[-0.303067, 49.226357];;FRS69ESYDR3612;FR*SOD*E*MAMP*18*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.165716;48.792999;;;; +;;;;;;;;FRA05PRMBT3711;KOB2XOCXWB;Falaise, Rue du Champ Saint-Michel;;12 Rue Ettore Bugatti 67500 Haguenau;;[-0.263063, 49.192703];;FRS69ESYDR3611;FR*SOD*E*MAMP*37*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.633224;49.24025;;;; +;;;;;;;;FRA05PRMBT3812;XKURJS;Trévières, Route de Bayeux;;3 Rue De La Foulerie 51270 Orbais-l'Abbaye;;[-0.298162, 49.228291];;FRS69ESYDR3512;FR*SOD*E*MAMP*19*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.00949802;49.187656;;;; +;;;;;;;;FRA05PRMBT3811;YBDSF1GAWY;Ver-sur-Mer, Route d'Asnelles;;2 Rue Dessirier 57400 Sarrebourg;;[0.059013, 49.252686];;FRS69ESYDR3412;FR*SOD*E*MAMP*35*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.51847393;49.334774;;;; +;;;;;;;;FRA05PRMBT2311;MNDEBE;Dozulé, Place Jean Vasnier;;8b rue André-Marie Ampère 13880 Velaux;;[-0.165716, 49.127666];;FRS69ESYDR3411;FR*SOD*E*MAMP*36*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.029128;49.290691;;;; +;;;;;;;;FRA05PRMBT2412;FGZWXSCGAV;Équemauville, Place de la Paix;;1 Rue Des Biocarburants 17220 Saint-Médard-d'Aunis;;[-0.633224, 49.021641];;FRS69ESYDR3312;FR*SOD*E*MAMP*36*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.80973;49.146912;;;; +;;;;;;;;FRA05PRMBT2612;KOMG7EKARS;Évrecy, Place de la Mairie;;Rue Marguerite Et René Filhol 47300 Villeneuve-sur-Lot;;[-0.00949802, 49.141176];;FRS69ESYDR3311;FR*SOD*E*MAMP*37*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.83958454;49.265347;;;; +;;;;;;;;FRA05PRMBT2312;HSIVEYPWFI;Évrecy, Rue de la Cabottière;;Avenue De La Mer 83140 Six-Fours-les-Plages;;[-0.51847393, 48.86885129];;FRS69ESYDR3212;FR*SOD*E*MAMP*40*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.079897;49.164383;;;; +;;;;;;;;FRA05PRMBT611;FOXO36TF3N;Équemauville, Chemin de la Plane;;551 Avenue Du 22 Août 1944 13300 Salon-de-Provence;;[-0.029128, 49.306469];;FRS69ESYDR3211;FR*SOD*E*MAMP*40*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.296286;49.25483875;;;; +;;;;;;;;FRA05PRMBT1011;EXBJBK;Ellon, Haut d'Ellon;;Z.I du Vazzio 20900 Ajaccio;;[-0.80973, 48.929178];;FRS69ESYDR3112;FR*SOD*E*MAMP*41*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.30948;48.5265;;;; +;;;;;;;;FRA05PRMBT1012;E8G5ELE480;Verson, Rue de Joal;;617 Route Des Princes D'orange 84190 Gigondas;;[-0.83958454, 49.20576297];;FRS69ESYDR6461;FR*SOD*E*MAMP*42*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.424286;48.6196;;;; +;;;;;;;;FRA05PRMBT911;QMLUBIPCHF;Épron, Rue Éole;;16 Route De Saint-Chamas 13800 Istres;;[0.079897, 49.204884];;FRS69ESYDR6011;FR*SOD*E*MAMP*42*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.48176;44.839064;;;; +;;;;;;;;FRA05PRMBT912;LLJYEQ3G7O5R6V;Valdallière, Rue Joseph Requeut 46;;64 Avenue Ernest Cristal 63170 Aubière;;[-0.296286, 49.204266];;FRS69ESYDR6481;FR*SOD*E*MAMP*43*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.283343;50.471483;;;; +;;;;;;;;FRA05PRMBT812;RPGBBAKTHH;Urville, Route de Langannerie/D131;;Route De Corbara 20256 Corbara;;[-0.30948, 49.18362];;FRS69ESYDR1412;FR*SOD*E*MAMP*43*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.840685;43.6624;;;; +;;;;;;;;FRA05PRMBT811;VGVNSN;Vire Normandie, Place de la Mairie;;2140 Campo Vallone 20620 Biguglia;;[-0.424286, 49.085377];;FRS69ESYDR1112;FR*SOD*E*MAMP*45*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.472951;46.669091;;;; +;;;;;;;;FRA05PRMBT712;YHVKCF;Vierville-sur-Mer, Route de Formigny;;35A rue principale 67120 Ergersheim;;[-0.48176, 48.917553];;FRS69ESYDR1111;FR*SOD*E*MAMP*45*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.007925;48.9568;;;; +;;;;;;;;FRA05PRMBT711;DXQVXC;Mézidon Vallée d'Auge, D613;;21 place Lalaque 82000 Montauban;;[-0.283343, 49.292938];;FRS69ESYDR1211;FR*SOD*E*MAMP*52*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.327253;48.5396;;;; +;;;;;;;;FRA05PRMBT612;SGEMRSLVN3;Appietto, Résidence du Golf de Lava;;5 rue de la Mairie 82110 Lauzerte;;[-0.840685, 49.359657];;FRS69ESYDR1212;FR*SOD*E*MAMP*52*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.047522;43.6136856;;;; +;;;;;;;;FRA05PRMBT512;XIXGQQFMOL;Blonville-sur-Mer, Rue Pierre Jacquot;;202 rue de la Gare 82170 Montmartier;;[-0.472951, 48.986382];;FRS69ESYDR1311;FR*SOD*E*MAMP*19*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.418581;43.61424028;;;; +;;;;;;;;FRA05PRMBT1111;KLBKXT19XL;Bénouville, Avenue de la Côte de Nacre;;496 route de Montauban 82290 Montbeton;;[-1.007925, 48.792999];;FRS69ESYDR1312;FR*SOD*E*MAMP*35*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.432045;48.309631;;;; +;;;;;;;;FRA05PRMBT511;braspanon2002;Bellengreville, Route de Paris 1;;11 avenue de Toulouse 82600 Aucamville;;[-0.327253, 49.24025];;FRS69ESYDR1411;FR*SOD*E*MAMP*41*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.268813;46.69645546;;;; +;;;;;;;;FRA05PRMBT2212;SHRWKOFQRZ;Blangy-le-Château, Chemin du Pont Vert;;1187 route de Toulouse 82700 Escatalens;;[-0.047522, 49.187656];;FRS69ESYDR1011;FR*SOD*E*MAMP*34*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.406258;48.3018;;;; +;;;;;;;;FRA05PRMBT411;SKSFD8QFSZ;Blainville-sur-Orne, Rue Maurice Hébert;;Le Village 82120 Gramont;;[-0.418581, 49.334774];;FRS69ESYDR1512;FR*SOD*E*MAMP*28*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.42327;49.270863;;;; +;;;;;;;;FRA05PRMBT311;ZPQVODGTYL;Cuverville, Rue de Sannerville;;4 place du Foirail 82160 Parisot;;[-0.432045, 49.290691];;FRS69ESYDR1511;FR*SOD*E*MAMP*20*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.05630619;49.280796;;;; +;;;;;;;;FRA05PRMBT312;THLHDS2GGN;Blainville-sur-Orne, Rue du Général de Gaulle;;147 place de la Mairie 82700 Montbartier;;[0.268813, 49.146912];;FRS69ESYDR1611;FR*SOD*E*MAMP*34*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.65415;49.171944;;;; +;;;;;;;;FRA05PRMBT211;leportzac2000;Annebault, Le Bourg;;Place de l'Eglise 82290 La ville-Dieu-du-Temple;;[-0.406258, 49.265347];;FRS69ESYDR1612;FR*SOD*E*MAMP*21*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.49075;49.23114;;;; +;;;;;;;;FRA05PRMBT212;possessjolizac;Argences, Rue Gueritot;;410 Route des Pigeonniers 82300 Monteils;;[-0.42327, 49.164383];;FRS69ESYDR1712;FR*SOD*E*MAMP*21*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.588364;49.182762;;;; +;;;;;;;;FRA05PRMBT112;CNMYXQ1FIG;Les Monts d'Aunay, Place du Marché;;12 Rue Blatin 63000 Clermont-Ferrand;;[0.05630619, 49.25483875];;FRS69ESYDR1711;FR*SOD*E*MAMP*27*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.716425;49.338478;;;; +;;;;;;;;FRA05PRMBT111;J2WYHZVZ7P;Notre-Dame d'Estrees Corbon, Route de Bonnebosq;;2 allée de l'Empereur 82000 Montauban;;[2.65415, 48.5265];;FRS69ESYDR1012;FR*SOD*E*MAMP*27*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.13123;49.575503;;;; +;;;;;;;;FRA05PRMBT1112;stgillestama;Saint-Denis-de-Méré, D562;;121 rue de la République 82370 Nohic;;[7.49075, 48.6196];;FRS69ESYDR912;FR*SOD*E*MAMP*28*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.552983;45.60512863;;;; +;;;;;;;;FRA05PRMBT412;BMMQ9BPZYD;Auberville, D513;;18 D115 82800 Nègrepelisse;;[-0.588364, 44.839064];;FRS69ESYDR1812;FR*SOD*E*MAMP*20*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.90698;43.683611;;;; +;;;;;;;;FRA05PRMBT1212;pierrefondsrn;Souleuvre En Bocage, Rue de la Bruyère;;12 Rue de l'Ancienne École 82400 Pommevic;;[2.716425, 50.471483];;FRS69ESYDR512;FR*SOD*E*MAMP*29*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.66033;48.5073;;;; +;;;;;;;;FRA05PRMBT1712;standreidf;Vaubadon, route de Saint-Lô;;1 rue Saint-Blaise 82800 Nègrepelisse;;[7.13123, 43.6624];;FRS69ESYDR212;FR*SOD*E*MAMP*30*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.49076;45.574515;;;; +;;;;;;;;FRA05PRMBT1211;saintemarien2;Bonnebosq, Avenue du Verdun;;20 rue du Tulmonenc 82410 Saint-Etienne-de-Tulmont;;[5.552983, 46.669091];;FRS69ESYDR211;FR*SOD*E*MAMP*30*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.124831199;47.9133;;;; +;;;;;;;;FRA05PRMBT2211;steclotilde;Colombelles, Place Francois Mitterand;;2 Boulevard Edouard Herriot 82000 Montauban;;[2.90698, 48.9568];;FRS69ESYDR312;FR*SOD*E*MAMP*31*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.12708513;49.28792082;;;; +;;;;;;;;FRA05PRMBT2111;stbenoitjaures;Colombelles, Rue de la Coopérative;;3 Rue de l'Égalité 82000 Montauban;;[2.66033, 48.5396];;FRS69ESYDR311;FR*SOD*E*MAMP*31*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.139877;49.292559;;;; +;;;;;;;;FRA05PRMBT2112;FQPWPW;Laize-Clinchamps, D41;;42 Avenue du 10' Dragons 82000 Montauban;;[7.49076, 48.6196];;FRS69ESYDR412;FR*SOD*E*MAMP*29*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.72717042;49.29202059;;;; +;;;;;;;;FRA05PRMBT2011;58d90daa7c461;Clécy, Rue Arsène Delavigne;;9 Chemin de Ronde 82800 Montricoux;;[7.124831199, 43.6136856];;FRS69ESYDR411;FR*SOD*E*MBDG*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.13324;49.287709;;;; +;;;;;;;;FRA05PRMBT1911;JYFTYHFQUW;Colleville-Montgomery, Rue du Commandant Kieffer;;D46 82400 Montjoi;;[7.12708513, 43.61424028];;FRS69ESYDR511;FR*SOD*E*MBDG*1*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.706692;49.175013;;;; +;;;;;;;;FRA05PRMBT1912;BQZARA0WGY;Colleville-sur-Mer, Cavey;;Avenue Camille-Bégué 82500 Larrazet;;[6.139877, 48.309631];;FRS69ESYDR911;FR*SOD*E*MBDG*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.707942;49.134693;;;; +;;;;;;;;FRA05PRMBT1812;LLJCTDVDU3YIRJ;Le Hom, Rue de Beauvoir;;Le Village 82120 Poupas;;[5.72717042, 46.69645546];;FRS69ESYDR611;FR*SOD*E*MBDG*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.303376;49.07643468;;;; +;;;;;;;;FRA05PRMBT1811;stphilipreuni;Biéville-Beuville, Place de Margetshochheim;;Rue de la Fontaine 82190 Bourg-de-Visa;;[6.13324, 48.3018];;FRS69ESYDR612;FR*SOD*E*MBDG*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.190402;49.329438;;;; +;;;;;;;;FRA05PRMBT2012;salinetamarin;Beuvron-en-Auge, Avenue de la Gare;;Chemin du Ravelin 82800 Bruniquel;;[-0.706692, 49.270863];;FRS69ESYDR6511;FR*SOD*E*MBDG*3*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.834075;49.287834;;;; +;;;;;;;;FRA05PRMBT1711;stpierrebois;Bernières-sur-Mer, Rue Victor Tesnière;;66 Promenade du Château 82100 Castelsarrasin;;[-0.707942, 49.280796];;FRS69ESYDR711;FR*SOD*E*MBDG*6*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.623846;49.01214577;;;; +;;;;;;;;FRA05PRMBT1612;I09GDOR3YZ;Bény-sur-Mer, Route de Courseulles;;Avenue du Général de Gaulle 82350 Albias;;[-0.303376, 49.171944];;FRS69ESYDR812;FR*SOD*E*MBDG*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.99793;49.080152;;;; +;;;;;;;;FRA05PRMBT1511;W31RKKRAWS;Lisieux, Rue Nicolas Dulong 102;;Allée de la Promenade 82210 Caumont;;[-0.190402, 49.23114];;FRS69ESYDR811;FR*SOD*E*MBDG*5*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0971813;49.32043809;;;; +;;;;;;;;FRA05PRMBT1512;HWK6HWHJML;Colomby-Anguerny, Rue du Bout Maçon;;Parking de la Mairie 82190 Touffailles;;[-0.834075, 49.182762];;FRS69ESYDR1811;FR*SOD*E*MBDG*6*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.81077;49.10059;;;; +;;;;;;;;FRA05PRMBT1412;stpierrelegol;Bretteville-sur-Odon, Avenue du Fresne 1;;1860 D958 82330 Varen;;[-0.623846, 49.338478];;FRS69ESYDR712;FR*SOD*E*MBDG*7*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.73394;49.2001;;;; +;;;;;;;;FRA05PRMBT1411;IOMGH1LYJJ;Annebault, Route de Lisieux;;Avenue du Brulhois 82340 Donzac;;[2.99793, 49.575503];;FRS69ESYDR1912;FR*SOD*E*MBDG*7*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.304622;49.35398;;;; +;;;;;;;;FRA05PRMBT1311;VLIGQ2PRQT;Melun, Ermitage;;Avenue du Languedoc 82600 Saint-Sardos;;[4.0971813, 45.60512863];;FRS69ESYDR6622;FR*SOD*E*SHEL*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.83054;49.29363;;;; +;;;;;;;;FRA05PRMBT1611;ATVPPC;Marlenheim, Usine;;7 Place du 8 Mai 1945 82290 Meauzac;;[3.81077, 43.683611];;FRS69ESYDR6512;FR*SOD*E*SHEL*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.3032;48.850952;;;; +;;;;;;;;FRA05PRMBT1312;HUXQMH;Marty Hôtel Bordeaux, Tapestry Collection By Hilton;;Rue d'occitanie 82370 Labastide-Saint-Pierre;;[-2.73394, 48.5073];;FRS69ESYDR6621;FR*SOD*E*SHEL*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.11542093;49.334377;;;; +;;;;;;;;FRIZMPMAMP1311;W9MMBJJDP7;Mazingarbe, Place Roger Salengro;;40 Rue Moissagaise 82300 Caussade;;[5.304622, 45.574515];;FRPA1EAVPT812;FR*SOD*E*SHEL*12*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.114171;48.972824;;;; +;;;;;;;;FRIZMPMAMP1122;WFJRFUKQ6R;Cagnes-sur-Mer, Mc Donald's;;2 Rue Neuve des Capucins 82100 Castelsarrasin;;[4.83054, 46.7974];;FRPA1EAVPT811;FR*SOD*E*SHEL*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.12437493;49.381866;;;; +;;;;;;;;FRIZMPMAMP1121;GPB1IX5XMY;McDonald's Lons-le-Saunier, Boulevard Gambetta;;2 Rue du Stade 82370 Corbarieu;;[7.3032, 47.9133];;FRPA1EAVPT711;FR*SOD*E*SHEL*7*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.11679;49.381893;;;; +;;;;;;;;FRIZMPMAMP1211;FJFJ2RMYHE;Meaux Hôtel B-B Victoire;;Parking de la Mairie 82390 Durfort-Lacapelette;;[-0.11542093, 49.28792082];;FRPA1EAVPT511;FR*SOD*E*SHEL*9*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.624846;49.155018;;;; +;;;;;;;;FRIZMPMAMP1212;LC4ZL3O1T1;Melun, Paul Doumer;;4 Avenue André Vidalot 82340 Dunes;;[-0.114171, 49.292559];;FRPA1EAVPT321;FR*SOD*E*SHEL*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.295243;48.872356;;;; +;;;;;;;;FRIZMPMAMP1312;JCGVYIN2UP;Antibes, Parc Marineland;;131 chemin de Biscardel 82130 L'Honor-de-Cos;;[-0.12437493, 49.29202059];;FRPA1EAVPT212;FR*SOD*E*SHEL*11*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.49475503;49.129959;;;; +;;;;;;;;FRIZMPMAMP1512;JARZHUSIDC;Antibes, Hôtel Marineland;;11 rue Salvador-Allende 82000 Montauban;;[-0.11679, 49.287709];;FRPA1EAVPT211;FR*SOD*E*SHEL*13*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.42273;49.402374;;;; +;;;;;;;;FRIZMPMAMP1411;SPVJLC;Mirecourt, Menuiserie Olry;;Parking Ecole et Salle Polyvalente 82700 Bourret;;[-0.624846, 49.175013];;FRPA1EAVPT112;FR*SOD*E*SHEL*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.197402;49.18866;;;; +;;;;;;;;FRIZMPMAMP1412;PHRNCR;Mirebel, Parking rue du Visenay;;Rue des Acacias 82200 Malause;;[-0.295243, 49.134693];;FRPA1EAVPT111;FR*SOD*E*SHEL*15*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.08856957;49.023678;;;; +;;;;;;;;FRIZMPMAMP1511;UNQ35Y4FOV;Mirecourt, Rue du Bailliage;;Rue de la Mandoune 82000 Montauban;;[-0.49475503, 49.07643468];;FRPA1EAVPT411;FR*SOD*E*SHEL*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.651174;48.840595;;;; +;;;;;;;;FRIZMPMAMP1712;BQORNYNAFT;Bayeux, Boulevard Maréchal Leclerc;;25 place de Pradel 82140 St-Antonin-Noble-Val;;[-0.42273, 49.329438];;FRS24EMB249312;FR*SOD*E*OTHR*133*6*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.35496471;48.989704;;;; +;;;;;;;;FRIZMPMAMP1711;YUCPGH;Bayeux, Rue Montfiquet;;2 place des Mûriers 82300 Caussade;;[0.197402, 49.287834];;FRS24EMB247812;FR*SOD*E*OTHR*133*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.151468;49.057525;;;; +;;;;;;;;FRIZMPMAMP1012;AVYDUIQNKS;Mondeville, Route de Rouen;;Avenue Hugues IV de Cardaillac 82800 Bioule;;[0.08856957, 49.01214577];;FRS24EMB2410311;FR*SOD*E*OTHR*133*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.212054;49.08564;;;; +;;;;;;;;FRIZMPMAMP1011;WSUNAEBUPJ;Bavent, Rue de la Petite Justice;;131 rue de la Gare 82170 Grisolles;;[-0.651174, 49.080152];;FRS24EMB2410312;FR*SOD*E*OTHR*133*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.05713;49.13478;;;; +;;;;;;;;FRIZMPMAMP412;SK6TT9VRDT;Balleroy-sur-Drôme, Rue du Sapin;;RN61 82700 Finhan;;[-0.35496471, 49.32043809];;FRS24EMB2410212;FR*SOD*E*OTHR*133*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.11563;49.01914912;;;; +;;;;;;;;FRIZMPMAMP921;TQGFF4VUW8;Arromanches-les-Bains, Rue d'Instow;;1 rue du Vicariat 82110 Cazes-Mondenard;;[-0.151468, 49.10059];;FRS24EMB247711;FR*SOD*E*OTHR*133*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.553656;48.6675565;;;; +;;;;;;;;FRIZMPMAMP922;LR65HDZA52;Noyons, Rue du Moulin d'Andeux;;60 Grand-Rue d'Ardus 82130 Lamothe-Capdeville;;[0.212054, 49.2001];;FRS24EMB2410211;FRS55E66355;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.457717;48.9034;;;; +;;;;;;;;FRIZMPMAMP722;JWCQS9RKYQ;Savigneux, Michel Vacheron Automobiles;;2 place des Récollets 82200 Moissac;;[0.05713, 49.35398];;FRS24EMB247811;FRS41E4326;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.045529;43.31339639;;;; +;;;;;;;;FRIZMPMAMP721;ZV8QSTYK6T;Saint-Gély-du-Fesc, Renault;;336 Rue De La Haie Plouvier 59273 Fretin;;[-0.11563, 49.29363];;FRS24EMB247911;FRS41E4327;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.130294;50.46757455;;;; +;;;;;;;;FRIZMPMAMP622;JNMYHDCGFT;Saint-Brieuc, Hamon Automobiles;;14 avenue du Stade 82150 Montaigu-de-Quercy;;[-0.553656, 48.850952];;FRS24EMB249311;FRS37E4340;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.130306;45.755703;;;; +;;;;;;;;FRIZMPMAMP621;AYZCB8ZTQ9;Dauphiné Poids Lourds Mercedes-Benz;;D24 82150 Belvèze;;[-0.457717, 49.334377];;FRS24EMB247912;FRIENE0026023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.332007;47.88217299;;;; +;;;;;;;;FRIZMPMAMP522;B6KEKD5OQZ;Châtenoy-le-Royal, Mercier SAS;;9 Boulevard de la Papayette 82340 Auvillar;;[-0.045529, 48.972824];;FRS24EMB248112;FRIENE0026024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.913899;45.586642;;;; +;;;;;;;;FRIZMPMAMP1811;RCJTORNXPX;Merxheim, Gare;;1 Esplanade Gustave Bosc 82130 Lafrançaise;;[0.130294, 49.381866];;FRS24EMB248111;FRIENE0026012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.856212;43.68212111;;;; +;;;;;;;;FRIZMPMAMP521;ZTVN6MH7ZS;Cabourg, Parking Mairie;;1 impasse des Carmes 82000 Montauban;;[0.130306, 49.381893];;FRS24EMB248212;FRS55E66365;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.138757;43.51299111;;;; +;;;;;;;;FRIZMPMAMP411;ENDRSP8NDE;Cabourg, Parking 1 Avenue de la Libération;;Place de la gendarmerie 82230 Monclar-de-Quercy;;[-0.332007, 49.155018];;FRS24EMB248211;FRS41E4328;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.308223;46.374656;;;; +;;;;;;;;FRIZMPMAMP322;GGAMYMHXPY;Cabourg, 1 Avenue de la Brèche Buhot;;21 Avenue du Midi 82400 Golfech;;[-0.913899, 48.872356];;FRS24EMB248412;FRS41E4329;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.405121;47.962185;;;; +;;;;;;;;FRIZMPMAMP321;ZXZOFYGKVX;Cabourg, Parking de la Poste;;3 Avenue de la République 82170 Grisolles;;[-0.856212, 49.129959];;FRS24EMB2410412;FRS55E66364;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.890959;47.08027089;;;; +;;;;;;;;FRIZMPMAMP212;O3NWKI9IIG;Tilly-sur-Seules, Place de la Mairie;;Lenclos 82500 Faudoas;;[0.138757, 49.402374];;FRS24EMB2410411;FRS37E4338;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.481821;43.58381435;;;; +;;;;;;;;FRIZMPMAMP211;QFRZEV9L6M;Soliers, Place de la Mairie;;3 Place du Quatorze Juillet 82360 Lamagistère;;[-0.308223, 49.18866];;FRS24EMB2410612;FRIENE0026011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.21517;48.73065177;;;; +;;;;;;;;FRIZMPMAMP1812;V38EOKLVWI;Sainte-Honorine-du-Fay, Rue du Tour de Ville;;121 Avenue de Toulouse 82170 Monbéqui;;[0.405121, 49.023678];;FRS24EMB2410611;FRS37E1389;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.439307;43.504979;;;; +;;;;;;;;FRIZMPMAMP3712;X42UOLEHM3;Bernières Sur Mer, Rue Montauban;;24 Promenade Sancert 82200 Moissac;;[-0.890959, 48.840595];;FRS24EMB2410712;FRS37E1338;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.288768;47.07137504;;;; +;;;;;;;;FRIZMPMAMP1912;JYI8NQIRWF;Pont-l'Évêque, Rue Georges Clemenceau 42;;Route de Montpezat 82440 Mirabel;;[-0.481821, 48.989704];;FRS24EMB2410711;FRS55E66478;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.03761395;42.11461946;;;; +;;;;;;;;FRIZMPMAMP3511;L3PBLADVLX;Saint-Marguerite-de-Viette, Route de Saint-pierre Sur Dives;;10 rue du 19 Mars 1962 82270 Montpezat-de-Quercy;;[-0.21517, 49.057525];;FRS24EMB2410811;FRS55E66477;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.9879523;50.63343045;;;; +;;;;;;;;FRIZMPMAMP3611;TEJPQMNWKD;Villers-Bocage, Rue Richard Lenoir;;Route de St-Etienne de Tulmont 82230 Léojac;;[-0.439307, 49.08564];;FRS24EMB2410812;FRS37E4339;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3682;48.70900705;;;; +;;;;;;;;FRIZMPMAMP3612;VWZBSK1GBY;Luc-sur-Mer, Rue Guynemer;;2 boulevard de Brienne 82200 Moissac;;[-0.288768, 49.13478];;FRS24EMB2410911;FRIENE0049024;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.471356969;43.776233;;;; +;;;;;;;;FRIZMPMAMP3711;BEECZ8DC9I;Valambray, Rue du Pressoir;;1 Chemin de la Perrine 82220 Molières;;[-0.03761395, 49.01914912];;FRS24EMB2410912;FRCPIE67048452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.67237904;48.467465;;;; +;;;;;;;;FRIZMPMAMP4012;LLK89RD352FJRP;Coquainvilliers, Rue du Manoir de Prie 1;;2 Rue Du Port 77450 Esbly;;[-3.9879523, 48.6675565];;FRS24EMB2411011;FRCPIE67048451;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.142817;45.6604;;;; +;;;;;;;;FRIZMPMAMP4011;F5SXUNWSSF;Tourgeville, rue des terrasses;;17 Boulevard Edgar Quinet 63100 Clermont-Ferrand;;[2.3682, 48.9034];;FRS24EMB2411012;FRS41E4302;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.18896582;44.8262;;;; +;;;;;;;;FRIZMPMAMP4112;HMDWQISHYA;Cabourg, Jardin du casino;;57 Rue Armand Carrel 93100 Montreuil;;[6.471356969, 43.31339639];;FRS24EMB2411111;FRCPIE66043351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.741582;46.213978;;;; +;;;;;;;;FRIZMPMAMP4212;XTEHCGKCGX;Condé-en-Normandie, Rue des Prés Guillets;;1162 Chemin Des Campelières 06250 Mougins;;[2.67237904, 50.46757455];;FRS24EMB2411112;FRS55E66342;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.24029603;45.5586;;;; +;;;;;;;;FRIZMPMAMP4211;XMFRVU;Courseulles-sur-Mer, Place du Six Juin;;118 Avenue de Magudas 33700 Mérignac;;[3.142817, 45.755703];;FRS24EMB2411212;FRS37E4343;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.10790934;48.844303;;;; +;;;;;;;;FRIZMPMAMP4312;MDKATVG2EE;Courcy, Le Bourg;;2 Boulevard De L'armée Des Alpes 06300 Nice;;[7.18896582, 47.88217299];;FRS24EMB2411211;FRS41E4301;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.97394;50.13490872;;;; +;;;;;;;;FRIZMPMAMP4311;SEBLOVH1UF;Cricquebœuf, Centre hospitalier, 2;;13 Avenue Du Général Leclerc 93500 Pantin;;[2.741582, 45.586642];;FRS24EMB2411312;FRS55E66579;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.213878;47.7903;;;; +;;;;;;;;FRIZMPMAMP4512;LT9ZDLYLLD;Cricquebœuf, Centre hospitalier;;306 Avenue Pasteur 33600 Pessac;;[-1.24029603, 43.68212111];;FRS24EMB248411;FRS55E66578;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.47135697;44.18653723;;;; +;;;;;;;;FRIZMPMAMP4511;UZPSHR;Cormelles-le-Royal, Rue des Écoles;;Avenue Des 3 Marches 94150 Rungis;;[-1.10790934, 43.51299111];;FRS24EMB248512;FRS28E134205;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.28624508;44.03194015;;;; +;;;;;;;;FRIZMPMAMP5212;KIDYA8RB2N;Vire Normandie, Le Bourg;;Rue Pasteur 92210 Saint-Cloud;;[5.97394, 46.374656];;FRS24EMB248511;FRS28E134202;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.51352747;45.824272;;;; +;;;;;;;;FRIZMPMAMP5211;ZBOK49QJWD;Cormolain, Place de la Mairie;;134 Boulevard Michelet 13008 Marseille;;[0.213878, 47.962185];;FRS24EMB2410012;FRS55E66343;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.08304118;46.5475;;;; +;;;;;;;;FRIZMPMAMP1911;BB7LOI4JNQ;Cricquebœuf, D513;;57 Rue Du Général Dufieux 68650 Lapoutroie;;[6.47135697, 43.31339639];;FRS24EMB249411;FRS55E66597;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.490938;48.6106;;;; +;;;;;;;;FRIZMPMAMP3512;KXIPG0APTF;Colombelles, Rue Irène Joliot-Curie;;50 Avenue Des Pyrénées 33140 Villenave-d'Ornon;;[-1.28624508, 47.08027089];;FRS24EMB249412;FRS28E139335;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.8491821;48.8912276;;;; +;;;;;;;;FRIZMPMAMP4111;SY2XSTFI1W;Orbec, Boulevard de Beauvoir 27;;5 Rue Saint-Simon 69009 Lyon;;[1.51352747, 43.58381435];;FRS24EMB249512;FRS55E66596;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.55017662;42.406751;;;; +;;;;;;;;FRIZMPMAMP3411;WDHVUHHABK;Vire Normandie, Rue Emile Zimmermann 2;;110 Rue Du Companet 69140 Rillieux-la-Pape;;[7.08304118, 48.73065177];;FRS24EMB249511;FRS55E66587;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.76945343;49.1121;;;; +;;;;;;;;FRIZMPMAMP2812;CT0ATMJPPT;Le Hom, Voie verte de la Suisse Normande;;364 Route De Vienne 69200 Vénissieux;;[0.490938, 43.504979];;FRS24EMB249612;FRS55E66586;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.238957843;49.11128239;;;; +;;;;;;;;FRIZMPMAMP2012;MXD9XM3LXS;Saint-Sylvain, Impasse des Semences;;Boulevard Des Arpents 78310 Coignières;;[-0.8491821, 47.07137504];;FRS24EMB249611;FRS55E93387;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.497648;48.215477;;;; +;;;;;;;;FRIZMPMAMP3412;HMQK6YW1HW;Amayé-sur-Orne, Grande Rue;;309 Route de Toulouse 33140 Villenave-d'Ornon;;[9.55017662, 42.11461946];;FRS24EMB249711;FRS55E93386;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.546796;48.68083874;;;; +;;;;;;;;FRIZMPMAMP2112;citysaone;Soliers, Route du Four;;Route D'ars 01480 Savigneux;;[2.76945343, 50.63343045];;FRS24EMB249712;FRS55E66351;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0909;48.69764566;;;; +;;;;;;;;FRIZMPMAMP2111;M5PDKFW3KB;Saint Pierre Sur Dives, Rue du Bief;;107 Rue Principale 01390 Mionnay;;[6.238957843, 48.70900705];;FRS24EMB2411412;FRS55E66350;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.59592;48.57796729;;;; +;;;;;;;;FRIZMPMAMP2712;LLJWGJ3GU39PIK;Saint-Pol-de-Léon, Route de Lanvalou;;6 rue de la Fontaine 57410 Rahling;;[7.497648, 43.776233];;FRS24EMB249811;FRS28E139334;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.757397;48.0584202;;;; +;;;;;;;;FRIZMPMAMP2711;E9D0SEHF8O;Aubervilliers, Rue du Lin;;1 Rue De L'état 88160 Ramonchamp;;[-2.546796, 48.467465];;FRS24EMB249812;FRS55E66603;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.62097;48.051225;;;; +;;;;;;;;FRIZMPMAMP2811;L5AB9NSGAH;La Garde Freinet, boulevard de l'Esplanade;;20 rue de la Tour 88110 Raon-l'Etape;;[3.0909, 45.6604];;FRS24EMB249912;FRCPIE66043352;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.642588;43.438134;;;; +;;;;;;;;FRIZMPMAMP2011;OSU51U9FJZ;Nœux-les-Mines, Hôtel-Restaurant La Maison Rouge;;46 Quai Du Romerel 80230 Saint-Valery-sur-Somme;;[1.59592, 44.8262];;FRS24EMB2410111;FRS55E66592;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.79741563;47.449045;;;; +;;;;;;;;FRIZMPMAMP2912;KZSHZFIZDN;Aubière, La Rôtisserie;;9 Rue Des Alpes 07520 Lalouvesc;;[4.757397, 46.213978];;FRS24EMB249911;FRS37E1343;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.31549;45.89023;;;; +;;;;;;;;FRIZMPMAMP3011;BLJKQY;Route De Thierenbach , Jungholtz;;Zone de Lachaup-Est N85 05000 Gap;;[2.62097, 45.5586];;FRS24EMB2410011;FRS37E1344;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.13344649;45.56644198;;;; +;;;;;;;;FRIZMPMAMP3012;PNTCPDQEGB;La Bourboule, La tour Pom'pin;;306 Route de Bourg-en-Bresse 01390 Saint-André-de-Corcy;;[7.642588, 48.844303];;FRS24EMB248612;FRCPIE66045451;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.48380838;49.184013;;;; +;;;;;;;;FRIZMPMAMP3112;AYP7STRGYF;Saint-Geours-de-Maremne, Route de Bayonne;;577 route de Saint-Trivier-sur-Moignans 01330 Ambérieux en Dombes;;[1.79741563, 50.13490872];;FRS24EMB249212;FRS55E66354;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.257253;43.23148161;;;; +;;;;;;;;FRIZMPMAMP3111;KEQHCV;Came, Zone Artisanale Hippodrome;;34 Rue Michael Faraday 37170 Chambray-lès-Tours;;[7.31549, 47.7903];;FRS24EMB249211;FRCPIE66373852;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.98026;49.00326919;;;; +;;;;;;;;FRIZMPMAMP2911;PXWENV;Lajoux, Quartier Le Village;;2 Avenue Roger Hennequin 78190 Trappes;;[5.13344649, 44.18653723];;FRS24EMB2410112;FRCPIE66373851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.29887;45.88901564;;;; +;;;;;;;;FRSDGPMBDG311;FAHNNHQAL5;Le Mans, La Isla Bonita;;81 Rue Des Chantiers 78000 Versailles;;[5.48380838, 44.03194015];;FRS24EMB248611;FRS55E66593;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.14865627;48.89969182;;;; +;;;;;;;;FRSDGPMBDG112;ZGTKMH9RNZ;Clisson, Le Hall Lacroix;;29 Avenue De Paris 33310 Lormont;;[1.257253, 45.824272];;FRS24EMB249111;FRS55E66186;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.6461922;48.65405506;;;; +;;;;;;;;FRSDGPMBDG111;GU4YLMRYYZ;Quint-Fonsegrives, La Fontaine aux Grives;;3 Rue Louis Pasteur 14200 Hérouville-Saint-Clair;;[2.98026, 46.5475];;FRS24EMB249112;FRS55E66604;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.21888;48.972848;;;; +;;;;;;;;FRSDGPMBDG211;H8FAY4PGG0;Buhl-Lorraine, Zone Ariane;;Rue Lelièvre 59120 Loos;;[-4.29887, 48.6106];;FRS24EMB249012;FRS55E66185;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.21648656;-17.6226109;;;; +;;;;;;;;FRSDGPMBDG212;JBSMDYN6DU;La caberte, Loubersan;;19 Rue Marcellin Berthelot 59120 Loos;;[2.14865627, 48.8912276];;FRS24EMB249011;FRS55E66174;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.775882;-17.7426183;;;; +;;;;;;;;FRSDGPMBDG312;DXVCIGXZXW;Cholet, La Casse;;1565 Chemin De Ceinture 13400 Aubagne;;[8.6461922, 42.406751];;FRS24EMB248911;FRS55E66173;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.3419384;44.70702;;;; +;;;;;;;;FRSDGPMBDG611;GEKQLCBJQX;La Cave d'Aléria, Rue du Lustincone;;57 avenue du Général Leclerc 92100 Boulogne-Billancourt;;[2.21888, 49.1121];;FRS24EMB248711;FRS37E4315;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.60638081;44.42091556;;;; +;;;;;;;;FRSDGPMBDG511;LLISKVAE12QGET;La Gorgue, La Ceriseraie;;159 route de Gouesnou 29200 Brest;;[2.21648656, 49.11128239];;FRS24EMB248912;FRS37E4314;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.60960815;48.08433633;;;; +;;;;;;;;FRSDGPMBDG512;LLJ2IG4DK1XFQ8;Essey-lès-Nancy, Avenue du 69ième Régiment d'Infanterie;;Avenue De La Jalle Noire 33520 Bruges;;[-1.775882, 48.215477];;FRS24EMB248812;FRS37E4313;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.32832409;48.978725;;;; +;;;;;;;;FRSDGPMBDG612;LLISKTTRBAZEKD;Menton, Rue du Louvre;;7 Rue Roger Salengro 59120 Loos;;[-1.3419384, 48.68083874];;FRS24EMB248811;FRS37E4312;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.865644;48.609489;;;; +;;;;;;;;FRSDGPMBDG731;RD8XXQESXZ;Lamballe-Amor, Lamballe Carrelage;;8 Rue des Proyes 88250 La Bresse;;[2.60638081, 48.69764566];;FRS24EMB248712;FRS37E4342;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.315753;48.4648759;;;; +;;;;;;;;FRSDGPMBDG732;RZTXNK;Saint-Saturnin, Le Bistrot d'ici;;31 Zone Industrielle De Tragone 20620 Biguglia;;[2.60960815, 48.57796729];;FRS24EMB2411311;FRS41E4383;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.532914;48.83297261;;;; +;;;;;;;;FRSPSPSHEL311;YKFOCWHZH9;Rocamadour, Le Bois d'Imbert;;Temae 98728 Moorea;;[1.32832409, 48.0584202];;FRS24EMB2413112;FRS37E4344;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.275852;48.58069919;;;; +;;;;;;;;FRSPSPSHEL111;SuperUgren;La Chapelle-de-Guinchay, Château des Broyers;;18 rue du Hohneck 88250 La Bresse;;[6.865644, 48.051225];;FRS24EMB2411411;FRIONE459205;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.96870198;44.178949;;;; +;;;;;;;;FRSPSPSHEL211;RJ9YJ5MPTD;Tauves, Le Clos Auvergnat;;332 Rue Du Colonel Jean Colonna D'ornano 59120 Loos;;[1.315753, 43.438134];;FRS24EMB2411512;FRS41E4440;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.3706712;48.513507;;;; +;;;;;;;;FRSPSPSHEL1211;FATVBU;Niedermodern, Rue de l'Artisanat;;28 Boulevard De La République 92100 Boulogne-Billancourt;;[-0.532914, 47.449045];;FRS24EMB2414111;FRS41E4441;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.65855422;43.56209266;;;; +;;;;;;;;FRSPSPSHEL411;PZKKDSGJXT;Grand-Laviers, Route du Val;;3 montée Commandant de Robien 13011 Marseille;;[1.275852, 45.89023];;FRS24EMB2414112;FRS28E130756;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.08322656;48.7744994;;;; +;;;;;;;;FRSPSPSHEL711;GXZPR6RW7D;Kingersheim, Le Florival;;261 Boulevard Demorieux 72100 Le Mans;;[5.96870198, 45.56644198];;FRS24EMB2414212;FRS41E4485;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.07251158;49.18885149;;;; +;;;;;;;;FRSPSPSHEL911;S4WKO92WF7;Malaucène, Route du Hameau de Veaux;;67 rue Victor Hugo 92300 Levallois-Perret;;[5.3706712, 49.184013];;FRS24EMB2414211;FRS41E4486;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.07803362;48.589142;;;; +;;;;;;;;FRSPSPSHEL1011;ZBM4NFEKPJ;Hameau Le Bosquet, Saint-Christol;;123 Route De Cannes 06130 Grasse;;[6.65855422, 43.23148161];;FRS24EMB2414311;FRS41E4489;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.99288892;49.071433;;;; +;;;;;;;;FRSPSPSHEL1111;DEGS0UBYCI;Restaurant, Le Cheverny;;Chemin De L’Oratoire De Bouc 13120 Gardanne;;[2.08322656, 49.00326919];;FRS24EMB2414312;FRS41E4490;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.987925;49.34989;;;; +;;;;;;;;FRSPSPSHEL1311;RFHEYE;Ygrande, Le Château d'Ygrande;;8 Boulevard Georges Clémenceau 92400 Courbevoie;;[3.07251158, 45.88901564];;FRS24EMB2414412;FRS41E4493;;;;;;;;;;;;;;;;;;;;;;;;;;;;-149.613263;49.083182;;;; +;;;;;;;;FRSPSPSHEL1411;O3UK5WP8FZ;Plouider, La Butte;;104 Promenade De La Plage 06800 Cagnes-sur-Mer;;[2.07803362, 48.89969182];;FRS24EMB2414411;FRS41E4494;;;;;;;;;;;;;;;;;;;;;;;;;;;;-149.319334;50.85124067;;;; +;;;;;;;;FRSPSPSHEL1521;P51P4TWAKQ;Chatou, LS Group;;219 Avenue Francis Tonner 06150 Cannes;;[-1.99288892, 48.65405506];;FRS24EMB2414512;FRIONE459201;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.586486;44.81628383;;;; +;;;;;;;;FRSPSPSHEL511;N0WQCZ7HFA;Galeria, L'Incantu;;31 quai des Carrières 94220 Charenton-le-Pont;;[1.987925, 48.972848];;FRS24EMB2414511;FRIONE459202;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.89605592;43.33347765;;;; +;;;;;;;;FROTHPOTHR13361;DN0FDTWVO7;L'Isle-Adam, Grande Rue;;4 Avenue De Stalingrad 94260 Fresnes;;[-149.613263, -17.6226109];;FRS24EMB2414611;FRIONE459203;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.67808295;45.8044199;;;; +;;;;;;;;FROTHPOTHR13311;EYFAUZGMKE;L'Isle-Adam, Rue Martel;;Allées D' Azémar 83300 Draguignan;;[-149.319334, -17.7426183];;FRS24EMB2414612;FRIONE459204;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.691828;46.483018;;;; +;;;;;;;;FROTHPOTHR13321;CAVUWXJOAT;Gévezé, LR Habitat;;Rue De L'usine 57525 Talange;;[-0.586486, 44.70702];;FRS24EMB2414711;FRIONE459206;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.056644;49.328758;;;; +;;;;;;;;FROTHPOTHR13351;LAJGBRQMTY;Avranches, LS Group;;6 Grand'rue 57525 Talange;;[4.89605592, 44.42091556];;FRS24EMB2414712;FRS41E4436;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.05903764;49.256228;;;; +;;;;;;;;FROTHPOTHR13331;NIMRJEM5YF;Brie-Comte-Robert, LS Group Brie;;Rue De Metz 57525 Talange;;[-1.67808295, 48.08433633];;FRS24EMB2414911;FRCPIE66405551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.55033209;49.63430989;;;; +;;;;;;;;FROTHPOTHR13341;FSNNG1M2HO;Cesson, LS Group;;Rue Simone De Beauvoir 57525 Talange;;[1.691828, 48.978725];;FRS24EMB2414912;FRS41E4501;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.56617758;49.523865;;;; +;;;;;;;;FRS55E6635;BPU0QLAYHU;Châteaudun, LS Group;;Allée Des Acacias 57535 Marange-Silvange;;[-2.056644, 48.609489];;FRS24EMB2415012;FRS41E4502;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.431697;48.945237;;;; +;;;;;;;;FRS41E432;EYTZ38P6RI;Gérardmer, Route de la Bresse;;Place du Colibri 57535 Marange;;[-2.05903764, 48.4648759];;FRS24EMB2414011;FRS37E4503;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.805107;49.483735;;;; +;;;;;;;;FRS37E434;MGDPUMKMC1;Muret, Klima Ingenierie;;Place Du Marché 57535 Marange-Silvange;;[-1.55033209, 48.83297261];;FRS24EMB2414012;FRS37E4505;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.43439125;49.149954;;;; +;;;;;;;;FRIENE002602;NQKUBV;Angers, boulevard de la Liberté;;Rue Juiverie 83300 Draguignan;;[1.56617758, 48.58069919];;FRS24EMB2413811;FRS37E4504;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.56976853;49.240331;;;; +;;;;;;;;FRIENE002601;LVMKNE;Limoges, avenue des Cambuses;;Rue Éric Tabarly 57525 Talange;;[3.431697, 44.178949];;FRS24EMB2413211;FRS37E5656;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.30036707;49.117;;;; +;;;;;;;;FRS55E6636;NJZRFY;La Ravoire, Rue Pierre et Marie Curie;;2 chemin des fraises 67110 Niederbronn;;[-2.805107, 48.513507];;FRS24EMB2413012;FRS37E4506;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.687384;46.50183008;;;; +;;;;;;;;FRS37E433;XLLFTL;Belleville-sur-Meuse, Rue du Bataillon;;10 Chemin Lefaguyes 97440 Saint-André;;[5.43439125, 43.56209266];;FRS24EMB2413011;FRS37E4507;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.089515;46.50873;;;; +;;;;;;;;FRS37E138;LLNRGU;Ramatuelle, Kon Tiki Riviera;;22 Rue Pere Van Berlo 97427 L' Étang-Salé;;[-0.56976853, 48.7744994];;FRS24EMB2412911;FRS41E4510;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.159203;48.26196268;;;; +;;;;;;;;FRS37E133;HMRLQZ;Conflans-Sainte-Honorine, LS Group;;3 rue Gaston Fleischel 67110 Reichshoffen;;[-0.30036707, 49.18885149];;FRS24EMB2412912;FRS41E4511;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.147496;46.50226949;;;; +;;;;;;;;FRS55E6647;XDHKLG;Enval, La Bonne Pointure;;Parking de la Charte rue de la Tour 67110 Reichshoffen;;[7.687384, 48.589142];;FRS24EMB2412812;FRS18E205373;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.45040266;42.64912753;;;; +;;;;;;;;FRIENE004902;ZCPMXK;Saint-Germain-en-Laye, LS Group;;Place Du Bureau Central 67110 Niederbronn-les-Bains;;[6.089515, 49.071433];;FRS24EMB2412811;FRIONE463101;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.11453028;45.29850531;;;; +;;;;;;;;FRCPIE6704845;TAEZPA;Saint-Malo, LS Group St Malo;;Place Du Couvent 67110 Oberbronn;;[6.159203, 49.34989];;FRS24EMB2412711;FRS41E4437;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.74455721;50.33121269;;;; +;;;;;;;;FRS41E430;HFZCWL;Vernouillet, LS Group;;Boulevard Gabriel Péri 83300 Draguignan;;[6.147496, 49.083182];;FRS24EMB2412712;FRS41E4433;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16163419;45.54545139;;;; +;;;;;;;;FRCPIE6604335;ARYNXY;LS PROXI PUNAAUIA;;52 Route Des Sanguinaires 20000 Ajaccio;;[4.45040266, 50.85124067];;FRS24EMB2412612;FRS37E4345;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.061672;43.131425;;;; +;;;;;;;;FRS55E6634;YUZJTE;LS PROXI TARAVAO;;2 Avenue De La Marne 68000 Colmar;;[3.11453028, 44.81628383];;FRS24EMB2412611;FRS55E65361;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.066905;48.8944;;;; +;;;;;;;;FRS55E6657;DYDNZG;2 Allée Ulysse Gayon, LSB Martillac;;7 Rue Henri Auguste Desbruères 91100 Corbeil-Essonnes;;[-1.74455721, 43.33347765];;FRS24EMB2413212;FRS37E4346;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.155524;49.5888;;;; +;;;;;;;;FRS28E13420;KCTAPV;La Bastide de Grignan, 120 Chemin de Bessas;;1 Rue Du Trésor 97436 Saint-Leu;;[6.16163419, 45.8044199];;FRS24EMB2413812;FRCPIE66376151;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.16027775;49.06732506;;;; +;;;;;;;;FRS55E6659;GEKNCN;Rennes, LS Group;;3 Place Foch 57580 Rémilly;;[6.061672, 46.483018];;FRS24EMB2413312;FRCPIE66376152;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.773942;48.2562449;;;; +;;;;;;;;FRS28E13933;ZEDVRB;Mantes-la-Ville, LS Group;;1 Rue De Gasseville 57255 Sainte-Marie-aux-Chênes;;[6.066905, 49.328758];;FRS24EMB2413311;FRS41E4350;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.390331;45.3799;;;; +;;;;;;;;FRS55E6658;EGPJSR;La Richardais, LS Group Dinar;;200 Rue Du Lycée 97440 Saint-André;;[6.155524, 49.256228];;FRS24EMB2413411;FRS41E4351;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.198606;46.253891;;;; +;;;;;;;;FRS55E9338;XCGVER;Taden, LS Group Dinan;;52 Route D'amiens 80480 Dury;;[5.16027775, 49.63430989];;FRS24EMB2413412;FRS41E4353;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.159369;50.885682;;;; +;;;;;;;;FRS55E6660;PWMZSD;Granville, LS Group;;49 Rue Des Courtiaux 63000 Clermont-Ferrand;;[5.773942, 49.523865];;FRS24EMB2413512;FRS41E4354;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9441;44.73389129;;;; +;;;;;;;;FRS37E134;UNQYWG;Maintenon, LS Group;;6 Rue Rose Bertin 80100 Abbeville;;[4.390331, 48.945237];;FRS24EMB2413511;FRS41E139113;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.05705;43.1239;;;; +;;;;;;;;FRCPIE6604545;XURZAM;Meyrueis, Le Jardin des Cevennes;;593 Route De Rouen 80000 Amiens;;[5.198606, 49.483735];;FRS24EMB2413612;FRS41E139114;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.62993506;48.8976;;;; +;;;;;;;;FRCPIE6637385;AGKHOMVXPL;Ploufragan-Plaines-Villes-, Avenue des plaines villes -4183;;Route De Courpière 63930 Augerolles;;[6.159369, 49.149954];;FRS24EMB2413611;FRS41E4373;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.624877;48.8993;;;; +;;;;;;;;FRS55E6618;HCRKSYJVIC;Aix en Provence, Route du Puy Sainte Réparade;;266 Route D'apremont 73490 La Ravoire;;[5.9441, 49.240331];;FRS24EMB2413711;FRS41E4374;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.09309044;50.071325;;;; +;;;;;;;;FRS55E6617;MOCQKWNTWR;Saint-Georges-des-Groseillers, Leverrier;;Chemin des Prés Chalot 25220 Roche-lez-Beaupré;;[-1.05705, 49.117];;FRS24EMB2413712;FRCPIE66380051;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.62952191;46.15587017;;;; +;;;;;;;;FRS37E431;LD6WOWIWGQ;Hotel Libera, Colombelles;;300 Rue De Fougères 35700 Rennes;;[3.62993506, 46.50183008];;FRS24EMB2415011;FRCPIE66380052;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.96894493;43.30796149;;;; +;;;;;;;;FRS41E438;QRYOZUKF31;Eckbolsheim-Monnet, Rue Jean Monnet -3709;;2 Rue Du Pont Des Rets 60750 Choisy-au-Bac;;[3.624877, 46.50873];;FRS24EMB2412112;FRS41E4384;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.58194546;48.0833;;;; +;;;;;;;;FRIONE45920;KDHRHLIQ98;Jouy-Arches, Rue de Metz -2435;;597 Avenue de Signargues 30650 Rochefort-du-Gard;;[4.09309044, 48.26196268];;FRS24EMB2413111;FRS41E4432;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.89112241;47.927044;;;; +;;;;;;;;FRS41E444;DZVENY;Thionville, 5 Rue de l'Ancienne Gare;;12 Avenue Du Général Leclerc 43300 Langeac;;[3.62952191, 46.50226949];;FRS24EMB2412512;FRS88E144239;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.81625874;47.35132365;;;; +;;;;;;;;FRS28E13075;ZDEWXP;Marly, Rue de la Ferme St Ladre -2859;;Boulevard Des Pyrénées 32150 Cazaubon;;[2.96894493, 42.64912753];;FRS24EMB2412511;FRS88E144241;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.072646;48.92885447;;;; +;;;;;;;;FRS41E448;SSIKRFQLWS;Bruxelles, Parking Odyssée;;Route De Retournac 43200 Yssingeaux;;[6.58194546, 45.29850531];;FRS24EMB2412412;FRS41E4387;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1347;43.14094926;;;; +;;;;;;;;FRS41E449;DFIRKWXAQF;Fournels, Route de Chaudes;;250 Avenue Valensole 83310 COGOLIN;;[2.89112241, 50.33121269];;FRS24EMB2412411;FRS41E4388;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.6478;48.62320433;;;; +;;;;;;;;FRS41E443;S2TJTN9BOP;Biriatou, Rue Herri Alde;;hameau du centre route de montpellier 34140 Meze;;[2.81625874, 45.54545139];;FRS24EMB2412311;FRCPIE66395551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.32728216;42.66333802;;;; +;;;;;;;;FRCPIE6640555;OBVHYS3K6X;Saint-Eustache, Les Pralets Gîtes et Chambres d'Hôtes;;3 Chemin De La Zone 97410 Saint-Pierre;;[6.072646, 43.131425];;FRS24EMB2412312;FRCPIE66395552;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.42550237;45.66025517;;;; +;;;;;;;;FRS41E450;O0FFV7GKYB;Les Rousses, Office de Tourisme;;4 Allée De La Zone 97410 Saint-Pierre;;[2.1347, 48.8944];;FRS24EMB2412211;FRS55E66244;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5042;43.61737466;;;; +;;;;;;;;FRS37E450;AKV9BI2KZM;Hayange, Esplanade de la Liberté;;76 chemin Rebecca Stephane 97410 Saint Pierre;;[3.6478, 49.5888];;FRS24EMB2412212;FRS55E66245;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.027849;42.6065;;;; +;;;;;;;;FRS37E565;FTM4TZJ6VT;Mondelange-Europe, Avenue de l'Europe -4028;;Plane du Gol 97450 Saint-Louis;;[2.32728216, 49.06732506];;FRS24EMB2412111;FRS88E144258;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.667409;47.0251425;;;; +;;;;;;;;FRS41E451;PX08E5STVI;Carignan, avenue du Général de Gaulle;;5 Rue du Pressoir 97436 Saint-Leu;;[7.42550237, 48.2562449];;FRS24EMB2412011;FRS88E144260;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3393309;45.83878616;;;; +;;;;;;;;FRS18E20537;IGQCVM7GLR;Longwy-Saintignon, Avenue Saintignon -3191;;56 Avenue Du Marché-Gare 34070 Montpellier;;[6.5042, 45.3799];;FRS24EMB2416212;FRS41E4430;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.07374;45.51496871;;;; +;;;;;;;;FRIONE46310;A2XEZHCMFS;Saint-Memmie-Simon, Avenue Jacques Simon -3919;;D4 67480 Roppenheim;;[6.027849, 46.253891];;FRS24EMB2412012;FRS41E4431;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.11577;45.9858627;;;; +;;;;;;;;FRS55E6536;LLISUCBTJ2EA96;Stenay-Verdun, 1 Rue des Sorbiers -4156;;18 Rue des Vergers 68250 Rouffach;;[1.667409, 50.885682];;FRS24EMB2411911;FRS28E129245;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1211;49.10701789;;;; +;;;;;;;;FRCPIE6637615;LLIN9KDH82BXV2;Woippy-Thionville, Avenue de Thionville -3333;;198 Rue De La République 97431 La Plaine-des-Palmistes;;[3.3393309, 44.73389129];;FRS24EMB2411912;FRS55E65362;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.887326;43.616781;;;; +;;;;;;;;FRS41E435;LLIN9MY4N14O9S;Briey-Gambetta, 14 rue gambetta -4112;;Grand Rue 82100 Labastide-du-Temple;;[6.07374, 43.1239];;FRS24EMB2411812;FRCPIE65302852;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.17269426;47.37055261;;;; +;;;;;;;;FRS41E13911;LLISUB73Z14R3J;Saint-Lô, Le Phénix;;2 allée de Verdun 82100 Castelsarrasin;;[2.11577, 48.8976];;FRS24EMB2411811;FRS55E65334;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.55172496;43.532474;;;; +;;;;;;;;FRS41E437;LLISTZ4SN1K16K;Le Pal, Les Lodges du Pal;;Parking Salle des Fêtes 82400 Perville;;[2.1211, 48.8993];;FRS24EMB2411711;FRS41E4053;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.74471;44.19037435;;;; +;;;;;;;;FRCPIE6638005;UDXBVSFWM2;Le Pal, Parking P1;;18 Quai Interrompu 10250 Mussy-Sur-Seine;;[1.887326, 50.071325];;FRS24EMB2411712;FRSHEE1642;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.486285;49.2490948;;;; +;;;;;;;;FRS88E14423;SXHLTOEYHV;Bréviandes, Avenue du Général Leclerc;;39 Gr Grande Rue 10110 Ville-Sur-Arce;;[4.17269426, 46.15587017];;FRS24EMB2411612;FRSHEE1643;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.07700755;49.21197641;;;; +;;;;;;;;FRS88E14424;LLIN9J8TI3OT4L;Le Pal, Hôtel Savana Réserve;;18 Route de Nogent 10400 Ferreux-Quincey;;[6.55172496, 43.30796149];;FRS24EMB2411611;FRCPIE66316551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.50889736;46.40083477;;;; +;;;;;;;;FRCPIE6639555;ZXMREG;Alénya, Le Mas Bazan;;Voie Mac Arthur Glen 10150 Pont-Sainte-Marie;;[6.74471, 48.0833];;FRS24EMB2411511;FRCPIE66316552;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.35702758;44.61638549;;;; +;;;;;;;;FRS55E6624;ZRBGLBCPQH;Office de Tourisme, Val Thorens;;Avenue de Neckarbischofsheim 10600 La-Chapelle-Saint-Luc;;[6.486285, 47.927044];;FRS24EMB247611;FRCPIE66315451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.29586834;44.6615;;;; +;;;;;;;;FRS88E14425;JYUU2PWTSK;Gavrelle, Le Manoir de Gavrelle;;6 Rue du Moulinet 10150 Pont-Sainte-Marie;;[5.07700755, 47.35132365];;FRS24EMB2416211;FRCPIE66315452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.84526556;50.63525212;;;; +;;;;;;;;FRS88E14426;CMQEKFB2BP;Le Mont-Dore, Le P'tit Cham;;Carrefour D671 et D26 10250 Neuville-Sur-Seine;;[2.50889736, 48.92885447];;FRS24EMB2415111;FRCPIE66317451;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.98865039;48.74618634;;;; +;;;;;;;;FRS28E12924;HYBOIEYUXH;Le Crau, Les Halles Milona;;Rue Saint Martin 10290 Faux-Villecerf;;[6.35702758, 43.14094926];;FRS24EMB2415522;FRCPIE66320451;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.45245219;48.9039;;;; +;;;;;;;;FRCPIE6530285;S6P8Q3CCAX;Le Vésinet, Mairie;;Rue de la Halle 10220 Piney;;[-3.29586834, 48.62320433];;FRS24EMB2415112;FRCPIE66320452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.997;48.903675;;;; +;;;;;;;;FRS55E6533;JD3PFCU6UJ;Chambry, Leclerc;;3 Place de la Liberté 10700 Pouan-Les-Vallees;;[2.84526556, 42.66333802];;FRS24EMB2415212;FRCPIE66323651;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8488895;48.7436;;;; +;;;;;;;;FRS41E405;L3UEPRL0WC;Montsoult, Zone Industielle du Beloy;;Rue François Mothre 10260 Saint-Parres-Les-Vaudes;;[0.98865039, 45.66025517];;FRS24EMB2415211;FRCPIE66323652;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.11788002;48.7481;;;; +;;;;;;;;FRSHEE164;Y3VTPZSUY6;Selestat, Route de Kintzheim;;Allée Forestière 10440 La-Riviere-De-Corps;;[3.45245219, 43.61737466];;FRS24EMB2415321;FRS41E4043;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.86508738;48.7458;;;; +;;;;;;;;FRCPIE6631655;JJBX8EKGQ6;Les Belleville, Saint-Martin;;Place Charles de Gaulle 10150 Pont-Sainte-Marie;;[2.997, 42.6065];;FRS24EMB2415322;FRS41E4044;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.71373892;48.90400096;;;; +;;;;;;;;FRCPIE6631545;SMHAP34DRI;Saint-Genis-Pouilly, Rue du Salève;;3 Place Maréchal Foch 10380 Plancy-L'Abbaye;;[4.8488895, 47.0251425];;FRS24EMB2415421;FRS41E4054;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.07039204;48.9046;;;; +;;;;;;;;FRCPIE6631745;ZVIJULYZOR;Wissant, Les Frangins;;Place de la Poste 10190 Fontvannes;;[3.11788002, 45.83878616];;FRS24EMB2415422;FRSHEE1633;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.219877;48.90376471;;;; +;;;;;;;;FRCPIE6632045;FLHFYV;Rimeize, Lieu-dit;;12 Route de Méry 10170 Droupt-Ste-Marie;;[4.86508738, 45.51496871];;FRS24EMB2415521;FRS41E4071;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.10895358;48.90413143;;;; +;;;;;;;;FRCPIE6632365;OLRZ2QBZLR;Le Vésinet, République;;Place de la Mairie 10110 Buxeuil;;[4.71373892, 45.9858627];;FRS24EMB2415622;FRS41E4072;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.449587;48.7419;;;; +;;;;;;;;FRS41E404;LLHYP2D9MOFJAJ;Le Vésinet, Gare;;Rue du Château 10110 Loches-Sur-Ource;;[7.07039204, 49.10701789];;FRS24EMB2416111;FRS28E186530;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.60437868;48.946306;;;; +;;;;;;;;FRSHEE163;LLIA2BS71158VL;Eaucourt-sur-Somme, Le Saltimbanque;;Rue du Parc Saint Vincent 10340 Les-Riceys;;[6.219877, 43.616781];;FRS24EMB2415621;FRS41E4091;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.43806053;48.7443;;;; +;;;;;;;;FRS41E407;LLIVTFWC012SUU;Charlieu, Le Relais de l'Abbaye;;40 Rue Principale 10320 Cresantignes;;[3.10895358, 47.37055261];;FRS24EMB2415722;FRS41E4092;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5312669;48.7465;;;; +;;;;;;;;FRS28E18653;MB38BL4MQ9;Le Plan-de-la-Tour , LE REVERDI Les Villages Clubs du Soleil;;1 Rue de l'Enfer 10700 Torcy-Le-Petit;;[6.449587, 43.532474];;FRS24EMB2415721;FRCPIE66337451;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.65437666;48.84490787;;;; +;;;;;;;;FRS41E409;DAUUCNFXSE;Le Tholy, Route du Petit Paradis;;68 Rue de l'École Militaire 10500 Brienne-Le-Chateau;;[0.60437868, 44.19037435];;FRS24EMB2415811;FRCPIE66337551;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.40689934;48.18615;;;; +;;;;;;;;FRCPIE6633745;MM3KFC2I4N;Le Val-d'Ajol, Grande Rue;;22 Rue gregoire pierre herluison 10000 Troyes;;[1.43806053, 49.2490948];;FRS24EMB2415812;FRS55E66213;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.61702;46.84565242;;;; +;;;;;;;;FRCPIE6633755;VLTSDBSR0J;Dijon, Rue du Bailly ZAE CAP NORD;;1 Route de Liours 10400 Barbuise;;[-1.5312669, 49.21197641];;FRS24EMB2415912;FRS55E66214;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.72069789;46.84668342;;;; +;;;;;;;;FRS55E6621;TWHLZK;Aulnay-Sous-Bois, Rue Issac Newtown;;Ruelle du Monument 10330 Jasseines;;[6.65437666, 46.40083477];;FRS24EMB2415911;FRS55E66198;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35446974;47.809545;;;; +;;;;;;;;FRS55E6619;LRR5ND4PC0;Bormes-Les-Mimosas, Route des Lavandières;;6 Rue de la Pierre 10140 La-Villeneuve-Au-Chene;;[4.40689934, 44.61638549];;FRS24EMB2416012;FRS55E66199;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.36208;50.38016725;;;; +;;;;;;;;FRIONE4017;CNYDSJRDXJ;Bégard, rue de Guinguamp;;1 Place de la Mairie 10250 Gye-Sur-Seine;;[6.61702, 44.6615];;FRS24EMB2416011;FRS55E66193;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.368547;45.37768304;;;; +;;;;;;;;FRS41E378;ZFO5IA8AIX;Canohès, Rue Couloumine;;1 Rue du Tré 10130 Ervy-Le-Chatel;;[2.72069789, 50.63525212];;FRS24EMB2416112;FRS55E66194;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35306;48.67191;;;; +;;;;;;;;FRS28E13736;MQQHXGJV4R;Chalus, Zone de Fontanille;;Avenue Saint Roch 10400 Nogent-Sur-Seine;;[2.35446974, 48.74618634];;FRS24EMB247712;FRSHEE1641;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35377;48.671001;;;; +;;;;;;;;FRIENE008501;SPI5X5UEAY;Clermont-l'Hérault, Rue du Servent Zae Les Tannes Basses;;41 Grande Rue 10270 Montieramey;;[2.36208, 48.9039];;FRS24EMB24511;FRSHEE1632;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3543;48.672099;;;; +;;;;;;;;FRIENE008502;FQHVHJU2LD;Intermarché - Latour-Bas-Elne;;8 Place camille Bruy 10260 Chappes;;[2.368547, 48.903675];;FRS24EMB247612;FRS55E65333;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.36463848;47.9146;;;; +;;;;;;;;FRCPIE6630425;ITZYZ0TFXP;Beaune , Rue Richard;;27 Avenue du Général Leclerc 10200 Bar-Sur-Aube;;[2.35306, 48.7436];;FRS24EMB243111;FRIONE40175;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3624;47.90490444;;;; +;;;;;;;;FRIONE40170;JJFY41A3IX;Cébazat, rue Verte;;3 Rue de la Gare 10320 Jeugny;;[2.35377, 48.7481];;FRS24EMB242612;FRS41E3781;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.37188056;48.03724;;;; +;;;;;;;;FRCPIE6630485;IVQVUIET9W;Vienne, Avenue du Général Leclerc;;10 rue jean Monnet 10260 Virey-Sous-Bar;;[2.3543, 48.7458];;FRS24EMB242611;FRS28E137367;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.36821393;49.50626;;;; +;;;;;;;;FRCPIE6630495;MYNT8Y8UH1;Villefranche-sur-Saône, Institut Vermorel;;Rue Du Stade 10400 Le Mériot;;[2.36463848, 48.90400096];;FRS24EMB242711;FRS28E137368;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35005;45.945883;;;; +;;;;;;;;FRS28E13737;XDNLYWELAE;Sarreguemines, Intergest;;1 Rue de la Mairie 10800 Bucheres;;[2.3624, 48.9046];;FRS24EMB242712;FRIENE0085011;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.62611;46.28973074;;;; +;;;;;;;;FRCPIE6717765;CPPOLYGCLA;Aups, Intermarché;;Avenue des Lombards 10000 Troyes;;[2.37188056, 48.90376471];;FRS24EMB242812;FRIENE0085012;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.868463;50.308914;;;; +;;;;;;;;FRCPIE6719675;ODDTVCL4LZ;Donzy, Rue Guy de Jean;;1 Place Carnot 10200 Bar-Sur-Aube;;[2.36821393, 48.90413143];;FRS24EMB242811;FRIENE0085023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35927;48.952699;;;; +;;;;;;;;FRCPIE6719695;DQGV4VYAGN;Intermarché Draguignan, Avenue Pierre Brossolette;;Parking Place Charles De Gaulle 10430 Rosières-prés-Troyes;;[2.35005, 48.7419];;FRS24EMB242912;FRIENE0085024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35582;49.8456372;;;; +;;;;;;;;FRCPIE6715655;MLER8IDBQE;Le Passage, Intermarché Drive;;Entrée des Antes 10120 Saint André les Vergers;;[6.62611, 49.0529];;FRS24EMB242911;FRCPIE66304251;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.52857245;48.672004;;;; +;;;;;;;;FRIONE43860;G0NEIU9I2N;Les Andélys, Avenue du Maréchal Foch;;Grande Rue De La Résistance 10110 Bar-sur-Seine;;[2.868463, 48.946306];;FRS24EMB243011;FRCPIE66304252;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.87236;46.18586958;;;; +;;;;;;;;FRS55E6626;YIAMVIOUWW;Lessay, Intermarché;;Aire de Covoiturage RD48 10410 Thennelières;;[2.35927, 48.7443];;FRS24EMB243012;FRIONE401701;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.52695959;45.26052084;;;; +;;;;;;;;FRCPIE6747105;NRQVYBAGVU;Intermarché Lugrin;;Route départementale 123C 10800 Buchères;;[2.35582, 48.7465];;FRS24EMB243112;FRIONE401702;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.52473302;43.36181463;;;; +;;;;;;;;FRS55E6627;VQM8VODW4I;Aubenas, Intermarché;;50 Boulevard Gambetta 10000 Troyes;;[2.52857245, 48.84490787];;FRS24EMB243212;FRIONE401703;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.668832;43.6979;;;; +;;;;;;;;FRS55E6646;H6BG1SY13J;Guillestre, ZA Le Villard;;Place De La République 10110 Bar-sur-Seine;;[-2.87236, 48.18615];;FRS24EMB242512;FRIONE401704;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.61780108;48.8936;;;; +;;;;;;;;FRS55E6645;GK6DXMJKPU;Intermarché la Gorgue;;Rue des Frères Lumières 52600 Chalindrey;;[-0.52695959, 46.84565242];;FRS24EMB243211;FRCPIE66304851;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.27719449;43.28402011;;;; +;;;;;;;;FRS41E422;KUW5BRYJM8;Rungis, Barcelone;;50 Rue du Lac 52360 Changey;;[-0.52473302, 46.84668342];;FRS24EMB243311;FRSHEE1631;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.204959;43.29657762;;;; +;;;;;;;;FRS55E6637;STVWQJJZNN;Saint-Denis, Rue des bateliers;;5 Avenue du Maréchal Foch 52000 Chaumont;;[1.668832, 47.809545];;FRS24EMB243312;FRCPIE66304852;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.20613;46.263818;;;; +;;;;;;;;FRS55E6625;GOTDLPYRIO;Aubervilliers, Avenue des géomètres bat 264;;Parking Parc National 52017 Arc en Barrois;;[3.61780108, 50.38016725];;FRS24EMB243412;FRCPIE66304951;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.204701;43.263906;;;; +;;;;;;;;FRS41E423;CMLN1C0LRD;Rungis, Caracas;;Parking de l'aéroport 10600 Barberey-Saint-Sulpice;;[3.27719449, 45.37768304];;FRS24EMB243411;FRCPIE66304952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.38385;45.90408668;;;; +;;;;;;;;FRCPIE6634845;E65Z5TBQNI;Rungis, Cardiff;;Rue de Bourdeaux 10170 Méry-sur-Seine;;[6.204959, 48.67191];;FRS24EMB243511;FRS28E137373;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.79702566;46.18666;;;; +;;;;;;;;FRS55E6638;B6ZAAZNRMB;Rungis, Dakar;;10 Boulevard Danton 10000 Troyes;;[6.20613, 48.671001];;FRS24EMB243512;FRS28E137374;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.96653;50.2855964;;;; +;;;;;;;;FRCPIE6634875;VRKBJPV0VD;Saint-Denis, Avenues des arrimeurs;;Chemin des Corvées 10150 Lavau;;[6.204701, 48.672099];;FRS24EMB243611;FRCPIE67177651;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.71336;49.3318;;;; +;;;;;;;;FRS55E6630;XXB6Z6J9Q5;Saint-Denis, Rue du Café;;Parking Saint Pierre 10200 Bar-Sur-Aube;;[-2.38385, 47.9146];;FRS24EMB243612;FRCPIE67177652;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.717087;43.91656357;;;; +;;;;;;;;FRCPIE6635705;GP0E9NWEG5;Aubervilliers, 50 Avenue Chemin de Fers Industriels;;1 Pace de la mairie 10310 Bayel;;[-2.79702566, 47.90490444];;FRS24EMB243712;FRCPIE67196751;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8119235;48.672286;;;; +;;;;;;;;FRCPIE6747085;PSHRVU;Aubervilliers, 12 Avenue Chemin de Fers Industriels;;45 Rue de la republique 10150 Creney-Pres-Troyes;;[-2.96653, 48.03724];;FRS24EMB243711;FRCPIE67196752;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.763751;48.672451;;;; +;;;;;;;;FRIONE4386;TXOQTWENWY;Rungis, Manille;;2 rue du stade 10110 Bar-Sur-Seine;;[5.71336, 49.50626];;FRS24EMB242511;FRCPIE67196951;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.343837;46.2188;;;; +;;;;;;;;FRS37E416;YZPNMKUCFN;Faulquemont, Incinéris;;21 route Nationale 10160 Saint-Benoist-Sur-Vanne;;[4.717087, 45.945883];;FRS24EMB242412;FRCPIE67196952;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.27436091;47.9017;;;; +;;;;;;;;FRS55E6628;BPJA6AA6CA;Villenoy, Jean-Pierre Plicque;;Rue du Presbytère 10270 Laubressel;;[4.8119235, 46.28973074];;FRS24EMB243811;FRCPIE67156551;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.204831;48.276894;;;; +;;;;;;;;FRCPIE6678665;S4ZHGIJPO6;Rungis, Perth;;15 Boulevard Danton 10000 Troyes;;[2.763751, 50.308914];;FRS24EMB241712;FRCPIE67156552;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7523946;48.7698957;;;; +;;;;;;;;FRCPIE6678675;TKAQSF;Rungis, Calgary;;Port DIENVILLE 10500 Dienville;;[4.343837, 48.952699];;FRS24EMB241212;FRIONE438605;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.70244833;47.326191;;;; +;;;;;;;;FRCPIE6678685;AJSO8D6KCX;Noisy le Grand, Boulevard du Maréchal Foch;;37 Avenue Paul Girard 10500 Dienville;;[3.27436091, 49.8456372];;FRS24EMB241211;FRIONE438606;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.38644165;45.31480139;;;; +;;;;;;;;FRS55E6632;GPP1YONDA5;Saint-Caradec, Joris Ide;;79 Les Hamberts 10220 Geraudot;;[6.204831, 48.672004];;FRS24EMB241311;FRIONE438607;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.87375;46.66965999;;;; +;;;;;;;;FRS55E6633;P0E4AALLVD;Bressuire, Joris Ide Bâtiment A;;2 Rue du Mousseau 10400 Perigny-La-Rose;;[4.7523946, 46.18586958];;FRS24EMB241312;FRS55E66260;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.43499931;45.776602;;;; +;;;;;;;;FRIONE42340;HPOS14DX5I;Bressuire, Joris Ide Bâtiment B;;1 Rue Lamoricière 10300 Sainte-Savine;;[4.70244833, 45.26052084];;FRS24EMB241412;FRCPIE67471051;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.42649482;45.58992715;;;; +;;;;;;;;FRIONE40960;HSKHX7OORW;Baule, Rue André Raimbault;;Place d'Armes 10400 Nogent-Sur-Seine;;[-0.38644165, 43.36181463];;FRS24EMB241411;FRCPIE67471052;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.02937;45.7293155;;;; +;;;;;;;;FRIENE002101;BKOKCWBYAN;Onnaing, Joris Ide;;3 Rue de l'Ecole 10270 Bouranton;;[6.84058, 43.6979];;FRS24EMB241512;FRS55E66276;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.410487;46.748588;;;; +;;;;;;;;FRS28E13739;LILWCYZOHV;43410 Lempdes-sur-Allagnon;;11 Rue des cannes 10210 Cussangy;;[1.87375, 48.8936];;FRS24EMB241511;FRS55E66277;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.59452267;47.81175311;;;; +;;;;;;;;FRIENE000502;DPFPKHKVWG;Jarville la Malgrange, 53 Rue de la République;;1 Rue de la place Publique 10100 Gelannes;;[5.43499931, 43.28402011];;FRS24EMB241612;FRS55E66466;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.24836;46.772646;;;; +;;;;;;;;FRIENE000501;VG28KMGHSD;Jarville la Malgrange, 77 Rue de la République;;1 Rue Saint Laurent 10500 Morvilliers;;[5.42649482, 43.29657762];;FRS24EMB241611;FRS55E66467;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.74388889;46.053815;;;; +;;;;;;;;FRIENE001402;CNBUAC7CIC;Jarville la Malgrange, 49 Rue de la République;;22 Rue Grégoire Pierre Herluison 10000 Troyes;;[6.02937, 46.263818];;FRS24EMB241711;FRS55E66450;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2466;47.299516;;;; +;;;;;;;;FRIENE001401;I8EP8OVXXQ;Karrgreen Ploërmel;;Rue Jules Ferry 10600 Barberey-Saint-Sulpice;;[5.410487, 43.263906];;FRS24EMB247511;FRS55E66451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.09320972;45.55116915;;;; +;;;;;;;;FRIONE4096;SKLQVGKLSV;Karrgreen Moreac;;27 Av du Général Leclerc - Parking de la Gare 10100 Romilly;;[1.59452267, 45.90408668];;FRS24EMB242411;FRS41E4228;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.204319;48.657618;;;; +;;;;;;;;FRIENE002102;UUWW8D2QTS;Karrgreen Pontivy;;26 Av du Général Leclerc - Parking de la Gare 10100 Romilly;;[5.24836, 46.18666];;FRS24EMB241811;FRS41E4492;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.204024;45.84793054;;;; +;;;;;;;;FRIENE004402;JIIXCKNC8Q;Karrgreen Lexy;;28 Av du Général Leclerc - Parking de la Gare 10100 Romilly;;[2.74388889, 50.2855964];;FRS24EMB241912;FRS55E66369;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.55377;47.05579643;;;; +;;;;;;;;FRIENE004401;YSEGUQ;Anse, KS Motorcycles;;1 Chemin du Moulin 10160 Berulle;;[4.2466, 49.3318];;FRS24EMB241911;FRS55E66370;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.25536;47.849439;;;; +;;;;;;;;FRS37E120;BH6XELLB75;Macon, KIA;;4 Rue de l'église 10250 Courteron;;[2.09320972, 43.91656357];;FRS24EMB242012;FRS55E66259;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.464839;46.310614;;;; +;;;;;;;;FRIENE002302;DPQRIOQN8V;Sainte Catherine, Route de Béthune;;34 Rue de la Gare 10360 Essoyes;;[6.204319, 48.672286];;FRS24EMB242011;FRS41E4231;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.24630929;46.535982;;;; +;;;;;;;;FRIENE002301;UQAMTV1XPW;Avenue de Paris, Châlons-en-Champagne;;Rue des Quatre Vents 10130 Lignières;;[6.204024, 48.672451];;FRS24EMB242112;FRIONE438608;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.700513;46.1562878;;;; +;;;;;;;;FRIONE4318;TUT6GF98YM;Saint Quentin, Rue Pontoile;;Rue Louis le Clert - Parking P1 Hôpital 10000 Troyes;;[5.55377, 46.2188];;FRS24EMB242111;FRS41E4232;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.37441847;46.26800784;;;; +;;;;;;;;FRIONE43180;VXRRZV9XIP;Jarville la Malgrange, 51 Rue de la République;;5 Rue de la Fontaine 10110 Bertignolles;;[7.25536, 47.9017];;FRS24EMB242211;FRCPIE66348451;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.57233178;46.165531;;;; +;;;;;;;;FRIENE012022000201;WPFVK4XLRP;Romanèche-Thorins, Intermarché;;Avenue de l'Ile Germaine 10120 Saint-Andre-Les-Vergers;;[7.464839, 48.276894];;FRS24EMB242212;FRCPIE66348452;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.181014;46.912927;;;; +;;;;;;;;FRIONE40420;MDOEGXYE2E;Davézieux, Intersport;;1 Ruelle des juifs 10350 Marigny-Le-Chatel;;[7.24630929, 48.7698957];;FRS24EMB242311;FRS55E66387;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.76181634;49.18669642;;;; +;;;;;;;;FRIONE4024;QXX0ZUA3NL;Serres-Castet, Rue de Fabreges ZA du Pont Long II;;35 Grande Rue 10500 Radonvilliers;;[0.700513, 47.326191];;FRS24EMB242312;FRS55E66388;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.18590507;49.32456957;;;; +;;;;;;;;FRIENE002202;G9SVHKLSTF;Intermarché St-Vallier;;35 Rue de Chily 10280 Saint-Mesmin;;[3.37441847, 45.31480139];;FRS24EMB243812;FRCPIE66348751;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.465253;47.496642;;;; +;;;;;;;;FRIENE002201;E0XDVX1DK6;Intermarché, Mareil;;19 Rue Gustave Eiffel 10430 Rosieres-Pres-Troyes;;[5.57233178, 46.66965999];;FRS24EMB243912;FRCPIE66348752;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.58450634;47.187291;;;; +;;;;;;;;FRCPIE6715665;FB5Q3EX4F8;Marseille, Intermarché Saint-Loup;;35 Rue des Grandes Communication 10170 Chauchigny;;[3.181014, 45.776602];;FRS24EMB241111;FRS55E66300;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.867849;46.688777;;;; +;;;;;;;;FRIENE012022000202;RKHZF2JTNU;Marseille, Rue Gaston de Flotte;;3 Rue de l'Église 10160 Villemaur-Sur-Vanne;;[2.76181634, 45.58992715];;FRS24EMB246011;FRS55E66301;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.085731;48.819619;;;; +;;;;;;;;FRIENE001302;CS8HK5BBAM;Rue des Châlets, Saint-Genis-Pouilly;;7 Place de la salle des fetes_x000D_ 10600 Savieres;;[3.18590507, 45.7293155];;FRS24EMB245412;FRS55E66462;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.022531;48.805764;;;; +;;;;;;;;FRIONE41710;QHQG9BEFPV;Marseille, Boulevard Sainte Marguerite;;25 Rue Cornuelle 10370 Villenauxe-La-Grande;;[5.465253, 46.748588];;FRS24EMB245411;FRS55E66463;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.25706307;48.921073;;;; +;;;;;;;;FRIENE001301;OBPEAJBZPZ;Sauviat-sur-Vige, Rue Émile Dourdet;;6 Route départementale 671 10250 Plaines-Saint-Lange;;[3.58450634, 47.81175311];;FRS24EMB245512;FRCPIE66357051;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.563163;46.76139;;;; +;;;;;;;;FRS51E4311;TNQRV3FCLS;Bourg-en-Bresse, Avenue du Maréchal Juin;;9 Rue René Deshons 10260 Villemoyenne;;[4.867849, 46.772646];;FRS24EMB245511;FRCPIE66357052;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.53083577;47.082347;;;; +;;;;;;;;FRIENE000402;D36RA9CGIF;Arras, JP automobiles;;5 Rue Marie Pascale Ragueneau 10000 Troyes;;[4.085731, 46.053815];;FRS24EMB245612;FRCPIE67470852;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.93667563;47.448623;;;; +;;;;;;;;FRIENE000401;UE0TCNCRDB;Heutrégiville, Jakle;;9 Boulevard du 14 Juillet 10000 Troyes;;[5.022531, 47.299516];;FRS24EMB245611;FRCPIE67470851;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5518;46.015545;;;; +;;;;;;;;FRIONE4171;AWDWMR;Albi, Jardinerie Tarnaise Fonlabour;;11 Boulevard Napoléon 10500 Brienne-Le-Chateau;;[3.25706307, 45.55116915];;FRS24EMB245812;FRIONE463103;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.286064;47.02271191;;;; +;;;;;;;;FRS37E157;VGVJRD;Jarville la Malgrange, 43 Rue de la République;;6 Boulevard Victor Hugo 10000 Troyes;;[2.563163, 48.657618];;FRS24EMB245811;FRCPIE65302851;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.346252;46.796769;;;; +;;;;;;;;FRS51E4265;DJBEAJ;Jarville la Malgrange, 41 Rue de la République;;49 Boulevard du 14 Juillet 10000 Troyes;;[3.53083577, 45.84793054];;FRS24EMB245912;FRIONE43865;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.39190104;43.44967101;;;; +;;;;;;;;FRS37E127;HCBDVD;Izernore, Grande Rue;;4 Rue Charles Desguerrois 10000 Troyes;;[3.93667563, 47.05579643];;FRS24EMB245911;FRS55E66240;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.79534207;43.53225485;;;; +;;;;;;;;FRS37E156;HVNFAZ;Issenheim, rue de Cernay;;5 Rue du Lac 10140 Mesnil-Saint-Pere;;[3.5518, 47.849439];;FRS24EMB246012;FRS55E66241;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.833101;43.559969;;;; +;;;;;;;;FRCPIE6708365;EHJHDE;Sélestat, Rue de la Diligence;;7 Rue Nicoas SIRET 10000 Troyes;;[3.286064, 46.310614];;FRS24EMB246111;FRS37E4166;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.322374;43.11227984;;;; +;;;;;;;;FRS51E4268;GUKJEM;Phalsbourg, Rue du Luxembourg;;1 1 Rue du Premier B C P 10000 Troyes;;[3.346252, 46.535982];;FRS24EMB245311;FRS37E4167;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.41211721;43.651538;;;; +;;;;;;;;FRIONE4041;NMHCTA;Tournus, 2 Av. du Clos Mouron;;29 Rue d'Arcis 10500 Brienne-Le-Chateau;;[3.39190104, 46.1562878];;FRS24EMB246112;FRS37E4168;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.21906119;43.325232;;;; +;;;;;;;;FRIONE40410;KNXWXM;Brioude, 2 Rue Gustave Eiffel;;66 Rue du Général de Gaulle 10230 Mailly-Le-Camp;;[4.79534207, 46.26800784];;FRS24EMB246212;FRS37E4169;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.897376;43.23713691;;;; +;;;;;;;;FRIENE006301;VUNCDL;Perrigny, Route de Conliege;;65 Grande Rue 10240 Nogent-Sur-Aube;;[2.833101, 46.165531];;FRS24EMB246211;FRS55E66282;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.828736;50.86272062;;;; +;;;;;;;;FRS51E4264;KNUSGV;Lempdes, Avenue de L'Europe -4102;;468 Grande Rue - Parking Intermarché 10130 Auxon;;[6.322374, 46.912927];;FRS24EMB246311;FRS55E66283;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.356622;48.284034;;;; +;;;;;;;;FRS37E122;XANUJCTKNB;La Bourboule, Boulevard Mal de Lattre Tassigny;;2 Rue du Prieuré 10190 Bercenay-En-Othe;;[-0.41211721, 49.18669642];;FRS24EMB246312;FRS55E66287;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.380155;47.862077;;;; +;;;;;;;;FRCPIE6679575;MME1DDQAPL;Le Cendre, ZAC de Graveroux Route de Clermont;;1 Rue de la gare 10220 Brevonnes;;[1.21906119, 49.32456957];;FRS24EMB246412;FRS55E66288;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.291748;48.384312;;;; +;;;;;;;;FRIONE4404;RMXU7KFQ3T;Bletterans, 20 avenue Jean de Chalon d'Arlay;;97 Avenue du Général de Gaulle 10510 Maizieres-La-Grande-Paroisse;;[3.897376, 47.496642];;FRS24EMB246411;FRCPIE66786651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.230169;47.726101;;;; +;;;;;;;;FRIONE44041;JHHZIKO6YD;Auxerre, Rue Denis Papin;;2 Impasse Louis X le Hutin 10180 Saint-Lye;;[5.828736, 47.187291];;FRS24EMB246512;FRCPIE66786652;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.496269;48.192361;;;; +;;;;;;;;FRS28E13740;WHUUHA0GTM;Saint Marcel, 15 rue René Cassin;;6 Rue de la République 10510 Maizieres-La-Grande-Paroisse;;[4.356622, 46.688777];;FRS24EMB246511;FRCPIE66786751;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.489837;48.777484;;;; +;;;;;;;;FRIENE001801;TQU9YK1V5N;Roanne, 178 rue de Charlieu;;36 Rue du Général de Gaulle 10230 Mailly-Le-Camp;;[2.380155, 48.819619];;FRS24EMB246611;FRCPIE66786752;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.596176;47.871485;;;; +;;;;;;;;FRIENE001202;ZDY9IC0LN9;Dijon, 12 rue Marcel Sembat;;3 Place Collaverdey 10150 Charmont-Sous-Barbuise;;[2.291748, 48.805764];;FRS24EMB246612;FRCPIE66786851;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.038671;48.386104;;;; +;;;;;;;;FRIENE001201;HIVI0H64KL;Issoire, avenue Pierre Mendès-France;;5 Rue de l'Eglise 10800 Saint-Thibault;;[2.230169, 48.921073];;FRS24EMB245312;FRCPIE66786852;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.83122491;47.819499;;;; +;;;;;;;;FRS37E132;FWHFRTAK5A;Combs La Ville, 1 rue Pablo Picasso;;5 Rue de la Fin 10150 Lavau;;[4.496269, 46.76139];;FRS24EMB245212;FRS55E66323;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.978245;48.66224;;;; +;;;;;;;;FRIENE001502;IUXFHAEHEQ;Paray-le-Monial, Lieu Dit Boulevard du Champ Bossu;;20 Avenue de la République 10140 Vendeuvre-Sur-Barse;;[5.489837, 47.082347];;FRS24EMB243911;FRS55E66324;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.63414781;50.417064;;;; +;;;;;;;;FRIENE001501;HGJLYOTLRF;Thiers, avenue Léo Lagrange;;5 Rue Tantane 10200 Arsonval;;[5.596176, 47.448623];;FRS24EMB244512;FRS55E66333;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.40803976;50.427276;;;; +;;;;;;;;FRIENE001802;PRJWTYLPXL;Château-Chinon, 25 route d'Autun;;9 Rue de Chaillouet 10100 Saint-Martin-De-Bossenay;;[4.038671, 46.015545];;FRS24EMB244012;FRS55E66334;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.503546;50.411893;;;; +;;;;;;;;FRSPSESHEL121;CN09IUBP7D;Moneteau-Rome, 12 Avenue de l'Europe -3979;;10 Rue Instituteur André 52017 Arc en Barrois;;[4.83122491, 47.02271191];;FRS24EMB244011;FRS55E66306;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.74012718;50.738085;;;; +;;;;;;;;FRIENE006302;SAYDRISMJD;Saint Pourçain sur Sioule, 18 route de Montmarault;;Parking Clocheton 52400 Bourbonne Les Bains;;[3.978245, 46.796769];;FRS24EMB244112;FRS55E66309;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.513644;50.728754;;;; +;;;;;;;;FRIENE000302;XH2LMSOLZF;Toulon-Sur-Allier, RD 707 -4032;;25 rue Téophile Sombon 57220 Boulay-Moselle;;[1.63414781, 43.44967101];;FRS24EMB244111;FRS55E66326;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.03493;50.397656;;;; +;;;;;;;;FRIENE000301;LUNOV6UIWG;Charmeil, 12 route de Saint Pourçain - 2970;;Rue des 3 Fontanot 92000 Nanterre;;[1.40803976, 43.53225485];;FRS24EMB244212;FRS55E66327;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.09272681;50.264485;;;; +;;;;;;;;FRS51E4286;FJRKKXQ4LW;Saint-Usage, 4 Rue de l'Echelotte;;45 rue Maurice Thorez 92000 Nanterre;;[1.503546, 43.559969];;FRS24EMB244211;FRS55E66576;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.88672073;50.944437;;;; +;;;;;;;;FRIENE000902;TWXRC5Z5LN;Vinzelles, 1054 Route du Champs de la Lie;;3 Rue Patrick Depailler 63000 Clermont-Ferrand;;[0.74012718, 43.11227984];;FRS24EMB244312;FRS55E66577;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.56233;50.696349;;;; +;;;;;;;;FRIENE000901;QHUUUYBQNY;Saint Eloy Les Mines, 4 rue du Puits du Manoir;;PK4,5 côté montagne, 98701 ARUE, Tahiti 98701 ARUE;;[3.513644, 43.651538];;FRS24EMB244311;FRIONE463102;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.530413;50.413489;;;; +;;;;;;;;FRIENE001901;NSZPUKTAXJ;Houtaud, 14 rue de la Champagne;;Zone du Siala, Route de Mazamet 81100 Castres;;[3.03493, 43.325232];;FRS24EMB244411;FRIONE423406;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.350408;50.49208;;;; +;;;;;;;;FRCPIE6753155;AQDLTY7DRW;Carpiquet, Route de Caen;;Chemin Des Deux Voies 81380 Lescure-d'Albigeois;;[0.09272681, 43.23713691];;FRS24EMB244412;FRIONE463104;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.324557;50.403398;;;; +;;;;;;;;FRIONE4385;YUIX1NLTFN;Pitres, rue de la Salle;;213 rue Pierre Marti 25460 Etupes;;[1.88672073, 50.86272062];;FRS24EMB244511;FRIONE409602;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.764105;50.710478;;;; +;;;;;;;;FRIONE43850;UPPTNFPCFG;Avallon, Route de Pontaubert - 3722;;10 Allée Pelletier Doisy 54600 Villers-lès-Nancy;;[-3.56233, 48.284034];;FRS24EMB244611;FRIENE0021011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.244457;50.447739;;;; +;;;;;;;;FRCPIE6753165;LSSZYXJHIQ;Saint-Vit, rue des champs de Tenne;;14 Avenue Du Garric 15000 Aurillac;;[-3.530413, 47.862077];;FRS24EMB245211;FRS28E137397;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.237425;50.4716;;;; +;;;;;;;;FRCPIE6753085;GLCXPQDIMC;Montceau-les-Mines, 10 Rue du Nouveau Bois-du-Verne;;Voie Romaine 01100 Oyonnax;;[-4.350408, 48.384312];;FRS24EMB244612;FRIENE0005024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.532413;50.273914;;;; +;;;;;;;;FRCPIE6753145;A7Y2IJACYN;Ivry, Avenue Pierre Semard -1071;;D89 ZA Le Pré de Lit 71960 Prissé;;[-3.324557, 47.726101];;FRS24EMB244712;FRIENE0005023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.287279;50.93974;;;; +;;;;;;;;FRCPIE6753035;RXUGFUVPNA;Chatillon-Paris, avenue de Paris -3215;;33 Rue Paulin Richier 08000 Charleville-Mézières;;[-2.764105, 48.192361];;FRS24EMB244711;FRIENE0005012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.625437;50.73239;;;; +;;;;;;;;FRS28E13967;HZTA8PJY7H;Colombes-Allende, Rue Président Salvador Allende -3578;;200 Route De Toulouse 32000 Auch;;[-3.244457, 48.777484];;FRS24EMB244812;FRIENE0005011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.973966;50.947109;;;; +;;;;;;;;FRCPIE6752245;TXQ15C6CEX;Dole, rue Costes et Bellonte;;4 Rue De La Buhotière 35136 Saint-Jacques-de-la-Lande;;[-4.237425, 47.871485];;FRS24EMB244811;FRIENE0014024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.785367;45.57668842;;;; +;;;;;;;;FRCPIE6752235;GAY47NFYIK;Gray, 10 rue de la Plage;;Place de la Gare 57340 Morhange;;[-4.532413, 48.386104];;FRS24EMB244912;FRIENE0014023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.829201;45.894845;;;; +;;;;;;;;FRIENE003102;NFUXGBCYW2;Villerest, 772 Chemin de la Tuilerie;;Impasse Jacques Monod 31600 Muret;;[-4.287279, 47.819499];;FRS24EMB244911;FRIENE0014012;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.54619;45.443624;;;; +;;;;;;;;FRIENE003101;QHXB6BHOGC;Beaune, Rue des Vérottes;;16 Route De Neuilly 52000 Chaumont;;[-3.625437, 48.66224];;FRS24EMB245011;FRIENE0014011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.304152;45.34822043;;;; +;;;;;;;;FRCPIE6629455;K7BSJNLZAP;Luzy, Champ Balard;;Route Du Haut Folin 71990 La Grande-Verrière;;[2.973966, 50.417064];;FRS24EMB245012;FRIONE40965;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.886343;45.80450072;;;; +;;;;;;;;FRIENE001902;XL48MPS8G5;Toulouse, 50 rte de Labege;;123 Route De Revel 31400 Toulouse;;[2.785367, 50.427276];;FRS24EMB245111;FRIONE409604;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.666973;45.726768;;;; +;;;;;;;;FRS41E457;JLD6VKWKG7;Portet sur Garonne, Route d'Espagne;;33 rue du Quesnoy 59300 Valenciennes;;[2.829201, 50.411893];;FRS24EMB245112;FRIONE409603;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.823199;49.098951;;;; +;;;;;;;;FRIONE4631;QDAWUSC5CV;Baziège, Lieu-dit en Saumie - ZA du Visence;;Parking Sous Bie 52200 Langres;;[2.54619, 50.738085];;FRS24EMB241112;FRIONE409601;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.603901;45.60602154;;;; +;;;;;;;;FRS41E8822;USYS88RTB5;Saint Gaudens, 1 bis Rue Jean Suberville;;Place de l'Eglise 52400 Varennes sur Amance;;[2.304152, 50.728754];;FRS24EMB241812;FRIENE0021023;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.608554;45.672175;;;; +;;;;;;;;FRS41E8823;ECMQKU9KNJ;Castelnaudary, Avenue des pyrénées - 3661;;Rue de la Gare 40100 Bologne;;[2.886343, 50.397656];;FRS24EMB241011;FRIENE0044024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.587546;45.609138;;;; +;;;;;;;;FRS41E453;IKODBJFESG;Tarbes, Avenue Aristide Briand;;Parking de l'école Dép. de Voile - D153 52290 Braucourt;;[1.666973, 50.264485];;FRS24EMB24211;FRIENE0044023;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.597708;45.523377;;;; +;;;;;;;;FRS41E454;XEEABPN1MQ;Guînes, ZA du Moulin à Huile;;Parking Intermarché 52140 Val de Meuse;;[1.823199, 50.944437];;FRS24EMB241012;FRIENE0044012;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.582539;45.478882;;;; +;;;;;;;;FRS41E455;IQHHPTTJWY;Carhaix, Route de Callac -3096;;Parking Intermarché 52114 Chateauvillain;;[1.603901, 50.696349];;FRS24EMB246811;FRIENE0044011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.794415;45.599607;;;; +;;;;;;;;FRIENE003501;BJNOG4MWPW;Quimperle, Lieu-dit Kervail - 3090;;9 Rue du parc 52114 Chateauvillain;;[1.608554, 50.413489];;FRS24EMB246911;FRS37E1205;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.521722;48.920913;;;; +;;;;;;;;FRIENE003502;QKREGUWHSS;Plougastel-Daoulas-Menez, ZAC Ty Ar Menez -3049;;Place de Verdun 52140 Val de Meuse;;[2.587546, 50.49208];;FRS24EMB246912;FRS37E1204;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.290524;48.911787;;;; +;;;;;;;;FRS28E13478;INJVTNTI9G;Locmiquelic, Route Départementale -3093;;15 Rue de la Fontaine 52099 Chamouilley;;[1.597708, 50.403398];;FRS24EMB247012;FRIENE0023024;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.869468;49.482105;;;; +;;;;;;;;FRS51E5014;YWPQYYSS4K;Loudeac, parc commercial de Ker d'Hervé -3082;;Parking de la Gare 52123 Chevillon;;[1.582539, 50.710478];;FRS24EMB247011;FRIENE0023023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.251303;48.870591;;;; +;;;;;;;;FRS28E12929;FCJXTFL0DV;Minihy-Treguier, zone commerciale de kerfolic -3092;;74 Rue du Faubourg de France 52150 Bourmont;;[2.794415, 50.447739];;FRS24EMB247112;FRIENE0023012;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.919431;48.884429;;;; +;;;;;;;;FRIENE006102;Z5PTFXJNAF;Ploneour-Lanvern, ZA de Brénanvec Nevez -3094;;9 Rue Memasse 52340 Biesles;;[2.521722, 50.4716];;FRS24EMB247111;FRIENE0023011;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.80628112;49.511588;;;; +;;;;;;;;FRIENE006101;SPHUA5RFWJ;Brest, 137 Bd de Plymouth - 3927;;Chemin Des Carelles 52320 Froncles;;[2.290524, 50.273914];;FRS24EMB247211;FRIONE43185;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.428335;49.313813;;;; +;;;;;;;;FRCPIE6590225;ZYG035N2OW;Plomeur, Lieu-dit Pendreff - 3820;;14 Rue Neuve 52398 Poissons;;[1.869468, 50.93974];;FRS24EMB247212;FRIONE431804;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.378426;48.957485;;;; +;;;;;;;;FRIONE4234;I1KBZZA5DT;Plestin Les Greves, Rue de Guergay - 3724;;2 Rue Lebon 52290 Eclaron;;[2.251303, 50.73239];;FRS24EMB247311;FRIONE431803;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.80506843;46.733522;;;; +;;;;;;;;FRS28E13943;XHDBE7OY3W;Henin-Beaumont-Schweitzer, boulevard Schweitzer -3364;;Place Notre-Dame 52220 Montier en Der;;[1.919431, 50.947109];;FRS24EMB247312;FRIENE0021012;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.40035862;47.249316;;;; +;;;;;;;;FRS28E13903;DEBHL6PHPC;Lievin-Marle, Rue du Fond à Marle -3809;;15 Place Charles de Gaulle 52800 Nogent;;[4.80628112, 45.57668842];;FRS24EMB247412;FRIENE0021024;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.225677;46.698169;;;; +;;;;;;;;FRCPIE6715775;FAQWZOZ717;Avion-Septembre, 14 Rue du 4 Septembre -4114;;Place Bel Air 52200 Langres;;[4.428335, 45.894845];;FRS24EMB247411;FRIONE431801;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.528626;47.258777;;;; +;;;;;;;;FRCPIE6601735;Y0IJDZQJPJ;Hazebrouck-Notre-Dame, rue Notre Dame -3387;;27 Grande Rue 52197 Fayl-Billot;;[4.378426, 45.443624];;FRS24EMB246812;FRIENE0120220002011;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.77259809;47.396284;;;; +;;;;;;;;FRIENE001602;XSP3WMHTEF;Arques, 71 avenue du Général De Gaulle;;23 Rue du Général de France 52130 Wassy;;[4.80506843, 45.34822043];;FRS24EMB24212;FRIONE404203;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.482969;48.96203;;;; +;;;;;;;;FRIENE001601;USNRCK1VXI;Mericourt-Desmoulins, rue Camille Desmoulins -3059;;2 Rue Henri Dunant 52000 Chaumont;;[5.40035862, 45.80450072];;FRS24EMB24611;FRIONE404202;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.068128;49.24107;;;; +;;;;;;;;FRS28E13434;WZLYXEDHOC;Rue, Route du Crotoy -2897;;68 Rue du Général de Gaulle 52140 Colombey les Deux Eglises;;[4.225677, 45.726768];;FRS24EMB24912;FRIONE404201;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.217572;48.966502;;;; +;;;;;;;;FRCPIE6715865;BB7YAA9QQZ;Calais-Ouest-Salengro, Avenue Roger Salengro -3826;;Rue de la Plage 52380 Peigney;;[2.528626, 49.098951];;FRS24EMB24911;FRIONE40245;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.520037;48.873413;;;; +;;;;;;;;FRCPIE6715855;H1NN2OESGW;Outreau, Rue Edouard Vaillant -3365;;Pôle socio-culturel 52449 Saints Geosmes;;[4.77259809, 45.60602154];;FRS24EMB24811;FRIENE0022024;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.233955;49.250414;;;; +;;;;;;;;FRCPIE6715785;RZHA0AVXQL;Rang-Du-Fliers-Berck, Route de Berck -3659;;11 Rue de Villegusien à Percey 52190 Villegusien Le Lac;;[5.482969, 45.672175];;FRS24EMB24812;FRIENE0022023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.377159;49.307699;;;; +;;;;;;;;FRIENE000602;TNV4EMC85I;Bruay-La-Buissiere, Eric Tabarly -3415;;7 Avenue Jacques Marcellot 52410 Eurville-Bienville;;[4.068128, 45.609138];;FRS24EMB24712;FRIENE0022012;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.513621;45.406979;;;; +;;;;;;;;FRCPIE6715765;GHX1O8M83O;Berck, Zone Industrielle de la Vigogne -3367;;13 Rue de l'Hôtel de Ville 52444 Saint Blin;;[4.217572, 45.523377];;FRS24EMB24711;FRIENE0022011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.873402;45.395554;;;; +;;;;;;;;FRCPIE6715745;DSYBZMZ2OJ;Le-Portel-Martin, rue du Général San Martin -3554;;Parking Intermarché 52423 Rimaucourt;;[4.520037, 45.478882];;FRS24EMB24612;FRCPIE67156652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.467895;50.612535;;;; +;;;;;;;;FRCPIE6715695;QABKCSRLPV;Loos-En-Gohelle-Bethune, route de Béthune -3476;;Place de la Mairie 52023 Auberive;;[5.233955, 45.599607];;FRS24EMB247512;FRCPIE67156651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.485371;51.022555;;;; +;;;;;;;;FRCPIE6715685;HDKZLSMFE1;Divion-Freres-Caron, rue des Frères Caron -3368;;5 Place de la Mairie 52190 Le Montsaugeonnais Prauthoy;;[2.377159, 48.920913];;FRS24EMB24512;FRIENE0120220002024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.429302;50.450328;;;; +;;;;;;;;FRIENE000802;U0NYWWAOQY;Frevent, rue Georges Clémenceau -3363;;ZAE Champs Miollin 52190 Le Montsaugeonnais Vaux Sous Aubigny;;[2.513621, 48.911787];;FRS24EMB24412;FRIENE0120220002023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.333673;50.681882;;;; +;;;;;;;;FRIENE000801;IIQJYUNGSH;Calais-Gustave-Lamarle, quai Gustave Lamarle -3362;;Place de la Bascule 82160 Caylus;;[2.873402, 49.482105];;FRS24EMB24411;FRIENE0120220002012;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.561378;50.388448;;;; +;;;;;;;;FRIENE002001;UUXQDJWN4P;Longuenesse-Lumbres, rue de Lumbres -3802;;Rue De L'église 10800 Saint-Léger-près-Troyes;;[2.467895, 48.870591];;FRS24EMB24312;FRIENE0013024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.590353;50.678284;;;; +;;;;;;;;FRIENE002002;Q5A81CXZQW;Calais-Saint-Exupery, avenue de Saint Exupery -3279;;Rue Henri Matisse 10000 Troyes;;[2.485371, 48.884429];;FRS24EMB24311;FRIONE417101;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.613876;50.634139;;;; +;;;;;;;;FRIENE000601;VEXHH2DZUE;Chasse Sur Rhône, 90 Chemin des Roues;;Parking cinéma culturel 10150 Pont-Sainte-Marie;;[2.429302, 49.511588];;FRA05ERMBT2811;FRIENE0013023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.429139;50.721213;;;; +;;;;;;;;FRCPIE6715845;XNCLKLI7GG;Tarare, 1 Rte de Feurs;;RD671 10250 Gyé sur Seine;;[2.333673, 49.313813];;FRA05ERMBT3011;FRIENE0013012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.28237;50.962903;;;; +;;;;;;;;FRCPIE6715835;NBZ8TFSWEM;Saint Etienne, 5 Rue Jean Jacques Rousseau;;Rue Napoléon 10700 Arcis-sur-Aube;;[2.561378, 48.957485];;FRA05ERMBT3012;FRIENE0013011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.527709;50.565816;;;; +;;;;;;;;FRCPIE6715825;AQN1LPHKFB;Salaise sur Sanne, 125 Rte de Valence;;Avenue Pasteur 10500 Brienne le Château;;[-1.590353, 46.733522];;FRA05ERMBT2911;FRS51E43118;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.402902;50.492087;;;; +;;;;;;;;FRCPIE6715815;JXSPR9YPGN;Montalieu, Chemin d'Anclenoux;;Route Nationale 660 10160 Vulaines;;[-1.613876, 47.249316];;FRA05ERMBT2912;FRS51E43117;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.469992;50.3543;;;; +;;;;;;;;FRCPIE6715805;EWEC5ADH0N;Feurs-Sables, Chemin des Sables -3900;;Route de Troyes 10210 Chaource;;[-1.429139, 46.698169];;FRA05ERMBT2812;FRIENE0004024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.364373;50.750566;;;; +;;;;;;;;FRCPIE6715795;XU0FKMJHGO;Fosses-Saint-Ladre, Rue de la Ferme Saint Ladre -3118;;Stade de l'Aube - P2, Avenue Robert Schumann 10000 Troyes;;[-2.28237, 47.258777];;FRA05ERMBT2411;FRIENE0004023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.530189;50.673208;;;; +;;;;;;;;FRIENE000702;CGTJBSDTLL;Grigny, 25 avenue Jacques Chirac;;2 Rue de la Liberté 10160 Palis;;[-0.527709, 47.396284];;FRA05ERMBT2712;FRIENE0004012;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0952;50.518645;;;; +;;;;;;;;FRIENE000701;SK2JUSBR1G;Morestel-Claudel, rue Paul Claudel -3801;;1 Rue de la Mairie 10800 Buchères;;[2.402902, 48.96203];;FRA05ERMBT2711;FRIENE0004011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.596578;45.256171;;;; +;;;;;;;;FRIENE001702;LWJIYIXGPX;Savigneux-80-Duguet, boulevard Duguet -3858;;27 Avenue Du Général De Gaulle 10510 Maizières-la-Grande-Paroisse;;[2.469992, 49.24107];;FRA05ERMBT2611;FRIONE41715;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.383538;45.567702;;;; +;;;;;;;;FRIENE001701;N9LEAC2WWK;Bonson-Mairie, Avenue de la Mairie -3938;;Rue Jean Moulin 10410 Saint Parres aux Tertre;;[2.364373, 48.966502];;FRA05ERMBT2512;FRIONE417104;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.292144;45.797355;;;; +;;;;;;;;FRIENE001102;FZQWDNZP1W;St-Chamond, rue Edmond Locard -2993;;20 Avenue de la République 10140 Endeuvre-sur-Barse;;[2.530189, 48.873413];;FRA05ERMBT2511;FRIONE417103;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.011236;45.75177;;;; +;;;;;;;;FRIENE001101;SEBURVUBUQ;Bourgoin-Silos, Rue des Silos -3030;;Piney 10220 Piney;;[3.0952, 49.250414];;FRA05ERMBT3112;FRIONE417102;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.434086;45.279697;;;; +;;;;;;;;FRS37E356;QPHCBREEPR;Aubervilliers, Rue de Saint Denis -3393;;D660 10440 Torvilliers;;[2.596578, 49.307699];;FRA05ERMBT3111;FRIONE431802;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.841713;45.7838021;;;; +;;;;;;;;FRCPIE6609535;LILSDM6BG9;Livry Gargan, 20 à 28 Boulevard Jean Moulin;;6 Rue d'Alma 10160 Aix-En-Othe;;[4.383538, 45.406979];;FRA05ERMBT3512;FRS37E1579;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.887186;45.725857;;;; +;;;;;;;;FRS37E146;GJWNGA1KMF;Thourotte-Juin, 2 rue du Maréchal Juin -3541;;1 Rue de la Libération 10290 Avon-La-Peze;;[4.292144, 45.395554];;FRA05ERMBT3212;FRIONE463105;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.101726;47.211421;;;; +;;;;;;;;FRCPIE6609465;SLTGDVGEJ0;Montreuil-Rosny, 284 Rue de Rosny -3408;;5 Grande Rue 10700 Grandville;;[3.011236, 50.612535];;FRA05ERMBT3211;FRS51E42657;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.135558;43.706265;;;; +;;;;;;;;FRS37E147;LFYDOOHFLJ;Rosny-Sous-Bois, Boulevard Alsace Lorraine -2683;;41 Place des Martyrs pour la Libération 10100 Romilly-Sur-Seine;;[2.434086, 51.022555];;FRA05ERMBT3312;FRS37E1271;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.103388;43.822381;;;; +;;;;;;;;FRCPIE6609475;D4GDWKU6P4;St-Just-En-Chaussee-Tailbouis, Rue de Tailbouis -3342;;3 Rue de la Fontaine Saint-Pierre 10140 Jessains;;[2.841713, 50.450328];;FRA05ERMBT3311;FRS37E1270;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.180632;49.145336;;;; +;;;;;;;;FRCPIE6609505;OKHCYANOVC;Bury, ZA "Le Bois Noir Nord" -3156;;13 Rue Grande Rue 10130 Bernon;;[2.887186, 50.681882];;FRA05ERMBT3411;FRS37E1562;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.432851;43.41160261;;;; +;;;;;;;;FRCPIE6609195;MIICHC8WP1;Villepinte-2-Breguet, Allée Louis Bréguet -3155;;60 Rue du Colonel Fabien 10100 Romilly-Sur-Seine;;[3.101726, 50.388448];;FRA05ERMBT3412;FRS37E1561;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.928759;44.23420742;;;; +;;;;;;;;FRCPIE6609845;SDPZT1PG8I;Aizenay-Roche, 121 rue de la roche -4129;;16 Rue de l'Union 10100 Romilly-Sur-Seine;;[3.135558, 50.678284];;FRA05ERMBT3511;FRCPIE67083652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.897218;44.722705;;;; +;;;;;;;;FRS51E7024;CEGEWMOWL6;St-Herblain-Vannes, Route de Vannes -3764;;9 Les Ruchelats 10100 Saint-Hilaire-Sous-Romilly;;[3.103388, 50.634139];;FRA05ERMBT3612;FRCPIE67083651;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.122936;44.543644;;;; +;;;;;;;;FRS41E21188;RLS4BR4ZPF;La-Roche-Sur-Yon-Cevert, François Cevert -3861;;3 Rue du Champ Pile 10320 Bouilly;;[3.180632, 50.721213];;FRA05ERMBT3611;FRS51E42689;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.984502;45.297541;;;; +;;;;;;;;FRCPIE6610335;HYOVWUYG9D;St-Nazaire-Molle, Route de la Villès Mollé -4002;;75 Rue Grande Rue 10200 Colombe-La-Fosse;;[2.432851, 50.962903];;FRA05ERMBT3712;FRS51E42688;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.185979;44.6395;;;; +;;;;;;;;FRCPIE6610415;OUGLHBJSNW;Murs-Erigne-Clos, Mail du Grand Clos -3913;;23 Rue de la Fontaine 10500 Epothemont;;[2.928759, 50.565816];;FRA05ERMBT3711;FRIONE40415;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.120226;43.384863;;;; +;;;;;;;;FRCPIE6610355;VPR7IBU3VQ;Garges-Les-Gonesse-Cerdan, 3 Rue Marcel Cerdan -3159;;24 Route du Lac d'Orient 10220 Rouilly-Sacey;;[2.897218, 50.492087];;FRA05ERMBT3812;FRIONE404104;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.695287;43.369226;;;; +;;;;;;;;FRCPIE6610375;BRDLUZETXL;Saint-Maximin-Liberte, 125 rue de la liberté -3624;;4 D23 10190 Chennegy;;[3.122936, 50.3543];;FRA05ERMBT3811;FRIONE404103;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.43081;44.859769;;;; +;;;;;;;;FRCPIE6610385;BYVHZM8W55;Pierrefitte-Sur-Seine-Mermoz, Boulevard Jean Mermoz -3752;;1 Place de la Halle 10330 Chavanges;;[2.984502, 50.750566];;FRA05ERMBT2311;FRIONE404102;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.050249;43.566937;;;; +;;;;;;;;FRCPIE6609145;JVE4YVDDY8;Neuilly-S/Marne-Schumann, Avenue Robert Schumann -3009;;5 Rue de Mondeville 10200 Champignol-Lez-Mondeville;;[3.185979, 50.673208];;FRA05ERMBT2412;FRIONE404101;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.198164;43.281584;;;; +;;;;;;;;FRIONE42150;QCG03FUW7F;Villers Cotterets , Avenue de la Ferté Milon - 2675;;Rue de la Montée des Canes 10200 Meurville;;[3.120226, 50.518645];;FRA05ERMBT2612;FRS51E42656;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.820695;44.0698271;;;; +;;;;;;;;FRIONE4215;PJXN1PMJGC;Pont-Sainte-Maxence, 1227 rue du Pasteur -3260;;4 Place du Général de Gaulle 10200 Soulaines-Dhuys;;[4.695287, 45.256171];;FRA05ERMBT2312;FRIENE0063011;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9354842;43.85402;;;; +;;;;;;;;FRS37E144;PT71J19KJL;St-Etienne-Proust, 2 rue Marcel Proust -3653;;15 Rue du Beaucaron 10210 Chaource;;[5.43081, 45.567702];;FRA05ERMBT611;FRS51E42644;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.863168;43.243236;;;; +;;;;;;;;FRCPIE6609135;BX2FMMHQG6;Firminy-Alcazar, 1 rue de l'Alcazar -3652;;22 Rue de la Mairie 10440 Torvilliers;;[5.050249, 45.797355];;FRA05ERMBT1011;FRS51E42643;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.616289;44.568995;;;; +;;;;;;;;FRCPIE6609155;ONM5JTR0HR;Loos, 19 Boulevard de la République - 3457;;1 Rue Guy Môquet 10100 Romilly-Sur-Seine;;[5.198164, 45.75177];;FRA05ERMBT1012;FRS37E1221;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.030542;43.499238;;;; +;;;;;;;;FRS37E145;RGITKSMNLH;Teteghem-Rouge, Route du Chapeau Rouge -3753;;14 Place Maurice Jacquinot 10270 Lusigny-Sur-Barse;;[4.820695, 45.279697];;FRA05ERMBT911;FRS37E1220;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.020872;44.069971;;;; +;;;;;;;;FRCPIE6609175;WNRYGDUGDQ;Vendin-Le-Vieil-Saint-Auguste, Place Saint Auguste -3057;;Rue de Maisons Brûlées 10270 Lusigny-Sur-Barse;;[4.9354842, 45.7838021];;FRA05ERMBT912;FRCPIE66795752;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.271728;43.179896;;;; +;;;;;;;;FRCPIE6609185;SI15JQVFV0;Armentieres-Mun, Albert de Mun -3683;;2 Place René Pietremont 10140 Amance;;[4.863168, 45.725857];;FRA05ERMBT812;FRCPIE66795751;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.075671;44.26687;;;; +;;;;;;;;FRS37E1574;DU2KLXCRUO;Waziers, rue Paul Langevin -2679;;26 Rue du Bourg 10240 Chaudrey;;[-1.616289, 47.211421];;FRA05ERMBT811;FRIONE44045;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.25035905;44.58409469;;;; +;;;;;;;;FRCPIE6612645;OBTODAY7YQ;Wasquehal, rue Jean Jaurès -1346;;5 Avenue Jules Jacquemin 10100 Romilly-Sur-Seine;;[-1.030542, 43.706265];;FRA05ERMBT712;FRIONE440416;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.91177051;44.844837;;;; +;;;;;;;;FRIENE007701;XHZG9LHHIP;Hellemmes Lille, 6 Rue Jacquard - 3318;;2 rue Albert de Reyniès 82370 Reyniès;;[5.020872, 43.822381];;FRA05ERMBT711;FRIONE440415;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.531168;44.490287;;;; +;;;;;;;;FRIENE007702;YQK2HF4E49;Tourcoing-Levant, rue du Levant - 448;;1 Boulevard Georges Brassens 82500 Beaumont-de-Lomagne;;[0.271728, 49.145336];;FRA05ERMBT612;FRIONE440414;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.260843;43.380502;;;; +;;;;;;;;FRS28E13731;VEL4IGFHEO;Socx, 2 Faubourg de Cassel - 3762;;7 Rue des Ecoles 82600 Verdun-sur-Garonne;;[5.075671, 43.637548];;FRA05ERMBT512;FRIONE440413;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.930379;44.147449;;;; +;;;;;;;;FRCPIE6612695;SLXFPOSIPV;Wavrin, Rue du Général Koenig -2895;;Salle Communale 82220 Puycornet;;[5.25035905, 43.41160261];;FRA05ERMBT1111;FRIONE440412;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.15518;47.047134;;;; +;;;;;;;;FRCPIE6612705;BXADENINHL;Meurchin, Rue Mirabeau -2888;;Parking Pétanque 82150 Roquecor;;[5.91177051, 44.23420742];;FRA05ERMBT511;FRIONE440411;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.693424;46.777557;;;; +;;;;;;;;FRCPIE6612625;K8AQTKTMH6;Sin-le-Noble, Lidl;;1 Rue du Champ de l'Église 82210 Saint-Nicolas-de-la-Grave;;[-0.531168, 44.722705];;FRA05ERMBT2212;FRS28E137401;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.651096;46.602341;;;; +;;;;;;;;FRS37E155;LCZG98BJYC;Comines-Armentieres, rue d'Armentières -3779;;23 Promenade Raymond Laurent 82440 Réalville;;[-0.260843, 44.543644];;FRA05ERMBT411;FRIENE0063012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.672947;46.647014;;;; +;;;;;;;;FRCPIE6613045;PMKVSDGNNM;Roubaix, rue Horace Vernet -3070;;44 avenue Jean-Moulin 82100 Castelsarrasin;;[-0.930379, 45.297541];;FRA05ERMBT311;FRS37E1577;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.391725;46.513867;;;; +;;;;;;;;FRCPIE6665345;WCYYWDBZ8X;Pont-A-Marcq, avenue du Général de Gaulle -2677;;9 Place de la Libération 82240 Puylaroque;;[-1.15518, 44.6395];;FRA05ERMBT312;FRIENE0018011;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.423285;47.445137;;;; +;;;;;;;;FRS37E1573;PGCTXOYGXE;Davezieux-Lyon, route de Lyon -3669;;Place du 19 Mars 1962 82100 Garganvillar;;[-1.693424, 43.384863];;FRA05ERMBT211;FRIENE0012024;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.17951425;47.241382;;;; +;;;;;;;;FRCPIE6613825;AIIZRA3GWT;St-Jean-De-Soudain-Setives, route de Lyon -3697;;Chemin de Ronde 82210 Castelmayran;;[5.651096, 43.369226];;FRA05ERMBT212;FRIENE0012023;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.66337;47.197913;;;; +;;;;;;;;FRCPIE6614125;DOV1RQ6FH9;Jonage-Nationale, Rue Nationale -3708;;Rue des Ecoles 82710 Bressols;;[-0.672947, 44.859769];;FRA05ERMBT112;FRIENE0012012;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.082335;47.242816;;;; +;;;;;;;;FRCPIE6610395;AVO6WOWEGE;Tignieu-Jamezieu-Cremieu, Route de Cremieu -3639;;313 D8 82230 La Salvetat-Belmontet;;[1.391725, 43.566937];;FRA05ERMBT111;FRIENE0012011;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.101268;47.290441;;;; +;;;;;;;;FRFASE331010;TZRYB3IGZ1;Saint-Rambert-D-Albon-Milan, Chemin de Milan -3575;;Parking Salle des Fêtes 82800 Vaïssac;;[5.423285, 43.281584];;FRA05ERMBT1112;FRS37E1329;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.978897;43.281753;;;; +;;;;;;;;FRS28E13729;Q6IKLNJNWO;Vaulx-en-Velin, Avenue Marcel Cachin;;Boulevard Jean Sabathé 82120 Lavit;;[6.17951425, 44.0698271];;FRA05ERMBT412;FRS37E1328;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.177948;43.326358;;;; +;;;;;;;;FRCPIE6612085;RVM9WQYHNE;Venissieux-Pressense, avenue Francis de Pressensé -3787;;2 Chemin des Écoliers 82500 Sérignac;;[0.66337, 43.85402];;FRA05ERMBT1212;FRIENE0015024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.614337;43.666494;;;; +;;;;;;;;FRIONE4035;WO6VCOTK0I;Saint-Herblain, 15 Rue de Saint-Nazaire;;Rue Zae Les Joncs 10160 Vulaines;;[6.082335, 43.243236];;FRA05ERMBT1712;FRIENE0015023;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.636316;49.019432;;;; +;;;;;;;;FRS37E137;OLVXFNK8GY;Dax, 78 Route de Montfort - 3323;;77 Rue Nationale 10100 Pars-lès-Romilly;;[6.101268, 44.568995];;FRA05ERMBT1211;FRIENE0015012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.06582016;43.508707;;;; +;;;;;;;;FRS37E5392;ECMOSMPEFO;Plan D'Orgon, Avenue des Vergers - 3704;;Rue Des Herbues 10110 Polisot;;[4.978897, 43.499238];;FRA05ERMBT2211;FRIENE0015011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.510859;46.642619;;;; +;;;;;;;;FRCPIE6612515;VMMH9IWEVE;Le Tholonet, 1900 Avenue Paul Jullien - 3705;;Parking cinéma culturel 10150 Pont Sainte Marie;;[6.177948, 44.069971];;FRA05ERMBT2111;FRIENE0018024;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.967053;46.874699;;;; +;;;;;;;;FRS18E20209;PVLAC5Y3JN;Salon de Provence, 310 Allée De Szentendre - 4095;;Aire de covoiturage D443 10110 Magnant;;[-0.614337, 43.179896];;FRA05ERMBT2112;FRIENE0018023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.61739;44.8652091;;;; +;;;;;;;;FRIONE40350;U1NNX3EPG6;Sisteron, 30 Allée des Genets - 3920;;67 Avenue Marcel Lacassagne 82240 Septfonds;;[4.636316, 44.26687];;FRA05ERMBT2011;FRIENE0018012;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.523894;48.5611;;;; +;;;;;;;;FRCPIE6609045;TJJKSFHD5Q;Martillac, Chemin de la Grange - 2860;;33 Avenue Jean Baylet 82400 Valence;;[-0.06582016, 44.58409469];;FRA05ERMBT1911;FRSPSESHEL1211;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.638397;48.5356;;;; +;;;;;;;;FRCPIE6604555;BAUQWL2XZK;Langon, 4 Avenue Léo Lagrange - 3331;;1 Rue des Platanes 82700 Saint-Porquier;;[-0.510859, 44.844837];;FRA05ERMBT1912;FRIENE0063023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.848355;46.19182;;;; +;;;;;;;;FRCPIE6604875;XEORPSQQHF;Lesparre, 40/42 Route de Bordeaux - 3327;;Parking de la Mairie 82600 Savenès;;[0.967053, 44.490287];;FRA05ERMBT1812;FRIENE0003024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.827943;49.49892174;;;; +;;;;;;;;FRS37E126;XLGIGXAO8M;La Teste, Chemin lagrua - 2836;;3 Rue de la Gare 10700 Herbisse;;[-0.61739, 43.380502];;FRA05ERMBT1811;FRIENE0003023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.435022;49.09464425;;;; +;;;;;;;;FRCPIE6604805;QOFFE7IHNI;Urrugne, Route de Socoa - 2838;;1 Place du Château 10110 Villemorien;;[1.523894, 44.147449];;FRA05ERMBT2012;FRIENE0003012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.776248;48.62136112;;;; +;;;;;;;;FRFASE330040;I0OZLDNOPA;Auriol, 1 avenue du 19 Mars 1962 - 3193;;7 Rue de la Gare 10110 Landreville;;[-1.638397, 47.047134];;FRA05ERMBT1711;FRIENE0003011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.502432;42.623928;;;; +;;;;;;;;FRS28E17649;ACURO64Z5F;La Ciotat, 87 Chemin de la Pépinière - 3553;;2 Rue jean baptiste corot 10300 Sainte-Savine;;[-0.848355, 46.777557];;FRA05ERMBT1612;FRS51E42869;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.156162;47.33325318;;;; +;;;;;;;;FRCPIE6606665;AZIFAF8IUX;Gap, 90 avenue d'Embrun - 3273;;10 Voie riot 10600 Payns;;[-1.827943, 46.602341];;FRA05ERMBT1511;FRS51E42868;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.591795;45.5423515;;;; +;;;;;;;;FRCPIE6606675;MEKQGP7IH8;Marseille, 137 boulevard pont de Vivaux - 3648;;16 rue Charles Delaunay 10240 Ramerupt;;[-1.435022, 46.647014];;FRA05ERMBT1512;FRIENE0009024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.527865;49.165289;;;; +;;;;;;;;FRCPIE6606745;FVPQBSTVGS;Digne Les Bains, Route Napoléon - 3775;;1 BIS Rue gambetta 10300 Sainte-Savine;;[-1.776248, 46.513867];;FRA05ERMBT1412;FRIENE0009023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.208344;48.72047793;;;; +;;;;;;;;FRCPIE6606795;HZCA5QOHFO;Istres, 4 Ronde des Florins - 3182;;4 Rue du Moulin Jacotot 10130 Chessy-Les-Pres;;[-0.502432, 47.445137];;FRA05ERMBT1411;FRIENE0009012;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.423452;50.31345769;;;; +;;;;;;;;FRCPIE6606835;B34AM9DYGR;Oloron-Sainte-Marie, 90 Rue Oustalots - 3897;;1 Rue du Four 10510 Chatres;;[-2.156162, 47.241382];;FRA05ERMBT1311;FRIENE0009011;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.43914;48.92645399;;;; +;;;;;;;;FRCPIE6606875;YSWOWTKK1A;La Réole, Frimont Ouest;;4 Rue du moulin 10190 Dierrey-Saint-Julien;;[-1.591795, 47.197913];;FRA05ERMBT1611;FRS51E42863;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.63247;48.57647776;;;; +;;;;;;;;FRCPIE6619845;IOUZSC0GRQ;Floirac, 1 Avenue Salvador Allende;;32 Route nationale 60 10160 Vulaines;;[-1.527865, 47.242816];;FRA05ERMBT1312;FRS51E42862;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.037544;49.0887;;;; +;;;;;;;;FRCPIE6605035;CLFKICEPGZ;Montayral, 11 Avenue de Fumel - 3310;;1 Rue Saint-Fergel 10400 La-Saulsotte;;[-2.208344, 47.290441];;FRIZMEMAMP1311;FRIENE0063024;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.501223;48.642427;;;; +;;;;;;;;FRIONE40950;D8Z6WDTXQH;Mourenx, 25 Avenue Charles Moureu - 2835;;2 2 Rue des Combattants en Afn 10130 Saint-Phal;;[5.423452, 43.281753];;FRIZMEMAMP1122;FRIONE404204;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.749697;48.64891781;;;; +;;;;;;;;FRIONE4095;WQHEFOD9T2;Le Haillan, 5 Rue des Satellites - 4044;;1 Route de Brienne 10700 Arcis-Sur-Aube;;[5.43914, 43.326358];;FRIZMEMAMP1121;FRIENE0019011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.023455;49.18389491;;;; +;;;;;;;;FRIONE40952;D5CNGLVE5R;St-Philbert-De-Grand-Lieu, La Chaussée -3045;;47 Grande Rue 10110 Landreville;;[4.63247, 43.666494];;FRIZMEMAMP1211;FRIENE0019012;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5948279;49.18210664;;;; +;;;;;;;;FRIONE44040;YDEFOWAYME;Pouzauges-Sables, avenue des Sables -3565;;1 Rue de la Crayère 10700 Villiers-Herbisse;;[-0.037544, 49.019432];;FRIZMEMAMP1212;FRCPIE67531552;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.56626;49.216964;;;; +;;;;;;;;FRIONE40951;WHR7FFWALM;Brem-Sur-Mer, 8 Rue du 8 mai 1945 -3340;;2 Route de Quincerot 10210 Etourvy;;[5.501223, 43.508707];;FRIZMEMAMP1312;FRIONE423403;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.43221;48.72012048;;;; +;;;;;;;;FRCPIE6606645;S01QE8YZCU;La-Roche-Sur-Yon-Petit, Impasse Claudius Petit -3545;;104 Rue de PARIS 10700 Arcis-Sur-Aube;;[-0.749697, 46.642619];;FRIZMEMAMP1512;FRIONE423402;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.32237;43.944127;;;; +;;;;;;;;FRCPIE6606395;T1JWMFICCG;Olonne-Sur-Mer, des Ajoncs -3294;;1 Place de l'Église 10400 Nogent-Sur-Seine;;[-1.023455, 46.874699];;FRIZMEMAMP1411;FRIONE43855;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.13402839;45.57593;;;; +;;;;;;;;FRCPIE6605945;KNWRUJWIAS;Trelaze-Jaures, Rue Jean Jaurès -3550;;9 Rue Paul Fournier 10400 Nogent-Sur-Seine;;[6.5948279, 44.8652091];;FRIZMEMAMP1412;FRIONE438507;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.46760856;41.9234;;;; +;;;;;;;;FRCPIE6605205;KEWRJQNRLS;La Chataigneraie, 65 Avenue du General De Gaulle;;1 Rue de l'Essor 10150 Sainte-Maure;;[7.56626, 48.5611];;FRIZMEMAMP1511;FRIONE438506;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35420578;48.72036468;;;; +;;;;;;;;FRCPIE6605175;XQ35PJ1LNO;St-Brevin-Les-Pins-Potences, Paul Caniot -3180;;1 Place du Centre 10170 Les-Grandes-Chapelles;;[7.43221, 48.5356];;FRIZMEMAMP1712;FRIONE438505;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.437717;42.3161558;;;; +;;;;;;;;FRCPIE6606905;NKTSSSRIOZ;Nantes-Chevreul, rue Chevreul -3192;;RD14 10170 Droupt-Saint-Basle;;[5.32237, 46.19182];;FRIZMEMAMP1711;FRIONE438504;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.42584685;48.79664144;;;; +;;;;;;;;FRCPIE6608085;O2OQF8EAZK;Nantes-Verne, Boulevard Jules Verne -3980;;2 Route de Montsuzain 10150 Voue;;[4.13402839, 49.49892174];;FRIZMEMAMP1012;FRIONE438503;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.254477;48.954713;;;; +;;;;;;;;FRCPIE6608185;KBIZNBBJ9N;Trignac-Rue-De-Surcouf, rue de Surcouf -2920;;Rue de Thurey 10180 Saint-Benoit-Sur-Seine;;[1.46760856, 49.09464425];;FRIZMEMAMP1011;FRIONE438502;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.280159;48.739235;;;; +;;;;;;;;FRCPIE6608315;C9ASIEEJ39;Marseille, Avenue des Olives;;13 Avenue Pierre Et Marie Curie 59260 Lezennes;;[2.35420578, 48.62136112];;FRIZMEMAMP412;FRCPIE67531652;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.04282596;43.5136;;;; +;;;;;;;;FRCPIE6608325;U0IEIGTQV5;Arles, 5 rue olivier leclerc - 2707;;5 coté montagne, 98717 PUNAAUIA, Tahiti 98717 Punaauia;;[9.437717, 42.623928];;FRIZMEMAMP921;FRCPIE67531651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.74004948;46.137144;;;; +;;;;;;;;FRCPIE6608335;BAZ89ZAKIB;Les-Herbiers, Rue du Grand Rouet -3048;;Rue des Rohan 56540 Kernascléden;;[0.42584685, 47.33325318];;FRIZMEMAMP922;FRCPIE67530852;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.31362079;44.40577777;;;; +;;;;;;;;FRCPIE6608345;LII6X0QIDC;Saint Martin De Queyrieres, Pré du Fauré - 3723;;Rue du Stade 56500 Plumelin;;[3.254477, 45.5423515];;FRIZMEMAMP722;FRCPIE67530851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.61512866;43.100862;;;; +;;;;;;;;FRS28E17625;KRXTAYLACE;Ernolsheim-sur-Bruche, Parc des Sports;;Place du Docteur Jean Queinnec 56140 Malestroit;;[2.280159, 49.165289];;FRIZMEMAMP721;FRCPIE67531551;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.589431;43.63446;;;; +;;;;;;;;FRCPIE6608655;AKJDIXOW7V;Gresswiller, Mairie;;Place de la Mairie 56240 Lanvaudan;;[7.04282596, 48.72047793];;FRIZMEMAMP622;FRIONE423405;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.598411;41.93261788;;;; +;;;;;;;;FRCPIE6608795;WH4MBGWMTY;Ceyzériat, Les Soudanières;;Parking Rue Nationale 56420 Guéhenno;;[2.74004948, 50.31345769];;FRIZMEMAMP621;FRCPIE67531452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.56965905;44.166397;;;; +;;;;;;;;FRCPIE6608805;RD1SP1RLHB;Saint Germainmont, SCI Linard;;Place Saint Christophe 56250 Trédion;;[2.31362079, 48.92645399];;FRIZMEMAMP522;FRCPIE67531451;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.30936042;43.514118;;;; +;;;;;;;;FRCPIE6608845;HEKHN1FIEJ;Vernon, Boulevard Jean Jaurès;;Rue du Stade 56390 Locmaria-Grand-Champ;;[2.61512866, 48.57647776];;FRIZMEMAMP1811;FRCPIE67530352;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.31249851;45.7588;;;; +;;;;;;;;FRCPIE6608885;FTRU0LBPTW;Fleury-Mérogis, Z.I de la Croix Blanche;;Place Anne de Bretagne 56250 Monterblanc;;[0.589431, 49.0887];;FRIZMEMAMP521;FRCPIE67530351;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.169949;42.61057734;;;; +;;;;;;;;FRS37E141;OHF6LP48UT;Biguglia, Route National;;Rue de Kroas Er Bleu 56550 Locoal-Mendon;;[7.598411, 48.642427];;FRIZMEMAMP411;FRS28E139679;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.0444334;42.595654;;;; +;;;;;;;;FRCPIE6609035;WO3R2EBCJ5;Langeais, Ma Cuisine Création;;Rue Georges Cadoudal 56420 Plaudren;;[2.56965905, 48.64891781];;FRIZMEMAMP322;FRS28E139678;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.225379;48.5652;;;; +;;;;;;;;FRS37E136;JDBAHISUDA;Issoire, Chemin de Rocpierre;;Rue de la Croix Macé 56920 Saint-Gérand;;[0.30936042, 49.18389491];;FRIZMEMAMP321;FRCPIE67522452;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.062039;44.0165;;;; +;;;;;;;;FRCPIE6540205;TQ382YIB2F;Le-Mesnil-en-Thelle, Route de Chambly;;Rue des Rosiers 56120 Guégon;;[0.31249851, 49.18210664];;FRIZMEMAMP212;FRCPIE67522451;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.82486;44.257;;;; +;;;;;;;;FRCPIE6540225;M07QKYRRKD;Sarrebourg, SCI TSPO;;Place Glaharon 56490 Guilliers;;[1.169949, 49.216964];;FRIZMEMAMP211;FRCPIE67522352;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.04527063;43.9241;;;; +;;;;;;;;FRCPIE6541535;BM1NPADH8L;Anzin-Saint-Aubin, Best Western Plus Hôtel;;Rue de la Citée des Fleurs 56220 Peillac;;[7.0444334, 48.72012048];;FRIZMEMAMP1812;FRCPIE67522351;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.1586584;44.0114;;;; +;;;;;;;;FRCPIE6607265;IZNCFBJ5N9;Gennevilliers;;Rue de la Mairie 56220 Caden;;[4.225379, 43.944127];;FRIZMEMAMP3712;FRIENE0031024;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.80107908;43.8016;;;; +;;;;;;;;FRS55E13415;AJAG0W3H7H;Vert-Saint-Denis, SCI Vertsenart;;Rue Saint Laurent 56310 Melrand;;[0.062039, 45.57593];;FRIZMEMAMP1912;FRIENE0031023;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.695758;43.9861;;;; +;;;;;;;;FRS55E13416;Y9Y1GSKFUK;Bernay, rue Guillaume de la Tremblay;;Rue des Chaumières 56400 Plougoumelen;;[8.82486, 41.9234];;FRIZMEMAMP3511;FRIENE0031012;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.073343;43.9365;;;; +;;;;;;;;FRCPIE6607385;K1RXOZWOA5;Wiwersheim, DM Automotive;;Rue de Coueslan 56130 Saint-Dolay;;[7.04527063, 48.72036468];;FRIZMEMAMP3611;FRIONE423404;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.23367;44.2662;;;; +;;;;;;;;FRCPIE6542695;WD96MMJNF3;Combs-la-Ville, SAS Tando;;Rue de la Bouie 56140 Saint-Marcel;;[9.1586584, 42.3161558];;FRIZMEMAMP3612;FRCPIE66294552;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.006119;43.9124;;;; +;;;;;;;;FRCPIE6607575;RC3V7VKDRM;Hermival-les-Vaux, SAS Cerza Safari Lodge;;Avenue de la Libération 56920 Noyal-Pontivy;;[7.80107908, 48.79664144];;FRIZMEMAMP3711;FRIENE0019023;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.7390536;44.0343;;;; +;;;;;;;;FRCPIE6607645;E3P4AETVDQ;Hermival-les-Vaux, SAS CERZA;;Rue Marc Le Floch 56240 Calan;;[3.695758, 48.954713];;FRIZMEMAMP4012;FRS41E4572;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.824337;44.166;;;; +;;;;;;;;FRS28E13430;HXZXDAWWIA;Louviers, Rue Saint-Germain;;Avenue Porhoet 56490 Saint-Malo-des-Trois-Fontaines;;[7.073343, 48.739235];;FRIZMEMAMP4011;FRIONE463106;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.078972;45.777011;;;; +;;;;;;;;FRS28E13431;Z7C3K9UPQY;Sarrebourg, Terrasse Champagne;;Rue Théophile Guyomar 56620 Pont-Scorff;;[5.23367, 43.5136];;FRIZMEMAMP4112;FRIONE46315;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.79055845;44.016;;;; +;;;;;;;;FRS28E13052;CMYWWV4CUF;Saint-Geniès-de-Malgoirès, SARL RODA;;Rue de la Briqueterie 56350 Rieux;;[-1.006119, 46.137144];;FRIZMEMAMP4212;FRS41E88229;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.99637;43.8904;;;; +;;;;;;;;FRCPIE6660505;RIYAV3WSUX;Domaine de Roullet, Roullet-Saint-Estèphe;;Rue de la Gare 56450 Surzur;;[0.7390536, 44.40577777];;FRIZMEMAMP4211;FRS41E88230;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.001487;44.071;;;; +;;;;;;;;FRS28E13427;BGRBPDRMKQ;Bastelicaccia, Station Vito;;Rue 5 Août 1944 56890 Saint-Avé;;[5.824337, 43.100862];;FRIZMEMAMP4312;FRS41E4539;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1433;44.0996;;;; +;;;;;;;;FRS28E13735;IHEBY32X0M;Sarrebourg, SARL Joet;;Route de Vannes 56890 Meucon;;[5.078972, 43.63446];;FRIZMEMAMP4311;FRS41E4540;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.88983494;44.0762;;;; +;;;;;;;;FRS37E310;TWJNVSU38B;Relais Santa Maria, Lieu dit Pentone, Corte;;Place Joseph Guillerme 56440 Languidic;;[8.79055845, 41.93261788];;FRIZMEMAMP4512;FRS41E4543;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.441054;44.0498;;;; +;;;;;;;;FRS41E20646;DPK4J4CAMC;Haguenau, Ettore bugatti;;Place Joseph Richard 56500 Locminé;;[4.99637, 44.166397];;FRIZMEMAMP4511;FRS41E4544;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.52939;44.01496349;;;; +;;;;;;;;FRS41E20648;CRSMVV007E;Orbais-l'Abbaye, SCDC;;Avenue françois Billoux 56600 Lanester;;[5.001487, 43.514118];;FRIZMEMAMP5212;FRS41E4547;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.34418;44.0261;;;; +;;;;;;;;FRIONE41490;CGQ8TK2DHU;Sarrebourg, Rue Dessirier;;Rue Abbé de La Vallière 56910 Carentoir;;[3.1433, 45.7588];;FRIZMEMAMP5211;FRS41E4548;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.13775;44.0238;;;; +;;;;;;;;FRS37E183;IZTS5WD7DG;Velaux, rue André-Marie Ampère;;Quai des Cabestans - Le port du Crouesty 56640 Arzon;;[8.88983494, 42.61057734];;FRIZMEMAMP1911;FRS41E4549;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.26419;44.077;;;; +;;;;;;;;FRIONE4149;FM8964A1WI;Rue des Biocarburants, Saint-Medard-d'Aunis;;Place d'Armes 56100 Lorient;;[9.441054, 42.595654];;FRIZMEMAMP3512;FRS41E4550;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.28907;44.1975;;;; +;;;;;;;;FRCPIE6541595;DFTKIZHXBB;Villeneuve-sur-Lot, Rue Marguerite et René Filhol;;Boulevard Abbé Louis le Cam 56100 Lorient;;[7.52939, 48.5652];;FRIZMEMAMP4111;FRS41E4571;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.21719;43.9314;;;; +;;;;;;;;FRCPIE6620655;RCWFXEXJ8M;Six fours les plages Avenue de la mer Quartier Bucarin;;Rue du Verger 56800 Augan;;[1.34418, 44.0165];;FRIZMEMAMP3411;FRIENE0035011;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.19435;43.967;;;; +;;;;;;;;FRCPIE6627425;PUBVDXONKL;Salon de Provence, garage Opel 1807;;Rue de la Ferrière 56930 Pluméliau;;[1.13775, 44.257];;FRIZMEMAMP2812;FRIONE423407;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.76829;44.2619;;;; +;;;;;;;;FRCPIE6627445;FTKSVVL1HL;Ajaccio, SAS DCL;;Rue Pasteur 56140 Pleucadeuc;;[1.26419, 43.9241];;FRIZMEMAMP2012;FRIENE0035012;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.85681;44.0556;;;; +;;;;;;;;FRCPIE6627465;CFEWDQL4XQ;Gigondas, Domaine du Grapillon d'Or;;Place Saint Gaudence 56130 Péaule;;[1.28907, 44.0114];;FRIZMEMAMP3412;FRIENE0035023;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.27172;44.0384;;;; +;;;;;;;;FRCPIE6626215;MV1ZGUGKA7;Istres, garage Opel 1807;;Boulevard de l'Océan 56760 Pénestin;;[1.21719, 43.8016];;FRIZMEMAMP2112;FRS28E134789;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.21728;44.0922;;;; +;;;;;;;;FRCPIE6627475;HDKDDYFEUH;Aubière, Avenue Ernest Cristal;;Rue de Vannes 56400 Sainte-Anne-d'Auray;;[1.19435, 43.9861];;FRIZMEMAMP2111;FRS51E50146;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.55389;44.0194;;;; +;;;;;;;;FRCPIE6624885;XOGNQADIP5;Corbara, Foir’Fouille;;Place de la Mairie 56690 Landaul;;[0.76829, 43.9365];;FRIZMEMAMP2712;FRS51E50145;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.080079;44.2729;;;; +;;;;;;;;FRS37E277;A0MTYFQTIA;Borgo, SI.AL;;7 rue René Cassin 56250 Sulniac;;[1.85681, 44.2662];;FRIZMEMAMP2711;FRS28E129294;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.35648;44.1574;;;; +;;;;;;;;FRS37E278;DW4BG8XNRL;Ergersheim, RD30;;Médiathèque 56250 Elven;;[1.27172, 43.9124];;FRIZMEMAMP2811;FRIENE0061024;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.43645;44.1103;;;; +;;;;;;;;FRS41E292;UEHU81Y2UG;Montauban, Lalaque;;ZAC gare 56100 Lorient;;[1.21728, 44.0343];;FRIZMEMAMP2011;FRIENE0061023;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53388;43.8973;;;; +;;;;;;;;FRS41E293;AMWLUY3DJK;Lauzerte, Mairie;;Ile-aux-Moines, Kerscot 56780 Île-aux-Moines;;[1.55389, 44.166];;FRIZMEMAMP2912;FRIENE0061012;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.934072;44.0886;;;; +;;;;;;;;FRS41E294;OJC67YT8UC;Montbartier, Gare;;Secteur Rehumpol 56800 Ploërmel;;[3.080079, 45.777011];;FRIZMEMAMP3011;FRIENE0061011;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.52286;43.916864;;;; +;;;;;;;;FRS37E294;TI3K2PT3CV;Montbeton, Centre Commercial;;Parking Aqta 56400 Auray;;[1.35648, 44.016];;FRIZMEMAMP3012;FRCPIE65902252;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.46289;44.1621;;;; +;;;;;;;;FRS41E295;UTVSMAGTKP;Aucamville, Toulouse;;Parking du centre 56570 Locmiquélic;;[1.43645, 43.8904];;FRIZMEMAMP3112;FRCPIE65902251;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.365982697;44.0399;;;; +;;;;;;;;FRCPIE6626205;YWIDNJ8YCI;Escatalens, Station service;;Parking de Port Blanc 56870 Baden;;[1.53388, 44.071];;FRIZMEMAMP3111;FRIONE42345;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.3659827;43.9437;;;; +;;;;;;;;FRN54E18701;CSVFMAPDLK;Gramont, Cimetière;;Parvis Gare 56100 Lorient;;[0.934072, 44.0996];;FRIZMEMAMP2911;FRIENE0031011;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.35255;44.1864;;;; +;;;;;;;;FRCPIE6666475;AMCQAOUOYI;Parisot, Café-bar;;Place kermabon 56270 Ploemeur;;[1.52286, 44.0762];;FRSDGEMBDG311;FRS28E139435;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.34416;44.0918;;;; +;;;;;;;;FRS37E357;QJETDRPRLH;Montbartier, Mairie;;Quiberon, Port-Haliguen 56170 Quiberon;;[1.46289, 44.0498];;FRSDGEMBDG112;FRS28E139037;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6183;44.0909;;;; +;;;;;;;;FRCPIE6712375;YTA0PZVM7C;La ville-Dieu-du-Temple, Eglise;;Rue Comte de Lanjuinais 56500 Bignan;;[1.365982697, 44.01496349];;FRSDGEMBDG111;FRCPIE67157752;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.92209;44.0242;;;; +;;;;;;;;FRCPIE6712385;S8PA2ZJSYJ;Monteils, Pigeonniers;;Place de l'église 56460 Val d'oust;;[1.3659827, 44.01496349];;FRSDGEMBDG211;FRCPIE66017352;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.08389;43.9423;;;; +;;;;;;;;FRCPIE6627985;QEJQBLAVR2;Clermont-Ferrand, Rue Blatin;;Rue de Beg er Lann 56320 Meslan;;[1.35255, 44.0261];;FRSDGEMBDG212;FRCPIE66017351;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.84019;44.0914;;;; +;;;;;;;;FRCPIE6628885;IZ7TY3PKMS;Montauban, Empereur;;Rue Hélène Le Chaton 56240 Plouay;;[1.34416, 44.0238];;FRSDGEMBDG312;FRIENE0016024;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.95683;44.0197;;;; +;;;;;;;;FRS41E371;F4PTLVVEGT;Nohic, République;;Parking du bourg 56490 Mohon;;[1.6183, 44.077];;FRSDGEMBDG611;FRIENE0016023;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.66197;44.1527;;;; +;;;;;;;;FRCPIE6629175;EM4UWZE7FL;Nègrepelisse, Lilas;;Rue Général de Kerhué 56460 Sérent;;[0.92209, 44.1975];;FRSDGEMBDG511;FRIENE0016012;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.1063;44.1626;;;; +;;;;;;;;FRCPIE6601055;QGMC7P1GHH;Pommevic, Ancienne École;;Place de la Mairie 56580 Bréhan;;[1.08389, 43.9314];;FRSDGEMBDG512;FRIENE0016011;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.4493;44.0892;;;; +;;;;;;;;FRCPIE6601065;NME8JL5XVW;Nègrepelisse, Saint-Blaise;;Place de Macroom 56310 Bubry;;[0.84019, 43.967];;FRSDGEMBDG612;FRS28E134347;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.99949;43.8271;;;; +;;;;;;;;FRCPIE6601075;XK3BRSQEOA;Saint-Etienne-de-Tulmont, Tulmonenc;;Rue du Dévehat 56250 Treffléan;;[0.95683, 44.2619];;FRSDGEMBDG731;FRCPIE67158652;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.04943;43.9138;;;; +;;;;;;;;FRCPIE6605975;ANPKXW9RD5;Montauban, Edouard Herriot;;Place centrale 56560 Guiscriff;;[1.66197, 44.0556];;FRSDGEMBDG732;FRCPIE67158651;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.89291;44.2267;;;; +;;;;;;;;FRCPIE6627495;A1CCYW60HL;Montauban, Cimetière urbain;;Place Georges Lamour - Ruelle Du Tertre 56120 Josselin;;[1.1063, 44.0384];;FRSPSESHEL311;FRCPIE67158552;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.81618;44.0791;;;; +;;;;;;;;FRCPIE6601025;DBFPKZBIGQ;Montauban, Dragons;;Rue du Presbytère 56700 Merlevenez;;[1.4493, 44.0922];;FRSPSESHEL111;FRCPIE67158551;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.1353;44.1034;;;; +;;;;;;;;FRCPIE6627525;XXDLS2JO5O;Montricoux, Ronde;;Rue du Presbytère 56190 Noyal-Muzillac;;[0.99949, 44.0194];;FRSPSESHEL211;FRCPIE67157852;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.24075;50.579123;;;; +;;;;;;;;FRCPIE6627595;LLKQZKII6258TW;Montjoi, Salle des Fêtes;;Place Saint Mayeuil 56250 Saint-Nolff;;[1.04943, 44.2729];;FRSPSESHEL1211;FRCPIE67157851;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.365778;44.3406;;;; +;;;;;;;;FRS37E355;UUJVT7GFB3;Larrazet, Camille-Bégué;;Rue du Lenno 56400 Ploemel;;[1.89291, 44.1574];;FRSPSESHEL411;FRCPIE67157751;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.5339;44.3308;;;; +;;;;;;;;FRIENE008202;O6N2OWJJ7V;Poupas, Cimetière;;Rue Paul Ladmirault 56130 Camoël;;[0.81618, 44.1103];;FRSPSESHEL711;FRIENE0006024;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.10945;44.069;;;; +;;;;;;;;FRCPIE6601035;CVWVHT;Bourg de visa, Fontaine;;Place Ernest le Moine 56310 Bieuzy;;[1.1353, 43.8973];;FRSPSESHEL911;FRCPIE67157652;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.36766;44.1274;;;; +;;;;;;;;FRCPIE6601045;KZQCFW;Bruniquel, Ravelin;;Parking route de Saint Martin 56220 Saint-Gravé;;[1.24075, 44.0886];;FRSPSESHEL1011;FRCPIE67157651;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.155;43.9654;;;; +;;;;;;;;FRCPIE6605985;M9KFBBOZNC;Castelsarrasin, Chateau;;Rue de la Poste 59150 Saint-Barthélemy;;[1.365778, 43.916864];;FRSPSESHEL1111;FRCPIE67157452;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.76934;44.1133;;;; +;;;;;;;;FRCPIE6606025;LYK0VLSICY;Albias, Général de Gaulle;;Rue De Quéven 56530 Gestel;;[1.5339, 44.1621];;FRSPSESHEL1311;FRCPIE67157451;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.769343;43.8269;;;; +;;;;;;;;FRIENE008201;PQQFEQWKFX;Caumont, Allée de la Promenade;;Place du restaurant scolaire 56850 Caudan;;[1.10945, 44.0399];;FRSPSESHEL1411;FRCPIE67156952;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.34938;43.825;;;; +;;;;;;;;FRCPIE6623635;TCBPDHC3FI;Touffailles, Mairie;;Quiberon, Parking océan 56170 Quiberon;;[1.36766, 43.9437];;FRSPSESHEL1521;FRCPIE67156951;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.36016;44.124733;;;; +;;;;;;;;FRS37E269;OO9RLIGTXI;Varen, D958;;Place de L'église 56220 Limerzel;;[1.155, 44.1864];;FRSPSESHEL511;FRCPIE67156852;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.17001;43.8921;;;; +;;;;;;;;FRS37E168;LLIWYM8S6XDY4C;Donzac, Brulhois;;Rue Jean Le Bris 56160 Locmalo;;[0.76934, 44.0918];;FROTHEOTHR13361;FRCPIE67156851;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.97333;44.1002;;;; +;;;;;;;;FRCPIE6623855;UXYEWT;Saint-Sardos, Languedoc;;3 rue de Courcelles 57000 Metz;;[0.769343, 44.0918];;FROTHEOTHR13311;FRIENE0008024;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.35363;44.1449;;;; +;;;;;;;;FRCPIE6623865;KZQZYL;Meauzac, 8 Mai 1945;;Saint Colombier 56370 Sarzeau;;[1.34938, 44.0909];;FROTHEOTHR13321;FRIENE0008023;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.7517;44.2403;;;; +;;;;;;;;FRS37E1655;FRG66VW9M5;Labastide-Saint-Pierre, Rue d'Occitanie;;Avenue des cités unies 56300 Pontivy;;[1.36016, 44.0242];;FROTHEOTHR13351;FRIENE0008012;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53981;44.0079;;;; +;;;;;;;;FRCPIE6681485;VXU4WVABPH;Caussade, Gare;;Zone d'activites de Ty Er Douar 56150 Baud;;[1.17001, 43.9423];;FROTHEOTHR13331;FRIENE0008011;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53609;44.106;;;; +;;;;;;;;FRCPIE6681505;UAYALWREG0;Castelsarrasin, Capucins;;Rue Alain Gerbault 56000 Vannes;;[0.97333, 44.0914];;FROTHEOTHR13341;FRIENE0019024;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.30265;44.1895;;;; +;;;;;;;;FRS37E1678;UXMNDN;Corbarieu, Stade;;Parc d'activité de l'estuaire 56190 Arzal;;[1.35363, 44.0197];;FRS55E66355;FRIENE0020011;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.22428;48.897855;;;; +;;;;;;;;FRCPIE6619675;ABYE1D2DBH;Durfort-Lacapelette, Mairie;;Rue Maréchal Leclerc 56500 Locminé;;[1.7517, 44.1527];;FRS41E4326;FRIENE0020012;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.20252;45.8038204;;;; +;;;;;;;;FRCPIE6623845;CUCLV63JAV;Dunes, André Vidalot;;10 Quai Jobez 39400 Hauts de Bienne;;[1.53981, 44.1626];;FRS41E4327;FRIENE0020023;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.37541;48.850197;;;; +;;;;;;;;FRS37E169;LLMTM4TSXD;L'Honor-de-Cos, Biscardel;;107 Rue Du Maréchal Foch 57200 Sarreguemines;;[1.53609, 44.0892];;FRS37E4340;FRIENE0020024;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.08605;43.58312267;;;; +;;;;;;;;FRS37E170;VICY36RAPV;Montauban, Salvador-Allende;;Parc d'activités de Ronsouze 56800 Ploërmel;;[1.30265, 43.8271];;FRIENE0026023;FRIENE0006023;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.116768;44.85796028;;;; +;;;;;;;;FRS37E1561;O0NVYCD3RW;Bourret, Ecole;;Rue Léo Lagrange 56100 Lorient;;[1.22428, 43.9138];;FRIENE0026024;FRIENE0006012;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.02026;43.70535597;;;; +;;;;;;;;FRCPIE6620005;YLCU4JWUCU;Malause, Acacias;;Rue Tamara de Lempicka 56000 Vannes;;[1.20252, 44.2267];;FRIENE0026012;FRIENE0006011;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.08815;48.89512837;;;; +;;;;;;;;FRIENE007102;BU0VIGCDAQ;Montauban, Mandoune;;Quai des Récollets 56300 Pontivy;;[1.37541, 44.0791];;FRS55E66365;FRCPIE67158452;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.90065;44.79974717;;;; +;;;;;;;;FRCPIE6615325;BMGYU8HPTS;Saint-Antonin-Noble-Val, Pradel;;Rue Le Gloahec 56670 Riantec;;[1.08605, 44.1034];;FRS41E4328;FRCPIE67158451;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.24118;48.75808079;;;; +;;;;;;;;Non concerné;EI9OT5GBAB;Caussade, Récollets;;Rue Saint Goustan 56730 Saint-Gildas-de-Rhuys;;[3.116768, 50.579123];;FRS41E4329;FRCPIE67158352;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.35197;48.84189987;;;; +;;;;;;;;FRS37E158;JA7BNPMKOY;Bioule, Cardaillac;;Zone d'activité du Val Coric 56380 Guer;;[1.02026, 44.3406];;FRS55E66364;FRCPIE67158351;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.58615;43.26494069;;;; +;;;;;;;;FRCPIE6651955;OZK2ET0HLL;Grisolles, Gare;;Rue Adrien Régent - Parking salle multisports 56370 Sarzeau;;[1.08815, 44.3308];;FRS37E4338;FRCPIE67158252;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.854061;48.15411228;;;; +;;;;;;;;FRCPIE6651965;ODFHLRKA2C;Finhan, RN61;;Avenue de la Gare 56230 Questembert;;[0.90065, 44.069];;FRIENE0026011;FRCPIE67158251;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.29594;44.77185819;;;; +;;;;;;;;FRS28E20057;PUZGJABMS9;Cazes-Mondenard, Vicariat;;19 Rue Lislet Geoffroy 97490 Sainte-Clotilde;;[1.24118, 44.1274];;FRS37E1389;FRCPIE67158152;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.85406;45.78016222;;;; +;;;;;;;;FRIENE007101;C2SCCZDTFI;Lamothe-Capdeville, Ardus;;62 rue Principale 68380 Muhlbach-sur-Munster;;[1.35197, 44.016];;FRS37E1338;FRCPIE67158151;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.957942;45.810311;;;; +;;;;;;;;FRCPIE6618695;VTOBODIIAL;Moissac, Récollets;;21 Avenue De Ouagadougou 86200 Loudun;;[1.58615, 43.9654];;FRS55E66478;FRCPIE67158052;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.95794;45.718486;;;; +;;;;;;;;FRCPIE6727745;JCKGRBBWBK;Fretin, SDC Parc de la Haie;;35 Rue Ehnwihr 67600 Muttersholtz;;[0.854061, 44.1133];;FRS55E66477;FRCPIE67158051;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.820325;48.75836017;;;; +;;;;;;;;FRCPIE6727755;BIJ5VAY56V;Montaigu-de-Quercy, Stade;;4 Rue Anita Conti 56000 Vannes;;[1.29594, 43.8269];;FRS37E4339;FRCPIE67157952;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.24065;44.80363171;;;; +;;;;;;;;FRS37E164;ZWMI4CXHPK;Belvèze, D24;;Route Albert Gacon 73550 Méribel;;[0.85406, 44.1133];;FRIENE0049024;FRCPIE67157951;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.08475;46.0010407;;;; +;;;;;;;;FRS37E258;LYDSRQVHDQ;Auvillar, Papayette;;Rond-Point des Pistes 73550 Méribel;;[0.957942, 43.825];;FRCPIE67048452;FRIENE0007024;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.41975;45.89566837;;;; +;;;;;;;;FRS37E184;YQMAE8C3MB;Lafrançaise, Gustave Bosc;;Route du Laitelet 73550 Les Allues;;[0.95794, 43.825];;FRCPIE67048451;FRIENE0007023;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.47746;48.9918;;;; +;;;;;;;;FRCPIE6621925;NWFQDD7ISJ;Montauban, annexe Mairie;;ZAC Canabady 97410 Saint-Pierre;;[0.820325, 44.124733];;FRS41E4302;FRIENE0007012;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.44965;47.89040974;;;; +;;;;;;;;FRS37E257;QVV3WJXNY7;Monclar-de-Quercy, Gare;;Avenue Du Général De Gaulle 85200 Fontenay-le-Comte;;[1.24065, 43.8921];;FRCPIE66043351;FRIENE0007011;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.08375;48.4065;;;; +;;;;;;;;FRS37E259;MP20MASWWU;Golfech, Midi;;10 Chemin Des Caminoles 31120 Portet-sur-Garonne;;[1.08475, 44.1002];;FRS55E66342;FRIENE0017024;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.36029;50.18824;;;; +;;;;;;;;FRCPIE6623475;MISIB4G9PH;Grisolles, République;;RD 657 57950 Moulins-lès-Metz;;[1.41975, 44.1449];;FRS37E4343;FRIENE0017023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.812752;45.118707;;;; +;;;;;;;;FRS37E268;AAWKPFVNSO;Faudoas, Lenclos;;Place Saint Pierre 73600 Moutiers;;[1.47746, 44.2403];;FRS41E4301;FRIENE0017012;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.11751839;44.51054854;;;; +;;;;;;;;FRS37E128;TCIIETN158;Lamagistère, Gare;;Mr Bricolage - Z.A. Bordé Blanche 31290 Villefranche-de-Lauragais;;[1.44965, 44.0079];;FRS55E66579;FRIENE0017011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.418169;45.92802;;;; +;;;;;;;;FRCPIE6621065;AV6FY1L0OW;Monbéqui, Toulouse;;Avenue Général Délestraint 56000 Vannes;;[1.08375, 44.106];;FRS55E66578;FRIENE0011024;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.00898542;46.00341;;;; +;;;;;;;;FRS37E172;EVMYWOAM15;Moissac, Sancert;;Place de la Mairie 56390 Locqueltas;;[1.36029, 44.1895];;FRS28E134205;FRIENE0011023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.66541009;47.33501281;;;; +;;;;;;;;FRCPIE6620685;VDRSZH3ZTA;Mirabel, Montpezat;;Boulevard de l'Océan 56750 Damgan;;[2.812752, 48.897855];;FRS28E134202;FRIENE0011012;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.29175456;48.77036487;;;; +;;;;;;;;FRS37E173;KVSPKBVOHL;Montpezat-de-Quercy, 19 Mars 1962;;Parking Port Tudy 56590 Groix;;[3.11751839, 45.8038204];;FRS55E66343;FRIENE0011011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.39833236;48.79469299;;;; +;;;;;;;;FRFASE331110;BQLHACIPCL;Léojac, St-Etienne de Tulmont;;Rue Nicolas Le Grand 56610 Roudouallec;;[2.418169, 48.850197];;FRS55E66597;FRS41E3780;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.66234705;44.879618;;;; +;;;;;;;;FRCPIE6620815;Q5Y2M4CFKZ;Moissac, Brienne;;Rue du Blavet 56650 Inzinzac-Lochrist;;[7.00898542, 43.58312267];;FRS28E139335;FRS37E3568;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.36010778;49.20863663;;;; +;;;;;;;;FRCPIE6620845;VMVLQ77CMB;Molières, Perrine;;Rue Cours Carré 56320 Faouët;;[-0.66541009, 44.85796028];;FRS55E66596;FRCPIE66294551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.20301175;50.61827989;;;; +;;;;;;;;FRCPIE6621055;G0G8NXXBNN;Esbly, SARL Esbly Lavage;;Rue des Deux Moulins 56880 Ploeren;;[7.29175456, 43.70535597];;FRS55E66587;FRCPIE66095351;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.39307777;50.61748344;;;; +;;;;;;;;FRCPIE6738105;L6DAT3JJ7M;Clermont-Ferrand, Boulevard Edgar Quinet;;Rue Anne de Bretagne 56120 Pleugriffet;;[2.39833236, 48.89512837];;FRS55E66586;FRS37E1463;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.16736482;43.28824919;;;; +;;;;;;;;FRCPIE6746725;CORSVFNDDL;Montreuil, rue Armand Carrel;;Rue des Roseaux 56680 Plouhinec;;[-0.66234705, 44.79974717];;FRS55E93387;FRS37E1464;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.56279373;48.8313;;;; +;;;;;;;;FRIONE44000;CDWU9FOQUI;Mougins, RRG;;Rue du Pré de la Dame 56130 Férel;;[2.36010778, 48.75808079];;FRS55E93386;FRS37E1465;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.79997695;48.4143;;;; +;;;;;;;;FRIONE4400;QALUCBHTJR;Mérignac, RRG;;Rue des Forges 56220 Malansac;;[2.20301175, 48.84189987];;FRS55E66351;FRCPIE66094651;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.877665;44.89138691;;;; +;;;;;;;;FRIONE40380;CZWNSB;Nice, Boulevard de l'Armée des Alpes public;;Rue Du Stade 56490 La Trinité-Porhoët;;[5.39307777, 43.26494069];;FRS55E66350;FRCPIE66094652;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.854377;50.615103;;;; +;;;;;;;;FRIONE4038;RVBWQ4ACRN;Pantin, RRG;;Rue Maurice Thorez 56100 Lorient;;[7.16736482, 48.15411228];;FRS28E139334;FRS37E1467;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9332695;48.0024;;;; +;;;;;;;;FRS37E590;NL5HBZFIZT;Pessac, avenue Pasteur;;Place Général de Gaulle 56000 Vannes;;[-0.56279373, 44.77185819];;FRS55E66603;FRS37E1468;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.57193491;42.599199;;;; +;;;;;;;;FRCPIE6746675;PBANG1G7XO;Rungis, avenue des Trois Marchés;;Rue Moïse Le Bihan 56100 Lorient;;[4.79997695, 45.78016222];;FRCPIE66043352;FRS37E1469;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.84652657;-17.4800938;;;; +;;;;;;;;FRIONE44660;WSZO153YAE;Saint-Cloud, rue Pasteur;;Rue de la Mairie 56350 Saint-Perreux;;[4.877665, 45.810311];;FRS55E66592;FRS37E1471;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.92995154;48.0062;;;; +;;;;;;;;FRCPIE6746745;ZSBWTUJWGI;Marseille, RRG Services Marseille Michelet public;;Rue d'Elle 56770 Plouray;;[4.854377, 45.718486];;FRS37E1343;FRCPIE66094751;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.21538;50.61302098;;;; +;;;;;;;;FRCPIE6746825;DLMH5PS9PO;Lapoutroie, Hôtel Au Vieux Moulin;;Place du Plessis de Genedan 56490 Ménéac;;[1.9332695, 48.75836017];;FRS37E1344;FRCPIE66094752;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.7392731;48.832043;;;; +;;;;;;;;FRIONE40390;O9WI6RZMGF;Villenave-d'Ornon, avenue des Pyrénées;;Rue des Deux Ponts 56920 Saint-Gonnery;;[-0.57193491, 44.80363171];;FRCPIE66045451;FRCPIE66095051;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.84149;43.29013381;;;; +;;;;;;;;FRIONE4039;HEQ9HQWWAE;Lyon Nord, RRG;;Route de l'Abbaye 56540 Saint-Tugdual;;[4.84652657, 46.0010407];;FRS55E66354;FRCPIE66095052;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.632473;47.98001177;;;; +;;;;;;;;FRCPIE6609815;FPTVYF69DD;Rillieux-la-Pape, rue du Companet public;;Rue Anita Conti 56000 Vannes;;[4.92995154, 45.89566837];;FRCPIE66373852;FRCPIE66095352;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.53604;48.89450073;;;; +;;;;;;;;FRS28E13433;NPWU1NKGAH;Venissieux, Route de Vienne;;Rue de Kerentree 56580 Rohan;;[7.21538, 48.9918];;FRCPIE66373851;FRCPIE66091951;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0468139;43.637547;;;; +;;;;;;;;FRIENE004301;WGS1UBRXZZ;Coignières, RRG Maurepas;;Rue de la Mairie 56700 Kervignac;;[6.7392731, 47.89040974];;FRS55E66593;FRCPIE66098451;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.95391;43.44886874;;;; +;;;;;;;;FRIENE003901;Z5UCFNWMKC;Villenave-d'Ornon, Route de Toulouse;;Rue de la Poste 56390 Grand-Champ;;[6.84149, 48.4065];;FRS55E66186;FRCPIE66098452;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.90296;48.902848;;;; +;;;;;;;;FRIONE40330;JJQXMOPFU6;Savigneux, Route d'Ars;;Lorient Découverte Rue de Villeneuve 56100 Lorient;;[1.632473, 50.18824];;FRS55E66604;FRS51E70244;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.69769922;43.65808451;;;; +;;;;;;;;FRIONE4033;AIYZMSQLBC;Mionnay, Rue Principale;;Avenue de la Perrière 56100 Lorient;;[4.53604, 45.118707];;FRS55E66185;FRS51E70245;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.99999768;43.549931;;;; +;;;;;;;;FRS37E552;DPTFW3WTSR;Rahling, Fontaine;;3 Place de l'Eglise 56690 Landévant;;[6.0468139, 44.51054854];;FRS55E66174;FRS41E211885;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.14079976;48.8192;;;; +;;;;;;;;FRS37E1083;JGEOPKPRGO;Ramonchamp, rue de l'Etat;;Allée Laurent Esvan - Mairie 56270 Ploemeur;;[4.95391, 45.92802];;FRS55E66173;FRS41E211886;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.512023;48.75868906;;;; +;;;;;;;;FRIONE40450;WYQIBGH61M;Raon l'étape, Rue de la Tour;;Rue Ferdinand Ardonin 56400 Bono;;[4.90296, 46.00341];;FRS37E4315;FRCPIE66103351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.34122195;43.536261;;;; +;;;;;;;;FRIONE4045;ZX1OHTORO0;Saint valery sur sommes , Quai du romerel;;Place de la Gare 56380 Guer;;[0.69769922, 47.33501281];;FRS37E4314;FRCPIE66103352;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.01650096;49.23699697;;;; +;;;;;;;;FRIENE003902;KVJYQPYE2S;Lalouvesc, Rue des Alpes;;Rue de Lanveur 56100 Lorient;;[1.99999768, 48.77036487];;FRS37E4313;FRCPIE66104151;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.009592;49.23708488;;;; +;;;;;;;;FRCPIE6608715;CFQAIZFBFN;Gap, Zone de Lachaup-Est Public;;Place de La Liberté 56100 Lorient;;[2.14079976, 48.79469299];;FRS37E4312;FRCPIE66104152;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.58479675;49.23790821;;;; +;;;;;;;;FRS28E12905;RBJSJAWJIU;RSE, Saint-André-de-Corcy;;Avenue Maréchal de France 56000 Vannes;;[-0.512023, 44.879618];;FRS37E4342;FRCPIE66103551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.23698;49.23853082;;;; +;;;;;;;;FRS37E557;XBKOAMYT9V;RSE, Ambérieux-en-Dombes;;Boulevard Leclerc - Parking Hôtel De Ville 56100 Lorient;;[-0.34122195, 49.20863663];;FRS41E4383;FRCPIE66103552;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.46807;49.232838;;;; +;;;;;;;;FRS37E558;JARPJJ9XE9;Chambray-lès-Tours, rue Michael Faraday public;;route Albert Gacon 73550 Les Allues;;[3.01650096, 50.61827989];;FRS37E4344;FRCPIE66103751;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.61628505;49.21443665;;;; +;;;;;;;;FRS18E20635;EWYZJ18PVY;Trappes, avenue Roger Hennequin public;;Rue du Tramway 56340 Plouharnel;;[3.009592, 50.61748344];;FRIONE459205;FRS37E1462;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.014157;49.222496;;;; +;;;;;;;;FRS18E20636;G3EJY8H0MI;Versailles, rue des Chantiers;;Parking relais - proximité route nationale 56880 Ploeren;;[5.58479675, 43.28824919];;FRS41E4440;FRS37E1461;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.87378;43.54076627;;;; +;;;;;;;;FRFASE331040;NT5MWKKIOS;Lormont, RRG;;Place Général de Gaulle 56610 Gourin;;[2.23698, 48.8313];;FRS41E4441;FRCPIE66103851;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.439726;49.23279051;;;; +;;;;;;;;FRCPIE6573995;RGSCLDYTHV;Hérouville-Saint-Clair, RRG;;Aire de Marzan 56130 Marzan;;[-4.46807, 48.4143];;FRS28E130756;FRCPIE66091451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-149.775508;48.9528;;;; +;;;;;;;;FRIONE40530;RD41RSGJAA;Loos, Parking Lelievre;;Rue du 19 Mars 1962 56430 Mauron;;[-0.61628505, 44.89138691];;FRS41E4485;FRIONE421501;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.88569;-20.961651;;;; +;;;;;;;;FRS28E13440;ABZLE7DG3B;Loos, Rue Marcellin Berthelot;;Rue du Condé 56160 Guémené-sur-Scorff;;[3.014157, 50.615103];;FRS41E4486;FRIONE421502;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.01599692;-21.265831;;;; +;;;;;;;;FRIONE43790;DKORVPTIL0;Aubagne, RRG;;Place Saint Michel 56330 Pluvigner;;[6.87378, 48.0024];;FRS41E4489;FRIONE421503;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.253808;48.9341;;;; +;;;;;;;;FRIONE4379;E7P4WVKFHE;Boulogne-Billancourt, Renault;;Rue Sainte Anne 56250 Elven;;[9.439726, 42.599199];;FRS41E4490;FRIONE421504;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.48255792;48.93055017;;;; +;;;;;;;;FRIONE45930;WKQMCXPLVY;Brest, route de Gouesnou public;;Rue de l'Hôtel de ville 56200 Gacilly;;[-149.775508, -17.4800938];;FRS41E4493;FRIONE42155;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.17486406;48.95131715;;;; +;;;;;;;;FRS28E13015;XW1SLUHJGS;Bruges, avenue de la Jalle Noire;;Rue Jean le Coutaller 56100 Lorient;;[6.88569, 48.0062];;FRS41E4494;FRS37E1444;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.29817629;48.94217109;;;; +;;;;;;;;FRCPIE6588515;RJ6WGXFAAQ;La Bresse, Piscine;;Kerchopine 56620 Cléguer;;[3.01599692, 50.61302098];;FRIONE459201;FRS37E1445;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.951344;43.5353684;;;; +;;;;;;;;FRCPIE6733605;HS6YJGEDPN;Biguglia, ZI de Tragone;;Parking Maison des Associations 56640 Arzon;;[2.253808, 48.832043];;FRIONE459202;FRCPIE66091351;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.44541826;41.908496;;;; +;;;;;;;;FRCPIE6588525;EEP0X6NNHY;Temae;;56 Rue Argentré du Plessis 56360 Locmaria;;[5.48255792, 43.29013381];;FRIONE459203;FRCPIE66091352;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.273682;48.075534;;;; +;;;;;;;;FRS37E655;OSPWWGX5NY;La Bresse, Régie;;Pen Prad 56360 Sauzon;;[0.17486406, 47.98001177];;FRIONE459204;FRS37E1446;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.17023421;48.615785;;;; +;;;;;;;;FRFASE330290;O0HFZ0CNCY;Boulogne-Billancourt, Renault Issy;;Le Cardinal 56360 Sauzon;;[2.29817629, 48.89450073];;FRIONE459206;FRS37E1447;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.96296;-21.168965;;;; +;;;;;;;;FRCPIE6588565;JMYY8FYAWD;Marseille, montée Commandant de Robien;;Port-Collen 56360 Le Palais;;[6.951344, 43.637547];;FRS41E4436;FRS37E1449;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.40912;49.0128;;;; +;;;;;;;;FRCPIE6634095;GE5GIEJMTM;Le Mans, boulevard Demorieux public;;Les Glacis 56360 Palais;;[5.44541826, 43.44886874];;FRCPIE66405551;FRS37E1470;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33105722;49.19142;;;; +;;;;;;;;FRIENE004302;NCSVTXWFT3;Levallois-Perret, rue Victor Hugo;;2 Avenue Carnot 56360 Le Palais;;[2.273682, 48.902848];;FRS41E4501;FRCPIE66091452;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.46104696;-20.9630462;;;; +;;;;;;;;FRCPIE6530215;GDSFD1GRQ5;Grasse, RRG;;9-13 Place de l'Hôtel de ville 56360 Le Palais;;[7.17023421, 43.65808451];;FRS41E4502;FRS37E1460;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16726763;49.855845;;;; +;;;;;;;;FRS37E602;LYKHGRPY0K;Gardanne, RRG;;Rue Le Mauff 56350 Allaire;;[6.96296, 43.549931];;FRS37E4503;FRCPIE66091551;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1696937;45.76876531;;;; +;;;;;;;;FRCPIE6575095;YZOIQEYBLO;Courbevoie, boulevard Georges Clémenceau;;Rue Francis Decker 56000 Vannes;;[2.40912, 48.8192];;FRS37E4505;FRCPIE66091552;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16874509;50.09835705;;;; +;;;;;;;;FRCPIE6658765;ZMWXUS8EQA;Cagnes-sur-Mer, promenade de la Plage;;4 Rue de Kerpape 56260 Larmor-Plage;;[2.33105722, 48.75868906];;FRS37E4504;FRS37E1453;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16709009;49.88548;;;; +;;;;;;;;FRCPIE6741345;ORELOOXXEX;Cannes, avenue Francis Tonner;;2 Place Notre-Dame 56260 Larmor-Plage;;[6.46104696, 43.536261];;FRS37E5656;FRS37E1454;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.141376;45.72263008;;;; +;;;;;;;;FRIONE40910;GWPDQ07EIS;Charenton, Renault;;Parking Port d'Arzal 56190 ARZAL;;[6.16726763, 49.23699697];;FRS37E4506;FRCPIE66091751;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1152724;45.55631539;;;; +;;;;;;;;FRIONE4091;PFG840FCF1;Fresnes, RRG;;Rue du Four Mollet 56400 Auray;;[6.1696937, 49.23708488];;FRS37E4507;FRCPIE66091752;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12425;47.2713;;;; +;;;;;;;;FRCPIE6741805;LX6ZXEAANA;Draguignan, parking Azémar;;Rue Youri Gagarine 56600 Lanester;;[6.16874509, 49.23790821];;FRS41E4510;FRS37E1441;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.46579688;48.130888;;;; +;;;;;;;;FRCPIE6741835;OQWUDU187C;Talange, Rue de l'Usine;;Plessis d'Arradon 56610 Arradon;;[6.16709009, 49.23853082];;FRS41E4511;FRS37E1455;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16558187;49.433153;;;; +;;;;;;;;FRIONE43890;K5T7XB37GG;Talange, Parking Aragon;;Embarcadère 56780 Île-aux-Moines;;[6.141376, 49.232838];;FRS18E205373;FRS37E1456;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.63364;43.97449468;;;; +;;;;;;;;FRIONE4389;UAFKYILXEA;Talange, rue de Metz;;3 Boulevard de la Plage 56340 Carnac;;[6.1152724, 49.21443665];;FRIONE463101;FRS37E1457;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.660558;45.10077504;;;; +;;;;;;;;FRS18E11298;XKLPLJJ0NF;Talange, rue Simone de Beauvoir;;Avenue Général de Gaulle 56550 Belz;;[6.12425, 49.222496];;FRS41E4437;FRS37E1458;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.366612;43.93415882;;;; +;;;;;;;;FRS37E551;TWOTKK05J9;Marange, Allée des Acacias;;Place d'Alzey 56120 Josselin;;[6.46579688, 43.54076627];;FRS41E4433;FRS37E1459;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.65833;45.1445;;;; +;;;;;;;;FRS37E506;CQTIPBKW32;Marange, Place du Colibri;;Parking Saint Thuriau 56950 Crach;;[6.16558187, 49.23279051];;FRS37E4345;FRCPIE66091851;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.66379112;43.25016021;;;; +;;;;;;;;FRIONE40930;WMRHFI4HID;Marange, Place du Marché;;6bis Place Quatre Frères Le Blouch 56370 Le Tour-du-Parc;;[7.63364, 48.9528];;FRS55E65361;FRCPIE66103752;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.64142021;43.42914778;;;; +;;;;;;;;FRIONE4093;FCCSV36CXN;Draguignan, parking de l'îlot de l'Horloge;;2 rue des Remparts 56360 Le Palais;;[55.660558, -20.961651];;FRS37E4346;FRCPIE66103852;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.61174961;-21.3225547;;;; +;;;;;;;;FRCPIE6497835;VSJQ80Q6ZS;Talange, Rue Tabarly;;2 Route Ecospace 67120 Molsheim;;[55.366612, -21.265831];;FRCPIE66376151;FRS37E15744;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.46521082;-21.3231281;;;; +;;;;;;;;FRCPIE6501945;GIM7NUC4LN;Niederbronn, Place de la Gare;;18 rue de la gare 67120 Duppigheim;;[7.65833, 48.9341];;FRCPIE66376152;FRS37E1565;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.657465;-21.3170725;;;; +;;;;;;;;FRIONE40250;NIBTKYNMO8;Atlas Saint André;;32 Grand Rue 67120 Dorlisheim;;[7.66379112, 48.93055017];;FRS41E4350;FRCPIE66126452;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.353706;-21.2820316;;;; +;;;;;;;;FRIONE4025;ANJ1WIKMYP;Super U Etang Salé;;7 rue de la gare 67190 Dinsheim;;[7.64142021, 48.95131715];;FRS41E4351;FRIENE0077011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.453482;-21.2188338;;;; +;;;;;;;;FRS37E520;EAAJHMSG0A;Reichshoffen, Intermarché;;32 Rue de Saverne 67120 Soultz-les-bains;;[7.61174961, 48.94217109];;FRS41E4353;FRIENE0077012;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.288081;43.585564;;;; +;;;;;;;;FRS41E501;VN6VPKVCYJ;Reichshoffen, Parking de la Charte;;1 rue de l'ecole 67120 Duttlenheim;;[6.46521082, 43.5353684];;FRS41E4354;FRIENE0077023;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.39586;48.8379;;;; +;;;;;;;;FRS41E515;XCORTW51OS;Niederbronn, Parking du Bureau Central;;15 rue Saint-Martin 67120 Dachstein;;[8.657465, 41.908496];;FRS41E139113;FRIENE0077024;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.00658;47.955;;;; +;;;;;;;;FRS41E516;ZKTDTIRGQ6;Oberbronn, Place du Couvent;;9 Rue de la Gare 67120 Avolsheim;;[7.353706, 48.075534];;FRS41E139114;FRS28E137316;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.65178355;-21.1329182;;;; +;;;;;;;;FRCPIE6505435;YNELILYBTU;Draguignan, Parking de la Victoire;;1 rue Hermès 67190 Mutzig;;[2.453482, 48.615785];;FRS41E4373;FRS28E137317;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.273899;44.0841;;;; +;;;;;;;;FRS28E12896;RUSDRTRTIC;Ajaccio, Résidence Les Calanques;;Rue de Molsheim 67120 Wolxheim;;[55.288081, -21.168965];;FRS41E4374;FRS37E1563;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1289093;44.0404;;;; +;;;;;;;;FRS28E13483;ZV712M4PDY;Colmar, Avenue de la Marne;;13 D2422 67120 Molsheim;;[6.39586, 49.0128];;FRCPIE66380051;FRS37E1564;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.86641287;44.1801;;;; +;;;;;;;;FRCPIE6720865;L4SV657FSZ;Evry, SEM Genopole;;Rue des Sports 67120 Molsheim;;[6.00658, 49.19142];;FRCPIE66380052;FRCPIE66126951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.269431;47.978213;;;; +;;;;;;;;FRCPIE6495255;Z2LFDV9ICD;Saint-Leu, Rue du trésor;;6 Place des Fêtes 67280 Niederhashlach;;[55.65178355, -20.9630462];;FRS41E4384;FRCPIE66126952;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.61115417;48.108046;;;; +;;;;;;;;FRS37E489;FKDYATCML9;Rémilly, Place Foch;;70 Rue du Nideck 67280 Oberhaslach;;[2.273899, 49.855845];;FRS41E4432;FRCPIE66127051;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.94949981;48.451171;;;; +;;;;;;;;FRCPIE6744725;AYXSCDI0WU;Sainte-Marie-aux-Chênes, Avenue Gambetta;;Place Saint-Cyriaque 67120 Altorf;;[3.1289093, 45.76876531];;FRS88E144239;FRCPIE66127052;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.10311;48.329628;;;; +;;;;;;;;FRS41E484;VHOOTUNF03;Super U - Saint André;;6 rue de l'eglise 67190 Mutzig;;[1.86641287, 50.09835705];;FRS88E144241;FRS37E1566;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.637342;48.311025;;;; +;;;;;;;;FRS37E486;M2EKAJD91G;Dury, Route D'Amiens;;45 Avenue Du Trois Septembre 06320 Cap-d'Ail;;[2.269431, 49.88548];;FRS41E4387;FRCPIE66126252;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.870892;48.31798;;;; +;;;;;;;;FRS41E486;RQQJRQFCA0;Clermont-Ferrand, Restaurant Cacot;;9 Rue Des Guignières 41000 Blois;;[3.61115417, 45.72263008];;FRS41E4388;FRS37E1567;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.68480401;48.329641;;;; +;;;;;;;;FRCPIE6741035;DX43HOHF9A;Abbeville, restaurant Del Arte;;53 avenue Chabaud Latour 25200 Montbéliard;;[5.94949981, 45.55631539];;FRCPIE66395551;FRS37E1568;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5016092;48.0404528;;;; +;;;;;;;;FRS41E488;IJ9TQ4ZQGD;Amiens, Restaurant Le Vivier;;Zone Commerciale en Chantrans 39570 Montmorot;;[6.10311, 47.2713];;FRCPIE66395552;FRS37E1558;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.06361322;48.3318444;;;; +;;;;;;;;FRS37E490;KEFA2NCMDL;Augerolles, Restaurant Les Chênes;;3 Chemin Du Poulard 38690 Montrevel;;[-1.637342, 48.130888];;FRS55E66244;FRS37E1570;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.11311;48.364012;;;; +;;;;;;;;FRS41E500;HKSZNBMAIQ;Rexel Grenoble Catm;;PK31 côté montagne Haapiti 98728 MOOREA;;[2.870892, 49.433153];;FRS55E66245;FRCPIE66130451;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.54689932;48.5411282;;;; +;;;;;;;;FRCPIE6745105;IOUDAC89QN;Roche-lez-Beaupré, Vinci Facilities;;Place Anatole Le Braz 56100 Lorient;;[4.68480401, 43.97449468];;FRS88E144258;FRCPIE66130452;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.60896065;48.1705744;;;; +;;;;;;;;FRS41E491;DNRVCQDURX;Rennes, LS Group Rennes Longchamp;;Rue Raymond du Rallier du Baty 56100 Lorient;;[3.5016092, 45.10077504];;FRS88E144260;FRCPIE66653451;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.47474772;48.2861626;;;; +;;;;;;;;FRS41E492;IFL3AFTDY3;Choisy-au-Bac, rue du Pont-des-Rets;;Place du Général de Gaulle 56530 Quéven;;[-0.06361322, 43.93415882];;FRS41E4430;FRCPIE66653452;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.47542465;48.3143585;;;; +;;;;;;;;FRS41E493;NHMKAMC2LI;Rochefort-du-Gard, Renault Georges Pruvost;;ROUTE DE KERBERST 56520 Guidel;;[4.11311, 45.1445];;FRS41E4431;FRS37E15734;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.46983122;48.568551;;;; +;;;;;;;;FRS41E499;WC5UFQ7KI5;Langeac, Renault;;Place du Dôme 56130 Roche-Bernard;;[6.54689932, 43.25016021];;FRS28E129245;FRS37E15735;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.39766347;48.2785931;;;; +;;;;;;;;FRCPIE6635955;M4QQQCYB7O;Cazaubon, Renault Sauvage;;Rue Daniel Gilard 56000 Vannes;;[3.60896065, 43.42914778];;FRS55E65362;FRCPIE66138251;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.30042911;48.493274;;;; +;;;;;;;;FRCPIE6609805;WVK9HMQCCS;Yssingeaux, Renault;;Rue Jean Marie Bécel 56000 Vannes;;[55.47474772, -21.3225547];;FRCPIE65302852;FRCPIE66138252;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.877324;48.053815;;;; +;;;;;;;;FRCPIE6740835;Q0ZSMFKDDZ;Cogolin, Renault;;Séné, Place Foresti 56860 Séné;;[55.47542465, -21.3231281];;FRS55E65334;FRCPIE66141251;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.08552;48.064159;;;; +;;;;;;;;FRCPIE6740785;L6GDDDH42A;Renault, Mèze;;Rue du Pont Douar 56400 Brech;;[55.46983122, -21.3170725];;FRS41E4053;FRCPIE66126451;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.30356;47.992499;;;; +;;;;;;;;FRCPIE6740795;KLLHKZ;Burger King Saint Pierre;;Place Saint Märgen 56410 Erdeven;;[55.39766347, -21.2820316];;FRSHEE1642;FRCPIE66126251;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.63067564;48.142109;;;; +;;;;;;;;FRCPIE6741515;OTOLZUTYPN;3 Brasseurs Saint Pierre;;Place Aristide Briand 56300 Pontivy;;[55.30042911, -21.2188338];;FRSHEE1643;FRCPIE66103951;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.19525;48.531443;;;; +;;;;;;;;FRCPIE6741535;RR19SMVEEU;Tennis Club Saint Pierre;;Place Anne de Bretagne 56270 Ploemeur;;[3.877324, 43.585564];;FRCPIE66316551;FRFASE3310107;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.11143;48.391572;;;; +;;;;;;;;FRCPIE6740815;OVFYCFMIF5;Burger King Saint Louis;;Rue Raymond Marcellin - PEM 56370 Sarzeau;;[8.08552, 48.8379];;FRCPIE66316552;FRCPIE66103952;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.88195;48.312045;;;; +;;;;;;;;FRCPIE6740825;HIAAJ792SH;Saint-Leu, Rue du Pressoir;;Boulevard de l'Océan 56270 Ploemeur;;[7.30356, 47.955];;FRCPIE66315451;FRS28E137294;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.498079;48.550965;;;; +;;;;;;;;FRCPIE6740845;GKSM9JPFEJ;Montpellier, Rubis Automobile;;Rue des Genêts 56660 Saint-Jean-Brévelay;;[55.63067564, -21.1329182];;FRCPIE66315452;FRS28E137295;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.443498;48.5015677;;;; +;;;;;;;;FRCPIE6740855;MRITJNKUD6;Roppenheim;;Rue Curie 56510 Saint-Pierre-Quiberon;;[1.19525, 44.0841];;FRCPIE66317451;FRCPIE66120851;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.611208;48.238867;;;; +;;;;;;;;FRCPIE6740865;VMK6UA8RNE;Rouffach, Rue des Vergers;;Rue de Treffléan 56450 Theix;;[1.11143, 44.0404];;FRCPIE66320451;FRCPIE66120852;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.101195;48.028544;;;; +;;;;;;;;FRCPIE6740875;V9EYPVI8LD;Boulodrome - Plaine des Palmistes;;Rue de la Carrière 56610 Arradon;;[0.88195, 44.1801];;FRCPIE66320452;FRS37E1551;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.031631;48.042697;;;; +;;;;;;;;FRCPIE6740885;TEEOXBC8Q5;Labastide-du-Temple, Grand Rue;;2 Place De L'europe 56400 Auray;;[4.498079, 47.978213];;FRCPIE66323651;FRS37E1552;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.104369;48.4935616;;;; +;;;;;;;;FRCPIE6741075;ODWORPPTTT;Castelsarrasin, Verdun;;Rue Nationale 56390 Colpo;;[4.443498, 48.108046];;FRCPIE66323652;FRFASE3310101;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.101094;48.238953;;;; +;;;;;;;;FRCPIE6740755;UXPENJ0ONZ;Perville, Salle des Fêtes;;Place du presbytère 56850 Caudan;;[3.611208, 48.451171];;FRS41E4043;FRFASE3310102;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4033642;48.166854;;;; +;;;;;;;;FRCPIE6740745;VPUTSR;Mussy-Sur-Seine, 18 Quai Interrompu;;Rue du pont clas 56150 Baud;;[4.101195, 48.329628];;FRS41E4044;FRFASE3310103;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.7392818;48.236231;;;; +;;;;;;;;FRCPIE6675745;SPRJJM;Ville-Sur-Arce, 39 Gr Grande Rue;;Ruelle des Champs 56410 Étel;;[4.031631, 48.311025];;FRS41E4054;FRFASE3310104;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.332113;48.129995;;;; +;;;;;;;;FRCPIE6675765;DYCYSE;Ferreux-Quincey, 18 Route de Nogent;;Rue de la Maillette 56500 Moustoir-Ac;;[4.104369, 48.31798];;FRSHEE1633;FRFASE3310105;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0665713;48.142869;;;; +;;;;;;;;FRIONE41290;KUVQGY;Pont-Sainte-Marie, Voie Mac Arthur Glen;;Rue du souvenir 56460 Lizio;;[4.101094, 48.329641];;FRS41E4071;FRFASE3310106;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2163563;48.5110323;;;; +;;;;;;;;FRIONE4129;HJWQTE;La-Chapelle-Saint-Luc, Av de Neckarbischofsheim;;Parking Salle Polyvalente 56500 Saint-Allouestre;;[4.4033642, 48.0404528];;FRS41E4072;FRFASE3310108;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0284165;48.235708;;;; +;;;;;;;;FRCPIE6684665;RHVWXN;Pont-Sainte-Marie, 6 Rue du Moulinet;;Rue Anne de Bretagne 56500 Radenac;;[3.7392818, 48.3318444];;FRS28E186530;FRIONE40355;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0980575;48.276579;;;; +;;;;;;;;FRCPIE6697565;YUSRPHWAJU;Neuville-Sur-Seine, Carrefour D671 et D26;;Rue de la Résistance 56310 Quistinic;;[4.332113, 48.364012];;FRS41E4091;FRS37E1376;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.968203;48.233498;;;; +;;;;;;;;FRS28E13475;BVTHHN;Faux-Villecerf, Rue Saint Martin;;Place de la Résistance 56500 Moréac;;[4.0665713, 48.5411282];;FRS41E4092;FRS37E1377;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8726956;48.25635205;;;; +;;;;;;;;FRCPIE6755595;BUGQMG;Piney, Rue de la Halle;;Place François Jaffré 56240 Inguiniel;;[4.2163563, 48.1705744];;FRCPIE66337451;FRS37E53927;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.922544;48.278961;;;; +;;;;;;;;FRCPIE6676265;HPYME0H9MH;Pouan-Les-Vallees, 3 Place de la Liberté;;Place de la Mairie 56240 Berné;;[4.0284165, 48.2861626];;FRCPIE66337551;FRCPIE66125151;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.395872;48.11517825;;;; +;;;;;;;;FRCPIE6614465;RB9CFF9JHS;Saint-Parres-Les-Vaudes, Rue François Mothre;;Place De La Mairie 56800 Ploërmel;;[4.0980575, 48.3143585];;FRS55E66213;FRCPIE66125152;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.502292;48.2884229;;;; +;;;;;;;;FRCPIE6614505;WHQ8FILD6X;La-Riviere-De-Corps, Allée Forestière;;Rue de la Brèche 56290 Port-Louis;;[3.968203, 48.568551];;FRS55E66214;FRS18E202094;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.364188;48.22545366;;;; +;;;;;;;;FRCPIE6614515;FNEF1NNCUJ;Pont-Sainte-Marie, Parking de l'ile du Beauséjour;;Place Patrick Bihan 56270 Ploemeur;;[3.8726956, 48.2785931];;FRS55E66198;FRS18E202095;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.017202;48.298083;;;; +;;;;;;;;FRCPIE6740725;ZZACWFQHTL;Plancy-L'Abbaye, 3 Place Maréchal Foch;;Boulevard du Maréchal Joffre 56100 Lorient;;[3.922544, 48.493274];;FRS55E66199;FRIONE403501;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.194289;48.11391691;;;; +;;;;;;;;FRCPIE6752805;QP7WQ717RY;Fontvannes, Place de la Poste;;Place Général de Gaulle 56230 Questembert;;[4.395872, 48.053815];;FRS55E66193;FRIONE403502;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.52755;47.803967;;;; +;;;;;;;;FRCPIE6750405;PGPGPUMXHP;Droupt-Ste-Marie, 12 Route de Méry;;Rue Müller 56100 Lorient;;[4.502292, 48.064159];;FRS55E66194;FRIONE403503;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.06958;47.91356;;;; +;;;;;;;;FRS18E9395;OMPQB904LG;Buxeuil, Place de la Mairie;;Place le Montagner 56520 Guidel;;[4.364188, 47.992499];;FRSHEE1641;FRIONE403504;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.577552;48.110928;;;; +;;;;;;;;FRCPIE6507275;MECXL47JEY;Loches-Sur-Ource, Rue du Château;;Avenue Winston Churchill 56000 Vannes;;[4.017202, 48.142109];;FRSHEE1632;FRIONE403505;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3851649;47.950708;;;; +;;;;;;;;FRS41E13515;WBBEFNGEV0;Les-Riceys, Rue du Parc Saint Vincent;;Place de la Mairie 56470 Saint-Philibert;;[4.194289, 48.531443];;FRS55E65333;FRIONE403506;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.386689;48.32645419;;;; +;;;;;;;;FRS18E9688;VYVHYG;Cresantignes, 40 Rue Principale;;Place de la Mairie 56200 Fougerêts;;[4.52755, 48.391572];;FRIONE40175;FRS37E1560;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.42743;48.509824;;;; +;;;;;;;;FRS18E9689;HXUBZE62BL;Torcy-Le-Petit, 1 Rue de l'Enfer;;Place de la Libération 56000 Vannes;;[4.06958, 48.312045];;FRS41E3781;FRS37E1442;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.908456;48.3027356;;;; +;;;;;;;;FRCPIE6751445;RHM6D0U5CK;Brienne-Le-Chateau, 68 Rue de l'École Militaire;;Rue Père Marie Joseph Coudrin 56370 Sarzeau;;[3.577552, 48.550965];;FRS28E137367;FRCPIE66090452;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5111747;48.333103;;;; +;;;;;;;;FRCPIE6752825;Q0BSVGD4TL;Troyes, 22 Rue gregoire pierre herluison;;Boulevard de Port Maria 56260 Larmor-Plage;;[4.3851649, 48.5015677];;FRS28E137368;FRCPIE66045552;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2988;48.233992;;;; +;;;;;;;;FRS18E21430;KN5TJGPS90;Barbuise, 1 Route de Liours;;Chemin du Vrancial 56870 Baden;;[4.386689, 48.238867];;FRIENE0085011;FRCPIE66048751;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.246403;48.198718;;;; +;;;;;;;;FRS18E14884;PPXUSFEVQZ;Jasseines, Ruelle du Monument;;Place Alsace Lorraine 56100 Lorient;;[4.42743, 48.028544];;FRIENE0085012;FRS37E1269;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.702219;48.332553;;;; +;;;;;;;;FRCPIE6726655;JRNPEZU7Q6;La-Villeneuve-Au-Chene, 6 Rue de la Pierre;;Rue de Maneguen 56150 Guénin;;[3.908456, 48.042697];;FRIENE0085023;FRS37E1268;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.035952;48.121911;;;; +;;;;;;;;FRS28E12928;LLSVKH;Gye-Sur-Seine, 1 Place de la Mairie;;Place Morvan Leiz Breizh 56630 Langonnet;;[3.5111747, 48.4935616];;FRIENE0085024;FRCPIE66048052;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.302821;48.23801;;;; +;;;;;;;;FRS18E10835;ZDKGZT;Ervy-Le-Chatel, 1 Rue du Tré;;Place de la Poste 56140 Ruffiac;;[4.2988, 48.238953];;FRCPIE66304251;FRCPIE66048051;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.43476989;48.29891165;;;; +;;;;;;;;FRS18E10836;DFCD7VBOXJ;Nogent-Sur-Seine, Avenue Saint Roch;;Rue de l'Ecole 56200 Cournon;;[4.246403, 48.166854];;FRCPIE66304252;FRFASE3300408;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.110207;48.302682;;;; +;;;;;;;;FRCPIE6553745;YDXANV;Montieramey, 41 Grande Rue;;Place du Vieux Couvent 56190 Muzillac;;[4.702219, 48.236231];;FRIONE401701;FRFASE3300407;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.069758;48.348072;;;; +;;;;;;;;FRS18E10965;JDWNMZ;Chappes, 8 Place camille Bruy;;Cours des Quais 56470 Trinité-sur-Mer;;[4.035952, 48.129995];;FRIONE401702;FRFASE3300406;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.706075;48.348173;;;; +;;;;;;;;FRS28E12992;JBANTOHEUX;Bar-Sur-Aube, 27 Avenue du Général Leclerc;;Place Varquez 56170 Quiberon;;[4.302821, 48.142869];;FRIONE401703;FRFASE3300405;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.06433811;48.301693;;;; +;;;;;;;;FRS18E10961;WBGP5SFP0C;Jeugny, 3 Rue de la Gare;;Rue Jean Jaurès 56000 Vannes;;[3.43476989, 48.5110323];;FRIONE401704;FRFASE3300404;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.04579;48.548185;;;; +;;;;;;;;FRS18E9836;SSWRWK;Virey-Sous-Bar, 10 rue jean Monnet;;Rue de la République 56980 Plescop;;[4.110207, 48.235708];;FRCPIE66304851;FRFASE3300403;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.37313472;48.29276;;;; +;;;;;;;;FRS18E20136;PWR6BZZQGG;Le-Meriot, Rue du Stade;;Cours Louis de Chazelles 56100 Lorient;;[4.069758, 48.276579];;FRSHEE1631;FRFASE3300402;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.1623023;48.493278;;;; +;;;;;;;;FRCPIE6737415;VY4NRBJE2L;Bucheres, 1 Rue de la Mairie;;Parking Wilson 56740 Locmariaquer;;[4.706075, 48.233498];;FRCPIE66304852;FRFASE3300401;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.12797109;48.311709;;;; +;;;;;;;;FRIENE004901;BOYXK5TOYQ;Troyes, Avenue des Lombards;;Rue des Martyrs de la Résistance 56420 Plumelec;;[4.06433811, 48.25635205];;FRCPIE66304951;FRCPIE66045551;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.068873;48.016814;;;; +;;;;;;;;FRCPIE6726665;LVMPNLAYFU;Bar-Sur-Aube, 1 Place Carnot;;Rue du Bel Air 56320 Priziac;;[4.04579, 48.278961];;FRCPIE66304952;FRS28E176491;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.37420322;48.484073;;;; +;;;;;;;;FRCPIE6761165;ZJREN2NZLF;Rosières-prés-Troyes, Parking Place Charles De Gaulle;;Le Bourg 56480 Sainte-Brigitte;;[4.37313472, 48.11517825];;FRS28E137373;FRCPIE66045452;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.434096;48.380433;;;; +;;;;;;;;FRS28E13482;UZHVKOIULL;Saint André les Vergers, Entrée des Antes;;Rue Marie Curie 56400 Pluneret;;[4.1623023, 48.2884229];;FRS28E137374;FRCPIE66066651;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.379166;48.31203;;;; +;;;;;;;;FRCPIE6737325;LJRZ79TYYV;Bar-sur-Seine, Grande Rue de la Résistance;;Rue Henri Matisse 56000 Vannes;;[4.12797109, 48.22545366];;FRCPIE67177651;FRCPIE66066652;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.133981;48.335985;;;; +;;;;;;;;FRCPIE6737345;VMQABZ1RXS;Thennelières, Aire de covoiturage;;Place de la République 56000 Vannes;;[4.068873, 48.298083];;FRCPIE67177652;FRCPIE66066751;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.005376;48.513979;;;; +;;;;;;;;FRCPIE6737375;VZTNJWZFYA;Buchères, aire de covoiturage;;Rue du Commerce 56000 Vannes;;[4.37420322, 48.11391691];;FRCPIE67196751;FRCPIE66066752;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.01989401;48.514019;;;; +;;;;;;;;FRIONE46060;GDX3BISWCW;Troyes, Boulevard Gambetta;;Place Corentin Le Floch 56160 Lignol;;[5.434096, 47.803967];;FRCPIE67196752;FRCPIE66067451;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.89093336;48.513939;;;; +;;;;;;;;FRIONE4606;GZ4Z5QIFE5;Bar-sur-Seine, Place de la République;;Rue du Vieux Presbytère 56330 Camors;;[5.379166, 47.91356];;FRCPIE67196951;FRCPIE66067951;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.07617181;48.177289;;;; +;;;;;;;;FRCPIE6682045;O3RJPKY0UW;Chalindrey, Rue des Frères Lumières;;Parking Kériolet 56400 Auray;;[5.133981, 48.110928];;FRCPIE67196952;FRCPIE66067952;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.022728;48.020072;;;; +;;;;;;;;FRCPIE6726605;T4PZWNFZBA;Changey, Rue du Lac;;Rue de la Vallée 56380 Guern;;[5.005376, 47.950708];;FRCPIE67156551;FRCPIE66068351;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.708077;48.060667;;;; +;;;;;;;;FRCPIE6736125;QROFJYHMEM;Chaumont, Avenue du Maréchal Foch;;Rue du Tostal 56250 Vraie-Croix;;[4.01989401, 48.32645419];;FRCPIE67156552;FRCPIE66068352;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.776899;47.951248;;;; +;;;;;;;;FRCPIE6736215;KXNJAH;Arc en Barrois, Route d'Aubepierre - Parc National;;Place du Général de Gaulle 56700 Hennebont;;[3.89093336, 48.509824];;FRIONE438605;FRCPIE66068751;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.125956;48.279567;;;; +;;;;;;;;FRIONE41030;CNKANW;Barberey-Saint-Sulpice, Parking de l'aéroport;;Place de la Chapelle 56340 Carnac;;[4.07617181, 48.3027356];;FRIONE438606;FRCPIE66068752;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.372186;48.129514;;;; +;;;;;;;;FRCPIE6736705;MNPCFQ7OXG;Méry-sur-Seine, Rue de Bourdeaux;;30 Avenue Lénine 97420 Le Port;;[4.022728, 48.333103];;FRIONE438607;FRCPIE66198451;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.668466;48.283534;;;; +;;;;;;;;FRCPIE6736485;D7WPB3XQ6G;Troyes, 10 Boulevard Danton;;Avenue Gustave Eiffel 36130 Déols;;[4.708077, 48.233992];;FRS55E66260;FRCPIE66048752;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.21452042;48.403725;;;; +;;;;;;;;FRS18E20717;YDZTIADNZR;Lavau, Chemin des Corvées;;Rue du Fort Gambetta 57140 Woippy;;[4.776899, 48.198718];;FRCPIE67471051;FRCPIE66050351;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0761;48.357641;;;; +;;;;;;;;FRS18E18833;NJQYCSS9YJ;Bar-Sur-Aube, Parking Saint Pierre;;Rue De La Grange-Aux-Bois 57070 Metz;;[4.125956, 48.332553];;FRCPIE67471052;FRCPIE66090451;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.526286;48.445215;;;; +;;;;;;;;FRS37E1675;J0GFGGCJEV;Bayel, 1 Pace de la mairie;;Pont Jean Monnet 57000 Metz;;[4.372186, 48.121911];;FRS55E66276;FRIONE409505;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.535224;48.269322;;;; +;;;;;;;;FRS18E20781;N41JBEJUX0;Creney-Pres-Troyes, 45 Rue de la republique;;Place de l'Eglise 77330 Ozoir-le-Ferrière;;[3.668466, 48.23801];;FRS55E66277;FRIONE40955;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.335461;48.422127;;;; +;;;;;;;;FRIONE4103;YA46XKXKNV;Bar-Sur-Seine, 2 rue du stade;;20 avenue Françoise Giroud 21000 Dijon;;[4.21452042, 48.29891165];;FRS55E66466;FRIONE409524;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.626185;48.257447;;;; +;;;;;;;;FRCPIE6736785;HAFZJ5OASW;Saint-Benoist-Sur-Vanne, 21 route Nationale;;26 allée des Frères Voisin 75015 Paris;;[4.0761, 48.302682];;FRS55E66467;FRIONE409523;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.05667;48.407601;;;; +;;;;;;;;FRS41E11772;YFZ4RGRHQW;Laubressel, rue du Presbytère;;4 rue du Général Stuhl 57230 Bitche;;[4.526286, 48.348072];;FRS55E66450;FRIONE409522;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.50281;48.589523;;;; +;;;;;;;;FRS18E18147;Y5T0WNKPDM;Troyes, 15 Boulevard Danton;;9 Voie Denis Papin 83700 Saint-Raphaël;;[4.535224, 48.348173];;FRS55E66451;FRIONE440409;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.180425;47.994615;;;; +;;;;;;;;FRCPIE6637895;DP3PB1WVYW;Dienville, Port DIENVILLE;;22 Route Du Gaschney 68380 Muhlbach-sur-Munster;;[4.335461, 48.301693];;FRS41E4228;FRIONE409513;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.103553;48.179291;;;; +;;;;;;;;FRCPIE6637885;ACHEMHFYWZ;Dienville, 37 Avenue Paul Girard;;Rue Alfred Rey 80200 Péronne;;[3.626185, 48.548185];;FRS41E4492;FRIONE409512;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.673175;48.29443;;;; +;;;;;;;;FRCPIE6634505;VOQCWRZDSV;Geraudot, 79 Les Hamberts;;Place André Audinot 80200 Péronne;;[4.05667, 48.29276];;FRS55E66369;FRIONE409511;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.620832;48.294342;;;; +;;;;;;;;FRS18E18239;R5KNPQNHQ2;Perigny-La-Rose, 2 Rue du Mousseau;;303 Chemin De La Fossella 66100 Perpignan;;[3.50281, 48.493278];;FRS55E66370;FRIONE409510;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.069551;48.392695;;;; +;;;;;;;;FRS18E20600;ZEG82YBLHG;Sainte-Savine, 1 Rue Lamoricière;;Rue Louis Delage 66000 Perpignan;;[4.180425, 48.311709];;FRS55E66259;FRIONE409509;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.030422;48.294424;;;; +;;;;;;;;FRCPIE6609935;RRQIJKR9TI;Nogent-Sur-Seine, Place d'Armes;;1935 Avenue D'espagne 66100 Perpignan;;[4.103553, 48.016814];;FRS41E4231;FRIONE409508;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.730059;48.293296;;;; +;;;;;;;;FRS18E15093;E0ZXMGMWDE;Bouranton, 3 Rue de l'Ecole;;26 place Victor Hugo 89100 Sens;;[3.673175, 48.484073];;FRIONE438608;FRIONE409507;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.729993;48.294271;;;; +;;;;;;;;FRCPIE6609545;UTK8EYPJQ7;Cussangy, 11 Rue des cannes;;Parking des Charpentiers 67650 Dambach-la-Ville;;[4.620832, 48.380433];;FRS41E4232;FRIONE409506;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.730125;48.256026;;;; +;;;;;;;;FRS18E14751;CXWV1XDUHI;Gelannes, 1 Rue de la place Publique;;9 rue Paul Sabatier 71100 Chalon-sur-Saône;;[4.069551, 48.31203];;FRCPIE66348451;FRIONE409504;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.665006;48.293681;;;; +;;;;;;;;FRS28E13098;AGJL7CMQDC;Morvilliers, 1 Rue Saint Laurent;;2 Rue Ferdinand De Lesseps 33700 Mérignac;;[4.030422, 48.335985];;FRCPIE66348452;FRCPIE66050352;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.444622;48.292115;;;; +;;;;;;;;FRS18E10905;RDGTHWLARG;Troyes, 22 Rue Grégoire Pierre Herluison;;24 Rue Paul Degermann 67140 Barr;;[3.730059, 48.513979];;FRS55E66387;FRIONE409503;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.534964;48.399932;;;; +;;;;;;;;FRS37E11783;NLZDH1ZLAJ;Barberey-Saint-Sulpice, Rue Jules Ferry;;403 Rue De Bordeaux 16000 Angoulême;;[3.729993, 48.514019];;FRS55E66388;FRIONE409502;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.968666;48.669258;;;; +;;;;;;;;FRS37E11782;XNM9MXUP5F;Romilly, 26 Av du Général Leclerc, Pkg de la Gare;;63 Avenue Léo Lagrange 63300 Thiers;;[3.730125, 48.513939];;FRCPIE66348751;FRIONE409501;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.07005;48.493503;;;; +;;;;;;;;FRS18E17930;RBZ1ZLYPLQ;Berulle, 1 Chemin du Moulin;;Rue Georges Santoni 84400 Apt;;[3.665006, 48.177289];;FRCPIE66348752;FRCPIE66066452;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.518964;48.099248;;;; +;;;;;;;;FRS18E11307;RVEHPJBOQM;Courteron, 4 Rue de l'église;;1 Boulevard De Metz 67000 Strasbourg;;[4.444622, 48.020072];;FRS55E66300;FRCPIE66066451;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.051992;48.207971;;;; +;;;;;;;;FRCPIE6736395;IMLPHRRBEG;Essoyes, 34 Rue de la Gare;;Rue de Zurich 67000 Strasbourg;;[4.534964, 48.060667];;FRS55E66301;FRCPIE66063952;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.73673;48.358925;;;; +;;;;;;;;FRCPIE6736355;Y2JPVALCYB;Lignières, Rue des Quatre Vents;;PK20.5 côté montagne Tiapa 98711 Tahiti - Paea;;[3.968666, 47.951248];;FRS55E66462;FRCPIE66063951;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.502756;48.5033;;;; +;;;;;;;;FRCPIE6736325;G5SA8D9JDH;Troyes, Rue Louis le Clert - Parking P1 Hôpital;;2 Rue Jules Guesde 91130 Ris-Orangis;;[4.07005, 48.279567];;FRS55E66463;FRCPIE66059452;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.926727;48.360819;;;; +;;;;;;;;FRS28E13441;LIKFVHWT88;Bertignolles, 5 Rue de la Fontaine;;33 cour du Dr Levy 69200 Vénissieux;;[4.518964, 48.129514];;FRCPIE66357051;FRCPIE66059451;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.073498;48.509162;;;; +;;;;;;;;FRS18E20309;SVN7SXCAR1;Saint-Andre-Les-Vergers, Avenue de l'Ile Germaine;;Rue des Boeufs 67000 Strasbourg;;[4.051992, 48.283534];;FRCPIE66357052;FRCPIE66052052;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.969593;48.671467;;;; +;;;;;;;;FRCPIE6736765;P5FSDYQORG;Marigny-Le-Chatel, 1 Ruelle des juifs;;416 rue Lamarck Jean-Baptiste 43700 Saint-Germain-La-Prade;;[3.73673, 48.403725];;FRCPIE67470852;FRCPIE66052051;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.727224;48.408332;;;; +;;;;;;;;FRCPIE6736465;KNICVTLTDG;Radonvilliers, 35 Grande Rue;;Rue Du Parc 39150 Saint-Laurent-en-Grandvaux;;[4.502756, 48.357641];;FRCPIE67470851;FRCPIE66051752;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9504;48.207034;;;; +;;;;;;;;FRIONE40280;M4NFTGGIIT;Saint-Mesmin, 35 Rue de Chily;;138 Route Nationale 41350 Saint-Gervais-la-Forêt;;[3.926727, 48.445215];;FRIONE463103;FRCPIE66051751;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.557904;48.325312;;;; +;;;;;;;;FRIONE4028;EKHSALDPCE;Rosieres-Pres-Troyes, 19 Rue Gustave Eiffel;;ZAC de l'Echangeur, rue Joseph Aristide 18000 Bourges;;[4.073498, 48.269322];;FRCPIE65302851;FRCPIE66198452;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.483034;48.239466;;;; +;;;;;;;;FRIENE007901;ESLPQIB7IA;Chauchigny, 35 Rue des Grandes Communication;;ZAC de l'Ecoparc, Avenue Georges Hennequin 36130 Déols;;[3.969593, 48.422127];;FRIONE43865;FRCPIE66069051;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.226495;48.267637;;;; +;;;;;;;;FRIENE007902;FJFZXU8ENZ;Villemaur-Sur-Vanne, 3 Rue de l'Église;;77 avenue des Télégraphes 98835 Dumbéa;;[3.727224, 48.257447];;FRS55E66240;FRCPIE66069052;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.068311;48.440882;;;; +;;;;;;;;FRS28E13417;ZV5TCKN6XS;Savieres, 7 Place de la salle des fetes_x000D_;;Impasse de Bischheim 67000 Strasbourg;;[3.9504, 48.407601];;FRS55E66241;FRS37E1387;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.078809;47.948425;;;; +;;;;;;;;FRCPIE6742035;FD7OZRUY0H;Villenauxe-La-Grande, 25 Rue Cornuelle;;Rue De Nantes 67100 Strasbourg;;[3.557904, 48.589523];;FRS37E4166;FRCPIE66080852;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.52974;47.951446;;;; +;;;;;;;;FRS41E380;GL2UG1CLGJ;Plaines-Saint-Lange, 6 Route départementale 671;;Allée Des Açores 67000 Strasbourg;;[4.483034, 47.994615];;FRS37E4167;FRS37E1371;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.067838;49.17747979;;;; +;;;;;;;;FRCPIE6742055;HZABK7HN5Y;Villemoyenne, 9 Rue René Deshons;;Place Gutenberg 67000 Strasbourg;;[4.226495, 48.179291];;FRS37E4168;FRS37E1372;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.075898;48.8963;;;; +;;;;;;;;FRS41E16761;BDJU4LBRSL;Troyes, 5 Rue Marie Pascale Ragueneau;;Rue de Molsheim 67000 Strasbourg;;[4.068311, 48.29443];;FRS37E4169;FRS37E1373;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.08103;48.8922;;;; +;;;;;;;;FRS28E13734;IC5M8LGAEP;Troyes, 9 Boulevard du 14 Juillet;;Rue de la Porte de l'Hôpital 67000 Strasbourg;;[4.078809, 48.294342];;FRS55E66282;FRS37E1374;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.337234;45.762267;;;; +;;;;;;;;FRIENE005601;LKLAPAGPNF;Brienne-Le-Chateau, 11 Boulevard Napoléon;;Rue Pierre de Coubertin 67000 Strasbourg;;[4.52974, 48.392695];;FRS55E66283;FRCPIE66081851;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.080508;-17.5252859;;;; +;;;;;;;;FRIENE005602;U752AH0SVL;Troyes, 6 Boulevard Victor Hugo;;10 av du Lot, ZA de Meymes 46220 Prayssac;;[4.067838, 48.294424];;FRS55E66287;FRCPIE66081852;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.070461;43.59051036;;;; +;;;;;;;;FRIONE45160;HLGRFIGUUE;Troyes, 49 Boulevard du 14 Juillet;;87 avenue de la Mare Gessart 60280 Venette;;[4.075898, 48.293296];;FRS55E66288;FRS37E1383;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.516982;43.95966538;;;; +;;;;;;;;FRFASE330280;JSFZN0RULV;Troyes, 4 Rue Charles Desguerrois;;1 Rue Du 11 Novembre 62590 Oignies;;[4.08103, 48.294271];;FRCPIE66786651;FRS37E1384;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.201564;47.5179;;;; +;;;;;;;;FRIONE4053;YZIPETWE26;Mesnil-Saint-Pere, 5 Rue du Lac;;551 Rue Albert Bailly 59700 Marcq-en-Barœul;;[4.337234, 48.256026];;FRCPIE66786652;FRCPIE66083151;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.310657;48.65894757;;;; +;;;;;;;;FRCPIE6712645;SJOBQ9REOE;Troyes, 7 Rue Nicolas SIRET;;35 Avenue De Fontcouverte 84000 Avignon;;[4.080508, 48.293681];;FRCPIE66786751;FRCPIE66083251;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.920259;44.899617;;;; +;;;;;;;;FRCPIE6654305;PZKSGTHL8A;Troyes, 1 1 Rue du Premier B C P;;Avenue des Frères Montgolfier 63170 Aubière;;[4.070461, 48.292115];;FRCPIE66786752;FRCPIE66083351;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.891382;46.2324;;;; +;;;;;;;;FRSHEE79;GID9KTPSHB;Brienne-Le-Chateau, 29 Rue d'Arcis;;Corniche des Issambres 83380 Roquebrune-sur-Argens;;[4.516982, 48.399932];;FRCPIE66786851;FRCPIE66083451;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.400423;46.32865994;;;; +;;;;;;;;FRSHEE80;XVUPAYBDCJ;Mailly-Le-Camp, 66 Rue du Général de Gaulle;;Avenue du Centurion 30240 Le Grau-du-Roi;;[4.201564, 48.669258];;FRCPIE66786852;FRS37E1388;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.7603;49.740756;;;; +;;;;;;;;FRIONE4380;DRECSOIEMU;Nogent-Sur-Aube, 65 Grande Rue;;Route des Marines 30240 Le Grau-du-Roi;;[4.310657, 48.493503];;FRS55E66323;FRS28E176250;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.006239;49.74086;;;; +;;;;;;;;FRS37E761;Z4TQI4RHCG;Auxon, 468 Grande Rue - Parking Intermarché;;Voie de la Pointe du Môle 30240 Le Grau-du-Roi;;[3.920259, 48.099248];;FRS55E66324;FRCPIE66086551;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.785801;43.65212834;;;; +;;;;;;;;FRS08E12923;JGHSSGGSHZ;Bercenay-En-Othe, 2 Rue du Prieuré;;Place de Bonne 30240 Le Grau-du-Roi;;[3.891382, 48.207971];;FRS55E66333;FRCPIE66086552;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.19691;48.079738;;;; +;;;;;;;;FRS37E773;QSGXNY9IT7;Brevonnes, 1 Rue de la gare;;Quai Lapérouse 30240 Le Grau-du-Roi;;[4.400423, 48.358925];;FRS55E66334;FRCPIE66087951;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.17291;48.9365;;;; +;;;;;;;;FRS28E13090;QGXXGHMZW9;Maizieres-La-Grande-Paroisse, Av du Gén de Gaulle;;Boulevard Jean Dauga 34350 Valras-Plage;;[3.7603, 48.5033];;FRS55E66306;FRCPIE66087952;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.137337;43.48068237;;;; +;;;;;;;;FRIONE43800;AHQ9T8GJQL;Saint-Lye, 2 Impasse Louis X le Hutin;;Parking Grand Parc D 85590 Les Epesses;;[4.006239, 48.360819];;FRS55E66309;FRCPIE66088051;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.085865;48.086151;;;; +;;;;;;;;FRIONE41250;FRILS7BK9O;Maizieres-La-Grande-Paroisse, Rue de la République;;4 Terrasse Bretagne 57400 Sarrebourg;;[3.785801, 48.509162];;FRS55E66326;FRCPIE66088052;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.46641;46.957896;;;; +;;;;;;;;FRS18E20534;FBVCG0WKZP;Mailly-Le-Camp, 36 Rue du Général de Gaulle;;865 Boulevard Des Sports 40350 Pouillon;;[4.19691, 48.671467];;FRS55E66327;FRCPIE66088451;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.647877;43.57252502;;;; +;;;;;;;;FRS18E18620;JGRRPW;Charmont-Sous-Barbuise, 3 Place Collaverdey;;3 Carrefour de l'Hours 34500 Béziers;;[4.17291, 48.408332];;FRS55E66576;FRCPIE66088452;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.682106;50.3577;;;; +;;;;;;;;FRS18E20197;ZCPHMP;Saint-Thibault, 5 Rue de l'Eglise;;59 Boulevard Laënnec 56800 Ploërmel;;[4.137337, 48.207034];;FRS55E66577;FRCPIE66088851;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.006872;47.861831;;;; +;;;;;;;;FRS18E14720;RRFQQ84JRE;Lavau, 5 Rue de la Fin;;Avenue Du Général Leclerc 93500 Pantin;;[4.085865, 48.325312];;FRIONE463102;FRCPIE66088852;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.745718;47.895943;;;; +;;;;;;;;FRCPIE6632585;SHXYLZ;Vendeuvre-Sur-Barse, 20 Avenue de la République;;217 Rue D'aubervilliers 75018 Paris;;[4.46641, 48.239466];;FRIONE423406;FRS37E1414;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.46744838;48.201938;;;; +;;;;;;;;FRS18E20638;KHYFHA;Arsonval, 5 Rue Tantane;;Polyclinique St Privat, Rue De La Margeride 34760 Boujan-sur-Libron;;[4.647877, 48.267637];;FRIONE463104;FRCPIE66090351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.21968;48.55213;;;; +;;;;;;;;FRCPIE6695555;HNRRDP5IDY;Saint-Martin-De-Bossenay, 9 Rue de Chaillouet;;26 Boulevard Pierre Lefaucheux 72000 Le Mans;;[3.682106, 48.440882];;FRIONE409602;FRCPIE66090352;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.19572;48.009488;;;; +;;;;;;;;FRIONE4125;CPLHFQ;Arc en Barrois, Rue Instituteur André;;Place de la Révolution 77680 Roissy-en-Brie;;[5.006872, 47.948425];;FRIENE0021011;FRCPIE66080851;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.133859;48.031301;;;; +;;;;;;;;FRS18E20641;TJPREQ;Bourbonne Les Bains, Parking Clocheton;;RN7, 83340 Flassans-sur-Issole 83340 Flassans-sur-Issole;;[5.745718, 47.951446];;FRS28E137397;FRS37E1370;;;;;;;;;;;;;;;;;;;;;;;;;;;;-149.529006;48.036006;;;; +;;;;;;;;FRS18E15033;YKR9MTGPDS;Boulay-Moselle, Rue Téophile Sombon;;Les Hauts De Maniba 97222 Case-Pilote;;[6.46744838, 49.17747979];;FRIENE0005024;FRS37E1369;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26565477;47.999145;;;; +;;;;;;;;FRS28E13938;T7R6DBLAOK;Nanterre, Parking Préfecture;;37b Rue Jean Jaurès 10440 La Rivière-de-Corps;;[2.21968, 48.8963];;FRIENE0005023;FRS37E1368;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.16395031;48.60593;;;; +;;;;;;;;FRS28E13969;R3WPD3XTW8;Nanterre, Parking Lumières;;2 Allée De L'espace Saint-Martin 54700 Pont-à-Mousson;;[2.19572, 48.8922];;FRIENE0005012;FRS28E176251;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.85479;48.524954;;;; +;;;;;;;;FRS18E18657;K8ATR4NEVO;Clermont-Ferrand, Rue Patrick Depailler;;Square Henri Dunant 54700 Pont-à-Mousson;;[3.133859, 45.762267];;FRIENE0005011;FRCPIE65402051;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.13112486;48.199717;;;; +;;;;;;;;FRS18E18658;M8NQCQQXMD;PK4;;Chemin Des Foins 54700 Pont-à-Mousson;;[-149.529006, -17.5252859];;FRIENE0014024;FRCPIE65402052;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.43131;48.088101;;;; +;;;;;;;;FRCPIE6736415;LLKCK1HUA2A3KS;Castres, Route de Mazamet;;Avenue Georges Guynemer 54700 Pont-à-Mousson;;[2.26565477, 43.59051036];;FRIENE0014023;FRCPIE65402251;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.61749;48.29725934;;;; +;;;;;;;;FRIONE4594;MD5OPC7NA3;Lescure-d'Albigeois, Chemin Des Deux Voies;;Chemin de Montrichard 54700 Pont-à-Mousson;;[2.16395031, 43.95966538];;FRIENE0014012;FRCPIE65402252;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.74285255;48.423374;;;; +;;;;;;;;FRIONE45940;G8PCTKKS0J;Etupes, SEDIA;;Place Saint-Antoine 54700 Pont-à-Mousson;;[6.85479, 47.5179];;FRIENE0014011;FRCPIE65415351;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7033;48.589547;;;; +;;;;;;;;FRIONE45161;V8YS06G7V9;Villers Lès Nancy, Allée Pelletier Doisy;;Avenue Des États-Unis 54700 Pont-à-Mousson;;[6.13112486, 48.65894757];;FRIONE40965;FRS37E1362;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.70315;48.47764;;;; +;;;;;;;;FRIONE4516;YUEYTG;Aurillac, 14 avenue du Garric;;Île D'esch 54700 Pont-à-Mousson;;[2.43131, 44.899617];;FRIONE409604;FRS37E1386;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.60705932;48.027216;;;; +;;;;;;;;FRS37E905;JNGVSR6RI1;Oyonnax, SISE Plastics;;Place Du Paradis 54700 Pont-à-Mousson;;[5.61749, 46.2324];;FRIONE409603;FRS37E1363;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.729515;47.85822;;;; +;;;;;;;;FRS28E13450;NKCESQ;Prissé, ZA Le Pré de Lit;;59 RUE DU 26E BCP 54700 Pont à Mousson;;[4.74285255, 46.32865994];;FRIONE409601;FRS37E1364;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.70933;47.782577;;;; +;;;;;;;;FRCPIE6664735;V99LMKPLKF;Charleville-Mézières, rue Paulin Richier;;Rue Philippe De Gueldre 54700 Pont-à-Mousson;;[4.7033, 49.740756];;FRIENE0021023;FRCPIE66072651;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.65961;48.498106;;;; +;;;;;;;;FRS28E12990;LRK1CDAXWF;Auch, Route de Toulouse;;Route du Villard 73550 Les Allues;;[4.70315, 49.74086];;FRIENE0044024;FRCPIE66072652;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.33561998;48.108849;;;; +;;;;;;;;FRCPIE6665275;RIQRNFFR14;Weber, Saint Jacques de la Lande;;68 Avenue D' Espagne 64600 Anglet;;[0.60705932, 43.65212834];;FRIENE0044023;FRS55E134151;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.146115;48.22296;;;; +;;;;;;;;FRCPIE6610465;EMNND9MFE7;Morhange, Gare;;46 Rue Du Doyen Jacques Parisot 54630 Flavigny-sur-Moselle;;[-1.729515, 48.079738];;FRIENE0044012;FRS55E134152;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.132481;47.868638;;;; +;;;;;;;;FRCPIE6610485;NSJKPAECMT;Muret, SUD GARONNE AUTOMOBILES;;Place De La Gare 60300 Senlis;;[6.70933, 49.1065];;FRIENE0044011;FRS55E134163;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.49694935;47.83289;;;; +;;;;;;;;FRCPIE6616535;VM4NTLS3KB;Chaumont, SOS Dépannage;;Avenue du Général de Gaulle 77330 Ozoir-la-Ferrière;;[6.65961, 48.9365];;FRS37E1205;FRS55E134164;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.52538;47.74663;;;; +;;;;;;;;FRCPIE6642765;LMRYSD3DHR;SNC MCG La Tabatière, La grande-Verrière;;Allée De Beragne 11800 Trèbes;;[1.33561998, 43.48068237];;FRS37E1204;FRCPIE66073851;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.336234;48.58377;;;; +;;;;;;;;FRIONE42160;WEWO1M3ZLV;Toulouse, SOMEDA;;Zone du luc - Rue Barack Obama 59187 Déchy;;[5.146115, 48.086151];;FRIENE0023024;FRCPIE66073852;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.621137;48.271275;;;; +;;;;;;;;FRIONE4216;YVRXBIGBK0;Valenciennes, Rue du Quesnoy;;Avenue du 29 août 1944 51000 Châlons-en-Champagne;;[4.132481, 46.957896];;FRIENE0023023;FRS37E1365;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.140287;48.246578;;;; +;;;;;;;;FRCPIE6741095;MR6MQ1MPFP;Langres, Parking Sous Bie;;12 Rue Eugène Renaux 63800 Cournon-d'Auvergne;;[1.49694935, 43.57252502];;FRIENE0023012;FRS37E1366;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.793289;47.785968;;;; +;;;;;;;;FRS51E4081;TMZQBK19CJ;Varennes sur Amance, Place de l'Eglise;;27 Boulevard De La Motte 51200 Épernay;;[3.52538, 50.3577];;FRIENE0023011;FRCPIE65426951;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.483057;47.680423;;;; +;;;;;;;;FRS51E4090;Z2JIPWRRFU;Bologne, Rue de la Gare;;236 Avenue De La Gare 84210 Pernes-les-Fontaines;;[5.336234, 47.861831];;FRIONE43185;FRCPIE65426952;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.913283;47.654848;;;; +;;;;;;;;FRS51E4089;CJWNPZGMIC;Braucourt, Parking de l'école Dép. de Voile - D153;;1 Rue De La Source 57360 Amnéville;;[5.621137, 47.895943];;FRIONE431804;FRCPIE66075751;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.92133;44.2365;;;; +;;;;;;;;FRIONE4102;JUJD4UMKPZ;Val de Meuse, Parking Intermarché;;Rue des artistes 57360 Amnéville;;[5.140287, 48.201938];;FRIONE431803;FRCPIE66075752;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.491682;48.23566;;;; +;;;;;;;;FRIONE41020;BBYPZLGJJL;Chateauvillain, Parking Intermarché;;Rue du brasseur 57360 Amnéville;;[4.793289, 48.55213];;FRIENE0021012;FRCPIE66076451;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.04174;48.307569;;;; +;;;;;;;;FRS51E4086;V6CBXZ1GZG;Chateauvillain, Rue du parc;;Porte de l'Orne 57360 Amnéville;;[5.483057, 48.009488];;FRIENE0021024;FRCPIE66076452;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.111945;48.29366661;;;; +;;;;;;;;FRS51E4080;XHFOOZJRFN;Val de Meuse, Place de Verdun;;Rue De La Ferme 57360 Amnéville;;[4.913283, 48.031301];;FRIONE431801;FRS37E1367;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.584236;48.027595;;;; +;;;;;;;;FRS28E13738;D0GNFYOMAH;Chamouilley, Rue de la Fontaine;;36 Rue Des Romains 57360 Amnéville;;[4.92133, 48.036006];;FRIENE0120220002011;FRCPIE66141252;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.296041;48.534902;;;; +;;;;;;;;FRS28E20381;A5L76J0IDO;Chevillon, Parking de la Gare;;Place Frédéric Rau 57360 Amnéville;;[5.491682, 47.999145];;FRIONE404203;FRS37E15745;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.1445625;48.396975;;;; +;;;;;;;;FRS28E20380;MGD8YQM75S;Bourmont, Rue du Faubourg de France;;Place de la Capitainerie 11430 Gruissan;;[5.04174, 48.60593];;FRIONE404202;FRS28E134302;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.218059;48.23362;;;; +;;;;;;;;FRCPIE6698905;VESSJQ8AJC;Biesles, Rue Memasse;;59 Avenue De Sète 34300 Agde;;[5.111945, 48.524954];;FRIONE404201;FRS28E134317;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.865491;48.059765;;;; +;;;;;;;;FRN54E18749;AJJF6AYYCD;Froncles, Chemin des Carelles;;Place des fines herbes 67210 Obernai;;[5.584236, 48.199717];;FRIONE40245;FRS28E130523;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.770701;48.308883;;;; +;;;;;;;;FRS37E5626;FA6ABFGHEF;Poissons, Rue Neuve;;Carrefour De La Paix 34120 Pézenas;;[5.296041, 48.088101];;FRIENE0022024;FRCPIE66605051;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.34095;48.288087;;;; +;;;;;;;;FRS37E1969;M0LRMJF1GO;Eclaron, Rue Lebon;;18 ter chemin Goyaves 97470 Saint-Benoît;;[5.1445625, 48.29725934];;FRIENE0022023;FRCPIE66605052;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.331652;48.235741;;;; +;;;;;;;;FRS37E1967;O0XRO0D25I;Montier en Der, Place Notre-Dame;;227 boulevard Anatole France 93200 Saint-Denis;;[5.218059, 48.423374];;FRIENE0022012;FRS28E134278;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.601061;48.501213;;;; +;;;;;;;;FRS28E13941;M0X4I4ZK8M;Nogent, Place Charles de Gaulle;;Rue Du Pré Droué 88150 Chavelot;;[4.865491, 48.589547];;FRIENE0022011;FRS28E137351;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.948368;48.299744;;;; +;;;;;;;;FRS37E125;QUVPSIP9F5;Langres, Place Bel Air;;Avenue de Daniate 32110 Nogaro;;[4.770701, 48.47764];;FRCPIE67156652;FRS37E3105;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.135303;48.23941;;;; +;;;;;;;;FRS08E14422;PC8GDNJARZ;Fayl-Billot, Grande Rue;;28 Rue Aristide Briand 45290 Nogent-sur-Vernisson;;[5.34095, 48.027216];;FRCPIE67156651;FRS37E3106;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.886258;48.36390886;;;; +;;;;;;;;FRIENE006202;DZLXJEZHBZ;Wassy, Rue du Général de France;;56 ZI des Bonnets 74270 Musièges;;[5.331652, 47.85822];;FRIENE0120220002024;FRS37E3107;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.372734;48.28691395;;;; +;;;;;;;;FRIENE006201;RJWGDOQTTA;Chaumont, Rue Henri Dunant;;260 Rue Du Parc Saint-Jean 69220 Saint-Jean-d'Ardières;;[5.601061, 47.782577];;FRIENE0120220002023;FRS37E3108;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.32932;48.221726;;;; +;;;;;;;;FRS37E452;VDPIDXOIQR;Colombey les Deux Eglises, Rue Général de Gaulle;;Rue Ampère 23200 Aubusson;;[4.948368, 48.498106];;FRIENE0120220002012;FRS41E206464;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.320626;48.388611;;;; +;;;;;;;;FRIENE003302;DLUIDNHJUL;Peigney, Rue de la Plage;;25 rue des amphiboles ZAC Canabady 97410 Saint-Pierre;;[5.135303, 48.108849];;FRIENE0013024;FRS41E206465;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.039643;48.592374;;;; +;;;;;;;;FRIENE003301;NAR10DSPNM;Saints Geosmes, Pôle socio-culturel;;Route Jean-Charles Pellerin 88190 Golbey;;[4.886258, 48.22296];;FRIONE417101;FRS41E206487;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.413374;48.520456;;;; +;;;;;;;;FRS28E12889;DTYZ0PBUZR;Villegusien Le Lac, Rue de Villegusien à Percey;;48 Rue Des Aviateurs 67500 Haguenau;;[5.372734, 47.868638];;FRIENE0013023;FRS41E206488;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.321319;48.29715;;;; +;;;;;;;;FRS28E13492;PTOMNLSUF6;Eurville-Bienville, Avenue Jacques Marcellot;;18 Rue de Sausheim 68110 Illzach;;[5.32932, 47.83289];;FRIENE0013012;FRIONE414901;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.061774;47.988229;;;; +;;;;;;;;FRCPIE6643575;YZVL09C8UY;Saint Blin, Rue de l'Hôtel de Ville;;182 Avenue De Strasbourg 67170 Brumath;;[5.320626, 47.74663];;FRIENE0013011;FRS37E1836;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.293038;48.505446;;;; +;;;;;;;;FRS51E4098;KVOLK1WG8K;Rimaucourt, Parking Intermarché;;Route Du Golf 57360 Amnéville;;[5.039643, 48.58377];;FRS51E43118;FRIONE414902;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.288711;48.51718;;;; +;;;;;;;;FRS51E4092;TBP9DOPXZ7;Auberive, Place de la Mairie;;Avenue Charles De Gaulle 45430 Chécy;;[5.413374, 48.271275];;FRS51E43117;FRIONE414903;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.77329;48.51467;;;; +;;;;;;;;FRS41E396;U6Y3WQLBRD;Le Montsaugeonnais Prauthoy, Place de la Mairie;;Jardin des Plantes 45100 ORLEANS;;[5.321319, 48.246578];;FRIENE0004024;FRIONE414904;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.078485;48.194045;;;; +;;;;;;;;FRS51E4091;RL2ISP2PKI;Le Montsaugeonnais, ZAE Champs Miollin;;Parking rue Notre Dame de Recouvrance 45000 ORLEANS;;[5.061774, 47.785968];;FRIENE0004023;FRIONE41495;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.045015;48.264099;;;; +;;;;;;;;FRS37E135;AKF8PQJQCF;Caylus, Bascule;;Parking rue de La Gare 45590 SAINT CYR EN VAL;;[5.293038, 47.680423];;FRIENE0004012;FRCPIE65415951;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.08079663;48.418127;;;; +;;;;;;;;FRS28E13425;ZB01ACJMQD;Saint-Léger-pres-Troyes, Rue de l'Eglise;;Parking Covoiturage Chemin des Plantes 45140 ORMES;;[5.288711, 47.654848];;FRIENE0004011;FRCPIE65415952;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.424326;48.345479;;;; +;;;;;;;;FRCPIE6741025;SKVQPRSH7U;Troyes, Rue Henri Matisse;;27 Boulevard Alexandre Martin 45000 Orléans;;[1.77329, 44.2365];;FRIONE41715;FRCPIE66206551;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.149279;48.225196;;;; +;;;;;;;;FRCPIE6726825;VAOKV8QVO0;Pont-Sainte-Marie, Parking cinéma culturel;;Boulevard Alexandre Martin 45000 ORLEANS;;[4.078485, 48.23566];;FRIONE417104;FRCPIE66206552;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.531585;48.508902;;;; +;;;;;;;;FRCPIE6664205;BYDGEFUMKN;Gyé sur Seine, RD671;;rue Adolphe Crespin 45000 ORLEANS;;[4.045015, 48.307569];;FRIONE417103;FRCPIE66274251;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.62488;48.140091;;;; +;;;;;;;;FRS41E20050;ST9CPGZFUY;Arcis-sur-Aube, Rue Napoléon;;25 Boulevard Alexandre Martin 45000 Orléans;;[4.08079663, 48.29366661];;FRIONE417102;FRCPIE66274252;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.142932;48.202677;;;; +;;;;;;;;FRCPIE6664165;S9WJLR0VHI;Brienne le Château, Avenue Pasteur;;Parking Place du 8 Mai 45 45560 SAiNT DeNIS EN VAL;;[4.424326, 48.027595];;FRIONE431802;FRCPIE66274451;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.097222;48.375387;;;; +;;;;;;;;FRS88E14565;G1QR7RBCW6;Vulaines, route nationale 660;;rue Monteloup 45380 LA CHAPELLE SAINT MESMIN;;[4.149279, 48.534902];;FRS37E1579;FRCPIE66274452;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.708251;48.059752;;;; +;;;;;;;;FRS88E14564;LLJ5GHD3D2JJMR;Chaource, Route de Troyes;;Parking rue de La Salle des Fêtes 45750 SAINT PRYVE SAINT MESMIN;;[4.531585, 48.396975];;FRIONE463105;FRCPIE66274651;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.110326;48.274322;;;; +;;;;;;;;FRCPIE6689255;CRDSBG1MTT;Troyes, Avenue Robert Schumann;;Allée Pierre de Coubertin 45400 SEMOY;;[3.62488, 48.23362];;FRS51E42657;FRS37E1837;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.781652;48.515358;;;; +;;;;;;;;FRS28E13901;JGQZPED0A5;Palis, 2 Rue de la Liberté;;Parking Allée Claude Bernard 45770 SARAN;;[4.142932, 48.059765];;FRS37E1271;FRCPIE66262152;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.109849;48.254884;;;; +;;;;;;;;FRCPIE6720145;MXEBYMAPVN;Buchères, 1 Rue de la Mairie;;rue Jean Zay 45800 SAINT JEAN DE BRAYE;;[4.097222, 48.308883];;FRS37E1270;FRCPIE66274751;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.466387;48.252997;;;; +;;;;;;;;FRS51E9366;FG7EONN82J;Maizières-la-Grande-Paroisse, 27 avenue du général de gaulle;;Place du Marché 45160 SAINT HILAIRE SAINT MESMIN;;[3.708251, 48.288087];;FRS37E1562;FRCPIE66248852;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.33627881;48.297775;;;; +;;;;;;;;FRCPIE6663945;HZ9ZG0T5CS;Saint Parres aux Tertre, Rue Jean Moulin;;Place Du Bourg 45430 Bou;;[4.110326, 48.235741];;FRS37E1561;FRS37E2770;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.96937277;48.503592;;;; +;;;;;;;;FRS28E13934;UEIRCTYOBR;Vendeuvre-sur-Barse, 20 Avenue de la République;;84 Rue Bannier 45000 Orléans;;[3.781652, 48.501213];;FRCPIE67083652;FRS37E2771;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.731123;48.524444;;;; +;;;;;;;;FRS88E14563;EACABDPXEE;Piney;;rue Bannier 45000 ORLEANS;;[4.109849, 48.299744];;FRCPIE67083651;FRS37E2772;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.65457;43.9183;;;; +;;;;;;;;FRS37E124;I23JPPPTFT;Torvilliers, aire de covoiturage;;Centre Commercial Clos de l'Arche 45650 SAINT JEAN LE BLANC;;[4.466387, 48.23941];;FRS51E42689;FRS37E2773;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.232003;43.8804;;;; +;;;;;;;;FRS51E4164;P54MDIWUGK;Aix-En-Othe, 6 Rue d'Alma;;Allée Anna Marly 45140 SAINT JEAN DE LA RUELLE;;[4.33627881, 48.36390886];;FRS51E42688;FRS37E2782;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.726184;43.8518;;;; +;;;;;;;;FRS88E14551;TMJD1RDZHA;Avon-La-Peze, 1 Rue de la Libération;;Route d'Orléans 45400 Chanteau;;[3.96937277, 48.28691395];;FRIONE40415;FRS37E2783;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.577514;44.155169;;;; +;;;;;;;;FRS51E9374;LLI1O4L2R16P33;Grandville, 5 Grande Rue;;Parking rue des Selliers 45140 INGRE;;[3.731123, 48.221726];;FRIONE404104;FRS41E2924;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.99599;44.3232;;;; +;;;;;;;;FRN54E20372;BPFMD6OOQ0;Romilly-Sur-Seine, 41 Place des Martyrs;;27 rue Gaston Monmousseau 38150 Roussillon;;[3.65457, 48.388611];;FRIONE404103;FRS41E2925;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.721178;44.0619;;;; +;;;;;;;;FRFASE330210;F1BQQZEED1;Jessains, 3 Rue de la Fontaine Saint-Pierre;;1 rue de l'île aux pêcheurs 67541 Ostwald;;[4.232003, 48.592374];;FRIONE404102;FRS41E2926;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.727069;44.1159;;;; +;;;;;;;;FRCPIE6557345;Y39L9HN88E;Bernon, 13 Rue Grande Rue;;272 Boulevard Marcel Paul 44800 Nantes;;[3.726184, 48.520456];;FRIONE404101;FRS41E2927;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.663522;44.0411;;;; +;;;;;;;;FRS51E4000;TXPJR8TDQE;Romilly-Sur-Seine, 60 Rue du Colonel Fabien;;rue de L'Yvette 45160 OLIVET;;[4.577514, 48.29715];;FRS51E42656;FRS41E2928;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.997767;44.2515;;;; +;;;;;;;;FRS51E3999;GTRDTE5TIF;Romilly-Sur-Seine, 16 Rue de l'Union;;rue de Donnery 45430 MARDIE;;[3.99599, 47.988229];;FRIENE0063011;FRS41E2929;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.789855;43.9777;;;; +;;;;;;;;FRCPIE6690055;AYM7H1XRJQ;Saint-Hilaire-Sous-Romilly, 9 Les Ruchelats;;Parking rue du Cas Rouge 45800 COMBLEUX;;[3.721178, 48.505446];;FRS51E42644;FRCPIE66248851;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.658171;44.0282;;;; +;;;;;;;;FRIENE005702;FOR8S4ILKZ;Bouilly, 3 Rue du Champ Pile;;Parking du 11 Novembre 45400 FLEURY LES AUBRAIS;;[3.727069, 48.51718];;FRS51E42643;FRS41E2932;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.26242;43.9678;;;; +;;;;;;;;FRIENE005701;S3RCEDCLUC;Colombe-La-Fosse, 75 Rue Grande Rue;;Rue De La Commanderie 45760 Boigny-sur-Bionne;;[3.663522, 48.51467];;FRS37E1221;FRCPIE66262151;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.854229;43.9639;;;; +;;;;;;;;FRS41E12160;HJCQWV;Epothemont, 23 Rue de la Fontaine;;Parking rue du Vieux Bourg 45760 MARIGNY LES USAGES;;[3.997767, 48.194045];;FRS37E1220;FRS41E2933;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.572433;44.0336;;;; +;;;;;;;;FRS28E13481;ZGGYCJ;Rouilly-Sacey, 24 Route du Lac d'Orient;;238 Rue Du Général De Gaulle 45160 Olivet;;[4.789855, 48.264099];;FRCPIE66795752;FRS41E2935;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.675846;43.9577;;;; +;;;;;;;;FRS88E14577;TRYTZF;Chennegy, 4 D23;;Rue Paul Éluard 83160 La Valette-du-Var;;[4.658171, 48.418127];;FRCPIE66795751;FRS41E2936;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.623987;43.9209;;;; +;;;;;;;;FRIENE007802;VZJYCG;Chavanges, 1 Place de la Halle;;Rue Du 8 Mai 1945 57120 Rombas;;[4.26242, 48.345479];;FRIONE44045;FRS41E2937;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.733153;48.2349464;;;; +;;;;;;;;FRIENE007801;UCNXMWQKXU;Champignol-Lez-Mondeville, 5 Rue de Mondeville;;Place de la République 57120 Rombas;;[3.854229, 48.225196];;FRIONE440416;FRS41E2938;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.138651;48.484877;;;; +;;;;;;;;FRS28E13942;WRHI28XGMJ;Meurville, Rue de la Montée des Canes;;Fond Saint-Martin 57120 Rombas;;[4.572433, 48.508902];;FRIONE440415;FRS41E2945;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.975597;48.07744194;;;; +;;;;;;;;FRS51E4168;KETVBA;Soulaines-Dhuys, 4 Place du Général de Gaulle;;Place de l'Hôtel de ville 57120 Rombas;;[4.675846, 48.140091];;FRIONE440414;FRS41E2946;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.716259;48.18069;;;; +;;;;;;;;FRIENE002902;QKR5YQTB8B;Chaource, 15 Rue du Beaucaron;;Chemin de Ramonville 57120 Rombas;;[4.623987, 48.202677];;FRIONE440413;FRS37E2947;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.268967;44.1758;;;; +;;;;;;;;FRS28E13421;JJUUQQVTYZ;Torvilliers, 22 Rue de la Mairie;;Rue De Verdun 57120 Pierrevillers;;[4.733153, 48.375387];;FRIONE440412;FRS37E2948;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.26666;44.10916252;;;; +;;;;;;;;FRCPIE6706575;LBZUHX5FDU;Romilly-Sur-Seine, 1 Rue Guy Môquet;;Rue Gambetta 54310 Homécourt;;[4.138651, 48.059752];;FRIONE440411;FRS41E2958;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.51705;44.0048;;;; +;;;;;;;;FRS51E4246;QOOZLR9PNL;Lusigny-Sur-Barse, 14 Place Maurice Jacquinot;;Rue du safari 57360 Hagondange;;[3.975597, 48.274322];;FRS28E137401;FRS41E2959;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.274361;43.8291;;;; +;;;;;;;;FRIONE4168;B3S9SCNTCJ;Lusigny-Sur-Barse, 4 Rue Louis Genevois;;Parking collège Amilcar Homecourt 54310 Homécourt;;[3.716259, 48.515358];;FRIENE0063012;FRCPIE66262051;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.727739;48.624835;;;; +;;;;;;;;FRIONE41680;TVE2ZUMRJB;Amance, 2 Place René Pietremont;;127 Avenue De La République 54310 Homécourt;;[4.268967, 48.254884];;FRS37E1577;FRCPIE66262052;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.39826;48.084844;;;; +;;;;;;;;FRIENE002901;OMAQGM6IDU;Chaudrey, 26 Rue du Bourg;;2 Rue Adalbéron 57360 Amnéville;;[4.26666, 48.252997];;FRIENE0018011;FRCPIE66274652;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.99106;48.069531;;;; +;;;;;;;;FRS51E4256;YAWALWXPJN;Romilly-Sur-Seine, 5 Avenue Jules Jacquemin;;Rue Des Vignes 57120 Pierrevillers;;[4.51705, 48.297775];;FRIENE0012024;FRCPIE66274752;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.23461;48.292272;;;; +;;;;;;;;FRS28E13074;P24RIEK1UK;Reyniès, Albert de Reyniès;;15 Rue Jean Claret 63000 Clermont-Ferrand;;[4.274361, 48.503592];;FRIENE0012023;FRN54E187014;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.317544;48.382891;;;; +;;;;;;;;FRS51E9379;KNBBD1WKUO;Beaumont-de-Lomagne, Brassens;;7 Rue Sorel Tracy 49300 Cholet;;[3.727739, 48.524444];;FRIENE0012012;FRCPIE66664752;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.94508;48.519764;;;; +;;;;;;;;FRS51E9378;KGIFNNP4ME;Verdun-sur-Garonne, Ecoles;;Rue Roger Hostein 49300 Cholet;;[1.39826, 43.9183];;FRIENE0012011;FRS37E3571;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.02194;48.295128;;;; +;;;;;;;;FRS51E6695;RWMAQR1XOL;Puycornet, Salle Communale;;36 cours du Maréchal Leclerc 17100 Saintes;;[0.99106, 43.8804];;FRS37E1329;FRS37E3572;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.47908;48.026042;;;; +;;;;;;;;FRTNME18B95097;USCLUJN5UJ;Roquecor, Pétanque;;12 Rue Molière 45000 Orléans;;[1.23461, 43.8518];;FRS37E1328;FRCPIE67123751;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.11176;48.501457;;;; +;;;;;;;;FRTNME18B95093;UZR77QZIYM;Saint-Nicolas-de-la-Grave, Champ de l'eglise;;41 Rue Des Peupliers 92000 Nanterre;;[1.317544, 44.155169];;FRIENE0015024;FRCPIE67123752;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.61063;48.311377;;;; +;;;;;;;;FRTNME18B95089;DS4JPFUSGX;Realville, Raymond Laurent;;67 Avenue Jean Jaurès 63200 Mozac;;[0.94508, 44.3232];;FRIENE0015023;FRCPIE67123851;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.06601;48.233623;;;; +;;;;;;;;FRTNME18B92941;LUDB1KDHWA;Castelsarrasin, Gare;;11 Rue De Cambrai 75019 Paris;;[1.02194, 44.0619];;FRIENE0015012;FRCPIE67123852;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.04088;48.540725;;;; +;;;;;;;;FRIONE43550;PLIIJQRR9K;Puylaroque, Libération;;Rue des Écureuils 40130 Capbreton;;[1.47908, 44.1159];;FRIENE0015011;FRS37E3573;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.33743;48.119941;;;; +;;;;;;;;FRS18E14331;F9AE6Z9DRG;Garganvillar, 19 Mars 1962;;Rd 813 47240 Bon-Encontre;;[1.11176, 44.0411];;FRIENE0018024;FRS37E3574;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53556;48.533428;;;; +;;;;;;;;FRS28E13056;MPFMVAYMZL;Castelmayran, Ronde;;Boulevard Du 8 Mai 1945 59540 Caudry;;[1.61063, 44.2515];;FRIENE0018023;FRS37E3578;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.56976;48.071427;;;; +;;;;;;;;FRS51E4258;MLMXKNWVEM;Bressols, Ecoles;;5 Rue Jean Couzinet 79000 Niort;;[1.06601, 43.9777];;FRIENE0018012;FRS37E3579;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.918499;48.635996;;;; +;;;;;;;;FRIONE43241;XNYAC5TPKK;La Salvetat-Belmontet, D8;;Za des Trois Routes 49120 Chemillé-en-Anjou;;[1.04088, 44.0282];;FRIENE0063023;FRCPIE66279851;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.02086;47.957248;;;; +;;;;;;;;FRS28E12879;YA93PLA1NX;Vaïssac, Salle des Fêtes;;Zone d'activité du Riveau, 17560 Bourcefranc 17560 Bourcefranc-le-Chapus;;[1.33743, 43.9678];;FRIENE0003024;FRCPIE66279852;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.60696477;48.535128;;;; +;;;;;;;;FRS18E14332;JG6YZDT24P;Lavit, Jean Sabathé;;88 Rue d'Amiens 60120 Breteuil;;[1.53556, 43.9639];;FRIENE0003023;FRCPIE66664751;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.731269;48.492224;;;; +;;;;;;;;FRIONE4483;N1TAYO5AC4;Serignac, Ecoliers;;Rue Du 18 Juin 1827 42160 Andrézieux-Bouthéon;;[1.56976, 44.0336];;FRIENE0003012;FRCPIE66288851;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.38777907;48.495221;;;; +;;;;;;;;FRIONE44830;QYPUGRMYGA;Vulaines, Halte des Joncs;;5 Avenue D'alsace 68700 Cernay;;[0.918499, 43.9577];;FRIENE0003011;FRS37E3569;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.435283;48.346367;;;; +;;;;;;;;FRCPIE6617515;LUEONUMUAN;Pars-lès-Romilly, rue Nationale;;Place Kerjean 29150 Châteaulin;;[1.02086, 43.9209];;FRS51E42869;FRCPIE66288852;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.61552;48.465158;;;; +;;;;;;;;FRIONE4355;Q8JLYNSB4D;Polisot, rue des Herbues;;Fbg du Moulin Neufont 52000 Chaumont;;[3.60696477, 48.2349464];;FRS51E42868;FRS41E3717;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.89554161;48.477265;;;; +;;;;;;;;FRTNME08990399;LZRLYBKPBE;Magnant, aire de covoiturage;;Zone D’Activite De Verlieu 42410 Chavanay;;[3.731269, 48.484877];;FRIENE0009024;FRS41E3718;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.17738;48.455884;;;; +;;;;;;;;FRS51E4210;W35JGY6RKE;Septfonds, Marcel Lacassagne;;Rue François Truffaut 60230 Chambly;;[4.38777907, 48.07744194];;FRIENE0009023;FRCPIE66291751;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.19997;48.368461;;;; +;;;;;;;;FRIENE007002;QRHB3TMWPV;Valence, Jean Baylet;;Rue Du Prado 18000 Bourges;;[4.435283, 48.18069];;FRIENE0009012;FRCPIE66291752;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.111696;50.602568;;;; +;;;;;;;;FRIENE007001;KCZQAB;Saint-Porquier, Platanes;;rue des Chabanneries 26500 Bourg-les-Valence;;[1.61552, 44.1758];;FRIENE0009011;FRCPIE66010551;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.297369;-17.600917;;;; +;;;;;;;;FRS28E13487;NHHVSV;Savenès, Mairie;;192 Avenue Charles Floquet 93150 Le Blanc-Mesnil;;[0.89554161, 44.10916252];;FRS51E42863;FRCPIE66010552;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.477906;48.008;;;; +;;;;;;;;FRS51E4209;HEDC2RWJ6Z;Herbisse, 3 Rue de la Gare;;1-3 Avenue Du Bicentenaire 1789-1989 94380 Bonneuil-sur-Marne;;[1.17738, 44.0048];;FRS51E42862;FRCPIE66010651;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.039225;47.8614;;;; +;;;;;;;;FRIENE009802;XZLZEXJEIY;Villemorien, 1 Place du Château;;6 Route De L'isac 44130 Blain;;[1.19997, 43.8291];;FRIENE0063024;FRCPIE66010652;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.975211;47.8107;;;; +;;;;;;;;FRIENE009801;LM1TTMTMU6;Landreville, 7 Rue de la Gare;;Avenue De Laouadie 40600 Biscarrosse;;[4.111696, 48.624835];;FRIONE404204;FRCPIE66010751;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.290049;47.8893;;;; +;;;;;;;;FRS28E13732;ZAUKZX;Sainte-Savine, 2 Rue jean baptiste corot;;58 Rue de Hohengoeft 67310 Wasselone;;[4.297369, 48.084844];;FRIENE0019011;FRCPIE66010752;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.05944;47.8915;;;; +;;;;;;;;FRTNME08990395;TMKMTF;Payns, 10 Voie riot;;Avenue François Mitterrand 57290 Famcek;;[4.477906, 48.069531];;FRIENE0019012;FRCPIE66059751;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.914111;47.7926;;;; +;;;;;;;;FRS37E1563;OQAQOPUOYC;Ramerupt, 16 rue Charles Delaunay;;10 Rue de Montaran 45400 Fleury-les-Aubrais;;[4.039225, 48.292272];;FRCPIE67531552;FRCPIE66059752;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.852836;47.7564;;;; +;;;;;;;;FRS37E1562;XHLANB0NZX;Sainte-Savine, 1 BIS Rue gambetta;;Chemin Départemental 940 62630 Étaples;;[3.975211, 48.382891];;FRIONE423403;FRS37E3570;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.829991;47.7425;;;; +;;;;;;;;FRS28E13907;S2ED4IIWU3;Chessy-Les-Pres, 4 Rue du Moulin Jacotot;;Lieu Dit la Hirtais 44160 Sainte-Anne-sur-Brivet;;[4.290049, 48.519764];;FRIONE423402;FRS37E3567;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.624693;47.7102;;;; +;;;;;;;;FRS51E4191;KZFREV;Chatres, 1 Rue du Four;;165 Route de Saint-Leu 159 93800 Épinay-sur-Seine;;[4.05944, 48.295128];;FRIONE43855;FRCPIE66274951;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.500127;47.7782;;;; +;;;;;;;;FRS51E4190;ED5TDOOHPJ;Dierrey-Saint-Julien, 4 Rue du moulin;;45 Rue Du Printemps 67150 Erstein;;[3.914111, 48.026042];;FRIONE438507;FRCPIE66010251;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9976;48.1079;;;; +;;;;;;;;FRS51E4169;RCACXZCBUQ;Vulaines, 32 Route nationale 60;;route nationale 198 20213 Folelli;;[3.852836, 48.501457];;FRIONE438506;FRCPIE66274952;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.157508;47.9386;;;; +;;;;;;;;FRCPIE6648515;BOMNOSKIU2;La-Saulsotte, 1 Rue Saint-Fergel;;7 Rue Marguerite Perey 77610 Fontenay-Trésigny;;[3.829991, 48.311377];;FRIONE438505;FRCPIE66275251;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.473429;48.0434;;;; +;;;;;;;;FRS51E4211;BN72S1V6XC;Saint-Phal, 2 2 Rue des Combattants en Afn;;2010 Route Du Havre 76400 Saint-Léonard;;[3.624693, 48.233623];;FRIONE438504;FRCPIE66275252;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.112504;47.7134;;;; +;;;;;;;;FRIONE40360;MOFV72VTZQ;Arcis-Sur-Aube, 1 Route de Brienne;;4 Avenue Jean Jaurès 37230 Fondettes;;[3.500127, 48.540725];;FRIONE438503;FRCPIE66275951;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.130872;47.6308;;;; +;;;;;;;;FRTNME08990391;ID7KOD7DHH;Landreville, 47 Grande Rue;;Route de Nantes 44190 Clisson;;[3.9976, 48.119941];;FRIONE438502;FRCPIE66275952;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.129385;47.9792;;;; +;;;;;;;;FRTNME08990384;OEWTMI5SDG;Villiers-Herbisse, 1 Rue de la Crayère;;Rue Du Général Eisenhower 44110 Châteaubriant;;[4.157508, 48.533428];;FRCPIE67531652;FRS37E3557;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.498121;47.6531;;;; +;;;;;;;;FRTNME08990376;VWGLEPIVS9;Etourvy, 2 Route de Quincerot;;Rue de Morlaix 29520 Châteauneuf-du-Faou;;[4.473429, 48.071427];;FRCPIE67531651;FRS37E3558;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.502358;47.5449;;;; +;;;;;;;;FRTNME08990136;ZGBJXDCZFR;Arcis-Sur-Aube, 104 Rue de PARIS;;Rue Georges Guynemer - Z.a.c. Du Blanc Carroi 37500 Chinon;;[4.112504, 48.635996];;FRCPIE67530852;FRS37E3559;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.059989;47.8032;;;; +;;;;;;;;FRTNME08910938;F9MHRVG3FP;Nogent-Sur-Seine, 1 Place de l'Église;;Z.I, Rue de la Plaine 02400 Château-Thierry;;[4.130872, 47.957248];;FRCPIE67530851;FRS37E3560;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.016524;48.0671;;;; +;;;;;;;;FRTNME08910318;MYDGOOZS6R;Nogent-Sur-Seine, 9 Rue Paul Fournier;;Rue Du Moulin 51700 Dormans;;[4.129385, 48.535128];;FRCPIE67531551;FRS37E3561;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.935592;47.8756;;;; +;;;;;;;;FRCPIE6610525;HTHA8SVPIE;Sainte-Maure, 1 Rue de l'Essor;;Penandreff 29160 Crozon;;[3.498121, 48.492224];;FRIONE423405;FRS37E3562;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.122666;48.014;;;; +;;;;;;;;FRS51E4237;ND7EXY8XAP;Les-Grandes-Chapelles, 1 Place du Centre;;Route de Champvert 58300 Decize;;[3.502358, 48.495221];;FRCPIE67531452;FRS37E3563;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.029734;47.8334;;;; +;;;;;;;;FRS28E13935;P4I9QD4QKG;Droupt-Saint-Basle, RD14;;Zone des Boutries, Rue des Belles Hâtes 78700 Conflans-Sainte-Honorine;;[4.059989, 48.346367];;FRCPIE67531451;FRS37E3564;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.132567;47.631;;;; +;;;;;;;;FRCPIE6758325;EWMJNJSRJF;Voue, 2 Route de Montsuzain;;Boulevard de Beauregard 58660 Coulanges-lès-Nevers;;[4.016524, 48.465158];;FRCPIE67530352;FRCPIE66010252;;;;;;;;;;;;;;;;;;;;;;;;;;;;-149.61231;47.5793;;;; +;;;;;;;;FRIONE4036;P846IQNS4O;Saint-Benoit-Sur-Seine, Rue de Thurey;;1 Rue François Mitterrand 33230 Coutras;;[3.935592, 48.477265];;FRCPIE67530351;FRIENE0082024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.31849;47.6903;;;; +;;;;;;;;FRIONE4127;LRBTZV2OWE;Lezennes, Avenue Pierre et Marie Curie;;170 Avenue De La Côte D'argent 33380 Biganos;;[4.122666, 48.455884];;FRS28E139679;FRCPIE66010351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.88602;47.7163;;;; +;;;;;;;;FRIONE41270;VU5BILOYOJ;Kernascléden, Rue des Rohan;;Route Du Mans 72610 Arçonnay;;[4.029734, 48.368461];;FRS28E139678;FRCPIE66010352;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.38363;47.8342;;;; +;;;;;;;;FRS41E461;GRYOHUTHYB;Plumelin, Rue du Stade;;Avenue De La Défense Passive 80136 Rivery;;[3.132567, 50.602568];;FRCPIE67522452;FRCPIE66010451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.26152;47.8889;;;; +;;;;;;;;FRS41E458;Y2ZMZANJDV;Malestroit, Place du Docteur Jean Queinnec;;2 rue Georges Chrétien Rosentritt 67250 Soultz-sous-Forêts;;[-149.61231, -17.600917];;FRCPIE67522451;FRCPIE66010452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.64136;47.7633;;;; +;;;;;;;;FRS41E2459;VRVUMOVGWL;Lanvaudan, Place de la Mairie;;Rue François de Neufchâteau 88140 Contrexéville;;[-3.31849, 48.008];;FRCPIE67522352;FRCPIE66059851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.59143;47.8178;;;; +;;;;;;;;FRS41E2489;COWK19Z19U;Guéhenno, Parking Rue Nationale;;2 Rue Bernard Palissy 54500 Vandœuvre-lès-Nancy;;[-2.88602, 47.8614];;FRCPIE67522351;FRCPIE66059852;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.7875;47.5421;;;; +;;;;;;;;FRS41E460;EHUOWBPTAZ;Trédion, Place Saint Christophe;;Zac du 1451 Chemin de Trespeaux 30100 Alès;;[-2.38363, 47.8107];;FRIENE0031024;FRCPIE66060251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.68107;47.7465;;;; +;;;;;;;;FRS28E13801;KPINYLE999;Locmaria-Grand-Champ, Rue du Stade;;Avenue Léonard de Vinci 37400 Ambroise;;[-3.26152, 47.8893];;FRIENE0031023;FRCPIE66060252;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.10407;47.7305;;;; +;;;;;;;;FRCPIE6618015;MQJVDT1XHK;Monterblanc, Place Anne de Bretagne;;Zac Du Debucher 28260 Anet;;[-2.64136, 47.8915];;FRIENE0031012;FRS37E3565;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.68978;47.9191;;;; +;;;;;;;;FRS41E466;XEHIISJMZ1;Locoal-Mendon, Rue de Kroas Er Bleu;;Boulevard Albert Camus 49100 Angers;;[-2.59143, 47.7926];;FRIONE423404;FRS37E3566;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.89082;47.7581;;;; +;;;;;;;;FRS41E15365;LFKAACIEEF;Plaudren, Rue Georges Cadoudal;;10 Rue Jean Moulin 76190 Yvetot;;[-2.7875, 47.7564];;FRCPIE66294552;FRIENE0082011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.5633;47.5803;;;; +;;;;;;;;FRS41E467;VIWAJNSDVO;Saint-Gérand, Rue de la Croix Macé;;58 Rue de Hohengoeft 67310 Wasselonne;;[-2.68107, 47.7425];;FRIENE0019023;FRIENE0082012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.40389;47.4821;;;; +;;;;;;;;FRS41E468;OCKZD1UBE6;Guégon, Rue des Rosiers;;Route Des Perves 38230 Charvieu-Chavagneux;;[-3.10407, 47.7102];;FRS41E4572;FRIENE0082023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.21965;47.704145;;;; +;;;;;;;;FRIENE002501;TNUIB2KDQK;Guilliers, Place Glaharon;;131 route Nationale 51140 Jonchery-sur-Vesle;;[-2.68978, 47.7782];;FRIONE463106;FRCPIE66236352;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.28543;47.7484;;;; +;;;;;;;;FRS18E12624;P8G873ZCEV;Peillac, Rue de la Citée des Fleurs;;1 Avenue Georges Pompidou 95500 Gonesse;;[-2.89082, 48.1079];;FRIONE46315;FRCPIE66236351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.1101;47.6753;;;; +;;;;;;;;FRIONE40270;LLIMV7TJ8J969D;Caden, Rue de la Mairie;;1 Rue Des Orvilles 28630 Barjouville;;[-2.5633, 47.9386];;FRS41E88229;FRS37E2699;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.91569;47.7312;;;; +;;;;;;;;FRCPIE6652065;HIH0CXVKI5;Melrand, Rue Saint Laurent;;Avenue Sampiero Corso T20 20600 Bastia;;[-2.40389, 48.0434];;FRS41E88230;FRS37E1688;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.15332;47.754;;;; +;;;;;;;;FRS18E21207;AARDMXKVYP;Plougoumelen, Rue des Chaumières;;Lieu Dit Le Berger 59135 Bellaing;;[-2.21965, 47.7134];;FRS41E4539;FRCPIE66238552;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.41844;47.59264888;;;; +;;;;;;;;FRS18E21202;SAOFNVECAW;Saint-Dolay, Rue de Coueslan;;Route de Bordeaux 24100 Bergerac;;[-2.28543, 47.6308];;FRS41E4540;FRCPIE66238651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.87981;47.9269;;;; +;;;;;;;;FRS18E20532;C6B2YXNKME;Saint-Marcel, Rue de la Bouie;;66 Avenue de la République 46130 Biars-sur-Cère;;[-3.1101, 47.9792];;FRS41E4543;FRCPIE66238652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.32281;47.6701;;;; +;;;;;;;;FRS28E13484;GRLDTFOSSH;Noyal-Pontivy, Avenue de la Libération;;90 Avenue Henri De Navarre 64100 Bayonne;;[-2.91569, 47.6531];;FRS41E4544;FRS37E16553;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.47243;47.7237;;;; +;;;;;;;;FRIONE4027;SORRN2XLAU;Calan, Rue Marc Le Floch;;Rue Zola 59620 Aulnoye-Aymeries;;[-2.15332, 47.5449];;FRS41E4547;FRS37E16554;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.39986;47.6014;;;; +;;;;;;;;FRS18E11740;Z9THPO26DL;Saint-Malo-des-Trois-Fontaines, Avenue Porhoe;;1 Route Nationale 39 62170 Attin;;[-2.41844, 47.8032];;FRS41E4548;FRCPIE66814851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.10149;47.7542;;;; +;;;;;;;;FRS28E13088;R13OWRMEIG;Pont-Scorff, Rue Théophile Guyomar;;Route D'alès 07200 Saint-Étienne-de-Fontbellon;;[-2.87981, 48.0671];;FRS41E4549;FRCPIE66814852;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.62943;47.7032;;;; +;;;;;;;;FRS18E20567;XL9FKMEJII;Rieux, Rue de la Briqueterie;;rue Emile Zola 59620 Aulnoye-Aymeries;;[-3.32281, 47.8756];;FRS41E4550;FRCPIE66815051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.73722;47.486785;;;; +;;;;;;;;FRIONE4083;RXQ5H9G1WX;Surzur, Rue de la Gare;;14 Rue Du Pont Lafleur 91670 Angerville;;[-2.47243, 48.014];;FRS41E4571;FRCPIE66815052;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.76372;47.8808;;;; +;;;;;;;;FRIONE40830;N8SQMR1KAQ;Saint-Avé, Rue 5 Août 1944;;Zac de la, Avenue de la Grande Terre 55000 Bar-le-Duc;;[-3.39986, 47.8334];;FRIENE0035011;FRS37E16781;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.15967;47.8669;;;; +;;;;;;;;FRIENE002502;T1MDRTWN1F;Meucon, Route de Vannes;;Avenue Du Général Leclerc 10200 Bar-sur-Aube;;[-2.10149, 47.631];;FRIONE423407;FRS37E16782;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.83751;47.9944;;;; +;;;;;;;;FRS28E13053;WYVFBS73YI;Languidic, Place Joseph Guillerme;;14-16 Avenue Jean Jaurès 89000 Auxerre;;[-2.62943, 47.5793];;FRIENE0035012;FRCPIE66196751;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.34964;47.9172;;;; +;;;;;;;;FRS41E474;M3ELUWQTWT;Locminé, Place Joseph Richard;;Za, Château Gaillard 35470 Bain-de-Bretagne;;[-2.73722, 47.6903];;FRIENE0035023;FRCPIE66196752;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.13333;48.0527;;;; +;;;;;;;;FRS41E471;VAL9KPXK5Y;Lanester, Avenue François Billoux;;99 Rue Paul Vaillant Couturier 92000 Nanterre;;[-2.76372, 47.7163];;FRS28E134789;FRS37E1689;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.89455;47.8221;;;; +;;;;;;;;FRS41E472;WMZBSDUXHJ;Carentoir, Rue Abbé de La Vallière;;1273 Avenue de la Division Leclerc 88300 Neufchâteau;;[-3.15967, 47.8342];;FRS51E50146;FRCPIE66238452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.35627;48.0616;;;; +;;;;;;;;FRS28E13426;WBTHYDIUJL;Arzon, Quai des Cabestans - Port du Crouesty;;Rue la Grande Flandre 76270 Neufchâtel-en-Bray;;[-2.83751, 47.8889];;FRS51E50145;FRS37E1690;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.3596;47.9645;;;; +;;;;;;;;FRS41E481;Z5MFSTXFBK;Lorient, Place d'Armes;;Bouloire Des Prêtres 80500 Montdidier;;[-3.34964, 47.7633];;FRS28E129294;FRS37E1702;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.28118;47.6824;;;; +;;;;;;;;FRS41E16743;XOZQ9QYCLQ;Lorient, Boulevard Abbé Louis le Cam;;Rue de la République 17320 Marennes;;[-2.13333, 47.8178];;FRIENE0061024;FRS37E15618;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.97227;48.0481;;;; +;;;;;;;;FRS41E16744;RX0SUMTB6R;Augan, Rue du Verger;;Avenue du 8 Mai 1945 80500 Montdidier;;[-2.89455, 47.5421];;FRIENE0061023;FRS37E1691;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.37608;47.9537;;;; +;;;;;;;;FRS41E473;ZIIBHFC8FI;Pluméliau, Rue de la Ferrière;;1 Rue Jean-marie Pelt D216 33380 Mios;;[-3.35627, 47.7465];;FRIENE0061012;FRS37E1693;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.35816;47.736;;;; +;;;;;;;;FRS37E474;WXBEGJKS4B;Pleucadeuc, Rue Pasteur;;Za Les Portes du Quercy 47500 Montayral;;[-3.3596, 47.7305];;FRIENE0061011;FRS37E1695;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.47093;47.5924;;;; +;;;;;;;;FRS28E12875;IXUXAPMXY4;Péaule, Place Saint Gaudence;;Avenue Maréchal Leclerc 71300 Montceau-les-Mines;;[-2.28118, 47.9191];;FRCPIE65902252;FRS37E1694;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.950611;47.7031;;;; +;;;;;;;;FRCPIE6752265;ICCUFQUYS4;Pénestin, Boulevard de l'Océan;;580 Avenue De Paris 79000 Niort;;[-2.97227, 47.9577];;FRCPIE65902251;FRS37E1706;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.07617;47.653;;;; +;;;;;;;;FRCPIE6752305;PC8A6CPOJO;Sainte-Anne-d'Auray, Rue de Vannes;;142 Rue Léon Blum 62290 Nœux-les-Mines;;[-2.37608, 47.7581];;FRIONE42345;FRS37E1696;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.5707;47.4808;;;; +;;;;;;;;FRCPIE6664415;EJRFCC8V5U;Landaul, Place de la Mairie;;Avenue de Paris 28400 Nogent-le-Rotrou;;[-2.35816, 47.5803];;FRIENE0031011;FRS37E1697;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.5899;47.9813;;;; +;;;;;;;;FRCPIE6740985;NKPTV8HRVT;Sulniac, 7 rue René Cassin;;Route De Gaillon 27930 Normanville;;[-2.47093, 47.4821];;FRS28E139435;FRCPIE66200051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.3669;47.726;;;; +;;;;;;;;FRS41E469;ULZI7QNTXU;Elven, Médiathèque;;Avenue du General de Gaulle Route de Nay 64110 Mazères-Lezons;;[-2.950611, 47.704145];;FRS28E139037;FRCPIE66200052;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.84641555;47.9257;;;; +;;;;;;;;FRCPIE6495345;P47AQWL4FJ;Lorient, ZAC gare;;12 rue des Frènes, 33210 Mazères 33210 Mazères;;[-3.07617, 47.7484];;FRCPIE67157752;FRS37E1700;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.3849;47.80292247;;;; +;;;;;;;;FRCPIE6497755;Z8TORQXRCM;Ile-aux-Moines, Kerscot;;Chemin Saint Pierre, Avenue du 8 Mai 1945 13700 Marignane;;[-2.5707, 47.6753];;FRCPIE66017352;FRCPIE66238551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.0116;47.8103;;;; +;;;;;;;;FRCPIE6497765;VCTIMHBD9S;Ploërmel, secteur Rehumpol;;30 Mail De La Grande Haie 77100 Mareuil-lès-Meaux;;[-2.5899, 47.7312];;FRCPIE66017351;FRCPIE66238451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.3432;47.4779;;;; +;;;;;;;;FRS41E470;ESLALBBYRH;Auray, Parking Aqta;;Zone d'activité Sud 21160 Marsannay-la-Côte;;[-3.3669, 47.754];;FRIENE0016024;FRS37E2698;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.863;47.6365;;;; +;;;;;;;;FRS41E1706;TOA3WWVTKE;Locmiquélic, Parking du centre;;3 Rue Georges Claude 77100 Meaux;;[-2.84641555, 47.59264888];;FRIENE0016023;FRIENE0071023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.3663;48.0709;;;; +;;;;;;;;FRIENE007201;LLHUCH3KM1EX6J;Baden, Parking de port-blanc;;52 Avenue De Bordeaux 40200 Mimizan;;[-2.3849, 47.9269];;FRIENE0016012;FRN54E187015;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.4544;49.09372207;;;; +;;;;;;;;FRIENE007202;JGZFJ7CM6V;Lorient, Parvis Gare;;101 Avenue de la Victoire 77100 Meaux;;[-3.0116, 47.6701];;FRIENE0016011;FRCPIE66153251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.103447;47.5468;;;; +;;;;;;;;FRS28E13490;VFOHUPYC2O;Ploemeur, Place kermabon;;Rond-Point De Ti Ar Menez 29470 Plougastel-Daoulas;;[-3.3432, 47.7237];;FRS28E134347;FRS37E1581;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.77101;48.054;;;; +;;;;;;;;FRCPIE6685345;WHWZWYFYDB;Quiberon, Port-Haliguen;;Zac de Penhoat Salaun Pole Commercial quai 29 29170 Pleuven;;[-2.863, 47.6014];;FRCPIE67158652;FRS37E1582;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.42268;47.897;;;; +;;;;;;;;FRCPIE6718385;P82ADPOVAF;Bignan, Rue Comte de Lanjuinais;;Rue du Lac 56800 Ploërmel;;[-3.3663, 47.7542];;FRCPIE67158651;FRCPIE66519551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.4332;47.6654;;;; +;;;;;;;;FRSHEE24;ASYZQT6BCE;La Chapelle-Caro, Place de l'église;;Centre Commercial Du, Rue du Carpont 22440 Ploufragan;;[-3.4544, 47.7032];;FRCPIE67158552;FRCPIE66519552;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.33653;47.5346;;;; +;;;;;;;;FRSHEE21;Y6BWAPE3KI;Meslan, Rue de Beg er Lann;;15 Rue De Saint-Alban 22370 Pléneuf-Val-André;;[-3.103447, 47.486785];;FRCPIE67158551;FRCPIE66519651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.525;47.8815;;;; +;;;;;;;;FRIENE004002;ZKXJSWERB9;Plouay, Rue Hélène Le Chaton;;Rue Du Moulin 97424 Saint-Leu;;[-2.77101, 47.8808];;FRCPIE67157852;FRCPIE66519652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.50753;46.520895;;;; +;;;;;;;;FRIENE004001;SJWECFVZZW;Mohon, Parking du bourg;;6 rue de L'Epinette Za Du 35137 Pleumeleuc;;[-2.42268, 47.8669];;FRCPIE67157851;FRS28E200578;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.6866;49.11279016;;;; +;;;;;;;;FRCPIE6685355;RJ628PL5BR;Sérent, Rue Général de Kerhué;;Zac du Plateau, 2 Rue du Grand Quartier 22190 Plérin;;[-3.4332, 47.9944];;FRCPIE67157751;FRIENE0071011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.17315;47.9204;;;; +;;;;;;;;FRS28E12920;QS8BTQA6LW;Bréhan, Place de la Mairie;;93 Route de Gençay 86000 Poitiers;;[-3.33653, 47.9172];;FRIENE0006024;FRIENE0071012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.61417;47.7629;;;; +;;;;;;;;FRCPIE6700465;QOHDGTS2IJ;Bubry, Place de Macroom;;80 Avenue de la Résistance 33220 Pineuilh;;[-2.525, 48.0527];;FRCPIE67157652;FRIENE0071024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.6447;47.6515;;;; +;;;;;;;;FRCPIE6603165;TMKRKF2NVZ;Treffléan, Rue du Dévehat;;la Croix Saint Simeon, 1 Chemin des Hayettes 95520 Osny;;[-2.50753, 47.8221];;FRCPIE67157651;FRCPIE66186952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.5493;48.0714;;;; +;;;;;;;;FRCPIE6611305;IYFHIGTUD5;Guiscriff, Place centrale;;Zac, Le Chêne Joli 35530 Noyal-sur-Vilaine;;[-2.6866, 48.0616];;FRCPIE67157452;FRS28E130758;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.23566;47.7122;;;; +;;;;;;;;FRS18E14866;HU0OZDLEWF;Josselin, Place Georges Lamour - Ruelle Du Tertre;;8 Place Gaston Viens 94310 Orly;;[-3.17315, 47.9645];;FRCPIE67157451;FRCPIE67277451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.45708;47.5019;;;; +;;;;;;;;FRS18E11236;S9CX3BOM9Y;Merlevenez, Rue du Presbytère;;110 bis Avenue Jean-Jaurès 33600 Pessac;;[-2.61417, 47.6824];;FRCPIE67156952;FRCPIE67277452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.65063;47.9302;;;; +;;;;;;;;FRS18E10967;KFRAWCIG6H;Noyal-Muzillac, Rue du Presbytère;;58 Rue Léonard de Vinci 79200 Parthenay;;[-3.6447, 48.0481];;FRCPIE67156951;FRCPIE67277551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.07039;47.5276439;;;; +;;;;;;;;FRS18E10966;MV8MFFBHDJ;Saint-Nolff, Place Saint Mayeuil;;La Cloutiere 37600 Perrusson;;[-2.5493, 47.9537];;FRCPIE67156852;FRCPIE67277552;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.39755;47.6818;;;; +;;;;;;;;FRCPIE6737175;WMZPDCEPIA;Ploemel, Rue du Lenno;;50 Rue De Guise 02100 Saint-Quentin;;[-3.23566, 47.736];;FRCPIE67156851;FRS28E137395;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.06502;-20.8949185;;;; +;;;;;;;;FRCPIE6700485;OQT6PYP0AK;Camoël, Rue Paul Ladmirault;;Boulevard de Brière (RD774) 44410 Herbignac;;[-2.45708, 47.5924];;FRIENE0008024;FRS37E1643;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.27921;48.0245;;;; +;;;;;;;;FRS88E14547;KUPFNDHYBP;Bieuzy, Place Ernest le Moine;;Rue de Canteraine 62130 Herlin Le Sec;;[-2.65063, 47.7031];;FRIENE0008023;FRS37E1648;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.04573;47.019179;;;; +;;;;;;;;FRIONE40260;LRZZVJ8N9E;Saint-Gravé, Parking route de Saint Martin;;Route De Corlay 22200 Guingamp;;[-3.07039, 47.653];;FRIENE0008012;FRS37E1644;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.44269536;48.2692;;;; +;;;;;;;;FRCPIE6633865;WC9D5OUSO6;Saint-Barthélemy, Rue de la Poste;;avenue du General Debeney Cite de Buire 02500 Hirson;;[-2.39755, 47.4808];;FRIENE0008011;FRS37E1645;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.341;47.667304;;;; +;;;;;;;;FRCPIE6633855;U4TXWRCMP1;Gestel, Rue de Quéven;;Route De Bagnoles 61600 La Ferté-Macé;;[-3.06502, 47.9813];;FRIENE0019024;FRS37E1646;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.1267;45.3967526;;;; +;;;;;;;;FRS51E4132;VRSXXFSM8G;Caudan, Rue Jean-Pierre Calloc'h;;219 rue de Matteucci 83260 La Crau;;[-2.27921, 47.726];;FRIENE0020011;FRS37E1647;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.3536;45.3971756;;;; +;;;;;;;;FRIONE40265;DKNJSCFR5M;Quiberon, Parking océan;;Avenue Mgr Chauvin 17500 Jonzac;;[-3.04573, 47.9257];;FRIENE0020012;FRCPIE66186951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.18881;45.374466;;;; +;;;;;;;;FRS28E13489;QE0UDZRZSN;Limerzel, Place de L'église;;Rue De Guebwiller 68500 Issenheim;;[-3.44269536, 47.80292247];;FRIENE0020023;FRS37E1704;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2360426;-21.3275523;;;; +;;;;;;;;FRS51E4114;SRFJICA7UF;Locmalo, Rue Jean Le Bris;;Kergaradec 29850 Gouesnou;;[-3.341, 47.8103];;FRIENE0020024;FRS37E1701;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.72136;46.46345109;;;; +;;;;;;;;FRS51E4113;XJGG1BX1BV;Metz, Rue de Courcelles;;1139 Rue De Tarare 69400 Gleizé;;[-3.1267, 47.4779];;FRIENE0006023;FRS37E1703;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.95376;43.517808;;;; +;;;;;;;;FRS37E123;OW2ZNJNSGE;Sarzeau, Saint Colombier;;9 Chemin de l'Orme 06130 Grasse;;[-2.3536, 47.6365];;FRIENE0006012;FRS37E2580;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.01283;49.0847;;;; +;;;;;;;;FRS51E4093;MRZST8CYGX;Pontivy, Avenue des cités unies;;S.A.S Calane Champs 46500 Gramat;;[-3.18881, 48.0709];;FRIENE0006011;FRS37E1842;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.7308;45.4834;;;; +;;;;;;;;FRS28E13436;GTOZBG9FBP;Baud, Zone d'activites de Ty Er Douar;;4 Boulevard Charles De Gaulle 29480 Le Relecq-Kerhuon;;[6.2360426, 49.09372207];;FRCPIE67158452;FRS37E1843;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.40121;43.3988;;;; +;;;;;;;;FRCPIE6700495;MTZJ9GHEC9;Vannes, Rue Alain Gerbault;;31 Avenue Du Brézet 63100 Clermont-Ferrand;;[-2.72136, 47.5468];;FRCPIE67158451;FRCPIE66219251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.82905;43.3996;;;; +;;;;;;;;FRCPIE6737065;QRFJYJHILI;Arzal, Parc d'activité de l'estuaire;;163 Rue Du Général De Gaulle 76770 Le Houlme;;[-2.95376, 48.054];;FRCPIE67158352;FRCPIE66219252;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.021463;47.6586;;;; +;;;;;;;;FRCPIE6736735;RLM6CEWDCK;Locminé, Rue Maréchal Leclerc;;2 Avenue Chambreuil 71670 Le Breuil;;[-3.01283, 47.897];;FRCPIE67158351;FRS37E2572;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.07186963;47.7582;;;; +;;;;;;;;FRS18E18840;EUQ9MLUPEK;Morez des Hauts-de-Bienne, Quai Jobez;;60 Avenue De La Communauté Européenne 53000 Laval;;[-2.7308, 47.6654];;FRCPIE67158252;FRS37E2573;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.38847;48.1266;;;; +;;;;;;;;FRS28E13435;VYHQHHZGSX;Sarreguemines, 107 rue du Marechal Foch;;13 L'Avenir Saints-Geosmes 52200 Langres;;[-2.40121, 47.5346];;FRCPIE67158251;FRS37E2575;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.37854;47.8279;;;; +;;;;;;;;FRS18E11771;EIKF1QJBPH;Ploërmel, Parc d'activités de Ronsouze;;Rue Albert Chichery 36300 Le Blanc;;[-2.82905, 47.8815];;FRCPIE67158152;FRS37E2774;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.78828;48.0322;;;; +;;;;;;;;FRS18E15132;QEINKRD3YH;Lorient, Rue Léo Lagrange;;Avenue Des Chauvières 85500 Les Herbiers;;[6.021463, 46.520895];;FRCPIE67158151;FRS37E2576;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.96514;47.6557;;;; +;;;;;;;;FRCPIE6736825;SWIRJOHWIU;Vannes, Rue Tamara de Lempicka;;1 Rue Georges Guynemer 11300 Limoux;;[7.07186963, 49.11279016];;FRCPIE67158052;FRS37E2593;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.3103;47.9879;;;; +;;;;;;;;FRCPIE6736755;ES3CPUZTN9;Pontivy, Quai des Récollets;;Route de Paris 14100 Lisieux;;[-2.38847, 47.9204];;FRCPIE67158051;FRS37E2577;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.8333;47.6964;;;; +;;;;;;;;FRCPIE6736745;HUK16Y2VIO;Riantec, Rue Le Gloahec;;Rue de l'Abbaye 62218 Loison-sous-Lens;;[-3.37854, 47.7629];;FRCPIE67157952;FRS37E2578;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.12794;47.481;;;; +;;;;;;;;FRCPIE6736495;RH6ES7OMSP;Saint-Gildas-de-Rhuys, Rue Saint Goustan;;Route De Mantes 95420 Magny-en-Vexin;;[-2.78828, 47.6515];;FRCPIE67157951;FRS37E2579;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.76128936;47.6766;;;; +;;;;;;;;FRCPIE6736945;NJAYNI3IS5;Guer, Zone d'activité du Val Coric;;50 Avenue De Bouchain 59111 Lieu-Saint-Amand;;[-2.96514, 48.0714];;FRIENE0007024;FRCPIE66234751;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.44976;48.096079;;;; +;;;;;;;;FRCPIE6736255;QETEMVQZCG;Sarzeau, Rue Adrien Régent - Parking salle multisports (rapide);;RD, 1215 ZAC Belloc 33340 Lesparre-Médoc;;[-3.3103, 47.7122];;FRIENE0007023;FRS37E1698;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.4984624;47.74;;;; +;;;;;;;;FRCPIE6726685;ULAU7GGFK3;Questembert, Avenue de la Gare;;Avenue du Fief Rose 17140 Lagord;;[-2.8333, 47.5019];;FRIENE0007012;FRCPIE66234752;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.08043;47.7362;;;; +;;;;;;;;FRCPIE6726675;GHMUTKEBFR;Sainte-Clotilde, Mr Bricolage;;14 Rue Du General De Gaulle 97438 Sainte-Marie;;[-2.12794, 47.9302];;FRIENE0007011;FRS37E2681;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.088954;47.6672;;;; +;;;;;;;;FRS28E12907;RKAVXVKURO;Muhlbach-sur-Munster;;Zac des Jardins, Rue Gabrielle Chanel 60610 La Croix-Saint-Ouen;;[-2.76128936, 47.5276439];;FRIENE0017024;FRS37E2692;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.52194;48.1453;;;; +;;;;;;;;FRS88E14549;EKPWNBEKEL;Loudun, Avenue de Ouagadougou;;40 Rue Des Magnolias 40210 Labouheyre;;[-2.44976, 47.6818];;FRIENE0017023;FRS37E1287;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.78391;48.1395;;;; +;;;;;;;;FRS18E15051;Q7PXNU5TGT;Muttersholtz;;175 Boulevard Gustave Flaubert 63000 Clermont-Ferrand;;[55.4984624, -20.8949185];;FRIENE0017012;FRS37E1288;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5655243;48.1233;;;; +;;;;;;;;FRS88E14548;MNMLPFSE3R;Mutualia Grand Ouest;;Centre commercial Moléon 33210 Langon;;[7.08043, 48.0245];;FRIENE0017011;FRS37E2682;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5747122;48.0995;;;; +;;;;;;;;FRCPIE6737895;TKVDATEIGS;Méribel, Parking Ravines;;66 Rue Mouëxigné 22400 Lamballe;;[0.088954, 47.019179];;FRIENE0011024;FRS37E2683;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.57173;47.6705;;;; +;;;;;;;;FRIONE40940;LJYDD69MZG;Méribel, Rond-Point des pistes;;Avenue Charles de Gaulle 02000 Laon;;[7.52194, 48.2692];;FRIENE0011023;FRS37E2685;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.46775447;48.068;;;; +;;;;;;;;FRCPIE6736935;GH4NB90TR9;Méribel, Parking Hameau;;Place Foch 02000 Aulnois-sous-Laon;;[-2.78391, 47.667304];;FRIENE0011012;FRS37E2688;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.82520172;47.7641;;;; +;;;;;;;;FRCPIE6736885;QM29QD00GP;Saint-Pierre, Mr Bricolage;;Bl. Condorcet 02200 Soissons;;[6.5655243, 45.3967526];;FRIENE0011011;FRS37E2686;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.379552;47.7532;;;; +;;;;;;;;FRCPIE6736845;LXEN3QKGGW;Fontenay-le-Comte, Mr Bricolage;;1rue Jean Dormans 02200 Soissons;;[6.5747122, 45.3971756];;FRS41E3780;FRS37E2687;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.53287;47.7354;;;; +;;;;;;;;FRCPIE6736275;HYNZH5Z54R;Mozerr Signal, Portet-sur-Garonne;;Place Bailly 02350 Liesse-Notre-Dame;;[6.57173, 45.374466];;FRS37E3568;FRS37E2690;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.701;47.7617;;;; +;;;;;;;;FRCPIE6726695;L7FSMQ3K4U;Moulins-lès-Metz, CORA;;Les Terrages 02300 Viry-Noureuil;;[55.46775447, -21.3275523];;FRCPIE66294551;FRS37E2691;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.70692;47.7369;;;; +;;;;;;;;FRS18E20048;AEY2CFNUTF;Moutiers, Saint Pierre;;des Francs Boisiers 02200 Soissons;;[-0.82520172, 46.46345109];;FRCPIE66095351;FRS37E1839;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.73063;47.6389;;;; +;;;;;;;;FRS18E11741;DI3I8QNHXO;Villefranche-de-Lauragais, Mr Bricolage;;Place de la Mairie 02360 Rozoy-sur-Serre;;[1.379552, 43.517808];;FRS37E1463;FRS37E1838;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.76628;47.9059;;;; +;;;;;;;;FRS18E15031;OUXSBPXK6V;Vannes, Avenue Général Délestraint;;Parking rue Laurent Cavalier 02230 Fresnoy-le-Grand;;[6.1106, 49.0847];;FRS37E1464;FRCPIE66210652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.58161;47.7427;;;; +;;;;;;;;FRCPIE6706125;TPQYPCO3UW;Locqueltas, Place de la Mairie;;de l'Eglise 02290 Saint-Bandry;;[6.53287, 45.4834];;FRS37E1465;FRCPIE66210651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.4488;47.7613;;;; +;;;;;;;;FRCPIE6706085;G1IUADBW5Q;Damgan, Boulevard de l'Océan;;Allée Olivier Messiaen 02200 Soissons;;[1.701, 43.3988];;FRCPIE66094651;FRS37E1705;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.71709;47.6326;;;; +;;;;;;;;FRCPIE6706075;VK9H0DVFDH;Groix, Parking Port Tudy;;Chemin des Dames 02160 Oulches-la-Vallée-Foulon;;[1.70692, 43.3996];;FRCPIE66094652;FRS37E1724;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.24881;47.7489;;;; +;;;;;;;;FRIONE4094;C8PSNTNXXV;Roudouallec, Rue Nicolas Le Grand;;Place de l'Eglise 02110 Bohain-en-Vermandois;;[-2.73063, 47.6586];;FRS37E1467;FRS37E1725;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.49935;45.3928606;;;; +;;;;;;;;FRCPIE6571185;QADLCK0CXV;Inzinzac-Lochrist, Rue du Blavet;;Avenue de la Victoire 02440 Montescourt-Lizerolles;;[-2.76628, 47.7582];;FRS37E1468;FRCPIE66206851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.86933;47.599;;;; +;;;;;;;;FRIONE40190;XMBUXALML9;Le Faouët, Rue Cours Carré;;Bara 02200 Soissons;;[-2.58161, 47.5179];;FRS37E1469;FRCPIE66206852;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.68495;47.6607;;;; +;;;;;;;;FRIONE41040;X48FPHUJQU;Ploeren, Rue des Deux Moulins;;5 chemin de la Couloire 02000 Laon;;[-3.4488, 47.6415];;FRS37E1471;FRS37E1737;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.25156;48.141;;;; +;;;;;;;;FRFASE330950;O0GXWLZLG0;Pleugriffet, Rue Anne de Bretagne;;D967 02860 Chamouille;;[-3.71709, 48.1266];;FRCPIE66094751;FRS37E1738;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.34411;47.80989417;;;; +;;;;;;;;FRIONE4022;TDEMGY1AN7;Plouhinec, Rue des Roseaux;;Place Saint-Christophe 02200 Soissons;;[-3.24881, 47.8279];;FRCPIE66094752;FRFASE3311101;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.29572;47.5295;;;; +;;;;;;;;FRIONE40220;TUU49NLCLV;Férel, Rue du Pré de la Dame;;7 rue Jean Dormans 02200 Soissons;;[-3.49935, 48.0322];;FRCPIE66095051;FRFASE3311102;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.544285;48.0824;;;; +;;;;;;;;FRIONE4104;Z454AWT7LX;Malansac, Rue des Forges;;du Beffroi 02200 Soissons;;[-2.86933, 47.6557];;FRCPIE66095052;FRFASE3311103;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.39355;48.0669;;;; +;;;;;;;;FRIENE008601;CTHD3M2P9Z;La Trinité-Porhoet, Rue du Stade;;du Général De Gaulle 02800 La Fère;;[-2.68495, 47.9879];;FRCPIE66095352;FRFASE3311104;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.754;47.7776;;;; +;;;;;;;;FRCPIE6736515;INJBEBIMWZ;Lorient, Rue Maurice Thorez;;Le Moulinet 02000 Monampteuil;;[-3.25156, 47.6964];;FRCPIE66091951;FRFASE3311105;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.38255;47.7337;;;; +;;;;;;;;FRCPIE6737525;KIWGD0YPCW;Vannes, Place Général de Gaulle;;Place André BAUDEZ 02100 Saint-Quentin;;[-2.34411, 47.481];;FRCPIE66098451;FRFASE3311106;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.10625;47.7663;;;; +;;;;;;;;FRCPIE6736995;CTQR1SV2HQ;Lorient, Rue Moïse Le Bihan;;Place Dauphine 02200 Soissons;;[-2.29572, 47.6766];;FRCPIE66098452;FRFASE3311107;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.38936;47.7468;;;; +;;;;;;;;FRCPIE6736975;YGKZQ5NRRM;Saint-Perreux, Rue de la Mairie;;Avenue du Mail 02200 Soissons;;[-2.544285, 48.096079];;FRS51E70244;FRFASE3311108;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.46269;47.8876;;;; +;;;;;;;;FRCPIE6736525;KTL39IK8IX;Plouray, Rue d'Elle;;de l'Eglise 02800 Courbes;;[-3.39355, 47.74];;FRS51E70245;FRCPIE66208151;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.82046;47.5497;;;; +;;;;;;;;FRIENE008602;ZUIJICJJYI;Ménéac, Place du Plessis de Genedan;;Malézieux Briquet 02870 Crépy;;[-2.754, 47.6586];;FRS41E211885;FRCPIE66208152;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.34054;47.2945556;;;; +;;;;;;;;FRCPIE6665205;JJ44TQLKVR;Saint-Gonnery, Place Pierre Anne Beurel;;Jean Moulin 02120 Guise;;[-3.38255, 47.7362];;FRS41E211886;FRCPIE66208451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.7885;47.3683056;;;; +;;;;;;;;FRIENE005302;WX6KIL9ED5;Saint-Tugdual, Route de l'Abbaye;;Avenue du Général de Gaulle 02200 Soissons;;[-2.10625, 47.6672];;FRCPIE66103351;FRCPIE66208452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.75233;47.3759444;;;; +;;;;;;;;FRIENE005301;RTYRGHNJ1K;Vannes, Rue Anita Conti;;Place du Château 02240 Ribemont;;[-3.38936, 48.1453];;FRCPIE66103352;FRS37E1830;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.24083;47.36075;;;; +;;;;;;;;FRIONE4019;W0OVAVEOX2;Rohan, Rue de Kerentree;;Place de la Citoyenneté 02100 Saint-Quentin;;[-2.46269, 48.1395];;FRCPIE66104151;FRS37E1831;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.84266;47.3491;;;; +;;;;;;;;FRTNMETERRA54012;DTBNNOB9WY;Kervignac, Rue de la Mairie;;Avenue Léo Lagrange 02100 Saint-Quentin;;[-2.82046, 48.1233];;FRCPIE66104152;FRS37E1832;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.37788;47.346444;;;; +;;;;;;;;FRCPIE6639505;IVMBTJCG7K;Grand-Champ, Rue de la Poste;;de la Fère 02100 Saint-Quentin;;[-3.34054, 48.0995];;FRCPIE66103551;FRS37E1841;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.36597;47.34725;;;; +;;;;;;;;FRCPIE6639495;ZJXRR5YPFP;Lorient, Rue de Villeneuve;;306 route de Paris 02540 L'Epine-aux-Bois;;[-2.7885, 47.6705];;FRCPIE66103552;FRS37E1834;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.12044;47.638;;;; +;;;;;;;;FRCPIE6639455;X76NRT9OK4;Lorient, Avenue de la Perrière;;ZI La Moiserie 02400 Château-Thierry;;[-2.75233, 48.068];;FRCPIE66103751;FRS37E1840;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.42677;47.657313;;;; +;;;;;;;;FRIENE006702;R8RWH8HXZS;Landévant, 3 Place de l'Eglise;;32 Boulevard du Dr Camille Guérin 02100 Saint-Quentin;;[-3.24083, 47.7641];;FRS37E1462;FRCPIE66210551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.94894;47.706284;;;; +;;;;;;;;FRIENE006701;ATTXYEMZSE;Ploemeur, Allée Laurent Esvan - Mairie;;Route de Besny 02000 Laon;;[-2.84266, 47.7581];;FRS37E1461;FRCPIE66210552;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.1234;47.706029;;;; +;;;;;;;;FRS51E4917;XLR3DJICQY;Bono, Rue Ferdinand Ardonin;;D181 02150 Sissonne;;[-3.37788, 47.7532];;FRCPIE66103851;FRIONE440410;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.38746;47.50075;;;; +;;;;;;;;FRIONE42155;AGX3GVGGGP;Guer, Place de la Gare;;Grande Rue 02210 Hartennes-et-Taux;;[-3.36597, 47.7354];;FRCPIE66091451;FRCPIE67381051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.38592;47.6665;;;; +;;;;;;;;FRS18E14680;BSWUMHG7ZY;Lorient, Rue de Lanveur;;Rue Potel 02210 Oulchy-le-Château;;[-3.12044, 47.7617];;FRIONE421501;FRIONE440408;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.78023;47.7743;;;; +;;;;;;;;FRSHEE68;GI08L1LAZG;Lorient, Place de La Liberté;;Allée de l'Innovation 02200 Soissons;;[-3.42677, 47.7369];;FRIONE421502;FRCPIE67467251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.36581;47.6269;;;; +;;;;;;;;FRIONE45210;W3FDKK3Y4Y;Vannes, Avenue Maréchal de France;;Avenue Piere Choquart 02100 Saint-Quentin;;[-2.94894, 47.6389];;FRIONE421503;FRIONE440003;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5677733;47.601017;;;; +;;;;;;;;FRIONE4521;BJLVQM5TAS;Lorient, Parking Hôtel de Ville;;Avenue Otmus 02400 Château-Thierry;;[-2.1234, 47.9059];;FRIONE421504;FRIONE44005;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.1124;47.5703;;;; +;;;;;;;;FRSHEE70;T6CP8IZJCW;Méribel, Parking Rhodos;;Place Alsace-Lorraine 02200 Soissons;;[-3.38746, 47.7427];;FRIONE42155;FRIONE403801;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.79624;47.6756;;;; +;;;;;;;;FRSHEE69;BXFKK77EJT;Plouharnel, Rue du Tramway;;Place du Maréchal Foch 02410 Saint-Gobain;;[-3.38592, 47.7613];;FRS37E1444;FRIONE403802;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.60098;47.9541;;;; +;;;;;;;;FRCPIE6737655;SAKCOZYZCV;Ploeren, Parking relais;;1 rue Cyrille 02450 Boué;;[-2.78023, 47.6326];;FRS37E1445;FRIONE403803;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.38440197;47.8099;;;; +;;;;;;;;FRIONE4520;NPPA9S0IZH;Gourin, Place Général de Gaulle;;Rue Marcel Paul 02200 Soissons;;[-3.36581, 47.7489];;FRCPIE66091351;FRIONE403804;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.30513;47.6173;;;; +;;;;;;;;FRIONE45201;KPSZKEMHNF;Malestroit, Place du Docteur Queinnec Rapide;;ZAC de l'Europe 02120 Guise;;[6.5677733, 45.3928606];;FRCPIE66091352;FRIONE403805;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.28274;47.525771;;;; +;;;;;;;;FRIONE45200;A1BDJHEJBW;Marzan, Aire de Marzan;;2 rue de l'Eglise 02000 Urcel;;[-3.1124, 47.599];;FRS37E1446;FRIONE403806;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.20706;47.3446389;;;; +;;;;;;;;FRN54E18776;PISAGDEROT;Mauron, Rue du 19 Mars 1962;;Avenue Archimède 02100 Saint-Quentin;;[-2.79624, 47.6607];;FRS37E1447;FRIONE40385;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.00925;48.53267741;;;; +;;;;;;;;FRN54E18772;Y6SL8CGLG1;Guémené-sur-Scorff, Rue du Condé;;34 Rue du Général de Gaulle 02260 La Capelle;;[-3.60098, 48.141];;FRS37E1449;FRS37E5907;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.59084;48.5315;;;; +;;;;;;;;FRN54E18744;WDURE5OIIU;Pluvigner, Place Saint Michel;;Square André Malraux 02100 Saint-Quentin;;[-2.38440197, 47.80989417];;FRS37E1470;FRS37E5908;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.13434;48.5248;;;; +;;;;;;;;FRCPIE6737665;TTGYEWCD4D;Elven, Rue Sainte Anne;;Avenue de Paris 02310 Montreuil-aux-Lions;;[-2.30513, 47.5295];;FRCPIE66091452;FRCPIE67466751;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.36819;48.5403;;;; +;;;;;;;;FRIONE41610;JERHB0BEAB;La Gacilly, Rue de l'Hôtel de ville;;Place Lucien Busquet 02880 Sancy-les-Cheminots;;[-2.28274, 48.0824];;FRS37E1460;FRCPIE67466752;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.33673;48.5742;;;; +;;;;;;;;FRIONE4161;PGOVR7LE8Z;Lorient, Rue Jean le Coutaller;;Avenue François Mitterrand 02500 Hirson;;[-3.20706, 48.0669];;FRCPIE66091551;FRCPIE67467252;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.89104;48.5243;;;; +;;;;;;;;FRIONE40900;CKEU2AXBPX;Cléguer, Kerchopine;;Rue Neuve 02340 Montcornet;;[-3.00925, 47.7776];;FRCPIE66091552;FRIONE446605;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.0849722;48.5442;;;; +;;;;;;;;FRCPIE6726615;G4DK6RTQ3D;Arzon, Parking Maison des Associations;;Sadi Carnot 02120 Guise;;[-2.59084, 47.7337];;FRS37E1453;FRCPIE67467451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.2229723;48.5614;;;; +;;;;;;;;FRCPIE6720155;RJ5B3FAJRM;Locmaria, rue Argentré du Plessis;;Place Robert Aumont 02000 Laon;;[-2.13434, 47.7663];;FRS37E1454;FRCPIE67467452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.2206389;48.5313;;;; +;;;;;;;;FRIONE4090;FLQCEIECNA;Sauzon, Pen Prad;;1 avenue Ernest Couvrecelle 02400 Etampes-sur-Marne;;[-3.36819, 47.7468];;FRCPIE66091751;FRCPIE67468251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.1861944;48.5661;;;; +;;;;;;;;FRCPIE6590315;L9PDURSKHV;Sauzon, Le Cardinal;;93 Rue Principale 02340 Dizy-le-Gros;;[-3.33673, 47.8876];;FRCPIE66091752;FRCPIE67468252;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.15921;48.5395;;;; +;;;;;;;;FRIONE40860;XOUSTRWIIJ;Le Palais, Port-Collen;;Avenue de la Gare 02290 Montigny-Lengrain;;[-2.89104, 47.5497];;FRS37E1441;FRIONE403901;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.15478;48.5407;;;; +;;;;;;;;FRCPIE6583555;MEUKZBWL9R;Le Palais, Les Glacis;;des Ecoles 02190 Berry-au-Bac;;[-3.0849722, 47.2945556];;FRS37E1455;FRIONE403902;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.1568056;48.5405;;;; +;;;;;;;;FRIONE4086;ANOW48R3FC;Le Palais, Carnot;;des remparts 02300 Chauny;;[-3.2229723, 47.3683056];;FRS37E1456;FRIONE403903;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.16351;48.5502;;;; +;;;;;;;;FRCPIE6737625;DELR9H5LME;Le Palais, Hôtel de ville;;Boulevard Gambetta 02100 Saint-Quentin;;[-3.2206389, 47.3759444];;FRS37E1457;FRIONE403904;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.754821;48.5226;;;; +;;;;;;;;FRTNMETERRA54013;OIXFQFMHLO;Allaire, Rue Le Mauff;;2 rue de Septmonts 02200 Belleu;;[-3.1861944, 47.36075];;FRS37E1458;FRIONE403905;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.385595;43.7221983;;;; +;;;;;;;;FRCPIE6742495;J2CAXWCJQ2;Sarzeau, Rue Adrien Régent - Parking salle multisports;;1 rue du Bac 02220 Brenelle;;[-3.15921, 47.3491];;FRS37E1459;FRIONE403906;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.382645;47.61497852;;;; +;;;;;;;;FRCPIE6742485;Z7TCFV54RM;Vannes, Rue Francis Decker;;du Château d'Eau 02440 Clastres;;[-3.15478, 47.346444];;FRCPIE66091851;FRIONE40395;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.379785;47.5099;;;; +;;;;;;;;FRIONE4034;YBCAAXHFBE;Larmor-Plage, Place Kerpape;;de Reims 02880 Missy-sur-Aisne;;[-3.1568056, 47.34725];;FRCPIE66103752;FRCPIE66098151;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.98956;46.6717;;;; +;;;;;;;;FRIONE40340;BJGJFYAMMJ;Larmor-Plage, Place de l'Eglise;;de Paris 02100 Saint-Quentin;;[-2.16351, 47.638];;FRCPIE66103852;FRCPIE66098152;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.34107;45.48381895;;;; +;;;;;;;;FRIONE41565;KARW5YQ2G0;Arzal, Parking Port d'Arzal;;Square Bonnenfant 02200 Soissons;;[-2.754821, 47.657313];;FRS37E15744;FRIONE440002;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.82373;-17.5275527;;;; +;;;;;;;;FRIONE41560;LA2MHNO1J0;Auray, Rue du Four Mollet;;Place du 29 août 1944 02880 Bucy-le-Long;;[-3.385595, 47.706284];;FRS37E1565;FRS28E134333;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.852219;47.749;;;; +;;;;;;;;FRTNME08910961;VFSQFDC7FS;Lanester, Rue Youri Gagarine;;Place de l'Eglise 02470 Neuilly-Saint-Front;;[-3.382645, 47.706029];;FRCPIE66126452;FRIENE0043011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.07781;47.7318;;;; +;;;;;;;;FRTNME08912792;BKLEA4YHK3;Arradon, Plessis d'Arradon;;Place Edouard Herriot 02370 Vailly-sur-Aisne;;[-2.379785, 47.50075];;FRIENE0077011;FRIENE0039012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.16776;47.7724;;;; +;;;;;;;;FRCPIE6741255;CLLQAPXJGQ;Île-aux-Moines, Embarcadère;;13B Avenue de Coucy 02200 Soissons;;[-2.98956, 47.6665];;FRIENE0077012;FRIONE403303;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.54602;47.5174;;;; +;;;;;;;;FRCPIE6737035;CPSHDAIWXX;Carnac, Boulevard de la plage;;1870 Place de la République, 02200 Soissons;;[-3.34107, 47.7743];;FRIENE0077023;FRIONE403304;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.38442;47.6379;;;; +;;;;;;;;FRCPIE6737565;DATGNHU3DP;Belz, Avenue Général de Gaulle;;2 Rue du 8 Mai 1945 02200 Soissons;;[-2.82373, 47.6269];;FRIENE0077024;FRIONE40335;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.0008;47.658;;;; +;;;;;;;;FRCPIE6737255;Q7EG4SVFR8;Josselin, Place d'Alzey;;49 Avenue de Compiègne 02200 Soissons;;[-2.852219, 47.601017];;FRS28E137316;FRS37E5520;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.648074;47.6188;;;; +;;;;;;;;FRCPIE6737185;UW8EXZVJSE;Crach, Parking Saint Thuriau;;Place du 8 Mai 02600 Villers-Cotterêts;;[-3.07781, 47.5703];;FRS28E137317;FRS37E5521;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.154;47.7203;;;; +;;;;;;;;FRCPIE6736625;QTJUNHZSQB;Le-tour-du-parc, Parking Cimetière;;27 Avenue de Laon 02200 Soissons;;[-3.16776, 47.6756];;FRS37E1563;FRS37E10838;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.49844226;48.065;;;; +;;;;;;;;FRCPIE6736575;RJC5UJDFHM;Le Palais, Remparts;;Parc Foch 02000 Laon;;[-2.54602, 47.9541];;FRS37E1564;FRS37E10839;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.59489;47.7346;;;; +;;;;;;;;FRCPIE6736235;Q8JNTUN4KO;Molsheim, Rue Ecospace;;Chemin Diccepone-Bagheera 20230 Bravone;;[-2.38442, 47.8099];;FRCPIE66126951;FRIONE404501;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.48624;47.5222;;;; +;;;;;;;;FRCPIE6741505;PMGS18OQBS;Duppigheim, Zone de Loisirs;;2 Rue Des Larrons 68500 Guebwiller;;[-3.0008, 47.6173];;FRCPIE66126952;FRIONE404502;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.42629;47.7342;;;; +;;;;;;;;FRCPIE6736615;EINYNUPISK;Dorlisheim, Placette Grand Rue;;Lieu dit, Louvarel 71480 Champagnat;;[-2.648074, 47.525771];;FRCPIE66127051;FRIONE404503;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.4851;47.8444;;;; +;;;;;;;;FRS18E17169;BKNQO1ST1J;Dinsheim-sur-Bruche, Foyer communal;;111 Chemin De La Distillerie 30390 Estézargues;;[-3.154, 47.3446389];;FRCPIE66127052;FRIONE404504;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.56569;47.5206;;;; +;;;;;;;;FRIENE007601;VRHCX96IT0;Soultz-les-bains, rue de Saverne;;Linguizzetta FR, Route de Riva Bella 20270 Aléria;;[7.49844226, 48.53267741];;FRS37E1566;FRIONE40455;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.5323;47.6292;;;; +;;;;;;;;FRS18E18660;WNPDHQMXEF;Duttlenheim, Mairie;;Chemin de Malherbes 30470 Aimargues;;[7.59489, 48.5315];;FRCPIE66126252;FRIENE0039011;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.49959;47.6149;;;; +;;;;;;;;FRIONE4052;NZAMOLTFQS;Dachstein, Rue Saint-Martin;;Rue d'Estrées 57000 Metz;;[7.48624, 48.5248];;FRS37E1567;FRIENE0039023;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.47071;47.669805;;;; +;;;;;;;;FRIONE40520;C7MVLEKOXT;Avolsheim, Gare;;529 Rue Einstein 77000 Vaux-le-Pénil;;[7.42629, 48.5403];;FRS37E1568;FRCPIE66087152;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.51442;47.8176;;;; +;;;;;;;;FRIONE4029;EP02VR6FM7;Mutzig, Hermès;;1 Route Du Havre 76150 Saint-Jean-du-Cardonnay;;[7.4851, 48.5742];;FRS37E1558;FRIENE0039024;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.49481;47.81132803;;;; +;;;;;;;;FRIONE40290;MQRZ3VP5TF;Wolxheim, Rue de Molsheim;;93 Route de Montpellier, Voie Ampère 34800 Clermont-l'Hérault;;[7.56569, 48.5243];;FRS37E1570;FRS28E129052;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.49877;47.8748;;;; +;;;;;;;;FRCPIE6753115;KWSB5QN7ZK;Molsheim, Parc des Jésuites;;8 Avenue Johannes Gutenberg 78310 Maurepas;;[7.5323, 48.5442];;FRCPIE66130451;FRS37E5579;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.34541;47.6577;;;; +;;;;;;;;FRCPIE6753105;NWNXQPH8TD;Molsheim, Holzplatz;;36 route du lac, 40170 UZA 40170 Uza;;[7.49959, 48.5614];;FRCPIE66130452;FRS37E5580;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.32491;47.8557;;;; +;;;;;;;;FRIENE007602;JCXRAXISUD;Niederhaslach, Place des Fêtes;;1075 Rue Des Forges 80120 Favières;;[7.47071, 48.5313];;FRCPIE66653451;FRS18E206359;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.53039;47.862;;;; +;;;;;;;;FRN54E18788;LUSPLHMJTM;Oberhaslach, Salle Polyvalente;;120 Chemin De Sévenier 07150 Lagorce;;[7.51442, 48.5661];;FRCPIE66653452;FRS18E206360;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.45618;47.9111;;;; +;;;;;;;;FRFASE330970;CSMXC6RE5P;Altorf, Abbatiale Saint-Cyriaque;;Rue de la carrière de Bachasson 13590 Meyreuil;;[7.49481, 48.5395];;FRS37E15734;FRS37E5654;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.40478507;47.9619;;;; +;;;;;;;;FRCPIE6654415;AU5QM7JWO3;Mutzig, Mairie;;965 Avenue Roumanille 06410 Biot;;[7.49877, 48.5407];;FRS37E15735;FRS37E5655;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.331992117;47.9061;;;; +;;;;;;;;FRCPIE6693455;LJ98RD5Z2B;Cap d'Ail, Parking du Cap Fleuri;;La Barque 13710 Fuveau;;[7.34541, 48.5405];;FRCPIE66138251;FRFASE3310401;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.80911;47.9187;;;; +;;;;;;;;FRS51E4860;G7U2LCCD4Y;Blois, Rue des Guignières;;Route De Jungholtz 68360 Soultz-Haut-Rhin;;[7.32491, 48.5502];;FRCPIE66138252;FRFASE3310402;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.52771;47.9778;;;; +;;;;;;;;FRN54E20708;NBKCJUXTTW;Montbéliard, Assurance Jacquemin;;270 Chemin De Malombre 26780 Malataverne;;[7.53039, 48.5226];;FRCPIE66141251;FRFASE3310403;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.39965998;47.9955;;;; +;;;;;;;;FRCPIE6654585;ZUGT4ZAI25;Montmorot, Bureau Vallée;;Lieu dit Seigbuhl, Chemin De La Forêt 67350 Uhrwiller;;[7.45618, 48.5396];;FRCPIE66126451;FRFASE3310404;;;;;;;;;;;;;;;;;;;;;;;;;;;;-149.90543;47.929532;;;; +;;;;;;;;FRS18E20597;EO8WQHNMPB;Montrevel, Montrevel Auto;;Rue Serre De Brujas 07120 Grospierres;;[7.40478507, 43.7221983];;FRCPIE66126251;FRCPIE66087151;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.36004;47.7079;;;; +;;;;;;;;FRFASE331120;OIGASENV23;Moorea, Salvastore;;12 Rue Des Thomeaux 37530 Mosnes;;[1.331992117, 47.61497852];;FRCPIE66103951;FRCPIE65739951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.37338;47.7023;;;; +;;;;;;;;FRS18E14877;S0QPPXPGJG;Lorient, Place Anatole Le Braz;;Rue Du Golf 39570 Vernantois;;[6.80911, 47.5099];;FRFASE3310107;FRIENE0043012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.41565;47.7519;;;; +;;;;;;;;FRCPIE6654735;H9D6ILYVTS;Lorient, Rue Raymond du Rallier du Baty;;1 Rue Raymond Poincaré 68250 Rouffach;;[5.52771, 46.6717];;FRCPIE66103952;FRIONE405303;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.52617;47.6602;;;; +;;;;;;;;FRCPIE6530035;E4PPW00CLV;Quéven, Place du Général de Gaulle;;Chemin Des Bas Jardins 51530 Dizy;;[5.39965998, 45.48381895];;FRS28E137294;FRS28E134403;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.29707;47.7667;;;; +;;;;;;;;FRCPIE6527975;FH2Y5F6VYX;Guidel, Route de Kerbrest;;10 route de la Guerche 35500 Vitré;;[-149.90543, -17.5275527];;FRS28E137295;FRIONE437901;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.76399;47.6455;;;; +;;;;;;;;FRCPIE6634525;Y6V0AW4AW2;La Roche-Bernard, Place du Dôme;;Place du marché 02310 Nogent-l'Artaud;;[-3.36004, 47.749];;FRCPIE66120851;FRIONE437902;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.77215;47.5867;;;; +;;;;;;;;FRFASE330250;DCQLQDZEBO;Vannes, Rue Daniel Gilard;;Parking de la Plaine 02000 Laon;;[-3.37338, 47.7318];;FRCPIE66120852;FRIONE437903;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.73667;47.739;;;; +;;;;;;;;FRCPIE6650145;GIKZ0YEDUA;Vannes, Avenue Jean-Marie Bécel;;de Vicq 02100 Saint-Quentin;;[-3.41565, 47.7903];;FRS37E1551;FRIONE437904;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.99905;47.6588;;;; +;;;;;;;;FRIONE43600;OCKE9RJCWK;Séné, Place Foresti;;Allée du Jeu d'Arc 02200 Soissons;;[-3.52617, 47.7724];;FRS37E1552;FRIONE43795;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.15694;47.525;;;; +;;;;;;;;FRCPIE6731545;YUKUFV;Brech, Rue du Pont Douar;;Place Lesur 02120 Guise;;[-2.29707, 47.5174];;FRFASE3310101;FRIONE459301;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.96661;47.7039;;;; +;;;;;;;;FRCPIE6654685;TJTE9E9IPY;Erdeven, Place Saint Märgen;;Place de l'Hôtel de ville 02000 Laon;;[-2.76399, 47.6379];;FRFASE3310102;FRIONE459302;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.42737;47.6183;;;; +;;;;;;;;FRN54E18861;N46VHJDQAK;Pontivy, Place Aristide Briand;;de Poulandon 02290 Ressons-le-Long;;[-2.77215, 47.658];;FRFASE3310103;FRIONE459303;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.77606;47.7498;;;; +;;;;;;;;FRIONE40780;APLE3YWA6J;Ploemeur, Place Anne de Bretagne;;Avenue de Compiègne 02200 Mercin-et-Vaux;;[-2.73667, 47.6188];;FRFASE3310104;FRIONE459304;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.4989;47.9083;;;; +;;;;;;;;FRIENE005002;EZYDLQMDET;Sarzeau, Rue Raymond Marcellin - PEM;;7 rue de l'Eclaireur de Nice 02510 Etreux;;[-2.99905, 47.7203];;FRFASE3310105;FRIONE459305;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.72319;48.1038;;;; +;;;;;;;;FRIENE005001;LNBVCEOPZC;Ploemeur, Boulevard de l'Océan;;Avenue François Mitterrand 02880 Cuffies;;[-3.15694, 47.6411];;FRFASE3310106;FRIONE459306;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.13192;47.8198;;;; +;;;;;;;;FRS41E6041;E7G17KGQS8;Saint-Jean-Brévelay, Rue des Genêts;;Place Charles de Gaulle 02110 Beaurevoir;;[-2.96661, 48.065];;FRFASE3310108;FRS28E130159;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.64905;47.5556;;;; +;;;;;;;;FRS41E6040;FJDPVYD3VM;Saint-Pierre-Quiberon, Rue Curie;;Rue de Vaudrial 02290 Montigny-Lengrain;;[-3.42737, 47.7346];;FRIONE40355;FRS28E139333;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.83013;47.5893;;;; +;;;;;;;;FRIONE4130;M5E6SNDFBJ;Theix, Rue de Treffléan;;79 Rue De La République 93100 Montreuil;;[-2.77606, 47.5222];;FRS37E1376;FRCPIE65885151;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.008798;47.4817;;;; +;;;;;;;;FRIONE41300;UTPIDLSOX7;Arradon, Rue de la Carrière;;Rue Du 8 Mai 1945 51520 Saint-Martin-sur-le-Pré;;[-3.4989, 47.7342];;FRS37E1377;FRCPIE67336051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.81222;47.6507;;;; +;;;;;;;;FRS51E9587;HHQQUNK71G;Auray, Porte Océane;;15 Rue Léna Bernstein 51100 Reims;;[-2.72319, 47.8444];;FRS37E53927;FRCPIE65885152;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.34079459;47.6975;;;; +;;;;;;;;FRS08E5764;EZNQHP1WWZ;Colpo, Rue Nationale;;5 Rue Du Stade De L'est 97490 Saint-Denis;;[-3.13192, 47.5206];;FRCPIE66125151;FRCPIE65885251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.01824;47.7537;;;; +;;;;;;;;FRIENE005802;KMIYT7TETI;Caudan, Place du presbytère;;Avenue du Général Patton 02880 Crouy;;[-2.64905, 47.6292];;FRCPIE66125152;FRCPIE65885252;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.20436;47.5681;;;; +;;;;;;;;FRSHEE72;GVMAEKKID2;Baud, Rue du pont clas;;Place Charles de Gaulle 02220 Braine;;[-2.83013, 47.6149];;FRS18E202094;FRS37E6555;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.83354;47.838;;;; +;;;;;;;;FRSHEE71;L1KGSJOGST;Étel, Ruelle des Champs;;437 Rue Du Champ De Courses 38780 Pont-Évêque;;[-3.008798, 47.669805];;FRS18E202095;FRS37E6556;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.52643;48.0606;;;; +;;;;;;;;FRIENE005801;E2RRBXWBWF;Moustoir-Ac, Rue de la Maillette;;Chemin De Montréveil 81100 Castres;;[-2.81222, 47.8176];;FRIONE403501;FRS37E6557;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.72377;48.1642;;;; +;;;;;;;;FRIONE4078;VVKHTT0N8X;Lizio, Rue du souvenir;;225 Avenue Charles De Gaulle 81100 Castres;;[-3.34079459, 47.81132803];;FRIONE403502;FRS37E6558;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.71399;47.6736;;;; +;;;;;;;;FRS37E449;MEXJIN27J7;Saint-Allouestre, Parking Salle Polyvalente;;ZAC Font de la Banquière - Plan du Néga Cat 34970 Lattes;;[-3.01824, 47.8748];;FRIONE403503;FRFASE3302901;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.13532;47.6709;;;; +;;;;;;;;FRCPIE6738725;GNV9UFSQLR;Radenac, Rue Anne de Bretagne;;11 boulevard du Chaudron 97400 Saint-Denis;;[-3.20436, 47.6577];;FRIONE403504;FRFASE3302902;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.81932;47.6563;;;; +;;;;;;;;FRS08E5763;IZJM7OHIWO;Quistinic, Rue de la Résistance;;100 avenue Luc Donat Ravine Blanche 97410 Saint-Pierre;;[-2.83354, 47.8557];;FRIONE403505;FRFASE3302903;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.28161;47.6421;;;; +;;;;;;;;FRS08E5768;IHLSGMESO6;Moréac, Place de la Résistance;;Rue de la Garenne 77130 La Grande-Paroisse;;[-2.52643, 47.862];;FRIONE403506;FRFASE3302904;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.39381;48.0368;;;; +;;;;;;;;FRCPIE6608855;NUVRR1EADB;Inguiniel, Place François Jaffré;;Rue De La Gare 57410 Petit-Réderching;;[-2.72377, 47.9111];;FRS37E1560;FRCPIE65885651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.397311;47.8482;;;; +;;;;;;;;FRIONE4023;GWNCBEVKLC;Berné, Place de la Mairie;;9 Rue De Spatiel 88500 Puzieux;;[-2.71399, 47.9619];;FRS37E1442;FRCPIE65885652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.35777;47.6686;;;; +;;;;;;;;FRIONE40230;LWXGXZ6NVG;Ploërmel, Place de la mairie;;15 Rue Principale 67260 Rimsdorf;;[-3.13532, 47.9061];;FRCPIE66090452;FRCPIE67336052;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.43252;48.0281;;;; +;;;;;;;;FRS41E403;GLD9JG2RUT;Port-Louis, Rue de la Brèche;;Place Tamboise 62320 Rouvroy;;[-2.81932, 47.9187];;FRCPIE66045552;FRCPIE66340952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.36487;47.6887;;;; +;;;;;;;;FRCPIE6759675;FZE0IT59TV;Ploemeur, Lomener - Place Patrick Bihan;;Place Roger Salengro 62320 Rouvroy;;[-3.28161, 47.9778];;FRCPIE66048751;FRIENE0043023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.45204;47.8047;;;; +;;;;;;;;FRCPIE6654675;RHIZSXG2KA;Lorient, Boulevard du Maréchal Joffre;;Esplanade Des Islettes 73450 Valmeinier;;[-3.39381, 47.9955];;FRS37E1269;FRCPIE65302151;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.40196;47.5846;;;; +;;;;;;;;FRCPIE6759465;X76ERWSQBX;Questembert, Place Général de Gaulle;;11 Route de la CR Basse 38114 Vaujany;;[-2.397311, 47.929532];;FRS37E1268;FRIENE0043024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.49312;45.3977;;;; +;;;;;;;;FRS18E18818;GXNIEP4LJS;Lorient, Rue Müller;;15 rue Charles Darwin Zac 2000 97407 Le Port;;[-3.35777, 47.7079];;FRCPIE66048052;FRS28E134784;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.77069;-20.9435549;;;; +;;;;;;;;FRS18E18817;V4TIQY3EGA;Guidel, Place le Montagner;;Rue de l'hôpital 97460 Saint-Paul;;[-3.43252, 47.7023];;FRCPIE66048051;FRS37E6023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.00035;46.84935771;;;; +;;;;;;;;FRS51E4889;VAT5RXQZXS;Vannes, Avenue Winston Churchill;;557 Avenue Du Général Leclerc 51530 Dizy;;[-3.36487, 47.7519];;FRFASE3300408;FRS37E6024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.2128;49.15062261;;;; +;;;;;;;;FRS51E4888;WZVO2GVYMJ;Saint-Philibert, Place de la Mairie;;54 Avenue De Metz 55100 Verdun;;[-2.45204, 47.6602];;FRFASE3300407;FRCPIE65750951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.7638;49.09145112;;;; +;;;;;;;;FRCPIE6608865;SHNTRB88GR;Fougerêts, Place de la Mairie;;2 impasse du Général de Maud Huy 57400 Sarrebourg;;[-3.40196, 47.7667];;FRFASE3300406;FRCPIE66587651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.76991;49.13026545;;;; +;;;;;;;;FRCPIE6608875;QVMV4MMGBF;Vannes, Place de la Libération;;Rue de Carling 57150 Creutzwald;;[-3.49312, 47.7926];;FRFASE3300405;FRCPIE67413451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.38456;48.7626;;;; +;;;;;;;;FRIONE4490;JRO5XUKNVX;Sarzeau, Rue Père Marie Joseph Coudrin;;35 rue Roche Genès 63170 Aubière;;[-2.77069, 47.6455];;FRFASE3300404;FRCPIE67413452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.91855;47.3612;;;; +;;;;;;;;FRS08E5756;A3XTEFNVP7;Larmor-Plage, Boulevard de Port Maria;;25 rue Etienne Dolet 63000 Clermont-Ferrand;;[-3.00035, 47.5867];;FRFASE3300403;FRIONE409101;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.36112;48.828;;;; +;;;;;;;;FRIENE005502;LHXITWLNL8;Baden, Chemin du Vrancial;;55 Avenue Georges Pompidou 15000 Aurillac;;[-2.2128, 47.739];;FRFASE3300402;FRIONE409102;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.97686;49.054;;;; +;;;;;;;;FRIENE005501;MDE2V8GM3H;Lorient, Place Alsace Lorraine;;Rue De La Folie 71260 Lugny;;[-2.7638, 47.6588];;FRFASE3300401;FRIONE409103;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.49143;49.05467492;;;; +;;;;;;;;FRIONE44900;GQX8TOZGDZ;Guénin, Rue de Maneguen;;4 Place De La Mairie 77450 Condé-Sainte-Libiaire;;[-2.76991, 47.525];;FRCPIE66045551;FRIONE409104;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.28271;43.436471;;;; +;;;;;;;;FRCPIE6665415;WRQX6K3RY5;Langonnet, Place Morvan Leiz Breizh;;13 Avenue Du Président Borgeot 71350 Verdun-sur-le-Doubs;;[-3.38456, 47.7039];;FRS28E176491;FRIONE40915;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.10467;48.02775;;;; +;;;;;;;;FRIONE40445;UTD4TMRIWV;Ruffiac, Place de la Poste;;Rue du Daval 88310 Cornimont;;[-2.91855, 47.6183];;FRCPIE66045452;FRCPIE65302152;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.48298;49.930116;;;; +;;;;;;;;FRIONE43250;S3XSSU87WY;Cournon, Rue de l'Ecole;;Rue Général de Gaulle 57230 BITCHE;;[-3.36112, 47.7498];;FRCPIE66066651;FRCPIE66340951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.02919;49.928808;;;; +;;;;;;;;FRS18E10962;HS5GOHL3FX;Muzillac, Place du Vieux Couvent;;6 Avenue de la République 91660 Le Mérévillois;;[-2.97686, 47.9083];;FRCPIE66066652;FRCPIE67418051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.12166;42.672587;;;; +;;;;;;;;FRTNME09911164;IGM47RQUIV;La Trinité-sur-Mer, Cours des Quais;;Place De La Gare 62690 Aubigny-en-Artois;;[-3.49143, 48.1038];;FRCPIE66066751;FRCPIE67418052;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.75518;42.738149;;;; +;;;;;;;;FRTNME08912228;LLIBEU92G1H0V7;Quiberon, Place Varquez;;Place De La Paix 15000 Aurillac;;[-2.28271, 47.8198];;FRCPIE66066752;FRCPIE67418351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.80442;42.671744;;;; +;;;;;;;;FRTNME08912220;BM0HFP9CGY;Vannes, Rue Jean Jaurès;;2 Rue Principale 57370 Berling;;[-2.10467, 47.7465];;FRCPIE66067451;FRCPIE67418352;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.3622;48.1954;;;; +;;;;;;;;FRTNME08912218;YDK2B0ERXB;Plescop, Rue de la République;;Avenue Du Luxembourg 89470 Monéteau;;[-2.48298, 47.5556];;FRCPIE66067951;FRIONE438902;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.94377;48.326655;;;; +;;;;;;;;FRCPIE6678655;TYPWUQ7IGF;Lorient, Cours Louis de Chazelles;;23 Rue De La Prairie 57790 Hattigny;;[-3.02919, 47.5893];;FRCPIE66067952;FRIONE438903;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.64181;46.81367492;;;; +;;;;;;;;FRCPIE6678625;JDWZ4GKGLJ;Locmariaquer, Parking Wilson;;170 Allée Guy De La Verpillière 01150 Lagnieu;;[-3.12166, 47.4817];;FRCPIE66068351;FRIONE438904;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.41064;44.84853261;;;; +;;;;;;;;FRIONE4325;NU7TML0PLL;Plumelec, Rue des Martyrs de la Résistance;;5 Rue De Besançon 25270 Levier;;[-2.75518, 47.6507];;FRCPIE66068352;FRIONE438905;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.1275;48.410504;;;; +;;;;;;;;FRCPIE6535085;WOGY4YK72D;Priziac, Rue du Bel Air;;15b Rue Principale 57530 Marsilly;;[-2.80442, 47.6975];;FRCPIE66068751;FRIONE438906;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.95916;45.642895;;;; +;;;;;;;;FRFASE330980;D9MFWXE3BX;Sainte-Brigitte, Le Bourg;;25 Avenue De La Gare 67120 Molsheim;;[-3.3622, 47.7537];;FRCPIE66068752;FRIONE438908;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.76808;45.847791;;;; +;;;;;;;;FRFASE330981;RM3XAKQMTG;Pluneret, Rue Marie Curie;;1 Allée Des Tilleuls 57530 Pange;;[-2.94377, 47.5681];;FRCPIE66198451;FRIONE43895;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.75941;43.87983;;;; +;;;;;;;;FRCPIE6699815;J69U6QU8AD;Vannes, Rue Henri Matisse;;50 Rue Gisèle De Frioul 59830 Cysoing;;[-2.64181, 47.838];;FRCPIE66048752;FRS18E112986;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.75489;48.582848;;;; +;;;;;;;;FRCPIE6696725;RQ8FFLKBGH;Vannes, Place de la République;;Place Du Maréchal Leclerc 02400 Château-Thierry;;[-3.41064, 48.0606];;FRCPIE66050351;FRS18E112987;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.27127;48.5812;;;; +;;;;;;;;FRCPIE6696715;CBX7KUYBYW;Vannes, Rue du Commerce;;Rue Du Maréchal Foch 57230 Bitche;;[-3.1275, 48.1642];;FRCPIE66090451;FRIONE403302;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.00026;-17.7401472;;;; +;;;;;;;;FRIONE40440;O5K3TST9TA;Lignol, Place Corentin Le Floch;;Briis-Sous-Forge 91640 Briis-Sous-Forge;;[-2.95916, 47.6736];;FRIONE409505;FRIONE403301;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.98203;48.630265;;;; +;;;;;;;;FRS18E9783;GDUIKKNQ0H;Camors, Rue du Vieux Presbytère;;Place Jean-Moulin 02400 Château-Thierry;;[-2.76808, 47.6709];;FRIONE40955;FRS37E5515;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.09225;45.7196;;;; +;;;;;;;;FRCPIE6685065;LSL7IGJCKA;Auray, Parking Kériolet;;Place Des États-Unis 02400 Château-Thierry;;[-2.75941, 47.6563];;FRIONE409524;FRS37E5060;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.54198;48.578;;;; +;;;;;;;;FRS55E12457;JXVJI1COJF;Guern, Rue de la Vallée;;Bld Jeanne d'Arc 02200 Soissons;;[-2.75489, 47.6421];;FRIONE409523;FRIONE409301;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.27615;45.05030241;;;; +;;;;;;;;FRCPIE6580395;MSSZCNYGB6;La Vraie-Croix, Rue du Tostal;;des Roses 02270 Crécy-sur-Serre;;[-3.27127, 48.0368];;FRIONE409522;FRIONE409302;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.07873;46.57495515;;;; +;;;;;;;;FRCPIE6580385;MNJRPSZUVR;Hennebont, Place du Général de Gaulle;;Rue Des Vieux Moulins 02150 Sissonne;;[-3.00026, 47.8482];;FRIONE440409;FRIONE409303;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.56515;47.56237043;;;; +;;;;;;;;FRIONE4473;AVHMBVDDEL;Carnac, Place de la Chapelle;;Place Lamartine 02200 Soissons;;[-2.98203, 47.6686];;FRIONE409513;FRIONE409304;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.30034399;47.04787699;;;; +;;;;;;;;FRIONE44730;DZWIKE3NEN;Méribel, Parking Dou du Pont;;Boulevard Jeanne D'Arc 02200 Soissons;;[-3.09225, 48.0281];;FRIONE409512;FRIONE40935;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.70319375;46.85125182;;;; +;;;;;;;;FRIENE003601;VIVCM51QGG;Le Port, Avenue Lénine, Parking Oasis 4ème étage;;Avenue du Maréchal Joffre 02500 Hirson;;[-2.54198, 47.6887];;FRIONE409511;FRCPIE64978351;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.17280653;48.92663827;;;; +;;;;;;;;FRIENE003602;H1P1PYTVJZ;Déols, Avenue de Gustaves EIFFEL;;44 Rue Porte de Reims 02860 Bruyères-et-Montbérault;;[-3.27615, 47.8047];;FRIONE409510;FRCPIE64978352;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2323784;-22.1962;;;; +;;;;;;;;FRCPIE6677615;REGMVHBLYO;Woippy, Parking-Relais;;Neuve 02240 Itancourt;;[-3.07873, 47.5846];;FRIONE409509;FRCPIE65019451;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.17077408;48.5856;;;; +;;;;;;;;FRFASE331090;PFMKY61J2Z;Metz, Parking Relais Foire Expo;;Rue du Général Maunoury 02290 Vic-sur-Aisne;;[6.56515, 45.3977];;FRIONE409508;FRIONE402501;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.66796;48.571507;;;; +;;;;;;;;FRIONE43590;WDC8V4ORJE;Rochambeau, Parking-Relais;;Rue Alfred Juneaux 02600 Villers-Cotterêts;;[55.30034399, -20.9435549];;FRIONE409507;FRIONE402502;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.05189;48.59868515;;;; +;;;;;;;;FRIENE007502;VUHVSPUVEE;Ozoir-la-Ferrière, Place de l'Eglise;;de l'Aigle Noir 02320 Anizy-le-Château;;[1.70319375, 46.84935771];;FRIONE409506;FRIONE402503;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.27165;48.5814;;;; +;;;;;;;;FRIENE007501;SYA3HIFJSJ;Dijon, Parking Hôpital Valmy;;9 D1043 02170 Le Nouvion-en-Thiérache;;[6.17280653, 49.15062261];;FRIONE409504;FRIONE402504;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.43781;48.5787;;;; +;;;;;;;;FRCPIE6618725;FN2ROX2AOD;Paris, Parking Parkélis Frères Voisin;;Parking de la Gare 02000 Laon;;[6.2323784, 49.09145112];;FRCPIE66050352;FRIONE40255;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.43771407;48.5756;;;; +;;;;;;;;FRCPIE6501915;QNVE1QVN1M;Bitche, Communauté de communes;;Place Jean Mermoz 02390 Origny-Sainte-Benoite;;[6.17077408, 49.13026545];;FRIONE409503;FRS37E5209;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.791854;48.6005;;;; +;;;;;;;;FRCPIE6615295;NNOGALD1MD;Saint-Raphaël, Voie Denis Papin;;du 7ème BCA 02320 Pinon;;[2.66796, 48.7626];;FRIONE409502;FRS41E5013;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.080172;44.505702;;;; +;;;;;;;;FRS88E16202;AWSCCFXPIZ;Muhlbach-sur-Munster, Perle des Vosges;;Place Victor Hugo 02000 Laon;;[5.05189, 47.3612];;FRIONE409501;FRS41E5150;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.935281;49.4121;;;; +;;;;;;;;FRCPIE6709175;HKI3EEJ2VG;Peronne, Rue Alfred Rey;;Rond-Point des Etats-Unis 02200 Soissons;;[2.27165, 48.828];;FRCPIE66066452;FRS41E5151;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.932803;50.470262;;;; +;;;;;;;;FRCPIE6709155;B5J7TXK8V7;Place André AUDINOT, Péronne;;Place de l'Hôtel de Ville 02200 Soissons;;[7.43781, 49.054];;FRCPIE66066451;FRS41E5162;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.892884;50.692625;;;; +;;;;;;;;FRIONE4359;Melunermi;Perpignan, Chemin de la Fauceille;;23 avenue de Champagne 02650 Mézy-Moulins;;[7.43771407, 49.05467492];;FRCPIE66063952;FRS41E5163;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.889084;43.935768;;;; +;;;;;;;;FRCPIE6502285;QSGFVS;Perpignan, Rue Louis Delage;;62 rue Emilie Morlot 02310 Charly-sur-Marne;;[6.791854, 43.436471];;FRCPIE66063951;FRCPIE65054351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.886408;45.74877581;;;; +;;;;;;;;FRCPIE6506505;KQBBVHXLQF;Perpignan, Avenue d'Espagne;;Place de l'évêché 02200 Soissons;;[7.080172, 48.02775];;FRCPIE66059452;FRS28E128960;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.28424;43.34195984;;;; +;;;;;;;;FRIENE008802;IZHQAZZMW0;Perrigny Immo;;Boulvard Jeanne d'Arc 02200 Soissons;;[2.935281, 49.930116];;FRCPIE66059451;FRS28E134835;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.424128;43.517815;;;; +;;;;;;;;FRTNME18B92447;CREOX7XV1T;Dambach-la-Ville, Parking des Charpentiers;;9 rue du Routy 02290 Ressons-le-Long;;[2.932803, 49.928808];;FRCPIE66052052;FRS37E5205;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.85657597;43.517403;;;; +;;;;;;;;FRTNME18B92392;QWU01HIDPC;Chalon-sur-Saône, Patachoux;;Quinquet 02200 Soissons;;[2.892884, 42.672587];;FRCPIE66052051;FRS37E5206;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.67585831;43.5169;;;; +;;;;;;;;FRS51E12701;JJPPHE;Mérignac, Partedis Public;;9 avenue Jean Jaurès 02600 Villers-Cotterêts;;[2.889084, 42.738149];;FRCPIE66051752;FRS37E5207;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.457815;43.518713;;;; +;;;;;;;;FRCPIE6713095;Melundoumer;Barr, Parking Jardin des Sports;;Saint-Fiacre 02570 Chézy-sur-Marne;;[2.886408, 42.671744];;FRCPIE66051751;FRS37E5208;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.135993;43.518561;;;; +;;;;;;;;FRCPIE6713075;C7FO07OXBQ;Angouleme, Rue du Bordeaux;;4 Avenue Paul Doumer 02140 Vervins;;[3.28424, 48.1954];;FRCPIE66198452;FRCPIE67208651;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.529003;43.521069;;;; +;;;;;;;;FRCPIE6711655;IQSGOGAXZQ;Thiers , Av. Léo Lagrange;;28 Rue Paulin Pecqueux 02110 Bohain-en-Vermandois;;[7.424128, 48.326655];;FRCPIE66069051;FRCPIE67208652;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.390306;43.52180774;;;; +;;;;;;;;FRS51E17507;LLJMHQN8S1SRHJ;Parking George Santoni, APT;;53 Avenue de Paris 02200 Soissons;;[4.85657597, 46.81367492];;FRCPIE66069052;FRS41E5014;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.732935;43.520648;;;; +;;;;;;;;FRIENE008801;YKHCDWYRQK;Strasbourg, Parking Sainte-Aurélie;;Avenue de la Gare 02460 La Ferté-Milon;;[-0.67585831, 44.84853261];;FRS37E1387;FRCPIE64952551;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75628;43.25221254;;;; +;;;;;;;;FRCPIE6669225;RYXKLF;Strasbourg, Parking Bateliers;;Boulevard Magenta - Espace Rotonde 02500 Buire;;[7.457815, 48.410504];;FRCPIE66080852;FRS37E5514;;;;;;;;;;;;;;;;;;;;;;;;;;;;-149.57666;46.896513;;;; +;;;;;;;;FRCPIE6669215;JLGGHEVQB8;Paea, LS TEHITI 1;;François Mauriac 02200 Soissons;;[0.135993, 45.642895];;FRS37E1371;FRS37E4899;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.402931;48.720608;;;; +;;;;;;;;FRFASE331101;ZABVAJT7UQ;Ris-Orangis, Rue Jules Guesde;;Place Lino Ventura 02200 Soissons;;[3.529003, 45.847791];;FRS37E1372;FRCPIE67447252;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.86179;43.609892;;;; +;;;;;;;;FRFASE331100;JIQBOVFEMZ;Vénissieux, Parc du moulin à Vent;;Impasse de Corbusier 02200 Soissons;;[5.390306, 43.87983];;FRS37E1373;FRS41E4843;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75179;43.3354;;;; +;;;;;;;;FRFASE33111;KTAWLU4IZC;Strasbourg, Parking Austerlitz;;Parking de la Criée 02100 Saint-Quentin;;[7.732935, 48.582848];;FRS37E1374;FRS41E4844;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.95577706;47.932087;;;; +;;;;;;;;FRN54E18777;CIQQYCDPTL;Saint-Germain-La-Prade, rue Lamarck Jean-Baptiste;;9 Avenue Du Millac 33370 Artigues-près-Bordeaux;;[7.75628, 48.5812];;FRCPIE66081851;FRS37E4864;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9547898;48.89914169;;;; +;;;;;;;;FRIONE41320;TL6QWRNSBJ;Saint-Laurent-en-Grandvaux, Rue du Parc;;1 Avenue de Beauvaisis 60000 Beauvais;;[-149.57666, -17.7401472];;FRCPIE66081852;FRS37E4865;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.37212484;48.898419;;;; +;;;;;;;;FRS51E5772;DJ0CFESMH8;Patapain, Route Nationale;;Allée de la Verderie 64140 Lons;;[2.402931, 48.630265];;FRS37E1383;FRS41E4866;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34557791;43.366492;;;; +;;;;;;;;FRIONE4132;KFIO5AUOI5;Patapain, rue Joseph Aristide Auxenfans;;102 Avenue Ernest Cristal 63170 Aubière;;[4.86179, 45.7196];;FRS37E1384;FRS41E4867;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.70260771;47.967881;;;; +;;;;;;;;FRCPIE6498985;JXHEZ5LVEE;Patapain, Avenue Georges Hennequin;;2 Avenue Robert Schumann 95350 Saint-Brice-sous-Forêt;;[7.75179, 48.578];;FRCPIE66083151;FRCPIE67410351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.31410268;48.7963;;;; +;;;;;;;;FRIONE4040;BCLQK08V8L;Gennevilliers, avenue Louis Roche;;13 Avenue de L'Europe 67300 Schiltigheim;;[3.95577706, 45.05030241];;FRCPIE66083251;FRCPIE67410352;;;;;;;;;;;;;;;;;;;;;;;;;;;;166.4454;43.37836832;;;; +;;;;;;;;FRIONE40400;NHOGL06J48;Dumbéa, Avenue des Télégraphes;;2 Avenue Des Pyrénées 33140 Villenave-d'Ornon;;[5.9547898, 46.57495515];;FRCPIE66083351;FRS41E4880;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.74903;14.650675;;;; +;;;;;;;;FRCPIE6499325;KZRU0KKOAL;Strasbourg, Parking Broglie;;11 Impasse Lavoisier 69680 Chassieu;;[1.37212484, 47.56237043];;FRCPIE66083451;FRS41E4881;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.780682;48.28769415;;;; +;;;;;;;;FRCPIE6676155;USPBSW;Strasbourg, parking Dock 1;;500 Rue Saint - Fuscien 80090 Amiens;;[2.34557791, 47.04787699];;FRS37E1388;FRS41E4884;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.7635538;48.901667;;;; +;;;;;;;;FRCPIE6736725;FVD33KIR4U;Strasbourg, parking Europe Wacken publique;;Allée Jean-Jacques Soulier 03100 Montluçon;;[1.70260771, 46.85125182];;FRS28E176250;FRS41E4885;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.74836;48.900334;;;; +;;;;;;;;FRIONE43960;LLIU0VC43UH3BJ;Strasbourg, Parking Gutenberg;;2 rue de Proviseux 02190 Guignicourt;;[2.31410268, 48.92663827];;FRCPIE66086551;FRS37E4900;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.73573;48.90910377;;;; +;;;;;;;;FRCPIE6658785;LLIU0JLHQ2NV4U;Strasbourg, Parking Petite-France;;1 Rue Du Jeu D'arc 02400 Essômes-sur-Marne;;[166.4454, -22.1962];;FRCPIE66086552;FRS41E5000;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.74958;48.9158465;;;; +;;;;;;;;FRFASE330240;WEXJ08SAGD;Strasbourg, Parking Saint-Nicolas;;Rue du Pré Château 02310 Villiers-Saint-Denis;;[7.74903, 48.5856];;FRCPIE66087951;FRCPIE67451051;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.76866;48.9124041;;;; +;;;;;;;;FRIONE4396;JZIMSLSNZI;Strasbourg, Parking Coubertin;;Saint Jean 02290 Vic-sur-Aisne;;[7.780682, 48.571507];;FRCPIE66087952;FRCPIE67451052;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.171193;48.90372981;;;; +;;;;;;;;FRIONE43961;LLIU23ZA9182RT;Peugeot Bonachera, Prayssac;;Place de L Hôtel de ville 02120 Sains-Richaumont;;[7.7635538, 48.59868515];;FRCPIE66088051;FRS41E4911;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.77243;48.896979;;;; +;;;;;;;;FRS37E1507;TRYMDJ3CBV;Venette, Proméo;;Place de l'Hôtel de Ville 02490 Vermand;;[7.74836, 48.5814];;FRCPIE66088052;FRS41E4912;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.993125;48.89498;;;; +;;;;;;;;FRTNME18B92614;C0I5HNSCPF;Oignies, Poste de police;;34 Avenue Roland Garros 33700 Mérignac;;[7.73573, 48.5787];;FRCPIE66088451;FRS41E4919;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.124967;48.902702;;;; +;;;;;;;;FRIONE4085;JX4EPALWZ9;Marcq en Baroeul, Parking CEPI Management;;Rue Des Bouleaux 59810 Lesquin;;[7.74958, 48.5756];;FRCPIE66088452;FRS41E4920;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.847807;48.91675;;;; +;;;;;;;;FRIONE40850;V8ZXCF8KLK;Avignon, Premium Automobile Berbiguier;;Voie Des Elysiques 11100 Narbonne;;[7.76866, 48.6005];;FRCPIE66088851;FRS41E4922;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.13683557;48.9043635;;;; +;;;;;;;;FRS88E14422;CPFJ1PSP4H;Aubière, Prestige Cars;;Avenue Alexandre Fleming 64400 Oloron-Sainte-Marie;;[1.171193, 44.505702];;FRCPIE66088852;FRS41E4923;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.68619721;48.904986;;;; +;;;;;;;;FRIONE4131;UX6T6V86EB;Roquebrune-sur-Argens, Port des Issambres;;1 Rue De La Conraie 44700 Orvault;;[2.77243, 49.4121];;FRS37E1414;FRS41E4929;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.137626;45.4430808;;;; +;;;;;;;;FRIONE41310;QQ9ULMFY9S;Le Grau-du-Roi, Triangle du Soleil sud;;4b Rue D'illzach 68260 Kingersheim;;[2.993125, 50.470262];;FRCPIE66090351;FRS41E4930;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.126213;43.47749826;;;; +;;;;;;;;FRIONE4156;PPAT8F1AHP;Le Grau-du-Roi, parking Chenal sud;;1 route nationale 95570 Moisselles;;[3.124967, 50.692625];;FRCPIE66090352;FRS41E4931;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.126149;48.56437512;;;; +;;;;;;;;FRTNME18B92617;LMAJAU9VM3;Le Grau-du-Roi, parking Jason;;Avenue Des Catalins 26200 Montélimar;;[4.847807, 43.935768];;FRCPIE66080851;FRS41E4932;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.136678;49.20641115;;;; +;;;;;;;;FRIONE43120;XZTAT4QNOV;Le Grau-du-Roi, Spinaker;;2 Rue Des Glaçis 57370 Phalsbourg;;[3.13683557, 45.74877581];;FRS37E1370;FRS41E4999;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.13157;43.47698053;;;; +;;;;;;;;FRS55E16758;IS3DWADVWS;Le Grau-du-Roi, Parking Lapérouse;;105 Route De Rostrenen 22110 Plouguernével;;[6.68619721, 43.34195984];;FRS37E1369;FRCPIE66359551;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.135843;48.7617;;;; +;;;;;;;;FRS55E15801;RTTMEX22VQ;Le Grau-du-Roi, Terrasses de l'Espiguette;;Avenue d'Auvelais 60700 Pont-Sainte-Maxence;;[4.137626, 43.517815];;FRS37E1368;FRCPIE66359552;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.12670173;43.205176;;;; +;;;;;;;;FRS55E15800;J9E72TSRLI;Le Grau-du-Roi, atelier;;1 Rue Ordronneau 44400 Rezé;;[4.126213, 43.517403];;FRS28E176251;FRCPIE66098051;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.126527;50.3602;;;; +;;;;;;;;FRS55E15798;IHJ5AEHHQC;Le Grau-du-Roi, Capitainerie;;Rue Des Prés 27400 Incarville;;[4.126149, 43.5169];;FRCPIE65402051;FRCPIE67408352;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.29667692;48.94491689;;;; +;;;;;;;;FRS55E15795;JVJN0XRMBD;Valras Plage, Port;;Route De Perros 22300 Lannion;;[4.136678, 43.518713];;FRCPIE65402052;FRCPIE67407851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.93139;45.742189;;;; +;;;;;;;;FRCPIE6672815;BENXV427ED;Puy du Fou, Parking Parc D;;Zone artisanale 60310 Lassigny;;[4.13157, 43.518561];;FRCPIE65402251;FRCPIE67407852;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.042465;49.045931;;;; +;;;;;;;;FRIONE4312;YTDEL15IL4;Sarrebourg, Terrasse Bretagne;;Route de Louviers Bp 118 27110 Le Neubourg;;[4.135843, 43.521069];;FRCPIE65402252;FRCPIE67407951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.991944;43.998829;;;; +;;;;;;;;FRS08E18824;RFATER8YU3;Pouillon, Peugeot;;92 Rue Des Bordes 71500 Louhans;;[4.12670173, 43.52180774];;FRCPIE65415351;FRCPIE67407952;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.22644;49.241206;;;; +;;;;;;;;FRS41E502;UEPCJ1ONBV;Polygone Béziers, Carrefour de l'Hours;;1060 Avenue De L'europe 33260 La Teste-de-Buch;;[4.126527, 43.520648];;FRS37E1362;FRCPIE67415151;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.389648;49.244048;;;; +;;;;;;;;FRCPIE6580005;XZV5YXNZQK;Ploërmel, Biocoop;;Les Oudairies, Rue Newton 85000 La Roche-sur-Yon;;[3.29667692, 43.25221254];;FRS37E1386;FRCPIE67415152;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.40785111;49.242705;;;; +;;;;;;;;FRFASE330070;TTTLWP8ERC;Halle de Pantin, Pantin Public;;Route D'acquin 62380 Lumbres;;[-0.93139, 46.896513];;FRS37E1363;FRCPIE67415351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.370512;49.26076;;;; +;;;;;;;;FRTNME18B92615;CPTGDV5IRH;Point P, Paris 18;;route de Lyon 71100 Lux;;[7.042465, 48.720608];;FRS37E1364;FRCPIE67415352;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.255949;49.258667;;;; +;;;;;;;;FRTNME09910787;WIO5B4HAFQ;Boujan-sur-Libron, Polyclinique St Privat;;Route De Fontenay-Le-Comte 85400 Les Magnils-Reigniers;;[-0.991944, 43.609892];;FRCPIE66072651;FRCPIE67408151;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.174655;49.262486;;;; +;;;;;;;;FRS37E3632;MACRGC0HBC;Le Mans, Planet Auto;;1 Rue Jean Perrin 65000 Tarbes;;[3.22644, 43.3354];;FRCPIE66072652;FRCPIE67408152;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.65079;49.260981;;;; +;;;;;;;;FRS37E1071;K9DQ5BOGXT;Roissy, Pharmacie de la gare;;42 Rue Du Moulin 51520 Saint-Martin-sur-le-Pré;;[-2.389648, 47.932087];;FRS55E134151;FRCPIE67408251;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.26321514;43.10751972;;;; +;;;;;;;;FRS41E21130;PEMGBREIMZ;Flassans sur Issole, Parking;;Allée Des Érables 71100 Sevrey;;[2.40785111, 48.89914169];;FRS55E134152;FRCPIE67408252;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.139421;43.31089191;;;; +;;;;;;;;FRIONE4489;ZZNFVRZSHY;Case-Pilote, Les Hauts de Maniba;;3 Allée Westrich 67600 Sélestat;;[2.370512, 48.898419];;FRS55E134163;FRCPIE67408351;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.03207657;48.4614;;;; +;;;;;;;;FRIONE44890;BFNM5FW7HS;La Rivière-de-Corps;;Zone Industrielle de la Gare 16700 Ruffec;;[3.255949, 43.366492];;FRS55E134164;FRCPIE67408451;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.063254;43.4503553;;;; +;;;;;;;;FRCPIE6729915;XLPLHU;Pont-à-Mousson, Port;;404 Avenue Victor Hugo 26000 Valence;;[0.174655, 47.967881];;FRCPIE66073851;FRCPIE66098052;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0518438;-21.033494;;;; +;;;;;;;;FRCPIE6531055;LDZGF5PWXI;Pont-à-Mousson, Gare;;20 Rue Roger Salengro 77270 Villeparisis;;[2.65079, 48.7963];;FRCPIE66073852;FRCPIE67408452;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.05438991;48.9159;;;; +;;;;;;;;FRCPIE6697285;T8VY7PVFBV;Pont-à-Mousson, Piscine;;Zac Du Chene Vert, 47 Rue nationale 72500 Vouvray-Sur-Loir;;[6.26321514, 43.37836832];;FRS37E1365;FRCPIE67408551;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.057466;48.21888515;;;; +;;;;;;;;FRFASE330080;JM8ETU9UBG;Pont-à-Mousson, centre des sports;;Avenue De Lahanchipia 64500 Saint-Jean-de-Luz;;[-61.139421, 14.650675];;FRS37E1366;FRCPIE67408552;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0398713;43.77025;;;; +;;;;;;;;FRFASE331020;TJ4BORJXNJ;Pont-à-Mousson, centre socio-culturel;;La Tuilerie, Route du Mans 72300 Sablé-sur-Sarthe;;[4.03207657, 48.28769415];;FRCPIE65426951;FRCPIE67408651;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.05588657;47.8454;;;; +;;;;;;;;FRCPIE6645705;LLJ2H7CNY2IO14;Pont-à-Mousson, Place Saint-Antoine;;Route De Vierzon 18230 Saint-Doulchard;;[6.063254, 48.901667];;FRCPIE65426952;FRCPIE67408652;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0706;46.01605;;;; +;;;;;;;;FRCPIE6645695;PIQJLO1TXU;Pont-à-Mousson, avenue des Etats-Unis;;Les,110 rue de L'Industrie, Rue des Vernail 69830 Saint-Georges-de-Reneins;;[6.0518438, 48.900334];;FRCPIE66075751;FRCPIE67408751;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.057684;46.11365738;;;; +;;;;;;;;FRIONE4377;U4M4GQBZCD;Pont a Mousson, PARKING BOULODROME;;Route De Limoges-Peruzet 16110 Rivières;;[6.05438991, 48.90910377];;FRCPIE66075752;FRCPIE67408752;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.05778082;45.96356828;;;; +;;;;;;;;FRIONE43770;BSE7UXMPKB;Pont a Mousson, PLACE DU PARADIS;;Péruzet, Rte de Limoges 16110 Rivières;;[6.057466, 48.9158465];;FRCPIE66076451;FRCPIE67408851;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.059093;-21.3289;;;; +;;;;;;;;FRCPIE6671585;PZOVLMKQWT;Pont a Mousson, CENTRE DES SPORTS;;Avenue de Madrazes 24200 Sarlat-la-Canéda;;[6.0398713, 48.9124041];;FRCPIE66076452;FRCPIE67408852;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.05049997;48.20786571;;;; +;;;;;;;;FRCPIE6676145;XA7W3VU7CJ;Pont a Mousson, PARKING LA POSTE;;Rue De Phalsbourg 67260 Sarre-Union;;[6.05588657, 48.90372981];;FRS37E1367;FRCPIE67410751;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.053305;48.801111;;;; +;;;;;;;;FRCPIE6724145;XTR2GOJ0TI;Pont a Mousson, PARKING PHILIPPE DE GUELDRE;;23 Rue Des Salières 17410 Saint-Martin-de-Ré;;[6.0706, 48.896979];;FRCPIE66141252;FRCPIE67410752;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5489767;47.76684383;;;; +;;;;;;;;FRFASE330490;DVSLEX3W4G;Les Allues, Parking du Villard;;615 Route De Toulouse 31470 Saint-Lys;;[6.057684, 48.89498];;FRS37E15745;FRS37E5512;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5257373;48.71133565;;;; +;;;;;;;;FRCPIE6724055;SLAMWPZJFU;Anglet, Novotel SPA;;200 Boulevard Oscar Niemeyer 40280 Saint-Pierre-du-Mont;;[6.05778082, 48.902702];;FRS28E134302;FRS37E5513;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.19375685;47.893798;;;; +;;;;;;;;FRCPIE6671685;MSJI4GKDMB;Flavigny-sur-Moselle, Rue du Doyen Jacques Parisot;;41 rue du General Leclerc 95390 Saint-Prix;;[6.059093, 48.91675];;FRS28E134317;FRCPIE67407552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.59205757;47.89256;;;; +;;;;;;;;FRCPIE6671695;RBUT3DZJBH;Senlis, Place de la Gare;;6 Avenue Des 28 Arpents 94380 Bonneuil-sur-Marne;;[6.05049997, 48.9043635];;FRS28E130523;FRCPIE67407551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.52677745;47.90074;;;; +;;;;;;;;FRIONE4021;HF3BZTMM7P;Anglet, Novotel;;15 Avenue Henri Barbusse 38300 Bourgoin-Jallieu;;[6.053305, 48.904986];;FRCPIE66605051;FRCPIE67407452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.672;47.832466;;;; +;;;;;;;;FRIONE40210;LJV43VM9LI;Ozoir la Ferrière, Mairie;;Za la Berlhotte, Route de Montagny 21200 Levernois;;[6.5489767, 45.4430808];;FRCPIE66605052;FRCPIE67407451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.428157;47.94254;;;; +;;;;;;;;FRS55E12290;I6KMX075ND;Trèbes, Chocolaterie Nougalet;;Zac des Maladieres 21200 Beaune;;[-1.5257373, 43.47749826];;FRS28E134278;FRCPIE66757451;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.081;47.905229;;;; +;;;;;;;;FRS28E17563;CX85FFNWSA;Douai, Renault;;169 Route De La Rochelle 79000 Bessines;;[6.19375685, 48.56437512];;FRS28E137351;FRCPIE66757452;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.369991039;47.905313;;;; +;;;;;;;;FRCPIE6758525;G53AI8R0G2;Châlons-en-Champagne, Boulevard Hippolyte Faure;;Avenue De La Plage 40600 Biscarrosse;;[2.59205757, 49.20641115];;FRS37E3105;FRCPIE66757651;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.170972;47.9028761;;;; +;;;;;;;;FRIENE005902;GS6LRLDFED;Cournon d'Auvergne, Eugène Renaux;;1 Avenue Victor Hugo 06400 Cannes;;[-1.52677745, 43.47698053];;FRS37E3106;FRCPIE66757652;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.957887;47.905144;;;; +;;;;;;;;FRS28E12714;T6PQZXSMTB;Epernay, Office notarial PJHB public;;Boulevard Alfred Naquet 84200 Carpentras;;[2.672, 48.7617];;FRS37E3107;FRIONE412901;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.051158;47.87808;;;; +;;;;;;;;FRCPIE6696685;GE9BBRGUJX;Pernes-Les-Fontaines, Olitom;;165 Route De Meurchin 62220 Carvin;;[2.428157, 43.205176];;FRS37E3108;FRIONE412902;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.135813;47.8867824;;;; +;;;;;;;;FRCPIE6696695;RDCHWGQR7O;Parking SUD, Amnéville;;6 Rue Paul Sabatier 71100 Chalon-sur-Saône;;[3.081, 50.3602];;FRS41E206464;FRIONE412903;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.128633;47.884736;;;; +;;;;;;;;FRCPIE6696705;MCGQW3FISF;Parking VIP, Amnéville;;Avenue Salvador Allende 29270 Carhaix-Plouguer;;[4.369991039, 48.94491689];;FRS41E206465;FRIONE412904;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.133887;47.93718;;;; +;;;;;;;;FRCPIE6696765;SVDOGAVSWH;Parking Galerie, Amnéville;;160 Rue De L'aérodrôme 79000 Niort;;[3.170972, 45.742189];;FRS41E206487;FRIONE412905;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.116171;47.9508;;;; +;;;;;;;;FRCPIE6608205;BSU6OTRKUO;PAPP, Amnéville;;Rond-Point Du Canet 13590 Meyreuil;;[3.957887, 49.045931];;FRS41E206488;FRIONE412906;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.133955;47.91192;;;; +;;;;;;;;FRCPIE6735385;ZKLMJTPPX4;Parking salle Edelweiss, Amnéville;;1 Rue Pierre Emmonot 70000 Vesoul;;[5.051158, 43.998829];;FRIONE414901;FRIONE41295;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.115187;47.86555;;;; +;;;;;;;;FRCPIE6735855;SOH2CQN127;Maison du projet, Amnéville;;84 Rue De Nuisement 28500 Vernouillet;;[6.135813, 49.241206];;FRS37E1836;FRCPIE66846651;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.142379;47.87412;;;; +;;;;;;;;FRIENE005901;RP6RJUZXHE;Parking Mairie, Amnéville;;2152 Route De L'escalet 83350 Ramatuelle;;[6.128633, 49.244048];;FRIONE414902;FRCPIE66846652;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.09934109;47.9053752;;;; +;;;;;;;;FRCPIE6509805;VFRBGTHDDU;Gruissan, Place de la Capitainerie;;22 Chemin Du Vieux Chêne 38240 Meylan;;[6.133887, 49.242705];;FRIONE414903;FRCPIE66975651;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.48251118;47.9039133;;;; +;;;;;;;;FRIONE40840;AQ1IWU1HSJ;Agde, Avenue de Sète;;20 Rue De La Mairie 62175 Boisleux-Saint-Marc;;[6.116171, 49.26076];;FRIONE414904;FRCPIE66975652;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.48279;47.88026;;;; +;;;;;;;;FRIONE4084;XR1ACRARZZ;Obernai, Place des fines herbes;;21 Rue Pierre Bérégovoy 61200 Argentan;;[6.133955, 49.258667];;FRIONE41495;FRS28E134752;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4151938;47.911473;;;; +;;;;;;;;FRCPIE6630285;PESMYK;Pezenas, Occitane Auto;;35 Route De Briey 54560 Audun-le-Roman;;[6.115187, 49.262486];;FRCPIE65415951;FRCPIE67555951;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.70402909;47.966138;;;; +;;;;;;;;FRCPIE6755645;QEVDN4ZT1R;Saint-Benoît, Centre commercial Beaulieu;;40 Rue Du Canal 76380 Canteleu;;[6.142379, 49.260981];;FRCPIE65415952;FRCPIE67555952;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33992;47.919474;;;; +;;;;;;;;FRS88E16233;VYSYWYNZTS;Saint-Denis, Groupe Neubauer;;Parc de L'Odyssee 50180 Agneaux;;[3.09934109, 43.10751972];;FRCPIE66206551;FRCPIE66762651;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.43574225;45.3585;;;; +;;;;;;;;FRS28E13906;DCQLBIKEE8;Chavelot, Rue du Pré Doué;;Boulevard de l'Europe (Parking E. Leclerc) 67210 Obernai;;[3.48251118, 43.31089191];;FRCPIE66206552;FRCPIE66762652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.03216;45.3555;;;; +;;;;;;;;FRCPIE6757325;FLFXSLPUEB;Gers Distribution, Avenue de Daniate;;501 Rue Robinson 80120 Fort-Mahon-Plage;;[7.48279, 48.4614];;FRCPIE66274251;FRCPIE66144651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.74199;48.55099453;;;; +;;;;;;;;FRCPIE6696735;IKAA3NFK9U;Nogent-sur-Vernisson, Parking Mairie;;lieu dit La Fabrique À Sucre 62450 Bapaume;;[3.4151938, 43.4503553];;FRCPIE66274252;FRCPIE66144652;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.94359;47.23003877;;;; +;;;;;;;;FRIONE43880;LM09XMN1JX;Musièges, Netto;;Avenue Du Berry 23000 Guéret;;[55.70402909, -21.033494];;FRCPIE66274451;FRCPIE66145051;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.73300206;45.3564;;;; +;;;;;;;;FRS55E6623;GVSCIPZ5TS;Saint-Jean-d'Ardières, Rue Parc Saint Jean;;Zi des Prairies, Impasse des Artisans 42700 Firminy;;[2.33992, 48.9159];;FRCPIE66274452;FRCPIE66145151;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.19265547;47.8634133;;;; +;;;;;;;;FRCPIE6672145;GCDA7HXZKI;Aubusson, Netto;;route Departementale 925 76260 Étalondes;;[6.43574225, 48.21888515];;FRCPIE66274651;FRCPIE66145152;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.4684;47.89206;;;; +;;;;;;;;FRS88E17715;IWH1A2IBF7;Saint-Pierre, Norauto;;Rue De Toubalan 29100 Douarnenez;;[-0.03216, 43.77025];;FRS37E1837;FRCPIE67407251;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.42200623;47.900234;;;; +;;;;;;;;FRS88E17716;NRRQEKQHFI;Norske Skog, Golbey;;Rue Des Riottes 28100 Dreux;;[2.74199, 47.8454];;FRCPIE66262152;FRCPIE67407252;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.80567;47.93292;;;; +;;;;;;;;FRS37E121;CKCVU0L4PL;Haguenau, Norcan Sherpa Mobile Robotics;;Rue De La Limoise 36100 Issoudun;;[5.94359, 46.01605];;FRCPIE66274751;FRIONE405302;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.36049115;47.922145;;;; +;;;;;;;;FRFASE330220;YVE4QCBHBZ;Illzach, Rue de Sausheim;;Maizieres Les, A31 Sortie Maizières-Les-Metz 57280 Hauconcourt;;[4.73300206, 46.11365738];;FRCPIE66248852;FRIONE405304;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.70760946;47.95631;;;; +;;;;;;;;FRS28E13014;PDP2V645KH;Brumath, Norma;;Avenue Georges Pompidou Zone De La Fougetteri 53200 Chateau Gontier;;[2.19265547, 45.96356828];;FRS37E2770;FRIONE440407;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.020973;47.86552972;;;; +;;;;;;;;FRIONE41370;YKHMXYULO0;Parking Cure Thermal, Amnéville;;144 Avenue Du Maréchal Foch 86100 Châtellerault;;[55.4684, -21.3289];;FRS37E2771;FRCPIE67528052;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8961;43.13459182;;;; +;;;;;;;;FRIENE006001;OJWVDULAW6;Checy, avenue Charles de Gaulle;;8 Avenue du Général de Gaulle 60360 Crèvecœur-le-Grand;;[6.42200623, 48.20786571];;FRS37E2772;FRCPIE67504051;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.90126;49.254606;;;; +;;;;;;;;FRCPIE6696745;FQ5XVNKIGI;Orléans, Jardin des Plantes;;route de, Rue de Cumières 51530 Dizy;;[7.80567, 48.801111];;FRS37E2773;FRCPIE67504052;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.968126;49.25176688;;;; +;;;;;;;;FRCPIE6696755;RZMUAPWE9V;Orléans, Parking rue Notre Dame de Recouvrance;;345 Boulevard Louis Bréguet 59500 Douai;;[7.36049115, 47.76684383];;FRS37E2782;FRS18E93955;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.81417;49.241255;;;; +;;;;;;;;FRCPIE6699795;DX98OTN73K;Saint-Cyr-En-Val, Parking rue de La Gare;;Parc d'activité Sud 57150 Creutzwald;;[7.70760946, 48.71133565];;FRS37E2783;FRS18E93956;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.910195;49.25121681;;;; +;;;;;;;;FRIENE006002;JBXZWVVFM5;Ormes, Parking Covoiturage Chemin des Plantes;;29 Rue Jean Moulin 80580 Pont-Remy;;[2.020973, 47.893798];;FRS41E2924;FRCPIE65072751;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.909853;49.237622;;;; +;;;;;;;;FRS88E17709;GSANUPSRJN;Orléans, 27 Boulevard Alexandre Martin;;Fromentel Autos 61220 Pointel;;[1.8961, 47.89256];;FRS41E2925;FRCPIE65072752;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9046868;43.13476798;;;; +;;;;;;;;FRS88E17710;ZK1N3I2E1J;Orléans, 29 Boulevard Alexandre Martin;;24 Avenue Du Bocage 85500 Les Herbiers;;[1.90126, 47.90074];;FRS41E2926;FRS41E135151;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.910526;49.22553;;;; +;;;;;;;;FRCPIE6685205;SBKBL8DGO5;Orléans, rue Adolphe Crespin;;1810 Route De Malpasset 83600 Fréjus;;[1.968126, 47.832466];;FRS41E2927;FRS41E135152;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.95514;49.225382;;;; +;;;;;;;;FRN54E18768;EIFCSLELR2;Orléans, 25 Boulevard Alexandre Martin;;rue Gutenberg, ZAC de Grand-Camp 97139 Les Abymes;;[1.81417, 47.94254];;FRS41E2928;FRS18E96889;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8339996;49.24803182;;;; +;;;;;;;;FRCPIE6711185;H5EHPPZSMJ;Saint-Denis-En-Val, Parking Place du 8 Mai 45;;Route Du Moule 97118 Pradel Saint-François;;[1.910195, 47.905229];;FRS41E2929;FRS18E96890;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.873796;49.225893;;;; +;;;;;;;;FRS88E15923;CAGYQWVCSD;La-Chapelle-Saint-Mesmin, rue Monteloup;;Boulevard De Destrellan 97122 Baie-Mahault;;[1.909853, 47.905313];;FRCPIE66248851;FRCPIE67514451;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.94856;49.217628;;;; +;;;;;;;;FRCPIE6708765;YTZVC6LZLM;Saint-Pryve-Saint-Mesmin, Parking rue de La Salle des Fêtes;;18 rue du 5 Décembre 57800 Freyming-Merlebach;;[1.9046868, 47.9028761];;FRS41E2932;FRCPIE67514452;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.87386;49.216961;;;; +;;;;;;;;FRCPIE6708785;RFKYFA0B17;Semoy, Allée Pierre de Coubertin;;ZA Lizardia 64310 Saint-Pée-sur-Nivelle;;[1.910526, 47.905144];;FRCPIE66262151;FRCPIE67528051;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.96998;49.225945;;;; +;;;;;;;;FRS28E14176;EAREAOIQCM;Saran, Parking Allée Claude Bernard;;Place Aristide Briand 25250 L'Isle-sur-le-Doubs;;[1.95514, 47.87808];;FRS41E2933;FRCPIE67528251;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.83385;45.76525364;;;; +;;;;;;;;FRS18E11231;A8RIVCHP5G;Saint-Jean-De-Braye, rue Jean Zay;;22 Rocade Georges Pompidou 25300 Pontarlier;;[1.8339996, 47.8867824];;FRS41E2935;FRS18E214304;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.046781;45.765259;;;; +;;;;;;;;FRS18E11232;JPZIUHAPOR;Saint-Hilaire-Saint-Mesmin, Place du Marché;;4 Hab la main, Fruitière 25520 Saint-Gorgon-Main;;[1.873796, 47.884736];;FRS41E2936;FRCPIE67528252;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9025136;47.07524849;;;; +;;;;;;;;FRCPIE6643385;S5JH7VHBMO;Bou, Place du Bourg;;1 rue des Marronniers 25150 Pont-de-Roide;;[1.94856, 47.93718];;FRS41E2937;FRS18E148843;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9030715;47.04568014;;;; +;;;;;;;;FRS88E16161;I7ALUF5SHC;Orléans, 84 rue Bannier;;Aéroport Strasbourg Bâtiment Blériot 67960 Entzheim;;[1.87386, 47.9508];;FRS41E2938;FRS18E148844;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.93456;45.75208481;;;; +;;;;;;;;FRS18E18199;X39YEQWXEA;Orléans, 24 rue Bannier;;24 Avenue du Président Kennedy 68100 Mulhouse;;[1.96998, 47.91192];;FRS41E2945;FRCPIE67266551;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.87737;47.916515;;;; +;;;;;;;;FRCPIE6643815;FTQ4OOHE5N;Saint-Jean-Le-Blanc, Centre Commercial Clos de l'Arche;;5 rue Aristide Briand 68460 Lutterbach;;[1.83385, 47.86555];;FRS41E2946;FRCPIE67266552;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.972238;48.912135;;;; +;;;;;;;;FRS18E18637;GRBGH8S115;Saint-Jean-De-La-Ruelle, Allée Anna Marly;;10 rue du Général de Gaulle 68400 Riedisheim;;[2.046781, 47.87412];;FRS37E2947;FRS28E129287;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.82654;45.889034;;;; +;;;;;;;;FRS18E20401;CPCFCO01CI;Chanteau, Parking des écoles;;5 Rue des 3 Rois 68100 Mulhouse;;[1.9025136, 47.9053752];;FRS37E2948;FRS18E108359;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.79546;48.89706454;;;; +;;;;;;;;FRCPIE6734595;N2ZPQBEZ5K;Ingré, Parking rue des Selliers;;10 avenue Roger Salengro 68100 Mulhouse;;[1.9030715, 47.9039133];;FRS41E2958;FRS18E108360;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.79759;43.6455718;;;; +;;;;;;;;FRS18E18635;OYDVXOV7P5;Bat 30, Osiris Labo;;Place De L Hotel De Ville 40800 Aire-sur-l'Adour;;[1.93456, 47.88026];;FRS41E2959;FRCPIE65537451;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.79658;44.1818174;;;; +;;;;;;;;FRS18E9697;QGLWSBDZQW;Bat 41c, Osiris Maintenance;;62 Rue De Sarron 40800 Aire-sur-l'Adour;;[1.87737, 47.911473];;FRCPIE66262051;FRS18E109656;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.71334804;50.12985016;;;; +;;;;;;;;FRS51E5746;CYAJRHUDL0;Bat 37, Osiris ADF et Accueil;;9 Avenue De L'europe 80200 Péronne;;[1.972238, 47.966138];;FRCPIE66262052;FRS18E109655;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.6335347;46.33485885;;;; +;;;;;;;;FRS51E5747;WQP2PREYY5;Ostwald, Mairie;;22 Rue Émile Leconte 45140 Ingré;;[1.82654, 47.919474];;FRCPIE66274652;FRS28E129928;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.79693;47.2367842;;;; +;;;;;;;;FRS18E11266;DTPOLB2LSC;Nantes, Avis Location;;Route De Marseille quartier rampelin 13080 Aix-en-Provence;;[4.79546, 45.3585];;FRCPIE66274752;FRS18E109618;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8911351;45.83580508;;;; +;;;;;;;;FRS18E11540;PWBKPDL4GY;Bat 40, Osiris Magasin;;Rue Buffon 21200 Beaune;;[4.79759, 45.3555];;FRN54E187014;FRS18E214305;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.05386;49.64119521;;;; +;;;;;;;;FRS18E11566;BCORODH6N5;Olivet, rue de L'Yvette;;15 Rue Guillaume Apollinaire 25000 Besançon;;[4.79658, 45.3585];;FRCPIE66664752;FRS18E98369;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.986572;45.5318271;;;; +;;;;;;;;FRS18E20413;Y9OMLDCVIQ;Mardie, rue de Donnery;;10 Rue Marguerite Yourcenar 21000 Dijon;;[7.71334804, 48.55099453];;FRS37E3571;FRS18E201365;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9109;47.79450475;;;; +;;;;;;;;FRS28E13449;A5TVCKW5J5;Combleux, Parking rue du Cas Rouge;;Avenue Arthur Lamendin 62800 Liévin;;[-1.6335347, 47.23003877];;FRS37E3572;FRCPIE67374151;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.010412;47.793686;;;; +;;;;;;;;FRS18E11221;RE6KFOZKSG;Fleury-Les-Aubrais, Parking du 11 Novembre;;Avenue De Verdun 40800 Aire-sur-l'Adour;;[4.79693, 45.3564];;FRCPIE67123751;FRIENE0049012;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.01551;48.2001145;;;; +;;;;;;;;FRCPIE6718575;RRLMOTRKQ4;Boigny, Rue de la commanderie;;49 Rue Félix Esclangon 38000 Grenoble;;[1.8911351, 47.8634133];;FRCPIE67123752;FRCPIE67381052;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.89790996;48.12488625;;;; +;;;;;;;;FRS18E20041;HWWPMMR63R;Marigny-Les-Usages, Parking rue du Vieux Bourg;;Zone d'activité Génipa Ducos, 97224, Martini 97224 Martinique;;[2.05386, 47.89206];;FRCPIE67123851;FRCPIE67266651;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.98951742;45.425126;;;; +;;;;;;;;FRS18E20042;B0GEOLP0UK;Olivet, rue du Général de Gaulle;;175 Rue Des Terres Aux Dames 69220 Belleville-en-Beaujolais;;[1.986572, 47.900234];;FRCPIE67123852;FRCPIE67266652;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.095098;49.15548873;;;; +;;;;;;;;FRS51E14185;ARZ7KBQW7E;La Valette-du-Var, Opel;;Place De L’Hotel De Ville 40800 Aire-sur-l'Adour;;[1.9109, 47.93292];;FRS37E3573;FRCPIE67611651;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.08759241;47.08218504;;;; +;;;;;;;;FRS88E15929;RBFHMY0D1N;Rombas, Parking Schmatt;;Place de la Poste 40800 Aire-sur-l'Adour;;[2.010412, 47.922145];;FRS37E3574;FRCPIE67611652;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.078122;44.9596;;;; +;;;;;;;;FRS88E15904;LLHRNZU6OU4U33;Rombas, Place de la République;;Place Du Général De Gaulle 40800 Aire-sur-l'Adour;;[2.01551, 47.95631];;FRS37E3578;FRS28E134823;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09338565;48.940489;;;; +;;;;;;;;FRCPIE6708995;LLIDCQ4E41W16R;Rombas, Fond Saint-Martin;;1 rue de Besançon 25300 Doubs;;[1.89790996, 47.86552972];;FRS37E3579;FRCPIE67373251;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.105362;48.765642;;;; +;;;;;;;;FRIONE46920;LLHQB3EQ7FWYJ7;Rombas, Parking Lycée Berlioz;;13 Grand Rue 25330 Amancey;;[5.98951742, 43.13459182];;FRCPIE66279851;FRCPIE67373252;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.99012892;47.47545122;;;; +;;;;;;;;FRIONE4692;FBTYPI8YWW;Rombas, Place de l’hôtel de ville;;Salle des Fêtes 25230 Dasle;;[6.095098, 49.254606];;FRCPIE66279852;FRCPIE67373451;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.103962;44.40991852;;;; +;;;;;;;;FRS88E16173;THJYJFR6JY;Rombas, Parking Hangar;;9 Rue des Fossés 25440 Quingey;;[6.08759241, 49.25176688];;FRCPIE66664751;FRCPIE67373452;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.992456;48.64571592;;;; +;;;;;;;;FRS88E16163;JIPTIDSXGP;La Valette-du-Var, Fiat - Alfa;;Rue du Bois de l'Oie 25300 Arçon;;[6.078122, 49.241255];;FRCPIE66288851;FRCPIE67373751;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.13890704;49.30662926;;;; +;;;;;;;;FRIENE009302;PTGFUYTSHN;Parking Mairie, Pierrevillers;;Saint Hippolyte, Esplanade des fêtes 25190 Saint Hippolyte;;[6.09338565, 49.25121681];;FRS37E3569;FRCPIE67373752;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.982398;47.94408873;;;; +;;;;;;;;FRS18E11272;HSC6UVAWYO;Parking Mairie, Homecourt;;8 rue de la Rochette 25160 Saint-Point-Lac;;[6.105362, 49.237622];;FRCPIE66288852;FRCPIE67374152;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.999234;50.52631526;;;; +;;;;;;;;FRS18E14015;PYLGWD;Parking Est, Avenue de l'Europe;;33 rue Clément Marot 25000 Besançon;;[5.99012892, 43.13476798];;FRS41E3717;FRS18E98368;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.057693;47.4360704;;;; +;;;;;;;;FRS18E18238;AYKGDM;Parking collège Amilcar, Homecourt;;Etalans, Grande Rue 25580 Etalans;;[6.103962, 49.22553];;FRS41E3718;FRIONE460601;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.100422;48.95405795;;;; +;;;;;;;;FRS18E14392;GVLLPF2MXK;Homecourt, Gare Homécourt;;Autechaux - ZA EUROPOLYS 25110 Autechaux;;[5.992456, 49.225382];;FRCPIE66291751;FRIONE460602;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1361313;48.42879477;;;; +;;;;;;;;FRS18E11271;KWCFZHSDUU;Malancourt la Montagne, Parking Salle des fêtes;;15 rue de Beaulieu 25350 Mandeure;;[6.13890704, 49.24803182];;FRCPIE66291752;FRIONE460603;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.135937;42.44829656;;;; +;;;;;;;;FRIENE004101;MEDKZN;Parking Salle des fêtes, Pierrevillers;;8 Rue d'Étain 25500 Morteau;;[5.982398, 49.225893];;FRCPIE66010551;FRIONE460604;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.8366292;46.46429151;;;; +;;;;;;;;FRIENE004102;TM6PKDLX7M;Clermont-Ferrand, Openium;;1B rue du Crêt 25650 Gilley;;[5.999234, 49.217628];;FRCPIE66010552;FRIONE46065;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.87623698;48.6986;;;; +;;;;;;;;FRS88E15927;ESR34INWKW;Centre Commercial l'Autre Faubourg, Cholet;;2 rue Louis Pergaud 25300 Pontarlier;;[6.057693, 49.216961];;FRCPIE66010651;FRCPIE66820451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.65052128;49.72609867;;;; +;;;;;;;;FRIENE009301;X6DOW05MMB;Centre Commercial Village, Cholet;;Place Gustave Courbet 25290 Ornans;;[6.100422, 49.225945];;FRCPIE66010652;FRCPIE66820452;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.903664;49.7261819;;;; +;;;;;;;;FRS18E19642;HVUHMZ;Saintes, Orion immobilier;;Rue des Martinets 25290 Ornans;;[3.1361313, 45.76525364];;FRCPIE66010751;FRCPIE67266051;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.212125;46.46420899;;;; +;;;;;;;;FRSHEE44;STEZAD;Orléans Motors, 12 rue Molière;;Place Droz Bartholet 25480 Villers-le-Lac;;[3.135937, 45.765259];;FRCPIE66010752;FRCPIE67266052;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.07402;47.403165;;;; +;;;;;;;;FRSHEE45;K3T4LY2OWV;Nanterre, Rue des Peupliers;;1 rue du Four 25580 Hautepierre-le-Châtelet;;[-0.8366292, 47.07524849];;FRCPIE66059751;FRCPIE67361251;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.37998112;47.09754279;;;; +;;;;;;;;FRS18E14875;FI7ROKDWGQ;Mozac, Avenue Jean Jaurès;;21 rue de la Gare 25560 Frasne;;[-0.87623698, 47.04568014];;FRCPIE66059752;FRCPIE67361252;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.42513259;47.70646222;;;; +;;;;;;;;FRS28E13001;UYBK6R4NSB;Paris, Flandre ext.;;7 rue des Ecoles 25160 Oye-et-Pallet;;[-0.65052128, 45.75208481];;FRS37E3570;FRCPIE67362151;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.67113874;48.19529571;;;; +;;;;;;;;FRS18E18623;UFUSXC;E.Leclerc, Capbreton;;4 rue du Val 25510 Pierrefontaine-les-Varans;;[1.903664, 47.916515];;FRS37E3567;FRCPIE67362152;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.42826847;47.18261187;;;; +;;;;;;;;FRS18E9861;TDVHUEWOGS;E.Leclerc, Castelculier;;6 route de Rans 25610 Arc-et-Senans;;[2.212125, 48.912135];;FRCPIE66274951;FRS18E109617;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4145895;49.03762432;;;; +;;;;;;;;FRS18E15342;FAONUN3BFI;E.Leclerc, Caudry;;26 Grand Rue 25580 Nods;;[3.07402, 45.889034];;FRCPIE66010251;FRS18E201364;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.72378857;49.07614302;;;; +;;;;;;;;FRS28E13480;PVB2J2HEHR;E.Leclerc, Centre Auto Niort Mendes;;1 Allée Des Sapins 25380 Belleherbe;;[2.37998112, 48.89706454];;FRCPIE66274952;FRIONE405305;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.13143985;48.25104791;;;; +;;;;;;;;FRCPIE6649255;KZMP18EEAU;E.Leclerc, Chemillé;;4 impasse de la Mairie 25400 Audincourt;;[-1.42513259, 43.6455718];;FRCPIE66275251;FRIONE410305;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.27879131;46.83499718;;;; +;;;;;;;;FRS18E21451;TEKGN2NYYP;E.Leclerc, Brico Bourcefranc;;13 Avenue de la Gare 25500 Morteau;;[0.67113874, 44.1818174];;FRCPIE66275252;FRCPIE67367052;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.28205855;49.00859509;;;; +;;;;;;;;FRSHEE43;GMKXTSAABQ;E. Leclerc, Breteuil;;12 Grand Rue 25430 Sancey-le-Grand;;[3.42826847, 50.12985016];;FRCPIE66275951;FRCPIE67367051;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.16551303;47.01083247;;;; +;;;;;;;;FRCPIE6593725;L5VJA9PLOF;E.Leclerc, Brico Andrézieux-Bouthéon;;32B rue de la Varée 25240 Mouthe;;[-0.4145895, 46.33485885];;FRCPIE66275952;FRCPIE67364852;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.168861;45.04544248;;;; +;;;;;;;;FRCPIE6643025;OTIU7I3VVW;E. Leclerc, Cernay Parking;;7 Rue du Val Saugeais 25650 Montbenoit;;[-0.72378857, 47.2367842];;FRS37E3557;FRCPIE67364851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.08726284;44.64292431;;;; +;;;;;;;;FRS18E14679;OZNIDWLXDO;E.Leclerc Cernay SAV;;Ecole 25170 Lantenne Vertière;;[-1.13143985, 45.83580508];;FRS37E3558;FRS18E207176;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.15069214;48.398951;;;; +;;;;;;;;FRS28E13902;PIY0KLXO2X;E.Leclerc, Chateaulin;;16 rue des Fourches 25530 Vercel-Villedieu;;[2.27879131, 49.64119521];;FRS37E3559;FRS18E207175;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.740703;48.40887156;;;; +;;;;;;;;FRS55E6644;LSMJ9I3RMS;E.Leclerc, Chaumont;;avenue des pyrénées 32420 Simorre;;[4.28205855, 45.5318271];;FRS37E3560;FRS18E188337;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.25665585;49.91268377;;;; +;;;;;;;;FRIONE40370;RHN6Y2IMIA;E.Leclerc, Chavanay;;Rue des Pyrénées 32400 Riscle;;[7.16551303, 47.79450475];;FRS37E3561;FRS18E188336;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.38717162;48.9298;;;; +;;;;;;;;FRIONE4037;HUO4UYLRZ6;E.Leclerc, Chambly;;Boulevard du Nord 32360 Jegun;;[7.168861, 47.793686];;FRS37E3562;FRS37E16754;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.88157;48.18844301;;;; +;;;;;;;;FRS28E13024;EXGSD0N3H2;E.Leclerc Cernay, parking salariés;;Parking piscine (RN124) 32200 Gimont;;[-4.08726284, 48.2001145];;FRS37E3563;FRS18E207812;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.445372;48.65391331;;;; +;;;;;;;;FRS18E21452;J0TOR4JKAG;E. Leclerc, Bourges / Le Prado;;Parking Le Bastion, Place Descamps 32700 Lectoure;;[5.15069214, 48.12488625];;FRS37E3564;FRS18E207811;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.488827;44.11759832;;;; +;;;;;;;;FRIENE009201;KF35TDNN0J;E.Leclerc, Bourg-les-Valence;;Rue de Rochefort 32800 Eauze;;[4.740703, 45.425126];;FRCPIE66010252;FRIONE41035;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.75343753;47.40421428;;;; +;;;;;;;;FRCPIE6643015;GII6F3OBUX;E.Leclerc, Blanc-Mesnil;;Rue Jean-Jaurès 32100 Condom;;[2.25665585, 49.15548873];;FRIENE0082024;FRIONE410306;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.16893921;48.86253975;;;; +;;;;;;;;FRS08E4644;W8NSPQCMF8;E. Leclerc, Bonneuil-sur-Marne hyper;;Avenue Pierre de Coubertin 32500 Fleurance;;[2.38717162, 47.08218504];;FRCPIE66010351;FRIONE410303;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.45208043;47.483878;;;; +;;;;;;;;FRS08E4646;LCZEGSP1N1;E.Leclerc, Blaindis;;Rue de la Plaine et du 19 Mars 32700 Sainte-Mère;;[4.88157, 44.9596];;FRCPIE66010352;FRCPIE67367852;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.11928029;49.612418;;;; +;;;;;;;;FRS51E11242;WG8RNRAOA1;E.Leclerc, Biscarrosse Hyper;;Place Saint Bernard 32600 L'Isle Jourdain;;[2.445372, 48.940489];;FRCPIE66010451;FRIONE410302;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.91940238;48.64595371;;;; +;;;;;;;;FRS51E11243;LLJWOR2WQJIQ3M;E. Leclerc, Wasselonne Parking Restaurant;;Au Village 32140 Chelan;;[2.488827, 48.765642];;FRCPIE66010452;FRS41E117722;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.62805264;45.746572;;;; +;;;;;;;;FRIONE41760;AERRQIG8TN;E.Leclerc, Fameck;;Rue Fermanville 32330 Gondrin;;[-1.75343753, 47.47545122];;FRCPIE66059851;FRS41E117721;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.07824542;49.2848;;;; +;;;;;;;;FRIONE4176;XNENEJQFNF;E.Leclerc, Fleury-les-Aubrais;;Zone Artisanale La Balorais 53410 Saint-Pierre-la-Cour;;[-1.16893921, 44.40991852];;FRCPIE66059852;FRS18E181473;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33390795;48.98947576;;;; +;;;;;;;;FRIENE003701;WTDGKNH6AA;E.Leclerc, Etaples;;Place du Colonel Parisot 32290 Aignan;;[7.45208043, 48.64571592];;FRCPIE66060251;FRS18E181472;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.65832098;48.41155645;;;; +;;;;;;;;FRIENE003702;NWJ7TJ2XQR;E.Leclerc, Drive Pontchâteau;;310 Rue Morane Saunier 37210 Parçay-Meslay;;[6.11928029, 49.30662926];;FRCPIE66060252;FRCPIE66378952;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.5057343;42.66602431;;;; +;;;;;;;;FRS08E4643;RJDZKR;E.Leclerc, Epinay-sur-Seine;;187 Route Du Grand Arc 73800 Coise-Saint-Jean-Pied-Gauthier;;[1.91940238, 47.94408873];;FRS37E3565;FRCPIE66378951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.82106973;50.365493;;;; +;;;;;;;;FRSHEE33;HDQRXKN1N0;E.Leclerc, Erstein;;quartier du château 32140 Saint-Blancard;;[1.62805264, 50.52631526];;FRS37E3566;FRCPIE66378852;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.88858;44.83617327;;;; +;;;;;;;;FRIENE009202;AKXCVB;E.Leclerc, Folelli;;Place Denfert-Rochereau 32000 Auch;;[-2.07824542, 47.4360704];;FRIENE0082011;FRCPIE66378851;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.36551805;44.92429655;;;; +;;;;;;;;FRS28E13054;FBYYXG;E.Leclerc, Fontenay Le Comte;;Parking Cimetière 32120 Labrihe;;[2.33390795, 48.95405795];;FRIENE0082012;FRCPIE66345052;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.36467022;43.50467849;;;; +;;;;;;;;FRSHEE32;SRXQZC;E.Leclerc, Fontenay-Tresigny;;Place Paul Noulens 32300 Mirande;;[7.65832098, 48.42879477];;FRIENE0082023;FRCPIE66345051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.82252126;50.19839846;;;; +;;;;;;;;FRCPIE6708745;FVCJPT;E.Leclerc, Fécamp Saint-Léonard;;Place du Foirail 32340 Miradoux;;[9.5057343, 42.44829656];;FRCPIE66236352;FRS18E182395;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.605439;50.48283163;;;; +;;;;;;;;FRCPIE6647205;XSCWYL;E.Leclerc, Fécamp Saint-Léonard 2;;Route du Calvaire 32490 Monferran-Savès;;[-0.82106973, 46.46429151];;FRCPIE66236351;FRS18E182394;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.28119602;44.59720568;;;; +;;;;;;;;FRCPIE6676785;MPQTMN;E.Leclerc, Fondettes;;Place Maréchal Lannes 32000 Auch;;[2.88858, 48.6986];;FRS37E2699;FRCPIE67367851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.38766148;50.198508;;;; +;;;;;;;;FRCPIE6547545;VCJWZZ6OLJ;E.Leclerc, Clisson;;Place de la Mairie 32230 Marciac;;[0.36551805, 49.72609867];;FRS37E1688;FRS18E206001;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.8195264;50.48235716;;;; +;;;;;;;;FRFASE331000;WMESPU;E.Leclerc, Châteaubriant;;Parking de l'Office du tourisme 32150 Cazaubon;;[0.36467022, 49.7261819];;FRCPIE66238552;FRCPIE66099352;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.26441649;48.31750806;;;; +;;;;;;;;FRCPIE6644635;ZTZRSG;E.Leclerc, Châteauneuf-du-Faou;;Place Carnot (Rue de l'Eglise) 32260 Seissan;;[-0.82252126, 46.46420899];;FRCPIE66238651;FRS18E150933;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.39134625;48.75647905;;;; +;;;;;;;;FRCPIE6699895;EQOI2FVJKI;E.Leclerc, Chinon;;Parking chemin de ronde 32430 Cologne;;[0.605439, 47.403165];;FRCPIE66238652;FRCPIE66099351;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.64296856;48.23802276;;;; +;;;;;;;;FRS28E13733;BTEAKY;E.Leclerc, Château-Thierry;;Rue Masséna 32000 Auch;;[-1.28119602, 47.09754279];;FRS37E16553;FRCPIE66095452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.47203872;47.79731994;;;; +;;;;;;;;FRCPIE6690455;TXYSYT;E.Leclerc, Dormans;;Place Mahomme 32190 Vic-Fezensac;;[-1.38766148, 47.70646222];;FRS37E16554;FRCPIE66095451;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.46957587;47.85978662;;;; +;;;;;;;;FRS18E10468;NZ5AHMP1BV;E.Leclerc, Crozon;;Boulevard du Nord 32310 Valence-sur-Baïse;;[-3.8195264, 48.19529571];;FRCPIE66814851;FRS18E147513;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.08536519;48.88284716;;;; +;;;;;;;;FRS18E9596;ITBF0WI799;E.Leclerc, Decize;;Allée des arts 32000 Auch;;[0.26441649, 47.18261187];;FRCPIE66814852;FRS18E147512;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.17782179;48.36969308;;;; +;;;;;;;;FRS88E16184;UDZHMM2BS3;E.Leclerc, Conflans-Sainte-Honorine;;6 Place des Cordeliers 32130 Samatan;;[3.39134625, 49.03762432];;FRCPIE66815051;FRS18E205372;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.12198064;49.73437363;;;; +;;;;;;;;FRS18E10472;MJDWGUEGAV;E.Leclerc, Coulange-lès-Nevers;;Rue Pierre Primi 32170 Miélan;;[3.64296856, 49.07614302];;FRCPIE66815052;FRS28E130987;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.95592362;49.64795518;;;; +;;;;;;;;FRCPIE6644555;MHD8X0KU4L;E.Leclerc, Coutras;;Parking village 32320 Montesquiou;;[-4.47203872, 48.25104791];;FRS37E16781;FRS18E109051;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.088952;45.82316068;;;; +;;;;;;;;FRCPIE6644565;AKAQHLZXWE;E.Leclerc, Biganos;;Place Du Foirail 32120 Mauvezin;;[3.46957587, 46.83499718];;FRS37E16782;FRS18E109050;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.08745032;49.6477769;;;; +;;;;;;;;FRCPIE6699285;EWHDONWUTE;E.Leclerc, Alençon Arconnay;;Parking stade 32220 Lombez;;[2.08536519, 49.00859509];;FRCPIE66196751;FRS41E2957;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33766291;44.61754174;;;; +;;;;;;;;FRIONE4334;LLIK0JOAC1WRD4;E.Leclerc Rivery;;Place de la Garlande 32720 Barcelonne du Gers;;[3.17782179, 47.01083247];;FRCPIE66196752;FRS41E2956;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.89812;44.48583474;;;; +;;;;;;;;FRS28E13477;LLIK018BS1Z3O4;Soultz-sous-Forêts, E.Leclerc;;3 Rue De Oziers 95310 Saint-Ouen-l'Aumône;;[-0.12198064, 45.04544248];;FRS37E1689;FRS37E117836;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.88167512;46.68264;;;; +;;;;;;;;FRIONE4137;LLIK0B6WE2A0C7;E.Leclerc, Contrexéville Public;;Zac De Montjay 95500 Bonneuil-en-France;;[-0.95592362, 44.64292431];;FRCPIE66238452;FRS37E117827;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.17732201;46.33838782;;;; +;;;;;;;;FRCPIE6638625;SSHMQIUI0C;E.Leclerc, Vandoeuvre-lès-Nancy;;19 Grande Rue 88270 Velotte-et-Tatignécourt;;[0.088952, 48.398951];;FRS37E1690;FRS18E150932;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.10758935;50.47633241;;;; +;;;;;;;;FRS88E17726;LLI8Y38FP1V7L9;E.Leclerc, Alès;;42 Rue Denis Papin 03100 Montluçon;;[0.08745032, 48.40887156];;FRS37E1702;FRS18E206002;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.01657703;48.3298175;;;; +;;;;;;;;FRCPIE6638635;LLJ5IARA3AQQZE;E.Leclerc, Amboise;;50 rue Savary de l'Epineray 85000 La Roche-sur-Yon;;[2.33766291, 49.91268377];;FRS37E15618;FRS18E179308;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.45767958;49.06052439;;;; +;;;;;;;;FRIONE43340;IU1FUKZ0FE;E.Leclerc, Anet;;Chemin De Pennecière 88500 Poussay;;[7.89812, 48.9298];;FRS37E1691;FRS18E179307;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.575379;46.3375545;;;; +;;;;;;;;FRIONE4026;WKEA7ULFM6;E.Leclerc, Angers;;03 Rue Des Calaubys 03380 Huriel;;[5.88167512, 48.18844301];;FRS37E1693;FRS18E113071;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.774255;43.28039009;;;; +;;;;;;;;FRCPIE6644645;D19TOD1FRC;E. Leclerc, Yvetot;;73 Allée De La Girane 83190 Ollioules;;[6.17732201, 48.65391331];;FRS37E1695;FRS18E113070;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.45423361;44.516744;;;; +;;;;;;;;FRS28E13419;YPZPZO41JG;E. Leclerc, Wasselonne Parking Magasin;;Chemin De La Baume 83690 Salernes;;[4.10758935, 44.11759832];;FRS37E1694;FRCPIE67363952;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.145051;43.41121455;;;; +;;;;;;;;FRS18E11253;A4ZETSZ9FZ;E.Leclerc Express, Charvieu-Chavagneux;;Avenue Du Midour 32110 Nogaro;;[1.01657703, 47.40421428];;FRS37E1706;FRCPIE67363951;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8222;48.93710762;;;; +;;;;;;;;FRIENE002801;PDEDWPUBBC;Jonchery, E.Leclerc;;586 Chemin Des Martins 26120 Chabeuil;;[1.45767958, 48.86253975];;FRS37E1696;FRCPIE67363552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.43076228;47.2802;;;; +;;;;;;;;FRIENE002802;LLIK0MKQP2KRJB;E.Leclerc, Gonesse;;18 Avenue Des Carreaux 49480 Verrières-en-Anjou;;[-0.575379, 47.483878];;FRS37E1697;FRCPIE67363551;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.46312491;48.95876899;;;; +;;;;;;;;FRS88E17742;RZMEWGYXIY;E.Leclerc, Barjouville;;2 Rue De Saint-Malo 35430 Saint-Jouan-des-Guérets;;[0.774255, 49.612418];;FRCPIE66200051;FRCPIE67363252;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.44111853;44.20556967;;;; +;;;;;;;;FRS28E13944;G7WRYXX7TU;E.Leclerc, Bastia;;27 Route Mestre Marty 47310 Estillac;;[7.45423361, 48.64595371];;FRCPIE66200052;FRCPIE67363251;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.43088091;48.9573293;;;; +;;;;;;;;FRS18E11788;AKZKLJ5ISV;E.Leclerc, Bellaing;;1 Rue De La Hardt 67110 Gundershoffen;;[5.145051, 45.746572];;FRS37E1700;FRS28E134417;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.4461115;48.38331171;;;; +;;;;;;;;FRCPIE6651395;TRCBSB;E.Leclerc, Bergerac;;12 Rue Donnet Zedel 25300 Pontarlier;;[3.8222, 49.2848];;FRCPIE66238551;FRS18E203096;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.84331096;47.90055518;;;; +;;;;;;;;FRIONE43230;HRWXYL;E.Leclerc, Biars-sur-Cère;;15 Boulevard Frédéric Mistral 30400 Villeneuve-lès-Avignon;;[2.43076228, 48.98947576];;FRCPIE66238451;FRS18E203095;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.44558967;47.9004567;;;; +;;;;;;;;FRS18E9777;G7D91ZNMHR;E.Leclerc, Bayonne Nord;;68 Rue De France 6820 Florenville;;[1.46312491, 48.41155645];;FRS37E2698;FRCPIE67367652;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.84147316;47.89907447;;;; +;;;;;;;;FRS18E20095;GDFCGE3FAO;E.Leclerc, Aulnoye-Aymeries;;2 Rue Principale 67170 Mittelschaeffolsheim;;[9.44111853, 42.66602431];;FRIENE0071023;FRCPIE67367651;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.75531417;47.93877206;;;; +;;;;;;;;FRIONE4323;KM8GM7ATSN;E. Leclerc, Attin parking collaborateur;;1 Allée Des 4 Chemins 83130 La Garde;;[3.43088091, 50.365493];;FRN54E187015;FRCPIE67364652;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3816455;48.49861058;;;; +;;;;;;;;FRS18E9849;GFBWLWVA0T;E.Leclerc, Aubenas;;67 Route Nationale 14 27420 Richeville 27420 Richeville;;[0.4461115, 44.83617327];;FRCPIE66153251;FRS41E2955;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8417437;48.58220745;;;; +;;;;;;;;FRIENE006801;K7EP7K1IOK;E.Leclerc, Attin;;Rue Jean Bertin 45770 Saran;;[1.84331096, 44.92429655];;Non concerné;FRIONE402804;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.75765321;-21.21755;;;; +;;;;;;;;FRIENE006802;V29FRQK8HC;E.Leclerc Angerville;;48 Route Principale Du Port 92230 Gennevilliers;;[-1.44558967, 43.50467849];;FRS37E1581;FRIONE40285;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.99961078;48.17635366;;;; +;;;;;;;;FRCPIE6727095;YL7CVNYH6R;E.Leclerc, Bar-le-Duc;;5550 Voie des Hérons 76430 Saint-Vigor-d'Ymon;;[3.84147316, 50.19839846];;FRS37E1582;FRIENE0079011;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.19355476;48.53579815;;;; +;;;;;;;;FRFASE331030;YCQGXG;E.Leclerc, Bar-sur-Aube;;06 Rue De La Mare À Blot 91220 Le Plessis-Pâté;;[1.75531417, 50.48283163];;FRCPIE66519551;FRIENE0079012;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.70271636;46.56548395;;;; +;;;;;;;;FRIENE003802;ZCDWN9EH7O;E.Leclerc, Auxerre;;14 Rue Jean Monnet 94450 Limeil-Brévannes;;[4.3816455, 44.59720568];;FRCPIE66519552;FRIENE0079023;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.58004253;44.82527227;;;; +;;;;;;;;FRIENE003801;LLIK03NULU8FL0;E.Leclerc, Bain-de-Bretagne;;7 Route Des Mercières 92230 Gennevilliers;;[3.8417437, 50.198508];;FRCPIE66519651;FRIENE0079024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.68989667;49.06580986;;;; +;;;;;;;;FRCPIE6727115;LLIK06Y5F130FX;E.Leclerc, Nanterre;;de Corcy (Parking Mairie) 80400 Ham;;[1.75765321, 50.48235716];;FRCPIE66519652;FRS28E134175;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.20428736;48.12114958;;;; +;;;;;;;;FRCPIE6727105;GNRTPG;E.Leclerc, Neufchâteau;;Jeanne d'Arc 80190 Nesle;;[1.99961078, 48.31750806];;FRS28E200578;FRCPIE67420351;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.70409613;48.7419096;;;; +;;;;;;;;FRN54E18739;QFAGQX;E.Leclerc, Neufchâtel-en-Bray;;Rue du Long Champ 80880 Saint-Quentin-la-Motte;;[5.19355476, 48.75647905];;FRIENE0071011;FRS41E3803;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.43276288;44.81050006;;;; +;;;;;;;;FRIENE003001;FOVDPBDHHG;E.Leclerc, Montdidier;;31 rue Henri Barbusse 80330 Cagny;;[4.70271636, 48.23802276];;FRIENE0071012;FRS41E3804;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.58079788;46.64877332;;;; +;;;;;;;;FRIENE004602;C2YSEV8CCC;E.Leclerc, Marennes;;26 place Longueville 80000 Amiens;;[3.58004253, 47.79731994];;FRIENE0071024;FRCPIE67420551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.10322397;47.10985352;;;; +;;;;;;;;FRIONE44070;V1GZIHEXMU;E.Leclerc, Montdidier Drive;;9 rue Charles Dufour 80640 Hornoy-le-Bourg;;[-1.68989667, 47.85978662];;FRCPIE66186952;FRCPIE67420552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.58967133;49.84268062;;;; +;;;;;;;;FRIENE004601;TBJUNGUIF2;E.Leclerc, Mios;;66 boulevard Garibaldi 80000 Amiens;;[2.20428736, 48.88284716];;FRS28E130758;FRS41E2954;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.91944853;47.45070608;;;; +;;;;;;;;FRIENE005202;XCLLB815FO;E.Leclerc, Montayral Hypermarché;;1 rue Sadi Carnot 80250 Ailly-sur-Noye;;[5.70409613, 48.36969308];;FRCPIE67277451;FRS28E134208;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.978028;50.36434323;;;; +;;;;;;;;FRIENE005201;UZJ5NXUIFE;E. Leclerc, Montceau-les-Mines parking location;;de Strasbourg 80420 Flixecourt;;[1.43276288, 49.73437363];;FRCPIE67277452;FRIONE402802;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.372855;48.55487429;;;; +;;;;;;;;FRIENE003002;KUIQPXVEI6;E.Leclerc, Niort Station A hyper;;Place du 53e RICMS 80270 Airaines;;[2.58079788, 49.64795518];;FRCPIE67277551;FRS41E167612;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.41059155;49.91226323;;;; +;;;;;;;;FRCPIE6727085;K7CVN4VCEE;E.Leclerc, Noeux-les-Mines;;14 rue Carnot 80610 Saint-Ouen;;[-1.10322397, 45.82316068];;FRCPIE67277552;FRS41E167613;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.67904098;48.57543588;;;; +;;;;;;;;FRIONE45451;LRNQPLHRUT;E.Leclerc, Nogent-le-Rotrou;;1 Rue du Château 80420 Flixecourt;;[2.58967133, 49.6477769];;FRS28E137395;FRS28E129289;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.83145571;48.57633739;;;; +;;;;;;;;FRIONE45450;OFKONKTICM;E.Leclerc, Normanville;;de Mesmy 80131 Harbonnières;;[-0.91944853, 44.61754174];;FRS37E1643;FRS28E137348;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.17138856;43.15138995;;;; +;;;;;;;;FRIONE4099;QHY100AFB8;E.Leclerc, Niort Station B Location;;531 Place Tassigny 80120 Fort-Mahon;;[0.978028, 44.48583474];;FRS37E1648;FRIENE0056011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.40923015;45.45249078;;;; +;;;;;;;;FRIONE40990;AI1UC0OYPF;E.Leclerc, Mazères-Lezons;;61 Grande Rue 80200 Mesnil-Bruntel;;[4.372855, 46.68264];;FRS37E1644;FRIENE0056012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.36077988;47.90261331;;;; +;;;;;;;;FRFASE331080;IMWA3KE6RA;E.Leclerc, Mazères Brico;;Place de l'Eglise 80540 Molliens-Dreuil;;[-0.41059155, 46.33838782];;FRS37E1645;FRIENE0056023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.238647;48.43078542;;;; +;;;;;;;;FRIONE40870;I9DZEK2CZD;E.Leclerc, Marignane;;2-4 Place du Général Leclerc 80240 Roisel;;[2.67904098, 50.47633241];;FRS37E1646;FRIENE0056024;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.20923656;48.43073859;;;; +;;;;;;;;FRCPIE6690045;L77RJKJRRN;E.Leclerc, Mareuil-les-Meaux;;28 place du Friez 80120 Vron;;[0.83145571, 48.3298175];;FRS37E1647;FRIONE451601;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.87814407;45.98354035;;;; +;;;;;;;;FRCPIE6689415;GG6FVWF3A4;E.Leclerc, Marsannay-la-Côte;;Place du Beffroi 80120 Rue;;[1.17138856, 49.06052439];;FRCPIE66186951;FRIONE451602;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.02025;43.65040657;;;; +;;;;;;;;FRIONE4087;X5M7HY9MD8;E.Leclerc, Meaux;;Jean Vadicocq 80550 Le Crotoy;;[-0.40923015, 46.3375545];;FRS37E1704;FRIONE451603;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.91594919;44.78683159;;;; +;;;;;;;;FRIONE4545;D4G0UBMWRI;E.Leclerc, Mimizan;;1 Ruelle des Jardins 01210 Ferney-Voltaire;;[-0.36077988, 43.28039009];;FRS37E1701;FRIONE402803;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.22077205;48.43008916;;;; +;;;;;;;;FRIONE10140;NN6JD7ESLV;E.Leclerc, Drive Meaux;;Avenue Voltaire 01210 Ferney-Voltaire;;[-0.238647, 44.516744];;FRS37E1703;FRIONE402801;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.91854355;48.399504;;;; +;;;;;;;;FRIONE4407;IRE24WVTIF;E.Leclerc, Plougastel;;14 rue de la 1ère Armée 68740 Fessenheim;;[5.20923656, 43.41121455];;FRS37E2580;FRCPIE67364651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.34803255;45.780771;;;; +;;;;;;;;FRCPIE6714275;XBBL8M94QY;E.Leclerc, Pleuven Hyper;;28 RUE ETTORE BUGATTI 34070 Montpellier;;[2.87814407, 48.93710762];;FRS37E1842;FRFASE3302803;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.02973957;49.51315177;;;; +;;;;;;;;FRIONE45410;HMFZKUWKMH;E.Leclerc, Pleuven;;RUE JOHN MAC ADAM 30900 Nîmes;;[5.02025, 47.2802];;FRS37E1843;FRIONE40535;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.02938061;46.80530308;;;; +;;;;;;;;FRS88E18403;EIIHBFT9VM;E.Leclerc, Pleuven Retail;;7 RUE DEMOGE 11100 NARBONNE 11100 Narbonne;;[2.91594919, 48.95876899];;FRCPIE66219251;FRCPIE67126451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.02284172;48.05367287;;;; +;;;;;;;;FRIENE004802;A6P6NQCN8U;E.Leclerc, Ploermel;;81 RUE MAX JACOB 34500 Béziers;;[-1.22077205, 44.20556967];;FRCPIE66219252;FRCPIE67126452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.40592341;47.83245411;;;; +;;;;;;;;FRIENE004801;EMJUWDE2ZC;E.Leclerc, Ploufragan;;72 CHEMIN DU MAS DE LA BEDOSSE 30100 Ales;;[2.91854355, 48.9573293];;FRS37E2572;FRCPIE66543051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.77855612;46.63950321;;;; +;;;;;;;;FRCPIE6739225;EK78LCBFCD;E.Leclerc, Pleneuf Val André;;52 Avenue des Sports 01210 Ferney-Voltaire;;[-4.34803255, 48.38331171];;FRS37E2573;FRCPIE66543052;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.5346073;46.85754993;;;; +;;;;;;;;FRCPIE6714285;ZUUVO0OEOL;E.Leclerc, Piton-Saint-Leu;;14 Rue Édouard Branly 51500 Taissy;;[-4.02973957, 47.90055518];;FRS37E2575;FRSHEE791;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.30127614;43.07297112;;;; +;;;;;;;;FRIONE45411;X64IY5FMOZ;E.Leclerc, Pleumeleuc;;Place du Jeu de Battoir 80100 St-Valery-sur-Somme;;[-4.02938061, 47.9004567];;FRS37E2774;FRSHEE792;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.91751857;49.14339336;;;; +;;;;;;;;FRCPIE6642605;LARNQAMRTO;E.Leclerc, Plérin;;10 Rue Pierre-Gilles De Gennes 76150 Saint-Jean-du-Cardonnay;;[-4.02284172, 47.89907447];;FRS37E2576;FRSHEE801;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.7611361;50.44629974;;;; +;;;;;;;;FRCPIE6645895;T1YNAOAES4;E.Leclerc, Poitiers;;189 Chemin Du Bas Bourg 42310 Le Crozet;;[-2.40592341, 47.93877206];;FRS37E2593;FRSHEE802;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.35404564;49.14671702;;;; +;;;;;;;;FRCPIE6642625;TJYKIGXR01;E.Leclerc, Pineuilh;;2 Rue Du Pressoir 55400 Châtillon-sous-les-Côtes;;[-2.77855612, 48.49861058];;FRS37E2577;FRSHEE803;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.22571194;50.36551557;;;; +;;;;;;;;FRCPIE6642615;WWZYVJR2EY;E.Leclerc, Osny;;1 Allee Rene Cassin 57380 Faulquemont;;[-2.5346073, 48.58220745];;FRS37E2578;FRSHEE804;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0886487;45.28977905;;;; +;;;;;;;;FRCPIE6642565;PR1JKSCDLC;E.Leclerc, Noyal-sur-Vilaine;;755 rue Jean Monnet 57380 Faulquemont;;[55.30127614, -21.21755];;FRS37E2579;FRFASE3302801;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.53047358;45.04597649;;;; +;;;;;;;;FRCPIE6666625;XBENFNB95Y;E.Leclerc, Orly;;Che Des Vignerons 55300 Woimbey;;[-1.91751857, 48.17635366];;FRCPIE66234751;FRFASE3302802;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.40632298;46.17291786;;;; +;;;;;;;;FRIONE4541;IQU4R0ABMI;E.Leclerc, Pessac;;2 Grande Rue 80440 Thézy-Glimont;;[-2.7611361, 48.53579815];;FRS37E1698;FRFASE3302804;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.61935996;-20.8976211;;;; +;;;;;;;;FRCPIE6600375;LN5OWH3GTB;E.Leclerc, Parthenay;;12 Rue Soeur Saint-Vincent 80400 Ercheu;;[0.35404564, 46.56548395];;FRCPIE66234752;FRIONE43805;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.22413016;49.35859995;;;; +;;;;;;;;FRCPIE6707215;W6UE0JKLKL;E.Leclerc, Perrusson;;Jules Verne 80550 Le Crotoy;;[0.22571194, 44.82527227];;FRS37E2681;FRS37E7613;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.00522909;44.20242742;;;; +;;;;;;;;FRTNME08912729;LLI1FZ6R1VYO98;E.Leclerc, Harly;;des Corderies 80410 Cayeux-sur-Mer;;[2.0886487, 49.06580986];;FRS37E2692;FRS37E7614;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3235812;45.76126962;;;; +;;;;;;;;FRTNME08912728;LLJOBYNIMYFIQW;E.Leclerc, Herbignac;;2 Rue d'Albert 80340 Sailly-Laurette;;[-1.53047358, 48.12114958];;FRS37E1287;FRS08E129231;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.31497627;44.54360624;;;; +;;;;;;;;FRTNME08912692;LLISSUAD0218PP;E.Leclerc, Herlin-Le-Sec;;1 Rue Jean Jaurès 80470 Ailly-sur-Somme;;[2.40632298, 48.7419096];;FRS37E1288;FRS08E129232;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33110231;48.459639;;;; +;;;;;;;;FRTNMETERRA54011;O63JQJDR8C;E.Leclerc, Guingamp;;2a Route de Morlancourt 80300 Méaulte;;[-0.61935996, 44.81050006];;FRS37E2682;FRS37E7736;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.15082552;49.5675;;;; +;;;;;;;;FRTNMETERRA54010;LNDZLAR6YW;E.Leclerc, Hirson;;8 Rue de l'Ancre 80300 Thiepval;;[-0.22413016, 46.64877332];;FRS37E2683;FRS37E7737;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.07420586;49.6079;;;; +;;;;;;;;FRS18E18433;MWSUJPSJ4J;E.Leclerc, La Ferté-Macé;;14 Place de l'Église 80910 Arvillers;;[1.00522909, 47.10985352];;FRS37E2685;FRS28E130903;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.36859046;49.3772;;;; +;;;;;;;;FRS28E13080;DZVOZRKVZZ;E.Leclerc, La Crau;;15 Grande Rue 80500 Ételfay;;[3.3235812, 49.84268062];;FRS37E2688;FRIONE438002;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.37042547;49.3846;;;; +;;;;;;;;FRS28E12748;GUBPYPEXXR;E.Leclerc, Jonzac;;19 Rue Principale 80260 Beaucourt-sur-l'Hallue;;[-2.31497627, 47.45070608];;FRS37E2686;FRIONE438003;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.06614609;49.6091;;;; +;;;;;;;;FRS41E475;SAKZY4U1S4;E.Leclerc, Issenheim;;24 Chemin des Garennes 80120 Saint-Quentin-en-Tourmont;;[2.33110231, 50.36434323];;FRS37E2687;FRIONE438004;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4388861;49.6405;;;; +;;;;;;;;FRS18E17831;DW28ZLLDTL;E.Leclerc, Gouesnou;;17 Rue Alphonse Paillat 80000 Amiens;;[-3.15082552, 48.55487429];;FRS37E2690;FRIONE438005;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.24040872;49.3836;;;; +;;;;;;;;FRS18E17830;MARTXJJ3YQ;E.Leclerc, Gleize;;3 Bouleverd Ernest Dehée 80600 Doullens;;[4.07420586, 49.91226323];;FRS37E2691;FRIONE438006;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.46994658;49.70972449;;;; +;;;;;;;;FRTNME08912730;JKC4QHAXRL;E.Leclerc, Grasse;;Place Des Combattants 80700 Roye;;[-0.36859046, 48.57543588];;FRS37E1839;FRIONE438007;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.46992334;49.9463;;;; +;;;;;;;;FRTNME08912731;TJDUQOWLBU;E.Leclerc, Gramat;;80 Rue de la Vallée 80000 Amiens;;[-0.37042547, 48.57633739];;FRS37E1838;FRIONE451604;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.700099;49.3714;;;; +;;;;;;;;FRTNME08912788;RMKFDTC3M4;E.Leclerc, Le Relecq-Kerhuon;;Rue Pierre Rollin 80000 Amiens;;[6.06614609, 43.15138995];;FRCPIE66210652;FRIONE451605;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.94642684;49.3766;;;; +;;;;;;;;FRIENE003402;CXWQCAZPW9;E.Leclerc, Le Brezet;;22 boulevard d'Alsace-Lorraine 80000 Amiens;;[-0.4388861, 45.45249078];;FRCPIE66210651;FRIONE451606;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.7206684;49.4418;;;; +;;;;;;;;FRCPIE6666445;QFZHBEZJDZ;E.Leclerc, Le Houlme;;Chemin Latéral de la Haute Selle 80000 Amiens;;[7.24040872, 47.90261331];;FRS37E1705;FRIONE412501;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.46967649;49.9863;;;; +;;;;;;;;FRIONE4169;EHGQLKGHD4;E.Leclerc, Le Breuil;;15 Quai Perrée 80230 Saint-Valéry-sur-Somme;;[-4.46994658, 48.43078542];;FRS37E1724;FRS18E205346;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.408368;49.7334;;;; +;;;;;;;;FRIONE41690;VAQY64MMFC;E.Leclerc, Laval;;Rue Adolphe Mihatseck 80460 Oust-Marest,;;[-4.46992334, 48.43073859];;FRS37E1725;FRS18E186205;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.133546;49.3863;;;; +;;;;;;;;FRTNME08912789;A818R6G62Y;E. Leclerc, Langres;;2B Rue du Général Leclerc 80300 Warloy-Baillon;;[4.700099, 45.98354035];;FRCPIE66206851;FRS18E186206;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.03791806;49.5621;;;; +;;;;;;;;FRIENE003401;SWR9LBHFPD;E.Leclerc, Le Blanc;;Place Norbert Malterre 80110 Moreuil;;[6.94642684, 43.65040657];;FRCPIE66206852;FRS18E201975;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.47654804;49.4688;;;; +;;;;;;;;FRIONE4319;XM03BDK6QH;E.Leclerc, Les Herbiers;;18 Rue d'Amiens 80160 Lœuilly;;[1.7206684, 44.78683159];;FRS37E1737;FRS18E201976;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.73548402;49.3821;;;; +;;;;;;;;FRIONE43190;TICAR3Q0OM;E.Leclerc, Limoux;;9 Avenue du Président Roosevelt 80220 Bouttencourt;;[-4.46967649, 48.43008916];;FRS37E1738;FRS18E147205;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.33482504;49.3858;;;; +;;;;;;;;FRTNME09911355;ZZZQYISOQJ;E.Leclerc, Lisieux;;10 Boulevard d'Alsace Lorraine 80000 Amiens;;[-4.408368, 48.399504];;FRFASE3311101;FRS18E147206;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.06253811;49.3816;;;; +;;;;;;;;FRTNME08912790;CRKFHHR17R;E.Leclerc, Loison-sous-Lens;;3 Boulevard de Belfort 80000 Amiens;;[3.133546, 45.780771];;FRFASE3311102;FRCPIE66325851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.01433123;49.6619;;;; +;;;;;;;;FRS18E11718;RJZA6CVZ1N;E. Leclerc, Magny-en-Vexin;;42 Route nationale 80115 Querrieu;;[1.03791806, 49.51315177];;FRFASE3311103;FRCPIE66325852;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.22248369;49.4706;;;; +;;;;;;;;FRSHEE176;DTPSA3S6UB;E.Leclerc, Lieu-Saint-Amand;;19 rue Pauchet Goret 80600 Doullens;;[4.47654804, 46.80530308];;FRFASE3311104;FRS18E206381;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.26550488;49.8406;;;; +;;;;;;;;FRSHEE157;MVRJMTFXFY;E.Leclerc, Lesparre-Médoc;;20 Route nationale 80260 Poulainville;;[-0.73548402, 48.05367287];;FRFASE3311105;FRS18E206382;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.86452709;49.3776;;;; +;;;;;;;;FRSHEE158;U31Z1HOZPX;E.Leclerc, Libourne;;Place de Verdun 80120 Rue;;[5.33482504, 47.83245411];;FRFASE3311106;FRCPIE66955551;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.78752324;49.3943;;;; +;;;;;;;;FRCPIE6664335;FNABZHD5V0;E.Leclerc, Lagord Charent;;1-3 Place du Petit Prie 80113 Méricourt-l'Abbé;;[1.06253811, 46.63950321];;FRFASE3311107;FRCPIE66955552;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.43093846;49.6848;;;; +;;;;;;;;FRCPIE6664345;GAWWXDWFLV;E.Leclerc, La Réserve;;Place du 8 Mai 80260 Poulainville;;[-1.01433123, 46.85754993];;FRFASE3311108;FRIONE412504;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.92415692;49.604;;;; +;;;;;;;;FRIENE005101;B22E6IS6IJ;E.Leclerc, La-Croix-Saint-Ouen;;14 Place de la Libération 80430 Liomer;;[2.22248369, 43.07297112];;FRCPIE66208151;FRIONE451607;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.12089792;49.8988;;;; +;;;;;;;;FRIENE005102;GNLNHDG2H5;E.Leclerc Labouheyre;;146 rue de Berny 80250 Ailly-sur-Noye;;[0.26550488, 49.14339336];;FRCPIE66208152;FRIONE412505;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.16716476;49.3705;;;; +;;;;;;;;FRSHEE174;XA55ET3COQ;E.Leclerc, La Pardieu;;2 rue Trevequenne 80300 Miraumont;;[2.86452709, 50.44629974];;FRCPIE66208451;FRIONE412506;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.56037166;49.7964;;;; +;;;;;;;;FRCPIE6553755;IHAJCZDFMR;E.Leclerc, Langon;;Boulevard de la République 80100 Abbeville;;[1.78752324, 49.14671702];;FRCPIE66208452;FRIONE41255;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.77707723;49.8596;;;; +;;;;;;;;FRCPIE6641115;NZVMFPZB3C;E.Leclerc, Lamballe-Armor;;36 Rue Paul-Henri Spaak 26000 Valence;;[3.43093846, 50.36551557];;FRS37E1830;FRS18E206417;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.92669753;49.8426;;;; +;;;;;;;;FRIONE40180;AGEDFVTZGT;Laon, Piscine;;Rue André Maginot 70000 Vesoul;;[-0.92415692, 45.28977905];;FRS37E1831;FRS18E206419;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.12757874;49.8348;;;; +;;;;;;;;FRIONE4018;DFKNF0DTEA;Aulnois-sous-Laon, Place Foch;;Parking Lycée des Haberges 70000 Vesoul;;[-0.12089792, 45.04597649];;FRS37E1832;FRS18E150331;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.25399043;48.8956;;;; +;;;;;;;;FRCPIE6553735;DLLHDQOSYL;Soissons, Halte St. Christophe;;4 Esplanade Charles de Gaulle 70200 Lure;;[-1.16716476, 46.17291786];;FRS37E1841;FRS18E150332;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.514001;49.0662;;;; +;;;;;;;;FRIENE009701;XDPR5VCA2O;Soissons, Bibliothèque;;Vesoul, Place Renet 70000 Vesoul;;[55.56037166, -20.8976211];;FRS37E1834;FRS28E139383;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.6518;49.8338;;;; +;;;;;;;;FRIENE009702;T8CJCVP99U;Liesse-Notre-Dame, Place Bailly;;Rue Meillier 70000 Vesoul;;[2.77707723, 49.35859995];;FRS37E1840;FRS28E139691;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.6158;49.5764;;;; +;;;;;;;;FRS51E5391;YTJ4Y9PL7Q;Viry-Noureuil, ZAC Les Terrages;;Chemin du Bois Chaillaux 70190 Rioz;;[-0.92669753, 44.20242742];;FRCPIE66210551;FRS18E186579;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3118;49.571;;;; +;;;;;;;;FRSHEE25;ZFHTLR4J0P;Soissons, UTAS;;6 Rue des Frères Renaud 70290 Champagney;;[3.12757874, 45.76126962];;FRCPIE66210552;FRS18E186580;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32848;49.2699;;;; +;;;;;;;;FRIONE43260;CCNQFPQQIB;Rozoy-sur-Serre, Mairie;;Rue de la Vaugine 70000 Vesoul;;[-0.25399043, 44.54360624];;FRIONE440410;FRCPIE67364151;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8031;49.2043;;;; +;;;;;;;;FRS51E4473;VOSJB7Z6S8;Fresnoy-le-Grand, Parking Cavalier;;Place Brossolette 70400 Héricourt;;[-2.514001, 48.459639];;FRCPIE67381051;FRCPIE67364152;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.25383;49.3749;;;; +;;;;;;;;FRIENE009501;FINPWCYSPC;Saint-Bandry, Eglise;;7 rue Labienus 70300 Luxeuil-les-Bains;;[3.6518, 49.5675];;FRIONE440408;FRS18E205345;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32436;49.8363;;;; +;;;;;;;;FRIENE009502;ADAKWI9JTZ;Soissons, Messiaen;;7 Rue Henri Guy 70800 Saint-Loup-sur-Semouse;;[3.6158, 49.6079];;FRCPIE67467251;FRIONE45945;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.12904419;49.0494;;;; +;;;;;;;;FRS28E12623;FI90Y2MKQN;Oulches, Caverne du Dragon;;Place Pierre Renet 70000 Vesoul;;[3.3118, 49.3772];;FRIONE440003;FRIONE459404;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.41583;49.3826;;;; +;;;;;;;;FRIENE35353A;TNSYPNWAHQ;Bohain-en-Vermandois, Eglise;;Place de l'Europe 70400 Héricourt;;[3.32848, 49.3846];;FRIONE44005;FRIONE459403;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1684;49.5948;;;; +;;;;;;;;FRS28E17873;XHKFRPJTZC;Montescourt-Lizerolles, Victoire;;154 rue du Troup-au-loup 70110 Villersexel;;[3.8031, 49.6091];;FRIONE403801;FRIONE451608;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.31728;50.0074;;;; +;;;;;;;;FRIENE008402;DQAOP9IPRJ;Soissons, Bara;;Rue des Halles 70230 Montbozon;;[3.25383, 49.6405];;FRIONE403802;FRIONE451609;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.73206;49.3662;;;; +;;;;;;;;FRIENE008401;AX86CBKORF;Laon, Département;;30 Place des Grands Puits 70240 Saulx;;[3.32436, 49.3836];;FRIONE403803;FRIONE451610;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.45166;49.9055;;;; +;;;;;;;;FRS51E4468;EAGJ5CQBFK;Chamouille, Cap Aisne;;3 Quai Mavia 70100 Gray;;[4.12904419, 49.70972449];;FRIONE403804;FRIONE451611;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.24542;49.4898;;;; +;;;;;;;;FRS37E6063;BXEZOXEAUK;Soissons, Place Saint-Christophe;;52 Grand Rue 70130 Fresne-Saint-Mamès;;[3.41583, 49.9463];;FRIONE403805;FRIONE451612;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32435;49.8561;;;; +;;;;;;;;FRCPIE6708045;VPDD4Y5RGE;Soissons, Centre Culturel;;Place Marcel Gênez 70290 Plancher-les-Mines;;[3.1684, 49.3714];;FRIONE403806;FRIONE45165;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.62776;49.9735;;;; +;;;;;;;;FRCPIE6473655;OKOJZHOQ8P;Soissons, Beffroi;;esplanade de gaulle 70200 Lure;;[3.31728, 49.3766];;FRIONE40385;FRS37E9051;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.66558;49.8457;;;; +;;;;;;;;FRS51E4470;Q0HJQPVBCX;La Fère, UTAS;;Place du 15 Juin 1945 70120 Combeaufontaine;;[3.73206, 49.4418];;FRS37E5907;FRS37E9052;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32148;49.022;;;; +;;;;;;;;FRIENE006401;C9NIVDRMEM;Monampteuil, Axo Plage;;Parking Edgar Fauré 70000 Vesoul;;[3.45166, 49.9863];;FRS37E5908;FRS28E134509;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32809;49.4336;;;; +;;;;;;;;FRIENE006402;BNEXS6CBJB;Saint-Quentin Gare 1;;Place de la Mairie 70600 Champlitte;;[3.24542, 49.7334];;FRCPIE67466751;FRCPIE66647351;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3263;49.91444444;;;; +;;;;;;;;FRS51E4471;J01CFCFFW4;Soissons, Place Dauphine;;Rue du Maréchal Leclerc 70100 Gray;;[3.32435, 49.3863];;FRCPIE67466752;FRCPIE66647352;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.36856;49.6965;;;; +;;;;;;;;FRIONE4326;ZBAEAPMZYM;Soissons, Piscine;;20 Avenue des Rives du Lac 70000 Vaivre-et-Montoille;;[3.62776, 49.5621];;FRCPIE67467252;FRS28E129905;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.55191;49.9044;;;; +;;;;;;;;FRIENE009602;GUEO9FTWBS;Courbes, Eglise;;Frotey Les Vesoul, Eurotel 70000 Frotey Les Vesoul;;[3.66558, 49.4688];;FRIONE446605;FRCPIE66652751;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.29831;49.5612;;;; +;;;;;;;;FRS51E4363;DNQBLW1SZU;Crépy, Mairie;;Pusey, Foyer des jeunes travailleurs 70000 Pusey;;[3.32148, 49.3821];;FRCPIE67467451;FRCPIE66652752;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32626;49.0367;;;; +;;;;;;;;FRS51E5048;CQX0OZTVMC;Guise, UTAS;;Echenans, ZA Guinottes 70400 Echenans;;[3.32809, 49.3858];;FRCPIE67467452;FRCPIE66104651;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32638;49.372487;;;; +;;;;;;;;FRIONE43910;A1YA9QASHE;Soissons, Centre Médical;;Corre, Place Général de Gaulle 70500 Corre;;[3.3263, 49.3816];;FRCPIE67468251;FRCPIE66104652;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.45238;49.3983;;;; +;;;;;;;;FRIONE4391;BK88LLSEWT;Ribemont, Château;;Chapelle Les Luxeuil, Station service 70300 Chapelle Les Luxeuil;;[3.36856, 49.6619];;FRCPIE67468252;FRCPIE66104851;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5152;49.4032;;;; +;;;;;;;;FRIONE4044;O2LQBPQQEQ;Saint-Quentin, Place de la Citoyenneté;;Lyoffans, Cimetière 70200 Lyoffans;;[3.55191, 49.4706];;FRIONE403901;FRCPIE66104852;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.63055;49.6128;;;; +;;;;;;;;FRCPIE6668835;TCRKEQNZSQ;Saint-Quentin, Léo Lagrange;;Rioz, Rue Clair Soleil 70190 Rioz;;[3.29831, 49.8406];;FRIONE403902;FRCPIE66165351;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.33628;49.8501;;;; +;;;;;;;;FRIONE40240;PT85VGEYSD;Saint-Quentin, Fère;;6 Place de la Mairie 70700 GY;;[3.32626, 49.3776];;FRIONE403903;FRCPIE66427651;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.45854;49.3587;;;; +;;;;;;;;FRS28E13485;UDEDECYP5I;L'Epine-aux-Bois, Paris;;10 Avenue Pierre Bérégovoy 70400 Héricourt;;[3.32638, 49.3943];;FRIONE403904;FRIONE421601;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.29519;49.3652;;;; +;;;;;;;;FRIENE009601;XLSGZFNVR4;Château-Thierry, Centre aquatique;;Place du 8 Mai 70300 Luxeuil;;[3.45238, 49.6848];;FRIONE403905;FRIONE421602;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.30409;49.7561;;;; +;;;;;;;;FRCPIE6600955;DXHSAGJEDX;Saint-Quentin, Camille Guérin;;Combeaufontaine, Place de la gare 70120 Combeaufontaine;;[3.5152, 49.604];;FRIONE403906;FRIONE421603;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3065;49.3845;;;; +;;;;;;;;FRCPIE6600945;FU2H3DXVPO;Laon, Besny;;3 route de Lure 70270 Mélisey;;[3.63055, 49.8988];;FRIONE40395;FRIONE421604;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.44305;49.8356;;;; +;;;;;;;;FRCPIE6731715;T44AJWWFZ5;Sissonne, D181;;135 rue Anatole France 63000 Clermont-Ferrand;;[3.33628, 49.3705];;FRCPIE66098151;FRIONE42165;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.39148;49.3792;;;; +;;;;;;;;FRCPIE6731085;CIWXAZ1UQT;Hartennes-et-Taux, Grande Rue;;65 Route De Nancy 57200 Sarreguemines;;[3.45854, 49.7964];;FRCPIE66098152;FRIONE459401;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.30091;49.3902;;;; +;;;;;;;;FRCPIE6731795;MKW1V71V7J;Oulchy-le-Château, Potel;;3 Avenue Roland Garros 31570 Sainte-Foy-d'Aigrefeuille;;[3.29519, 49.8596];;FRIONE440002;FRIONE459402;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5945;49.1706;;;; +;;;;;;;;FRCPIE6731805;HV5VAKB6YB;Soissons, Innovation;;Côte Des Rouillères 31570 Bourg-Saint-Bernard;;[3.30409, 49.8426];;FRS28E134333;FRCPIE67447251;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.88593;49.4105;;;; +;;;;;;;;FRS51E4364;X3JXPCEBZD;Saint-Quentin, P. Choquart;;22 rue Général François Ingold 88230 Fraize;;[3.3065, 49.8348];;FRIENE0043011;FRCPIE67410952;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3531;49.3874;;;; +;;;;;;;;FRIONE40200;V4H4VQXES1;Château-Thierry, Otmus;;2 Chemin Du Bas Du Moulin 51380 Vaudemange;;[3.44305, 48.8956];;FRIENE0039012;FRCPIE67410951;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.36811;49.3759;;;; +;;;;;;;;FRSHEE90;CLC4PORYME;Soissons, Place Alsace-Lorraine;;18 avenue des Portes Occitanes 03800 Gannat;;[3.39148, 49.0662];;FRIONE403303;FRS51E40810;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32106;49.3807;;;; +;;;;;;;;FRSHEE91;BJUX8ADWL0;Saint-Gobain, Place Maréchal Foch;;125 Rue Charles Valente 84140 Avignon;;[3.30091, 49.8338];;FRIONE403304;FRS51E40906;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3179;49.3814;;;; +;;;;;;;;FRS51E4390;J5RJLBUY0V;Boué, Cyrille;;6 Rue Jacqueline Auriol 54710 Fléville-devant-Nancy;;[3.5945, 49.5764];;FRIONE40335;FRS51E40897;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.38869;49.2414;;;; +;;;;;;;;FRS28E12908;AWPJ7Z2ZCT;Soissons, Marcel Paul;;150 Rue Urs Graf 67400 Illkirch-Graffenstaden;;[3.88593, 49.571];;FRS37E5520;FRS51E40896;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.33537;49.3886;;;; +;;;;;;;;FRCPIE6557675;VT5FXZFPHK;Guise, ZAC Europe;;Rue Saint-Laurent 32500 Fleurance;;[3.3531, 49.2699];;FRS37E5521;FRIONE41025;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.38132;49.55677;;;; +;;;;;;;;FRCPIE6678495;VNYVFQYTMF;Urcel, Eglise;;22 Avenue du Général de Gaulle 63300 Thiers;;[3.36811, 49.2043];;FRS37E10838;FRIONE410204;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.69635;42.21474029;;;; +;;;;;;;;FRS18E14755;YONT6QVIXV;Saint-Quentin, Archimède;;2 Rue de Murbach 70200 Lure;;[3.32106, 49.3749];;FRS37E10839;FRIONE410203;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.31505;47.90274394;;;; +;;;;;;;;FRIONE4020;XDVKEHAKEK;La Capelle, Mairie;;15 Rue de Choiseul 70140 Pesmes;;[3.3179, 49.8363];;FRIONE404501;FRIONE410202;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.64527;46.49628283;;;; +;;;;;;;;FRS51E15167;S4FAVFBZN7;Saint-Quentin - Square A. Malraux;;22 Rue Marcel Rozar 70000 Frotey Les Vesoul;;[3.38869, 49.0494];;FRIONE404502;FRIONE410201;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.55776;43.95013839;;;; +;;;;;;;;FRS28E14173;XRB9PAWM7D;Montreuil-aux-Lions, Paris;;3 rue de la Fontaine des Douis 70150 Marnay;;[3.33537, 49.3826];;FRIONE404503;FRS51E40867;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.26515;42.157101;;;; +;;;;;;;;FRS41E5288;JNCVUHJ9T2;Sancy-les-Cheminots, Lucient Busquet;;1 rue Georges Mongin 70180 Dampierre-sur-Salon;;[3.38132, 49.5948];;FRIONE404504;FRS51E40866;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.91678;42.160753;;;; +;;;;;;;;FRS51E4389;KU14SZGVCB;Hirson, Gare;;Place du Champ de Foire 70310 Faucogney-et-la-Mer;;[3.69635, 50.0074];;FRIONE40455;FRS51E40815;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.28329;43.65908238;;;; +;;;;;;;;FRS41E5287;HGSOGXCO0T;Montcornet, Rue Neuve;;Rue du Commandant Druais 70160 Faverney;;[3.31505, 49.3662];;FRIENE0039011;FRS51E40814;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.19489;49.12;;;; +;;;;;;;;FRTNME18B92448;S1EZVRWU5Q;Guise, Parking Familistère;;Rue de la Flandrière 70000 Echenoz-la-Méline;;[3.64527, 49.9055];;FRIENE0039023;FRS51E40811;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.47162;48.53113555;;;; +;;;;;;;;FRTNME18B92449;Z8E4GHPDN1;Laon, Place R. Aumont;;3 rue de la Grande Fontaine 70210 Vauvillers;;[3.55776, 49.4898];;FRCPIE66087152;FRS51E40803;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.08333333;49.486412;;;; +;;;;;;;;FRTNME18B92450;K7EHUWAXLO;Etampes-sur-Marne;;Place du 14 Juillet 70250 Ronchamp;;[3.26515, 49.8561];;FRIENE0039024;FRS28E137387;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.01524;43.63320379;;;; +;;;;;;;;FRCPIE6737475;C2QSB9HMEI;Dizy-le-Gros, Rue Principale;;2 place du Champ de Foire 70500 Jussey;;[3.91678, 49.9735];;FRS28E129052;FRS51E40802;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.62777;48.7593;;;; +;;;;;;;;FRTNME08911696;PEPRHZRXHR;Montigny-Lengrain, Gare;;Place du 8 mai 70170 Port-sur-Saône;;[3.28329, 49.8457];;FRS37E5579;FRS28E203810;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.6109;44.0331341;;;; +;;;;;;;;FRTNME08911388;CJXNDZ3C6G;Berry-au-Bac, Ecoles;;avenue Charles Couyba 70100 Arc-lès-Gray;;[3.19489, 49.022];;FRS37E5580;FRS28E203809;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.40779;50.23791785;;;; +;;;;;;;;FRS18E14281;YQSAIA8LGL;Chauny, Remparts;;rue Roger Salengro 32000 Auch;;[3.47162, 49.4336];;FRS18E206359;FRCPIE66989052;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.12694;44.43387149;;;; +;;;;;;;;FRCPIE6580765;CQUDPLPZYE;Saint-Quentin, Gambetta;;Boulevard Lacave 32480 La Romieu;;[4.08333333, 49.91444444];;FRS18E206360;FRCPIE66989051;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.11404;43.49045736;;;; +;;;;;;;;FRIONE1248;PNLOUT8QPN;Belleu, Beaulieu;;Place de la République 32380 Saint-Clar;;[4.01524, 49.6965];;FRS37E5654;FRN54E187498;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.89959;43.623003;;;; +;;;;;;;;FRIONE12480;HVQK2HM8GQ;Brenelle, Bac;;35 Place Massenet 42000 Saint-Étienne;;[3.62777, 49.9044];;FRS37E5655;FRN54E187497;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.26519;43.477967;;;; +;;;;;;;;FRCPIE6580595;VAM8YTTW3I;Clastres, Château d'eau;;122 Rue des Meneaux 16430 Champniers;;[3.6109, 49.5612];;FRFASE3310401;FRS37E56267;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.22083;47.87876097;;;; +;;;;;;;;FRSPSESHEL71;EUYZVQKVQM;Missy-sur-Aisne, Salle des Fêtes;;48-50 Rue Éric Tabarly 85340 Olonne-sur-Mer;;[3.40779, 49.0367];;FRFASE3310402;FRS37E56266;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.29522;44.468806;;;; +;;;;;;;;FRCPIE6721065;EK5YHMKEAO;Saint-Quentin, Paris;;218 Rue Karrika 64250 Ainhoa;;[4.12694, 49.372487];;FRFASE3310403;FRS37E19691;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.335;48.879555;;;; +;;;;;;;;FRTNME08912512;N6BRENDZBL;Soissons, Square Bonnenfant;;750 Route de Strasbourg 67130 FOUDAY;;[3.11404, 49.3983];;FRFASE3310404;FRS37E19690;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.54107;44.39123414;;;; +;;;;;;;;FRTNME08912519;J0FQWYCSH1;Bucy-le-Long, Place du 29 août 1944;;9 Rue Aimé Cotton 69800 Saint-Priest;;[3.89959, 49.4032];;FRCPIE66087151;FRS37E19675;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.22555;47.45462025;;;; +;;;;;;;;FRTNME09911216;D0AIJIWGHD;Neuilly-Saint-Front, Eglise;;15 Avenue De La Baltique 91140 Villebon-sur-Yvette;;[3.26519, 49.8561];;FRCPIE65739951;FRS37E19674;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.44043;46.64140412;;;; +;;;;;;;;FRCPIE6581995;EHNKRRPQNR;Vailly-sur-Aisne, Edouard Herriot;;35 Avenue Denfert Rochereau 42000 Saint-Étienne;;[3.22083, 49.6128];;FRIENE0043012;FRS51E40907;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2659;47.961414;;;; +;;;;;;;;FRTNME18B93139;ENUDY0G4GZ;Soissons, Avenue de Coucy;;40 Avenue De La Fosse Des Pressoirs 77700 Magny-le-Hongre;;[3.29522, 49.8501];;FRIONE405303;FRS28E139414;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32651;49.063363;;;; +;;;;;;;;FRTNME09990180;DXLUDBXRWZ;Soissons, Place de la république;;Rue Rohan - ZI Sud 67790 Steinbourg;;[3.335, 49.3587];;FRS28E134403;FRS37E1257;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.39553;48.1096611;;;; +;;;;;;;;FRTNME09910716;UWGNCGZ3CU;Soissons, Parking Quartier Maupas;;115 Rue Du Mourelet 84000 Avignon;;[3.54107, 49.3652];;FRIONE437901;FRS08E144223;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.25982;48.9656;;;; +;;;;;;;;FRTNME08912881;IFBAAFS12E;Soissons, Avenue de Compiégne au cimetière;;8 Avenue Du Panorama 72100 Le Mans;;[3.22555, 49.7561];;FRIONE437902;FRIENE0062023;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.51623;49.5643;;;; +;;;;;;;;FRTNME08912880;JOZZJYCYP2;Villers-Cotterêts, Mairie;;Rue Louis Joseph Gay-Lussac 59494 Petite-Forêt;;[3.44043, 49.3845];;FRIONE437903;FRIENE0062012;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.33263;49.839;;;; +;;;;;;;;FRTNME08912520;LLIMWW8BBCHFQP;Soissons, Avenue de Laon;;28-32 Avenue De La Victoire 77100 Meaux;;[3.2659, 49.8356];;FRIONE437904;FRIENE0062011;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32963;49.3919;;;; +;;;;;;;;FRCPIE6737455;KSIC9LD3KI;Laon, Foch;;8 Rue Du Père Potot 57000 Metz;;[3.32651, 49.3792];;FRIONE43795;FRS37E4526;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.30527;49.8986;;;; +;;;;;;;;FRCPIE6582005;H1G0Y8XBHP;Bravone, Domaine de Bagheera;;3 Grand Rue 68320 Bischwihr;;[3.39553, 49.3902];;FRIONE459301;FRS37E4525;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.31164;49.5648;;;; +;;;;;;;;FRSHEE83;D1EYROTLX1;Guebwiller, Rue des Larrons;;44 Avenue De La Plage 17630 La Flotte;;[3.25982, 49.1706];;FRIONE459302;FRS37E4524;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.08169;49.3877;;;; +;;;;;;;;FRSHEE82;R9HLO5VJ24;Champagnat, Lieu dit Louvarel;;8 Rue De La Louisiane 38120 Fontanil-Cornillon;;[3.51623, 49.4105];;FRIONE459303;FRS37E4523;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.33663;49.3799;;;; +;;;;;;;;FRSHEE81;MWZHDVEEYF;Estézargues, Domaine de Pierredon;;4 La Brasserie 19260 Treignac;;[3.33263, 49.3874];;FRIONE459304;FRIENE0033024;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.60313;49.99203596;;;; +;;;;;;;;FRIENE003202;ZRCZZOSUOR;Aléria, Domaine de Riva Bella, SPA;;6 Rue Louis Armstrong 63200 Riom;;[3.32963, 49.3759];;FRIONE459305;FRIENE0033023;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.55516881;49.4003;;;; +;;;;;;;;FRIENE003201;ZDYRGJQNWY;Aléria, Domaine de Riva Bella;;30 Avenue De La Chaussairie 35131 Chartres-de-Bretagne;;[3.30527, 49.3807];;FRIONE459306;FRIENE0033012;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.22030274;49.9971;;;; +;;;;;;;;FRCPIE6579905;HTOS6OHD33;Aimargues, Domaine de Malherbes;;Rue Lavoisier 03600 Commentry;;[3.31164, 49.3814];;FRS28E130159;FRIENE0033011;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.32486224;49.373;;;; +;;;;;;;;FRCPIE6579895;ZREBJTTI3B;Metz, Parking Cathédrale;;715 Rue Henri Dunant 50000 Saint-Lô;;[3.08169, 49.2414];;FRS28E139333;FRS28E128891;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.63860668;48.85224905;;;; +;;;;;;;;FRCPIE6579885;OL2TN2UB3M;Vaux-le-Pénil, rue Einstein;;11 Rue Louis Delage 95310 Saint-Ouen-l'Aumône;;[3.33663, 49.3886];;FRCPIE65885151;FRS28E134925;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.553523;48.98087537;;;; +;;;;;;;;FRSHEE84;LBNGT0AA3J;Saint Jean du Cardonnay , Route du Havre;;3 rue de Gémozac 17100 Saintes;;[3.60313, 49.55677];;FRCPIE67336051;FRS08E144222;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.552278;49.23618569;;;; +;;;;;;;;FRCPIE6579955;MIGOKDUUYZ;Clermont-l'Hérault, Route de Montpellier;;17 Rue Amédée Bollée 10600 Barberey Saint-Sulpice;;[9.55516881, 42.21474029];;FRCPIE65885152;FRS37E15746;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2065939;49.23616118;;;; +;;;;;;;;FRCPIE6608375;AZAJKTPA3O;Maurepas, Doga;;188 Rue De Paris 94190 Villeneuve-Saint-Georges;;[7.22030274, 47.90274394];;FRCPIE65885251;FRCPIE66435752;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.17431;-20.898202;;;; +;;;;;;;;FRCPIE6580435;VHJJAQQP0F;Uza, Domaine Alexandre de Lur saluces;;12 Avenue Charles De Gaulle 93420 Villepinte;;[5.32486224, 46.49628283];;FRCPIE65885252;FRCPIE66435751;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.68692541;48.98067116;;;; +;;;;;;;;FRCPIE6580425;EEXWDVZFWO;Favières, Domaine Les Saules;;Avenue Du Docteur Croquelois 62360 Saint-Léonard;;[4.63860668, 43.95013839];;FRS37E6555;FRS37E1585;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.018832;49.3989;;;; +;;;;;;;;FRCPIE6580355;D8WHXLJJOC;Domaine de Sévenier;;3 Rue Marco Polo 17600 Médis;;[9.553523, 42.157101];;FRS37E6556;FRS37E1584;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.43950231;49.3415;;;; +;;;;;;;;FRCPIE6560525;HOYWIHBH4H;Meyreuil, Rue de la Carrière de Bachasson;;483 Rue Gustave Eiffel 71000 Mâcon;;[9.552278, 42.160753];;FRS37E6557;FRS51E40985;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.92311;45.52570952;;;; +;;;;;;;;FRCPIE6579965;F4APLQXSCJ;Biot, Avenue Roumanille;;34 Avenue Louis Armand 87280 Limoges;;[4.2065939, 43.65908238];;FRS37E6558;FRS51E40984;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.19986463;43.59465073;;;; +;;;;;;;;FRCPIE6517135;QBBJAH;Fuveau, ZAC de la Barque;;351 Boulevard Jean-Charles Contel 14100 Glos;;[6.17431, 49.12];;FRFASE3302901;FRS51E40929;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.66828015;43.59482;;;; +;;;;;;;;FRFASE331050;TFJPLY;Jungholtz, Rte de Thierenbach;;68 Route D'orléans 91310 Montlhéry;;[2.68692541, 48.53113555];;FRFASE3302902;FRS51E40928;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.41141694;43.597814;;;; +;;;;;;;;FRFASE330150;IBDZ4WIOAT;Malataverne, chemin de Malombre;;170 Rue Du Père Brottier 30900 Nîmes;;[1.018832, 49.486412];;FRFASE3302903;FRS41E3965;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.52996847;43.5894;;;; +;;;;;;;;FRCPIE6638045;UHMXW9N8BO;Domaine des Bufflonnes;;166 Avenue Du Plateau Des Glières 86000 Poitiers;;[3.43950231, 43.63320379];;FRFASE3302904;FRS41E3964;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.069095;-20.8901;;;; +;;;;;;;;FRCPIE6638035;PDDDCJBIC9;Grospierres, Domaine des Garrigues;;51 Route Des Sanguinaires 20000 Ajaccio;;[1.92311, 48.7593];;FRCPIE65885651;FRS51E40915;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.541409;-21.3343;;;; +;;;;;;;;FRIONE4098;EZQEWY01JS;Mosnes, Rue des Thomeaux;;HAPM 2000 Rocade Nord 30520 Saint-Martin-de-Valgalgues;;[-1.19986463, 44.0331341];;FRCPIE65885652;FRS51E40914;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.19029424;48.387296;;;; +;;;;;;;;FRIONE40980;HELMIXFOE8;Vernantois, Domaine du Val de Sorne;;Route Du Vin 67160 Rott;;[1.66828015, 50.23791785];;FRCPIE67336052;FRS37E15747;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.744058;49.04953011;;;; +;;;;;;;;FRCPIE6588555;XZ5WPWTVHV;Rouffach, rue Raymond Poincaré;;1308 Avenue De Tuttlingen 83300 Draguignan;;[4.41141694, 44.43387149];;FRCPIE66340952;FRS37E1350;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.578482;48.33466413;;;; +;;;;;;;;FRCPIE6589265;PGHWPZSVYM;Dizy les bas jardins, Delhorbe Automobiles;;2c Rue Timken 68000 Colmar;;[5.52996847, 43.49045736];;FRIENE0043023;FRS28E134257;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.26803271;48.92939691;;;; +;;;;;;;;FRCPIE6589545;L0DBRWYOEI;Vitré, Audi Volkswagen Daniel Mouton;;22 chemin de la Belle Isnarde 83990 Saint-Tropez;;[7.069095, 43.623003];;FRCPIE65302151;FRCPIE67410252;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.09837296;50.40535504;;;; +;;;;;;;;FRN54E18752;AVGTCZQU9B;Nogent-l'Artaud, Marché;;2 Rue De La Folie 14000 Caen;;[5.541409, 43.477967];;FRIENE0043024;FRCPIE67268251;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.56440864;50.39211132;;;; +;;;;;;;;FRN54E18751;MLFLCWKQQC;Laon, Parking de la Plaine;;21 Rue D'ensisheim 68840 Pulversheim;;[7.19029424, 47.87876097];;FRS28E134784;FRS28E139030;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.29787;45.17546501;;;; +;;;;;;;;FRCPIE6631485;LLJCP3OVP21SAS;Saint-Quentin, Piscine;;Rue Du Crêt De Mars 42150 La Ricamarie;;[4.744058, 44.468806];;FRS37E6023;FRCPIE66642052;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9622;45.15738978;;;; +;;;;;;;;FRCPIE6589465;GMQ6WNJ7DC;Soissons, Jeu d'Arc;;Place de Verdun 69460 Blacé;;[7.578482, 48.879555];;FRS37E6024;FRCPIE66642051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.208492;-20.9455;;;; +;;;;;;;;FRCPIE6589125;VSWHWM;Guise, Lesur;;2 Rue De Soultzmatt 68570 Soultzmatt;;[4.26803271, 44.39123414];;FRCPIE65750951;FRS41E200505;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.39139;-21.0141679;;;; +;;;;;;;;FRCPIE6588995;VRSEKPOETD;Laon, Hôtel de ville;;2 Hameau De L'abbaye 39150 Grande-Rivière Château;;[1.09837296, 47.45462025];;FRCPIE66587651;FRS41E200504;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32277;49.065371;;;; +;;;;;;;;FRCPIE6721155;ZXHQKBCDP8;Ressons-le-Long, Poulandon;;106 Rue Du Mont-Cenis 73500 Val-Cenis;;[5.56440864, 46.64140412];;FRCPIE67413451;FRCPIE66641652;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.62901;49.14844108;;;; +;;;;;;;;FRCPIE6535055;ZTXNJV4UMI;Mercin-et-Vaux, Bains-du-Lac;;62 Rue Henri Déchaud 42100 Saint-Étienne;;[7.29787, 47.961414];;FRCPIE67413452;FRCPIE66641651;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.28601;48.7357212;;;; +;;;;;;;;FRCPIE6733705;ZACLSUBH9M;Etreux, Port fluvial;;25 Boulevard Camille Dagonneau 58640 Varennes-Vauzelles;;[3.9622, 49.063363];;FRIONE409101;FRS88E145650;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3195;49.205;;;; +;;;;;;;;FRSHEE86;WJPBSARJUV;Cuffies, François Mitterrand;;14 Avenue Du Pré-Aily 4031 Liège;;[-1.208492, 48.1096611];;FRIONE409102;FRS88E145648;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.62036;45.7597;;;; +;;;;;;;;FRSHEE85;XXZV8DAA0C;Beaurevoir, De Gaulle;;Balmoral 28 4900 Spa;;[3.39139, 49.0662];;FRIONE409103;FRCPIE66892552;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.147;45.7644;;;; +;;;;;;;;FRCPIE6582395;AAPOEUSRPM;Montigny-Lengrain, Vaudrial;;4 Avenue Du Médipôle 38300 Bourgoin-Jallieu;;[3.32277, 48.9656];;FRIONE409104;FRCPIE66892551;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.29915;44.917315;;;; +;;;;;;;;FRCPIE6582075;GKA7W3JCGW;Montreuil, Decathlon;;Rue du morvan 54519 Vandœuvre-lès-Nancy;;[3.62901, 49.5643];;FRIONE40915;FRS28E139015;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.65554508;46.47176608;;;; +;;;;;;;;FRCPIE6582065;B2HE7Y57KD;Saint-Martin-sur-le-Pré, Delhorbe Automobiles Volvo;;Chemin du Chambon 63500 Issoire;;[3.28601, 49.839];;FRCPIE65302152;FRCPIE67268252;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32898;48.897452;;;; +;;;;;;;;FRSHEE87;EEIECWCICF;Reims, Delhorbe Automobile Volvo;;80 avenue de la Muzelle 38860 Les Deux Alpes;;[3.3195, 49.3919];;FRCPIE66340951;FRCPIE67201452;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.30814;46.890697;;;; +;;;;;;;;FRCPIE6585715;WIUMZLWTQX;Reims, Delhorbe Automobiles Hyundai;;3 Route Du Linge 68140 Hohrod;;[3.62777, 49.8986];;FRCPIE67418051;FRS51E93669;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.09269;47.9626;;;; +;;;;;;;;FRCPIE6586685;U1KC483SJF;Saint-Denis, Rue du stade de l’est;;15 Quai De La Vicomté 76400 Fécamp;;[3.62036, 49.5648];;FRCPIE67418052;FRCPIE67201451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.41643188;49.050882;;;; +;;;;;;;;FRCPIE6586635;XEBBF2YBFN;Saint-Martin-sur-le-Pré, Dehlorbe Automobiles Hyundai;;35 Chemin de la Croix Pivrot 69110 Sainte-Foy-lès-Lyon;;[3.147, 49.3877];;FRCPIE67418351;FRCPIE66639452;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.35470347;48.31808191;;;; +;;;;;;;;FRCPIE6585765;CAWYATQLP8;Crouy, Général Patton;;2 Rue du Caducée 34090 Montpellier;;[3.29915, 49.3799];;FRCPIE67418352;FRCPIE66639451;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.08473895;48.31828217;;;; +;;;;;;;;FRSHEE88;BIJOFRFG1E;Braine, Place Charles de Gaulle;;3 avenue Pierre Mendès France 22950 Trégueux;;[3.65554508, 49.99203596];;FRIONE438902;FRS28E139348;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.08478188;50.352879;;;; +;;;;;;;;FRCPIE6584335;UFKNQYMEB6;Pont-Evêque, Rue du Champ de Course;;23 Rue Du Chemin Des Dames 02860 Chamouille;;[3.32898, 49.4003];;FRIONE438903;FRS88E145638;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.50175;44.92366478;;;; +;;;;;;;;FRCPIE6584255;UJZ0SC4ZZC;Castres, Comptoir Commercial du Languedoc;;11 Rue Du Limousin 95310 Saint-Ouen-l'Aumône;;[3.30814, 49.9971];;FRIONE438904;FRS88E145636;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.35517581;48.800273;;;; +;;;;;;;;FRCPIE6583625;LLHYM3I892BB2I;Castres, CCL av. Charles de Gaulle;;Parc commercial - Rue de la Loge 94260 Fresnes;;[3.09269, 49.373];;FRIONE438905;FRS37E1375;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.35249;47.850251;;;; +;;;;;;;;FRCPIE6579405;SI6AYMQRSF;Lattes, Concession Diamant;;50 Allée Du Haut-Poitou 86360 Chasseneuil-du-Poitou;;[2.41643188, 48.85224905];;FRIONE438906;FRS37E1248;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.53182;48.63213926;;;; +;;;;;;;;FRN54E18703;NR1CEVICM8;Saint-Denis, Renault;;11 Rue Gay-Lussac 31250 Revel;;[4.35470347, 48.98087537];;FRIONE438908;FRS51E41644;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.92319429;45.8983228;;;; +;;;;;;;;FRCPIE6605525;QGHU4NZ1E1;Saint-Pierre, Renault;;Avenue des Censives 60000 Tillé;;[4.08473895, 49.23618569];;FRIONE43895;FRS51E41643;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.21293391;45.89835266;;;; +;;;;;;;;FRS37E119;NWS9EZWLMB;La Grande Paroisse, Rue de la Garenne;;1306 Route Nationale 74120 Megève;;[4.08478188, 49.23616118];;FRS18E112986;FRS88E145512;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.212832;46.95470032;;;; +;;;;;;;;FRSPSESHEL41;BCUFNF;Commune de Petit-Réderching, Rue de la Gare;;20 Avenue De La Fosse Des Pressoirs 77700 Magny-le-Hongre;;[55.50175, -20.898202];;FRS18E112987;FRS88E145510;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.259541;49.0986626;;;; +;;;;;;;;FRS37E118;H1FDA2VWZ8;Puzieux, Rue de Spatiel;;Village Charmettoger - Les Arcs 1800 73700 Bourg-Saint-Maurice;;[4.35517581, 48.98067116];;FRIONE403302;FRS28E134921;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.93247;48.537752;;;; +;;;;;;;;FRCPIE6571345;J7HVU7TKDJ;Rimsdorf, rue principale;;7 Avenue Charles De Gaulle 21200 Beaune;;[3.35249, 49.3989];;FRIONE403301;FRS51E93668;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.4906;49.08576759;;;; +;;;;;;;;FRSPSESHEL111;VPCHZV;Rouvroy, Place Tamboise;;78 Bis Route De Paris, Route Nationale 7 69260 Charbonnières-les-Bains;;[3.53182, 49.3415];;FRS37E5515;FRS51E93748;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.4602;48.632276;;;; +;;;;;;;;FRCPIE6655025;MONTABANNORD;Rouvroy, Place Roger Salengro;;Route Des Mésanges 38410 Saint-Martin-d'Uriage;;[4.92319429, 45.52570952];;FRS37E5060;FRN54E203729;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.899912;50.56614475;;;; +;;;;;;;;FRCPIE6571365;Lauzertemair;Commune de Valmeinier, Esplanade des Islettes;;32 Avenue Du Grésivaudan 38700 Corenc;;[2.21293391, 43.59465073];;FRIONE409301;FRFASE3302104;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.30014679;49.042103;;;; +;;;;;;;;FRCPIE6571335;montbartgar;Vaujany, CR Basse;;1850 Route De La Côte 2000 38250 Villard-de-Lans;;[2.212832, 43.59482];;FRIONE409302;FRN54E203728;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09757818;49.050688;;;; +;;;;;;;;FRCPIE6571325;montbetonmair;Le Port, Renault;;Route De Cuvry 57420 Féy;;[2.259541, 43.597814];;FRIONE409303;FRCPIE65573452;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.12649837;48.62476348;;;; +;;;;;;;;FRCPIE6737755;aucamtoul;Saint-Paul, Renault;;23 Hameau De L'abbaye 39150 Grande-Rivière Château;;[3.93247, 43.5894];;FRIONE409304;FRCPIE65573451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.90753401;49.04398311;;;; +;;;;;;;;FRIONE43970;ABVXRQ;Dizy, Avenue du général Leclerc;;1 Avenue Du Pont Juvénal 34000 Montpellier;;[55.4906, -20.8901];;FRIONE40935;FRS51E40008;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.90503399;49.044588;;;; +;;;;;;;;FRIONE44020;Gramontcim;Buffalo Verdun, Avenue de Metz;;2 Boulevard De La Jamagne 88400 Gérardmer;;[55.4602, -21.3343];;FRCPIE64978351;FRS51E40007;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.49386651;49.3738;;;; +;;;;;;;;FRIONE4402;parisotcafe;Sarrebourg, Impasse du Général de Maud Huy;;18 Quai de la Fecht 68040 Ingersheim;;[2.899912, 48.387296];;FRCPIE64978352;FRS51E39992;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.07743485;49.695;;;; +;;;;;;;;FRIONE4397;montbartmair;Creutzwald, Mairie;;3001 route des Hauts du Camp 83330 Le Castellet;;[7.30014679, 49.04953011];;FRCPIE65019451;FRS51E39991;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.3183;49.5669167;;;; +;;;;;;;;FRSPSESHEL11;lavildieut;Aubière, Résidence des Cézeaux;;6 rue du Château 22100 Dinan;;[6.09757818, 48.33466413];;FRIONE402501;FRCPIE66900552;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.26599292;49.3864;;;; +;;;;;;;;FRCPIE6567525;monteils;Clermont-Ferrand, Résidence Crous;;5 Rue De La Couronne 68340 Riquewihr;;[7.12649837, 48.92939691];;FRIONE402502;FRCPIE66900551;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.965007;49.3804;;;; +;;;;;;;;FRCPIE6567455;UW81KMON2C;Aurillac, Cournil Automobiles;;16 Place Delille 63000 Clermont-Ferrand;;[2.90753401, 50.40535504];;FRIONE402503;FRIENE0057024;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.40102222;49.9272;;;; +;;;;;;;;FRCPIE6642475;WEEQKT;Gamm Vert Lugny;;1 Rue Du Fléchet 85600 Montaigu-Vendée;;[2.90503399, 50.39211132];;FRIONE402504;FRIENE0057023;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.07420562;49.52242536;;;; +;;;;;;;;FRCPIE6567205;VYKWNA;Condé Sainte Libiaire;;6 Route De Paris 03410 Saint-Victor;;[6.49386651, 45.17546501];;FRIONE40255;FRIENE0057012;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.69625;49.8087;;;; +;;;;;;;;FRCPIE6567135;Negrepelisse;Verdun-sur-le-Doubs, Avenue du Président Borgeot;;984 Avenue De Daniate 32110 Nogaro;;[6.07743485, 45.15738978];;FRS37E5209;FRIENE0057011;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.11827;49.4032033;;;; +;;;;;;;;FRCPIE6566565;pommevic;Cornimont, Rue du Daval;;10 Rue Alfred Hartmann 68140 Munster;;[55.3183, -20.9455];;FRS41E5013;FRFASE3302103;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.08703;49.2601;;;; +;;;;;;;;FRCPIE6699585;XWWSHW;Bitche, Rue Général de Gaulle;;Place du Foirail 32450 Saramon;;[55.26599292, -21.0141679];;FRS41E5150;FRS51E93749;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.462643;49.5049;;;; +;;;;;;;;FRCPIE6699575;FWWAKK;Commune Le Mérévillois, Place de l'Hôtel de Ville;;52 rue de l'Alsace 88360 Rupt-sur-Moselle;;[3.965007, 49.065371];;FRS41E5151;FRFASE3302102;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.81495946;50.0168;;;; +;;;;;;;;FRSPSESHEL91;Montaubaned;Commune d'Aubigny-en-Artois, Place de la Gare;;15 bis rue Notre-Dame des Anges 06110 Le Cannet;;[5.40102222, 49.14844108];;FRS41E5162;FRFASE3302101;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.830157;49.5705;;;; +;;;;;;;;FRCPIE6737215;montaubanroger;Aurillac, Parking Labro;;1 bis rue Pierre et Marie Curie 22192 Plérin;;[7.07420562, 48.7357212];;FRS41E5163;FRS41E121604;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.027209;49.8394;;;; +;;;;;;;;FRCPIE6570275;montaubandr;Commune de Berling, 2 Rue Principale;;1 rue du Soua 22600 Loudéac;;[6.69625, 49.205];;FRCPIE65054351;FRS41E121603;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.83507;49.4979;;;; +;;;;;;;;FRCPIE6571155;Montricoux;Monéteau, Aire de Covoiturage A6 Nord;;460 Route de Rosporden 29000 Quimper;;[3.11827, 45.7597];;FRS28E128960;FRS28E134810;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.424899;49.57;;;; +;;;;;;;;FRCPIE6570455;montjoifetes;Hattigny, Mairie;;4 Rue Gustave Zédé 29200 Brest;;[3.08703, 45.7644];;FRS28E134835;FRS88E145773;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.086814459;49.3747;;;; +;;;;;;;;FRCPIE6570445;PMVNFH;Lagnieu, Allée Guy de La Verpillière;;139 Avenue Jean Jaurès 21000 Dijon;;[2.462643, 44.917315];;FRS37E5205;FRS88E145771;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.08853228;49.3859;;;; +;;;;;;;;FRSPSESHEL152;LDVNFW;Commune de Levier, Parking Douet;;Avenue Gaspard Monge 83130 La Garde;;[4.81495946, 46.47176608];;FRS37E5206;FRIENE0078024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5928524;49.0611;;;; +;;;;;;;;FRCPIE6737275;bourgdevisa;Marsilly, 15B rue Principale;;20 Avenue de Verdun 88160 Le Thillot;;[2.830157, 48.897452];;FRS37E5207;FRIENE0078023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.44218628;48.977;;;; +;;;;;;;;FRS37E1101;bruniquel;Molsheim, Gare;;Rue Des Messageries 39100 Dole;;[5.027209, 46.890697];;FRS37E5208;FRIENE0078012;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.240523;49.3802;;;; +;;;;;;;;FRCPIE6737305;chateau;Pange, parking mairie;;Bas Jeannot 39100 Choisey;;[6.83507, 47.9626];;FRCPIE67208651;FRIENE0078011;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.549566;49.3892;;;; +;;;;;;;;FRCPIE6737295;albias;Hattigny, atelier Municipal;;Avenue De Lahr 39100 Dole;;[7.424899, 49.050882];;FRCPIE67208652;FRS28E139424;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.96558337;49.383;;;; +;;;;;;;;FRS37E774;ENXVSY;Commune de Cysoing, Place de la République;;Place Precipiano 39100 Dole;;[2.086814459, 48.31808191];;FRS41E5014;FRS28E139423;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.34955611;49.2538;;;; +;;;;;;;;FRCPIE6576985;RNYVZB;Château-Thierry, place du Maréchal Leclerc;;3100 route des Hauts du Camp 83330 Le Castellet;;[2.08853228, 48.31828217];;FRCPIE64952551;FRIENE0062024;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.34955083;49.8397;;;; +;;;;;;;;FRCPIE6576965;XVHDDR;Bitche, Rue Maréchal Foch;;905 Avenue de l’industrie 34000 Montpellier;;[2.5928524, 50.352879];;FRS37E5514;FRS51E41685;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.11726363;49.8328;;;; +;;;;;;;;FRS41E13903;MNENFV;Fontenay-lès-Briss, Rue du Mont Louvet;;Rue Des Grands Moulins 88200 Saint-Étienne-lès-Remiremont;;[2.44218628, 44.92366478];;FRS37E4899;FRS51E41686;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.30002918;49.989362;;;; +;;;;;;;;FRCPIE6576835;UEEYXZ;Château-Thierry, place Jean-Moulin;;69 rue de la Tuilerie 83520 Roquebrune-sur-Argens;;[7.240523, 48.800273];;FRCPIE67447252;FRIENE0029023;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.498815;49.3761;;;; +;;;;;;;;FRS41E13906;mauza;Château-Thierry, place des Etats-Unis;;avenue Aristide Briand 76360 Barentin;;[3.549566, 47.850251];;FRS41E4843;FRS28E134214;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.35406181;49.1797;;;; +;;;;;;;;FRS37E2183;FOWAWH8MMK;Soissons - Bd Jeanne d'Arc 78;;239 Boulevard De Graville 76600 Le Havre;;[6.96558337, 48.63213926];;FRS41E4844;FRCPIE67065752;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.965054;49.9083;;;; +;;;;;;;;FRCPIE6575785;caussadegare;Crécy-sur-Serre, Roses;;184 avenue du Mont Riboudet 76000 Rouen;;[5.34955611, 45.8983228];;FRS37E4864;FRCPIE67065751;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.21714864;49.3737;;;; +;;;;;;;;FRSPSESHEL61;capucins;Sissonne, Piscine;;4 Boulevard Du 8 Mai 1945 16000 Angoulême;;[5.34955083, 45.89835266];;FRS37E4865;FRS51E42468;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.403476;49.3746;;;; +;;;;;;;;FRFASE330990;corbarieu;Soissons, Place Lamartine;;1698 Avenue de Draguignan 83130 La Garde;;[6.11726363, 46.95470032];;FRS41E4866;FRS51E42467;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.425641;49.3645;;;; +;;;;;;;;FRFASE330991;durfort;Soissons - Bd Jeanne d'Arc (école);;7 Rue Du Centre 25320 Boussières;;[6.30002918, 49.0986626];;FRS41E4867;FRIONE41685;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.123598575;49.8481;;;; +;;;;;;;;FRCPIE6577935;dunes;Hirson, Maréchal Joffre;;Golf Hotel de la Carte, RD 952 41150 Valloire-sur-Cisse;;[7.498815, 48.537752];;FRCPIE67410351;FRIONE416806;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.39804093;44.870304;;;; +;;;;;;;;FRSPSESHEL21;DHRGVC;Bruyères-et-Montbérault, rue Porte de Reims;;Place Alfred Dussard 32140 Masseube;;[6.35406181, 49.08576759];;FRCPIE67410352;FRIONE416805;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.400968;49.4342;;;; +;;;;;;;;FRIONE41380;YEMVUR;Itancourt, Neuve;;Rue Lamartine 32550 Pavie;;[6.965054, 48.632276];;FRS41E4880;FRIONE416804;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32367;43.3298;;;; +;;;;;;;;FRIONE4466;JDZMJF;Vic-sur-Aisne, Rue du Général Maunoury;;Allée Colonel Parisot 32110 Nogaro;;[3.21714864, 50.56614475];;FRS41E4881;FRIONE416803;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.62232;45.75966262;;;; +;;;;;;;;FRCPIE6631675;GNRKMK;Villers-Cotterêts, Piscine;;6 Chemin Du Solarium 33170 Gradignan;;[3.403476, 49.042103];;FRS41E4884;FRIONE416802;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8985553;49.005547;;;; +;;;;;;;;FRCPIE6573245;MMQAZA;Anizy-le-Château, Aigle Noir;;3 An Traon 29440 Saint-Vougay;;[7.425641, 49.050688];;FRS41E4885;FRIONE416801;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.31649;48.61277374;;;; +;;;;;;;;FRS41E20426;VRAGJQ;Le Nouvion-en-Thiérache, Salle des Fêtes;;11 Route De Toulvern 56870 Baden;;[2.123598575, 48.62476348];;FRS37E4900;FRIENE0029024;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.07527;44.77498471;;;; +;;;;;;;;FRS18E9842;KMNJNR;Laon, Gare;;Route Du Revard 73230 Les Déserts;;[3.39804093, 49.04398311];;FRS41E5000;FRIENE0029012;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.66592468;45.73287192;;;; +;;;;;;;;FRS88E16345;EKYSEG;Origny-Sainte-Benoite, Place Jean Mermoz;;Place Raoul Briquet 62580 Givenchy-en-Gohelle;;[3.400968, 49.044588];;FRCPIE67451051;FRS51E42569;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3436;49.869838;;;; +;;;;;;;;FRIONE4138;EBTDSH;Pinon, 7e BCA;;Chemin Du Golf 65200 Pouzac;;[3.32367, 49.3738];;FRCPIE67451052;FRIENE0029011;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.11368547;46.3306;;;; +;;;;;;;;FRCPIE6589695;SADYAZ;Laon, Place V. Hugo;;Rue Elie Charlas 32810 Preignan;;[3.62232, 49.695];;FRS41E4911;FRS28E130744;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.08724;49.4363;;;; +;;;;;;;;FRTNME18B92932;UKXZTU;Soissons - Bd Jeanne d'Arc, Etats-Unis;;Chemin De Halage 32250 Fourcès;;[3.8985553, 49.5669167];;FRS41E4912;FRS51E93790;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4508;49.029846;;;; +;;;;;;;;FRIONE12650;FKHQQM;Soissons, Mairie (parking Q. Deviolaine);;Boulevard du Nord 32250 Montréal;;[3.31649, 49.3864];;FRS41E4919;FRS51E93789;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.78648;48.9946;;;; +;;;;;;;;FRCPIE6599885;SZTURH;Mézy-Moulins;;Place du 8 Juillet 1977 32410 Castéra-Verduzan;;[3.32106, 49.3804];;FRS41E4920;FRS51E66955;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.62412;49.4071;;;; +;;;;;;;;FRSHEE77;MY72KDYCBP;Charly-sur-Marne, Morlot;;Avenue de Gascogne 32730 Villecomtal-sur-Arros;;[4.07527, 49.9272];;FRS41E4922;FRS51E66954;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.48756;49.8237;;;; +;;;;;;;;FRSHEE76;RUMFHQ;Soissons, Évêché;;16 route de Mont-de-Marsan 32460 Gers;;[3.66592468, 49.52242536];;FRS41E4923;FRTNME18B950971;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.45105;49.8775;;;; +;;;;;;;;FRSHEE75;EDJWMR;Soissons, Bd Jeanne d'Arc (centre radio);;Place Bataillon de l'Armagnac 32160 Plaisance;;[3.3436, 49.8087];;FRS41E4929;FRTNME18B950970;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.634;44.82537;;;; +;;;;;;;;FRSHEE74;ZZXQHP;Ressons-le-Long, Ecoquartier;;23 Rue Du Golf 21200 Levernois;;[3.11368547, 49.4032033];;FRS41E4930;FRTNME18B950931;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32853;50.59615599;;;; +;;;;;;;;FRSHEE73;Lafrancaise;Soissons, Quinquet;;5 Rue de Surotte 25320 Thoraise;;[3.08724, 49.2601];;FRS41E4931;FRTNME18B950930;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3223;43.18566882;;;; +;;;;;;;;FRS37E130;montaubanto;Villers-Cotterêts, Gendarmerie;;Route Du Golf 22560 Pleumeur-Bodou;;[3.4508, 49.5049];;FRS41E4932;FRTNME18B950891;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.52155;43.1977226;;;; +;;;;;;;;FRCPIE6599965;monclar;Chézy-sur-Marne, St-Fiacre;;Rue de Courtonne 14100 Glos;;[3.78648, 50.0168];;FRS41E4999;FRTNME18B950890;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.28589;47.26239792;;;; +;;;;;;;;FRCPIE6659155;golfech;Saint-Quentin Gare 2;;1 Boulevard Alexandre Fleming 25000 Besançon;;[3.62412, 49.5705];;FRCPIE66359551;FRTNME18B929411;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3259;47.78954572;;;; +;;;;;;;;FRS37E131;grisolles;Vervins, Hôpital;;Boulevard Charles de gaulle 25000 Besançon;;[3.48756, 49.8394];;FRCPIE66359552;FRS51E42568;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32161;49.03914381;;;; +;;;;;;;;FRS18E17911;faudoas;Bohain-en-Vermandois, Rue Paulin Pecqueux;;20 avenue Arthur Gaulard 25000 Besançon;;[3.45105, 49.4979];;FRCPIE66098051;FRIONE435501;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.14828;46.68271168;;;; +;;;;;;;;FRCPIE6600295;lamagistere;Soissons, Avenue de Paris;;Rue de la Préfécture - Parking Granvelle 25000 Besançon;;[3.634, 49.57];;FRCPIE67408352;FRS51E41687;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32714;44.56716292;;;; +;;;;;;;;FRCPIE6659145;monbequito;La Ferté-Milon, Aire de covoiturage;;5 rue de l'Orme de Chamars 25000 Besançon;;[3.32853, 49.3747];;FRCPIE67407851;FRS18E143319;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.08842;48.76418785;;;; +;;;;;;;;FRCPIE6600265;moissac;Buire, Rotonde;;Chemin De Courmateau 33290 Le Pian-Médoc;;[3.3223, 49.3859];;FRCPIE67407852;FRIONE440406;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.36727;48.242535;;;; +;;;;;;;;FRCPIE6600025;QJGGHJ;Soissons, Eglise Résurrection;;La Béchalière 49480 Verrières-en-Anjou;;[3.52155, 49.0611];;FRCPIE67407951;FRIONE440405;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.29575;49.3181843;;;; +;;;;;;;;FRCPIE6599985;NUMQRW;Soissons, Place Lino Ventura;;Ferme du Winkelhof 57400 Sarrebourg;;[3.28589, 48.977];;FRCPIE67407952;FRIONE440404;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.90333;47.19327037;;;; +;;;;;;;;FRIONE1265;FADXTQ;Soissons, Corbusier;;95 Avenue Des Remouleurs 40150 Soorts-Hossegor;;[3.3259, 49.3802];;FRCPIE67415151;FRIONE440403;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.451062;47.19260692;;;; +;;;;;;;;FRCPIE6600385;DUJPRC;Saint-Quentin, Parking de la Criée;;1-3 avenue du 18 Juin 1940 93800 Épinay-sur-Seine;;[3.32161, 49.3776];;FRCPIE67415152;FRIONE440402;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.31577;49.31810321;;;; +;;;;;;;;FRIONE44031;molieres;Artigues-près-Bordeaux, DBF Autos;;19 rue des Alliés 57050 Metz;;[3.14828, 49.3892];;FRCPIE67415351;FRIONE440401;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.12357;49.31839082;;;; +;;;;;;;;FRIONE44030;SO7YFPBWXL;Crédit Agricole Beauvais;;27 avenue de la Libération 53500 Ernée;;[3.32714, 49.383];;FRCPIE67415352;FRS28E130752;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.07166;49.23610163;;;; +;;;;;;;;FRFASE330230;ZSVJXFFR02;Lons, La Verderie;;2 Impasse De L'europe 57370 Phalsbourg;;[3.08842, 49.2538];;FRCPIE67408151;FRS28E130561;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.30931;48.75110645;;;; +;;;;;;;;FRCPIE6660255;RUIWFEJLLK;Clermont-Ferrand, Cuisine Plus;;19 rue de Metz 57470 Hombourg-Haut;;[3.36727, 48.9898];;FRCPIE67408152;FRS51E42589;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.30645;49.59440566;;;; +;;;;;;;;FRCPIE6660165;KHTEZ3S19A;Saint-Brice-sous-Forêt, Cuisinella;;1 Place Du Général Leclerc 67310 Wasselonne;;[3.29575, 49.8397];;FRCPIE67408251;FRS51E42588;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.31632;49.14865044;;;; +;;;;;;;;FRIONE4403;EQLLJPVXCO;Schiltigheim, Avenue de L'Europe;;100d Rue Marie Louise 68850 Staffelfelden;;[3.90333, 49.8328];;FRCPIE67408252;FRIONE432416;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.28611;46.6225991;;;; +;;;;;;;;FRIONE1013;YGNJTREMMH;Villenave-d'Ornon, Cycles et Nature;;100a Rue Marie Louise 68850 Staffelfelden;;[3.451062, 49.989362];;FRCPIE67408351;FRS28E128792;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.50235;44.61428527;;;; +;;;;;;;;FRIONE40790;IWWUMCVSIG;Chassieu, D2 Finance;;100g Rue Marie Louise 68850 Staffelfelden;;[3.31577, 49.3761];;FRCPIE67408451;FRS18E143320;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.12051;46.67115995;;;; +;;;;;;;;FRCPIE6602945;PMDA7DOBMH;Amiens, Crédit Agricole Brie Picardie;;100f Rue Marie Louise 68850 Staffelfelden;;[3.12357, 49.1797];;FRCPIE66098052;FRIONE44835;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.39063;50.71344104;;;; +;;;;;;;;FRCPIE6602545;XG3TDDGOMM;Montluçon, Résidence Crous;;100c Rue Marie Louise 68850 Staffelfelden;;[4.07166, 49.9083];;FRCPIE67408452;FRIONE435502;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.14008141;46.7498445;;;; +;;;;;;;;FRIONE4079;AZTNSXMBHG;Guignicourt, Rue de Proviseux;;100b Rue Marie Louise 68850 Staffelfelden;;[3.30931, 49.3737];;FRCPIE67408551;FRIONE448306;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.353198;46.45991517;;;; +;;;;;;;;FRIONE10120;SLCGOXFVYX;Essômes-sur-Marne, Rue du Jeu d'Arc;;213 Boulevard du Mercantour 06000 Nice;;[3.30645, 49.3746];;FRCPIE67408552;FRIONE448305;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.71672171;43.22059845;;;; +;;;;;;;;FRCPIE6603765;IEKST5G1ZL;Villiers-Saint-Denis, Rue du Pré Château;;75 Boulevard Du Cami-Salié 64000 Pau;;[3.31632, 49.3645];;FRCPIE67408651;FRIONE448304;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.56197322;48.98199846;;;; +;;;;;;;;FRCPIE6604025;IG8XKOL1LY;Vic-sur-Aisne, Saint Jean;;12 rue Sylvestre Lasserre 14360 Trouville-sur-Mer;;[3.28611, 49.8481];;FRCPIE67408652;FRIONE448303;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.96942499;46.74662089;;;; +;;;;;;;;FRS37E1968;QLLMFZXIXH;Sains-Richaumont, Place de l'Hôtel de Ville;;2a Avenue Jean Moulin 90000 Belfort;;[-0.50235, 44.870304];;FRCPIE67408751;FRIONE448302;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.305503;48.281484;;;; +;;;;;;;;FRCPIE6651895;SHP7YQXTW6;Vermand, Mairie;;D936E1 ZA Valade, Lieu dit 24100 Bergerac;;[2.12051, 49.4342];;FRCPIE67408752;FRIONE448301;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.58976;46.03362873;;;; +;;;;;;;;FRCPIE6603715;I9G0X0SWES;Mérignac, DBF Autos;;2 Rue Des Gamelines 78200 Buchelay;;[-0.39063, 43.3298];;FRCPIE67408851;FRCPIE66175152;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.96797;44.90926121;;;; +;;;;;;;;FRCPIE6603595;HWDOP47ZNA;Lesquin, Rue des Bouleaux;;Boulevard De Suffolk 14112 Biéville-Beuville;;[3.14008141, 45.75966262];;FRCPIE67408852;FRCPIE66175151;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.374131;48.95311449;;;; +;;;;;;;;FRIENE008901;LUBXMBZUNZ;E. Leclerc, Narbonne;;11 Rue Camille Blanc 78240 Chambourcy;;[2.353198, 49.005547];;FRCPIE67410751;FRIONE43555;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.26455;47.68657067;;;; +;;;;;;;;FRIONE4123;KNIMTITM2R;E. Leclerc, Oloron;;157 Rue De L'entrait 16430 Champniers;;[7.71672171, 48.61277374];;FRCPIE67410752;FRIONE435506;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.28606;43.40185939;;;; +;;;;;;;;FRCPIE6600975;UZ2ITISA9Y;E. Leclerc, Orvault Parking Aérien;;16 Avenue De L'agriculture 63100 Clermont-Ferrand;;[-0.56197322, 44.77498471];;FRS37E5512;FRIONE435505;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.11831;47.83697635;;;; +;;;;;;;;FRCPIE6726645;DLLYWL;E.Leclerc, Kingersheim;;Rue Pierre Latécoère 16100 Châteaubernard;;[4.96942499, 45.73287192];;FRS37E5513;FRIONE435504;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.7025;47.12095734;;;; +;;;;;;;;FRCPIE6726635;G2PRGCPO0G;E. Leclerc, Moisselles;;91 Route De Marienthal 67500 Haguenau;;[2.305503, 49.869838];;FRCPIE67407552;FRIONE435503;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.15;46.05259811;;;; +;;;;;;;;FRCPIE6726625;VLGWEW;E. Leclerc, Montceau-les-Mines parking hyper;;Boulevard Winston Churchill 14400 Bayeux;;[2.58976, 46.3306];;FRCPIE67407551;FRTNME18B929410;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.686231;45.75150525;;;; +;;;;;;;;FRIENE008902;AZ7U5AZUP6;E. Leclerc, Montélimar;;1 avenue Charles Lindbergh 33700 MERIGNAC;;[3.96797, 49.4363];;FRCPIE67407452;FRTNME089903991;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.13100246;45.75260553;;;; +;;;;;;;;FRCPIE6601395;RKXKTUYHMP;E. Leclerc, Phalsbourg;;1 Rue De L'hôtel De Ville 31120 Portet-sur-Garonne;;[3.374131, 49.029846];;FRCPIE67407451;FRTNME089903990;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.98143719;43.40173857;;;; +;;;;;;;;FRIONE41230;XLLMSNVNT8;E. Leclerc, Plouguernevel;;7 Rue De L'atlantique 29160 Crozon;;[3.26455, 48.9946];;FRCPIE66757451;FRS28E134341;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.61797799;44.87554985;;;; +;;;;;;;;FRCPIE6602145;G6UP3TUUTZ;E. Leclerc, Pont-Sainte-Maxence;;102 Boulevard Jean Allemane 95100 Argenteuil;;[3.28606, 49.8481];;FRCPIE66757452;FRS51E42108;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.58914992;48.93084288;;;; +;;;;;;;;FRCPIE6601775;HMPLJPJZBZ;E. Leclerc, Rezé;;42 Avenue Des Arches 13200 Arles;;[3.11831, 49.4071];;FRCPIE66757651;FRS51E42107;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.34189919;46.19570678;;;; +;;;;;;;;FRS55E6631;SRD9E7Z4IO;E. Leclerc, Louviers Incarville;;8 Rue Jean Rouxel 44700 Orvault;;[3.7025, 49.8237];;FRCPIE66757652;FRIENE0070024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34059102;43.51775442;;;; +;;;;;;;;FRIONE10130;SYGATUARH8;E. Leclerc, Lannion;;7 Avenue Cyprien Faurie 19100 Brive-la-Gaillarde;;[3.15, 49.8775];;FRIONE412901;FRIENE0070023;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.37266397;43.86358416;;;; +;;;;;;;;FRSHEE92;FCDNW73QHC;E. Leclerc, Lassigny;;805 Boulevard Darby 83700 Saint-Raphaël;;[-0.686231, 44.82537];;FRIONE412902;FRIENE0070012;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.75787184;49.00313849;;;; +;;;;;;;;FRCPIE6591685;JJWUMZACZF;E. Leclerc, Le Neubourg;;50 Allée Ninon Vallin 26500 Bourg-lès-Valence;;[3.13100246, 50.59615599];;FRIONE412903;FRIENE0070011;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.25487433;48.764557;;;; +;;;;;;;;FRCPIE6591675;JFVT9N4ES5;E. Leclerc, Louhans;;Route De Feurs 42360 Panissières;;[2.98143719, 43.18566882];;FRIONE412904;FRS28E134878;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.295977;45.59468697;;;; +;;;;;;;;FRIONE4315;HJ4XH5K9DO;E. Leclerc, La Teste de Buch;;22 Rue Du Bignon 35000 Rennes;;[-0.61797799, 43.1977226];;FRIONE412905;FRS51E42093;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.60894067;46.99932607;;;; +;;;;;;;;FRIONE43150;OEKE1PI8DM;E. Leclerc, La Roche-sur-Yon;;100 Rue Hubertine Auclert 29200 Brest;;[-1.58914992, 47.26239792];;FRIONE412906;FRS51E42092;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.57200064;47.04146327;;;; +;;;;;;;;FRSHEE93;ILZU0QWCER;E. Leclerc, Lumbres;;Route Du Val De Cuech 13300 Salon-de-Provence;;[7.34189919, 47.78954572];;FRIONE41295;FRIENE0098024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.57662868;46.28925255;;;; +;;;;;;;;FRS18E17041;HI8CYLTPBP;E. Leclerc, Lux;;161 Avenue Jean-Paul Sartre 17000 La Rochelle;;[2.34059102, 49.03914381];;FRCPIE66846651;FRIENE0098023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.60899529;44.41122908;;;; +;;;;;;;;FRCPIE6593425;NTGG7P8XLF;E. Leclerc, Luçon;;137 Cours Paul Doumer 17100 Saintes;;[4.37266397, 46.68271168];;FRCPIE66846652;FRIENE0098012;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.6089631;43.56790376;;;; +;;;;;;;;FRCPIE6593935;VTD24GRLDJ;E. Leclerc, Tarbes;;4 Boulevard Des Diables Bleus 21000 Dijon;;[4.75787184, 44.56716292];;FRCPIE66975651;FRIENE0098011;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.18306671;44.05156649;;;; +;;;;;;;;FRCPIE6649455;RJFZVVGX8O;E. Leclerc, Saint-Martin-sur-le-Pré;;5 Boulevard Des Diables Bleus 21000 Dijon;;[7.25487433, 48.76418785];;FRCPIE66975652;FRS28E137321;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.45815291;50.49892321;;;; +;;;;;;;;FRCPIE6593545;VSEYDG;E. Leclerc, Sevrey;;13 Avenue Jean Monnet 12100 Creissels;;[-3.295977, 48.242535];;FRS28E134752;FRTNME089903951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.84350716;46.8121653;;;; +;;;;;;;;FRCPIE6593495;MCARLUQ2VL;E. Leclerc, Sélestat;;7 Place de la Roche Noire 73450 Valmeinier;;[2.60894067, 49.3181843];;FRCPIE67555951;FRS37E15630;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.91933021;48.28278413;;;; +;;;;;;;;FRIONE4538;ZE3EDDITHO;E. Leclerc, Scachap Ruffec;;2 Boulevard Des Diables Bleus 21000 Dijon;;[-1.57200064, 47.19327037];;FRCPIE67555952;FRS37E15629;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.22570281;46.318161;;;; +;;;;;;;;FRIONE45380;MAGQFS;E. Leclerc, Valence;;70 Rue De Québec 17000 La Rochelle;;[-1.57662868, 47.19260692];;FRCPIE66762651;FRS28E139073;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.11732583;43.49607369;;;; +;;;;;;;;FRCPIE6644195;WUZEQNBUU0;E. Leclerc, Villeparisis;;Rue de l'Abbaye 76210 Gruchet-le-Valasse;;[2.60899529, 49.31810321];;FRCPIE66762652;FRS28E130906;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.40589264;47.642093;;;; +;;;;;;;;FRCPIE6593945;YKDY8UTUDA;E. Leclerc, Vouvray-Sur-Loir;;6 rue James Vacandart 80430 Beaucamps-le-Vieux;;[2.6089631, 49.31839082];;FRCPIE66144651;FRS51E41910;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.11008614;48.718814;;;; +;;;;;;;;FRCPIE6590015;XPD0Y4AZML;E. Leclerc, Saint-Jean-de-Luz;;Avenue Léo Lagrange 63300 Thiers;;[1.18306671, 49.23610163];;FRCPIE66144652;FRS51E41909;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.84835656;43.192046;;;; +;;;;;;;;FRCPIE6589935;YRPLK8JSQE;E. Leclerc, Sablé-sur-Sarthe;;Route D'arlon 57100 Thionville;;[-3.45815291, 48.75110645];;FRCPIE66145051;FRS51E41698;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.13346962;45.208576;;;; +;;;;;;;;FRCPIE6589845;SW0I6KKZAI;E. Leclerc, Saint-Doulchard;;19 Rue De Lunéville 57400 Sarrebourg;;[2.84350716, 49.59440566];;FRCPIE66145151;FRS51E41697;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.07980652;50.21212;;;; +;;;;;;;;FRCPIE6589775;VSN8XCGMXJ;E. Leclerc, Saint-Georges-de-Reneins;;Rue Maurice Ravel 17700 Surgères;;[0.91933021, 49.14865044];;FRCPIE66145152;FRCPIE66485152;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.34673378;48.75260609;;;; +;;;;;;;;FRCPIE6589755;S6ZRQZX1D5;E. Leclerc, Rivières - La Rochefoucauld Centre Auto;;13 Rue du 19 Mars 1962 59224 Thiant;;[5.22570281, 46.6225991];;FRCPIE67407251;FRCPIE66485151;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.84975347;49.37008542;;;; +;;;;;;;;FRCPIE6631495;HS9LF6WZTM;E. Leclerc, Rivières - La Rochefoucauld;;Avenue du Gros Grelot 60150 Thourotte;;[-1.11732583, 44.61428527];;FRCPIE67407252;FRS51E41690;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.462073;49.45808488;;;; +;;;;;;;;FRCPIE6589745;WU01S8EWX9;E. Leclerc, Saint-Jean-de-Luz privé;;450 Rue Pierre Brossolette 50110 Tourlaville;;[-1.40589264, 46.67115995];;FRIONE405302;FRS51E41689;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.18479771;49.10756782;;;; +;;;;;;;;FRCPIE6589735;UYYZ1I5HC8;E. Leclerc, Sarlat;;55 Rue du Marché Gare 67100 Strasbourg;;[2.11008614, 50.71344104];;FRIONE405304;FRS51E41688;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.88181591;48.4681;;;; +;;;;;;;;FRCPIE6590025;E48M4FWGEO;E. Leclerc, Sarre-Union;;13 Rue du Port du Rhin 67100 Strasbourg;;[4.84835656, 46.7498445];;FRIONE440407;FRS51E42110;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.60774973;50.34574686;;;; +;;;;;;;;FRCPIE6595255;XQUMZ7QBK6;E. Leclerc, Saint-Martin-de-Ré;;260 Rue Alphonse Adam 67100 Strasbourg;;[-1.13346962, 46.45991517];;FRCPIE67528052;FRS51E42111;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.43113034;50.10547019;;;; +;;;;;;;;FRCPIE6591165;HRKGJ6QXDH;E. Leclerc, Saint-Lys;;124 Boulevard André Sautel 17000 La Rochelle;;[0.07980652, 43.22059845];;FRCPIE67504051;FRIONE403601;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.6332048;46.17930297;;;; +;;;;;;;;FRCPIE6591145;MTUB5LCGWL;E. Leclerc, Saint-Pierre-du-Mont;;rue du General de Gaulle, Route de Bannalec 29390 Scaër;;[4.34673378, 48.98199846];;FRCPIE67504052;FRIONE403602;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.30083712;45.38837751;;;; +;;;;;;;;FRCPIE6591135;GXQCI6D93G;E. Leclerc, Saint-Prix;;14 Avenue Pasteur 08200 Sedan;;[4.84975347, 46.74662089];;FRS18E93955;FRTNME089903950;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.36738503;50.03117065;;;; +;;;;;;;;FRCPIE6591125;KJ5HXBD2S2;E. Leclerc, Bonneuil-sur-Marne express;;Rue Du 8 Mai 1945 49500 Segré-en-Anjou Bleu;;[7.462073, 48.281484];;FRS18E93956;FRTNME089903911;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.72131004;48.09107669;;;; +;;;;;;;;FRCPIE6591115;ZP2XBRNY7Q;E. Leclerc, Bourgoin-Jallieu;;Avenue de Verdun 46200 Souillac;;[0.18479771, 46.03362873];;FRCPIE65072751;FRTNME089903910;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.38832658;48.73735181;;;; +;;;;;;;;FRCPIE6591105;UH6ISR4DAZ;E. Leclerc, Levernois;;Unexpo 350 avenue de L'Epinette 59113 Seclin;;[4.88181591, 44.90926121];;FRCPIE65072752;FRTNME089903841;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.38698647;46.17864182;;;; +;;;;;;;;FRCPIE6591095;NKA62CFRIP;E. Leclerc, Beaune;;ZAC de la Grérie 60170 Ribécourt-Dreslincourt;;[2.60774973, 48.95311449];;FRS41E135151;FRTNME089903840;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.63342444;46.95758926;;;; +;;;;;;;;FRS37E16691;WQWWODAWMW;E. Leclerc, Bessines;;16 avenue d'Alsace 68700 Cernay;;[0.43113034, 47.68657067];;FRS41E135152;FRTNME089903761;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.22350978;49.21509989;;;; +;;;;;;;;FRCPIE6590195;NEI1A4E2LR;E.Leclerc, Biscarrosse Centre Auto;;12 Rue Herzog 68920 Wintzenheim;;[-1.6332048, 43.40185939];;FRS18E96889;FRTNME089903760;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.09547022;47.83017861;;;; +;;;;;;;;FRCPIE6596925;ODZG0S8OHF;E. Leclerc, Cannes La bocca;;Rue Carnot 59150 Wattrelos;;[-0.30083712, 47.83697635];;FRS18E96890;FRTNME089901361;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.35140609;46.82398213;;;; +;;;;;;;;FRS37E129;HSGDN5TMKB;E. Leclerc, Carpentras;;43-45 Quai Jules Guesde 94405 Vitry-sur-Seine;;[2.36738503, 47.12095734];;FRCPIE67514451;FRTNME089901360;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.18150558;49.60159176;;;; +;;;;;;;;FRCPIE6599565;M8SKCP6RWC;E. Leclerc, Carvin;;ZA Porte du Quercy 47500 Montayral;;[4.72131004, 46.05259811];;FRCPIE67514452;FRTNME089109381;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.48017663;49.06489579;;;; +;;;;;;;;FRCPIE6599535;BUE8MYS7P9;E. Leclerc, Chalon-sur-Saône;;Lieu-dit PRUNIERES 43620 Saint Pal de Mons;;[0.38832658, 45.75150525];;FRCPIE67528051;FRTNME089109380;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26082407;50.38126533;;;; +;;;;;;;;FRCPIE6599515;BZGNBR;E. Leclerc, Carhaix;;Avenue de Paris 60126 Longueil-Sainte-Marie;;[0.38698647, 45.75260553];;FRCPIE67528251;FRTNME089103181;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.477368;49.18870157;;;; +;;;;;;;;FRCPIE6599475;JFFCKZAJSW;Niort, Rue de l'Aérodrome;;7 Rue de L Hôpital 80135 Saint-Riquier;;[-1.63342444, 43.40173857];;FRS18E214304;FRTNME089103180;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.26726896;50.05887052;;;; +;;;;;;;;FRCPIE6599455;TWSE1GJQYS;Meyreuil, Rond-Point du Canet;;Avenue Ambroise Croizat 66330 Cabestany;;[1.22350978, 44.87554985];;FRCPIE67528252;FRCPIE66105252;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.85478746;48.70459912;;;; +;;;;;;;;FRCPIE6599275;VIY9LSWFOF;Vesoul, Rue Pierre Emmonot;;14 Rue Blaise Pascal 54320 Maxéville;;[7.09547022, 48.93084288];;FRS18E148843;FRCPIE66105251;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.84283778;46.881075;;;; +;;;;;;;;FRCPIE6599095;WSZEY4Y1GS;Vernouillet, Dreux Motors;;Centre Commercial Des Cloyes 70200 Lure;;[-1.35140609, 46.19570678];;FRS18E148844;FRS37E1286;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5111863;43.459331;;;; +;;;;;;;;FRCPIE6599315;N0JPXHXQ78;Ramatuelle, Route de l'Escalet;;15 Rue du Bout des Haies 41000 Blois;;[1.18150558, 43.51775442];;FRCPIE67266551;FRS37E1285;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.17062351;16.25249499;;;; +;;;;;;;;FRCPIE6586915;ZEAQE62RQJ;Meylan, Chemin du Vieux Chêne;;Grande Rue 25800 Valdahon;;[-0.48017663, 43.86358416];;FRCPIE67266552;FRS51E42377;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.96615552;16.25790761;;;; +;;;;;;;;FRIONE4124;LLIX5ZKSM1M3T2;Boisleux-Saint-Marc, Dubois Electricité;;D 810 64122 Urrugne;;[2.26082407, 49.00313849];;FRS28E129287;FRS51E42376;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.04123101;16.25229414;;;; +;;;;;;;;FRIONE41240;RUIVJ6JIHW;E. Leclerc, Argentan;;Route de Ponty 19200 Ussel;;[2.477368, 48.764557];;FRS18E108359;FRS28E139351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.94525698;49.1498;;;; +;;;;;;;;FRCPIE6599365;MLRMIEOLWC;E. Leclerc, Audun-Le-Roman;;Route De Ponty 19200 Ussel;;[5.26726896, 45.59468697];;FRS18E108360;FRCPIE67583252;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.85662027;43.35958975;;;; +;;;;;;;;FRCPIE6599405;I4EZXFLS0M;E.Leclerc, Bapeaume-les-Rouen;;Route de Limoges 24750 Trélissac;;[4.85478746, 46.99932607];;FRCPIE65537451;FRCPIE67583251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.55986421;47.44912;;;; +;;;;;;;;FRCPIE6599395;WPC00KCZXZ;E. Leclerc, Agneaux;;Route De Montauban 12200 Villefranche-de-Rouergue;;[4.84283778, 47.04146327];;FRS18E109656;FRIONE40365;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.409148;46.9011;;;; +;;;;;;;;FRCPIE6596835;AFRSGAL53C;Obernai, E. Leclerc;;Rue Des Sauts Cabris 14310 Villers-Bocage;;[-0.5111863, 46.28925255];;FRS18E109655;FRIONE403606;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.52300746;47.0162;;;; +;;;;;;;;FRIONE12640;RMYYKKNR3R;Fort Mahon Plage, Naturotel;;Rue du 11 Novembre 62138 Violaines;;[-1.17062351, 44.41122908];;FRS28E129928;FRIONE403605;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.149592;47.3894;;;; +;;;;;;;;FRCPIE6595775;ONVUHSIC32;E. Leclerc Bapaume;;rue du Onze Novembre 62138 Violaines;;[6.96615552, 43.56790376];;FRS18E109618;FRIONE403604;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.37487;47.7486;;;; +;;;;;;;;FRCPIE6595205;CJMEQHEFAA;E. Leclerc, Guéret Brico;;15 Rue Aristide Boucicaut 56000 Vannes;;[5.04123101, 44.05156649];;FRS18E214305;FRIONE403603;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.636987;47.7594;;;; +;;;;;;;;FRCPIE6595195;TCIFDITPA3;E. Leclerc, Firminy;;5 Place de la République 62980 Vermelles;;[2.94525698, 50.49892321];;FRS18E98369;FRIONE41275;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.790802;47.7493;;;; +;;;;;;;;FRCPIE6594765;TAUVNWVOHL;E. Leclerc, Etalondes;;3 Avenue Bernard Hirsch 95000 Cergy;;[4.85662027, 46.8121653];;FRS18E201365;FRIONE412704;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.80215;47.7442;;;; +;;;;;;;;FRCPIE6594145;AKLPHK;E. Leclerc, Douarnenez;;2 Rue Lavoisier C.C Quai 17 Zone Royan 2 17201 Royan;;[-3.55986421, 48.28278413];;FRCPIE67374151;FRIONE412703;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.01307564;43.699975;;;; +;;;;;;;;FRIONE1264;MP5DRUW85N;E. Leclerc, Dreux;;58 Avenue de Fouilleuse 92500 Rueil-Malmaison;;[-0.409148, 46.318161];;FRIENE0049012;FRS41E4616;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.90327691;43.715637;;;; +;;;;;;;;FRIONE41400;LLIA7NV5H5IHN2;E. Leclerc, Guéret Hyper;;87 Avenue François Mitterrand 85340 Les Sables-d'Olonne;;[5.52300746, 43.49607369];;FRCPIE67381052;FRCPIE65537452;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.04457019;49.938496;;;; +;;;;;;;;FRCPIE6596825;VXKSVK;E. Leclerc, Issoudun;;Zac de la Grange, 1 Rue des Chardonnes 2 41200 Romorantin-Lanthenay;;[6.149592, 47.642093];;FRCPIE67266651;FRIENE0035024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.13611955;47.910303;;;; +;;;;;;;;FRCPIE6596525;HTQSBOQOG8;E. Leclerc, Hauconcourt;;2 Rue Des Forts 59240 Dunkerque;;[1.37487, 48.718814];;FRCPIE67266652;FRS41E4582;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.4957;43.477805;;;; +;;;;;;;;FRCPIE6596035;BZR3NP5DYR;E. Leclerc, Château Gontier;;Avenue D'oradour-Sur-Glane 87200 Saint-Junien;;[6.636987, 43.192046];;FRCPIE67611651;FRS41E4583;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.57620346;47.00910414;;;; +;;;;;;;;FRCPIE6595995;QP2QGHOLTL;E. Leclerc, Chatellerault;;Route de Charenton 18200 Saint-Amand-Montron;;[5.790802, 45.208576];;FRCPIE67611652;FRS41E4586;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.86952585;47.21332426;;;; +;;;;;;;;FRCPIE6595975;PURIAGXR0E;E. Leclerc, Crèvecoeur-le-Grand;;La ville Neuve 22800 Saint-Brandan;;[2.80215, 50.21212];;FRS28E134823;FRS41E4587;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8766102;47.351112;;;; +;;;;;;;;FRIONE4140;ERYMURP2DU;E. Leclerc, Dizy;;Site de, La Croix Maurencienne 51370 Saint-Brice-Courcelles;;[-0.01307564, 48.75260609];;FRCPIE67373251;FRS41E24592;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.29828589;50.41933336;;;; +;;;;;;;;FRCPIE6566105;QIGUDGQUCV;E. Leclerc, Douai;;62 Boulevard Louis Armand 53940 Saint-Berthevin;;[5.90327691, 49.37008542];;FRCPIE67373252;FRS41E24893;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.39760523;43.701569;;;; +;;;;;;;;FRFASE331130;C2AJENOGKE;E. Leclerc, Creutzwald;;Rue Jules Vallès 35000 Rennes;;[1.04457019, 49.45808488];;FRCPIE67373451;FRS41E4605;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.34581395;45.19387613;;;; +;;;;;;;;FRCPIE6663275;ASJPOGWDW9;E.Leclerc, Pont-Rémy;;16 Rue Clos Chassaing 24000 Périgueux;;[-1.13611955, 49.10756782];;FRCPIE67373452;FRS41E4606;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.34782085;14.55460115;;;; +;;;;;;;;FRS18E11283;PDIWE44BBM;Pointel, Fromentel Autos;;150 Route de Brest 29000 Quimper;;[7.4957, 48.4681];;FRCPIE67373751;FRS41E4613;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.87636127;46.098816;;;; +;;;;;;;;FRCPIE6544925;OF2V5RUQC2;Les Herbiers, Fun Bowling 85;;Place De L'europe 78120 Rambouillet;;[1.57620346, 50.34574686];;FRCPIE67373752;FRS41E4614;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.00373123;43.699974;;;; +;;;;;;;;FRCPIE6528455;JTRLOAXURL;Fun Fréjus, 1810 route de Malpasset;;70 Rue Des Craies 70000 Pusey;;[2.86952585, 50.10547019];;FRCPIE67374152;FRS41E4615;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.17097903;43.7024;;;; +;;;;;;;;FRCPIE6528265;VHBVTE;Carrefour Grand-Camp, Les Abymes;;Les 4 Chemins 20137 Porto-Vecchio;;[1.8766102, 46.17930297];;FRS18E98368;FRS28E138014;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.68720882;43.702444;;;; +;;;;;;;;FRCPIE6528205;ECHCTB;Carrefour Saint-François, ZAC de Pradel;;La Cadivais - route de Nantes 44160 Pontchâteau;;[4.29828589, 45.38837751];;FRIONE460601;FRCPIE66180152;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.56079179;46.9226;;;; +;;;;;;;;FRCPIE6529785;FE7WITDLPX;Destreland, boulevard de Destrellan;;Zi Nord rue de L'Etang 35760 Saint-Grégoire;;[1.39760523, 50.03117065];;FRIONE460602;FRS41E4664;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.08138708;47.0391;;;; +;;;;;;;;FRCPIE6580375;VUYNGD;Freyming-Merlebach, Gare routière;;12 Rue de l'Industrie 68150 Ribeauvillé;;[-4.34581395, 48.09107669];;FRIONE460603;FRS41E4665;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.96230471;47.47642;;;; +;;;;;;;;FRIENE006601;VNJXRX;Saint-Pée-sur-Nivelle, Garage Antao;;274 Avenue Gallieni 42153 Riorges;;[1.34782085, 48.73735181];;FRIONE460604;FRS41E153650;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.08396356;47.1039;;;; +;;;;;;;;FRIONE40810;PWCMEH;L'Isle sur le Doubs, Rue Aristide Briand;;Rue De La Croix Mauricienne 51370 Saint-Brice-Courcelles;;[1.87636127, 46.17864182];;FRIONE46065;FRS41E153651;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.69562343;46.9452;;;; +;;;;;;;;FRCPIE6683635;HFIJQKRTJJ;Pontarlier, Rocade Pompidou;;Kervent 29250 Saint-Pol-de-Léon;;[2.00373123, 46.95758926];;FRCPIE66820451;FRS41E4674;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.89656484;47.318939;;;; +;;;;;;;;FRCPIE6683625;DVULJFPHTV;Saint-Gorgon-Main, Fruitière;;Rue D'epluches 95310 Saint-Ouen-l'Aumône;;[6.17097903, 49.21509989];;FRCPIE66820452;FRS41E4675;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.34369826;46.8135;;;; +;;;;;;;;FRIENE006602;MPLFZRRCH2;Pont-de-Roide, Intermarché;;C.C le Grand Mail 34 Rue Maurice Menton 40990 Saint-Paul-lès-Dax;;[-0.68720882, 47.83017861];;FRCPIE67266051;FRS41E4676;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.021222;47.2132;;;; +;;;;;;;;FRCPIE6560545;SGAGDZM0DN;Entzheim, Freshmile;;34 Avenue Descartes 33167 Saint-Médard-en-Jalles;;[0.56079179, 46.82398213];;FRCPIE67266052;FRS41E4677;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.743227;47.147744;;;; +;;;;;;;;FRCPIE6560535;F6SJHLNDHA;Freshmile M2A, Parking Kennedy;;Avenue Jean Burel 44460 Saint-Nicolas-de-Redon;;[2.08138708, 49.60159176];;FRCPIE67361251;FRS41E4678;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.5413194;47.392855;;;; +;;;;;;;;FRCPIE6529795;FYOCOK9B3F;Lutterbach, Carrefour Express;;2 Rue Léo Lagrange 42270 Saint-Priest-en-Jarez;;[3.96230471, 49.06489579];;FRCPIE67361252;FRS41E4679;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.2751846;47.448;;;; +;;;;;;;;FRCPIE6580405;VLN2PSDDZH;Freshmile M2A, Riedisheim Mairie;;2 Rue Des Tanneurs 57400 Sarrebourg;;[3.08396356, 50.38126533];;FRCPIE67362151;FRS41E4680;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.5892723;47.0585;;;; +;;;;;;;;FRCPIE6546025;NWRWARYFKP;Freshmile M2A, Parking Trois Rois;;Rue Des Pêcheurs 57400 Sarrebourg;;[6.69562343, 49.18870157];;FRCPIE67362152;FRS41E4681;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.81137;47.0473;;;; +;;;;;;;;FRCPIE6736555;LX4TJ9LIGD;Freshmile M2A, Parking Salvator;;San-Giuliano 20230 Alistro;;[1.89656484, 50.05887052];;FRS18E109617;FRS41E4682;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.57887062;46.9019;;;; +;;;;;;;;FRCPIE6736185;AW2Y62ZANM;Aire-sur-l'Adour, Mairie-Médiathèque;;11 Cours Charles De Gaulle 17100 Saintes;;[-0.34369826, 48.70459912];;FRS18E201364;FRCPIE66180151;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.580701;47.1068;;;; +;;;;;;;;FRCPIE6726845;P0XP87AAJ7;Aire-sur-l'Adour, Parking GES;;50 Avenue Du Commandant Camille Suzanne 83700 Saint-Raphaël;;[-1.021222, 46.881075];;FRIONE405305;FRIENE0025011;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.35128;47.1071;;;; +;;;;;;;;FRS28E12747;LOQVFXXZ4U;Péronne, Garage François;;1 rue Albert Camus 80480 Salouël;;[6.743227, 43.459331];;FRIONE410305;FRS18E126241;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.31933;47.0591;;;; +;;;;;;;;FRIONE4519;JJGA8L3JV7;Ingré, rue Emile Leconte;;ZI Nord 60130 Saint-Just-en-Chaussée;;[-61.5413194, 16.25249499];;FRCPIE67367052;FRIONE402702;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.76868;47.0477;;;; +;;;;;;;;FRIONE45191;Q60WEBZNBK;Aix-en-Provence, Gagneraud;;54 Rue de la Liberté 49070 Saint-Jean-de-Linières;;[-61.2751846, 16.25790761];;FRCPIE67367051;FRCPIE66520652;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.33398;46.8575;;;; +;;;;;;;;FRIONE45190;P4F3QRFJ1V;Beaune, Rue Buffon;;Avenue de la Mare Aux Daims Zac du Madrillet 76803 Saint-Étienne-du-Rouvray;;[-61.5892723, 16.25229414];;FRCPIE67364852;FRCPIE66520651;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.27853;46.8551;;;; +;;;;;;;;FRCPIE6736905;NLRCCHATCF;Besançon, Games Factory;;Impasse de la Sablière 58000 Saint-Eloi;;[6.81137, 49.1498];;FRCPIE67364851;FRS18E212077;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.36838;47.2143;;;; +;;;;;;;;FRFASE331150;M1F8WRHMWF;Dijon, Games Factory;;55 Boulevard Des Déportés 35400 Saint-Malo;;[-1.57887062, 43.35958975];;FRS18E207176;FRS18E212076;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.3336;47.0399;;;; +;;;;;;;;FRCPIE6528605;VPNHU2ZDUT;Liévin, Arthur Lamendin;;Bellevue, 208 Avenue de Tours 36250 Saint-Maur;;[6.580701, 47.44912];;FRS18E207175;FRS18E212027;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.34306;47.0948;;;; +;;;;;;;;FRCPIE6527915;OFTFKLBGGV;Aire-sur-l'Adour, Parking VERDUN;;Chemin De Saint-Lambert 83600 Fréjus;;[6.35128, 46.9011];;FRS18E188337;FRS18E212026;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.26194;47.2621;;;; +;;;;;;;;FRCPIE6737115;YGET3T8P8P;Grenoble, GEG;;7 avenue du Superbe Orenoque 80440 Boves;;[6.31933, 47.0162];;FRS18E188336;FRS18E205324;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.26354;47.4815;;;; +;;;;;;;;FRS88E16347;UCV3A9QN03;Centre Commercial Genipa;;Rue du 8 Mai 1945 80510 Longpré-les-Corps-Saints;;[6.76868, 47.3894];;FRS37E16754;FRS18E205323;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.926031;47.054;;;; +;;;;;;;;FRS28E12626;TNUS0N5LCV;Belleville en Beaujolais, Rue des Terres aux Dames;;5 rue des Indes Noires 80440 Boves;;[7.33398, 47.7486];;FRS18E207812;FRS28E134842;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.850912;47.2943;;;; +;;;;;;;;FRS28E12625;ICAF2FYXD8;Aire-sur-l'Adour, Mairie-SDIS;;de Paris 80120 Fort-Mahon;;[7.27853, 47.7594];;FRS18E207811;FRIONE40275;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.412251;46.7144;;;; +;;;;;;;;FRCPIE6696955;FT7GQAID6I;Aire sur l'Adour, Poste;;Pierre et Vacances Village Club Belle Dune, D 80120 Fort-Mahon-Plage;;[7.36838, 47.7493];;FRIONE41035;FRIONE402705;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.84408174;46.9924;;;; +;;;;;;;;FRCPIE6684585;F3LFNNOE3M;Aire-sur-l'Adour, Poste - 2;;4 rue de la République 80510 Longpré-les-Corps-Saints;;[7.3336, 47.7442];;FRIONE410306;FRIONE402704;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9460659;47.23433;;;; +;;;;;;;;FRIENE004202;RIG9LCTQGX;Doubs, Hypermarché;;2 rue des Marais 80260 Naours;;[7.34306, 47.7484];;FRIONE410303;FRIONE402703;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.059057;47.1819;;;; +;;;;;;;;FRIONE41480;UATAXSIP73;Amancey, Grand Rue;;46 rue du Jeu de Paume 80140 Senarpont;;[-0.26194, 43.699975];;FRCPIE67367852;FRS18E117402;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.77367206;43.4498;;;; +;;;;;;;;FRS88E15026;J2HGHKHSLJ;Dasle, Salle des Fêtes;;2 rue de la Talence 80100 Abbeville;;[-0.26354, 43.715637];;FRIONE410302;FRIENE0025012;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.70944237;43.657;;;; +;;;;;;;;FRS88E15025;R2QWWUUNL1;Quingey, Parking Rue des Fossés;;12 rue de l'île Mystérieuse 80440 Boves;;[2.926031, 49.938496];;FRS41E117722;FRS18E117401;;;;;;;;;;;;;;;;;;;;;;;;;;;;-60.9737496;43.7579;;;; +;;;;;;;;FRIONE4627;S5GFRFHWSW;Arçon, Pont de l'Oie;;Place Septime Houbron 80260 Flesselles;;[1.850912, 47.910303];;FRS41E117721;FRS28E130887;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.728289;43.63;;;; +;;;;;;;;FRIONE46270;NZLM3MS4GS;Saint Hippolyte, Esplanade des fêtes;;42 route Nationale 80140 Huppy;;[5.412251, 43.477805];;FRS18E181473;FRS18E205672;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.26174;43.9343;;;; +;;;;;;;;FRS88E16182;NCLUISOFLF;Saint-Point-Lac, Mairie;;Maurice Marlière 80100 Abbeville;;[4.84408174, 47.00910414];;FRS18E181472;FRS18E205671;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.26141;43.8593;;;; +;;;;;;;;FRIONE41481;BCIKXNCWR9;Besançon, Siège SYDED;;Lieu dit Figabruna, Rond-Point De Ceppe 20620 Biguglia;;[5.9460659, 47.21332426];;FRCPIE66378952;FRIONE40835;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.26142;43.9558;;;; +;;;;;;;;FRCPIE6534445;FZQRL62BMY;Etalans, Grande Rue;;Eyrignac 24590 Salignac-Eyvigues;;[5.059057, 47.351112];;FRCPIE66378951;FRIONE408306;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.261654;43.8505;;;; +;;;;;;;;FRCPIE6557805;WX2E9X4IMC;Autechaux - ZA EUROPOLYS;;Lieu Dit Taverna 20218 Piedigriggio;;[2.77367206, 50.41933336];;FRCPIE66378852;FRIONE408305;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.34236;44.0031;;;; +;;;;;;;;FRCPIE6557795;FIFWQ1FUV1;Mandeure, supermarché;;10 place du Général Leclerc 80460 Friaucourt;;[-0.26354, 43.701569];;FRCPIE66378851;FRIONE408304;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.06973;43.6137;;;; +;;;;;;;;FRCPIE6557785;E3LX6DF0I4;Morteau, Collège;;Rue Curie 80170 Rosières-en-Santerre;;[5.70944237, 45.19387613];;FRCPIE66345052;FRIONE408303;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.893086;43.34520961;;;; +;;;;;;;;FRCPIE6557775;FHNPHFUR1P;Gilley, Crêt;;de l'Ecole des Garçons 80135 Saint-Riquier;;[-60.9737496, 14.55460115];;FRCPIE66345051;FRIONE408302;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.8824;43.8843;;;; +;;;;;;;;FRCPIE6557945;LRX5I5HMT3;Pontarlier, Cinéma;;7 avenue Jean-Jaurès 80320 Chaulnes;;[4.728289, 46.098816];;FRS18E182395;FRIONE408301;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.38398;48.11934037;;;; +;;;;;;;;FRCPIE6557935;GTF6ZJQHLQ;Ornans, Place Gustave Courbet;;17 rue Anatole Jovelet 80780 Saint-Léger-lès-Domart;;[-0.26174, 43.699974];;FRS18E182394;FRIENE0025024;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.813725;43.6975;;;; +;;;;;;;;FRCPIE6534365;T9MXJNYNEM;Ornans, Parking voie de contournement;;104 Rue Marcel Thomas 80500 Contoire;;[-0.26141, 43.7024];;FRCPIE67367851;FRIENE0025023;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.30319;47.44773522;;;; +;;;;;;;;FRIONE4148;WZXY6YXQKL;Villers-le-Lac, Place Droz Bartholet;;31 rue Kléber 80520 Woincourt;;[-0.26142, 43.7024];;FRS18E206001;FRS41E4683;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.96517;45.52735706;;;; +;;;;;;;;FRIENE004201;MN2IP3OV9A;Hautepierre-le-Châtelet, Eglise;;31 rue du puits 80680 Sains-en-Amiénois;;[-0.261654, 43.702444];;FRCPIE66099352;FRS28E130534;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.272181;43.344;;;; +;;;;;;;;FRIONE4081;TYTYI3MTEH;Frasne, Gare;;15 rue Sainneville 80710 Quevauvillers;;[6.34236, 46.9226];;FRS18E150933;FRS41E4684;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.377671;43.6476;;;; +;;;;;;;;FRIONE43170;CI80EV2QJJ;Oye-et-Pallet, Salle des Fêtes;;Avenue du Vimeu Vert 80210 Feuquières-en-Vimeu;;[6.06973, 47.0391];;FRCPIE66099351;FRS41E4746;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.81312;43.77025322;;;; +;;;;;;;;FRS18E14876;DZTTFA557P;Pierrefontaine, Mairie;;3 rue de l'Eglise 80680 Saint-Fuscien;;[6.893086, 47.47642];;FRCPIE66095452;FRS41E4718;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.60546;43.5144;;;; +;;;;;;;;FRCPIE6530575;UHYAW6LFGQ;Arc-et-Senans, Rans;;46 rue du Château-d'eau 80260 Villers-Bocage;;[5.8824, 47.1039];;FRCPIE66095451;FRS41E4719;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.48002;43.9983;;;; +;;;;;;;;FRCPIE6530555;JMO7A9PAVP;Nods, Mairie;;Rue du 4 Septembre 80350 Mers-Les-Bains;;[6.38398, 46.9452];;FRS18E147513;FRS41E4720;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.34571;43.5983;;;; +;;;;;;;;FRCPIE6530465;MIVDIW60ET;Belleherbe, Mairie;;Place du Général Leclerc 80450 Camon;;[6.813725, 47.318939];;FRS18E147512;FRS28E134263;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.14584;43.6363;;;; +;;;;;;;;FRS18E10700;UX0C74ZEDL;Audincourt, Poste;;Parking rue du 11 Novembre 80800 Corbie;;[6.30319, 46.8135];;FRS18E205372;FRS41E4816;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.14793;43.5243;;;; +;;;;;;;;FRCPIE6542705;EGU6AL9UI6;Morteau, Gare;;Place du 8 Mai 80150 Crécy-en-Ponthieu;;[5.96517, 47.2132];;FRS28E130987;FRS41E4817;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.67085;43.9499;;;; +;;;;;;;;FRCPIE6530295;WCGDKEJF4J;Sancey, Mairie;;Rue Marcel Digeon 80470 Saint-Sauveur;;[6.272181, 47.147744];;FRS18E109051;FRS41E167439;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.28735;43.4917;;;; +;;;;;;;;FRIONE4317;P5KHA01Q5Y;Mouthe, Supermarché;;159 rue de l'Eglise 80880 Saint-Quentin-la-Motte;;[6.377671, 47.392855];;FRS18E109050;FRS41E167440;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.15813;43.7229;;;; +;;;;;;;;FRCPIE6531025;OKPUUNPHL4;Montbenoit, Abbaye;;Rue Des Tilleuls 80390 Fressenneville;;[6.81312, 47.448];;FRS41E2957;FRS41E4739;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.33487;43.6488;;;; +;;;;;;;;FRIONE40320;CXZBMR0ZO1;Lantenne Vertière, Ecole;;Rue Du 11 Novembre 1918 80460 Ault;;[6.60546, 47.0585];;FRS41E2956;FRS41E4740;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.53992;43.757;;;; +;;;;;;;;FRIENE002402;AIFFRKY5XV;Vercel-Villedieu, Carrefour;;1 Rue Du Pré Des Dames 39570 Montmorot;;[6.48002, 47.0473];;FRS37E117836;FRS37E4741;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.78209;43.8829;;;; +;;;;;;;;FRIENE002401;O8L0SVN1YZ;Simorre;;50 Avenue De La Fosse Des Pressoirs 77700 Magny-le-Hongre;;[6.34571, 46.9019];;FRS37E117827;FRS37E4742;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3396;43.652;;;; +;;;;;;;;FRIONE4032;IGEEE64TSJ;Riscle, Pyrénées;;Place du Maréchal de Lattre de Tassigny 67000 Strasbourg;;[6.14584, 47.1068];;FRS18E150932;FRS41E4745;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.65814;43.4906;;;; +;;;;;;;;FRIONE4685;RYCA2CSWBP;Jegun, Blvd Nord;;21 Chemin Des Dames 57370 Phalsbourg;;[6.14793, 47.1071];;FRS18E206002;FRS37E4747;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.84116;43.4287;;;; +;;;;;;;;FRIONE46850;MWJ3AW8XB5;Gimont, Piscine;;Sennola 20169 Bonifacio;;[6.67085, 47.0591];;FRS18E179308;FRS41E4685;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.60476;43.5783;;;; +;;;;;;;;FRCPIE6684575;JX3WYHQ0GZ;Lectoure, Parking le Bastion;;44 rue Goerges Besse 63100 Clermont-Ferrand;;[6.28735, 47.0477];;FRS18E179307;FRS37E4748;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.58382;43.73183265;;;; +;;;;;;;;FRCPIE6552195;O67PC5Z8LO;Eauze, Rochefort;;Quai Turckheim 67000 Strasbourg;;[6.15813, 46.8575];;FRS18E113071;FRS28E128756;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1953;43.4745;;;; +;;;;;;;;FRIONE47350;L3BRA1Y7LX;Condom, Jean-Jaurès;;Allée François Mitterrand 67400 Illkirch-Graffenstaden;;[6.33487, 46.8551];;FRS18E113070;FRCPIE67522651;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.46326;43.7032;;;; +;;;;;;;;FRCPIE6735845;X98XY5WWHQ;Fleurance, Pierre de Coubertin;;78 Allée de la Robertsau 67000 Strasbourg;;[6.53992, 47.2143];;FRCPIE67363952;FRCPIE67522652;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.774542;49.048734;;;; +;;;;;;;;FRS51E4967;PZWWQPXHOM;Sainte-Mère, Rue de la Plaine;;Place de la République 67000 Strasbourg;;[5.78209, 47.0399];;FRCPIE67363951;FRCPIE67523051;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.39595;48.95732671;;;; +;;;;;;;;FRCPIE6593605;D2FWMEF7HF;L'Isle-Jourdain, Place Saint-Bernard;;2 Rue Émile Mathis 67800 Hœnheim;;[6.3396, 47.0948];;FRCPIE67363552;FRCPIE67523052;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.733544;48.262531;;;; +;;;;;;;;FRCPIE6560565;JBVMTPZMH6;Chelan, Au Village;;Lergie 20250 Corte;;[6.65814, 47.2621];;FRCPIE67363551;FRCPIE66644151;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.08563;46.344752;;;; +;;;;;;;;FRCPIE6510835;YQJEVUUE5V;Gondrin, Fermanville;;Michel Ange 20167 Afa;;[6.84116, 47.4815];;FRCPIE67363252;FRCPIE66644152;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.460499;46.6534;;;; +;;;;;;;;FRCPIE6594565;TAI6K956YE;ZA LA BALORAIS , SAINT-PIERRE-LA-COUR;;Route De L'aéroport, D507 20290 Lucciana;;[6.60476, 47.054];;FRCPIE67363251;FRS41E4727;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.873202;48.3137515;;;; +;;;;;;;;FRCPIE6593355;HAKGNH2QU1;Aignan, Colonel Parisot;;Rue Des Ateliers 67210 Obernai;;[6.58382, 47.2943];;FRS28E134417;FRS41E4728;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.625206;46.37295353;;;; +;;;;;;;;FRIONE4735;FHE4S0TLNK;Parçay-Meslay, Geodis;;142 route de Bischwiller 67300 Schiltigheim;;[6.1953, 46.7144];;FRS18E203096;FRCPIE67409851;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.103122;43.121525;;;; +;;;;;;;;FRIENE006501;M8VPGPD5FN;Coise-Saint-Jean-Pied-Gauthier, Geoffroy EURL;;2 Rue Du Général Baron Fabre 56000 Vannes;;[6.46326, 46.9924];;FRS18E203095;FRCPIE67409852;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.372822;43.55967202;;;; +;;;;;;;;FRS08E5754;LLKGXP4CHU0PTM;Saint-Blancard;;180 Rue Caroline Aigle 29490 Guipavas;;[5.774542, 47.23433];;FRCPIE67367652;FRCPIE67410251;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.666379;43.76706704;;;; +;;;;;;;;FRS51E6149;SOLRFLNSDQ;Auch, Place Denfert Rochereau;;3 Rue Monge 22000 Saint-Brieuc;;[6.39595, 47.1819];;FRCPIE67367651;FRS41E4717;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.66865;44.92160355;;;; +;;;;;;;;FRS08E5753;H6MGEHRH8L;Labrie, Parking Cimetière;;1060 Rue Pierre Landais 56850 Caudan;;[0.733544, 43.4498];;FRCPIE67364652;FRS41E4716;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.07928;47.509418;;;; +;;;;;;;;FRS08E5752;ATGU49BCSH;Mirande, Place Paul Noulens;;8 Impasse André-Marie Ampère 58640 Varennes-Vauzelles;;[-0.08563, 43.657];;FRS41E2955;FRS41E4715;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.54465243;48.60121199;;;; +;;;;;;;;FRIENE006502;AIKEDRMXBL;Miradoux, Place du Foirail;;37 Avenue De La Résistance. 22300 Lannion;;[0.460499, 43.7579];;FRIONE402804;FRS41E4722;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.237184;44.163136;;;; +;;;;;;;;FRCPIE6601985;CIGMXJMDAM;Monferran-Savès, Route du Calvaire;;69 Rue De La Châtaigneraie 35600 Redon;;[0.873202, 43.63];;FRIONE40285;FRS41E4690;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.03418893;48.90295368;;;; +;;;;;;;;FRS51E12530;M90FZ6RVEV;Auch, Place Maréchal Lannes;;9 rue des Balayeurs 67000 Strasbourg;;[0.625206, 43.9343];;FRIENE0079011;FRS41E4691;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.083122;46.90606168;;;; +;;;;;;;;FRS51E1067;T9T4YNRQ8T;Marciac, Mairie;;Place de Bordeaux En face de l'entrée de Fra 67000 Strasbourg;;[0.103122, 43.8593];;FRIENE0079012;FRS41E4692;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.72062678;43.9707591;;;; +;;;;;;;;FRS51E4968;KAI86XVIQL;Cazaubon, Barbotan;;2 rue Gerlinde 67200 Strasbourg;;[0.372822, 43.9558];;FRIENE0079023;FRS41E4693;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.144442241;49.6976649;;;; +;;;;;;;;FRIENE001002;NHQEEP3OJC;Seissan, Place Carnot;;45 Rue De Keranfurust 29200 Brest;;[0.666379, 43.8505];;FRIENE0079024;FRCPIE64953451;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.646619;48.70277172;;;; +;;;;;;;;FRCPIE6585645;SMUUIBGAX6;Cologne, Parking Chemin de Ronde;;27 Rue Albert De Mun 56300 Pontivy;;[0.66865, 44.0031];;FRS28E134175;FRCPIE64977551;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.58347;43.136314;;;; +;;;;;;;;FRIONE43240;ERKIMUKWMI;Auch, Massena;;1 rue de la Mairie 80120 Quend;;[1.07928, 43.6137];;FRCPIE67420351;FRCPIE64977552;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.87569078;49.26570602;;;; +;;;;;;;;FRTNME19B91197;DPY7WNXRYD;Vic-Fezensac, Place Mahomme;;37 rue des Ecoles 80190 Mesnil-Saint-Nicaise;;[0.54465243, 43.34520961];;FRS41E3803;FRCPIE64977651;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.406859;47.95248388;;;; +;;;;;;;;FRIONE4324;RCTBEA2JQY;Valence-sur-Baïse, Blvd du Nord;;Place de la Mairie 80134 Hangest-en-Santerre;;[0.237184, 43.8843];;FRS41E3804;FRS41E4700;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.757224;48.93701953;;;; +;;;;;;;;FRIONE45420;Z8YVZWSQIE;Auch, Allée des Arts;;128 rue du 60E R.i 80310 Picquigny;;[-1.03418893, 48.11934037];;FRCPIE67420551;FRS41E4701;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.981634;49.47435194;;;; +;;;;;;;;FRIENE001001;ZKK7RLCGHF;Samatan, Place des Cordeliers;;D1001 80690 Ailly-le-Haut-Clocher;;[0.083122, 43.6975];;FRCPIE67420552;FRS41E17065;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.585688;48.60678758;;;; +;;;;;;;;FRIONE4542;C16DS3V7VF;Miélan, Pierre Primi;;Allée Georges Lamant 80300 Albert;;[0.72062678, 47.44773522];;FRS41E2954;FRS41E17066;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.16162;48.75911403;;;; +;;;;;;;;FRIONE45421;HCL9EMOH18;Montesquiou, Parking Village;;Rue du Pont 80580 Eaucourt-sur-Somme;;[6.144442241, 45.52735706];;FRS28E134208;FRS41E4704;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.0435403;48.935467;;;; +;;;;;;;;FRCPIE6507285;MMCTUADDCP;Mauvezin, Place du Foirail;;Route de Paris 80160 Flers-sur-Noye;;[0.646619, 43.344];;FRIONE402802;FRS41E4705;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.592221;49.7479;;;; +;;;;;;;;FRIONE43270;ITYFK2QUQW;Lombez, Stade;;Place Des Templiers 80150 Forest-l'Abbaye;;[0.58347, 43.6476];;FRS41E167612;FRIENE0072011;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.97845;49.75711771;;;; +;;;;;;;;FRS08E5771;NU0UK8KQ1U;Barcelonne-du-Gers, Place de la Garlande;;10 Venelle Lafleur 80000 Amiens;;[0.87569078, 43.77025322];;FRS41E167613;FRIENE0072012;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.590491;50.0637;;;; +;;;;;;;;FRCPIE6665965;UYDC6UXCXN;Saint-Ouen-l'Aumône, Geodis;;2 route de l'Etoile 80620 Domart-en-Ponthieu;;[0.406859, 43.5144];;FRS28E129289;FRIENE0072023;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.301174;49.8592;;;; +;;;;;;;;FRS08E20042;WOWEZM3YVL;Bonneuil-en-France, Geodis;;15 place de la Gare 80290 Poix-de-Picardie;;[0.757224, 43.9983];;FRS28E137348;FRIENE0072024;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.381984;49.8878;;;; +;;;;;;;;FRS08E5769;NWLLC5Y9PI;Velotte-et-Tatignécourt, Garage Marulier public;;Rue de la République 80490 Hallencourt;;[0.981634, 43.5983];;FRIENE0056011;FRS41E4706;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.592952;49.8468;;;; +;;;;;;;;FRSHEE95;W5FI5XLP32;Montluçon, Garage Norville;;15 place de la République 80290 Poix-de-Picardie;;[0.585688, 43.6363];;FRIENE0056012;FRS41E4707;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.929674;49.8942;;;; +;;;;;;;;FRSHEE94;SPHOAP76VH;La Roche-sur-Yon, Garage Phelippeau;;Avenue de la Baie de Somme 80210 Feuquières-en-Vimeu;;[0.16162, 43.5243];;FRIENE0056023;FRS41E4709;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.306926;49.7565;;;; +;;;;;;;;FRS08E5772;UMJPQGG6NH;Poussay, Garage Robert Automobiles;;Gare 80160 Conty;;[-0.0435403, 43.9499];;FRIENE0056024;FRS41E4710;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.328356;50.0148;;;; +;;;;;;;;FRIONE4101;FI7LYGYWRE;Huriel, Garage Schlaeppi;;Rue Jules Ferry 80140 Oisemont;;[0.592221, 43.4917];;FRIONE451601;FRS41E4711;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.87814433;49.9656;;;; +;;;;;;;;FRCPIE6684545;TAP2EUA8MR;Ollioules, Garage Star;;200 rue Argousiers 80410 Cayeux-sur-Mer;;[0.97845, 43.7229];;FRIONE451602;FRS41E4712;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.915598;50.0381;;;; +;;;;;;;;FRIONE4080;B6PXRPIOV4;Salernes, Garage de la Baume;;Parking 3 rue du 22E RMVE 80890 Condé Folie;;[0.590491, 43.6488];;FRIONE451603;FRS41E4713;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.2364;50.0286;;;; +;;;;;;;;FRIONE40800;J4HVLFJXYB;Nogaro, Avenue du Midour;;16 Rue des Huchers 80000 Amiens;;[0.301174, 43.757];;FRIONE402803;FRS41E4714;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.130678;49.84988351;;;; +;;;;;;;;FRIONE41010;ENKBOA6MC5;Valence, Route de Chabeuil;;3 Place des Britanniques 80360 Flers;;[0.381984, 43.8829];;FRIONE402801;FRS41E4721;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.45052567;50.3394;;;; +;;;;;;;;FRCPIE6685935;P4GE5YC7JS;Verrières-en-Anjou, Geodis;;4 Rue du Haut 80132 Buigny-Saint-Maclou;;[0.592952, 43.652];;FRCPIE67364651;FRS28E134902;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.173208;49.8963;;;; +;;;;;;;;FRSHEE78;QUNCIFCCI8;Saint-Jouan-des-Guérets, Garage Lucas;;5 D925 80600 Hem Hardinval;;[0.929674, 43.4906];;FRFASE3302803;FRS18E126242;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.596117;49.8835;;;; +;;;;;;;;FRS08E5761;GO3LHWGD06;Garage Loxane, Estillac;;Parvis Nicole Fontaine 80000 Amiens;;[0.306926, 43.4287];;FRIONE40535;FRIONE412702;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.44448;49.9466;;;; +;;;;;;;;FRS08E5760;TQAAFAZ1RT;Gundershoffen, Garage Duchmann;;11 rue du Pavé 80360 Fins;;[0.328356, 43.5783];;FRCPIE67126451;FRCPIE66853451;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1287134;50.314;;;; +;;;;;;;;FRS08E5759;MEPTJ9OWEG;Garage Cassani Dubois, Rue Donnet Zedel;;3 Rue Robert de Luzarches 80000 Amiens;;[0.87814433, 43.73183265];;FRCPIE67126452;FRCPIE67183852;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.47535476;50.2723;;;; +;;;;;;;;FRCPIE6513335;QJ1CPN7JU7;Villeneuve-lès-Avignon, boulevard Frédéric Mistral;;4 Rue Candelier 80360 Combles;;[0.915598, 43.4745];;FRCPIE66543051;FRCPIE67183851;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.879608;50.2231;;;; +;;;;;;;;FRS55E8127;SM903GKE9B;Florenville, Garage Didier;;3 Grande Rue 80510 Long;;[-0.2364, 43.7032];;FRCPIE66543052;FRSHEE242;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.25024844;46.256;;;; +;;;;;;;;FRS55E8126;NYOAPHU4JI;Mittelschaeffolsheim, Garage Diestel;;7 Route du Crotoy 80860 Noyelles-sur-Mer;;[2.130678, 49.048734];;FRSHEE791;FRSHEE241;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.03143944;43.5796737;;;; +;;;;;;;;FRS08E5762;C2C0H3ORFE;La Garde, Garage Foch;;1 place du Maisniel de Saveuse 80580 Pont-Rémy;;[2.45052567, 48.95732671];;FRSHEE792;FRSHEE212;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.93816102;43.8147048;;;; +;;;;;;;;FRCPIE6518615;UIDOGADTJG;Richeville, Route Nationale;;61 rue du Moulin du Roy 80100 Abbeville;;[6.173208, 48.262531];;FRSHEE801;FRSHEE211;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.47166975;43.1758711;;;; +;;;;;;;;FRCPIE6517155;XW3KNONHEE;Saran, Geodis Orléans public;;Place Jean Jaurès 80130 Friville-Escarbotin;;[2.596117, 46.344752];;FRSHEE802;FRIENE0040024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.97435221;43.3444747;;;; +;;;;;;;;FRCPIE6557815;AL6PSPCLF8;Gennevilliers, route Principale du Port;;39 impasse de la Gare 80440 Dommartin;;[-1.44448, 46.6534];;FRSHEE803;FRIENE0040023;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.584887;44.11633;;;; +;;;;;;;;FRCPIE6557825;ITQ6ULMJ59;Saint-Vigor-d'Ymon, Geodis Le Havre public;;3 rue Neuve 80440 Glisy;;[6.1287134, 48.3137515];;FRSHEE804;FRIENE0040012;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.64799158;46.26114326;;;; +;;;;;;;;FRFASE330260;VDP80ZN7FA;Le Plessis-Pâté, Geodis;;2 rue du Bac 80600 Beauquesne;;[2.47535476, 46.37295353];;FRFASE3302801;FRIENE0040011;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.33156329;49.217853;;;; +;;;;;;;;FRFASE330960;C6FVVB3MVR;Geodis Limeil public, rue Jean Monnet;;rue Raymond de Wazières 80560 Acheux-en-Amiénois;;[5.879608, 43.121525];;FRFASE3302802;FRCPIE66853552;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.795416392;50.1874;;;; +;;;;;;;;FRCPIE6769685;ETNBV1EF5O;Gennevilliers, Geodis;;des Canadiens 80350 Mers-les-Bains;;[6.25024844, 43.55967202];;FRFASE3302804;FRCPIE66853551;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.29830466;49.485848;;;; +;;;;;;;;FRIONE4089;FJMTSHA9FY;Ham, Mairie;;25 rue Léon Blum 80110 Moreuil;;[-0.03143944, 43.76706704];;FRIONE43805;FRCPIE66853452;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.65493811;46.17183;;;; +;;;;;;;;FRIONE40890;RTGNLZP5RI;Nesle, Jeanne d'Arc;;4 ruelle de Berny 80200 Estrées-Deniécourt;;[4.93816102, 44.92160355];;FRS37E7613;FRS28E129205;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.026832;49.150015;;;; +;;;;;;;;FRCPIE6632165;OS5AYN2RWQ;Saint-Quentin-la-Motte, Long Champ;;81 rue Jean Jaurès 80800 Corbie;;[-0.47166975, 47.509418];;FRS37E7614;FRCPIE67004652;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53880496;49.054628;;;; +;;;;;;;;FRS18E14028;FQNUI0CSO4;Cagny, Barbusse;;7 rue de la Gare 80750 Candas;;[-1.97435221, 48.60121199];;FRS08E129231;FRS37E1203;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8535064;49.0454;;;; +;;;;;;;;FRCPIE6551715;SDKEJCFATZ;Amiens, Longueville;;3 place de la Libération 80100 Abbeville;;[0.584887, 44.163136];;FRS08E129232;FRS37E1202;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.27027321;48.97678;;;; +;;;;;;;;FRS88E16328;D63HYFBJKD;Hornoy-le-Bourg, Dufour;;13 rue du pont d'Amour 80100 Abbeville;;[7.64799158, 48.90295368];;FRS37E7736;FRCPIE66031652;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.32457891;49.8128;;;; +;;;;;;;;FRCPIE6610765;BOQN0KHP5L;Amiens, Garibaldi;;Place du Maréchal Leclerc 80220 Gamaches;;[6.33156329, 46.90606168];;FRS37E7737;FRCPIE66031651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35606084;49.7018;;;; +;;;;;;;;FRCPIE6550965;KGVDHE;Ailly-sur-Noye, Mairie;;Rue Saint-Quentin 80240 Villers-Faucon;;[4.795416392, 43.9707591];;FRS28E130903;FRCPIE66113052;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.47526696;50.2155;;;; +;;;;;;;;FRCPIE6770395;NSXP47CUV6;Flixecourt, Strasbourg;;3 rue des Capucins 80100 Abbeville;;[5.29830466, 49.6976649];;FRIONE438002;FRCPIE66113051;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.271654;50.1807;;;; +;;;;;;;;FRSHEE178;LUC4FMQOJS;Airaines, 53e RICMS;;Place de Picardie 80120 Quend;;[7.65493811, 48.70277172];;FRIONE438003;FRS18E148665;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.07243;49.908878;;;; +;;;;;;;;FRS18E14871;QFNDSB;Saint-Ouen, Carnot;;1 rue des Fossés 80270 Airaines;;[6.026832, 43.136314];;FRIONE438004;FRS18E148664;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.91150034;49.9279;;;; +;;;;;;;;FRIONE4043;HKY1VPJFZJ;Flixecourt, ZAC Rue du Château;;9 rue du 23 Décembre 80115 Pont-Noyelles;;[1.53880496, 49.26570602];;FRIONE438005;FRS18E112365;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.46179;49.9795;;;; +;;;;;;;;FRIONE40430;GZB3NTGYRT;Harbonnières, Mesmy;;14 place Jean Jaurès 80210 Feuquières-en-Vimeu;;[1.8535064, 47.95248388];;FRIONE438006;FRS18E112364;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34641;50.0526;;;; +;;;;;;;;FRCPIE6543795;X5FEEIN90B;Fort-Mahon, Office de Tourisme;;15 rue ZA le Parc 80130 Friville-Escarbotin;;[2.27027321, 48.93701953];;FRIONE438007;FRS18E109670;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.29526;49.745562;;;; +;;;;;;;;FRCPIE6543785;M1UB8R9YFT;Mesnil-Bruntel, Jeu de Paume;;3 rue André Audinot 80400 Ham;;[0.32457891, 49.47435194];;FRIONE451604;FRS18E109669;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.90118;49.6602;;;; +;;;;;;;;FRCPIE6543575;KVY9BPSSNH;Molliens-Dreuil, Eglise;;21 bis Rue Charles Cagny 80630 Beauval;;[2.35606084, 48.60678758];;FRIONE451605;FRCPIE67371752;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.28636;49.9861;;;; +;;;;;;;;FRIONE4401;SJGU8UPEDR;Roisel, Mairie;;21 rue Raphaël Duprez 80370 Bernaville;;[2.47526696, 48.75911403];;FRIONE451606;FRCPIE67004651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.36253;50.2692;;;; +;;;;;;;;FRIONE44012;EGRXO7GJVB;Vron, Friez;;7 Rue du Phare 80550 Le Crotoy;;[2.271654, 48.935467];;FRIONE412501;FRCPIE67004851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.08123;49.8914;;;; +;;;;;;;;FRCPIE6770345;GR3CSHARYG;Rue, Beffroi;;Route de Ham 80190 Nesle;;[3.07243, 49.7479];;FRS18E205346;FRS88E145479;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.94277;50.157;;;; +;;;;;;;;FRCPIE6770385;FMNRHLYJDM;Le Crotoy, Jean Vadicocq;;Rue de la Mairie 80860 Nouvion;;[2.91150034, 49.75711771];;FRS18E186205;FRIONE402603;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.11913;49.69999386;;;; +;;;;;;;;FRCPIE6770375;HGSHBA4KAI;Ferney-Voltaire, Centre;;1 rue d'En Haut 80160 Thoix;;[1.46179, 50.0637];;FRS18E186206;FRIONE412701;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0659;49.8912;;;; +;;;;;;;;FRCPIE6770355;VIYOCDWK2D;Ferney-Voltaire, Mairie;;Rue Josse Van Robais 80100 Abbeville;;[2.34641, 49.8592];;FRS18E201975;FRCPIE66338652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.6702662;49.8769;;;; +;;;;;;;;FRCPIE6770325;B3UGVAMI5V;Fessenheim, Salle des Fêtes;;Rue Saint-Pierre 80230 Sant-Valery-sur-Somme;;[2.29526, 49.8878];;FRS18E201976;FRCPIE66338651;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.56315;49.8923;;;; +;;;;;;;;FRIONE40255;E2LLOSSIAV;Montpellier, Rue Ettore Bugatti;;37 Grand Rue 80120 Argoules;;[1.90118, 49.8468];;FRS18E147205;FRCPIE66338552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.95655;49.897935;;;; +;;;;;;;;FRIENE008702;AXLL5QQDT9;Nîmes, Rue John Mac Adam;;Zone Artisanale De Corbara Lieu-dit Prato, T3 20256 Corbara;;[2.28636, 49.8942];;FRS18E147206;FRCPIE66338551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0206;49.8911;;;; +;;;;;;;;FRIENE008701;PGS8EFRLLN;Narbonne, Rue demoge;;78 Rue De Louviers (La Croix Saint-Leufroy) 27490 Clef Vallée d'Eure;;[2.36253, 49.7565];;FRCPIE66325851;FRS51E41325;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.09822;50.1832;;;; +;;;;;;;;FRCPIE6557845;QDNIU62V9N;Béziers, Rue Max Jacob;;9 rue des Héros 67610 La Wantzenau;;[2.08123, 50.0148];;FRCPIE66325852;FRS51E41324;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.75484;50.0369;;;; +;;;;;;;;FRE10E768;YPPLUMHPKQ;Ales, Chemin du mas de la bedosse;;Place Mathieu Zell 67200 Strasbourg;;[1.94277, 49.9656];;FRS18E206381;FRIONE402653;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.66911;50.0124;;;; +;;;;;;;;FRIENE004501;ROSGBVYDNK;Ferney-Voltaire, Piscine;;Rue de la Bique 67550 Vendenheim;;[2.11913, 50.0381];;FRS18E206382;FRIONE402652;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.61484;49.7722;;;; +;;;;;;;;FRCPIE6561965;ZLMJZJ3PZH;Taissy, Rue Edouard Branly;;3 rue Principale 67990 Osthoffen;;[2.0659, 50.0286];;FRCPIE66955551;FRIONE402651;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.10757;49.7761;;;; +;;;;;;;;FRIONE4100;CJNS7ETPCQ;St-Valéry-sur-Somme, Jeu de Battoir;;1 rue du Lavoir 67113 Blaesheim;;[2.6702662, 49.84988351];;FRCPIE66955552;FRIONE402606;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.53424;49.9366;;;; +;;;;;;;;FRIONE41000;JKZFBQGI7U;Saint-Jean-du-Cardonnay, Rue Pierre Gilles de Gennes;;14 rue des Tilleuls 67204 Achenheim;;[1.56315, 50.3394];;FRIONE412504;FRIONE402605;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.86681986;49.8919;;;; +;;;;;;;;FRS28E17158;KZLRAD1NK3;Le Crozet, Chemin du Bas Bourg;;6 rue de Haldenbourg 67207 Niederhausbergen;;[2.95655, 49.8963];;FRIONE451607;FRIONE402604;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3375268;49.8895;;;; +;;;;;;;;FRIENE004502;OZAVWSNPPH;Châtillon-sous-les-Côtes, Rue du Pressoir;;Rue du Moulin 67115 Plobsheim;;[2.0206, 49.8835];;FRIONE412505;FRS28E134890;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0312769;49.8918;;;; +;;;;;;;;FRCPIE6565565;VZFPF5S0ZN;Faulquemont, Hôtel communautaire;;20 Rue De La Mairie 67960 Entzheim;;[3.09822, 49.9466];;FRIONE412506;FRCPIE67004852;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.25736117;49.9383;;;; +;;;;;;;;FRCPIE6566095;YV5RIITPOT;Faulquemont, Rue Jean Monnet;;Rue De La Mairie 67460 Souffelweyersheim;;[1.75484, 50.314];;FRIONE41255;FRS28E137349;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.120019;50.1542;;;; +;;;;;;;;FRS37E1831;KAEYN5LYTA;Woimbey, Chemin des Vignerons;;22 Allée Du Printemps 67000 Strasbourg;;[1.66911, 50.2723];;FRS18E206417;FRS51E41148;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.11770382;49.9519;;;; +;;;;;;;;FRS37E1070;P6GDR6CG8R;Thézy-Glimont, Gande Rue;;Route De Bischwiller 67300 Schiltigheim;;[1.61484, 50.2231];;FRS18E206419;FRS51E41147;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.074223;50.2714;;;; +;;;;;;;;FRS37E1069;EFHFMNWM27;Ercheu, Rue Soeur Saint-Vincent;;Place Du Maréchal De Lattre De Tassigny 67000 Strasbourg;;[6.10757, 46.256];;FRS18E150331;FRS51E41135;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.63007;49.9533;;;; +;;;;;;;;FRCPIE6562155;UDQVGJDSB8;Le Crotoy, Jules Verne;;6 rue Albert Calmette 67200 Strasbourg;;[7.53424, 47.9172];;FRS18E150332;FRS51E41134;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.019612;49.9465;;;; +;;;;;;;;FRS37E2488;TR0POUQCGY;Cayeux-sur-Mer, Corderies;;190 Route de Mittelhausbergen 67200 Strasbourg;;[3.86681986, 43.5796737];;FRS28E139383;FRS37E1239;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.856747;49.8557;;;; +;;;;;;;;FRS37E2422;QH0DVWC2XY;Sailly-Laurette, Rue d'Albert;;Rue du Général de Gaulle 67203 Oberschaeffolsheim;;[4.3375268, 43.8147048];;FRS28E139691;FRS37E1238;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.531192;49.74584581;;;; +;;;;;;;;FRSPSESHEL101;VIUG8CLD3R;Ailly-sur-Somme, Gare;;Lieu-dit Stiletto, Bretelle de Géant Casino 2 20090 Ajaccio;;[3.0312769, 43.1758711];;FRS18E186579;FRS51E40935;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.604848;50.0924;;;; +;;;;;;;;FRSHEE179;D2ZQGJMFFF;Méaulte, Monument aux Morts;;4 rue des Merles 67114 Eschau;;[3.25736117, 43.3444747];;FRS18E186580;FRS51E40934;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.61464;50.1103;;;; +;;;;;;;;FRCPIE6558885;KWFKOG6DAH;Thiepval, Musée;;Rue De La Brême 67000 Strasbourg;;[4.120019, 44.11633];;FRCPIE67364151;FRS28E134368;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.45532;44.92151277;;;; +;;;;;;;;FRCPIE6531355;QNU5WLRMLT;Arvillers, Place de l'Église;;22 Rue Des Pompiers 67300 Schiltigheim;;[6.11770382, 46.26114326];;FRCPIE67364152;FRS37E1411;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.42697;47.6185;;;; +;;;;;;;;FRCPIE6629385;EH4IDAEXBO;Ételfay, Grande Rue;;Rue De Rathsamhausen 67100 Strasbourg;;[4.074223, 49.217853];;FRS18E205345;FRCPIE67004952;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.94363;47.63;;;; +;;;;;;;;FRS08E5770;X2IJYCW9UM;Beaucourt-sur-l'Hallue, Salle des Fêtes;;Rue Du Roethig 67200 Strasbourg;;[1.63007, 50.1874];;FRIONE45945;FRCPIE67004951;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.62812;47.68422427;;;; +;;;;;;;;FRS08E5751;TEXAQQOGXS;Saint-Quentin-en-Tourmont, Garennes;;100 Route Des Romains 67200 Strasbourg;;[1.019612, 49.485848];;FRIONE459404;FRCPIE67371751;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.49746;47.62037;;;; +;;;;;;;;FRSHEE181;SMOCKAISVV;Amiens, Parking Jacobins 1;;Rue Des Malteries 67300 Schiltigheim;;[3.856747, 46.17183];;FRIONE459403;FRCPIE67370652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.609513;47.6224;;;; +;;;;;;;;FRSHEE180;Y6GAKTDMGZ;Doullens, Piscine;;Rue de Wasselonne 67000 Strasbourg;;[5.531192, 49.150015];;FRIONE451608;FRCPIE67370651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.20023;47.4261;;;; +;;;;;;;;FRCPIE6652755;QFDR0FZIXG;Roye, Place des Combattants;;Route D'oberhausbergen 67200 Strasbourg;;[6.604848, 49.054628];;FRIONE451609;FRCPIE67367351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.65235;47.7044;;;; +;;;;;;;;FRIONE43235;caylusbascule;Amiens, Parking Gare la Vallée;;Rue De L'hôpital Militaire 67000 Strasbourg;;[6.61464, 49.0454];;FRIONE451610;FRS18E188401;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.68852;47.6406;;;; +;;;;;;;;FRE10E767;IBKH2LGDHV;Amiens, Cimetière Saint-Acheul;;Place De La République 67000 Strasbourg;;[5.45532, 48.97678];;FRIONE451611;FRS28E134359;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.647152;47.5763;;;; +;;;;;;;;FRCPIE6646405;VLM91FGX8V;Amiens, Alsace-Lorraine;;73 Avenue De Strasbourg 67400 Illkirch-Graffenstaden;;[2.42697, 49.8128];;FRIONE451612;FRS18E117713;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.6175;47.8193;;;; +;;;;;;;;FRS37E248;JJYAMZXUCU;Amiens, Zénith;;Place André Malraux 67118 Geispolsheim;;[2.94363, 49.7018];;FRIONE45165;FRS18E117712;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.44307;47.885;;;; +;;;;;;;;FRCPIE6609555;OI2ALZD0UQ;Saint-Valéry-sur-Somme, Perrée;;29 Rue Du Général De Gaulle 67450 Lampertheim;;[1.62812, 50.2155];;FRS37E9051;FRS18E151322;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.59001;47.6208;;;; +;;;;;;;;FRCPIE6557355;LY7DK5AD7N;Amiens, Parking Jacobins 2;;21 Avenue Du Neuhof 67100 Strasbourg;;[1.49746, 50.1807];;FRS37E9052;FRS18E151321;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.29792;47.5739;;;; +;;;;;;;;FRIONE44011;YV9WPIXPRX;Oust-Marest, Rue Adolphe Mihatseck;;Rue De L'hippodrome 67550 Eckwersheim;;[2.609513, 49.908878];;FRS28E134509;FRCPIE67368252;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34536;47.5491;;;; +;;;;;;;;FRCPIE6729295;UOMK81HGEB;Warloy-Baillon, Maison médicale;;Rue De Londres 67000 Strasbourg;;[2.20023, 49.9279];;FRCPIE66647351;FRCPIE67368251;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.78809782;47.4665;;;; +;;;;;;;;FRCPIE6729345;XB2FPTW6L6;Moreuil, Norbert Malterre;;Place Du Schluthfeld 67100 Strasbourg;;[2.65235, 49.9795];;FRCPIE66647352;FRCPIE67367552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.31097;47.6956;;;; +;;;;;;;;FRCPIE6729315;SGEMIBGXBY;Loeuilly, Rue d'Amiens;;Allée De La Robertsau 67000 Strasbourg;;[2.68852, 50.0526];;FRS28E129905;FRCPIE67367551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.31302;47.4488;;;; +;;;;;;;;FRCPIE6531395;WQKIXJ3XWI;Bouttencourt, Mairie;;13 Rue Kageneck 67000 Strasbourg;;[2.647152, 49.745562];;FRCPIE66652751;FRCPIE67367452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.30784;47.7555;;;; +;;;;;;;;FRS88E15032;IA7F7BLY0N;Amiens, Gare Routière;;Rue Jacques Kablé 67000 Strasbourg;;[2.6175, 49.6602];;FRCPIE66652752;FRCPIE67367451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.266507;47.68532935;;;; +;;;;;;;;FRS88E16201;U45NFW8DLO;Amiens, Parking Perret;;Rue François Noblat 67000 Strasbourg;;[2.44307, 49.9861];;FRCPIE66104651;FRCPIE67367352;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.31095;47.7118;;;; +;;;;;;;;FRCPIE6730725;X7LH2QZYGH;Querrieu, Route Nationale;;75 Rue Des Jésuites 67100 Strasbourg;;[1.59001, 50.2692];;FRCPIE66104652;FRCPIE67364952;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.64344;47.6215;;;; +;;;;;;;;FRCPIE6730005;ROHSARMMTL;Doullens, Pauchet Goret;;Avenue De Colmar 67100 Strasbourg;;[2.29792, 49.8914];;FRCPIE66104851;FRCPIE67369452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.29797;47.6169;;;; +;;;;;;;;FRCPIE6729335;MGSFFZIVNT;Poulainville, Hippopotamus;;Place Du Cygne 67000 Strasbourg;;[2.34536, 50.157];;FRCPIE66104852;FRCPIE67364951;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.47289;47.4339;;;; +;;;;;;;;FRCPIE6729325;IXWB4EBYDV;Rue, Verdun;;Quai Saint-Thomas 67000 Strasbourg;;[2.78809782, 49.69999386];;FRCPIE66165351;FRCPIE67362552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5247;47.6294;;;; +;;;;;;;;FRCPIE6729355;RSAKTATWHB;Méricourt-l'Abbé, Mairie;;Rue De Lausanne 67000 Strasbourg;;[2.31097, 49.8912];;FRCPIE66427651;FRCPIE67362551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.48249;47.62926;;;; +;;;;;;;;FRIONE45180;AMRW3PLL2G;Poulainville, Place du 8 mai;;Place De Haguenau 67000 Strasbourg;;[2.31302, 49.8769];;FRIONE421601;FRCPIE67266852;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6274;47.64323;;;; +;;;;;;;;FRIONE45181;RSDAVBFCEE;Liomer, Place de la Libération;;Rue Saint-Léon 67000 Strasbourg;;[2.30784, 49.8923];;FRIONE421602;FRCPIE67266851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.30791;47.59207727;;;; +;;;;;;;;FRN54E18692;SX6GEG8ZZ9;Ailly-sur-Noye, Berny;;Rue Du Maréchal Lefèbvre 67100 Strasbourg;;[2.266507, 49.897935];;FRIONE421603;FRCPIE67266752;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.30589;47.917131;;;; +;;;;;;;;FRCPIE6622335;VQEXLSVRD6;Miraumont, Mairie;;Avenue Des Vosges 67000 Strasbourg;;[2.31095, 49.8911];;FRIONE421604;FRCPIE67266751;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.30787;47.774631;;;; +;;;;;;;;FRCPIE6729285;F2OPBGTHZ6;Abbeville, République;;Rue de la volonté 59650 Villeneuve-d'Ascq;;[1.64344, 50.1832];;FRIONE42165;FRS28E129076;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.42916;47.650833;;;; +;;;;;;;;FRCPIE6623895;SWGZXGSK7K;Valence, Fidsud CDBA;;Frédéric Tourte 31220 Cazères;;[2.29797, 49.8914];;FRIONE459401;FRS88E145497;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34281;47.423647;;;; +;;;;;;;;FRCPIE6623885;HNYSCUGFWO;Vesoul, Gare;;9 Rue De Champfleur 49124 Saint-Barthélemy-d'Anjou;;[1.47289, 50.0369];;FRIONE459402;FRS88E145495;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.67121;47.4071;;;; +;;;;;;;;FRCPIE6534535;C3XIBVJXZ3;Vesoul, Haberges;;ELIVIA, Z.I. La Coudère 49220 Le Lion d'Angers;;[2.5247, 50.0124];;FRCPIE67447251;FRS18E150514;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.56517;47.5766;;;; +;;;;;;;;FRIENE004702;PCG9MT1EER;Lure, De Gaulle;;Avenue Des Martyrs Du Pont-Long 64000 Pau;;[2.48249, 49.7722];;FRCPIE67410952;FRS18E150513;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.31279;47.8128;;;; +;;;;;;;;FRIENE004701;R2KKTURY5F;Vesoul, Place Renet;;35 Route De Nantes 56860 Séné;;[2.176, 49.7761];;FRCPIE67410951;FRS88E145481;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.81664;47.709747;;;; +;;;;;;;;FRS08E3548;PWW4OVOZ6V;Vesoul, Meillier;;7 Terrasse Rhône-Alpes 57400 Sarrebourg;;[1.6274, 49.9366];;FRS51E40810;FRS18E188402;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35330023;47.753;;;; +;;;;;;;;FRCPIE6557975;NJ4BNTOLRY;Rioz, Stade;;Rue Baden Powell 67200 Strasbourg;;[2.30791, 49.8919];;FRS51E40906;FRCPIE67378951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.7295;45.77976191;;;; +;;;;;;;;FRCPIE6557875;MMYWYPTXJS;Champagney, Frères Renaud;;Rue De Lingolsheim 67810 Holtzheim;;[2.30589, 49.8895];;FRS51E40897;FRCPIE67378952;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.83891;49.099824;;;; +;;;;;;;;FRCPIE6557865;VTLPHAV5IB;Vesoul, Intermarché Vaugine;;49 Rue De La Renaissance 67000 Strasbourg;;[2.30787, 49.8918];;FRS51E40896;FRIONE409401;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.93019521;43.55145892;;;; +;;;;;;;;FRCPIE6623905;JSBX7JXEXQ;Héricourt, Brossolette;;Rue Albert Schweitzer 67205 Oberhausbergen;;[2.42916, 49.9383];;FRIONE41025;FRCPIE67369451;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.14939;43.59593996;;;; +;;;;;;;;FRS88E16238;BWBZ2WP2CP;Luxeuil-les-Bains, Casino;;1 rue de Bourgogne 67100 Strasbourg;;[2.34281, 50.1542];;FRIONE410204;FRCPIE67369352;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.13954;48.1824;;;; +;;;;;;;;FRCPIE6564835;JMNDZF5K60;Saint-Loup-sur-Semouse, Mairie;;1 Rue De La Papeterie 67000 Strasbourg;;[2.31097, 49.9519];;FRIONE410203;FRCPIE67369351;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.49285865;49.092118;;;; +;;;;;;;;FRCPIE6535705;XPVDAUWIUL;Vesoul, Renet;;Rue Nelly Sachs 67200 Strasbourg;;[1.67121, 50.2714];;FRIONE410202;FRCPIE67368852;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.159957;46.07864515;;;; +;;;;;;;;FRCPIE6535375;TUOBRCUPX7;Héricourt, Europe;;Avenue Pierre Corneille 67200 Strasbourg;;[2.56517, 49.9533];;FRIONE410201;FRCPIE67368851;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16127;43.91875606;;;; +;;;;;;;;FRS88E15030;RHQHGUNUJO;Villersexel, Parking Loup;;Avenue François Mitterrand 67200 Strasbourg;;[2.31279, 49.9465];;FRS51E40867;FRCPIE67368452;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.07924;48.63837151;;;; +;;;;;;;;FRIONE46940;KPYZDARPHY;Montbozon, Com-com;;Rue De Lyon 67640 Fegersheim;;[1.81664, 49.8557];;FRS51E40866;FRCPIE67368451;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.68407;48.52228948;;;; +;;;;;;;;FRIONE4694;OWCZOVJJDA;Saulx, Grands Puits;;71 Rue Boecklin 67000 Strasbourg;;[2.35330023, 49.74584581];;FRS51E40815;FRCPIE67362752;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.14253;43.8566;;;; +;;;;;;;;FRIONE46941;XYVVZLUAV4;Gray, Mavia;;7 Rue Du Château 67380 Lingolsheim;;[2.7295, 50.0924];;FRS51E40814;FRCPIE67362751;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.76207;45.84284844;;;; +;;;;;;;;FRIONE4518;DEGQM5QJVX;Fresne-Saint-Mamès, Parking Carrefour;;Avenue Edouard Belin 31000 Toulouse;;[1.83891, 50.1103];;FRS51E40811;FRCPIE67266952;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.37407;47.6723;;;; +;;;;;;;;FRCPIE6541085;E2RZPOTRBD;Plancher-les-Mines, Marcel Gênez;;59 Rue Jacques Prévert 33700 Mérignac;;[4.93019521, 44.92151277];;FRS51E40803;FRCPIE67266951;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.27306;47.2795;;;; +;;;;;;;;FRCPIE6541055;XVDHGA;Lure, Place de la Libération;;1550 Route De Saint - Gilles 30000 Nîmes;;[6.14939, 47.6185];;FRS28E137387;FRS18E200483;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.15962;47.6209;;;; +;;;;;;;;FRCPIE6540995;CQADCS;Combeaufontaine, 15 Juin 1945;;155 Avenue Du 8 Mai 1945 86000 Poitiers;;[6.13954, 47.63];;FRS51E40802;FRS18E200482;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.75739;47.2915;;;; +;;;;;;;;FRCPIE6725925;verdun;Vesoul, Edgar Fauré;;659 Chemin Des Cardelines 13300 Salon-de-Provence;;[6.49285865, 47.68422427];;FRS28E203810;FRS18E117416;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.42996;47.5569;;;; +;;;;;;;;FRIONE4314;NTXBJ7UOFO;Champlitte, Musée;;Rue Des Pavés 59113 Seclin;;[6.159957, 47.62037];;FRS28E203809;FRS18E117415;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.25794;47.8413;;;; +;;;;;;;;FRIONE43140;Roquecor;Gray, Maréchal Leclerc;;16 Rue De La Cruppe 59650 Villeneuve-d'Ascq;;[6.16127, 47.6224];;FRCPIE66989052;FRS18E150316;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.27956;47.7652;;;; +;;;;;;;;FRCPIE6540215;saintnicolas;Vaivre et Montoille, Parking du lac 2;;16 Avenue Des Arches 13200 Arles;;[6.07924, 47.4261];;FRCPIE66989051;FRS18E150315;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.58802;47.601;;;; +;;;;;;;;FRCPIE6627505;realville;Frotey Les Vesoul, Eurotel;;Rue Guillaume Du Vair 13290 Aix-en-Provence;;[6.68407, 47.7044];;FRN54E187498;FRCPIE67061252;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.859;47.9226;;;; +;;;;;;;;FRCPIE6627515;JRZPUA;Pusey, Foyer des jeunes travailleurs;;555 Chemin De La Tourtugue 30100 Alès;;[6.14253, 47.6406];;FRN54E187497;FRCPIE67061251;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.73722;47.69877138;;;; +;;;;;;;;FRCPIE6543455;Liberation;Echenans, ZA Guinottes;;Avenue Du Grand Basque 64100 Bayonne;;[6.76207, 47.5763];;FRS37E56267;FRCPIE67060852;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.49847161;47.8267;;;; +;;;;;;;;FRIONE44010;CGXFXH;Corre, Place Général de Gaulle;;150 Allée De L'ermite 40090 Saint-Avit;;[6.37407, 47.8193];;FRS37E56266;FRCPIE67060851;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.88738;47.6837;;;; +;;;;;;;;FRCPIE6542295;YWHVYH;Chapelle Les Luxeuil, Station service;;1016 Boulevard De L'industrie 33260 La Teste-de-Buch;;[6.27306, 47.885];;FRS37E19691;FRCPIE67060752;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.15301;47.4546;;;; +;;;;;;;;FRCPIE6627535;EGDEZM;Lyoffans, Cimetière;;Chemin De Carthage 13700 Marignane;;[6.15962, 47.6208];;FRS37E19690;FRCPIE67060751;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.51354;43.6679;;;; +;;;;;;;;FRCPIE6541555;YYSPNW;Rioz, Rue Clair Soleil;;385 Route De Stanquet 40990 Mées;;[6.75739, 47.5739];;FRS37E19675;FRIONE40945;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.59214;43.9812;;;; +;;;;;;;;FRS18E11309;FXFDDN;Gy, Mairie;;Route Du 17 Octobre 1961 42400 Saint-Chamond;;[6.42996, 47.5491];;FRS37E19674;FRIONE409404;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1288;43.891;;;; +;;;;;;;;FRCPIE6577835;GCUBLN;Héricourt, Bérégovoy;;120 Impasse Jean Baptiste Say 34470 Pérols;;[6.25794, 47.4665];;FRS51E40907;FRIONE409403;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.174664;45.465818;;;; +;;;;;;;;FRIONE4378;serignac;Luxeuil-les-Bains, 8 Mai;;31 Avenue De La Libération 63800 Cournon-d'Auvergne;;[6.27956, 47.6956];;FRS28E139414;FRIONE409402;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.143673;45.6934;;;; +;;;;;;;;FRS08E3599;YDITYHBJKS;Combeaufontaine, Place de la gare;;Route Des Sables 97427 L' Étang-Salé;;[5.58802, 47.4488];;FRS37E1257;FRIENE0049023;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.78137498;46.513922;;;; +;;;;;;;;FRS08E3588;LXINTQKPIH;Mélisey, Route de Lure;;7 Avenue Édouard Belin 31400 Toulouse;;[5.859, 47.5493];;FRS08E144223;FRCPIE65711852;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.993921;43.30801307;;;; +;;;;;;;;FRS18E11282;ENFWY3FHBW;Intermarché Anatole;;11 RN3 97470 Saint-Benoît;;[6.73722, 47.7555];;FRIENE0062023;FRIENE0049011;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.365601;48.42329139;;;; +;;;;;;;;FRCPIE6536955;C16QZJT72Y;Sarreguemines, Route de Nancy;;Avenue Des Pyrénées 11400 Castelnaudary;;[6.49847161, 47.68532935];;FRIENE0062012;FRIONE401904;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.588925;45.70767024;;;; +;;;;;;;;FRIONE43780;N4MBOOZ97B;Sainte Foy d'Aigrefeuille, Avenue Roland Garros;;15 rue Jean Chalier 98800 Nouméa;;[5.88738, 47.7118];;FRIENE0062011;FRIONE410404;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.073609;48.688707;;;; +;;;;;;;;FRIONE40970;septfonds;Bourg-Saint-Bernard, Lieu dit le Pestre, Fournié Grospaud Réseau;;2 rue du Cerf 68190 Ensisheim;;[6.15301, 47.6215];;FRS37E4526;FRIONE410403;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.81502;45.442679;;;; +;;;;;;;;FRS08E5741;valencejean;Fraize, Rue Général François Ingold;;rue Vendémiaire 80100 Abbeville;;[5.51354, 47.6169];;FRS37E4525;FRIONE410402;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.76654;48.874334;;;; +;;;;;;;;FRIONE4092;SaintPorquier;Vaudemange, Francart;;217 Route De Lyon 67400 Illkirch-Graffenstaden;;[5.59214, 47.4339];;FRS37E4524;FRIONE410401;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.38046;48.75665765;;;; +;;;;;;;;FRTNME07910270;savenes;Intermarché Gannat;;Petite Rue De L'industrie 67118 Geispolsheim;;[6.1288, 47.6294];;FRS37E4523;FRFASE3309504;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.895957;43.93196066;;;; +;;;;;;;;FRIONE4126;JT57QTOIAB;Avignon, Foch Automobiles;;20 rue Pierre de Coubertin 67000 Strasbourg;;[6.174664, 47.62926];;FRIENE0033024;FRFASE3309503;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.57684;47.96471951;;;; +;;;;;;;;FRIONE41260;GCLIDDLXMP;Fléville-devant-Nancy, rue Jacqueline Auriol;;Avenue De L'europe 67300 Schiltigheim;;[6.143673, 47.64323];;FRIENE0033023;FRFASE3309502;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.11513399;50.37769734;;;; +;;;;;;;;FRCPIE6538095;HQBEJCHF0S;Illkirch-Graffenstaden, 150 Rue Urs Graf;;Rue Du Général Leclerc 67202 Wolfisheim;;[6.78137498, 47.59207727];;FRIENE0033012;FRFASE3309501;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.059012;48.9564;;;; +;;;;;;;;FRIONE40920;XLCIFNNICB;Fleurance, EPS Lomagne;;Rue Georges Burger 67800 Bischheim;;[5.993921, 47.917131];;FRIENE0033011;FRS55E66379;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.5944044;49.11377766;;;; +;;;;;;;;FRIONE4097;NO3UTM7ESA;Intermarché Thiers;;Rue Albert Calmette 67300 Schiltigheim;;[6.365601, 47.774631];;FRS28E128891;FRS55E66378;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.71262906;48.09236037;;;; +;;;;;;;;FRA68P68021001;HIUZKM0QXB;Lure, Intermarché;;Allée Pierre Pflimlin 67380 Lingolsheim;;[6.588925, 47.650833];;FRS28E134925;FRS41E4927;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.00364;46.18655661;;;; +;;;;;;;;FRLUMECARASSINS11;W0DDDMUY3L;Pesmes, Place du Marché;;Rue De Sélestat 67300 Schiltigheim;;[6.073609, 47.423647];;FRS08E144222;FRS41E4926;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.22667;45.24507897;;;; +;;;;;;;;FRZIME22AC70565;FTPT9EVHHC;Frotey Les Vesoul, Mairie;;Rue de Paris 67116 Reichstett;;[5.81502, 47.4071];;FRS37E15746;FRIONE40225;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.20113639;45.5369;;;; +;;;;;;;;FRZIME22AC70564;MHAS1DBV2O;Marnay, Chaufferie;;42 Rue Du Général Leclerc 67450 Mundolsheim;;[6.76654, 47.5766];;FRCPIE66435752;FRIONE402204;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.87593955;45.89527515;;;; +;;;;;;;;FRLUMEHOTELCHEVALBLANC11;VE3I1SNXAY;Dampierre-sur-Salon, Mairie;;Rue D'ypres 67000 Strasbourg;;[6.38046, 47.8128];;FRCPIE66435751;FRIONE402203;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.18957371;48.034409;;;; +;;;;;;;;FRZMAE22AC64555;UZHYYMLXNA;Faucogney-et-la-Mer, Place du Champ de Foire;;Rue De La Colonne 67100 Strasbourg;;[5.895957, 47.709747];;FRS37E1585;FRIONE402202;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.73848707;46.28927651;;;; +;;;;;;;;FRZMAE22AC64556;EOSAEXVXOL;Faverney, Druais;;Avenue Du Rhin 67100 Strasbourg;;[6.57684, 47.753];;FRS37E1584;FRIONE402201;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.65936;49.105122;;;; +;;;;;;;;FRZPEE22AC55849;HC39F8XCC0;Echenoz-la-Méline, Mairie;;Rue D'orbey 67100 Strasbourg;;[3.11513399, 45.77976191];;FRS51E40985;FRIONE41045;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.51691828;49.034662;;;; +;;;;;;;;FRZPEE24DC55848;PNTCUBAVK3;Vauvillers, Fontaine;;Rue Gréco 67200 Strasbourg;;[7.059012, 49.099824];;FRS51E40984;FRIENE0086011;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.51136;45.72249332;;;; +;;;;;;;;FRLMSE1000121983;QQCJJBHN5V;Ronchamp, 14 Juillet;;Rue Beethoven 67000 Strasbourg;;[1.5944044, 43.55145892];;FRS51E40929;FRIENE0086012;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.56555;48.326696;;;; +;;;;;;;;FRLMSE1000121976;ML8ZQJOCDL;Jussey, Champ de Foire;;Route De La Wantzenau 67800 Hœnheim;;[1.71262906, 43.59593996];;FRS51E40928;FRCPIE67365152;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.18114;48.738614;;;; +;;;;;;;;FRLMSE1000121977;KICUPJFZY5;Port sur Saone, Place du 8 mai;;Rue De L'école 67980 Hangenbieten;;[7.00364, 48.1824];;FRS41E3965;FRCPIE67375251;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.77339;48.958653;;;; +;;;;;;;;FRLMSE1000121978;Q2NDRSYOYC;Arc-lès-Gray, Couyba;;Rue Du Général De Gaulle 67640 Lipsheim;;[4.22667, 49.092118];;FRS41E3964;FRCPIE67369952;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.67749;50.68792454;;;; +;;;;;;;;FRLMSE1000121979;HSYIJGUBSD;Auch, Roger Salengro;;Rue Des Vosges 67540 Ostwald;;[3.20113639, 46.07864515];;FRS51E40915;FRCPIE67369951;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.56167;45.63093544;;;; +;;;;;;;;FRLMSE1000121980;SK1TRPWVYS;La Romieu, Boulevard Lacave;;Rue De La Robertsau 67800 Bischheim;;[4.87593955, 43.91875606];;FRS51E40914;FRCPIE67369752;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.10379;46.28645376;;;; +;;;;;;;;FRLMSE1000121981;OA0RW4NYDI;Saint-Clar, Place de la République;;Rue Saint-Laurent 67800 Bischheim;;[6.18957371, 48.63837151];;FRS37E15747;FRCPIE67369751;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.13818;45.868085;;;; +;;;;;;;;FRLMSE1000121982;XKFIUVLHYL;Hôtel Ibis La Terrasse;;36 Rue Berlioz 67450 Mundolsheim;;[7.73848707, 48.52228948];;FRS37E1350;FRCPIE67365252;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09598;49.14325703;;;; +;;;;;;;;FRLMSE1000121991;CVPP0IT0WU;Champniers, Hôtel Ibis;;Rue du Marais 67800 Hoenheim;;[0.65936, 43.8566];;FRS28E134257;FRCPIE67365251;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.63035209;48.64780704;;;; +;;;;;;;;FRLMSE1000121984;MJJBMETL1P;Les Sables-d'Olonne, Hôtel Ibis STYLES & BUDGET;;67 Avenue André Malraux 67400 Illkirch-Graffenstaden;;[3.51691828, 45.84284844];;FRCPIE67410252;FRCPIE67365151;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9035;43.8199057;;;; +;;;;;;;;FRLMSE1000121985;O1EWBAVT2R;Ainhoa, Rue Karrika;;Chemin Du Schwall 67112 Breuschwickersheim;;[6.51136, 47.6723];;FRCPIE67268251;FRIENE0086023;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.04208;46.608804;;;; +;;;;;;;;FRLMSE1000121986;QIGYFMBDEQ;Fouday, Hôtel Julien;;Rue De La République 67800 Hœnheim;;[5.56555, 47.2795];;FRS28E139030;FRCPIE66652052;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.59027;41.909315;;;; +;;;;;;;;FRLMSE1000121987;TMUDQRXWDT;Saint-Priest , Rue Aimé Cotton;;Rue Jacques Maritain 67120 Kolbsheim;;[6.18114, 47.6209];;FRCPIE66642052;FRCPIE66652051;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.600131;44.14649426;;;; +;;;;;;;;FRLMSE1000121989;YVXMZJ;Villebon-sur-Yvette, Hyundai;;Rue Émile Mathis 67800 Hœnheim;;[5.77339, 47.2915];;FRCPIE66642051;FRIENE0053024;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.49866;49.01167572;;;; +;;;;;;;;FRLMSE1000121990;NBPTPB;Hôtel Ibis Gare Châteaucreux;;Rue Du Maréchal Foch 67380 Lingolsheim;;[5.67749, 47.5569];;FRS41E200505;FRIENE0053023;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.770562;43.52868452;;;; +;;;;;;;;FRLMSE1000121973;EUTTDT;Magny-le-Hongre, Hôtel Dream;;Rue Du Général Leclerc 67201 Eckbolsheim;;[6.56167, 47.8413];;FRS41E200504;FRIENE0053012;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.378455;48.099197;;;; +;;;;;;;;FRLMSE1000121992;FFTJZD;Steinbourg, Hôtel Ecluse 34;;Rue Des Sept Arpents 67460 Souffelweyersheim;;[6.10379, 47.7652];;FRCPIE66641652;FRIENE0053011;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.179008;43.2659;;;; +;;;;;;;;FRLMSE1000121975;FSRMLH;Avignon, Hôtel Festival Sud;;2 Rue Jean Mermoz 68127 Sainte-Croix-en-Plaine;;[6.13818, 47.601];;FRCPIE66641651;FRIENE0086024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.770523;49.203711;;;; +;;;;;;;;FRLMSE1000121988;ANVVBU;Le Mans, Hôtel H24;;3 Cour Du Château 67310 Wasselonne;;[6.09598, 47.9226];;FRS88E145650;FRIONE40195;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4993222;47.83651;;;; +;;;;;;;;FRLMSE1000121974;SPXABC;Petite-Forêt, Hôtel Ibis Styles et Ibis Budget;;1 Boulevard de la Reine 78000 Versailles;;[6.63035209, 47.69877138];;FRS88E145648;FRIONE401903;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.18397726;45.41546181;;;; +;;;;;;;;FRLMSE1000100981;EKCQMR;Meaux, Kyriad Hôtel;;15 rue Emile Deschanel 92400 Courbevoie;;[5.9035, 47.8267];;FRCPIE66892552;FRTNMETERRA540120;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9603301;46.03226;;;; +;;;;;;;;FRLMSE1000100986;UNJRKT;Metz, Hôtel Kyriad;;Port de Bormes-Les-Mimosas 83230 Bormes-Les-Mimosas;;[6.04208, 47.6837];;FRCPIE66892551;FRIONE401902;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.206145;47.97468621;;;; +;;;;;;;;FRLMSE1000100978;PCHBYA;Bischwihr, Grand Rue;;Rue du Noyer aux Perdrix 77170 Sevron;;[5.59027, 47.4546];;FRS28E139015;FRCPIE66395052;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.398596;46.531099;;;; +;;;;;;;;FRLMSE1000100979;XKAKPT;La Flotte, Hôtel Le Richelieu;;D161 39570 Villeneuve-sous-Pymont;;[0.600131, 43.6679];;FRCPIE67268252;FRCPIE66395051;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.804629;45.28534;;;; +;;;;;;;;FRLMSE1000100977;TAVUZX;Fontanil-Cornillon, Hôtel Le Néron;;11 rue Roger Payet 97490 Saint-Denis;;[0.49866, 43.9812];;FRCPIE67201452;FRCPIE66394952;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.3980443;45.4200166;;;; +;;;;;;;;FRLMSE1000100976;NWTLJV;Treignac, Hôtel La Brasserie;;Boulevard Du Chaudron 97490 Saint-Denis;;[0.770562, 43.891];;FRS51E93669;FRCPIE66394951;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.78003218;47.00840403;;;; +;;;;;;;;FRLMSE1000100980;MYDKMD;Riom, Rue Louis Armstrong;;Rue des Trois Mares 97413 Cilaos;;[4.378455, 45.465818];;FRCPIE67201451;FRCPIE66394552;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.22049675;50.598908;;;; +;;;;;;;;FRLMSE1000100982;XJVQBA;Chartres-de-Bretagne, Hôtel La Chaussairie;;RD7 97423 Le Guillaume;;[0.179008, 45.6934];;FRCPIE66639452;FRCPIE66394551;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4726431;50.50677;;;; +;;;;;;;;FRLMSE1000100983;FWUXXF;Commentry, Hôtel Le Lyon Vert;;27ème KM - RN3 97418 La-plaine-des-Cafres;;[-1.770523, 46.513922];;FRCPIE66639451;FRIENE0067024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9079;45.596732;;;; +;;;;;;;;FRLMSE1000100988;UPKBXY;Saint-Lô, Hôpital Mémorial;;D26 97410 Saint-Pierre;;[-1.4993222, 43.30801307];;FRS28E139348;FRIENE0067023;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.17871845;48.64828872;;;; +;;;;;;;;FRLMSE1000100987;DWXWZJ;Saint-Ouen l'Aumône, Rue Louis Delage;;Route du Trou d'Eau 97434 Saint-Gilles-les-Bains;;[7.18397726, 48.42329139];;FRS88E145638;FRIENE0067012;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.43373965;45.56136;;;; +;;;;;;;;FRLMSE1000100984;MCYRPV;Saintes, Rue de Gemozac;;Rue Fleur de Jade 97438 Sainte-Marie;;[4.9603301, 45.70767024];;FRS88E145636;FRIENE0067011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.31707683;45.296859;;;; +;;;;;;;;FRLMSE1000100985;LNEXBM;Hyundai Troyes, Groupe Froment;;89 rue du Général de Gaulle 97420 Le Port;;[2.206145, 48.688707];;FRS37E1375;FRS51E49177;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.65746865;48.060172;;;; +;;;;;;;;FRMAPP000000006951;DDQTSB;Villeneuve-Saint-Georges, rue de Paris;;82 avenue du Général de Gaulle 97424 Les Avirons;;[4.398596, 45.442679];;FRS37E1248;FRS51E49176;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.80192;49.760985;;;; +;;;;;;;;FRLUMEPOINTSUBLIME11;QRHCVG;Villepinte, avenue charles de Gaulle;;96 rue Mahatma Ghandi 97419 La Possession;;[2.804629, 48.874334];;FRS51E41644;FRIONE421553;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.139213798;43.54042536;;;; +;;;;;;;;FRLUMELAGRANDEBASTIDE11;EFEJZZ;Saint-Léonard, Avenue du Docteur Croquelois;;235 rue Marius et Ary Leblond 97410 Saint-Pierre;;[7.3980443, 48.75665765];;FRS51E41643;FRIONE421552;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1392138;45.730848;;;; +;;;;;;;;FRLUMELOUCASTELET11;ESZPPD;Médis, Rue Marco Polo;;La poretta RN198 20137 Porto-Vecchio;;[4.78003218, 43.93196066];;FRS88E145512;FRS18E146807;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.712898;43.64251785;;;; +;;;;;;;;FRMAPP000000007106;HLLWEY;Mâcon, Hyundai;;17 Avenue Du Superbe Orénoque 80440 Boves;;[0.22049675, 47.96471951];;FRS88E145510;FRS18E146808;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.73772034;48.4924;;;; +;;;;;;;;FRMAPP000000006880;HGDFBF;Limoges, Hyundai;;Rue Frédéric Payet 97460 Saint-Paul;;[3.4726431, 50.37769734];;FRS28E134921;FRSHEE681;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.105858;49.46825563;;;; +;;;;;;;;FRDOUP27120CRACKS;PQFPGY;Glos, Hyundai;;73 route de la Ligne Paradis 97410 Saint-Pierre;;[2.9079, 48.9564];;FRS51E93668;FRIONE452103;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.120087;49.046195;;;; +;;;;;;;;FRFR1PTDWPWURGFJ;XAEEUR;Monthlery, Route d'Orléans;;3 zone de la ferraudière 11000 carcassonne;;[6.17871845, 49.11377766];;FRS51E93748;FRIONE401901;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.63991607;48.7555;;;; +;;;;;;;;FRZPEE24DC55851;GFVWQZ;Hyundai Nîmes, Rue du Père Brottier;;Route de Bessan 34500 Béziers;;[7.43373965, 48.09236037];;FRN54E203729;FRIONE45215;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.027515;46.653018;;;; +;;;;;;;;FRZPEE22AC55852;RUZCWL;Hyundai Poitiers, 166 Avenue du Plateau des Glières;;7 Rue Pierre Gilles De Gennes 22005 Saint-Brieuc;;[-1.31707683, 46.18655661];;FRFASE3302104;FRIONE452108;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.446859;-21.3289561;;;; +;;;;;;;;FRZKAE24DC88247;EKLYRW;Ajaccio, Hôtel Dolce Vita;;180 Rue Thomas Edison 34400 Lunel;;[5.65746865, 45.24507897];;FRN54E203728;FRIONE452107;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.559006;-21.3289511;;;; +;;;;;;;;FRZKAE22AC88248;EUEZBT;Saint-Martin-de-Valgalgues, Rocade Nord;;36 Avenue Jean Monnet 84310 Morières-lès-Avignon;;[1.80192, 45.5369];;FRCPIE65573452;FRIONE452106;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.62615129;-21.3289464;;;; +;;;;;;;;FRZMAE22AC49545;MJUDGW;Rott, Le Cleebourg;;89 rue du Général de Gaulle 97420 La Port;;[3.139213798, 45.89527515];;FRCPIE65573451;FRIONE452105;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.9855801;-21.3289489;;;; +;;;;;;;;FRZPEE74AC47259;TCSBVD;Draguigan, Avenue de Tuttlingen;;2 rue Terrain-l'avion 97460 Saint-Paul;;[3.1392138, 45.89527515];;FRS51E40008;FRIONE452104;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.81263702;-21.3289361;;;; +;;;;;;;;FRZPEE22AC127535;EGQHWV;Colmar, Hôtel Comfort;;137 Avenue Du Maréchal Foch 29400 Landivisiau;;[-1.712898, 48.034409];;FRS51E40007;FRIONE452102;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.268832;43.45844847;;;; +;;;;;;;;FRZSUE22AC65281;UXSADP;Saint-Tropez, Hôtel Villa Cosy;;Route De La Seigneurie 60260 Lamorlaye;;[2.73772034, 46.28927651];;FRS51E39992;FRSHEE682;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.28527514;-21.3289264;;;; +;;;;;;;;FRZSUE22AC65280;LMHCBG;Caen, Hôtel Crocus;;Rue De Paris 60440 Nanteuil-le-Haudouin;;[-1.105858, 49.105122];;FRS51E39991;FRIONE452101;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.27224721;49.4552;;;; +;;;;;;;;FRZMAE22AC95769;WDVXQA;Pulversheim, Rue d'Ensisheim;;8 Avenue De La Gare 94150 Rungis;;[2.120087, 49.034662];;FRCPIE66900552;FRSHEE704;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.34729512;45.85932994;;;; +;;;;;;;;FRZMAE22AC50713;PWZCTQ;La Ricamarie, L'Acropole/La Boucherie;;Avenue Pierre Mendès France 63500 Issoire;;[-0.63991607, 45.72249332];;FRCPIE66900551;FRSHEE703;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.319827;48.87171566;;;; +;;;;;;;;FRZMAE22AC50663;WMRUPK;Hôtel - Le Savigny;;603 Chemin des Pennes aux Pins 13170 Les Pennes-Mirabeau;;[4.027515, 48.326696];;FRIENE0057024;FRSHEE702;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.639236;45.46779;;;; +;;;;;;;;FRLUMECLECHAMPS11;ZMJPKM;Soultzmatt, Hôtel A l'Arbre Vert;;19, avenue du Général Marigny 79140 Cerizay;;[2.446859, 48.738614];;FRIENE0057023;FRSHEE701;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.07022881;47.01736159;;;; +;;;;;;;;FRLUMEATELIER11;CHEKHW;Hôtel A.B.I;;265 Avenue Georges Clemenceau 92000 Nanterre;;[2.559006, 48.958653];;FRIENE0057012;FRSHEE692;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.89312701;45.78160822;;;; +;;;;;;;;FRLUMEVILADELAMARHOTEL11;LYFYJOBRX4;Val-Cenis, Hôtel Alpazur;;12 Avenue Du Général De Gaulle 92220 Bagneux;;[1.62615129, 50.68792454];;FRIENE0057011;FRSHEE691;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.43852197;45.13686827;;;; +;;;;;;;;FRLUMECAMPINGLESOUSBOIS11;IQBKMPJAIG;Saint-Etienne, Hôtel Astoria;;43 Avenue De Château-Thierry 02200 Belleu;;[-0.9855801, 45.63093544];;FRFASE3302103;FRCPIE67375252;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.362787;45.21069827;;;; +;;;;;;;;FRZPEE22AC35329;LWQYYRAB2F;Varennes-Vauzelles, Boulevard Camille Dagonneau;;Rue Henry Laroche 60800 Crépy-en-Valois;;[4.81263702, 46.28645376];;FRS51E93749;FRTNMETERRA540121;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.64545;45.04765628;;;; +;;;;;;;;FRZPEE22AC35328;SGQGARWR3K;Angleur, Avenue du Pré Aily;;2 Rue Du Stade 02880 Crouy;;[1.268832, 45.868085];;FRFASE3302102;FRCPIE67376551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.391097;49.03166095;;;; +;;;;;;;;FRZMAE22AC131652;NKDC4JEQPF;SPA, Balmoral 28;;Rue De Gand 59200 Tourcoing;;[0.28527514, 49.14325703];;FRFASE3302101;FRIONE45205;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.305312;46.537886;;;; +;;;;;;;;FRZMAE22AC131655;VA14FOL0VC;BOURGOIN-JALLIEU , Avenue du Medipole;;681 Avenue De La Mer 06210 Mandelieu-la-Napoule;;[2.27224721, 48.64780704];;FRS41E121604;FRIONE452010;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.37255875;43.606377;;;; +;;;;;;;;FRZMAE22AC50737;WFJUNQY8TV;ICL, avenue de Bourgogne;;Avenue de la Soubriarde, Rue du stade 77183 Croissy-Beaubourg;;[4.34729512, 43.8199057];;FRS41E121603;FRIONE452009;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.64404;48.072849;;;; +;;;;;;;;FRZMAE22AC50659;D1AOYXWWDU;Issoire, IFP;;733 Avenue Théodore Braun 69400 Villefranche-sur-Saône;;[0.319827, 46.608804];;FRS28E134810;FRIONE452008;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.19763794;48.09960583;;;; +;;;;;;;;FRZKAE24DC50451;ZWSHUHFMQW;Hôtel le Sherpa;;Rue Des Petits Prés 51200 Épernay;;[8.639236, 41.909315];;FRS88E145773;FRIONE452007;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.917405;43.2498;;;; +;;;;;;;;FRZKAE22AC50452;CWX3CAM47B;HOHROD, Hôtel le Panorama;;5 Rue de la Mairie 57970 Basse-Ham;;[4.07022881, 44.14649426];;FRS88E145771;FRIONE452006;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.881069;48.4501;;;; +;;;;;;;;FRZIME22AC131601;JFWBRE;Fécamp, Hôtel du Grand Pavois;;Boulevard du Cubry 51200 Épernay;;[7.89312701, 49.01167572];;FRIENE0078024;FRIONE452005;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.407229;48.166445;;;; +;;;;;;;;FRZIME22AC77565;MNEHHV;Portet-sur-Garonne, Route d'Espagne;;Entrée Rond-Point Léon Bourgeois 51200 Épernay;;[6.43852197, 43.52868452];;FRIENE0078023;FRIONE452004;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.15086097;45.78029;;;; +;;;;;;;;FRZIME22AC77564;GVDKQE;Sainte-Foy-lès-Lyon, Hôtel du Parc;;Rue Gallice 51200 Épernay;;[7.362787, 48.099197];;FRIENE0078012;FRIONE452003;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.569035;46.95691921;;;; +;;;;;;;;FRZIME22AC131600;RJBZTG;Montpellier, Hôtel du Parc Euromédecine;;Rue De Reims 51200 Épernay;;[6.64545, 43.2659];;FRIENE0078011;FRN54E187764;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.88935;46.40711;;;; +;;;;;;;;FRZMAE22AC57516;LXYAI8QKSC;Trégueux, Hôtel l'Eskemm;;Rue Du Docteur Charcot 57140 Woippy;;[-0.391097, 49.203711];;FRS28E139424;FRN54E187763;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.242749;43.769336;;;; +;;;;;;;;FRZMAE22AC49606;QDCXYC;Chamouille, Rue Du chemin des Dames;;Rue De Peytot 33500 Arveyres;;[7.305312, 47.83651];;FRS28E139423;FRN54E187728;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1525197;48.04076238;;;; +;;;;;;;;FRZMAE22AC50721;XLMBLJ;Saint-Ouen-l'Aumône, Rue Du Limousin;;20 Rue Des Acacias 88380 Arches;;[4.37255875, 45.41546181];;FRIENE0062024;FRN54E187727;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.23518;48.0407261;;;; +;;;;;;;;FRZMAE22AC50722;ZVHKXW;Fresnes, La Cerisaie;;2 Rue René Quinton 77300 Fontainebleau;;[4.64404, 46.03226];;FRS51E41685;FRN54E187442;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.584135;43.5214;;;; +;;;;;;;;FRS68E137931;ASJVEZ;Chasseneuil du Poitou, Allée du Haut Poitou;;Rue De Ferrare 77300 Fontainebleau;;[7.19763794, 47.97468621];;FRS51E41686;FRN54E187441;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.136389;47.92060591;;;; +;;;;;;;;FRS68E137965;K2YQ7NB5P1;Saint-Pierre, IMMODEX;;39 Boulevard Magenta 77300 Fontainebleau;;[5.917405, 46.531099];;FRIENE0029023;FRCPIE67376652;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.36597;43.5738;;;; +;;;;;;;;FRS68E129888;AVMWS0NNYA;Revel, Isotech;;72 Rue Des Vignerons 68750 Bergheim;;[6.881069, 45.28534];;FRS28E134214;FRCPIE67376651;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.41340377;48.546048;;;; +;;;;;;;;FRZPEE142950;QKXRZR;Isagri;;Impasse Pierre De Coubertin 57175 Gandrange;;[4.407229, 45.4200166];;FRCPIE67065752;FRIONE416101;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.806072;48.181674;;;; +;;;;;;;;FRZPEE142953;MEFKNE;Megève, Route Nationale;;Rue Du Stade 57175 Gandrange;;[3.15086097, 47.00840403];;FRCPIE67065751;FRIONE416102;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.83550402;47.982768;;;; +;;;;;;;;FRZPEE142947;ZSCHEU;Magny-le-Hongre, Hôtel Magic;;17 Rue Principale 67290 Frohmuhl;;[5.569035, 50.598908];;FRS51E42468;FRIONE41615;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.76673;48.418952;;;; +;;;;;;;;FRZPEE142948;RWCLSX;Hôtel Mercure - Les Arc 1800;;Rue De La Gare 57380 Faulquemont;;[5.88935, 50.50677];;FRS51E42467;FRIONE409002;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.66641541;47.303241;;;; +;;;;;;;;FRZTLE22AC55103;YFURSC;Beaune, Hôtel Mercure;;Rue De Tritteling 57380 Faulquemont;;[5.242749, 45.596732];;FRIONE41685;FRCPIE67266151;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.137653;43.136;;;; +;;;;;;;;FRZTLE22AC125090;WHRADG;Hôtel Mercure Charbonnières-les-Bains, route de Paris;;Place Du Marché 57450 Farébersviller;;[6.1525197, 48.64828872];;FRIONE416806;FRCPIE67201552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33047;47.88165922;;;; +;;;;;;;;FRZTLE22AC125091;HFJGYG;Le Boulloud, rue des Mésanges;;5 Place De La Gare 62119 Dourges;;[3.23518, 45.56136];;FRIONE416805;FRCPIE67201551;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.364032;47.0956585;;;; +;;;;;;;;FRZTLE22AC55104;NDWAGL;Corenc, Hôtel Les 3 Roses;;Rue Des Carrouges 77124 Crégy-lès-Meaux;;[6.584135, 45.296859];;FRIONE416804;FRIONE40905;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.4681296;47.06341;;;; +;;;;;;;;FRZKAE50DC126576;MYZLMIBAEA;Villard-de-Lans, Hôtel Les Playes;;14 Place De La Saline 57170 Château-Salins;;[7.136389, 48.060172];;FRIONE416803;FRIONE409005;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.46815625;47.0903921;;;; +;;;;;;;;FRZKAE43AC126575;FTJNQSUBFI;Féy, Hôtel Les Tuileries;;Rue des six Jetons 49 1000 Bruxelles;;[0.36597, 49.760985];;FRIONE416802;FRIONE409004;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.46815089;47.0887;;;; +;;;;;;;;FRFR1EAYRU;VOHTCOIT7B;Hôtel Lou Granva;;Rue Placide Monchy 62320 Bois-Bernard;;[1.41340377, 43.54042536];;FRIONE416801;FRIONE409003;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.46814331;43.2518;;;; +;;;;;;;;FRP000000007069;YHQTBN;Montpellier, Hôtel Privilège Eurociel;;5 rue du Péchier 42390 Villars;;[4.806072, 45.730848];;FRIENE0029024;FRCPIE65903152;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.46816129;43.5830557;;;; +;;;;;;;;FRFR1ESMNJ1;PYLBEV;Gérardmer, Hôtel de la Jamagne;;146 Boulevard Salvador Allende 16340 L’Isle d’Espapnac;;[3.83550402, 43.64251785];;FRIENE0029012;FRIONE408603;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.46813475;48.020193;;;; +;;;;;;;;FRMAPP000000006777;MRLB3TAK7Z;Ingersheim, Quai de la Fecht;;Avenue de l'Europe 78000 Versailles;;[-2.76673, 48.4924];;FRS51E42569;FRCPIE65903151;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.46815448;43.4613;;;; +;;;;;;;;FRFR1EBVFK1;VCVTUT;Le Castellet, Hôtel du Castellet;;Chemin De Mont Marsis 46300 Gourdon;;[3.66641541, 49.46825563];;FRIENE0029011;FRCPIE65835552;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.97879207;49.53778454;;;; +;;;;;;;;FRLUMEATRIUMGOLBEY11;JSEDAA;Dinan, Hôtel du Château;;96 rue du port 93300 Aubervilliers;;[2.137653, 49.046195];;FRS28E130744;FRCPIE65835551;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.46817615;49.49387319;;;; +;;;;;;;;FRLUMEHOTELKYRIADBALARUC11;CNWQDX;Riquewihr, Hôtel de la Couronne;;167 Mont du Val d'Orbe 39220 Bois-d'Amont;;[2.33047, 48.7555];;FRS51E93790;FRIONE40865;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.09649;49.44698715;;;; +;;;;;;;;FRZKAE22AC63713;PTJEBK;Clermont-Ferrand, Hôtel Vialatte;;14 rue Robert Schumann 63500 Issoire;;[0.364032, 46.653018];;FRS51E93789;FRIONE408606;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.61906492;45.65972238;;;; +;;;;;;;;FRZKAE24DC63712;FPKPDC;Montaigu-Vendée, Hôtel Saint James;;14 Rue Des Écoles 57175 Gandrange;;[55.4681296, -21.3289561];;FRS51E66955;FRIONE408605;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8066987;43.1475;;;; +;;;;;;;;FRZMAE22AC49702;PTAZYC;Saint-Victor, Hôtel Restaurant Logis Le Jardin Délice;;Rue Des Dragons 67700 Saverne;;[55.46815625, -21.3289511];;FRS51E66954;FRIONE408604;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.77615;47.157872;;;; +;;;;;;;;FRZTLE22AC48423;SQMYKHQ3PK;Nogaro, Hôtel Restaurant Solenca;;47 Rue Aristide Briand 69800 Saint-Priest;;[55.46815089, -21.3289561];;FRTNME18B950971;FRCPIE67376552;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.83762445;47.49898491;;;; +;;;;;;;;FRZTLE22AC48422;TVOJ4ZF90H;Munster, Verte Vallée - Rue Alfred Hartmann;;Rue Léon Perrier 69800 Saint-Priest;;[55.46814331, -21.3289464];;FRTNME18B950970;FRCPIE67376252;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.74974182;43.4282;;;; +;;;;;;;;FRZTLE22AC64646;URNMJP;Saramon, Place du Foirail;;39 Rue Clémenceau 69800 Saint-Priest;;[55.46816129, -21.3289489];;FRTNME18B950931;FRTNMETERRA540130;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.83278305;43.6078;;;; +;;;;;;;;FRZTLE22AC64645;BUGKFT;Rupt-sur-Moselle, Grands Moulins Auto garage du centre;;Quai Du Château 67700 Saverne;;[55.46813475, -21.3289361];;FRTNME18B950930;FRCPIE67376251;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.76242327;43.7578;;;; +;;;;;;;;FRZPEE24DC80464;ZFUQTJ;Le Cannet, Rue Notre-Dame des Anges;;Place Saint-Nicolas 67700 Saverne;;[55.46815448, -21.3289464];;FRTNME18B950891;FRCPIE67424952;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.55611542;44.774632;;;; +;;;;;;;;FRZPEE22AC80465;CYYADE;Groupe Etoile de l'Ouest - Plérin;;7 Rue De La Gare 67700 Saverne;;[1.97879207, 43.45844847];;FRTNME18B950890;FRCPIE67424951;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.11060367;48.593161;;;; +;;;;;;;;FRE10E22AC128989;EETZMB;Groupe Etoile de l'Ouest - Loudéac;;Place Saint-Martin 57645 Retonfey;;[55.46817615, -21.3289264];;FRTNME18B929411;FRCPIE67424852;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.919372;47.611388;;;; +;;;;;;;;FRZMAE22AC59911;QJSQBM;Groupe Etoile de l'Ouest - Quimper VI;;Rue Du Faubourg Du Pont 89600 Saint-Florentin;;[2.09649, 49.4552];;FRS51E42568;FRCPIE67424851;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.883309;45.642324;;;; +;;;;;;;;FRZMAE22AC50784;XPBPBH;Groupe Etoile de l'Ouest - Brest VI;;Rue des Orchis 67560 Rosenwiller;;[6.61906492, 45.85932994];;FRIONE435501;FRIONE40345;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.870604;50.39142;;;; +;;;;;;;;FRFR1EPJXS;LLI2Z8CZS2PEU6;Jean Jaurès, Groupe Guyot;;Place Des Charpentiers 68340 Riquewihr;;[2.8066987, 48.87171566];;FRS51E41687;FRIONE403404;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.31206103;43.090864;;;; +;;;;;;;;FRFR1PZQ91ECZ6OH;LEVJXJ;La Garde, Mercedes VP;;Avenue Méquillet 68340 Riquewihr;;[6.77615, 45.46779];;FRS18E143319;FRIONE403403;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.78531;43.712;;;; +;;;;;;;;FRFR1PTNSVNN;HOT2JOEZEY;Le Thillot, Avenue de Verdun;;68-82 avenue jean Jaurès 69800 Saint-Priest;;[4.83762445, 47.01736159];;FRIONE440406;FRIONE403402;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.04393;43.99335094;;;; +;;;;;;;;FRFR1PKWJ35E2BFJ;ZUASAQ;Dole, rue des Messageries;;Place De L'olympium 57140 Woippy;;[4.74974182, 45.78160822];;FRIONE440405;FRIONE403401;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.297844;43.951;;;; +;;;;;;;;FRFR1PCLAIROIX;APWTIE1O95;Dole, Aire de covoiturage;;Place André Debs 57140 Woippy;;[5.83278305, 45.13686827];;FRIONE440404;FRIONE415653;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.091863;43.8057;;;; +;;;;;;;;FRFR1PEAQLQS;JWHLNC;Dole, Avenue de Lahr;;1 Place de l'Hôtel de ville 57140 Woippy;;[5.76242327, 45.21069827];;FRIONE440403;FRIONE415652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.35012218;43.4017;;;; +;;;;;;;;FRFR1PRCMPVP;LLHUDJR8729BFQ;Dole, Place Precipiano;;2 Route de Norroy 57140 Woippy;;[5.55611542, 45.04765628];;FRIONE440402;FRIONE415651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.610648;43.7773;;;; +;;;;;;;;FRFR1PRWQFMMRWHU;WLHEXK;Le Castellet, Grand Prix Hôtel;;25 Place De L’Eglise 31250 Vaudreuille;;[6.11060367, 49.03166095];;FRIONE440401;FRIONE415604;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.030098;43.6044;;;; +;;;;;;;;FRFR1PLUHPQG;WWLUVL;Montpellier, Grands Garages de l'Hérault;;1 Rue Haute 57300 Trémery;;[5.919372, 46.537886];;FRS28E130752;FRIONE415603;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.14258278;46.992607;;;; +;;;;;;;;FRFR1PGFWJEG;PFMCUU;Saint-Etienne-Lès-Remiremont, Grands Moulins Auto;;Rue Du Colombier 57300 Trémery;;[3.883309, 43.606377];;FRS28E130561;FRIONE415602;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.14264016;47.1742;;;; +;;;;;;;;FRFR1PKJKQVT;BLIDF9PFDM;Roquebrune, Mercedes;;Grand'rue 57300 Trémery;;[6.870604, 48.072849];;FRS51E42589;FRIONE415601;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.761998;48.806386;;;; +;;;;;;;;FRFR1PERHZAA;VNJBH5F0QI;Barentin, avenue Aristide Briand;;Avenue Jean Jaurès 69800 Saint-Priest;;[7.31206103, 48.09960583];;FRS51E42588;FRTNMETERRA540131;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.66300173;49.14390071;;;; +;;;;;;;;FRFR1PVFKUJC;XLILIHAPFT;Le Havre, boulevard de Graville;;Route De L'étang De Trivaux 92360 Meudon;;[5.78531, 43.2498];;FRIONE432416;FRTNME089109610;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.01379;47.2273;;;; +;;;;;;;;FRFR1PSMBKVE;HFFQCD;Rouen, avenue du Mont Riboudet;;73 Avenue Henri Dunant 77100 Meaux;;[-2.04393, 48.4501];;FRS28E128792;FRTNME089127920;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.796775;47.2340438;;;; +;;;;;;;;FRFR1PRYTRGT;moutiers;Angoulême, Groupe Michel;;Place De Beauval 77100 Meaux;;[7.297844, 48.166445];;FRS18E143320;FRCPIE67412551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.690373;47.2392;;;; +;;;;;;;;FRFR1PNPKDFX;DB6JAUQC9M;La Garde, Mercedes PL;;Place Colbert 77100 Meaux;;[3.091863, 45.78029];;FRIONE44835;FRCPIE67370351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.019182;47.2341;;;; +;;;;;;;;FRFR1PVCFAXA;VZHEMA;Boussière, Parking Eglise;;Rue Camille Guérin 77100 Meaux;;[-1.35012218, 46.95691921];;FRIONE435502;FRCPIE67375652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.463361;47.2351;;;; +;;;;;;;;FRFR1POAKCAJ6OZP;HDBBKQ;Valloire-sur-cisse, Golf Hotel de la Carte;;Rue De La Gare 15500 Massiac;;[2.610648, 46.40711];;FRIONE448306;FRCPIE67375651;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.022432;47.2349;;;; +;;;;;;;;FRFR1PJZHDPB;LJZLHJ;Masseube, Jules Duffort;;151 Route De Salernes 83510 Lorgues;;[-0.030098, 43.769336];;FRIONE448305;FRCPIE67372552;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.02929;44.9449;;;; +;;;;;;;;FRFR1PLLHYXQ9TJ10X4F;RNFCWQ;Pavie, Lamartine;;Rue Henri Hoffmann 57300 Hagondange;;[7.14258278, 48.04076238];;FRIONE448304;FRCPIE67372551;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.76079398;47.509;;;; +;;;;;;;;FRFR1PKVP217VGA5;GBVXDN;Nogaro, Colonel Parisot;;2 Rue De L'hôtel De Ville 88190 Golbey;;[7.14264016, 48.0407261];;FRIONE448303;FRCPIE67371852;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.4867079;48.73767482;;;; +;;;;;;;;FRFR1PMSPQBQ;BJDCGG;Gradignan, Gescor;;23 Rue De La 1re Armée Française 88300 Neufchâteau;;[0.761998, 43.5214];;FRIONE448302;FRCPIE67371851;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.44807;43.67342588;;;; +;;;;;;;;FRFR1PBYSSRF;HGVJHQ;Saint-Vougay, Gite au Dolmen de Kerhus;;47 Avenue Du Général De Gaulle 88420 Moyenmoutier;;[6.66300173, 47.92060591];;FRIONE448301;FRCPIE67370352;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.4970623;48.9545;;;; +;;;;;;;;FRFR1PDRWCTS;FDWQJB;Baden, Route de Tourlvern;;parking Meurisse 57950 Montigny-lès-Metz;;[7.01379, 43.5738];;FRCPIE66175152;FRCPIE67366252;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.48936;49.1302;;;; +;;;;;;;;FRFR1PLNEUNA;CETTJG;Les Déserts, route du revard;;4 BOULEVARD KENNEDY 25000 Besançon;;[-2.796775, 48.546048];;FRCPIE66175151;FRCPIE67412552;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.75531;48.30733;;;; +;;;;;;;;FRFR1POMEDAZRPPK;HWGLVR;Givenchy-en-Gohelle, Mairie;;317 RUE NATIONALE 57600 Forbach;;[-2.690373, 48.181674];;FRIONE43555;FRCPIE67366251;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.88118532;48.772359;;;; +;;;;;;;;FRFR1PYRFTXHDZQJ;PPYXVZ;Pouzac, Chemin du Golf;;1 RUE LENA BERNSTEIN- ZAC CROIX BLANDIN - CITE AUTOMOBILE 51100 Reims;;[-4.019182, 47.982768];;FRIONE435506;FRCPIE67365752;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.601068;49.1237;;;; +;;;;;;;;FRFR1PLSDAFX;UWNFHN;Preignan, Elie Charlas;;1 RUE DES PRES CHALOT;;[-4.463361, 48.418952];;FRIONE435505;FRCPIE67365751;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.63722;48.63802;;;; +;;;;;;;;FRFR1PFMWS019EB5;LJKNWD;Fourcès, Chemin de Halage;;LIEU DIT LA BRETTE 32100;;[5.022432, 47.303241];;FRIONE435504;FRCPIE67362352;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.95996435;47.83939;;;; +;;;;;;;;FRFR1PHXH8KMZAIL;BEDFUJ;Montréal, Bvld Nord;;21 ROUTE DE LAFARE;;[6.02929, 43.136];;FRIONE435503;FRCPIE67362351;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.14688354;47.8390091;;;; +;;;;;;;;FRFR1PPMMYUQ;NNRVKY;Castéra-Verduzan, Place du 8 Juillet 1977;;35 PLACE MASSENET 42000 SAINT ETIENNE;;[6.76079398, 47.88165922];;FRTNME18B929410;FRCPIE67415052;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.06978178;47.8397671;;;; +;;;;;;;;FRFR1PG2PBVFTJNU;DXRKQV;Villecontal-sur-Arros, Mairie;;10 AVENUE DE LA MADELEINE;;[5.4867079, 47.0956585];;FRTNME089903991;FRCPIE67415051;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.16641258;47.8390095;;;; +;;;;;;;;FRFR1PDCZTSR0FDO;SKSKQS;Le Houga, Route de Mont-de-Marsan;;327 AVENUE DU 14 JUILLET;;[5.44807, 47.06341];;FRTNME089903990;FRIONE421551;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.03999;47.8390122;;;; +;;;;;;;;FRFR1PHJTHIBWDZK;QQYWJL;Plaisance, Place Bataillon;;8-10 RUE LAURENT PASCAL LA BREOLE;;[5.4970623, 47.0903921];;FRS28E134341;FRCPIE67366151;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.902219;47.8393865;;;; +;;;;;;;;FRFR1PW3Q7KKPBUP;TZEPFV;Levernois, rue du golf;;QUARTIER RISOLET 04140;;[5.48936, 47.0887];;FRS51E42108;FRS18E171693;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.22669529;43.6853;;;; +;;;;;;;;FRFR1PSWOWXFTE8O;EKGZCS;Thoraise, Mairie;;1a rue Alexandre Volta;;[5.75531, 43.2518];;FRS51E42107;FRIENE0076012;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.57849;43.32296;;;; +;;;;;;;;FRFR1PCLXN7QZI6H;CHQQTM;Pleumeur-Bodou, Route du Golf;;Route de Rioclar 04330 Méolans-Revel;;[3.88118532, 43.5830557];;FRIENE0070024;FRIENE0076011;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.591807;49.3624;;;; +;;;;;;;;FRFR1PWLYDJRRTX4;BJXJWS;Glos, Gougeon Fournitures;;Rue Amédée Bollée 10600 Barberey-Saint-Sulpice;;[6.601068, 48.020193];;FRIENE0070023;FRS18E186608;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.0320663;47.646763;;;; +;;;;;;;;FRFR1PLJENBZ;MWDFEN;Besançon, Hôpital Minjoz;;Route de Pithiviers 91150 Étampes;;[6.63722, 43.4613];;FRIENE0070012;FRS18E186607;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.633763;44.82811635;;;; +;;;;;;;;FRFR1PFENETRPARK;MNFMWG;Besançon, Parking Chamars;;345 Chemin de la Croix de Noves 84000 Avignon;;[0.95996435, 49.53778454];;FRIENE0070011;FRIONE40525;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.132028;48.990862;;;; +;;;;;;;;FRFR1PSARREPIDE;XAYSUU;Besançon, Parking St-Paul;;ZA de la Hardt 67110 Gundershoffen;;[0.14688354, 49.49387319];;FRS28E134878;FRIONE405206;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.919598;49.228624;;;; +;;;;;;;;FRFR1PCHPBCT;KHNUDJ;Besançon, Parking Granvelle;;31 grande rue de chablis 89800, PREHY;;[1.06978178, 49.44698715];;FRS51E42093;FRIONE405205;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.99871;48.904821;;;; +;;;;;;;;FRFR1PSARRBCOVOIT;WCCSFT;Besançon, Parking St-Jacques;;av Martyrs du Pont Long 64140 Lons;;[0.16641258, 45.65972238];;FRS51E42092;FRIONE405204;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.77221;45.68803044;;;; +;;;;;;;;FRFR1PMCKKXL;SSHGWX;Le Plan-Médoc, Golf du Médoc Resort;;902 ROUTE DE BELLEGARDE 74330 Epagny Metz-Tessy;;[6.03999, 43.1475];;FRIENE0098024;FRIONE405203;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.152751;45.77891706;;;; +;;;;;;;;FRFR1PFDDVWW;XQMKFJ;Verrières-en-Anjou, Golf;;7 rue de la bergerie 64250;;[5.902219, 47.157872];;FRIENE0098023;FRIONE40295;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.625572;45.68013251;;;; +;;;;;;;;FRFR1PVVUDTV;ZSBMZW;Sarrebourg, Ferme du Winkelhof;;29 rue des bobby sands;;[1.22669529, 47.49898491];;FRIENE0098012;FRIONE402905;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.22995082;48.794997;;;; +;;;;;;;;FRFR1PYXCRHH;THSFCS;Soorts-Hossegor, Gorille Cycles;;610 ROUTE DE CASSEL 59630;;[0.57849, 43.4282];;FRIENE0098011;FRIONE402904;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.201134;49.28357489;;;; +;;;;;;;;FRFR1PNUQVEPZ8AW;YDWRKB;Epinay-sur-Seine, Luckytel;;AVENUE DE MERLIMONT;;[0.591807, 43.6078];;FRS28E137321;FRIONE402903;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.42744;44.83526429;;;; +;;;;;;;;FRFR1PSEMCHAHMD;WZXSRJ;Volvo Metz, rue des Alliés;;ZAC DE LA PRAIRIE ROUTE DU BOURGET 73420 Voglans;;[-0.0320663, 43.7578];;FRTNME089903951;FRIONE402902;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.19905;43.520193;;;; +;;;;;;;;FRFR1PIXBHNZDQGH;CVJQYU;Ernée, Heude Bâtiment;;9 T BD DU PRE BIOLLAT 74200 74200 Anthy-sur-Léman;;[-0.633763, 44.774632];;FRS37E15630;FRCPIE67531152;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.18727;48.225123;;;; +;;;;;;;;FRFR1PLPYWW8B6QN;YVPZUN;Phalsbourg, Impasse de l'Europe;;RUE FRANCIS CANTIER 30000 Nîmes;;[-4.132028, 48.593161];;FRS37E15629;FRCPIE67531151;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.046019;48.956538;;;; +;;;;;;;;FRFR1PESOO1VY323;WMNJBT;Hombourg-Haut, Rue de Metz;;17 Avenue du Maquis des Glières ZAC 51470 Saint-Memmie;;[-2.919598, 47.611388];;FRS28E139073;FRCPIE67531052;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.886405;43.665405;;;; +;;;;;;;;FRFR1PHZPNJOORZL;ZGBPNA;Wasselonne, Hostellerie de l'Etoile;;CD 112 Espace Bocau 34830 Jacou;;[5.99871, 45.642324];;FRS28E130906;FRIENE0076023;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.90226;47.263248;;;; +;;;;;;;;FRFR1PQQFB82S3YL;PTMTEE;Staffelfelden, 100D Rue Marie Louise;;1007 ROUTE DE CHADEYRON 07110 MONTREAL;;[2.77221, 50.39142];;FRS51E41910;FRIENE0076024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.518977;45.147704;;;; +;;;;;;;;FRFR1PS3YZBNLWII;CYTRZG;Staffelfelden, 100A Rue Marie Louise;;1 rue Coprin Chevelu 74100 Ville-la-Grand;;[0.152751, 43.090864];;FRS51E41909;FRN54E187881;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.29651028;43.452269;;;; +;;;;;;;;FRFR1PQZFN3KUU9F;TZEHVV;Staffelfelden, 100G Rue Marie Louise;;[Rue de la Legettaz][73150][Val-d'Isère];;[0.625572, 43.712];;FRS51E41698;FRFASE3309703;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.96365;44.960648;;;; +;;;;;;;;FRFR1PWAHN3XCBEO;ZFRNAW;Staffelfelden,100F Rue Marie Louise;;[Avenue Denis Therme][73630][Le Chatelard];;[0.22995082, 43.99335094];;FRS51E41697;FRCPIE66544152;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.01959915;45.78753257;;;; +;;;;;;;;FRFR1PA2NLTYQ2Z5;PMKMGS;Staffelfelden, 100C Rue Marie Louise;;[178] [route de cran gevrier][74650][Chavanod];;[0.201134, 43.951];;FRCPIE66485152;FRCPIE66544151;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.03128;48.0967915;;;; +;;;;;;;;FRFR1PRETLG65TD9;LQPFQW;Staffelfelden, 100B Rue Marie Louise;;[Route de Sainghin] [59493] [VILLENEUVE D'ASCQ];;[0.42744, 43.8057];;FRCPIE66485151;FRFASE3309708;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.01967;48.419313;;;; +;;;;;;;;FRFR1PMVI0NG2BIC;URGRZH;Nice, Help Dépannage;;[305D Rue Gabriel Voisin][69400][Villefranche-sur-Saône];;[0.19905, 43.4017];;FRS51E41690;FRFASE3309707;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.02526;43.652371;;;; +;;;;;;;;FRFR1PD7MMXLNJZN;HJHXYP;PAU, Boulevard du cami salié;;[1184 Rte d’Albertville][74410][Saint-Jorioz];;[-0.18727, 43.7773];;FRS51E41689;FRFASE3309706;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.02107;46.1551693;;;; +;;;;;;;;FRFR1PESNTDAUVON;FYJMNZ;Trouville-sur-Mer, Hostellerie du Vallon;;[7 rue Orion][74650][Chavanod];;[0.046019, 43.6044];;FRS51E41688;FRFASE3309705;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7029;45.74606184;;;; +;;;;;;;;FRFR1PSPEEDYREUSUZ;APALYU;Hôtel Mercure Belfort, Avenue Jean Moulin;;[10 Rue de la Bouverie][74600][Seynod];;[4.886405, 46.992607];;FRS51E42110;FRFASE3309704;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.47975;47.302794;;;; +;;;;;;;;FRFR1PTFJKXAUZJE;ZCZYVW;Bergerac, ZA Valade;;31 AVENUE DE PARIS 53940 Saint-Berthevin;;[5.90226, 47.1742];;FRS51E42111;FRFASE3309702;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.02598493;47.30362;;;; +;;;;;;;;FRFR1POGOEOW5UKX;YEHCXH;Buchelay, Rue des Gamelines;;41 RUE DES PEUPLIERS 92000 NANTERRE;;[-3.518977, 48.806386];;FRIONE403601;FRN54E187882;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.38006236;44.08577017;;;; +;;;;;;;;FRFR1PAK6LDZLLUO;TI8PEKPXSF;Biéville-Beuville, Boulevard de Souffolk;;1 avenue de Château Thierry 02400 Nogentel;;[0.29651028, 49.14390071];;FRIONE403602;FRFASE3309701;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3083;45.17219105;;;; +;;;;;;;;FRFR1PLI6JTMDSG0;OTFVUHHRFE;Chambourcy, Rue Camille Blanc;;7 RUE FRANCOIS COLI;;[5.96365, 47.2273];;FRTNME089903950;FRCPIE66934552;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16499;47.301901;;;; +;;;;;;;;FRFR1PRB8VUBDF3E;CGGCRTEPRZ;Champniers, Rue de l'Entrait;;68 rue principale 57800 bett;;[6.01959915, 47.2340438];;FRTNME089903911;FRCPIE66934551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.93959;46.152179;;;; +;;;;;;;;FRFR1PQZTHJZ;BD9SBFG89K;Clermont-Ferrand, Avenue de l'Agriculture;;270 avenue de Courmayeur 74400 Chamonix-Mont-Blanc;;[6.03128, 47.2392];;FRTNME089903910;FRS51E48602;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.250787;49.8437;;;; +;;;;;;;;FRFR1PFXARSCAO92;HFVGTE;Chateaubernard, rue Pierre Latecoere;;CHALET HOTEL KAYA, LES MENUIRES 73440 LES BELLEVILLE;;[6.01967, 47.2341];;FRTNME089903841;FRS51E48601;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.77454;45.84920245;;;; +;;;;;;;;FRFR1PFCF3ZP09ZM;CVA0LBMFFS;Haguenau, Route De Marienthal;;4 rue du Noyer, Roissy en France;;[6.02526, 47.2351];;FRTNME089903840;FRN54E207085;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.447477;49.36198763;;;; +;;;;;;;;FRFR1PPMNDERSS7U;PWIHLJMHAB;Bayeux, Hyundai;;Tour First, 1 Place des Saisons, Courbevoie, FR;;[6.02107, 47.2349];;FRTNME089903761;FRN54E207084;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.2741488;48.73226878;;;; +;;;;;;;;FRFR1PMJNXCMKMNM;FCQHSR;Mérignac, Hôtel Mercure;;1 Place des Saisons, Courbevoie, FR;;[-0.7029, 44.9449];;FRTNME089903760;FRCPIE67531051;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.2741907;46.11121481;;;; +;;;;;;;;FRFR1PGMHWFA6XWU;LLI2WDITY2FS8E;Portet-sur-Garonne, Hotel de Ville;;1 Place des Saisons;;[-0.47975, 47.509];;FRTNME089901361;FRS18E171692;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.2741853;50.30178494;;;; +;;;;;;;;FRFR1PBVLDH0AW95;GSBW6HJK6Q;Crozon, Hotel l'Escale Marine;;1 RUE SAINT-FRANCOIS 85300 Challans;;[7.02598493, 48.73767482];;FRTNME089901360;FRCPIE66545852;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.2737274;49.48253449;;;; +;;;;;;;;FRFR1PF5YXGNA3QT;NE1A8MI3RW;Argenteuil, Boulebard Jean Allemane;;Gare maritime transmanche 50100 Cherbourg-en-Cotentin;;[-1.38006236, 43.67342588];;FRTNME089109381;FRS18E205973;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.2741136;49.63226055;;;; +;;;;;;;;FRFR1PUWNJODKKG1;OXD9WRDSZQ;Hyundai Arles, Avenue des Arches;;24 rue Marie Curie 14200 Hérouville-Saint-Clair;;[2.3083, 48.9545];;FRTNME089109380;FRFASE3311205;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.274226;48.5974961;;;; +;;;;;;;;FRFR1PMGREFT;QJ6QKLM4O5;Orvault, Groupe Pandora;;119 RUE MICHEL AULAS 69400 LIMAS;;[6.16499, 49.1302];;FRTNME089103181;FRFASE3311204;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.19705;48.57494952;;;; +;;;;;;;;FRFR1PREGTQN;FLENKG;Brive-La-Gaillarde, Avenue Cyprien Faurie;;ZAC BRUNON VALETTE Autoroute A47 sortie 12 42800 Rive-de-Gier;;[-0.93959, 48.30733];;FRTNME089103180;FRFASE3311203;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.316336;48.54503679;;;; +;;;;;;;;FRFR1PKFCMGC;DNSWQT;Saint-Raphaël, Boulevard Darby;;5 Rue du Frenelet, 59650 Villeneuve-d'Ascq;;[7.250787, 48.772359];;FRCPIE66105252;FRFASE3311202;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.08837;46.16908758;;;; +;;;;;;;;FRFR1PLDO26AVCKK;NEDQCA;Bourg-lès-Valence, Allée Ninon Vallin;;2 RUE DES GAMELINES 78200 Buchelay;;[6.77454, 49.1237];;FRCPIE66105251;FRFASE3311201;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.862838;48.0198099;;;; +;;;;;;;;FRFR1PKD6VCY4UHY;PREPCWAOME;Panissières, parking;;N 154 ROUTE D'ORLEANS 27930 ANGERVILLE LA CAMPAGNE;;[7.447477, 48.63802];;FRS37E1286;FRS18E148779;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.47866314;49.69853929;;;; +;;;;;;;;FRFR1PBNCC1SH0T1;UT10PKNXV9;Rennes, Immeuble le Lotus;;40 Avenue du rose poirier 88000 Épinal;;[7.2741488, 47.83939];;FRS37E1285;FRS18E148778;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.67772;47.6791211;;;; +;;;;;;;;FRFR1PKNEHR4REYA;PSZCJC;Brest, Groupe Pandora;;56 Rue Pierre Mendès France, 79000 Niort;;[7.2741907, 47.8390091];;FRS51E42377;FRCPIE66547352;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.368334;44.8986309;;;; +;;;;;;;;FRFR1PVDSBUE;LBRBBU;Salon de Provence, Route du Val de Cuech;;AVENUE DE LA MARNE;;[7.2741853, 47.8397671];;FRS51E42376;FRCPIE66547351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.050956;50.54928528;;;; +;;;;;;;;FRFR1PECFJGR;CGJZHNOXXN;La Rochelle, Groupe Michel;;rue Principale shaf;;[7.2737274, 47.8390095];;FRS28E139351;FRCPIE65300352;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.18227025;50.55028063;;;; +;;;;;;;;FRFR1PNOGCX5IK1U;GQ6RXOGQR9;Saintes, Groupe Michel;;rue du forgeron shaf;;[7.2741136, 47.8390122];;FRCPIE67583252;FRCPIE65300351;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.12183284;49.51772;;;; +;;;;;;;;FRFR1PSAYTBZ;YCX0MN1QXX;Guyot, Renault Dijon;;66260 Saint-Laurent-de-Cerdans;;[7.274226, 47.8393865];;FRCPIE67583251;FRCPIE65279752;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.31019479;47.7958;;;; +;;;;;;;;FRFR1PCHOISYAUBACLEC;JQ6N8HQWWD;Guyot Zone de réception, Dijon;;Rue de la Grappe 25640 Marchaux-Chaudefontaine;;[7.19705, 43.6853];;FRIONE40365;FRCPIE65279751;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.8052;48.08631445;;;; +;;;;;;;;FRFR1PRQBMXR;AUFXYU;Creissels, Hyundai Millau;;AVENUE DE CESAREE 33470 Gujan-Mestras;;[-0.316336, 43.32296];;FRIONE403606;FRS41E2953;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.68789218;50.69865957;;;; +;;;;;;;;FRFR1PFJJSHD;PNUWUA;Valmeiner, Place de la Roche Noire;;Imp. des Gardenias, Saint-Claude 97120, Guadeloupe;;[0.08837, 49.3624];;FRIONE403605;FRS41E2952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.69210433;48.79479325;;;; +;;;;;;;;FRFR1PGCMJCV;MXZDMN;Guyot, Station Total des Diables Bleus;;358, 97100 Av. de l'Abbé Grégoire, Basse-Terre, Guadeloupe;;[6.862838, 47.646763];;FRIONE403604;FRCPIE66345252;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.401075;44.48613399;;;; +;;;;;;;;FRFR1PSOKSVEUQOF;BSWCES;La Rochelle, rue de Québec;;1 Av. Lavoisier, 63170 Aubière;;[0.47866314, 44.82811635];;FRIONE403603;FRCPIE66345251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.506584;45.25771148;;;; +;;;;;;;;FRFR1PAYWC7E3K5E;ENQKRY;Gruchet-le-Valasse, Centre commercial;;1 rue le Boulval;;[1.67772, 48.990862];;FRIONE41275;FRFASE3311206;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.256181;49.320022;;;; +;;;;;;;;FRFR1PK5OWM91ZVL;QGPKVC;Guyot, Mitsubishi Dijon;;A36 - Aire de Besançon Marchaux 25640 MARCHAUX-CHAUDEFONTAINE (25);;[-0.368334, 49.228624];;FRIONE412704;FRFASE3311207;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.644976;50.13571053;;;; +;;;;;;;;FRFR1PHWIOS76HPC;HSKUAV;Beaucamps-le-Vieux, Eglise;;A31 - Aire de Dijon Spoy 21490 BROGNON (21);;[2.050956, 48.904821];;FRIONE412703;FRFASE3311208;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.647216;42.69295972;;;; +;;;;;;;;FRFR1PEPSOXWJL5C;FASQGG;E.Leclerc, Thiers;;A6 - Aire du Chien Blanc 21350 GISSEY-LE-VIEIL (21);;[0.18227025, 45.68803044];;FRS41E4616;FRFASE3302504;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.481858;48.70367;;;; +;;;;;;;;FRFR1PWXCAUXDWQZ;EVBSNL;E. Leclerc, Thionville;;A31 - Aire de Dijon Brognon 21490 BROGNON (21);;[3.12183284, 45.77891706];;FRCPIE65537452;FRS18E205972;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.789685;47.68397952;;;; +;;;;;;;;FRFR1PT7NT4TEAJS;FLFETT;E.Leclerc, Sarrebourg;;A36 - Aire de Besançon Champoux 25640 MARCHAUX-CHAUDEFONTAINE (25);;[-0.31019479, 45.68013251];;FRIENE0035024;FRCPIE66501452;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.88988;47.61544993;;;; +;;;;;;;;FRFR1PCPMKO0KCT6;GLHZJS;E.Leclerc, Surgères;;A9 - Aire de La Palme Ouest 11480 LA PALME (11);;[7.8052, 48.794997];;FRS41E4582;FRCPIE66501451;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.33668507;47.14713038;;;; +;;;;;;;;FRFR1PYKZIHSYQXN;CZLFEL;E.Leclerc, Thiant;;A8 - Aire de Beausoleil 06240 BEAUSOLEIL (06);;[-0.68789218, 49.28357489];;FRS41E4583;FRFASE3302508;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.62903136;43.37472105;;;; +;;;;;;;;FRFR1PV3EMVP93X7;BNQCVM;E.Leclerc, Thourotte;;A40 - Aire de Bourg Teyssonge 01250 JASSERON (01);;[-0.69210433, 44.83526429];;FRS41E4586;FRFASE3302507;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.459112;45.53600566;;;; +;;;;;;;;FRFR1PMDMC6YBZXB;RCMSEE;E.Leclerc, Tourlaville;;A51 - Aire de la Champouse 13320 BOUC-BEL-AIR (13);;[1.401075, 43.520193];;FRS41E4587;FRFASE3302506;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.13137;45.54410263;;;; +;;;;;;;;FRFR1PEQCDH9J1JP;QLKTCA;E.Leclerc, Strasbourg Marché Gare;;A85 - Aire des Jardins de Villandry 37190 DRUYE (37);;[-4.506584, 48.225123];;FRS41E24592;FRFASE3302505;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.11715548;45.19216184;;;; +;;;;;;;;FRFR1PAC2FNB43AS;YIAIVNQITZ;E.Leclerc, Strasbourg Port du Rhin;;A5a - Aire de Plessis Picard 77550 REAU (77);;[2.256181, 48.956538];;FRS41E24893;FRFASE3302503;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6642695;45.19078196;;;; +;;;;;;;;FRFR1PHPIJ5SALHF;N2CH6C5QBH;E.Leclerc, Strasbourg Neuhof;;A9 - Aire de Montpellier Fabregues Sud 34690 FABREGUES (34);;[4.644976, 43.665405];;FRS41E4605;FRIONE436002;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.024957;44.36058652;;;; +;;;;;;;;FRFR1PACRYNFDCV8;X9UCRG8ZDU;E.Leclerc, Sautel La Rochelle;;A31 - Aire de Sandaucourt La Trelle 88170 SANDAUCOURT (88);;[-1.647216, 47.263248];;FRS41E4606;FRFASE3302502;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.025142;49.07382725;;;; +;;;;;;;;FRFR1PAYAHQAUM1C;R6EKEKG2QM;E.Leclerc, Scaer;;A61 - Aire de Toulouse Sud 31450 DEYME (31);;[1.481858, 45.147704];;FRS41E4613;FRFASE3302501;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.04838712;50.54055576;;;; +;;;;;;;;FRFR1PC1GNC8FCNX;VCFWJE8H9N;E.Leclerc Sedan;;A10 - Aire des Terres de l’Estuaire 33920 SAUGON (33);;[6.789685, 43.452269];;FRS41E4614;FRCPIE67315452;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.49791327;50.5405618;;;; +;;;;;;;;FRFR1PCXJ72OM8NT;MBSSYTGNDB;E.Leclerc, Segrè;;11 avenue alexandre baraty;;[4.88988, 44.960648];;FRS41E4615;FRCPIE67315451;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.024663;47.66908;;;; +;;;;;;;;FRFR1PVF5EU1QLKV;WUMDJK;E.Leclerc, Souillac;;ZA LA PRIEURE 04350;;[4.33668507, 45.78753257];;FRS28E138014;FRIONE436005;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.204654;50.4868159;;;; +;;;;;;;;FRFR1PAVPIZQYZVQ;NFGWPG;E. Leclerc, Seclin Public;;Chem. de Chabanu, 13120 Gardanne;;[-1.62903136, 48.0967915];;FRCPIE66180152;FRIONE436004;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.49336;49.033704;;;; +;;;;;;;;FRFR1PLLK174HG81PAI5;LYQNFS;Ribécourt-Dreslincourt, E.leclerc;;31 Avenue d'Agde 34120 Nézignan-l'Évêque, Hérault;;[-4.459112, 48.419313];;FRS41E4664;FRIONE436003;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.77914;45.63022046;;;; +;;;;;;;;FRFR1PQL0SAGXFVN;FZXXAW;E.Leclerc, Zone Ciné-Loisirs Cernay;;52 Rte des Sanguinaires 20000 Ajaccio;;[5.13137, 43.652371];;FRS41E4665;FRCPIE66545851;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.53655714;48.86208218;;;; +;;;;;;;;FRFR1PWZ79ENR8ZB;LYBRMC;E.Leclerc, Wintzenheim;;13 Quai du Port 94130 Nogent-sur-Marne France;;[-1.11715548, 46.1551693];;FRS41E153650;FRCPIE66546851;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.10975616;46.51400657;;;; +;;;;;;;;FRFR1PT6VGAWB4RJ;GRGKRU;E.Leclerc, Wattrelos;;1 Rue des Biches, 74100 Ville-la-Grand;;[-0.6642695, 45.74606184];;FRS41E153651;FRN54E188611;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.04323706;47.37369171;;;; +;;;;;;;;FRFR1PIQG36TGCXO;PVGAUH;E.Leclerc, Vitry-sur-Seine;;ROUTE DE BORDEAUX - 50 RUE ANTOINE DUBAYLE 19100 Brive-la-Gaillarde;;[5.024957, 47.302794];;FRS41E4674;FRIONE407802;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.73995757;51.04589991;;;; +;;;;;;;;FRFR1PVEAFCWDTLI;TJTDLE;E.Leclerc, Montayral Brico;;1 avenue de l'automobile, Chalon-sur-Saône 71100 Chalon-sur-Saône;;[5.025142, 47.30362];;FRS41E4675;FRIENE0050024;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.44358433;45.89638519;;;; +;;;;;;;;FRFR1PLL76TVKIP4;RRSVSJ;st pal de mons, ld prunieres;;94 Rue Saint-Rémy 10700 Arcis-sur-Aube;;[3.04838712, 44.08577017];;FRS41E4676;FRIENE0050023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.86960437;45.89626572;;;; +;;;;;;;;FRFR1PEVGRRYJMAI;ZCGGHS;Longueil-Sainte-Marie, Avenue de Paris;;1313 ROUTE D ORANGE 84870 LORIOL DU COMTAT;;[6.49791327, 45.17219105];;FRS41E4677;FRIENE0050012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.59145925;46.72399705;;;; +;;;;;;;;FRFR1PKJ10TZEAZY;ADZEDJ;Saint-Riquier, Rue de L Hôpital;;77-79 ROUTE DE PARIS 14120 Mondeville;;[5.024663, 47.301901];;FRS41E4678;FRIENE0050011;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.73570337;48.40075355;;;; +;;;;;;;;FRFR1PU4TFFCDH2S;EVRKJN;Médipôle, ?Avenue Ambroise Croizat;;48 BOULEVARD DE PONT DE VIVAUX 13010 Marseille;;[-1.204654, 46.152179];;FRS41E4679;FRS41E60410;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.79230519;49.28251109;;;; +;;;;;;;;FRFR1PSBPX6OZUXS;WMNCFY;Maxeville, Rue Blaise Pascal;;ZA SAINT ESTEVE 13360 Roquevaire;;[0.49336, 49.5474];;FRS41E4680;FRS41E60409;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.76681958;45.89561984;;;; +;;;;;;;;FRFR1PDTWHHE;JEAFVZ;E.leclerc, Lure;;5 rue aimé Cesaire 77240 Vert-Saint-Denis;;[1.77914, 49.8437];;FRS41E4681;FRIONE41305;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.12717392;48.06397015;;;; +;;;;;;;;FRFR1PRM0ROAPILM;HRLQKX;E.leclerc, Blois;;Rue Lagrua 33260 La Teste-de-Buch;;[3.53655714, 45.84920245];;FRS41E4682;FRIONE413006;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.71976362;48.10448437;;;; +;;;;;;;;FRFR1PDHOGICTC4J;HUSQJB;E.Leclerc Valdahon;;Rue Lagrua 33260 La Teste-de-Bu;;[6.10975616, 49.36198763];;FRCPIE66180151;FRIONE413005;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.92722788;45.18910526;;;; +;;;;;;;;FRFR1PUG3WVGHZF7;DREUCR;E. Leclerc, Urrugne;;356 AVENUE DE LYON 01960 Péronnas;;[7.04323706, 48.73226878];;FRIENE0025011;FRIONE413004;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.87841511;48.0158875;;;; +;;;;;;;;FRFR1PJZ543QKP9R;LDQXAG;E.Leclerc, Ussel Brico;;840, Côte de la justice 77100;;[-0.73995757, 46.11121481];;FRS18E126241;FRIONE413003;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.46184814;48.64680402;;;; +;;;;;;;;FRFR1PL3MM8AGQ9C;GKP4F0ALTF;E.Leclerc, Ussel Hyper;;2451 Chemin de Saint-Claude, 06600 Antibes;;[3.44358433, 50.30178494];;FRIONE402702;FRIONE413002;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.05305481;47.6447619;;;; +;;;;;;;;FRFR1PMSPSTZ6J2B;GEPWPS;E.Leclerc, Trélissac Parking Couvert à étages;;30 avenue de la plage 3368;;[2.86960437, 49.48253449];;FRCPIE66520652;FRIONE413001;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0546981;41.59735225;;;; +;;;;;;;;FRFR1PPRMTMC6S3N;UXWAZX;E.Leclerc, Trélissac Parking Magasin;;RUE DE BREST 29600 Morlaix;;[-1.59145925, 49.63226055];;FRCPIE66520651;FRS51E95878;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9299;47.43337469;;;; +;;;;;;;;FRFR1PPX3HCA6K3H;UUDAHB;E.Leclerc, Villerfranche de Rouergue;;7 Route des Vins 67140 Itterswiller;;[7.73570337, 48.5974961];;FRS18E212077;FRS51E95877;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.16298;48.13823803;;;; +;;;;;;;;FRFR1PYOK4NQXJLT;XZZHAR;E.Leclerc, Villers-Bocage;;108 Avenue Simone Veil 06200 Nice;;[7.79230519, 48.57494952];;FRS18E212076;FRS08E57640;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.31413997;48.19015659;;;; +;;;;;;;;FRFR1PGL45JADQ7A;CNAHPN;E.Leclerc, Violaines;;45 Avenue de l’Aiguille du Midi 74400 Chamonix-Mont-Blanc;;[7.76681958, 48.54503679];;FRS18E212027;FRIONE407803;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.20907889;46.04503677;;;; +;;;;;;;;FRFR1PLWAX2VIBUV;XBEWHF;E.Leclerc Violaines - Parking 2;;150 IMPASSE DE MONACO 82000 Montauban;;[-1.12717392, 46.16908758];;FRS18E212026;FRIONE407804;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.41586882;49.28107517;;;; +;;;;;;;;FRFR1PTXR4EPVUDZ;RZFTLA;E.Leclerc, Vannes;;22 AVENUE DE LATTRE DE TASSIGNY 82400 HYERES;;[-3.71976362, 48.0198099];;FRS18E205324;FRIONE407805;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.98099938;48.67870648;;;; +;;;;;;;;FRFR1PTDVUPC3TPJ;PDYFKZ;E.Leclerc, Vermelles;;117 Route de Cannes 06220 Vallauris;;[4.92722788, 49.69853929];;FRS18E205323;FRIENE0058023;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.28992534;49.05785284;;;; +;;;;;;;;FRFR1PU335H3JLYA;HTGWJF;Cergy, ESSEC Business School;;2-4 Rue du Viaduc 80290 Gauville;;[-0.87841511, 47.6791211];;FRS28E134842;FRSHEE723;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.697092;43.73217763;;;; +;;;;;;;;FRFR1PXMSBUV;ATFEQY;E.Leclerc, Royan;;2 RUE DU GOUBERNEUR 34300;;[1.46184814, 44.8986309];;FRIONE40275;FRSHEE722;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9459234;44.88383502;;;; +;;;;;;;;FRFR1PJBKLIDJFMT;LQHUAW;E.Leclerc, Rueil-Malmaison;;288, route de Confort;;[3.05305481, 50.54928528];;FRIONE402705;FRSHEE721;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.93129551;47.64704237;;;; +;;;;;;;;FRFR1PJRJ1YQKCPS;ZMMMWQ;E.Leclerc, Sables d'Olonne;;8 Rue d'Annecy 68110 Illzach;;[3.0546981, 50.55028063];;FRIONE402704;FRSHEE712;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.138694;45.47548009;;;; +;;;;;;;;FRFR1PZSBLAQ;LPU0REEKYH;E.Leclerc, Romorantin;;139, Rue des Entrepreneurs – Zone de Prétot;;[2.9299, 49.51772];;FRIONE402703;FRSHEE711;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.51739226;48.73360275;;;; +;;;;;;;;FRFR1PNKM6A0PYWP;VVLALM;E.Leclerc, Rosendael;;40 RUE ANDRE THEURIET 74290;;[7.16298, 47.7958];;FRS18E117402;FRIENE0058024;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.32445998;48.73041824;;;; +;;;;;;;;FRFR1PBFRXEAP6WP;CURVAL;E.Leclerc Saint Junien, Centre Auto;;ROUTE DE PIEGUT 24300 Nontron;;[7.31413997, 48.08631445];;FRIENE0025012;FRIENE0058012;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3347204;42.26291493;;;; +;;;;;;;;FRFR1PLRH9XRGS4L;ZTUAMX;E.Leclerc Saint Junien;;164 QUARTIER LA GLACIERE;;[3.20907889, 50.69865957];;FRS18E117401;FRIONE40785;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.67798147;45.741693;;;; +;;;;;;;;FRFR1PWRBRGD5HQU;VMWQEJ;E.Leclerc, Saint-Amand-Montrond;;RN 75 ZI DE NOIREFONTAINE 01250 Montagnat;;[2.41586882, 48.79479325];;FRS28E130887;FRIENE0058011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3010889;43.43204993;;;; +;;;;;;;;FRFR1PZSFMSZ;JXKJUW;E.Leclerc, Saint-Brandan;;192 ROUTE DE LYON 24750 Boulazac Isle Manoire;;[0.98099938, 44.48613399];;FRS18E205672;FRS37E4500;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.29830986;49.87034034;;;; +;;;;;;;;FRFR1PREUFMB3JUC;XNARGA;E.Leclerc, Saint-Brice-Courcelles - Parking Hyper;;23 RUE DES ARDENNES 21000 Dijon;;[4.28992534, 45.25771148];;FRS18E205671;FRS37E4499;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.76363868;49.5119;;;; +;;;;;;;;FRFR1PXQ1TNK1LIC;NAKFKG;E.Leclerc Saint Berthevin;;RUE LUCIEN PERRIAUX ZI DE VIGNOLES 21200 Beaune;;[2.697092, 49.320022];;FRIONE40835;FRS37E4498;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.7634402;47.46494175;;;; +;;;;;;;;FRS89PY168YXLDGQ;TTMTLH;E.Leclerc, Rennes;;8 RUE DE L'INDUSTRIE 74240 Gaillard;;[1.9459234, 50.13571053];;FRIONE408306;FRS37E4497;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.99635721;49.38695036;;;; +;;;;;;;;FRS89PXPRVLAFTZW;ULLLGP;E.Leclerc, Périgueux;;81 AVENUE GUILLAUME LE CONQUERANT 14390 Cabourg;;[2.93129551, 42.69295972];;FRIONE408305;FRCPIE67387252;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.65781418;46.98382924;;;; +;;;;;;;;FRS89PWWQDW4NOVM;JZDKPB;E.Leclerc, Quimper;;Route de Digne 04500 Riez;;[6.138694, 48.70367];;FRIONE408304;FRCPIE67387251;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.798617;48.657533;;;; +;;;;;;;;FRS89PQCI92NVVNY;WFEDWU;E.Leclerc, Rambouillet;;415, Chemin de bottecreu;;[6.51739226, 47.68397952];;FRIONE408303;FRS08E57639;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.798625;46.82118142;;;; +;;;;;;;;FRS89PN2TOJUBYT5;AAVVNR;E.Leclerc, Pusey;;Riou Premier 43130 Retournac;;[1.32445998, 47.61544993];;FRIONE408302;FRN54E188610;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.793664;43.43612069;;;; +;;;;;;;;FRS89PLCFU7VLMR8;YLFQUA;E.Leclerc, Porto Vecchio;;756 AVENUE DE CAMPON 06110 Le Cannet;;[6.3347204, 47.14713038];;FRIONE408301;FRCPIE66546852;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.74550877;49.8582;;;; +;;;;;;;;FRFR1PLLJ3Z2AGU2555D;YPKBZP;E.Leclerc, Pontchâteau;;26 chemin Alotzbebere 64200 Arcangues;;[-1.67798147, 43.37472105];;FRIENE0025024;FRS08E57686;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.07815007;50.0094;;;; +;;;;;;;;FRFR1PSMMADKASZB;GTDFXE;E.Leclerc, Rennes Saint Gregoire;;2 bis Rue Charles de Gaulle, 78840 Freneuse;;[2.3010889, 45.53600566];;FRIENE0025023;FRCPIE66088552;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.99314212;49.8643;;;; +;;;;;;;;FRFR1PHFER1CVNZZ;AAYULB;E.Leclerc, Ribeauvillé;;43 RUE BUNSEN ZI DE BELLE PLACE 85000 La Roche-sur-Yon;;[2.29830986, 45.54410263];;FRS41E4683;FRCPIE66088551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.19413184;50.3396;;;; +;;;;;;;;FRFR1PPXTTGR;RTQNMD;E.Leclerc, Riorges;;BOULEVARD DU GENERAL LECLERC;;[0.76363868, 45.19216184];;FRS28E130534;FRIONE40235;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.77789362;50.3346;;;; +;;;;;;;;FRFR1PAGQMYEHSNO;YBMHAN;E.Leclerc, Saint-Brice-Courcelles - Parking Centre Auto;;AVENUE DES MARTYRS DE LA LIBERATION;;[0.7634402, 45.19078196];;FRS41E4684;FRIONE402302;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.71553555;50.0106;;;; +;;;;;;;;FRFR1PG2DDRJSDVR;TGSHMS;E.Leclerc, Saint-Pol-de-Leon;;1620 ROUTE D AVIGNON;;[1.99635721, 44.36058652];;FRS41E4746;FRIONE402301;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.41551462;50.0338;;;; +;;;;;;;;FRFR1PXZMEWP;EPRULV;E.Leclerc, Saint-Ouen L'Aumône;;351 chemin bas du mas de boudan 30000 NIMES;;[-0.65781418, 49.07382725];;FRS41E4718;FRS41E4038;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.91664318;49.8906;;;; +;;;;;;;;FRFR1PLQVZYC;ATFAFZ;E.Leclerc, Saint-Paul-lès-Dax;;LA VASTA SUPERIEURE;;[2.798617, 50.54055576];;FRS41E4719;FRS41E4037;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.91466843;50.1039;;;; +;;;;;;;;FRFR1PMSSQHX;GWMRND;E.Leclerc, Saint-Médard-en-Jalles;;Rue Brémontier, 40990 Saint-Paul-lès-Dax;;[2.798625, 50.5405618];;FRS41E4720;FRCPIE67596752;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.54661705;49.8644;;;; +;;;;;;;;FRFR1PYFNNSM;LTFJPE;E.Leclerc, Saint-Nicolas-de-Redon;;1 Quai du Havre, 59200 Tourcoing;;[-2.793664, 47.66908];;FRS28E134263;FRCPIE67596751;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.89759651;50.00290897;;;; +;;;;;;;;FRFR1PB61GBWQAVL;ZRNMMN;E.Leclerc, Saint-Priest-en-Jarez;;ZI Allee Pierre et Marie Curie 71500 Louhans;;[2.74550877, 50.4868159];;FRS41E4816;FRCPIE66546752;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.00039995;50.0251;;;; +;;;;;;;;FRFR1PTHY3EJOYI0;QDNNRD;E.Leclerc, Sarrebourg Marché Bio;;ROUTE DE VALENSOLE 04700 ORAISON;;[2.07815007, 49.033704];;FRS41E4817;FRCPIE66546751;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.91620303;50.1022;;;; +;;;;;;;;FRFR1PKGQUEN557E;GJHPTX;E.Leclerc, Sarrebourg Brico;;RUE DE MAYOCQ;;[-0.99314212, 45.63022046];;FRS41E167439;FRCPIE67594652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.80743472;42.62800905;;;; +;;;;;;;;FRFR1PUQMWXP1LTB;SAMTCM;E.Leclerc, San Giuliano;;40 Rue du Pradas;;[2.19413184, 48.86208218];;FRS41E167440;FRCPIE67594651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.71578361;44.93999197;;;; +;;;;;;;;FRFR1PKCFNXIKPD8;BGPYPT;E.Leclerc, Saintes-Abbaye-Maine;;LE VEYROU 19120 Altillac;;[-1.77789362, 46.51400657];;FRS41E4739;FRS18E188180;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.71811691;42.45139658;;;; +;;;;;;;;FRFR1PKCM19NLBYJ;TLKZQJ;E. Leclerc, Saint-Raphael;;Le Golf 2 14112 Biéville-Beuville France;;[1.71553555, 47.37369171];;FRS41E4740;FRS18E188179;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.08129056;50.0887;;;; +;;;;;;;;FRFR1PAAWFK13ZEK;WRRLPV;E.Leclerc, Salouel;;88 RUE DU JURA 01170 Cessy;;[2.41551462, 51.04589991];;FRS37E4741;FRS51E48890;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.85628406;49.81575871;;;; +;;;;;;;;FRFR1PWKJ7SGGVME;NRXSYF;E.Leclerc, Saint-Just-en-Chaussée;;VOIE DES FRANCAIS LIBRES 14470 COURSEULLES SUR MER;;[0.91664318, 45.89638519];;FRS37E4742;FRS51E48889;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.14377052;50.1327;;;; +;;;;;;;;FRFR1PO957ZEQDER;TLSDKV;E.Leclerc, Saint-Jean-de-Linières;;1 Rue des Gallois, 14210 Évrecy;;[0.91466843, 45.89626572];;FRS41E4745;FRCPIE66088651;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.27597437;49.8186;;;; +;;;;;;;;FRFR1PMJ3GBZ3PFX;RAGKJL;E.Leclerc, Saint-Etienne-du-Rouvray;;CLENET Route de Cholet 49400 Distré;;[2.54661705, 46.72399705];;FRS37E4747;FRCPIE66088652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.08114988;49.721911;;;; +;;;;;;;;FRFR1PAMXCWSBMV3;JRXYXK;E.Leclerc, Saint-Eloi;;660 rue de l'Epinette;;[-2.89759651, 48.40075355];;FRS41E4685;FRCPIE66088751;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.68367112;50.0717;;;; +;;;;;;;;FRFR1PDNGMRSFWLE;ZJSCSE;E.Leclerc, Saint-Malo;;ROUTE DE BAPAUME;;[4.00039995, 49.28251109];;FRS37E4748;FRIONE44905;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.33768229;49.8155;;;; +;;;;;;;;FRFR1PVW40LGQ14C;NCDSEP;E.Leclerc, Saint-Maur;;15 RUE DES CAILLOTIERES V A LA CROIX MICHAUD 17630 La Flotte;;[0.91620303, 45.89561984];;FRS28E128756;FRS08E57685;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.05470158;49.8227;;;; +;;;;;;;;FRFR1PKVTKW80MWI;SWHNTH;Fréjus, ETS Kuentz;;96 Rue Marietton, Lyon 69009 Lyon;;[-0.80743472, 48.06397015];;FRCPIE67522651;FRS08E57562;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.00184627;50.0689;;;; +;;;;;;;;FRFR1PL0ZK51ZAHC;LPZGQN;Boves, Orenoque;;34 rue des chauffourds 95;;[-1.71578361, 48.10448437];;FRCPIE67522652;FRS08E57561;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.99773851;49.8367;;;; +;;;;;;;;FRFR1PTBLCLSJ4PF;CLYHGY;Longpré-les-Corps-Saints, Moulin;;25 avenue de la constellation;;[0.71811691, 45.18910526];;FRCPIE67523051;FRIENE0055024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.12308566;50.0036;;;; +;;;;;;;;FRFR1PYOTUP5OVAQ;QRBEQB;Boves, Indes Noires;;2 rue de rouen 95 vigny;;[-4.08129056, 48.0158875];;FRCPIE67523052;FRIENE0055023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.04559503;50.0634183;;;; +;;;;;;;;FRFR1PJWK3GA2LBR;Z5YRCO4MCH;Fort-Mahon, Paris;;1 RUE DE LA BRIQUETTERIE piscop;;[1.85628406, 48.64680402];;FRCPIE66644151;FRIENE0055012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.69149513;49.8875;;;; +;;;;;;;;FRFR1PTJNUX7EA3X;CSGDHJKZWQ;Fort-Mahon, Pierre et Vacances Village;;131 AVENUE JEAN JAURES 69600 Oullins;;[6.14377052, 47.6447619];;FRCPIE66644152;FRIENE0055011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.0783013;49.9121;;;; +;;;;;;;;FRFR1PCY1SUZNSHO;QV1XBL32UC;Longpré-les-Corps-Saints, Parking Stade;;96 Rue Marietton 69009 Lyon;;[9.27597437, 41.59735225];;FRS41E4727;FRIONE449004;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.38309193;50.2525;;;; +;;;;;;;;FRFR1PV38WQLOKLK;A1OTAOVE13;Naours, Marais;;29 Rue Guynemer 44150 ANCENIS;;[-2.08114988, 47.43337469];;FRS41E4728;FRCPIE66088752;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.04613784;49.9392;;;; +;;;;;;;;FRFR1PZWRJVV;SZ3N6E2YCW;Senarpont, Jeu de Paume;;248 Rue de Notre Dame, 85160 Saint-Jean-de-Monts;;[-1.68367112, 48.13823803];;FRCPIE67409851;FRIONE449003;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.03988977;50.0733;;;; +;;;;;;;;FRFR1PZSYZPW;EUQNWG;Abbeville, Talance;;6 CHEMIN LE FRENAT;;[7.33768229, 48.19015659];;FRCPIE67409852;FRIONE449002;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.5473872;50.06773373;;;; +;;;;;;;;FRFR1PWFAJKQ;EY9BGCXHTS;Boves, Parking FDE 80;;5 Les Rabeaux 88340 Le Val-d'Ajol;;[4.05470158, 46.04503677];;FRCPIE67410251;FRIONE449001;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.62493383;50.10042512;;;; +;;;;;;;;FRFR1PSYMTCVEZGS;SUERDA;Flesselles, Place Septime;;40 GRANDE RUE 8834;;[4.00184627, 49.28107517];;FRS41E4717;FRCPIE66654152;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.80605137;50.11000381;;;; +;;;;;;;;FRFR1PCRWPFJ;NBMZWT;Huppy, Route Nationale;;ANGLE RUE R DESFOSSES ET G BELL 29200 Brest;;[-3.99773851, 48.67870648];;FRS41E4716;FRCPIE66654151;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26086318;46.675049;;;; +;;;;;;;;FRFR1PEMXWMFSZZT;IAN9F6VWO1;Abbeville, Gare;;Rue Louis Braille 38300 Bourgoin-Jallieu;;[2.12308566, 49.05785284];;FRS41E4715;FRS41E4934;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.43341;48.87602133;;;; +;;;;;;;;FRFR1PCJUUZX;CMPLB7WHDW;Biguglia, Espace Elec Ceppe;;Rue du Lenno;;[-1.04559503, 43.73217763];;FRS41E4722;FRS41E4933;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.66996705;48.5761;;;; +;;;;;;;;FRFR1PSNGFSA;ETMIFQYXCA;Eyrignac, Eyrignac et ses jardins;;Avenue de la Libération;;[-0.69149513, 44.88383502];;FRS41E4690;FRCPIE67266152;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.07381283;48.770422;;;; +;;;;;;;;FRFR1PRULGFH;SFV8O6KKAO;Piedigriggio, FB Automobiles;;Place Saint Gaudence;;[-2.0783013, 47.64704237];;FRS41E4691;FRCPIE67366152;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.21628188;41.3905216;;;; +;;;;;;;;FRFR1PMJLMPN;LTXRMEKMHM;Friaucourt, Mairie;;Rue de la Citée des Fleurs;;[4.38309193, 45.47548009];;FRS41E4692;FRS41E2950;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.973002;45.7882;;;; +;;;;;;;;FRFR1PSARRBCORD;OVLIOS1NEP;Rosières-en-Santerre, Rue Curie;;Boulevard de l'Océan;;[7.04613784, 48.73360275];;FRS41E4693;FRIONE404452;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.66963499;48.5291;;;; +;;;;;;;;FRFR1PREDINGGARE;RQ3Q8W8JZB;Saint-Riquier, Ecole des Garçons;;Rue Georges Cadoudal;;[7.03988977, 48.73041824];;FRCPIE64953451;FRIONE432503;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.74828741;48.5923;;;; +;;;;;;;;FRFR1PXBWVSQ;QYXETA;Chaulnes, Salle des Fêtes;;Rue du Presbytère;;[9.5473872, 42.26291493];;FRCPIE64977551;FRIONE432502;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3919;48.587;;;; +;;;;;;;;FRFR1PSARRBCINESTAR;HMRQ8DJXDD;Saint-Léger-lès-Domart, Eglise;;Rue de la République;;[-0.62493383, 45.741693];;FRCPIE64977552;FRIONE432501;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.00316;48.621889;;;; +;;;;;;;;FRFR1PXLNZYE;U8FM0DWWX8;Contoire, Maison Médicale;;Rue Pasteur;;[6.80605137, 43.43204993];;FRCPIE64977651;FRS18E109620;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.37073;42.29943501;;;; +;;;;;;;;FRFR1PENPRTC;ZBOTAXM1N9;Woincourt, Kléber;;Rue Anne de Bretagne;;[2.26086318, 49.87034034];;FRS41E4700;FRS18E109619;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.55556;41.95966708;;;; +;;;;;;;;FRFR1PTVZBFA;RYJXOYUE86;Sains-en-Amiénois, Place de la Ville;;Route de Vannes;;[2.43341, 49.5119];;FRS41E4701;FRTNME099111641;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.56457;42.54955641;;;; +;;;;;;;;FRFR1PUHPYPQ;BII1ZEOITL;Quevauvillers, Salle des Fêtes;;Place du Vieux Couvent;;[-0.66996705, 47.46494175];;FRS41E17065;FRTNME099111640;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.99244;48.455622;;;; +;;;;;;;;FRFR1PLSZFYN;VEL3NQFHW0;Feuquières-en-Vimeu, Parking Z.I;;Rue Saint Laurent;;[1.07381283, 49.38695036];;FRS41E17066;FRTNME089122281;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2748;48.60862138;;;; +;;;;;;;;FRFR1PSQMVNC;JGTXAAQTG7;Saint-Fuscien, Eglise;;Place du Plessis de Genedan;;[3.21628188, 46.98382924];;FRS41E4704;FRTNME089122280;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.71779;47.654622;;;; +;;;;;;;;FRFR1PTXSQQA;HTMKTM7ROT;Villers-Bocage, Zone Commerciale;;Rue de Beg er Lann;;[-1.973002, 48.657533];;FRS41E4705;FRTNME089122201;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.82875;48.440343;;;; +;;;;;;;;FRFR1PRACFXH;ZMADJK;Mers-Les-Bains, Rue du 4 Septembre;;Parking du bourg;;[1.66963499, 46.82118142];;FRIENE0072011;FRTNME089122200;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.36584;48.501783;;;; +;;;;;;;;FRFR1PIQXOTO9RCO;PX8CCIXVTW;Camon, Mairie;;Place Anne de Bretagne;;[6.74828741, 43.43612069];;FRIENE0072012;FRTNME089122181;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26056625;47.78896545;;;; +;;;;;;;;FRFR1PKJAUUA;ZOJVYBGVNI;Corbie, 11 Novembre;;Place de la Résistance;;[2.3919, 49.8582];;FRIENE0072023;FRTNME089122180;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.75093;47.01451245;;;; +;;;;;;;;FRFR1PBCNPMZIP3X;KDNDRR;Crécy-en-Ponthieu, 8 Mai;;Rue de la Maillette;;[2.00316, 50.0094];;FRIENE0072024;FRCPIE66786552;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.82567;48.74956787;;;; +;;;;;;;;FRFR1PSFNDWUV1R9;QUNHGB;Saint-Sauveur, Jean Paszek;;Boulevard de la plage;;[2.37073, 49.8643];;FRS41E4706;FRCPIE66786551;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.43693124;47.662287;;;; +;;;;;;;;FRFR1PKEZTK8O7PQ;ZLOEP13R8Q;Saint-Quentin-la-Motte, Parking Eglise;;Allée Laurent Esvan - Mairie;;[1.55556, 50.3396];;FRS41E4707;FRCPIE66786252;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.31526251;48.5808;;;; +;;;;;;;;FRFR1PPORCELAVOLD;G6EQG69JYG;Fressenneville, Tilleuls;;Rue du Stade;;[1.56457, 50.3346];;FRS41E4709;FRCPIE66786251;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.19972481;48.5945;;;; +;;;;;;;;FRFR1PIYORKBPKU5;XEIHBKLJME;Ault, 11 Nov.1918;;Rue Marie Curie;;[1.99244, 50.0106];;FRS41E4710;FRIONE432504;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.48123;48.5802;;;; +;;;;;;;;FRFR1PTHONXFPNYV;PDGJQAA0FT;Montmorot, Rue des Pre des dames;;Place Saint Michel;;[2.2748, 50.0338];;FRS41E4711;FRIONE43255;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.70682475;48.41308043;;;; +;;;;;;;;FRFR1PZVUO3G8E9O;WGALU8RLGY;Magny le Hongre, Hotel Explorers;;Rue Théophile Guyomar;;[1.71779, 49.8906];;FRS41E4712;FRCPIE65350851;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.94704;48.056962;;;; +;;;;;;;;FRFR1PLLHUFEKVP2OW7B;CPXF2LLPM8;Strasbourg, Maréchal de Lattre de Tassigny;;Avenue des cités unies;;[1.82875, 50.1039];;FRS41E4713;FRFASE3309803;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.79988;50.3164;;;; +;;;;;;;;FRFR1PVNGYVMGGN2;SI2KB9XGYR;Phalsbourg, Chemin des Dames;;Parking Jégourel;;[2.36584, 49.8644];;FRS41E4714;FRFASE3309810;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.14021;49.7763;;;; +;;;;;;;;FRFR1PDXPKNG;VAHGUF;Bonifacio, Ets Botti;;Place Aristide Briand;;[2.26056625, 50.00290897];;FRS41E4721;FRFASE3309809;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.546898;49.7547;;;; +;;;;;;;;FRFR1PWHQDPMTUSJ;MTMBQ1VMJY;Clermont-Ferrand, Eurodorthz;;Quai des Récollets;;[1.75093, 50.0251];;FRS28E134902;FRFASE3309808;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.54158;49.946;;;; +;;;;;;;;FRFR1PZIBNJW6L9E;KKQLE6INYX;Strasbourg, Quai Turckheim;;Rue de la Brèche;;[1.82567, 50.1022];;FRS18E126242;FRFASE3309807;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3163;50.079;;;; +;;;;;;;;FRFR1PQQHTLB;AUCZWJ;Illkirch-Graffenstaden, François Mitterrand;;Rue du Bel Air;;[9.43693124, 42.62800905];;FRIONE412702;FRFASE3309806;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.08244;50.00111548;;;; +;;;;;;;;FRFR1PGPVWBL;YJMNZF;Strasbourg, Robertsau;;Avenue de la Gare;;[1.31526251, 44.93999197];;FRCPIE66853451;FRFASE3309805;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.59817;50.0638;;;; +;;;;;;;;FRFR1PANFTOPYB1P;GKNGDZ;Strasbourg, Place de la République;;Place Général de Gaulle;;[9.19972481, 42.45139658];;FRCPIE67183852;FRFASE3309804;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.31397;49.7366;;;; +;;;;;;;;FRFR1PO19SAEMHWV;AJGZJR;Hoenheim, Espace H public;;Place du Général de Gaulle;;[1.48123, 50.0887];;FRCPIE67183851;FRFASE3309802;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.31327;50.20570326;;;; +;;;;;;;;FRFR1PESA4E2FUK6;JLDOS4PD2H;Corte, Espace Elec;;Place Varquez;;[2.70682475, 49.81575871];;FRSHEE242;FRCPIE65350852;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.38828882;49.8894;;;; +;;;;;;;;FRFR1PKHLEBW;WZNSAM;Afa, Espace Elec Baleone;;Port Haliguen;;[1.94704, 50.1327];;FRSHEE241;FRFASE3309801;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34355;49.8965;;;; +;;;;;;;;FRFR1PZVL7ATPPWY;YJRJT8ZFIK;Lucciana, Espace Elec;;Rue de la Résistance;;[2.79988, 49.8186];;FRSHEE212;FRCPIE66998152;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.51509;50.0741;;;; +;;;;;;;;FRFR1PISHILDOGFQ;N9E3AHO598;Obernai, Espace H Public;;Rue de la Ferrière;;[2.14021, 50.0526];;FRSHEE211;FRCPIE66998151;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.88484;49.7777;;;; +;;;;;;;;FRFR1PDIESENCHAMPS;GID8GC3XH5;Schiltigheim, route de Bischwiller;;Lomener - Place Patrick Bihan;;[2.546898, 49.721911];;FRIENE0040024;FRCPIE66967252;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.21363;49.9917;;;; +;;;;;;;;FRFR1PVALMONTGARE;HUMNVVMJLC;Europcar Vannes;;Place Kermabon;;[1.54158, 50.0717];;FRIENE0040023;FRCPIE66967251;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.45285;49.7751;;;; +;;;;;;;;FRFR1PVALMONTMAIRIE;OIRPBLPGGO;Europcar Brest Saint-Tudon;;Parking relais - proximité route nationale;;[2.3163, 49.8155];;FRIENE0040012;FRCPIE66967152;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.57406822;50.0709;;;; +;;;;;;;;FRFR1PFOLSCHVILLER;HIPTHVIZZY;Europcar Saint-Brieuc;;Rue des Deux Moulins;;[2.08244, 49.8227];;FRIENE0040011;FRCPIE66967151;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.44889318;49.74154882;;;; +;;;;;;;;FRFR1PRFSKEP;ROA62NCPNF;Lorient Caudan;;Parc d'activités de Ronsouze;;[1.59817, 50.0689];;FRCPIE66853552;FRIONE404453;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.4552586;49.9557;;;; +;;;;;;;;FRFR1PMYVULR;QJPMFY9VDG;Varennes-Vauzelles, Parking Europe Hôtel 58;;Réhumpol, proximité futur lycée;;[2.31397, 49.8367];;FRCPIE66853551;FRIONE404451;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.536033;50.215;;;; +;;;;;;;;FRFR1PVSAKX7WKLW;UK5JQUMRGT;Europcar Lannion;;Rue Hélène Le Chaton;;[2.31327, 50.0036];;FRCPIE66853452;FRFASE3309812;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.80631757;50.0101;;;; +;;;;;;;;FRFR1PYKTKBS;JDIEUSSXCH;Europcar Redon;;Rue des Chaumières;;[1.38828882, 50.0634183];;FRS28E129205;FRIONE404405;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.269749;49.8964;;;; +;;;;;;;;FRFR1PLHOPITALGARE;DK6XS3IOSC;Strasbourg, Balayeurs;;Rue du Tramway;;[2.34355, 49.8875];;FRCPIE67004652;FRS18E97833;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.1649234;50.0498;;;; +;;;;;;;;FRFR1PCARLINGFRON;JCNTJBOJ10;Strasbourg, Place de Bordeaux;;Rue des Roseaux;;[2.51509, 49.9121];;FRS37E1203;FRS18E97832;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.14318;50.15544663;;;; +;;;;;;;;FRFR1PRGPNLAOCAJ;OWJJ5SAPNR;Strasbourg, rue Gerlinde;;Rue d'Elle;;[1.88484, 50.2525];;FRS37E1202;FRCPIE66850652;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.73864;50.1682;;;; +;;;;;;;;FRFR1PT8NDNATOEV;TAXW4NUFVF;Europcar Brest Pen Ar Chleuz;;Rue des Martyrs de la Résistance;;[2.21363, 49.9392];;FRCPIE66031652;FRCPIE66850651;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.70818;49.8898;;;; +;;;;;;;;FRFR1PG0HAPOBGP3;JUD6RZJTTH;Europcar Pontivy;;Place Ernest le Moine;;[1.45285, 50.0733];;FRCPIE66031651;FRS55E124571;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.76987;50.0336;;;; +;;;;;;;;FRFR1PIEDDDF0Q0L;W3NYJVVV4C;Quend, Mairie;;Rue du 19 Mars 1962;;[1.57406822, 50.06773373];;FRCPIE66113052;FRS55E124570;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75247;49.8926;;;; +;;;;;;;;FRFR1PW10TRRJXGH;GYNIQ5AGRO;Mesnil-Saint-Nicaise, Ecoles;;2 Rue des Remparts;;[1.44889318, 50.10042512];;FRCPIE66113051;FRCPIE65803952;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.727858;49.8925;;;; +;;;;;;;;FRFR1POEOGLXCZFN;HCGJJZ;Hangest-en-Santerre, Mairie;;Boulevard de Port Maria;;[1.4552586, 50.11000381];;FRS18E148665;FRCPIE65803951;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.1708877;50.0086;;;; +;;;;;;;;FRFR1PP7ZEAJRSCL;DXWOUAPF4B;Picquigny, Gare;;Place de l'Eglise;;[5.536033, 46.675049];;FRS18E148664;FRCPIE65803852;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.8048678;50.0389;;;; +;;;;;;;;FRFR1PEOGRMLSQTW;CBMQXCFJ9L;Ailly-le-Haut-Clocher, D1001;;Place Kerpape;;[2.80631757, 48.87602133];;FRS18E112365;FRCPIE65803851;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.45076287;50.0542;;;; +;;;;;;;;FRFR1PYO82KYWPO8;KBVONDUIIB;Albert, allée Georges Lamant;;Rue Cours Carré;;[7.75301, 48.5761];;FRS18E112364;FRIONE44735;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.495616;50.1058;;;; +;;;;;;;;FRFR1PCJB1ZC4BR6;I4HXYDCXJI;Eaucourt-sur-Somme, Pont;;Rue des écoles;;[7.269749, 48.770422];;FRS18E109670;FRIONE447306;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75043642;50.0905;;;; +;;;;;;;;FRFR1PV7EXT2CMXB;MWMLUQHPM0;Flers-sur-Noye, Paris;;2 Avenue Carnot;;[9.1649234, 41.3905216];;FRS18E109669;FRIONE447305;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.720353;49.7994;;;; +;;;;;;;;FRFR1PCJIGQX5EEN;RSX0LEKBQ0;Forest-l'Abbaye, Place des Templiers;;9-13 Place de L Hôtel de ville;;[3.14318, 45.7882];;FRCPIE67371752;FRIONE447304;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.425199;49.8774;;;; +;;;;;;;;FRS89PZAGK3DXQNE;LR8TGUULFU;Amiens, Parking Saint-Leu 1;;Rue Jean Le Bris;;[7.73864, 48.5814];;FRCPIE67004651;FRIONE447303;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.739464;50.0858;;;; +;;;;;;;;FRFR1PHGYDHN;B9F5WIHHBL;Domart-en-Ponthieu, Etoile;;Les Glacis;;[7.70818, 48.5291];;FRCPIE67004851;FRIONE447302;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.32667051;50.0721;;;; +;;;;;;;;FRFR1PYIW9RNHBFD;QBFZECLLXJ;Poix-de-Picardie, Gare;;Port-Collen;;[7.76987, 48.5923];;FRS88E145479;FRIONE447301;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.15163708;50.0655;;;; +;;;;;;;;FRFR1PQAHLNICPOS;YEGFTTHMH7;Hallencourt, République;;Parking Cimetière Place des 4 Frères le Blouch;;[7.75247, 48.587];;FRIONE402603;FRIENE0036011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.46104976;49.7768;;;; +;;;;;;;;FRFR1PGBTVFCOXRK;QKLPPL4XTK;Poix-de-Picardie, République;;Place de la Mairie;;[7.727858, 48.621889];;FRIONE412701;FRIENE0036012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.074529;49.874;;;; +;;;;;;;;FRFR1PP2SBBU9AIE;MAFQ9DQN6F;Feuquières-en-Vimeu, Baie de Somme;;Place Corentin Le Floch;;[9.1708877, 42.29943501];;FRCPIE66338652;FRIENE0036023;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.76138;49.9112;;;; +;;;;;;;;FRFR1PIOA9IKAACX;ZPA4ATRQ2R;Conty, Gare;;Place de L'église;;[8.8048678, 41.95966708];;FRCPIE66338651;FRCPIE66776151;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75916;50.1074;;;; +;;;;;;;;FRFR1PNW2L9MBAJT;VXSL0B2ANU;Oisemont, Jules Ferry;;Rue du souvenir;;[9.45076287, 42.54955641];;FRCPIE66338552;FRIONE404404;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.71339;50.1061;;;; +;;;;;;;;FRFR1PQGKCHS3PHE;HJMFK5BNOH;Cayeux-sur-Mer, Argousiers;;Place Joseph Guillerme;;[7.495616, 48.455622];;FRCPIE66338551;FRIONE404402;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.47967769;50.1046;;;; +;;;;;;;;FRFR1PDPDFCD;JWBYBTAJPL;Condé Folie, 22E RMVE;;Place d'Alzey;;[7.75043642, 48.60862138];;FRS51E41325;FRIONE404401;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.96248;49.9857;;;; +;;;;;;;;FRFR1PLLKI9GCZU29A8F;J2PTEQVKWN;Amiens, Parking Saint-Leu 2;;Place Georges Lamour;;[-2.720353, 47.654622];;FRS51E41324;FRCPIE66776152;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6347;49.97754705;;;; +;;;;;;;;FRFR1PPDC6ZL4PFH;PEUJAWCTR7;Flers, Mémorial;;Rue des Rohan;;[-4.425199, 48.440343];;FRIONE402653;FRFASE3310908;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.90787;50.1087;;;; +;;;;;;;;FRFR1PXLPHWS;ZYJ7I0FGEH;Buigny-Saint-Maclou, Château;;Rue de la Mairie;;[-2.739464, 48.501783];;FRIONE402652;FRIENE0036024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.60418;50.3221;;;; +;;;;;;;;FRFR1PLLJYET1MT29ZIY;NMFEQ90JG9;Hem Hardinval, Risquetout;;Rue de l'Hôtel de ville;;[-3.32667051, 47.78896545];;FRIONE402651;FRFASE3310907;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1435;49.9649;;;; +;;;;;;;;FRFR1PKVIRJDVIRT;IZU8ZFBXXB;Amiens, Branly;;Place du Dôme;;[3.15163708, 47.01451245];;FRIONE402606;FRFASE3310906;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.99503;49.9422;;;; +;;;;;;;;FRFR1PIPYVK0DJ6C;DUSXJL;Fins, Pavé;;Cours des Quais;;[-3.46104976, 48.74956787];;FRIONE402605;FRFASE3310905;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.65116478;50.061;;;; +;;;;;;;;FRFR1PKOB2XOCXWB;G009CV3ZJE;Amiens, Parking 3 Cailloux;;Rue du Tostal;;[-2.074529, 47.662287];;FRIONE402604;FRFASE3310904;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.88311;50.0747;;;; +;;;;;;;;FRFR1PXKURJS;CAS701RIZP;Combles, Candelier;;3 Place de l'Eglise;;[7.76138, 48.5808];;FRS28E134890;FRFASE3310903;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.25249;49.7436;;;; +;;;;;;;;FRFR1PYBDSF1GAWY;YQKELHNRP6;Long, Mairie;;Avenue françois Billoux;;[7.75916, 48.5945];;FRCPIE67004852;FRFASE3310902;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.82438593;50.108029;;;; +;;;;;;;;FRFR1PMNDEBE;YCPEWRGL9L;Noyelles-sur-Mer, Gare;;Rue Youri Gagarine;;[7.71339, 48.5802];;FRS28E137349;FRFASE3310901;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3058;50.1325;;;; +;;;;;;;;FRFR1PFGZWXSCGAV;EACLKZ;Pont-Rémy, Saveuse;;Place Morvan Leiz Breizh;;[-4.47967769, 48.41308043];;FRS51E41148;FRFASE3309811;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.30094;50.214967;;;; +;;;;;;;;FRFR1PKOMG7EKARS;VZL9GPAYNT;Abbeville, Moulin du Roy;;Rue Maurice Thorez;;[-2.96248, 48.056962];;FRS51E41147;FRFASE3309813;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.12083;49.759965;;;; +;;;;;;;;FRFR1PHSIVEYPWFI;YJYG7SXQC9;Friville-Escarbotin, Mairie;;Place Anatole Le Braz;;[1.6347, 50.3164];;FRS51E41135;FRIONE435903;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.98929;50.2116;;;; +;;;;;;;;FRFR1PFOXO36TF3N;B6VI5YO8DJ;Dommartin, Gare;;Place d'Armes;;[2.90787, 49.7763];;FRS51E41134;FRIENE0075023;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.87841;49.7043;;;; +;;;;;;;;FRFR1PEXBJBK;JPU6IRJFBD;Glisy, Mairie;;Place de La Liberté;;[2.60418, 49.7547];;FRS37E1239;FRIENE0075012;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.98128;50.1072;;;; +;;;;;;;;FRFR1PE8G5ELE480;WS9TVOAQQE;Beauquesne, Bac;;Rue de Lanveur;;[2.1435, 49.946];;FRS37E1238;FRIENE0075011;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.5901;50.1836;;;; +;;;;;;;;FRFR1PQMLUBIPCHF;LLJ40WJN92QMZD;Acheux-en-Amiénois, Wazière;;Rue Jean le Coutaller;;[1.99503, 50.079];;FRS51E40935;FRCPIE66187252;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.15622483;50.3471;;;; +;;;;;;;;FRFR1PLLJYEQ3G7O5R6V;SKHOBW49HF;Mers-les-Bains, Canadiens;;Rue Léo Lagrange;;[2.65116478, 50.00111548];;FRS51E40934;FRCPIE66187251;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.76749;42.61074882;;;; +;;;;;;;;FRFR1PRPGBBAKTHH;TA02FFLDQM;Moreuil, Gare;;56 Rue Argentré du Plessis;;[1.88311, 50.0638];;FRS28E134368;FRCPIE65019151;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.56401;49.11482753;;;; +;;;;;;;;FRFR1PVGVNSN;LWOOPFQ7NB;Estrées-Deniécourt, Com de Com;;Rue Moïse Le Bihan;;[2.25249, 49.7366];;FRS37E1411;FRCPIE66152952;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.01321;48.6581;;;; +;;;;;;;;FRFR1PYHVKCF;YMMBPBLYAI;Corbie, Gare;;Rue Müller;;[1.82438593, 50.20570326];;FRCPIE67004952;FRCPIE66152951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8217;48.595;;;; +;;;;;;;;FRFR1PDXQVXC;QAEFOK9R0M;Candas, Gare;;Rue Raymond du Rallier du Baty;;[2.3058, 49.8894];;FRCPIE67004951;FRS88E162025;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.81289081;48.6692;;;; +;;;;;;;;FRFR1PSGEMRSLVN3;XF0FLNMPLJ;Abbeville, Mairie;;Rue des Forges;;[2.30094, 49.8965];;FRCPIE67371751;FRS88E162023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3022;48.5864;;;; +;;;;;;;;FRFR1PXIXGQQFMOL;FEZQDELCUW;Abbeville, Collégiale;;Place du Docteur Jean Queinnec;;[2.12083, 50.0741];;FRCPIE67370652;FRCPIE67091752;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2906;48.5037;;;; +;;;;;;;;FRFR1PKLBKXT19XL;BC9AMA977O;Gamaches, Parking Mairie;;Aire de Marzan;;[1.98929, 49.7777];;FRCPIE67370651;FRCPIE67091751;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.04167;48.5779;;;; +;;;;;;;;FRFR1PBRASPANON2002;BEM0MZEHDY;Villers Faucon, rue Saint-Quentin;;Place Alsace Lorraine;;[1.87841, 49.9917];;FRCPIE67367351;FRCPIE67091552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.30029;48.6259;;;; +;;;;;;;;FRFR1PSHRWKOFQRZ;KTXKVX;Abbeville, Capucins;;Parvis Gare;;[1.98128, 49.7751];;FRS18E188401;FRCPIE67091551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.30024;48.4703;;;; +;;;;;;;;FRFR1PSKSFD8QFSZ;QXPD2AT8JS;Quend, Picardie;;Parking Wilson;;[1.5901, 50.0709];;FRS28E134359;FRIONE43595;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8654;48.532983;;;; +;;;;;;;;FRFR1PZPQVODGTYL;EWGRIN70CW;Airaines, Seymour;;Place Joseph Richard;;[2.15622483, 49.74154882];;FRS18E117713;FRIONE435906;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9789;48.63558163;;;; +;;;;;;;;FRFR1PTHLHDS2GGN;LNX7DVKRZO;Pont Noyelles, Cimetière;;Rue Maréchal Leclerc;;[1.76749, 49.9557];;FRS18E117712;FRIONE435905;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.7041;48.59813197;;;; +;;;;;;;;FRFR1PLEPORTZAC2000;KBPNNPSUZB;Feuquières-en-Vimeu, Mairie;;Parking du centre;;[1.56401, 50.215];;FRS18E151322;FRIENE0075024;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.90322;48.6086072;;;; +;;;;;;;;FRFR1PPOSSESSJOLIZAC;ZDFNGFYIU3;Friville-Escarbotin, Marettes;;Rue de Kroas Er Bleu;;[2.01321, 50.0101];;FRS18E151321;FRCPIE65022851;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.83149;48.5760783;;;; +;;;;;;;;FRFR1PCNMYXQ1FIG;VVDFEN;Ham, Esplanade;;Avenue de la Perrière;;[2.30094, 49.8964];;FRCPIE67368252;FRCPIE65065051;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.54923;48.5904;;;; +;;;;;;;;FRFR1PJ2WYHZVZ7P;P7EPOMTVSO;Beauval, Rue Charles Cagny;;Boulevard Abbé Louis le Cam;;[2.8217, 50.0498];;FRCPIE67368251;FRIENE0088024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.39232;48.6001;;;; +;;;;;;;;FRFR1PSTGILLESTAMA;VEZIJLLV8J;Bernaville, Duprez;;Boulevard du Maréchal Joffre;;[1.81289081, 50.15544663];;FRCPIE67367552;FRTNME18B924470;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.39839;48.5868;;;; +;;;;;;;;FRFR1PBMMQ9BPZYD;HQNSJ8DLJY;Le Crotoy, Rue Pierre Guerlin;;Boulevard Leclerc - Parking Hôtel De Ville;;[2.3022, 50.1682];;FRCPIE67367551;FRTNME18B923920;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.39265;41.94692817;;;; +;;;;;;;;FRFR1PPIERREFONDSRN;BTVTHJ;Nesle, Route de Ham;;Cours Louis de Chazelles;;[2.2906, 49.8898];;FRCPIE67367452;FRS51E127011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.53337;48.4875;;;; +;;;;;;;;FRFR1PSTANDREIDF;Z5YMICU46B;Nouvion, Mairie;;Lorient Découverte Rue de Villeneuve;;[3.04167, 50.0336];;FRCPIE67367451;FRS51E127010;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.38758;48.59887343;;;; +;;;;;;;;FRFR1PSAINTEMARIEN2;FPMK6CLAK8;Thoix, Village;;Parking gare;;[2.30029, 49.8926];;FRCPIE67367352;FRCPIE67130951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.47597;48.60648253;;;; +;;;;;;;;FRFR1PSTECLOTILDE;YCQYLGSCIJ;Abbeville, Salle des Fêtes;;Rue 5 Août 1954;;[2.30024, 49.8925];;FRCPIE67364952;FRCPIE67130751;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.82981;48.56607557;;;; +;;;;;;;;FRFR1PSTBENOITJAURES;ELC41U7R0U;St-Valéry/Somme, St-Pierre (Park. Corderies);;Rue de Quéven;;[2.8654, 50.0086];;FRCPIE67369452;FRCPIE67116551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.50076;48.56592647;;;; +;;;;;;;;FRFR1PFQPWPW;FCRUCZZRMY;Argoules, Valloires;;Rue du Pré de la Dame;;[1.9789, 50.0389];;FRCPIE67364951;FRIENE0088023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.25834;48.579078;;;; +;;;;;;;;FRFR1P58D90DAA7C461;GKS0FGLKUY;Ile-Rousse, Espace Elec;;Proximité médiathèque;;[1.7041, 50.1874];;FRCPIE67362552;FRS51E175071;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.83478;48.60021087;;;; +;;;;;;;;FRFR1PJYFTYHFQUW;PBVWXODJGA;Clef Vallée d'Eure, rue de Louviers;;Ruelle des Champs;;[1.90322, 50.0542];;FRCPIE67362551;FRIENE0088012;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.83241;48.57936478;;;; +;;;;;;;;FRFR1PBQZARA0WGY;I6GJEEHANQ;La Wantzenau, Rue des Héros;;Place Saint Märgen;;[1.83149, 50.1058];;FRCPIE67266852;FRIENE0088011;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.56131;48.59542856;;;; +;;;;;;;;FRFR1PLLJCTDVDU3YIRJ;SDVWXZW1J4;Strasbourg, Place Mathieu Zell;;Rue Sainte Anne;;[1.54923, 50.0905];;FRCPIE67266851;FRCPIE66692252;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.10149066;48.57833911;;;; +;;;;;;;;FRFR1PSTPHILIPREUNI;TDQIJPJMNC;Vendenheim, Rue de la Bique;;Rue Robert de la Noé;;[2.39232, 49.7994];;FRCPIE67266752;FRCPIE66692251;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.83392;48.58694488;;;; +;;;;;;;;FRFR1PSALINETAMARIN;H5QTPJILRB;Osthoffen, Rue Principale;;Parking Saint Thuriau;;[2.39839, 49.8774];;FRCPIE67266751;FRCPIE66692152;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.547;48.5403391;;;; +;;;;;;;;FRFR1PSTPIERREBOIS;PSUDUL9MIJ;Blaesheim, Rue du Lavoir;;Rue de l'Ecole;;[2.39265, 50.0858];;FRS28E129076;FRCPIE66692151;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.94523;48.51599671;;;; +;;;;;;;;FRFR1PI09GDOR3YZ;MH4YHU6SK6;Achenheim, Mairie;;Rue Nationale;;[2.53337, 50.0721];;FRS88E145497;FRS51E175072;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.44312;48.652245;;;; +;;;;;;;;FRFR1PW31RKKRAWS;BXRRLVQJLH;Niederhausbergen, Rue de Haldenbourg;;Kerchopine;;[1.38758, 50.0655];;FRS88E145495;FRIONE435904;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6087;48.5557229;;;; +;;;;;;;;FRFR1PHWK6HWHJML;RG6TILUNOU;Plobsheim, Mairie;;Place du Presbytère;;[2.47597, 49.7768];;FRS18E150514;FRIONE435902;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53544;48.68518797;;;; +;;;;;;;;FRFR1PSTPIERRELEGOL;NMFVTC5INF;Entzheim, rue de la mairie;;Rue de la Poste;;[2.82981, 49.874];;FRS18E150513;FRFASE3309814;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.07323;48.578641;;;; +;;;;;;;;FRFR1PIOMGH1LYJJ;GWXYTVBPSU;Souffelweyersheim, Mairie;;Embarcadère;;[2.50076, 49.9112];;FRS88E145481;FRIONE435901;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.333792;48.56849302;;;; +;;;;;;;;FRFR1PVLIGQ2PRQT;LUGYSMFOZQ;Strasbourg, allée du printemps;;Place Centrale;;[2.25834, 50.1074];;FRS18E188402;FRFASE3311016;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1629;48.58840328;;;; +;;;;;;;;FRFR1PATVPPC;OJGJFQZ0RB;Schiltigheim, Route de Bischwiller;;Place Glaharon;;[1.83478, 50.1061];;FRCPIE67378951;FRFASE3311015;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.62313;48.584503;;;; +;;;;;;;;FRFR1PHUXQMH;PZE0R0CX2I;Strasbourg, Place de la Bourse;;Rue Le Gloahec;;[1.83241, 50.1046];;FRCPIE67378952;FRFASE3311014;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.924962;48.59336011;;;; +;;;;;;;;FRFR1PW9MMBJJDP7;EF6ASZTSVN;Strasbourg, Rue Albert Calmette;;Route de Kerbrest;;[1.56131, 49.9857];;FRIONE409401;FRFASE3311012;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.77945;48.57091745;;;; +;;;;;;;;FRFR1PWFJRFUKQ6R;TVHCOYXT0Q;Strasbourg, Route de Mittelhausbergen;;Place le Montagner;;[3.10149066, 49.97754705];;FRCPIE67369451;FRFASE3311011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.06713;48.539679;;;; +;;;;;;;;FRFR1PGPB1IX5XMY;FGU7G4ZMF1;Oberschaeffolsheim, Rue du Général de Gaulle;;Rue de la Vallée;;[1.83392, 50.1087];;FRCPIE67369352;FRFASE3311010;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.83717;48.5535346;;;; +;;;;;;;;FRFR1PFJFJ2RMYHE;O075GC5TMJ;Ajaccio, Espace Elec;;Zone d'activité du Val Coric;;[1.547, 50.3221];;FRCPIE67369351;FRFASE3311009;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.63651;48.57834976;;;; +;;;;;;;;FRFR1PLC4ZL3O1T1;HSZFHCDE65;Eschau, Rue des Merles;;Place de la Gare;;[1.94523, 49.9649];;FRCPIE67368852;FRFASE3311008;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.82272;48.578964;;;; +;;;;;;;;FRFR1PJCGVYIN2UP;ZIWOWMFJOR;Strasbourg, rue de la breme;;Rue de Maneguen;;[2.44312, 49.9422];;FRCPIE67368851;FRFASE3311007;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.88945378;48.576303;;;; +;;;;;;;;FRFR1PJARZHUSIDC;T0XMNJU9T9;Schiltigheim, rue des pompiers;;Rue du Condé;;[1.6087, 50.061];;FRCPIE67368452;FRFASE3311006;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.23304351;48.59109997;;;; +;;;;;;;;FRFR1PSPVJLC;DEAGBEULR4;Strasbourg, rue de Rathsamhausen;;Parking Rue Nationale;;[1.53544, 50.0747];;FRCPIE67368451;FRFASE3311005;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.82755;48.58859135;;;; +;;;;;;;;FRFR1PPHRNCR;D1LX7U3SHG;Strasbourg, Rue du Roethig;;Rue des Rosiers;;[3.07323, 49.7436];;FRCPIE67362752;FRFASE3311004;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.71734;48.55950369;;;; +;;;;;;;;FRFR1PUNQ35Y4FOV;UZAVKETLCQ;Strasbourg, Route des romains;;Parking Port Tudy;;[2.333792, 50.108029];;FRCPIE67362751;FRFASE3311003;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.71291;48.58786038;;;; +;;;;;;;;FRFR1PBQORNYNAFT;RWFXPQAB4Q;Schiltigheim, Rue nouvelle;;Place de la Chapelle;;[2.1629, 50.1325];;FRCPIE67266952;FRFASE3311002;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.55657;50.60986071;;;; +;;;;;;;;FRFR1PYUCPGH;XVUDFL;Strasbourg, Rue de Wasselonne;;Rue Abbé de La Vallière;;[1.62313, 50.214967];;FRCPIE67266951;FRFASE3311001;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.60808;43.2086;;;; +;;;;;;;;FRFR1PAVYDUIQNKS;AHSA5KVF5H;Strasbourg, Route d'Oberhausbergen;;Parking Port Blanc;;[2.924962, 49.759965];;FRS18E200483;FRFASE3309816;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.62519;47.48143352;;;; +;;;;;;;;FRFR1PWSUNAEBUPJ;PP3BZRYFVB;Strasbourg, Rue de l'Hôpital Militaire;;Chemin du Vrancial;;[1.77945, 50.2116];;FRS18E200482;FRFASE3309815;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.70227;47.62246;;;; +;;;;;;;;FRFR1PSK6TT9VRDT;KWO1HTGHLY;Illkirch - Graffenstaden, avenue de Strasbourg;;Rue du Four Mollet;;[2.06713, 49.7043];;FRS18E117416;FRFASE331113;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.7264;43.33825342;;;; +;;;;;;;;FRFR1PTQGFF4VUW8;ZRINLM4J90;Geispolsheim, Place André Malraux;;Parking Porte Océane;;[1.83717, 50.1072];;FRS18E117415;FRN54E187775;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.634685;47.653039;;;; +;;;;;;;;FRFR1PLR65HDZA52;YHVKIMCLPK;Lampertheim, Rue du Général de Gaulle;;Parking Kériolet;;[1.63651, 50.1836];;FRS18E150316;FRN54E187776;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.7414585;48.719808;;;; +;;;;;;;;FRFR1PJWCQS9RKYQ;GI557RXISG;Strasbourg, Avenue du Neuhof;;Rue du Verger;;[1.82272, 50.3471];;FRS18E150315;FRIONE413203;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.76165303;43.652523;;;; +;;;;;;;;FRFR1PZV8QSTYK6T;TCKN0ZQ234;Eckwersheim, Hippodrome;;Quai des Cabestans - Le port du Crouesty;;[8.88945378, 42.61074882];;FRCPIE67061252;FRS37E1379;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.7504505;48.5988;;;; +;;;;;;;;FRFR1PJNMYHDCGFT;LXDKXFFZNL;Esplanade, rue de Londres;;Parking Maison des Associations;;[1.23304351, 49.11482753];;FRCPIE67061251;FRS37E1256;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75315794;48.55733488;;;; +;;;;;;;;FRFR1PAYZCB8ZTQ9;S7VYUHK4NE;Strasbourg, Place du Schluthfeld;;Parking Port d'Arzal;;[7.82755, 48.6581];;FRCPIE67060852;FRS51E57729;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.70962;48.613729;;;; +;;;;;;;;FRFR1PB6KEKD5OQZ;R3DAUXRW4P;Strasbourg, 33 allée de la Robertsau;;Parc d'activité de l'estuaire;;[7.71734, 48.595];;FRCPIE67060851;FRS51E57728;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.7118;48.6051;;;; +;;;;;;;;FRFR1PRCJTORNXPX;USZMAL05ZQ;Strasbourg, rue Kageneck;;Rue de la Carrière;;[7.71291, 48.6692];;FRCPIE67060752;FRIONE41325;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.65306;48.5489;;;; +;;;;;;;;FRFR1PZTVN6MH7ZS;XSSSZNZRAX;Tribunal-Contades, rue Jacques Kablé;;Plessis d'Arradon;;[7.55657, 48.5864];;FRCPIE67060751;FRIONE413205;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.76546431;48.611075;;;; +;;;;;;;;FRFR1PENDRSP8NDE;BSV6PWXBFW;Strasbourg, rue François Noblat;;Rue Le Mauff;;[7.60808, 48.5037];;FRIONE40945;FRIONE413204;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.71434;48.60248479;;;; +;;;;;;;;FRFR1PGGAMYMHXPY;ZNBCSN6ZPT;Strasbourg, Rue des Jésuites;;Rue du pont clas;;[7.62519, 48.5779];;FRIONE409404;FRIONE413202;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.79087169;48.593;;;; +;;;;;;;;FRFR1PZXZOFYGKVX;MMGQZODB2U;Strasbourg, Avenue de Colmar;;Rue du Vieux Presbytère;;[7.70227, 48.6259];;FRIONE409403;FRCPIE64989851;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.74978484;48.5867;;;; +;;;;;;;;FRFR1PO3NWKI9IIG;OJUO57LEEY;Strasbourg, place du Cygne;;Rue Paul Ladmirault;;[7.7264, 48.4703];;FRIONE409402;FRIONE40405;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.76008955;48.49009256;;;; +;;;;;;;;FRFR1PQFRZEV9L6M;LEH2TPO0J7;Strasbourg, Quai Saint Thomas;;Rue Marc Le Floch;;[7.634685, 48.532983];;FRIENE0049023;FRIONE404005;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.70678376;48.600507;;;; +;;;;;;;;FRFR1PV38EOKLVWI;KR6PZL5IRM;Krutenau, Rue de Lausanne;;Place de Macroom;;[7.7414585, 48.63558163];;FRCPIE65711852;FRIONE404004;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.711155;48.55583297;;;; +;;;;;;;;FRFR1PX42UOLEHM3;Z4Q5I7BYZR;Strasbourg, Place de Haguenau;;Zone d'activites de Ty Er Douar;;[7.76165303, 48.59813197];;FRIENE0049011;FRIONE404003;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.74069188;43.5669;;;; +;;;;;;;;FRFR1PJYI8NQIRWF;DGUY2HD3PH;Strasbourg, Rue Saint Léon;;Rue du Pont Douar;;[7.7504505, 48.6086072];;FRIONE401904;FRIONE404002;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.73150775;44.8484796;;;; +;;;;;;;;FRFR1PL3PBLADVLX;IB0HMQS0YP;Strasbourg, Rue du Maréchal Lefèbvre;;Rue Ferdinand Ardonin;;[7.75315794, 48.5760783];;FRIONE410404;FRCPIE64993251;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.70918636;43.808823;;;; +;;;;;;;;FRFR1PTEJPQMNWKD;NFZ3TXLMC0;Strasbourg, Avenue des Vosges;;Rue comte de Lanjuinais;;[7.70962, 48.5904];;FRIONE410403;FRCPIE64989852;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75911345;46.55255239;;;; +;;;;;;;;FRFR1PVWZBSK1GBY;RNOIXUVWZ9;Villeneuve d'ascq, Rue de la volonté;;Avenue Général de Gaulle;;[7.7118, 48.6001];;FRIONE410402;FRCPIE66761552;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75255764;43.619574;;;; +;;;;;;;;FRFR1PBEECZ8DC9I;UIWGGGBRB8;Cazères, Tourte;;Saint Colombier;;[7.65306, 48.5868];;FRIONE410401;FRCPIE67367251;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.73469123;50.551433;;;; +;;;;;;;;FRFR1PLLK89RD352FJRP;GJTASUUHDC;Saint-Barthelemy-d'Anjou, rue de Champfleur;;Avenue Porhoët;;[8.76546431, 41.94692817];;FRFASE3309504;FRIONE439604;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.64040425;50.641032;;;; +;;;;;;;;FRFR1PF5SXUNWSSF;OA04A96XNU;Elivia - Public;;Rue de la Bouie;;[7.71434, 48.4875];;FRFASE3309503;FRCPIE66587851;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.695667;43.66406096;;;; +;;;;;;;;FRFR1PHMDWQISHYA;R5WTOSEIZZ;Avenue des Martyrs du Pont Long, Lons;;Place Saint Mayeuil;;[7.79087169, 48.59887343];;FRFASE3309502;FRFASE3302408;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.76678128;43.507929;;;; +;;;;;;;;FRFR1PXTEHCGKCGX;KSYDHOQJJU;Séné, Easy Rool;;Rue Curie;;[7.74978484, 48.60648253];;FRFASE3309501;FRFASE3302407;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.69828916;44.12057025;;;; +;;;;;;;;FRFR1PXMFRVU;BCW6UDGKOZ;Sarrebourg, Terrasses Rhône Alpes;;Route de l'Abbaye;;[7.76008955, 48.56607557];;FRS55E66379;FRFASE3302406;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.77268;43.490553;;;; +;;;;;;;;FRFR1PMDKATVG2EE;ACYY4VWEH3;Auch, route de Toulouse;;Rue de Vannes;;[7.70678376, 48.56592647];;FRS55E66378;FRFASE3302405;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75189555;43.92378544;;;; +;;;;;;;;FRFR1PSEBLOVH1UF;RQMXNLPGD7;Strasbourg, Rue Baden Powell;;Le Bourg;;[7.711155, 48.579078];;FRS41E4927;FRFASE3302404;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.76552942;44.60943264;;;; +;;;;;;;;FRFR1PLT9ZDLYLLD;ASYWTL;Holtzheim, Rue de Lingolsheim;;Rue Adrien Regent;;[7.74069188, 48.60021087];;FRS41E4926;FRFASE3302403;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.738545;43.42249234;;;; +;;;;;;;;FRFR1PUZPSHR;WFAMGXB1VA;Strasbourg, Rue de la renaissance;;Rue Adrien Régent (rapide);;[7.73150775, 48.57936478];;FRIONE40225;FRFASE3302402;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75325004;43.71686462;;;; +;;;;;;;;FRFR1PKIDYA8RB2N;VYJZUKWZHX;Oberhausbergen, Rue Albert Schweitzer;;Kerscot;;[7.70918636, 48.59542856];;FRIONE402204;FRFASE3302401;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.79588108;45.737464;;;; +;;;;;;;;FRFR1PZBOK49QJWD;YOTRGWFRUD;Strasbourg, Rue de Bourgogne;;Rue Père Marie Joseph Coudrin;;[7.75911345, 48.57833911];;FRIONE402203;FRIONE43965;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.762804;43.58083775;;;; +;;;;;;;;FRFR1PBB7LOI4JNQ;KCAJTARK3I;Strasbourg, rue de la papeterie;;Rue Raymond Marcellin - PEM;;[7.75255764, 48.58694488];;FRIONE402202;FRIONE439612;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.744273;45.733642;;;; +;;;;;;;;FRFR1PKXIPG0APTF;VWWWTFPIOK;Strasbourg, Rue de Hochfelden;;Rue des Genêts;;[7.73469123, 48.5403391];;FRIONE402201;FRIONE439611;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.74018981;-21.279779;;;; +;;;;;;;;FRFR1PSY2XSTFI1W;VE2SNJRWXL;Strasbourg, Avenue Pierre Corneille;;Rue du Blavet;;[7.64040425, 48.51599671];;FRIONE41045;FRIONE439610;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.746767;43.56572253;;;; +;;;;;;;;FRFR1PWDHVUHHABK;YLN1E5ASLE;Strasbourg, Avenue François Mitterrand;;Rue de la Briqueterie;;[7.695667, 48.652245];;FRIENE0086011;FRIONE439609;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75676;-21.0522;;;; +;;;;;;;;FRFR1PCT0ATMJPPT;IMSVTLL4KF;Fegersheim, Rue de Lyon;;Rue de Kerentree;;[7.76678128, 48.5557229];;FRIENE0086012;FRIONE439608;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.74341535;43.30156711;;;; +;;;;;;;;FRFR1PMXD9XM3LXS;UKTY6ATECR;Strasbourg, Rue Boecklin;;Rue Nicolas Le Grand;;[7.69828916, 48.68518797];;FRCPIE67365152;FRIONE439607;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.74919464;-22.2461;;;; +;;;;;;;;FRFR1PHMQK6YW1HW;K5IED349PE;Lingolsheim, mairie;;Place de la Poste;;[7.77268, 48.578641];;FRCPIE67375251;FRIONE439606;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.74653853;47.8642;;;; +;;;;;;;;FRFR1PCITYSAONE;IFYOQREIHG;Toulouse, ENAC;;Parking Salle Polyvalente;;[7.75189555, 48.56849302];;FRCPIE67369952;FRS37E15074;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75792403;50.10722;;;; +;;;;;;;;FRFR1PM5PDKFW3KB;UYYBBC9H8B;Mérignac, BMW;;Parking route de Saint Martin;;[7.76552942, 48.58840328];;FRCPIE67369951;FRTNME18B926140;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.13152792;48.52607392;;;; +;;;;;;;;FRFR1PLLJWGJ3GU39PIK;YYJ7KQJT6G;Nîmes, BMW;;Rue de Coueslan;;[7.738545, 48.584503];;FRCPIE67369752;FRIONE40855;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.08572;48.53288699;;;; +;;;;;;;;FRFR1PE9D0SEHF8O;BJPQZ2JJPW;Poitiers, BMW;;Rue de la Croix Macé;;[7.75325004, 48.59336011];;FRCPIE67369751;FRIONE408505;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.50304314;48.6012;;;; +;;;;;;;;FRFR1PL5AB9NSGAH;JDCTMIKNGY;Salon de Provence, BMW;;Rue Saint Goustan;;[7.79588108, 48.57091745];;FRCPIE67365252;FRIONE408504;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.70724;48.6110297;;;; +;;;;;;;;FRFR1POSU51U9FJZ;GHA5BJRBDD;Seclin, BMW;;Place Pierre Anne Beurel;;[7.762804, 48.539679];;FRCPIE67365251;FRIONE408503;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.38042863;48.58700166;;;; +;;;;;;;;FRFR1PKZSHZFIZDN;OTM9WEDT93;Villeneuve D'Ascq, BMW;;Le Cardinal;;[7.744273, 48.5535346];;FRCPIE67365151;FRIONE408502;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.733662;48.6156857;;;; +;;;;;;;;FRS90PBLJKQY;ADPZNMBHJV;Arles, BMW;;Place de la République;;[7.74018981, 48.57834976];;FRIENE0086023;FRS37E15075;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.047618;48.60082459;;;; +;;;;;;;;FRFR1PPNTCPDQEGB;NVFD81PSSR;Aix-en-Provence, BMW;;Place Générale de Gaulle;;[7.746767, 48.578964];;FRCPIE66652052;FRS88E144228;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.606897;48.55196971;;;; +;;;;;;;;FRFR1PAYP7STRGYF;KXNEVQRIEC;Alès, BMW;;Rue Alain Gerbault;;[7.75676, 48.576303];;FRCPIE66652051;FRS88E144226;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.69365;48.60646479;;;; +;;;;;;;;FRFR1PKEQHCV;AJUHLGDXWB;Bayonne, BMW;;Rue Anita Conti;;[7.74341535, 48.59109997];;FRIENE0053024;FRIONE41315;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.64368157;48.65379283;;;; +;;;;;;;;FRFR1PPXWENV;U5VKNYZZH8;Mont de Marsan, BMW;;Rue Daniel Gilard;;[7.74919464, 48.58859135];;FRIENE0053023;FRIONE413105;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.789755;48.64182763;;;; +;;;;;;;;FRFR1PFAHNNHQAL5;QNFNXLNAJV;La-Teste-de-Buch, BMW;;Rue de Luscanen;;[7.74653853, 48.55950369];;FRIENE0053012;FRIONE413104;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.68763;48.58577742;;;; +;;;;;;;;FRFR1PZGTKMH9RNZ;NBQHPADN4M;Marignane, BMW;;Rue du Commerce;;[7.75792403, 48.58786038];;FRIENE0053011;FRIONE413103;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.74951;48.5720959;;;; +;;;;;;;;FRFR1PGU4YLMRYYZ;AYO1HIHEPX;Mees, BMW;;Rue Henri Matisse;;[3.13152792, 50.60986071];;FRIENE0086024;FRIONE413102;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.781838;48.57274546;;;; +;;;;;;;;FRFR1PH8FAY4PGG0;GDMHCEAKTI;Lyon, Espace Commercial Saint Chamond La Varizelle;;Rue Jean Jaurès;;[1.08572, 43.2086];;FRIONE40195;FRIONE41565;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.72328975;48.59239504;;;; +;;;;;;;;FRFR1PJBSMDYN6DU;APIQOKQASS;Pérols, Espace Concorde;;Rue Jean Marie Bécel;;[-0.50304314, 47.48143352];;FRIONE401903;FRIONE439605;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.69668;48.56601877;;;; +;;;;;;;;FRFR1PDXVCIGXZXW;XFYFEZAQNO;Cournon-d'Auvergne, Avenue de la Libération;;Rue Tamara de Lempicka;;[-0.70724, 47.62246];;FRTNMETERRA540120;FRIONE439603;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.69643;48.56510643;;;; +;;;;;;;;FRFR1PGEKQLCBJQX;CUECDGTUQW;Engen Etang Salé DELTA;;Place François Jaffré;;[-0.38042863, 43.33825342];;FRIONE401902;FRTNME18B926170;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.67902255;48.58551838;;;; +;;;;;;;;FRFR1PLLISKVAE12QGET;LUORMJVPMO;Toulouse, Bâtiment Hymans;;Place de la Libération;;[-2.733662, 47.653039];;FRCPIE66395052;FRIONE439602;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.780618;48.62711533;;;; +;;;;;;;;FRFR1PLLJ2IG4DK1XFQ8;GILDOVEZFC;Engen, Saint-Benoît Bras-Fusil DELTA;;Rue de Treffléan;;[7.047618, 48.719808];;FRCPIE66395051;FRIONE431202;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.6824582;48.55933735;;;; +;;;;;;;;FRFR1PLLISKTTRBAZEKD;MMIX8ETSRI;Castelnaudary, Avenue des Pyrénées;;Pen Prad;;[0.606897, 43.652523];;FRCPIE66394952;FRIONE431201;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.48143;48.49009967;;;; +;;;;;;;;FRFR1PRD8XXQESXZ;L0KOZZ2ARU;Nouméa, Engie;;Place Foresti;;[7.69365, 48.5988];;FRCPIE66394951;FRS55E167583;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.66772761;48.54336154;;;; +;;;;;;;;FRFR1PRZTXNK;FKHA6QWCW9;Ensisheim, rue du Cerf;;Rue Général de Kerhué;;[7.64368157, 48.55733488];;FRCPIE66394552;FRS55E167582;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.371961;48.6120157;;;; +;;;;;;;;FRFR1PYKFOCWHZH9;NJNRQHE26R;EEP, rue Vendémiaire;;7 rue René Cassin;;[7.789755, 48.613729];;FRCPIE66394551;FRS55E158019;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.30565142;48.61340599;;;; +;;;;;;;;FRFR1PSUPERUGREN;HDMLYUQSSU;Illkirch - Graffenstaden, Route de Lyon;;Rue de la Gare;;[7.68763, 48.6051];;FRIENE0067024;FRS55E158018;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.09245;48.636797;;;; +;;;;;;;;FRFR1PRJ9YJ5MPTD;PPUUMBSESC;Geispolsheim, Petite rue de l'Industrie;;Place Saint Christophe;;[7.74951, 48.5489];;FRIENE0067023;FRS55E158013;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.052942;48.62156963;;;; +;;;;;;;;FRFR1PFATVBU;DHAZIJAXIY;Strasbourg, Rue Pierre de Coubertin;;Avenue Général Délestraint;;[7.781838, 48.611075];;FRIENE0067012;FRS55E158012;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.120852;48.52261672;;;; +;;;;;;;;FRFR1PPZKKDSGJXT;KIGSJKBXAQ;Schiltigheim, Avenue de l'Europe;;Avenue Winston Churchill;;[7.72328975, 48.60248479];;FRIENE0067011;FRS55E158007;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.64034267;48.57708272;;;; +;;;;;;;;FRFR1PGXZPR6RW7D;NRA1F3Q2QE;Wolfisheim, Square du Boeuf Rouge;;Avenue Maréchal Juin Maréchal de France;;[7.69668, 48.593];;FRS51E49177;FRS55E158006;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.402546;48.62134977;;;; +;;;;;;;;FRFR1PS4WKO92WF7;S1YCYKCLFA;Bischheim, Rue de Vendenheim;;Place de l'église;;[7.69643, 48.5867];;FRS51E49176;FRS55E157988;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.10953875;48.56154565;;;; +;;;;;;;;FRFR1PZBM4NFEKPJ;CKUSIH2KYG;Schiltigheim, Rue Albert Calmette;;Rue du Dévehat;;[7.67902255, 48.49009256];;FRIONE421553;FRS55E157987;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.45660198;48.61987814;;;; +;;;;;;;;FRFR1PDEGS0UBYCI;X1P794WYD9;Lingolsheim, Rue des Alouettes;;242 Rue John Mac Adam 30900 Nîmes;;[7.780618, 48.600507];;FRIONE421552;FRS55E157955;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.44292094;48.55731002;;;; +;;;;;;;;FRFR1PRFHEYE;F1FD6Q9XWL;Schiltigheim, Route du Général de Gaulle;;12 AVENUE DE LA LIBERATION 84150;;[7.6824582, 48.55583297];;FRS18E146807;FRS55E157954;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.13058583;48.57846688;;;; +;;;;;;;;FRFR1PO3UK5WP8FZ;QK9VIQB32M;Reichstett, Aire de covoiturage;;PLACE DES TROIS FUSILLES;;[1.48143, 43.5669];;FRS18E146808;FRCPIE66728152;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.23002847;48.63124584;;;; +;;;;;;;;FRFR1PP51P4TWAKQ;AJQJUM9B3C;Mundolsheim, Rue du Général Leclerc;;RUE DU PROFESSEUR ANDRE LAVIGNOLLE;;[-0.66772761, 44.8484796];;FRSHEE681;FRCPIE66728151;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.13202835;48.91193065;;;; +;;;;;;;;FRFR1PN0WQCZ7HFA;R7NKMNWNJE;Strasbourg, Rue d'Ypres;;ALLEE D'IRLANDE;;[4.371961, 43.808823];;FRIONE452103;FRCPIE67367252;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.839895;48.022035;;;; +;;;;;;;;FRFR1PDN0FDTWVO7;X2P436SZ2U;Neudorf-Musau, rue de la colonne;;RUE DU COMMERCE;;[0.30565142, 46.55255239];;FRIONE401901;FRIONE431203;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.93933154;48.63836796;;;; +;;;;;;;;FRFR1PEYFAUZGMKE;S3UNUSE4ZE;Neudorf-Musau, avenue du Rhin;;Rue Jean Perrin 14440 Douvres-la-Délivrande;;[5.09245, 43.619574];;FRIONE45215;FRIONE431204;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.192515;48.8092;;;; +;;;;;;;;FRFR1PCAVUWXJOAT;JAKVHCRJTT;Orangerie-Cons XV, allée de la Robertsau;;AVENUE CHARLES ANDRE LES PORTES DE PROVENCE 26200 MONTELIMAR;;[3.052942, 50.551433];;FRIONE452108;FRIONE43125;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.365753;48.9003;;;; +;;;;;;;;FRFR1PLAJGBRQMTY;QUSUN2DQKD;Neudorf-Musau, rue d'Orbey;;BOULEVARD DE L'ARIANE;;[3.120852, 50.641032];;FRIONE452107;FRS08E188243;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.47946398;43.12493158;;;; +;;;;;;;;FRS89PNIMRJEM5YF;VEWFZ6V02A;Elsau, rue Gréco;;RUE BARACK OBAMA;;[4.64034267, 43.66406096];;FRIONE452106;FRIONE439601;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.7149;48.7077;;;; +;;;;;;;;FRFR1PFSNNG1M2HO;ZVJ9WGG12K;Strasbourg, rue Beethoven;;27 Boulevard Paul Langevin 38600 Fontaine;;[5.402546, 43.507929];;FRIONE452105;FRS41E5021;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.95629924;46.6963;;;; +;;;;;;;;FRFR1PBPU0QLAYHU;ZFEKUTTULE;Hoenheim, Parking Gare;;70 Rue du Général Leclerc 77170 Brie-Comte-Robert;;[4.10953875, 44.12057025];;FRIONE452104;FRS41E5020;;;;;;;;;;;;;;;;;;;;;;;;;;;;166.462;-20.8928;;;; +;;;;;;;;FRFR1PEYTZ38P6RI;OWQGWF0OGT;Hangenbieten, Mairie;;57 Avenue d'Alsace 90160 Denney;;[-1.45660198, 43.490553];;FRIONE452102;FRCPIE65800052;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.35392;-20.893393;;;; +;;;;;;;;FRFR1PMGDPUMKMC1;YE4ZWF9SHX;Lipsheim, Mairie;;route de laval 53600 Évron;;[-0.44292094, 43.92378544];;FRSHEE682;FRCPIE65800051;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.858266;-21.1373;;;; +;;;;;;;;FRS90PNQKUBV;N3LWFBBFVR;Ostwald, Rue des Vosges;;17 impasse de la Girondière;;[-1.13058583, 44.60943264];;FRIONE452101;FRS37E1235;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.7087178;-21.04;;;; +;;;;;;;;FRS90PLVMKNE;HGR47RDIT0;Bischheim, Parking Match;;Village Autos 09100 Pamiers;;[5.23002847, 43.42249234];;FRSHEE704;FRS37E1234;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.69038189;-21.204;;;; +;;;;;;;;FRS90PNJZRFY;Y0OSAKHGA8;Bischheim, Place Saint-Laurent;;22 Rue des Artisans 85300 Challans;;[-1.13202835, 43.71686462];;FRSHEE703;FRS08E188242;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.76878;-21.2976;;;; +;;;;;;;;FRS90PXLLFTL;GHORFZQQIB;Mundolsheim, Rue Berlioz;;PARC LE MILLESIME 51370 Thillois;;[4.839895, 45.737464];;FRSHEE702;FRFASE3300701;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.71293388;-21.0828;;;; +;;;;;;;;FRS90PLLNRGU;CYEDSCSTTC;Hoenheim, Le Ried;;Zac Les Brégaudiéres 17390 La Tremblade;;[3.93933154, 43.58083775];;FRSHEE701;FRFASE3300708;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.66684282;-20.9172;;;; +;;;;;;;;FRS90PHMRLQZ;TXBSNOD426;Illkirch, Avenue André Malraux Pharmacie;;58, Route de Letraz;;[3.192515, 45.733642];;FRSHEE692;FRFASE3300707;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.73381;-20.9429;;;; +;;;;;;;;FRS90PXDHKLG;YIYEOEVU2D;Breuschwickersheim, Chemin du Schwall;;46 Rue de la Rigourdière 35510 Cesson-Sévigné;;[55.365753, -21.279779];;FRSHEE691;FRFASE3300706;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75065853;-21.2441;;;; +;;;;;;;;FRS90PZCPMXK;OXHA7QGZKR;Hoenheim, Mairie;;RUE DE LA COUSINERIE;;[1.47946398, 43.56572253];;FRCPIE67375252;FRFASE3300705;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.69120588;-20.9426;;;; +;;;;;;;;FRS90PTAEZPA;EGZ64DHCH9;Kolbsheim, rue Jacques Maritain;;56 ROUTE DE LA DOLOMIE;;[55.7149, -21.0522];;FRTNMETERRA540121;FRFASE3300704;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.73614247;-21.3341;;;; +;;;;;;;;FRS90PHFZCWL;YJFU0A6IJ3;Hoenheim, rue Emile Mathis;;1061 ROUTE DE CARPENTRAS;;[1.95629924, 43.30156711];;FRCPIE67376551;FRFASE3300703;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75126537;41.60411861;;;; +;;;;;;;;FRS90PARYNXY;VSZIZOKFFF;Lingolsheim, Eglise;;ZAC Bois Fortant, Rue André Joseph 08000 CHARLEVILLE;;[166.462, -22.2461];;FRIONE45205;FRFASE3300702;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.71717115;49.85814;;;; +;;;;;;;;FRS90PYUZJTE;KGCAZGUM9A;Eckbolsheim, Mairie;;12 Rue de l'Europe, 74200 Thonon-les-Bains;;[7.35392, 47.8642];;FRIONE452010;FRTNME18B926150;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.78046908;-20.9791;;;; +;;;;;;;;FRS90PDYDNZG;HL98XANBWT;Souffelweyersheim, Rue des sept Arpents;;N88 LA BARRIERE CHEMIN DES 2 VOIES 81380;;[1.858266, 50.10722];;FRIONE452009;FRCPIE66761551;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75677983;-21.3136;;;; +;;;;;;;;FRS90PKCTAPV;WMUMKDAJTR;Nanterre, Wave Transport;;1, Avenue Marc HAMMET 51470;;[7.7087178, 48.52607392];;FRIONE452008;FRTNME099107870;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.7639826;43.2043724;;;; +;;;;;;;;FRS90PGEKNCN;Y7RR8FAT3Y;Sainte-Croix-en-Plaine, Rue Jean Mermoz;;52 Av. Jean Jaurès, 47200 Marmande;;[7.69038189, 48.53288699];;FRIONE452007;FRS37E36329;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.77001443;43.34891641;;;; +;;;;;;;;FRS90PZEDVRB;A12RW4GWRR;Wasselonne, Cour du Château;;rue de girouflat 47200 Marmande;;[7.76878, 48.6012];;FRIONE452006;FRS37E10710;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.77311452;48.50173471;;;; +;;;;;;;;FRS90PEGPJSR;S2IIJS4XG5;Waldorf Versailles, Boulevard de la Reine;;6 Route de Paris 03410 Saint-Victor;;[7.71293388, 48.6110297];;FRIONE452005;FRS41E211305;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.72367353;42.67262319;;;; +;;;;;;;;FRS90PXCGVER;LLIU1YABC2MHX2;Courbevoie, Vulco Truck Services;;BOULEVARD CHARLES DE GAULLES 95610 Éragny;;[7.66684282, 48.58700166];;FRIONE452004;FRS41E211304;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.77277653;43.685903;;;; +;;;;;;;;FRS90PPWMZSD;RAWNYUUG7H;Bormes-Les-Mimosas, Yacht Club International;;CHATEAU DE BRANFERE 56190;;[7.73381, 48.6156857];;FRIONE452003;FRIONE44895;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75892412;43.939949;;;; +;;;;;;;;FRS90PUNQYWG;PLJGCICCQV;ZAC du Noyer aux Perdrix;;Maisons des vins de provinces rn7, 83461;;[7.75065853, 48.60082459];;FRN54E187764;FRIONE448906;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.61308864;-21.0427;;;; +;;;;;;;;FRS90PXURZAM;LSQHXACDBJ;Villeneuve-sous-Pymont, Parking covoiturage;;Maisons des vins de provinces rn7, 83460;;[7.69120588, 48.55196971];;FRN54E187763;FRIONE448905;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.66487713;48.51455695;;;; +;;;;;;;;FRS90PAGKHOMVXPL;P3UZJUWQJR;Engen, Chaudron - Saint-Denis Hager;;41 rue des communaut;;[7.73614247, 48.60646479];;FRN54E187728;FRIONE448904;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.70999028;49.14977589;;;; +;;;;;;;;FRFR1PHCRKSYJVIC;HL3QNBDPQC;Engen, Marli IES;;Avenue Jean Jaures 12;;[7.75126537, 48.65379283];;FRN54E187727;FRIONE448903;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.76584763;49.13609064;;;; +;;;;;;;;FRFR1PMOCQKWNTWR;XAXIZNFOSG;Engen, Cilaos avec partenariat;;Rue Gustave Scrive 59110 La Madeleine;;[7.71717115, 48.64182763];;FRN54E187442;FRIONE448902;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75144085;48.74368;;;; +;;;;;;;;FRFR1PLD6WOWIWGQ;J9REMMMQYE;Engen, Le Guillaume avec partenariat;;21 rue de Sarliève 63800 Cournon-d'Auvergne;;[7.78046908, 48.58577742];;FRN54E187441;FRIONE448901;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.708257;48.51454;;;; +;;;;;;;;FRFR1PQRYOZUKF31;YHEYYGZWWB;Engen, Plaine-des-Cafres avec partenariat;;Saint-Genest 03310;;[7.75677983, 48.5720959];;FRCPIE67376652;FRCPIE67299152;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.76907797;45.5513;;;; +;;;;;;;;FRFR1PKDHRHLIQ98;ZYW3BNYUDP;Engen, RD26 avec partenariat;;373 Avenue de Saint Omer 62610 Ardres;;[7.7639826, 48.57274546];;FRCPIE67376651;FRCPIE67299151;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.72080967;43.41407;;;; +;;;;;;;;FRFR1PDZVENY;VD9HES2EX5;Engen, Lagon avec partenariat;;205 Boulevard Gustave Flaubert Cler;;[7.77001443, 48.59239504];;FRIONE416101;FRCPIE65310552;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.60441602;46.8228002;;;; +;;;;;;;;FRFR1PZDEWXP;DV6PHDO51M;Engen, Sainte-Marie Beauséjour avec partenariat;;Rue des Entrepreneurs, LES GROSSINES 17320 Marennes-Hiers-Brouage;;[7.77311452, 48.56601877];;FRIONE416102;FRCPIE65310551;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.75548706;48.88582386;;;; +;;;;;;;;FRFR1PSSIKRFQLWS;WPHL8KYUMW;Engen, Saint-Benoît Bras-Fusil avec partenariat;;119 RUE ARISTIDE BRIAND, 59240 DUNKERQUE;;[7.72367353, 48.56510643];;FRIONE41615;FRCPIE66972852;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.59062026;48.79752977;;;; +;;;;;;;;FRFR1PDFIRKWXAQF;CYQSQKGBPL;Engen, Oasis - Le Port Hager;;CHEMIN DE LA CULASSE - 06510 CARROS;;[7.77277653, 48.58551838];;FRIONE409002;FRCPIE66972851;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.72863261;49.37033692;;;; +;;;;;;;;FRFR1PS2TJTN9BOP;KDPI0FF7U9;Engen, Les Avirons Hager;;RUE DE LA GARE 62690 AUBIGNY EN;;[7.75892412, 48.62711533];;FRCPIE67266151;FRFASE3300801;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.681792;49.22343788;;;; +;;;;;;;;FRFR1POBVHYS3K6X;NSMOIFZBLP;Engen, La Possession Hager;;Avenue du Général Leclerc 47000 Agen;;[7.61308864, 48.55933735];;FRCPIE67201552;FRFASE3300802;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.6880618;49.399806;;;; +;;;;;;;;FRFR1PO0FFV7GKYB;GU3XHH5FGE;Engen, Ravine Blanche - Saint-Pierre Hager;;5 Route des Iles Sanguinaires, 20000 Ajaccio;;[7.66487713, 48.49009967];;FRCPIE67201551;FRFASE3300803;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.74000524;49.13648941;;;; +;;;;;;;;FRFR1PAKV9BI2KZM;RVQEOVVA6G;Porto Vecchio, Balesi Automobiles;;IMMEUBLE, 20213 Penta-di-Casinca;;[7.70999028, 48.54336154];;FRIONE40905;FRFASE3310201;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.21187587;50.73713075;;;; +;;;;;;;;FRFR1PFTM4TZJ6VT;E23HKPXHU0;BOVES, Vinci Facilities Picardie;;113 Pl. de la Mairie, 20222 Brando;;[7.76584763, 48.6120157];;FRIONE409005;FRFASE3310208;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.380722;43.5386752;;;; +;;;;;;;;FRFR1PPX08E5STVI;BTSTFI6AAL;Engen, La Plaine - Saint-Paul IES;;Route de Maora, Golfe de Santa Manza, 20169 Bonifacio;;[7.75144085, 48.61340599];;FRIONE409004;FRFASE3310207;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.44575301;48.8289;;;; +;;;;;;;;FRFR1PIGQCVM7GLR;LLI360U001X0NX;Engen, Ligne Paradis - Saint-Pierre IES;;La Trinite 20169 Bonifacio;;[7.708257, 48.636797];;FRIONE409003;FRFASE3310206;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.13137;50.73734;;;; +;;;;;;;;FRFR1PA2XEZHCMFS;G2MLRX4ZEK;Volvo, Carcassonne;;1544 Campo Vallone, 20620 Biguglia;;[7.76907797, 48.62156963];;FRCPIE65903152;FRFASE3310205;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.24076;45.978188;;;; +;;;;;;;;FRFR1PLLISUCBTJ2EA96;INAACCIR9R;Volvo, Béziers;;Hertz Aéroport de Bastia Poretta, 20290 Lucciana;;[7.72080967, 48.52261672];;FRIONE408603;FRFASE3310204;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3667517;45.97827;;;; +;;;;;;;;FRFR1PLLIN9KDH82BXV2;HV5IVJHUQH;Saint Brieuc, rue Pierre Gilles de Gennes;;Boccialacce, 20119 Bastelica;;[7.60441602, 48.57708272];;FRCPIE65903151;FRFASE3310203;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.58381;49.48156493;;;; +;;;;;;;;FRFR1PLLIN9MY4N14O9S;TJGAVFF5GW;Chemin La Fauceille, Volvo Perpignan;;Porticcio D55, 20128 Grosseto-Prugna;;[7.75548706, 48.62134977];;FRCPIE65835552;FRFASE3310202;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.55755;49.0363;;;; +;;;;;;;;FRFR1PLLISUB73Z14R3J;GIAIHIV8XR;Lunel, rue Thomas Edison;;le port , 20140 Serra-di-Ferro;;[7.59062026, 48.56154565];;FRCPIE65835551;FRCPIE66457052;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.4886;49.38597488;;;; +;;;;;;;;FRFR1PLLISTZ4SN1K16K;AQQEZYTWL4;Morières-lès-Avignon, Avenue Jean Monnet;;Travu Wash Lot Zone Artisanale, 20240 Ventiseri;;[7.72863261, 48.61987814];;FRIONE40865;FRFASE3300804;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.492163;49.0425801;;;; +;;;;;;;;FRFR1PUDXBVSFWM2;QNCX1RC4JP;Engen, Oasis - Le Port IES;;Via, Lozari, Stazzola, 20226 Belgodère;;[7.681792, 48.55731002];;FRIONE408606;FRCPIE66457051;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.4741;49.04616314;;;; +;;;;;;;;FRS90PSXHLTOEYHV;IRPP8IVUJA;Engen, La Possession IES;;sation Acquaviva D84, 20224 Calacuccia;;[7.6880618, 48.57846688];;FRIONE408605;FRCPIE66456952;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.304;49.04118408;;;; +;;;;;;;;FRFR1PLLIN9J8TI3OT4L;L1KKD299J9;Engen, Sainte-Marie Beauséjour IES;;parking Mairie 20170 San-Gavino-Di-Carbini;;[7.74000524, 48.63124584];;FRIONE408604;FRCPIE66456951;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.5726;49.04477778;;;; +;;;;;;;;FRFR1PZXMREG;YBRK29KKAC;Engen, L'Eperon - Saint-Paul IES;;camping San Damiano 3255 San Damiano, 20620 Biguglia;;[2.21187587, 48.91193065];;FRCPIE67376552;FRFASE3300808;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.439;49.14831143;;;; +;;;;;;;;FRFR1PZRBGLBCPQH;YCCDL67FO4;Landivisiau, 137 Av. Maréchal Foch;;place du Village 5 Parata, 20148 Cozzano;;[7.380722, 48.022035];;FRCPIE67376252;FRFASE3300807;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.2307;42.546508;;;; +;;;;;;;;FRFR1PJYUU2PWTSK;YQWPOFVGFO;Intermarché, Lamorlaye;;Placce de la Mairie 20115 Piana;;[7.44575301, 48.63836796];;FRTNMETERRA540130;FRFASE3300806;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.5298;44.88326108;;;; +;;;;;;;;FRS89PCMQEKFB2BP;OMOWLNFECU;Intermarché, Nanteuil le Haudoin;;Place de l'Eglise Cours Jean Etienne Colonna, 20160 Vico;;[2.13137, 48.8092];;FRCPIE67376251;FRFASE3300805;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.29748;48.12402757;;;; +;;;;;;;;FRS89PHYBOIEYUXH;IKQI33EAGO;Rungis, Hôtel La Maison Blanche;;Lieu dit Fango Vallée du Fango, 20245 Galéria;;[2.24076, 48.9003];;FRCPIE67424952;FRTNME099107871;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.33345;48.413216;;;; +;;;;;;;;FRS89PS6P8Q3CCAX;QWRHODBYDL;Issoire, Zone commerciale;;Géant Casino Vigna Majo, D19A 20110 Propriano;;[6.3667517, 43.12493158];;FRCPIE67424951;FRIONE43775;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.3292;48.40366517;;;; +;;;;;;;;FRFR1PJD3PFCU6UJ;W7KDI5HCIN;Les Pennes-Mirabeau, 603 Chemin des Pennes aux Pins;;place de l´eglise, batiment communal, 20227 Ghisoni;;[2.58381, 48.7077];;FRCPIE67424852;FRIONE437706;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.46099;48.401405;;;; +;;;;;;;;FRFR1PL3UEPRL0WC;YQJMOPCAAH;Hôtel le Cerizay, Cerizay;;6 Pl. Prince Pierre, 20214 Calenzana;;[5.55755, 46.6963];;FRCPIE67424851;FRCPIE66715852;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.27735034;48.20551728;;;; +;;;;;;;;FRFR1PY3VTPZSUY6;RYFDYJESIX;Station service BP, Nantere;;station vito 633 Rte du Pont de Fer, 20217 Saint-Florent;;[55.4886, -20.8928];;FRIONE40345;FRCPIE66715851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.391367;49.275899;;;; +;;;;;;;;FRFR1PJJBX8EKGQ6;CQPVKJX8F5;Bagneux, Charles de Gaulle;;Col San Stefano 6 Piazza San Stefanu, 20232 Olmeta-di-Tuda;;[55.492163, -20.893393];;FRIONE403404;FRCPIE66761452;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.31783;49.27116133;;;; +;;;;;;;;FRFR1PSMHAP34DRI;BTABXYFOLK;Intermarché, Belleu;;Espace Maria Julia, 20218 Morosaglia;;[55.4741, -21.1373];;FRIONE403403;FRCPIE66761451;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.47581;48.90789495;;;; +;;;;;;;;FRFR1PZVIJULYZOR;PWO9NBXWE4;Netto, Crépy-en-Valois;;Parking 20238 Centuri;;[55.304, -21.04];;FRIONE403402;FRCPIE67241452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.31052875;49.04399696;;;; +;;;;;;;;FRFR1PFLHFYV;HEDAVFNBCX;Intermarché, Crouy;;585 RD 55, 20166 Grosseto-Prugna;;[55.5726, -21.204];;FRIONE403401;FRCPIE67241451;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.25805072;49.05228424;;;; +;;;;;;;;FRFR1POLRZ2QBZLR;ATCMVSJYLE;Tourcoing, Rue de Gand;;station vito Route d´Ajaccio, T20, 20250 Corte;;[55.439, -21.2976];;FRIONE415653;FRFASE3304908;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.74049362;49.11924098;;;; +;;;;;;;;FRFR1PLLHYP2D9MOFJAJ;VEPHSK0X97;Mandelieu-la-Napoule, Hotel Ilot Du Golf;;Place Bel Ombra, 20260 Calvi;;[55.2307, -21.0828];;FRIONE415652;FRFASE3304907;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.89343597;50.43186345;;;; +;;;;;;;;FRFR1PLLIA2BS71158VL;M31REAHFB0;Croissy-Beaubourg, avenue de la Soubriarde;;parking P2 avenue Sylvère Bohn 20169 Bonifacio;;[55.5298, -20.9172];;FRIONE415651;FRFASE3304906;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.145892;48.97890724;;;; +;;;;;;;;FRFR1PLLIVTFWC012SUU;IQJ0OJAZ1J;Villefranche-sur-Saône, 733 Av. Théodore Braun;;geant casino Rue Henri Frenay, 20137 Porto-Vecchio;;[55.29748, -20.9429];;FRIONE415604;FRFASE3304905;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.902432;48.82134668;;;; +;;;;;;;;FRFR1PMB38BL4MQ9;X4XISCA2J2;Epernay, Parking Raoul Chandon;;bar Honolulu Plaine de Peri 20167 Mazzavia;;[55.33345, -21.2441];;FRIONE415603;FRFASE3304904;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.25128;50.84746188;;;; +;;;;;;;;FRFR1PDAUUCNFXSE;HINBFLC45F;Basse-Ham, Mairie;;super U lieu-dit U Minstratetu Route de Vico 20160 Vico;;[55.3292, -20.9426];;FRIONE415602;FRFASE3304903;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.05468501;50.38211025;;;; +;;;;;;;;FRFR1PMM3KFC2I4N;R8YVCQZTND;Epernay, Parking Centre-Ville;;valinco primeurs Route de Sartène, domaine A Madunina, 20100 Sartène;;[55.46099, -21.3341];;FRIONE415601;FRFASE3304902;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.42526885;45.4764;;;; +;;;;;;;;FRFR1PVLTSDBSR0J;XGDLZYXS0Z;Epernay, Parking Rempart-Perrier;;route Rimpianata lieu-dit Capo Soprano 20126 Evisa;;[9.27735034, 41.60411861];;FRTNMETERRA540131;FRFASE3304901;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.80312534;45.6705;;;; +;;;;;;;;FRFR1PTWHLZK;AVW2LZTUA9;Epernay, Parking Gallice;;relais Ceccaldi Lieu-Dit Aspretto, RT 21 20000 Ajaccio;;[2.391367, 49.85814];;FRTNME089109610;FRCPIE67240552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.351334;48.8035;;;; +;;;;;;;;FRFR1PLRR5ND4PC0;BL46XIQUQH;Epernay, Parking des Arts;;super U Route, Territoriale 10, 20144 Zonza;;[55.31783, -20.9791];;FRTNME089127920;FRCPIE67240551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.05468;44.7449334;;;; +;;;;;;;;FRFR1PCNYDSJRDXJ;MNRKQHLAFM;Woippy, Rue du Dr Charcot;;Santa lina route des Sanguinaires 20000 Ajaccio;;[55.47581, -21.3136];;FRCPIE67412551;FRCPIE66716851;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.25574;48.91954888;;;; +;;;;;;;;FRFR1PZFO5IA8AIX;V5BA5FDJUH;Calvi, Villas Mandarine;;U Casone 23 Cr Général Leclerc, 20000 Ajaccio;;[2.31052875, 43.2043724];;FRCPIE67370351;FRCPIE66716852;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.3598;46.53952848;;;; +;;;;;;;;FRFR1PMQQHXGJV4R;Q6OD1KDAIZ;Arveyres, Rue de Peytot;;Castel Vecchio 5 Rue Paul Colonna d'Istria, 20090 Ajaccio;;[3.25805072, 43.34891641];;FRCPIE67375652;FRCPIE66716951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.66963736;45.5527;;;; +;;;;;;;;FRFR1PSPI5X5UEAY;BVXNEXLOLK;Arches, Acacias;;Magnolia Bd Louis Campi 20000 Ajaccio;;[-2.74049362, 48.50173471];;FRCPIE67375651;FRS37E1340;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.22000316;49.271734;;;; +;;;;;;;;FRFR1PFQHVHJU2LD;TADFEWONYG;Fontainebleau, rue René Quinton;;port Charles d'Ornano 20090 Ajaccio;;[2.89343597, 42.67262319];;FRCPIE67372552;FRIONE437705;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.29832077;48.73925281;;;; +;;;;;;;;FRFR1PITZYZ0TFXP;SZZB9I4EIY;Fontainebleau, rue de Ferrare;;le port Macinaggio 20248 Rogliano;;[4.145892, 43.685903];;FRCPIE67372551;FRIONE437704;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.33075422;45.69404785;;;; +;;;;;;;;FRFR1PJJFY41A3IX;MQMCLP8KZX;Fontainebleau, boulevard Magenta;;le Chalet T20, 20219 Vivario;;[4.902432, 43.939949];;FRCPIE67371852;FRIONE437703;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.90689544;45.6954636;;;; +;;;;;;;;FRFR1PIVQVUIET9W;LLJIJ0TTT18I05;Bergheim, Rue des Vignerons;;Citadelle 2 Rue Albert 1er, 20260 Calvi;;[55.25128, -21.0427];;FRCPIE67371851;FRIONE437702;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.355598;45.705913;;;; +;;;;;;;;FRFR1PMYNT8Y8UH1;MOHBRNPVBT;Gandrange, Impasse Pierre de Coubertin;;Géant Casino Avenue Christophe Colomb, T30, 20260 Calvi;;[-4.05468501, 48.51455695];;FRCPIE67370352;FRIONE437701;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.800880408;48.74221383;;;; +;;;;;;;;FRFR1PXDNLYWELAE;QXCGZMJ0WQ;Gandrange, rue du stade;;corsaire lieu-dit « MORMORANA » Borgo 20290 Lucciana;;[2.42526885, 49.14977589];;FRCPIE67366252;FRS37E1342;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.16122802;48.73833298;;;; +;;;;;;;;FRFR1PCPPOLYGCLA;MFHGZELL9S;Ville de Frohmuhl, Rue Principale;;ets Mela 970 Av. du 9 Septembre, 20240 Ghisonaccia;;[2.80312534, 49.13609064];;FRCPIE67412552;FRS37E1341;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.94386558;48.743353;;;; +;;;;;;;;FRFR1PODDTVCL4LZ;U7TAQTYQRD;Faulquemont, Rue de la Gare;;citadelle 3 Rue Saint-Joseph, 20250 Corte;;[2.351334, 48.74368];;FRCPIE67366251;FRS37E1339;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.64138;49.134465;;;; +;;;;;;;;FRFR1PDQGV4VYAGN;S8BGCQIRE8;Faulquemont, Rue de Pontpierre;;Rte de Pietra Maggiore, 20260 Calvi;;[-4.05468, 48.51454];;FRCPIE67365752;FRCPIE66716952;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.16191;47.998104;;;; +;;;;;;;;FRFR1PMLER8IDBQE;STGP4YXUIC;Farébersviller, Place du Marché;;322 Strada Di Tanello, 20137 Lecci;;[3.25574, 45.5513];;FRCPIE67365751;FRS37E1349;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.738635;48.50642774;;;; +;;;;;;;;FRFR1PG0NEIU9I2N;ESUZWRLXFC;Dourges, Place de la gare;;D121, 20110 Belvédère-Campomoro;;[5.3598, 43.41407];;FRCPIE67362352;FRS37E1337;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7394;48.1671087;;;; +;;;;;;;;FRS89PYIAMVIOUWW;U4PSSV51LQ;Crégy-lès-Meaux, Centre médical;;2 Rue Pontellole, 20220 L'Île-Rousse;;[-0.66963736, 46.8228002];;FRCPIE67362351;FRIONE40215;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8719224;48.165309;;;; +;;;;;;;;FRFR1PNRQVYBAGVU;ACOVDL0ZZ4;Château-Salins, Place du Ruisseau Salé;;22 Rue Notre Dame, Prom. de la Marinella, 20220 L'Île-Rousse;;[2.22000316, 48.88582386];;FRCPIE67415052;FRIONE402104;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.95061;45.6972252;;;; +;;;;;;;;FRFR1PVQM8VODW4I;OOAD2XGWNN;Bruxelles, Parking Groupe - Rue des Six Jetons 49;;Lot. des Îles, 20220 L'Île-Rousse;;[2.29832077, 48.79752977];;FRCPIE67415051;FRIONE402103;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.24298763;49.14641947;;;; +;;;;;;;;FRFR1PH6BG1SY13J;QSN0XM5KUX;Mairie, rue Placide Monchy;;Lieu dit, Vetrice, 20231 Venaco;;[3.33075422, 49.37033692];;FRIONE421551;FRIONE402102;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.95139562;49.15113951;;;; +;;;;;;;;FRFR1PGK6DXMJKPU;FHLQ03DZIG;Villars, Garage Fraisse;;20112 Sainte-Lucie-de-Tallano;;[2.90689544, 49.22343788];;FRCPIE67366151;FRIONE402101;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.95523387;49.1514963;;;; +;;;;;;;;FRFR1PKUW5BRYJM8;AGK8IODLYI;Van Genechten Angoulême - Clientèle;;2780 Strada Di Pinareddu, 20124 Zonza;;[3.355598, 49.399806];;FRS18E171693;FRS41E2951;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.95139365;49.15887026;;;; +;;;;;;;;FRFR1PSTVWQJJZNN;NVOX3RW4SD;Versailles, Europe;;Lieu dit olmuccio 20144 Zonza;;[2.800880408, 49.13648941];;FRIENE0076012;FRS55E122901;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.96149989;43.4257894;;;; +;;;;;;;;FRFR1PGOTDLPYRIO;ZTSPFG0NRB;Gourdon, Chemin de Mont Marsis;;Scopa Marina Levolle Sottane, 20230 Poggio-Mezzana;;[3.16122802, 50.73713075];;FRIENE0076011;FRS28E175635;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16664588;49.246869;;;; +;;;;;;;;FRFR1PCMLN1C0LRD;W9UNHTTQOI;Aubervilliers, rue du port;;20147 Serriera;;[6.94386558, 43.5386752];;FRS18E186608;FRCPIE67585252;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.760692;49.24518038;;;; +;;;;;;;;FRFR1PE65Z5TBQNI;QLTQGIT4ND;Bois-d'Amont, Village Club Cévéo;;Porto Pollo, 20140 Serra-di-Ferro;;[2.64138, 48.8289];;FRS18E186607;FRIENE0059023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.28522576;49.24604569;;;; +;;;;;;;;FRFR1PB6ZAAZNRMB;XBRG7YCKY2;Issoire, Vessely Quincaillerie;;Route de propriano, 20100 Sartène;;[3.16191, 50.73734];;FRIONE40525;FRIENE0059024;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.51500284;45.69760737;;;; +;;;;;;;;FRFR1PVRKBJPV0VD;LGDRVNGNWU;Gandrange, Rue des Ecoles;;Route De Propriano, 20100 Sartène;;[4.738635, 45.978188];;FRIONE405206;FRS28E127147;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.701971;48.79670152;;;; +;;;;;;;;FRFR1PXXB6Z6J9Q5;FSGKWN;Saverne, Parking des Dragons;;Route de Bonifacio Lieu dit Orasi, 20100 Sartène;;[4.7394, 45.97827];;FRIONE405205;FRCPIE66966851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.69718371;48.9435;;;; +;;;;;;;;FRFR1PGP0E9NWEG5;YQDHZG;Saint-Priest, Espace Mosaïque;;20121 Salice;;[2.8719224, 49.48156493];;FRIONE405204;FRCPIE66966852;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.696444;48.95391;;;; +;;;;;;;;FRFR1PPSHRVU;NFTXEN;Saint-Priest, Parking Joly;;23 Rte de la Corniche, 20110 Propriano;;[3.95061, 49.0363];;FRIONE405203;FRCPIE66966951;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.35852254;48.949848;;;; +;;;;;;;;FRFR1PTXOQTWENWY;VCYCFG;Saint-Priest, La Xavière;;Rte de Pezza Carda, 20137 Porto-Vecchio;;[6.24298763, 49.38597488];;FRIONE40295;FRCPIE66966952;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.146748;48.967406;;;; +;;;;;;;;FRFR1PYZPNMKUCFN;QCXCXZ;Saverne, Place du Château;;Rte d'Arca, 20137 Porto-Vecchio;;[3.95139562, 49.0425801];;FRIONE402905;FRCPIE66967051;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1265192;45.25360433;;;; +;;;;;;;;FRFR1PBPJA6AA6CA;UKHFNX;Saverne, Place Saint Nicolas;;Av. de Bastia, 20137 Porto-Vecchio;;[3.95523387, 49.04616314];;FRIONE402904;FRCPIE66967052;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.28102267;43.49678;;;; +;;;;;;;;FRFR1PS4ZHGIJPO6;PKKBDX;Saverne, Rue de la Gare;;Rue du Commandant Dominique Quilici, 20137 Porto-Vecchio;;[3.95139365, 49.04118408];;FRIONE402903;FRCPIE66967651;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.59967687;49.253007;;;; +;;;;;;;;FRFR1PTKAQSF;GAWKEX;Retonfey, Place Saint-Martin;;12 Rue Toussaint-Culioli, 20137 Porto-Vecchio;;[3.96149989, 49.04477778];;FRIONE402902;FRCPIE66967652;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.602767944;48.19754719;;;; +;;;;;;;;FRFR1PAJSO8D6KCX;EGHFWA;Saint Florentin, Rue du Faubourg du Pont;;Rue du Stazzale, 20137 Porto-Vecchio;;[6.16664588, 49.14831143];;FRCPIE67531152;FRCPIE66082051;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8748447;48.35605654;;;; +;;;;;;;;FRFR1PGPP1YONDA5;KRHRFU;Rosenwiller, Parking du Flachsberg;;Rte de Palombaggia, 20137 Porto-Vecchio;;[8.760692, 42.546508];;FRCPIE67531151;FRCPIE66082052;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.98678458;48.37586844;;;; +;;;;;;;;FRFR1PP0E4AALLVD;YQUNQS;Riquewihr, place des Charpentiers;;Il Campo, 20150 Ota;;[-0.28522576, 44.88326108];;FRCPIE67531052;FRCPIE67353851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8759267;49.102599;;;; +;;;;;;;;FRFR1PHPOS14DX5I;PTKRJY;Riquewihr, avenue Méquillet;;20166 Grosseto-Prugna;;[6.51500284, 48.12402757];;FRIENE0076023;FRCPIE67353852;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.50518824;47.2429598;;;; +;;;;;;;;FRFR1PHSKHX7OORW;DGNAYM;Saint-Priest, Parking Painlevé;;238 Stradone Di U Rè Albertu U Primu, 20228 Pino;;[2.701971, 48.413216];;FRIENE0076024;FRCPIE67358551;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3438463;49.1763809;;;; +;;;;;;;;FRFR1PBKOKCWBYAN;SXKPDJ;Woippy, Place de l'Olympium;;Capu di Fora Pinarello, 20144 Zonza;;[2.69718371, 48.40366517];;FRN54E187881;FRCPIE67358552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.91136916;49.238637;;;; +;;;;;;;;FRFR1PLILWCYZOHV;soissbara;Woippy, Place André Debs;;1039 Leccie, 20213 Penta-di-Casinca;;[2.696444, 48.401405];;FRFASE3309703;FRIENE0059012;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.35359;47.27;;;; +;;;;;;;;FRFR1PDPFPKHKVWG;laondepart;Woippy, Place de l'Hôtel de ville;;1931 Corsu Di L’Aeroportu, 20290 Lucciana;;[7.35852254, 48.20551728];;FRCPIE66544152;FRIENE0059011;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.1963;44.01;;;; +;;;;;;;;FRFR1PVG28KMGHSD;KVRWMP;Woippy, Stade;;20170 Carbini;;[6.146748, 49.275899];;FRCPIE66544151;FRS41E4724;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1296;44.1432574;;;; +;;;;;;;;FRFR1PCNBUAC7CIC;YHXCZZ;Vaudreuille, Place de L'Eglise;;20238 Centuri;;[6.1265192, 49.27116133];;FRFASE3309708;FRCPIE65098051;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.37747327;45.47;;;; +;;;;;;;;FRFR1PI8EP8OVXXQ;NAQYGM;Trémery, Mairie;;593 Strada Di Caprone, 20240 Ghisonaccia;;[7.28102267, 48.90789495];;FRFASE3309707;FRIONE408405;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.37344428;44.7755151;;;; +;;;;;;;;FRFR1PSKLQVGKLSV;UZGRQP;Trémery, Rue du Colombier;;20160 Guagno;;[6.59967687, 49.04399696];;FRFASE3309706;FRIONE408406;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.13651315;44.3974258;;;; +;;;;;;;;FRFR1PUUWW8D2QTS;RUDGAA;Trémery, Presbytère;;20230 Linguizzetta;;[6.602767944, 49.05228424];;FRFASE3309705;FRIONE40845;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2669;44.46;;;; +;;;;;;;;FRFR1PJIIXCKNC8Q;YTEXJA;Saint-Priest, Parking Jean Jaurès;;20215 Loreto-Di-Casinca;;[6.8748447, 49.11924098];;FRFASE3309704;FRCPIE66302851;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.125194;44.4;;;; +;;;;;;;;FRFR1PYSEGUQ;SCMZBN;Ville de Meudon - Parking pointe de Trivaux;;Route de L'Aeroport, lieu dit Crucetta, 20290 Lucciana;;[2.98678458, 50.43186345];;FRFASE3309702;FRCPIE66302852;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.36137953;48.642;;;; +;;;;;;;;FRFR1PBH6XELLB75;KDKQWE;Meaux, Parking Colisée;;CASAMOZZA, 20290 Lucciana;;[2.8759267, 48.97890724];;FRN54E187882;FRCPIE67556451;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.92863627;44.41;;;; +;;;;;;;;FRFR1PDPQRIOQN8V;AYHWSZ;Meaux, Place de Beauval;;Lot. California, 20290 Lucciana;;[6.50518824, 48.82134668];;FRFASE3309701;FRCPIE67556452;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9369716;48.3302804;;;; +;;;;;;;;FRFR1PUQAMTV1XPW;UJASVQ;Meaux, Place Colbert;;D 180, 20228 Luri;;[4.3438463, 50.84746188];;FRCPIE66934552;FRS28E134213;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.978296;48.4270586;;;; +;;;;;;;;FRFR1PTUT6GF98YM;AGYBXE;Meaux, Rue Camille Guérin;;T40, D157, 20113 Olmeto;;[2.91136916, 50.38211025];;FRCPIE66934551;FRS41E4723;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.36583159;43.926543;;;; +;;;;;;;;FRFR1PVXRRZV9XIP;RBQMXU;Massiac, Place du Faura;;9 Chemin de Fiumicellu Bastia, 20200 San-Martino-di-Lota;;[4.35359, 45.4764];;FRS51E48602;FRS28E128898;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.36860288;48.901031;;;; +;;;;;;;;FRFR1PWPFVK4XLRP;YSTCSA;Lorgues, Stade Turchi;;Hameau de Ferlaghja, 20290 Monte;;[0.1963, 45.6705];;FRS51E48601;FRS88E162331;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.36037;47.813308037603726;;;; +;;;;;;;;FRFR1PMDOEGXYE2E;DQYPER;Hagondange, Rue Henri Hoffmann;;15 Lot. l'Alivu, 20220 Monticello;;[2.1296, 48.8035];;FRN54E207085;FRS88E162333;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.304942;43.337325;;;; +;;;;;;;;FRFR1PQXX0ZUA3NL;ZRAUNU;Golbey, Mairie;;Lotissement Castellacio, 20220 Monticello;;[1.37747327, 44.7449334];;FRN54E207084;FRS28E139069;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.73211;45.9306913;;;; +;;;;;;;;FRFR1PG9SVHKLSTF;XSKTTA;Ville de Neufchâteau, 23 Rue de la 1ère Armée Française;;Moriani Plage, 20230 San-Nicolao;;[2.37344428, 48.91954888];;FRCPIE67531051;FRCPIE67573251;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.42990019;43.358055;;;; +;;;;;;;;FRFR1PE0XDVX1DK6;BEZJPU;Ville de Moyenmoutier, 47 Avenue du Général de Gaulle;;Suaglione, 20230 Santa-Lucia-di-Moriani;;[6.13651315, 46.53952848];;FRS18E171692;FRCPIE67573252;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.29426496;47.234375;;;; +;;;;;;;;FRFR1PFB5Q3EX4F8;epineboispar;Montigny Lès Metz, parking Meurisse;;7 Carrughju Di I Calitti, 20232 Olmeta-di-Tuda;;[3.2669, 45.5527];;FRCPIE66545852;FRS28E139436;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.29936721;50.916263;;;; +;;;;;;;;FRFR1PRKHZF2JTNU;XUTMPU;Toyota - Besançon - 22KW AC;;Route Département 257 - Route de Baraci, 20113 Olmeto;;[6.125194, 49.271734];;FRS18E205973;FRCPIE67585251;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.93282668;50.4726;;;; +;;;;;;;;FRFR1PCS8HK5BBAM;ZFEUKM;Toyota - Forbach - 22kW AC;;lieu dit, Tenutella, 20113 Olmeto;;[7.36137953, 48.73925281];;FRFASE3311205;FRCPIE66967351;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.15382448;45.6213337;;;; +;;;;;;;;FRFR1PQHQG9BEFPV;laonbesny;Toyota - Reims - 22kW AC;;marine de Sisco, 20233 Sisco;;[4.92863627, 45.69404785];;FRFASE3311204;FRIONE408403;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.14954363;46.349082;;;; +;;;;;;;;FRFR1POBPEAJBZPZ;YCNFVS;Toyota - Reims - 24KW DC;;Géant Casino 2328 Av. Sampiero Corso, 20600 Furiani;;[4.9369716, 45.6954636];;FRFASE3311203;FRCPIE66967352;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.15049265;43.841971;;;; +;;;;;;;;FRFR1PTNQRV3FCLS;VRYCFW;MEDIODENT;;1 RUE PRINCIPALE, 67290 WINGEN-SUR-MODER;;[4.978296, 45.705913];;FRFASE3311202;FRIONE438805;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.136504;48.944432;;;; +;;;;;;;;FRFR1PD36RA9CGIF;NSVAFV;DOMAINE DE LA BRETTE;;BAIE DE STA GIULIA - 20137 PORTO VECCHIO;;[7.36583159, 48.74221383];;FRFASE3311201;FRIONE438806;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.98107938;43.660005;;;; +;;;;;;;;FRFR1PUE0TCNCRDB;PJZZXM;BANKABLE LA ROQUE;;7 Rue des 3 Noyers, 17100 Les Gonds;;[7.36860288, 48.73833298];;FRS18E148779;FRS55E66230;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.224154;46.2014483;;;; +;;;;;;;;FRFR1PAWDWMR;QRMSRP;IBIS LA TERRASSE;;2 RUE D AVEJAN;;[7.36037, 48.743353];;FRS18E148778;FRS55E66231;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.22220396;45.459233;;;; +;;;;;;;;FRFR1PVGVJRD;MDGPWT;LABEL DENT;;647 chemin de la madeleine;;[6.304942, 49.134465];;FRCPIE66547352;FRCPIE66721451;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2242211;45.686943;;;; +;;;;;;;;FRFR1PDJBEAJ;58c7c6d45d4a8;RENAULT BISCAROSSE;;67 rue auguste rodin;;[3.73211, 47.998104];;FRCPIE66547351;FRCPIE66721452;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.92489818;45.894798;;;; +;;;;;;;;FRFR1PHCBDVD;58c7c8daa8451;VVF Rechastel;;route st hipp,Monoblet;;[7.42990019, 48.50642774];;FRCPIE65300352;FRS88E177158;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.22774722;50.606513;;;; +;;;;;;;;FRFR1PHVNFAZ;KCCJFU;VVF Azur et Neige;;303 rue de la fontaine, 34400;;[7.29426496, 48.1671087];;FRCPIE65300351;FRS88E177160;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.90038;45.979647;;;; +;;;;;;;;FRFR1PEHJHDE;58c7c7ea4dba6;Automobile de l'Est;;BOULEVARD CHARES MARIE SAVELLI - 20220 ILE ROUSSE;;[7.29936721, 48.165309];;FRCPIE65279752;FRS37E1213;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.914641;45.830847;;;; +;;;;;;;;FRFR1PGUKJEM;UXWQPQ;ae3e91c3-3153-4958-a9ce-9a122ab72804;;691 BOULEVARD DE L'EUROPE 83500 La Seyne-sur-Mer;;[4.93282668, 45.6972252];;FRCPIE65279751;FRS37E1334;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.905313;45.893398;;;; +;;;;;;;;FRFR1PNMHCTA;MZQNJY;KIA TROYES - Groupe Amplitude;;1 Chemin de la Boutonnière;;[6.15382448, 49.14641947];;FRS41E2953;FRFASE3302201;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.883098;45.881672;;;; +;;;;;;;;FRFR1PKNXWXM;QBFAVT;KIA - Barberey - 22kW AC;;Route de Sommi?res parking du stade - 86700 - Romagne;;[6.14954363, 49.15113951];;FRS41E2952;FRFASE3302202;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.19667332;48.0690269;;;; +;;;;;;;;FRFR1PVUNCDL;ZWFLZY;Mazda - Etampes - 22kW AC;;8, le bourg - 86410 - Saint-Laurent de Jourdes;;[6.15049265, 49.1514963];;FRCPIE66345252;FRFASE3302203;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.353634;49.0256943;;;; +;;;;;;;;FRFR1PKNUSGV;QYSVEH;Mazda - Avignon - 22kW AC;;Rue du Broussa - 86800 - Saint-Julien l'Ars;;[6.136504, 49.15887026];;FRCPIE66345251;FRFASE3302204;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.167827;49.025824;;;; +;;;;;;;;FRFR1PXANUJCTKNB;589d892331c0c;SuperU - Gundershoffen - 22kW AC;;Rue de la Pree - 86330 - Saint-Jean de Sauves;;[1.98107938, 43.4257894];;FRFASE3311206;FRS28E130145;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.43960051;49.13;;;; +;;;;;;;;FRFR1PMME1DDQAPL;RTQZUX;DOMAINE GUEGUEN;;Place du puits - 86480 - Rouille;;[6.224154, 49.246869];;FRFASE3311207;FRIONE413701;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.68968931;45.9168004;;;; +;;;;;;;;FRFR1PRMXU7KFQ3T;TREUU2CJ9Q;KIA - Lons PAU 22kW AC;;Place Philippe le Hardy - 86340 - Nouaille-Maupertuis;;[6.22220396, 49.24518038];;FRFASE3311208;FRIONE413702;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.87922958;45.31885;;;; +;;;;;;;;FRFR1PJHHZIKO6YD;SZPKRV;KIA - Lons PAU - 24kW DC;;Parking de l'eglise - 86450 - Pleumartin;;[6.2242211, 49.24604569];;FRFASE3302504;FRIONE438804;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.157056;49.0;;;; +;;;;;;;;FRFR1PWHUUHA0GTM;QWNXPB;Mazda - Annecy - 22KW AC;;Place du champs de foire - 86460 - Pressac;;[4.92489818, 45.69760737];;FRS18E205972;FRIONE438803;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9941156;48.53;;;; +;;;;;;;;FRFR1PTQU9YK1V5N;DTPERS;Artzamendi Cambo les Bains;;Place du champs de bataille - 86190 - Quincay;;[2.22774722, 48.79670152];;FRCPIE66501452;FRIONE438802;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8811268;45.6190876;;;; +;;;;;;;;FRFR1PZDY9IC0LN9;EQMEHC;saint herblain;;Place du champs de foire - 86340 - Nieuil l'Espoir;;[2.90038, 48.9435];;FRCPIE66501451;FRIENE0060012;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.084008;49.644253;;;; +;;;;;;;;FRFR1PHIVI0H64KL;DICCAMLZZA;DRINCHAM;;Parking de l'ecole - 86120- Saint-Leger de Montbrillais;;[2.914641, 48.95391];;FRFASE3302508;FRCPIE66967451;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1;49.214436;;;; +;;;;;;;;FRFR1PFWHFRTAK5A;Monlengar;SC PIOLET;;Parking mairie - 86190 - Chalandray;;[2.905313, 48.949848];;FRFASE3302507;FRCPIE66967452;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.36;45.975531;;;; +;;;;;;;;FRFR1PIUXFHAEHEQ;MDBAEJ;Mazda - Chambery - 22kW AC;;115, Boulevard de Blossac - 86100 - Chatellerault;;[2.883098, 48.967406];;FRFASE3302506;FRCPIE66967551;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.0657217;45.5257463;;;; +;;;;;;;;FRFR1PHGJLYOTLRF;RRHVFY;Toyota - Thonon - 22kW AC (Autostart);;Rue du pont de la trappe - 86370 - Chateau-Larcher;;[3.19667332, 45.25360433];;FRFASE3302505;FRCPIE66967552;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.38;50.6421108;;;; +;;;;;;;;FRFR1PPRJWTYLPXL;CAYFWR;Toyota - Thonon - 22kW AC;;Place de l'Europe - 86350 - Chateau-Garnier;;[6.353634, 43.49678];;FRFASE3302503;FRCPIE66997951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.637703999999;48.991536;;;; +;;;;;;;;FRFR1PCN09IUBP7D;VDJSBC;Toyota - Nimes - 22kW AC;;Route de Limoges - 86250 - Charroux;;[6.167827, 49.253007];;FRIONE436002;FRCPIE66997952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.1669286;48.995907;;;; +;;;;;;;;FRFR1PSAYDRISMJD;CRCRLR;KIA - Saint-Memmie - 22kW AC;;Place du 13 aout 1944 - 86160 Champagne-Saint-Hilaire;;[6.43960051, 48.19754719];;FRFASE3302502;FRIENE0060011;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3;48.204388;;;; +;;;;;;;;FRFR1PXH2LMSOLZF;58aeb3ece5680;KIA - Saint-Memmie - 24kW DC;;Parking mairie - 86530 - Cenon sur Vienne;;[5.68968931, 48.35605654];;FRFASE3302501;FRIENE0060023;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.33;46.3;;;; +;;;;;;;;FRFR1PLUNOV6UIWG;QAYSJE;Roady - Jacou - 22kW AC;;Lotissement les Terrageaux - 86300 - Bonnes;;[6.87922958, 48.37586844];;FRCPIE67315452;FRIONE438801;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.729;50.7065043;;;; +;;;;;;;;FRFR1PFJRKKXQ4LW;XYHQKM;La Clé des Champs;;Rue de Chinc? - 86600 - Celle l'Evescault;;[6.157056, 49.102599];;FRCPIE67315451;FRIENE0060024;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.52;48.73133;;;; +;;;;;;;;FRFR1PTWXRC5Z5LN;GBJVJY;Mercedes Benz - EMB Léman Annemasse -22kW AC;;6-10, rue Maurice Ravel - 86180 - Buxerolles;;[5.9941156, 47.2429598];;FRIONE436005;FRS88E177098;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0239871;42.37;;;; +;;;;;;;;FRFR1PQHUUUYBQNY;UGWUQK;CLUB MED;;Parking Rue de Guerting - 86410 - Bouresse;;[6.8811268, 49.1763809];;FRIONE436004;FRS88E177100;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1726385;47.3207567;;;; +;;;;;;;;FRFR1PNSZPUKTAXJ;ZSXCNB;FRANCONY;;Place du commerce - 86210 - Bonneuil-Matours;;[4.084008, 49.238637];;FRIONE436003;FRCPIE66852051;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.842811;44.616646;;;; +;;;;;;;;FRFR1PAQDLTY7DRW;SUPFYC;GALILEO;;Rue de la mutualite - 86110 - Mirebeau;;[6.10,47.27];;FRCPIE66545851;FRCPIE66852052;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.649456;16.01;;;; +;;;;;;;;FRFR1PYUIX1NLTFN;YHKZDC;MOULINS D'ASCQ;;Place du marche - 86370 - Vivonne;;[0.36,44.01];;FRCPIE66546851;FRN54E187685;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8007328050838853;15.999101989340252;;;; +;;;;;;;;FRFR1PUPPTNFPCFG;ESQSQW;Actipole;;Parking de l'eglise - 86300 - Valdivienne;;[5.0657217,44.1432574];;FRN54E188611;FRN54E187686;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.38138;45.7582871;;;; +;;;;;;;;FRFR1PLSSZYXJHIQ;ACFGRT;Lac d’Annecy Camping;;Rue marie Curie - 86380 - Saint-Martin La Pallue;;[4.38,45.47];;FRIONE407802;FRIONE408404;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0825122;46.1815093;;;; +;;;;;;;;FRFR1PGLCXPQDIMC;QTNYBQ;MOBILIS;;Parking route de Bouresse - 86410 - Verrieres;;[-0.637703999999, 44.7755151];;FRIENE0050024;FRCPIE67111852;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.403729;47.327026;;;; +;;;;;;;;FRFR1PA7Y2IJACYN;NZNXLT;SABA;;Place salle des fetes - 86310 - Villemort;;[-1.1669286, 44.3974258];;FRIENE0050023;FRIONE413704;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.654645323753357;47.4218283;;;; +;;;;;;;;FRFR1PRXUGFUVPNA;JBDYVD;Meubles Monnier - Laval - 22kW AC;;Rue de la croix - 86190 - Villiers;;[6.30,44.46];;FRIENE0050012;FRS88E159237;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2770973;47.3148725;;;; +;;;;;;;;FRFR1PHZTA8PJY7H;laonfoch;VINCI OPTEOR IMMOTIC;;Place Francois Albert - 86190 - Vouille;;[6.33,44.40];;FRIENE0050011;FRCPIE67087651;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.598737;47.421321;;;; +;;;;;;;;FRFR1PTXQ15C6CEX;X1F885A2LS;Mazda - Château-Thierry - 22kW AC;;Place de l'eglise - 86290 - Saint-Leomer;;[7.729,48.642];;FRS41E60410;FRCPIE67087652;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.8764533;47.32890163;;;; +;;;;;;;;FRFR1PGAY47NFYIK;XAIIQFT7IW;SAS CIGIMMO 4;;Parking multimodal - RN 149 - 86190 - Vouille;;[6.52,44.41];;FRS41E60409;FRCPIE67087851;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.438868;42.9494317;;;; +;;;;;;;;FRFR1PNFUXGBCYW2;QSJIQWEZ6G;SCI LES RUISSEAUX;;Place de la croix-cadet - 86580 - Vouneuil-sous-Biard;;[4.0239871, 48.3302804];;FRIONE41305;FRCPIE67087852;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.391484;43.7535892;;;; +;;;;;;;;FRS21PQHXB6BHOGC;GJO5868P4K;Refuge des Aiglons;;Route de Mirebeau - 86170 - Vouzailles;;[2.1726385, 48.4270586];;FRIONE413006;FRS28E141761;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.398988;46.20556621;;;; +;;;;;;;;FRS21PK7BSJNLZAP;DS2ZKBGWPN;Hôtel le Kaya;;Parking Intermarche - 86530 - Naintre;;[4.842811, 43.926543];;FRIONE413005;FRS18E112319;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9057774;43.441127;;;; +;;;;;;;;FRS21PXL48MPS8G5;UGFTMLOCNC;NNR France;;Place rue saint-Hilaire - 86300 - Leignes sur fontaine;;[7.649456, 48.901031];;FRIONE413004;FRS18E112320;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2614333;47.309592;;;; +;;;;;;;;FRS21PJLD6VKWKG7;BTIOCISWLO;CBRE TOUR FIRST;;Arret de bus route de Civray - 86350 - Usson-du-Poitou;;[3.8007328050838853, 47.813308037603726];;FRIONE413003;FRCPIE66433851;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.897273;48.601857;;;; +;;;;;;;;FRS21PQDAWUSC5CV;metzcat;Intermarché - Challans - 22kw AC;;Parking salle des f?tes - 86290 - Thollet;;[-0.38138, 43.337325];;FRIONE413002;FRCPIE66433852;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.13535;43.54637;;;; +;;;;;;;;FRS21PUSYS88RTB5;QZGNESQT2U;Terminal Cherbourg;;Le bourg - 86400 - Saint-Macoux;;[6.0825122, 45.9306913];;FRIONE413001;FRS88E161611;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.079967;48.26813266;;;; +;;;;;;;;FRS21PECMQKU9KNJ;M3QO1Y3NBX;Polybati;;Place du 14 juillet - 86160 - Saint-Maurice la Clouere;;[-1.403729,43.358055];;FRS51E95878;FRS88E161613;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.165022;43.48261;;;; +;;;;;;;;FRS21PIKODBJFESG;ITD8L7L5KT;KIA - Hérouville-Saint-Clair - 22kW AC;;Place de l'etoile - 86260 - Saint-Pierre de Maille;;[-1.654645323753357, 47.234375];;FRS51E95877;FRS18E181993;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.74223;45.189955;;;; +;;;;;;;;FRS21PXEEABPN1MQ;AA86CZDAIR;KIA - Hérouville-Saint-Clair - 24kW DC;;Rue des Verdoisieres - 86600 - Saint-Sauvant;;[2.2770973, 50.916263];;FRS08E57640;FRS18E181994;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.178151;43.96;;;; +;;;;;;;;FRS21PIQHHPTTJWY;GQ1TNKNZLU;STATION MICHEL AULAS;;Parking stade - 86100 - Saint-Sauveur;;[1.598737, 50.4726];;FRIONE407803;FRCPIE66438151;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.079026;44.05;;;; +;;;;;;;;FRS21PBJNOG4MWPW;JL2912T1FX;Bricomarché - Rive de Gier - 22kW AC;;Avenue du General de Gaulle - 86310 - Saint-Savin;;[5.8764533, 45.6213337];;FRIONE407804;FRCPIE66438152;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.111914;43.476583984941;;;; +;;;;;;;;FRS21PQKREGUWHSS;YSYP1FUAQD;Mazda - Lille (Villeneuve-d'Ascq) - 22kW AC;;Parking Villa Verde - 86400 - Savigne;;[6.438868, 46.349082];;FRIONE407805;FRS18E186370;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.811676;43.41959147913006;;;; +;;;;;;;;FRS21PINJVTNTI9G;GY3ENDUNAL;Mazda - Lille (PARKING) - 22kW AC PARKING;;6, rue du lavoir - 86140 - Savigny-sous-Faye;;[4.391484, 43.841971];;FRIENE0058023;FRS18E186371;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4088906;41.908579309038004;;;; +;;;;;;;;FRS21PYWPQYYSS4K;SCEEY592G4;Mazda - Buchelay - 7kW AC;;Place Palousier - 86260 - Senille;;[4.398988, 48.944432];;FRSHEE723;FRS18E204012;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.408807;48.832677935169805;;;; +;;;;;;;;FRS21PFCJXTFL0DV;QHOHHOBGVO;Mazda - Angerville-la-Campagne - 7kW AC;;Place Paul Dezanneau - 86800 - Sevres-Anxaumont;;[3.9057774, 43.660005];;FRSHEE722;FRS18E204011;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.82;46.2;;;; +;;;;;;;;FRS21PZ5PTFXJNAF;YSATF07ZM0;MAZDA EPINAL GAUCHE;;Place de la mairie - 86240 - Smarves;;[6.2614333, 46.2014483];;FRSHEE721;FRCPIE67345952;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.867657;45.147515;;;; +;;;;;;;;FRS21PSPHUA5RFWJ;QAFCVFAWVK;MAZDA EPINAL DROITE;;Avenue Sadi Carnot - 86100 - Chatellerault;;[6.897273, 45.459233];;FRSHEE712;FRS18E186354;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5487;46.768978;;;; +;;;;;;;;FRS21PZYG035N2OW;TDWPWURGFJ;Agape Hôtel Niort Bessines;;Place de la porte de Mirebeau - 86200 - Loudun;;[6.13535, 45.686943];;FRSHEE711;FRS18E96971;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5;48.534072;;;; +;;;;;;;;FRS21PI1KBZZA5DT;WZFERVLS6W;ORSINI CONSEIL;;Rue des ecoles - 86160 - Marnay;;[6.079967, 45.894798];;FRIENE0058024;FRS51E57469;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.15;49.17014;;;; +;;;;;;;;FRS21PXHDBE7OY3W;S141EGXVGU;WICKER TP BUREAUX;;Place du souvenir Francais - 86370 - Marigny-Chemereau;;[3.165022, 50.606513];;FRIENE0058012;FRS51E57470;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.2868817;43.2791824;;;; +;;;;;;;;FRS21PDEBHL6PHPC;LLI1HDD2GWRT7N;WICKER TP ATELIERS;;Place du champs de foire - 86360 - Lussac-les-Chateaux;;[4.74223, 45.979647];;FRIONE40785;FRS18E112663;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.605048;43.336796;;;; +;;;;;;;;FRFR1PFAQWZOZ717;YDHE3VJJY9;DOMAINE DE FALGOS;;Place du plan vert - 86600 - Lusignan;;[6.178151, 45.830847];;FRIENE0058011;FRS18E112664;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.347742;48.5699316;;;; +;;;;;;;;FRS21PY0IJDZQJPJ;MEYJUE0LKV;Intermarché - Marchaux - 22kw AC;;Place du 8 mai - 86600 - Lusignan;;[6.079026, 45.893398];;FRS37E4500;FRS18E115406;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.716682;44.6109419;;;; +;;;;;;;;FRS21PXSP3WMHTEF;X8A9OQR4ED;SA BEYNEL ET FILS - Gujan-Mestras - 22kW AC;;Place de la mairie - 86200 - Loudun;;[6.111914, 45.881672];;FRS37E4499;FRS18E115664;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.6073542;46.189385;;;; +;;;;;;;;FRS21PUSNRCK1VXI;UFFXNG;Bananes vertes;;Grand Rue de Chateauneuf - 86100 - Chatellerault;;[-0.811676, 48.0690269];;FRS37E4498;FRS18E186355;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0316692;48.9294;;;; +;;;;;;;;FRS21PWZLYXEDHOC;MPQRYN;Mc Donald's Basse Terre;;Rue de la gare - 86240 - Liguge;;[2.21,48.91];;FRS37E4497;FRCPIE67345951;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.676037;43.6023265;;;; +;;;;;;;;FRS21PBB7YAA9QQZ;AHRSQW;X4322;;Place des tilleuls - 86410 - Lhommaize;;[3.4088906, 49.0256943];;FRCPIE67387252;FRS18E204137;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.155058;45.0;;;; +;;;;;;;;FRS21PH1NN2OESGW;soissjeudarc;Montaigut Le Boulval;;Rue de demier - 86120 - Les Trois-Moutiers;;[3.408807, 49.025824];;FRCPIE67387251;FRS18E204139;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.462146;48.5750142;;;; +;;;;;;;;FRS21PRZHA0AVXQL;VUFZHX;e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Marchaux;;Place de la poste - 86340 - Les Roches Premaries;;[6.82,49.13];;FRS08E57639;FRS28E134496;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5;48.37;;;; +;;;;;;;;FRS21PTNV4EMC85I;GERAYP;e-Vadea - Brognon - A31 Dijon Spoy;;Place du Viaduc - 86150 - Le Vigeant;;[6.867657, 45.9168004];;FRN54E188610;FRS18E112214;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1521191;43.6885902;;;; +;;;;;;;;FRS21PGHX1O8M83O;SVZDTK;e-Vadea - Gissey-le-Vieil - A6 Chien Blanc;;10, rue de la mairie - 86330 - Martaize;;[6.5487, 45.31885];;FRCPIE66546852;FRS18E112215;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.56065;45.91998;;;; +;;;;;;;;FRS21PDSYBZMZ2OJ;Mercinbains;e-Vadea - Brognon - A31 Dijon Brognon;;Place de la mairie - 86460 - Mauprevoir;;[2.50,49.00];;FRS08E57686;FRCPIE67185751;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.58;43.9905133;;;; +;;;;;;;;FRS21PQABKCSRLPV;belleusetp;e-Vadea - Marchaux-Chaudefontaine - A36 Besançon Champoux;;Rue Paul Eluard - 86530 - Naintre;;[2.15,48.53];;FRCPIE66088552;FRCPIE67185752;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1299419;43.123458;;;; +;;;;;;;;FRS21PHDKZLSMFE1;QCMMEU;e-Vadea - La Palme - A9 La Palme Ouest;;Avenue Jean Jaures - 86530 - Naintre;;[0.2868817, 45.6190876];;FRCPIE66088551;FRS88E159235;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.074071;43.573139;;;; +;;;;;;;;FRS21PU0NYWWAOQY;beaurevoircdg;e-Vadea - Beausoleil - A8 Beausoleil;;Rue de la Girouarirre - 86120 - Morton;;[-1.605048, 49.644253];;FRIONE40235;FRS18E200419;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.41;49.780879;;;; +;;;;;;;;FRS21PIIQJYUNGSH;Montilengvau;e-Vadea - Jasseron - A40 Teyssonge;;Rue des caves de Brion - 86420 - Monts sur Guesnes;;[-0.347742, 49.214436];;FRIONE402302;FRCPIE67111851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.72048039949465;43.28532;;;; +;;;;;;;;FRS21PUUXQDJWN4P;YNLENGKDIG;e-Vadea - Bouc-Bel-Air - A51 Champouse;;39-43, boulevard de Strasbourg - 86500 - Montmorillon;;[4.716682, 45.975531];;FRIONE402301;FRS18E200420;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1446482;46.22;;;; +;;;;;;;;FRS21PQ5A81CXZQW;ZQJI8TT2HQ;e-Vadea - Druye - A85 Jardins de Villandry;;Boulevard du terrier blanc - 86500 - Montmorillon;;[4.6073542, 45.5257463];;FRS41E4038;FRS51E141854;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8066202;47.7717847;;;; +;;;;;;;;FRS21PVEXHH2DZUE;THJWNEXIN5;e-Vadea - Réau - A5a Plessis Picard;;Rue Daniel Cormier - 86500 - Montmorillon;;[3.0316692, 50.6421108];;FRS41E4037;FRS51E141855;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.125201;48.8227;;;; +;;;;;;;;FRFR1PXNCLKLI7GG;DN2MMDN9FZ;e-Vadea - Fabregues - A9 Montpellier Sud;;Place de l'ecole - 86330 - Moncontour;;[1.676037, 48.991536];;FRCPIE67596752;FRS88E159296;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.1724724;45.84;;;; +;;;;;;;;FRFR1PNBZ8TFSWEM;FCGRS7CQWI;e-Vadea - Sandaucourt - A31 La Trelle;;Place de l'eglise - 86150 - Millac;;[1.155058, 48.995907];;FRCPIE67596751;FRS88E159298;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.49542672;45.5432207;;;; +;;;;;;;;FRFR1PAQN1LPHKFB;AVIZJCCHFM;e-Vadea - Deyme - A61 Toulouse Sud;;Parking du stade - 86440 - Migne-Auxances;;[6.462146, 48.204388];;FRCPIE66546752;FRS88E159047;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.171659;44.48;;;; +;;;;;;;;FRFR1PJXSPR9YPGN;FPANMF;e-Vadea - Saugon - A10 Terres de l'Estuaire;;Allee des magnals - 86550 - Mignaloux-Beauvoir;;[-0.5, 46.3];;FRCPIE66546751;FRS88E159049;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12712458;46.1746523;;;; +;;;;;;;;FRFR1PEWEC5ADH0N;RZFESC;HOTEL LES ALIZES;;Rue des champs dores - 86170 - Le Rochereau;;[3.1521191, 50.7065043];;FRCPIE67594652;FRCPIE67089951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.969035;45.17941688;;;; +;;;;;;;;FRFR1PXU0FKMJHGO;VSKJMEF5WR;LUMI'IN MALIJAI;;Place de la salle des f?tes - 86190 - Latille;;[7.56065,48.73133];;FRCPIE67594651;FRCPIE67089952;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.4200054;47.354481;;;; +;;;;;;;;FRFR1PCGTJBSDTLL;WC1AKJFZH5;1PACTE;;Place de la liberte - 86400 - Civray;;[2.58,42.37];;FRS18E188180;FRIONE469201;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.29451923;47.0236522;;;; +;;;;;;;;FRFR1PSK2JUSBR1G;BPNWOVXD2R;Hotel saint alban;;4, place de Gromelange - 86320 - Civaux;;[6.1299419, 47.3207567];;FRS18E188179;FRIONE469202;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.395574;46.1858677;;;; +;;;;;;;;FRFR1PLWJIYIXGPX;QENWKTMZCF;Résidence les calanques;;Place rue du comte Joubert - 86170 - Cisse;;[-1.074071, 44.616646];;FRS51E48890;FRIONE469203;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.508871;49.2819168;;;; +;;;;;;;;FRFR1PN9LEAC2WWK;MMGYMF;Hôtel Restaurant Campanile Nogent-sur-Marne;;Carrefour D347-D45 Aire de repos - 86110 - Chouppes;;[-61.41, 16.01];;FRS51E48889;FRIONE469204;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.601411;43.822462;;;; +;;;;;;;;FRFR1PFZQWDNZP1W;LNCRPQ;Aubade - Comptoir des Fers;;Rue de Guerstling - 86450 - Chenevelles;;[-61.72048039949465, 15.999101989340252];;FRCPIE66088651;FRIONE469205;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.795777;46.14;;;; +;;;;;;;;FRFR1PSEBURVUBUQ;GQZHCENVFB;Mazda - Brive - 22kW AC;;Place Saint-Vincent - 86380 - Saint-Martin La Pallue;;[3.1446482,45.7582871];;FRCPIE66088652;FRIONE469206;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.86041194;45.210931;;;; +;;;;;;;;FRFR1PQPHCBREEPR;EJBKFGAQ96;Mazda - Chalon-sur-Saône - 22kW AC;;Rue de Banfora - 86300 - Chauvigny;;[2.8066202,46.1815093];;FRCPIE66088751;FRIONE46925;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.549728;43.576079;;;; +;;;;;;;;FRFR1PLILSDM6BG9;LX3M7GUQLZ;Villa Primerose - Arcis-sur-Aube - 7.4kW AC D;;Parking Gymnase Lathus - 86300-Chauvigny;;[6.125201, 47.327026];;FRIONE44905;FRS88E161737;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.490309;43.4252619;;;; +;;;;;;;;FRFR1PGJWNGA1KMF;NVU3GGF8HX;Villa Primerose - Arcis-sur-Aube - 7.4kW AC;;Parking, rue Porte Chevreau - 86300 - Chauvigny;;[5.1724724, 47.4218283];;FRS08E57685;FRS88E161739;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.89;49.0396456;;;; +;;;;;;;;FRFR1PSLTGDVGEJ0;VAC3YJH6PA;HOTEL LES PEUPLIERS;;Rue de Peuron - 86300 - Chauvigny;;[4.49542672, 47.3148725];;FRS08E57562;FRS88E161638;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.05;46.644182;;;; +;;;;;;;;FRS21PLFYDOOHFLJ;ZMNFG2WGSB;Toyota - Mondeville - 22kW AC;;Parking Lidl - Zone de la desiree -86100 Chatellerault;;[5.171659, 47.421321];;FRS08E57561;FRS88E161636;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.476711409891;50.6884145;;;; +;;;;;;;;FRS21PD4GDWKU6P4;HDIHBPSJPW;Toyota - Marseille - 22KW AC;;Rue Creuze - 86100 - Chatellerault;;[6.12712458, 47.32890163];;FRIENE0055024;FRIENE0093024;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.407609123225763;44.838434799999;;;; +;;;;;;;;FRFR1POKHCYANOVC;HROA3L4NBG;Mellone Construction - Roquevaire - 22kW AC;;1, rue de la chantrie - 86600 - Cloue;;[2.969035, 42.9494317];;FRIENE0055023;FRS18E112720;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.657888301758055;43.87;;;; +;;;;;;;;FRFR1PMIICHC8WP1;RLWJHC;Mellone Construction - Roquevaire - 7,4kW AC;;Place de la Liberte - 86290 - La Trimouille;;[7.4200054, 43.7535892];;FRIENE0055012;FRS18E140155;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.493569567590577;43.82;;;; +;;;;;;;;FRFR1PSDPZT1PG8I;PIPHPE34WD;Syndicat intercommunal (Mairie) - Cesson - 22kW AC;;Rue de la croix - 86330 - La Grimaudiere;;[5.29451923, 46.20556621];;FRIENE0055011;FRS18E140156;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.27;43.8834392;;;; +;;;;;;;;FRFR1PCEGEWMOWL6;VU508T5OVZ;Intermarché - La Teste de Buche - 22kW AC;;Place du champs de foire - 86350 - Jousse;;[5.395574, 43.441127];;FRIONE449004;FRS18E182380;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.4883644;43.7274444;;;; +;;;;;;;;FRFR1PRLS4BR4ZPF;GCQHR8X8AM;Mazda - Bourg en Bresse - 22kW AC;;Parking du domaine de la Bourgeoisie - 86240 - Iteuil;;[0.508871, 47.309592];;FRCPIE66088752;FRS18E182381;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.860127;50.716487;;;; +;;;;;;;;FRFR1PHYOVWUYG9D;IYRXKDVGXP;BMW MAREIL LES MEAUX;;1, rue de la gare - 86220 - Ingrandes;;[2.601411, 48.601857];;FRIONE449003;FRS18E143927;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.1391855;45.633753981745;;;; +;;;;;;;;FRFR1POUGLHBJSNW;FQVDTM;Toyota - Antibes - 22kW AC;;Place de l'eglise - 86340 - Gizay;;[3.795777, 43.54637];;FRIONE449002;FRS18E143928;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.323404;50.2224538;;;; +;;;;;;;;FRS89PVPR7IBU3VQ;KAYLQU8CEK;LODGING LE LAC;;Place de la mairie - 86240 - Fontaine-le-Comte;;[5.86041194, 48.26813266];;FRIONE449001;FRS18E112719;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.4191715;43.57;;;; +;;;;;;;;FRS89PBRDLUZETXL;JSQOOBA6QV;Intermarché - Morlaix - 22kW AC;;Place de l'eglise - 86340 - Fleure;;[1.549728, 43.48261];;FRCPIE66654152;FRIENE0041011;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.59939;44.97406;;;; +;;;;;;;;FRS89PBYVHZM8W55;WJAIJ1IBFG;Parking de l'hôtel;;Rue Jules Ferry - 86110 - Cuhon;;[-0.490309, 45.189955];;FRCPIE66654151;FRIENE0093023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.6089027;49.22868351448894;;;; +;;;;;;;;FRS89PJVE4YVDDY8;YAYRFJMR2U;Toyota - Nice - 24kW DC;;Parking de la mairie - 86600 - Coulombiers;;[6.89,43.96];;FRS41E4934;FRIENE0041012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.1472556;46.3266042;;;; +;;;;;;;;FRS89PQCG03FUW7F;OJUCCZEVLA;Toyota - Nice - 22KW AC;;Impasse de Paris - 86700 - Couhe-Verac;;[6.05,44.05];;FRS41E4933;FRIENE0041023;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.210311;49.33620273281156;;;; +;;;;;;;;FRS89PPJXN1PMJGC;ANX5XTRANK;Hôtel le Morgane;;Place de la salle des fetes - 86470 - Benassay;;[5.476711409891, 43.476583984941];;FRCPIE67266152;FRIENE0041024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8959;49.105377;;;; +;;;;;;;;FRS89PPT71J19KJL;CZKSFL;Toyota - Montauban - 22KW AC D;;Place du Mail - 86110 - Mirebeau;;[3.407609123225763, 43.41959147913006];;FRCPIE67366152;FRS88E159270;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.0880539;47.2277788;;;; +;;;;;;;;FRS89PBX2FMMHQG6;LLHQ8XLQM1082U;Toyota - Montauban - 22KW AC G;;1 Rue des Charrières 86510 Chaunay;;[8.657888301758055, 41.908579309038004];;FRS41E2950;FRS88E159272;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.14;50.689838;;;; +;;;;;;;;FRS89PONM5JTR0HR;T63G4SSANF;Intermarché - Hyères - 22kW AC;;Parking Intermarché;;[2.493569567590577, 48.832677935169805];;FRIONE404452;FRIENE0093011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.8293749;50.1754619;;;; +;;;;;;;;FRS89PRGITKSMNLH;RGSVS1AL8N;Intermarché - Vallauris - 22kW AC;;Allée des Marronniers;;[6.27,46.20];;FRIONE432503;FRIENE0093012;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.43;46.1798642;;;; +;;;;;;;;FRS89PWNRYGDUGDQ;FKCYGTVQZZ;Intermarché - Gauville - 22kW AC;;Centre routier RN10 - 86700 - Valence en Poitou;;[1.4883644, 45.147515];;FRIONE432502;FRIONE413703;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.201547;45.776709;;;; +;;;;;;;;FRS89PSI15JQVFV0;EK29BLZG2U;LACLAPE CAMPING;;Avenue Clement Ader - 86360 - Chasseneuil du Poitou;;[4.860127, 46.768978];;FRIONE432501;FRIONE413705;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.86859;49.04113387118815;;;; +;;;;;;;;FRS89PDU2KLXCRUO;LLIYF14UR2QU1N;Camping le Valserine;;Place de Dion Bouton - 86000 - Poitiers;;[4.1391855, 48.534072];;FRS18E109620;FRS18E196425;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.3319719;49.051990901751864;;;; +;;;;;;;;FRS89POBTODAY7YQ;LLJZI2PFA147ER;Mazda - Mulhouse (Illzach) - 22kW AC;;78, avenue Jacques Coeur - 86000 - Poitiers;;[-0.323404, 49.17014];;FRS18E109619;FRS28E137388;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.147915;49.08592862729444;;;; +;;;;;;;;FRS89PXHZG9LHHIP;UZSVN0XKFV;BMW GRANVILLE;;5, Avenue de Paris - 86490 - Beaumont Saint-Cyr;;[5.4191715, 43.2791824];;FRTNME099111641;FRSHEE442;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.0497765;49.0483698;;;; +;;;;;;;;FRS89PYQK2HF4E49;XXHDK2JIDV;Hôtel du Lac 74290;;Rue de l'écorcerie;;[5.59939, 43.336796];;FRTNME099111640;FRSHEE451;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.759704;45.7100001;;;; +;;;;;;;;FRS89PVEL4IGFHEO;WSTO3YTK15;Bricomarché - Nontron - 22kW AC;;Route de Parthenay - 86190 - Ayron;;[2.6089027, 48.5699316];;FRTNME089122281;FRSHEE452;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.519401;45.719162;;;; +;;;;;;;;FRS89PSLXFPOSIPV;C8ZUDPSMZR;Hôtel les Cèdres 07260;;Place Rene Descartes - 86530 - Availles en Chatellerault;;[-1.1472556, 44.6109419];;FRTNME089122280;FRSHEE453;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.86;47.407691498712914;;;; +;;;;;;;;FRS89PBXADENINHL;LT9KFZGHYY;Toyota - Montagnat - 22kW AC;;Place du 11 novembre - 86210 - Archigny;;[5.210311, 46.189385];;FRTNME089122201;FRSHEE454;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.3800762;46.81020598702974;;;; +;;;;;;;;FRS89PK8AQTKTMH6;LLJZIKVQJBF8T4;Toyota - Périgueux - 22kW AC;;19, route nationale - 86330 - Angliers;;[2.8959, 48.9294];;FRTNME089122200;FRS18E148756;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.526;47.88;;;; +;;;;;;;;FRS89PLCZG98BJYC;AGLDMBPSEF;Toyota - Dijon - 22kW AC;;Parking de la salle des fetes - 86260 - Angles sur l'Anglin;;[7.0880539, 43.6023265];;FRTNME089122181;FRS18E148757;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.21;47.93;;;; +;;;;;;;;FRS89PPMKVSDGNNM;ZXBMMXPZY1;Toyota - Beaune - 24kW DC;;Place de la mairie - 86430 - Adriers;;[-1.14,45.00];;FRTNME089122180;FRS28E130014;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.6709003;48.427342;;;; +;;;;;;;;FRS89PWCYYWDBZ8X;LLHQ9B01L2OYT4;Toyota - Annemasse - 24kW DC;;Rue des ecoles - 86580 - Biard;;[-3.8293749, 48.5750142];;FRCPIE66786552;FRS18E186239;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.24;45.591954;;;; +;;;;;;;;FRS89PPGCTXOYGXE;IGWTYIK1QR;Toyota - Annemasse - 22kW AC G;;La Mignotterie - Pole Multimodal - 86190 - Beruges;;[7.43,48.37];;FRCPIE66786551;FRS18E98613;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2592028;47.65296;;;; +;;;;;;;;FRS89PAIIZRA3GWT;JO7VVPBFQW;Toyota - Annemasse - 22kW AC D;;11, avenue Galilee - 86360 - Chasseneuil-du-Poitou;;[7.201547, 43.6885902];;FRCPIE66786252;FRS18E98614;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.7461104;48.067092;;;; +;;;;;;;;FRS89PDOV1RQ6FH9;V43HVYP7PY;Camping La Pommeraie - Cabourg - 24kW AC;;Rue Pablo Picasso - 86550 - Mignaloux-Beauvoir;;[6.86859, 45.91998];;FRCPIE66786251;FRS18E153420;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.065799;47.580334;;;; +;;;;;;;;FRS89PAVO6WOWEGE;soissonsarc;Camping La Pommeraie - Cabourg - 24kW DC;;1, place Aristide Briand - 86170 - Neuville de Poitou;;[1.3319719, 43.9905133];;FRIONE432504;FRS18E153421;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.86082418;47.713374;;;; +;;;;;;;;FRS89PTZRYB3IGZ1;58b6d63f2370f;Intermarché - Riez - 22kW AC;;Chemin de la Chaignade - 86500 - Saulge;;[6.147915, 43.123458];;FRIONE43255;FRS28E134801;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2174783;47.482122;;;; +;;;;;;;;FRS89PQ6IKLNJNWO;YLWMERYTIJ;Parking Weidner Station 1;;Rue des ecoles - 86450 - Leigne-les-Bois;;[7.0497765, 43.573139];;FRCPIE65350851;FRCPIE66492551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.1393838;47.778166;;;; +;;;;;;;;FRS89PRVM9WQYHNE;soissonsdama;Intermarché - Retournac - 22kW AC;;Place Raoul Perret - 86380 - Saint-Martin La Pallue;;[1.759704, 49.780879];;FRFASE3309803;FRCPIE66492552;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0901155;47.592389;;;; +;;;;;;;;FRS89PWO6VCOTK0I;58aeb617ad8c4;Toyota - Le Cannet - 24kW DC;;RD29 - 86350 - Saint-Secondin;;[3.519401,43.28532];;FRFASE3309810;FRS18E214519;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16;47.697468;;;; +;;;;;;;;FRS89POLVXFNK8GY;58b6d74ccc142;Toyota - Le Cannet - 22kW AC;;Place du 8 mai 1945 - 86280 - Saint-Benoit;;[5.86,46.22];;FRFASE3309809;FRSHEE441;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.029971;47.758092;;;; +;;;;;;;;FRS89PECMOSMPEFO;WVRRH8KDBX;IPARRA - Arcangues - 7kW AC;;Parking Super U - 86130 - Saint-Georges les Baillargeaux;;[7.3800762, 47.7717847];;FRFASE3309808;FRSHEE433;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.012564;47.98792;;;; +;;;;;;;;FRS89PVMMH9IWEVE;XYKQRE;Intermarché - Freneuse - 22kW AC;;Rue Pierre et Marie Curie - 86370 - Vivonne;;[-1.526, 48.8227];;FRFASE3309807;FRSHEE432;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5263958;47.716287;;;; +;;;;;;;;FRS89PPVLAC5Y3JN;FRHDSL;MGMI - La Roche sur Yon - 22kW AC;;Rond-Point du stade - 86000 - Poitiers;;[6.21,45.84];;FRFASE3309806;FRCPIE65937252;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.5922295;47.555619;;;; +;;;;;;;;FRS89PU1NNX3EPG6;DBLHFU;SEPTENTRION FINANCES;;Parking de la mairie - 86500 - Pindray;;[0.6709003, 45.5432207];;FRFASE3309805;FRCPIE66430251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.417247;47.979188;;;; +;;;;;;;;FRS89PTJJKSFHD5Q;58b6c69e0d34e;DLM BORDEAUX;;Rue de Touraine - 86530 - Cenon sur Vienne;;[4.24,44.48];;FRFASE3309804;FRCPIE66430252;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1756309;48.139513;;;; +;;;;;;;;FRS89PBAUQWL2XZK;WWBNFP;Zen Co,nstruction;;Place de la promenade - 86220 - Dange Saint-Romain;;[5.2592028, 46.1746523];;FRFASE3309802;FRS28E139389;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6746938;47.735956;;;; +;;;;;;;;FRS89PXEORPSQQHF;TWZDPZ;DOMAINE DES PEYRE;;Parking Vallee des Singes - 86700 - Romagne;;[0.7461104, 45.17941688];;FRCPIE65350852;FRS18E146793;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.12;47.994416;;;; +;;;;;;;;FRS89PXLGIGXAO8M;KBWFSH;Borne Restaurant Gastronomique Jérôme Nutile;;Rue Anatole Briey - 86160 - Magne;;[5.065799, 47.354481];;FRFASE3309801;FRS18E146794;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.37;48.0526854834355;;;; +;;;;;;;;FRS89PQOFFE7IHNI;QWGEWH;CAMPING MAS FLEURI;;Parking - Rue Nonnet - 86270 - La Roche-Posay;;[4.86082418, 47.0236522];;FRCPIE66998152;FRS28E139024;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.4182742;47.742514;;;; +;;;;;;;;FRS89PI0OZLDNOPA;SNUFDD;Intermarché - Saint-Paul les Dax - 22kw AC;;Rue de l'ecole - 86380 - Chabournay;;[6.2174783, 46.1858677];;FRCPIE66998151;FRCPIE65937251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0737222;47.91868;;;; +;;;;;;;;FRS89PACURO64Z5F;soissonsunis;[43.72744440,-1.07372220];;1 Rue du Bocage 14460 Colombelles;;[-0.1393838, 49.2819168];;FRCPIE66967252;FRS55E66442;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.157229;47.855722;;;; +;;;;;;;;FRFR1PAZIFAF8IUX;58aeb7222db0f;Clinique de la Victoire;;188 Rte d'Uxem, 59254 Ghyvelde;;[6.0901155, 43.822462];;FRCPIE66967251;FRSHEE431;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.263081045755;47.57026302;;;; +;;;;;;;;FRFR1PMEKQGP7IH8;mezymoumedic;INIGO PROPRETE;;Rue des Dunes, 59123 Bray-Dunes;;[6.16,46.14];;FRCPIE66967152;FRS55E66443;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6180124;47.736924;;;; +;;;;;;;;FRFR1PFVPQBSTVGS;Charlymorl;CAMPING DE LA FERME DE MAYOCQ;;225 Av. de la Plage, 62730 Marck, France;;[4.029971, 45.210931];;FRCPIE66967151;FRIONE403701;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.95;47.861432;;;; +;;;;;;;;FRFR1PHZCA5QOHFO;UNJDMY;Provibat, Pérols;;2 GRAND PLACE PLACE 59122 LES MOERES;;[7.012564, 43.576079];;FRIONE404453;FRIONE403702;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8501;47.673607;;;; +;;;;;;;;FRFR1PB34AM9DYGR;5899a3d83d245;INTERMARCHE ALTILLAC - 22 KW AC;;32 Rue Aristide Boucicaut 11100 Narbonne;;[-1.5263958, 43.4252619];;FRIONE404451;FRIONE403703;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.3372150061411605;47.777566;;;; +;;;;;;;;FRFR1PYSWOWTKK1A;MVQUQH;GOLF DE CAEN;;272 Boulevard Marcel Paul 44800 Saint-Herblain;;[1.5922295, 49.0396456];;FRFASE3309812;FRIONE403704;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0622478;47.833423;;;; +;;;;;;;;FRFR1PIOUZSC0GRQ;EZJMRB;Mazda - GEX-Cessy - 22kW AC;;3 Rue CHARLES MARTIN;;[-1.417247, 46.644182];;FRIONE404405;FRIONE40375;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4612672413424779;48.054001;;;; +;;;;;;;;FRFR1PCLFKICEPGZ;CEKNKB;CENTRE JUNO BEACH;;Route de courdault 85490;;[3.1756309, 50.6884145];;FRS18E97833;FRS28E130244;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.494583;48.0700414667807;;;; +;;;;;;;;FRFR1PD8Z6WDTXQH;589d8a780a12e;LA MEULE DE PIERRE;;Route de courdault;;[-0.6746938, 44.838434799999];;FRS18E97832;FRS18E214520;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.1357063;48.064974;;;; +;;;;;;;;FRFR1PWQHEFOD9T2;FTRQMO3IQ3;Ford - Saumur - 22KW;;ruelle Montagne;;[5.12,43.87];;FRCPIE66850652;FRIENE0092011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.841263;48.071378;;;; +;;;;;;;;FRFR1PD5CNGLVE5R;AYRAGX;Nieppe;;rue Grande;;[4.37,43.82];;FRCPIE66850651;FRCPIE66430151;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2026184999999;47.707941;;;; +;;;;;;;;FRFR1PYDEFOWAYME;LLJ2MJF702J9PW;DESENFANS CAMBRAI;;rue Ernest Delbet;;[7.4182742, 43.8834392];;FRS55E124571;FRIENE0092012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.325962;48.060595;;;; +;;;;;;;;FRFR1PWHR7FFWALM;CMVVUZ;Bricomarché - La Flotte en Ré - 22 KW AC;;rue des fosses Bretonnières;;[-1.0737222, 43.7274444];;FRS55E124570;FRS08E46445;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.797441;47.681789;;;; +;;;;;;;;FRFR1PS01QE8YZCU;EFENPV;Mazda - Lyon Nord - 22kW AC;;rue des petits Champs;;[3.157229, 50.716487];;FRCPIE65803952;FRS08E46460;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0793613022707724;47.660195;;;; +;;;;;;;;FRFR1PT1JWMFICCG;58dcdcbf82a84;ORDINAL;;avenue Théodore Rousseau;;[6.263081045755,45.633753981745];;FRCPIE65803951;FRS08E46461;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.031726083467107;47.790313;;;; +;;;;;;;;FRFR1PKNWRUJWIAS;58de499d6602c;SDC CONSTELLATION;;avenue de la libération;;[1.6180124, 50.2224538];;FRCPIE65803852;FRS08E46467;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.923877087310788;47.481743;;;; +;;;;;;;;FRFR1PKEWRJQNRLS;58de4ae5aaabb;Campus Vigny;;rue du Chapeau;;[3.95,43.57];;FRCPIE65803851;FRS08E46468;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4969902;47.4874178836587;;;; +;;;;;;;;FRFR1PXQ35PJ1LNO;58de4a4bdf840;DEGRES CELCIUS;;rue de la Vacherie;;[1.8501, 44.97406];;FRIONE44735;FRS51E112429;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8208158;47.906071;;;; +;;;;;;;;FRFR1PNKTSSSRIOZ;ZGGRYJ;GL Automotive - Oullins - 22 kW AC;;Place du Maréchal Augereau;;[-0.3372150061411605, 49.22868351448894];;FRIONE447306;FRS51E112430;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.871622;47.957695;;;; +;;;;;;;;FRFR1PO2OQF8EAZK;MU4VEED0OF;Mazda - Venissieux Lyon Sud - 22kW AC;;rue du Bordeau;;[6.0622478, 46.3266042];;FRIONE447305;FRIONE417601;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.1891329694156174;47.702308;;;; +;;;;;;;;FRFR1PKBIZNBBJ9N;BLXZFV;IMORIZON ANCENIS - MERMOZ 2 ANCENIS;;grande rue;;[-0.4612672413424779, 49.33620273281156];;FRIONE447304;FRIONE417602;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.11003453009083;47.734611;;;; +;;;;;;;;FRFR1PC9ASIEEJ39;laverderie;Camping Les Places Dorées - 85160 Saint-Jean-de-Monts;;rue de l'église;;[-0.494583, 49.105377];;FRIONE447303;FRIONE417603;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5;47.7033830419759;;;; +;;;;;;;;FRFR1PU0IEIGTQV5;PMW0TWM1G9;TISSERANT;;place de la mairie;;[-0.1357063, 47.2277788];;FRIONE447302;FRIONE417604;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.49;47.660678;;;; +;;;;;;;;FRFR1PBAZ89ZAKIB;IJOXVXWV0B;JMD;;rue de la garenne;;[2.841263,50.689838];;FRIONE447301;FRIONE417605;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.47419;47.655716;;;; +;;;;;;;;FRFR1PLII6X0QIDC;MU6UKE1DGT;BOX;;rue des Clos;;[3.2026184999999, 50.1754619];;FRIENE0036011;FRIONE417606;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.243401;47.920399;;;; +;;;;;;;;FRFR1PKRXTAYLACE;GFGWISRUKV;Mazda - Brest - 22kW AC;;rue de l'abbaye;;[-1.325962, 46.1798642];;FRIENE0036012;FRIONE41765;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.070389;47.9266217574649;;;; +;;;;;;;;FRFR1PAKJDIXOW7V;RJXC0KVN9L;Mazda - Bourgoin-Jallieu - 22kW AC;;rue de la Croix mission;;[4.797441, 45.776709];;FRIENE0036023;FRIENE0037011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.879812;47.917212;;;; +;;;;;;;;FRFR1PWH4MBGWMTY;NPHZOEZONW;Ploemel - Rue du Lenno;;rue Carnot;;[2.0793613022707724, 49.04113387118815];;FRCPIE66776151;FRIENE0037012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.358157;47.653088;;;; +;;;;;;;;FRFR1PRD1SP1RLHB;TMRU6GQRN3;Noyal-pontivy - Avenue de la Libération;;rue des trois Maillets;;[2.031726083467107, 49.051990901751864];;FRIONE404404;FRIENE0037023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.219651;47.599028;;;; +;;;;;;;;FRFR1PHEKHN1FIEJ;VXETMU;Péaule - Place Saint Gaudence;;route de Moret;;[1.923877087310788, 49.08592862729444];;FRIONE404402;FRS08E46444;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.470933;47.696366;;;; +;;;;;;;;FRFR1PFTRU0LBPTW;CMGEBPEBGY;Peillac - Rue de la Citée des Fleurs;;rue Brulée;;[2.4969902, 49.0483698];;FRIONE404401;FRS08E46434;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.689778;48.145256;;;; +;;;;;;;;FRFR1POHF6LP48UT;PASSBK;Pénestin - Boulevard de l'Océan;;route de Juilly;;[4.8208158, 45.7100001];;FRCPIE66776152;FRS08E46433;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.457083;47.838044;;;; +;;;;;;;;FRFR1PWO3R2EBCJ5;WKRRKN;Plaudren - Rue Georges Cadoudal;;rue de la république;;[4.871622, 45.719162];;FRFASE3310908;FRSHEE333;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.804416;47.981275;;;; +;;;;;;;;FRFR1PJDBAHISUDA;RHTBXV;Noyal-muzillac - Rue du Presbytère;;rue Blanche;;[-1.1891329694156174, 47.407691498712914];;FRIENE0036024;FRIENE0092023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.376077;48.082356;;;; +;;;;;;;;FRFR1PTQ382YIB2F;58aeb47a92e48;Plescop - Rue de la République;;rue Montmart;;[-2.11003453009083, 46.81020598702974];;FRFASE3310907;FRIENE0092024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.684955;47.961865;;;; +;;;;;;;;FRFR1PM07QKYRRKD;DFR9ZCDQ6F;Pleucadeuc - Rue Pasteur;;rue Lamaze;;[6.82,47.88];;FRFASE3310906;FRS28E130548;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.763716;47.70391;;;; +;;;;;;;;FRFR1PBM1NPADH8L;Q4JVAXJQH0;Pleugriffet - Rue Anne de Bretagne;;rue du général de Gaulle;;[6.50,47.93];;FRFASE3310905;FRSHEE321;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.482977;48.032159;;;; +;;;;;;;;FRFR1PIZNCFBJ5N9;Q6MEVWHEHS;Meucon - Route de Vannes;;rue de Dormelles;;[6.49,47.93];;FRFASE3310904;FRSHEE322;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.110099;48.030602;;;; +;;;;;;;;FRFR1PAJAG0W3H7H;DEOTABIQBH;Muzillac - Place du Vieux Couvent;;rue du pont de l'arcade;;[-4.47419, 48.427342];;FRFASE3310903;FRSHEE331;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.462695;47.3464444;;;; +;;;;;;;;FRFR1PY9Y1GSKFUK;R3XWXLIQVP;Melrand - Rue Saint Laurent;;rue de l'hêtre;;[5.243401, 45.591954];;FRFASE3310902;FRSHEE332;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.235664;47.3472517670383;;;; +;;;;;;;;FRFR1PK1RXOZWOA5;PHLNTHDLYD;Ménéac - Place du Plessis de Genedan;;route de Brangis;;[-3.070389, 47.65296];;FRFASE3310901;FRSHEE334;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.433201;48.070927;;;; +;;;;;;;;FRFR1PWD96MMJNF3;OUBY1DDYTO;Merlevenez - Rue du Presbytère;;rue du petit parc;;[-2.879812, 48.067092];;FRFASE3309811;FRCPIE67087452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.52498182745563;47.349146;;;; +;;;;;;;;FRFR1PRC3V7VKDRM;G5WSCVUOGV;Meslan - Rue de Beg er Lann;;Rue Grande;;[-2.358157, 47.580334];;FRFASE3309813;FRCPIE66472051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.681072;47.739021;;;; +;;;;;;;;FRFR1PE3P4AETVDQ;QS6DHJXSDF;Mohon - Parking du bourg;;rue du château;;[-2.219651, 47.713374];;FRIONE435903;FRCPIE66472052;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.819318;48.036786;;;; +;;;;;;;;FRFR1PHXZXDAWWIA;IKYUTHP1BE;Monterblanc - Place Anne de Bretagne;;Place Roger Chauveau;;[-2.470933, 47.482122];;FRIENE0075023;FRCPIE66767851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.833536;47.636525;;;; +;;;;;;;;FRFR1PZ7C3K9UPQY;IQ31SB4676;Moréac - Place de la Résistance;;rue de la Garenne;;[-2.689778, 47.778166];;FRIENE0075012;FRCPIE66767852;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.0778143;47.862029;;;; +;;;;;;;;FRFR1PCMYWWV4CUF;YXZCNHKIHR;Moustoir-ac - Rue de la Maillette;;avenue de la gare;;[-2.457083, 47.592389];;FRIENE0075011;FRCPIE65475451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.426771;47.889343;;;; +;;;;;;;;FRFR1PRIYAV3WSUX;SSPQRIGGGG;Carnac - Boulevard de la plage;;rue Michel Gendron;;[-2.804416, 47.697468];;FRCPIE66187252;FRCPIE65475452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.886022;47.834239;;;; +;;;;;;;;FRFR1PBGRBPDRMKQ;BHJBR6MTSL;Ploemeur - Allée Laurent Esvan - Mairie;;rue de Melun;;[-2.376077, 47.758092];;FRCPIE66187251;FRCPIE67087451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.009248;47.954125;;;; +;;;;;;;;FRFR1PIHEBY32X0M;YSCJHWOOBD;Plumelin - Rue du Stade;;rue de Meaux;;[-2.684955, 47.98792];;FRCPIE65019151;FRCPIE66430152;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.399863;47.9537301035597;;;; +;;;;;;;;FRFR1PTWJNVSU38B;HXDYFHVRAK;Pluneret - Rue Marie Curie;;Place du tilleul;;[-2.763716, 47.716287];;FRCPIE66152952;FRFASE3310008;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.9684577690378;48.007954;;;; +;;;;;;;;FRFR1PDPK4J4CAMC;EM1XTBUMGN;Pluvigner - Place Saint Michel;;rue du sac;;[-2.482977, 47.555619];;FRCPIE66152951;FRIONE413706;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.966614;47.764089;;;; +;;;;;;;;FRFR1PCRSMVV007E;ACCWKSNKDG;Pont-scorff - Rue Théophile Guyomar;;Place Jean Jaurès;;[-3.110099, 47.979188];;FRS88E162025;FRCPIE66446352;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.965144;47.76628;;;; +;;;;;;;;FRFR1PCGQ8TK2DHU;B3EMG8J6LZ;Pontivy - Avenue des cités unies;;rue Blanchard;;[-2.462695, 48.139513];;FRS88E162023;FRCPIE66998951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.357774;47.517403;;;; +;;;;;;;;FRFR1PIZTS5WD7DG;J3N1KOHIJZ;Pontivy - Parking Jégourel;;ruelle aux grenouilles;;[-3.235664, 47.735956];;FRCPIE67091752;FRCPIE66998952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.410638;48.097286;;;; +;;;;;;;;FRFR1PFM8964A1WI;RCMGGZK8UV;Pontivy - Place Aristide Briand;;allée du Château;;[-3.433201, 47.994416];;FRCPIE67091751;FRS28E137338;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.449763;47.589297;;;; +;;;;;;;;FRFR1PDFTKIZHXBB;UXEUSC0NOG;Pontivy - Quai des Récollets;;rue des Charmilles;;[-2.52498182745563, 48.0526854834355];;FRCPIE67091552;FRCPIE66904551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.452043;47.688679;;;; +;;;;;;;;FRFR1PRCWFXEXJ8M;XQEM9PNU02;Port-louis - Rue de la Brèche;;avenue de Villiers;;[-2.681072, 47.742514];;FRCPIE67091551;FRCPIE66904552;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.121657;47.748351;;;; +;;;;;;;;FRFR1PPUBVDXONKL;SZKATEV5AC;Priziac - Rue du Bel Air;;rue de Montigny;;[-2.819318, 47.91868];;FRIONE43595;FRS18E104686;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.10414118509687;47.761657;;;; +;;;;;;;;FRFR1PFTKSVVL1HL;QKLF8YQGSF;Questembert - Avenue de la Gare;;place de l'église;;[-2.833536, 47.855722];;FRIONE435906;FRS18E104687;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.135324;47.763304;;;; +;;;;;;;;FRFR1PCFEWDQL4XQ;C91UWKY1QR;Questembert - Place Général de Gaulle;;Rue Victor Hugo;;[-3.0778143, 47.57026302];;FRIONE435905;FRS18E95964;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.972268;47.774319;;;; +;;;;;;;;FRFR1PMV1ZGUGKA7;KZWEVDDHH9;Quéven - Place du Général de Gaulle;;Place Pasteur;;[-3.426771, 47.736924];;FRIENE0075024;FRS18E95965;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.432524;48.103788;;;; +;;;;;;;;FRFR1PHDKDDYFEUH;FYPYBGCKG4;Quiberon - Place Varquez;;rue de la poste;;[-2.886022, 47.861432];;FRCPIE65022851;FRS88E161845;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.427366;47.739971;;;; +;;;;;;;;FRFR1PXOGNQADIP5;CKOSSK9SU8;Quiberon - Port Haliguen;;allée André Benoist;;[-2.95916, 47.673607];;FRCPIE65065051;FRS88E161847;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.45439663305045;47.749039;;;; +;;;;;;;;FRFR1PA0MTYFQTIA;F8CISMNBL6;Quistinic - Rue de la Résistance;;rue de la Forêt;;[-3.009248, 47.777566];;FRIENE0088024;FRS18E104721;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.869326;47.746452;;;; +;;;;;;;;FRFR1PDW4BG8XNRL;BGJEL6OX17;Pluméliau-bieuzy - Rue de la Ferrière;;chemin des pres Gallier;;[-3.399863, 47.833423];;FRTNME18B924470;FRS18E104722;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.38561913884387;47.761289;;;; +;;;;;;;;FRFR1PUEHU81Y2UG;YCDY4DXWFE;Ploemeur - Boulevard de l'Océan;;Place des la Mairie;;[-2.95376, 48.054001];;FRTNME18B923920;FRCPIE66445551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.336528;47.742671;;;; +;;;;;;;;FRFR1PAMWLUY3DJK;ZEWFPVSRKI;Ploemeur - Lomener - Place Patrick Bihan;;rue Pierre Charton;;[-2.9684577690378, 48.0700414667807];;FRS51E127011;FRCPIE66445552;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.915687;47.746835;;;; +;;;;;;;;FRFR1POJC67YT8UC;ZRLDYDOYI6;Ploemeur - Place Anne de Bretagne;;rue de la Justice;;[-2.966614, 48.064974];;FRS51E127010;FRCPIE66445651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.112396;47.762901;;;; +;;;;;;;;FRFR1PTI3K2PT3CV;RCVNUCGJWB;Ploemeur - Place Kermabon;;rue de la mairie;;[-2.965144, 48.071378];;FRCPIE67130951;FRCPIE66445652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.251559;47.736239;;;; +;;;;;;;;FRFR1PUTVSMAGTKP;O2JCWW7L4P;Ploeren - Parking relais - proximité route nationale;;rue de la Gaillardière;;[-3.357774, 47.707941];;FRCPIE67130751;FRCPIE66992852;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.389359;47.766652;;;; +;;;;;;;;FRFR1PYWIDNJ8YCI;LBBOWNBKO6;Ploeren - Rue des Deux Moulins;;rue de Beaumont;;[-3.410638, 48.060595];;FRCPIE67116551;FRCPIE66992851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.641815;47.731763;;;; +;;;;;;;;FRFR1PCSVFMAPDLK;KIXKMOIV8M;Ploërmel - Parc d'activités de Ronsouze;;rue de l'Ourcq;;[-2.449763, 47.681789];;FRIENE0088023;FRIONE43345;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.065024;47.676634;;;; +;;;;;;;;FRFR1PAMCQAOUOYI;G07NKV2IV3;Ploermel - Réhumpol, proximité futur lycée;;Avenue de la gare;;[-2.452043, 47.660195];;FRS51E175071;FRS28E134777;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.282737;47.810723;;;; +;;;;;;;;FRFR1PQJETDRPRLH;XZ5BGZA7KF;Plouay - Rue Hélène Le Chaton;;route de Vinneuf;;[-3.41565, 47.790313];;FRIENE0088012;FRIONE41375;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.713993;47.809912;;;; +;;;;;;;;FRFR1PYTA0PZVM7C;LHFKUTTBHP;Plougoumelen - Rue des Chaumières;;rue d'Olympie;;[-3.121657, 47.481743];;FRIENE0088011;FRCPIE66386251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.384561;47.529508;;;; +;;;;;;;;FRFR1PS8PA2ZJSYJ;SOUICAHQGU;Plouharnel - Rue du Tramway;;rue de la vieille Montagne;;[-3.10414118509687, 47.4874178836587];;FRCPIE66692252;FRCPIE66386252;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.499354;47.74982;;;; +;;;;;;;;FRFR1PQEJQBLAVR2;OH8L29VRNN;Plouhinec - Rue des Roseaux;;rue Mérot;;[-3.135324, 47.906071];;FRCPIE66692251;FRS88E177260;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.48967;47.7542447078472;;;; +;;;;;;;;FRFR1PIZ7TY3PKMS;WQV2RNZM6H;Plouray - Rue d'Elle;;rue de Ferland;;[-2.972268, 47.957695];;FRCPIE66692152;FRS88E177262;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.15679787965018;47.756393;;;; +;;;;;;;;FRFR1PF4PTLVVEGT;R84F9WYP2R;Plumelec - Rue des Martyrs de la Résistance;;Place de la résistance;;[-3.432524, 47.702308];;FRCPIE66692151;FRCPIE66386351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.188811;47.568076;;;; +;;;;;;;;FRFR1PEM4UWZE7FL;JBMCIPOQG1;Pluméliau-bieuzy - Place Ernest le Moine;;rue de Montpensier;;[-3.427366, 47.734611];;FRS51E175072;FRCPIE66386352;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.212803;47.888933;;;; +;;;;;;;;FRFR1PQGMC7P1GHH;EOJBWKSCLF;Mauron - Rue du 19 Mars 1962;;place du maréchal Foch;;[-3.45439663305045, 47.7033830419759];;FRIONE435904;FRIONE433404;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.271274;47.881531;;;; +;;;;;;;;FRFR1PNME8JL5XVW;VFHQDF7H5S;Radenac - Rue Anne de Bretagne;;Avenue Aristide Briand;;[-2.79624, 47.660678];;FRIONE435902;FRIONE40265;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.353597;47.7237299482431;;;; +;;;;;;;;FRFR1PXK3BRSQEOA;WZWROIDFBO;Le palais - 2 Rue des Remparts;;Place du Champivert;;[-2.869326, 47.655716];;FRFASE3309814;FRIONE433401;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.526434;47.710186;;;; +;;;;;;;;FRFR1PANPKXW9RD5;Y4W4XRLU0W;Larmor-plage - Boulevard de Port Maria;;rue du Gatinais;;[-2.38847, 47.920399];;FRIONE435901;FRIONE433402;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.261518;47.758191;;;; +;;;;;;;;FRFR1PA1CCYW60HL;T1K60S6LOO;Larmor-plage - Place de l'Eglise;;rue Edouard Brigeon;;[-2.38561913884387, 47.9266217574649];;FRFASE3311016;FRIONE433403;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.159671;47.735396;;;; +;;;;;;;;FRFR1PDBFPKZBIGQ;VN1NPSWHO2;Larmor-plage - Place Kerpape;;rue des Vignes;;[-3.336528, 47.917212];;FRFASE3311015;FRCPIE66446351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.546018;47.730545;;;; +;;;;;;;;FRFR1PXXDLS2JO5O;ROTRW5ZTBM;Le faouët - Rue Cours Carré;;rue de la Tour Maubourg;;[-2.915687, 47.653088];;FRFASE3311014;FRCPIE66446451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.54946112322054;47.751861;;;; +;;;;;;;;FRFR1PLLKQZKII6258TW;HVZILC8RVL;Le faouët - Rue des écoles;;rue de la Légende;;[-3.112396, 47.599028];;FRFASE3311012;FRFASE3310007;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.318491;47.748922;;;; +;;;;;;;;FRFR1PUUJVT7GFB3;MX6Q1OAWHF;Le palais - 2 Avenue Carnot;;Avenue du général Leclerc;;[-3.251559, 47.696366];;FRFASE3311011;FRCPIE66446452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.240835;47.753665;;;; +;;;;;;;;FRFR1PO6N2OWJJ7V;MUDXQHMAZH;Le palais - 9-13 Place de L Hôtel de ville;;rue du Mail Est;;[-3.389359, 48.145256];;FRFASE3311010;FRS28E134195;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.134335;47.75316;;;; +;;;;;;;;FRFR1PCVWVHT;RWQKAKGXL4;Locmalo - Rue Jean Le Bris;;rue Théodore Rousseau;;[-2.641815, 47.838044];;FRFASE3311009;FRS18E112534;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.545212;47.7541104118167;;;; +;;;;;;;;FRFR1PKZQCFW;WCCOPA7FR3;Le palais - Les Glacis;;rue de la Ballastière;;[-3.065024, 47.981275];;FRFASE3311008;FRS18E112535;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.029185;47.690303;;;; +;;;;;;;;FRFR1PM9KFBBOZNC;KYUVJINTQC;Le palais - Port-Collen;;rue des Vignettes;;[-2.282737, 48.082356];;FRFASE3311007;FRIENE0028011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.076174;48.141016;;;; +;;;;;;;;FRFR1PLYK0VLSICY;MAIBZUMHHF;Le tour-du-parc - Parking Cimetière Place des 4 Frères le Blouch;;Allée de Louche;;[-2.713993, 47.961865];;FRFASE3311006;FRIENE0028012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.120444;47.803108;;;; +;;;;;;;;FRFR1PPQQFEQWKFX;VUNAICL53Z;Les fougerêts - Place de la Mairie;;Chemin des Manneries;;[-3.384561, 47.70391];;FRFASE3311005;FRIENE0028023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.349639;47.48098;;;; +;;;;;;;;FRFR1PTCBPDHC3FI;G3DXGKYHRM;Lignol - Place Corentin Le Floch;;rue du Closeau;;[-3.499354, 48.032159];;FRFASE3311004;FRIENE0028024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.341074;47.9891560944795;;;; +;;;;;;;;FRFR1POO9RLIGTXI;NPEBXB9YXF;Limerzel - Place de L'église;;rue de la planche Coutant;;[-3.48967, 48.030602];;FRFASE3311003;FRS88E177421;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.491434;47.657677;;;; +;;;;;;;;FRFR1PLLIWYM8S6XDY4C;ZET3IOQSGY;Lizio - Rue du souvenir;;rue des carrières;;[-3.15478, 47.3464444];;FRFASE3311002;FRS88E177423;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.393552;47.641144;;;; +;;;;;;;;FRFR1PUXYEWT;TGEZRIQCB9;Lanvaudan - Place de la Mairie;;rue Henri Jules Brugeail;;[-3.15679787965018, 47.3472517670383];;FRFASE3311001;FRS28E139441;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.360043;47.7311983193366;;;; +;;;;;;;;FRFR1PKZQZYL;V4QRFQWA0I;Languidic - Place Joseph Guillerme;;rue Beauregard;;[-3.188811, 48.070927];;FRFASE3309816;FRS28E139443;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.356266;47.517901;;;; +;;;;;;;;FRFR1PFRG66VW9M5;NYMVETIFEG;Josselin - Place d'Alzey;;rue Saint Médard;;[-3.15921, 47.349146];;FRFASE3309815;FRFASE3310001;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.385916;47.6173830049512;;;; +;;;;;;;;FRFR1PVXU4WVABPH;FD8OWVSZIC;Josselin - Place Georges Lamour;;Place du Général Leclerc;;[-2.212803, 47.739021];;FRFASE331113;FRFASE3310002;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.387461;47.74654;;;; +;;;;;;;;FRFR1PUAYALWREG0;VRGXDRTTO6;Kernascléden - Rue des Rohan;;Route de Saint-Leu;;[-3.271274, 48.036786];;FRN54E187775;FRFASE3310003;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.368187;47.817567;;;; +;;;;;;;;FRFR1PUXMNDN;eleclerober;Kervignac - Rue de la Mairie;;rue de la Mairie;;[-2.353597, 47.636525];;FRN54E187776;FRFASE3310004;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.382552;47.887598;;;; +;;;;;;;;FRFR1PABYE1D2DBH;OUS5RTX2UW;La gacilly - Rue de l'Hôtel de ville;;Quai de l'île;;[-2.526434, 47.862029];;FRIONE413203;FRFASE3310005;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.401963;47.810829;;;; +;;;;;;;;FRFR1PCUCLV63JAV;PUSQCHVOAB;La roche-bernard - Place du Dôme;;rue du Mont;;[-3.261518, 47.889343];;FRS37E1379;FRFASE3310006;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.373377;47.758084;;;; +;;;;;;;;FRFR1PLLMTM4TSXD;QH4GD1TUH4;La trinité-porhoët - Rue du Stade;;D103;;[-3.159671, 47.834239];;FRS37E1256;FRS18E117886;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.384419;47.804724;;;; +;;;;;;;;FRFR1PVICY36RAPV;VGLWGT1XND;La trinité-sur-mer - Cours des Quais;;Allée du parc;;[-2.546018, 47.954125];;FRS51E57729;FRS18E117885;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.305132;48.048179763944;;;; +;;;;;;;;FRFR1PO0NVYCD3RW;ZAJRFADFMD;La vraie-croix - Rue du Tostal;;rue du Lavoir;;[-2.54946112322054, 47.9537301035597];;FRS51E57728;FRCPIE66513952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.361121;48.043441;;;; +;;;;;;;;FRFR1PYLCU4JWUCU;GQWX3AC3GR;Landaul - Place de la Mairie;;rue du Général de Gaulle;;[-3.318491, 48.007954];;FRIONE41325;FRIONE432304;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.36632778285274;47.712149;;;; +;;;;;;;;FRFR1PBU0VIGCDAQ;OMWSI0JG0A;Landévant - 3 Place de l'Eglise;;rue de l'égalité;;[-3.240835, 47.764089];;FRIONE413205;FRS18E97770;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.787496;47.772376;;;; +;;;;;;;;FRFR1PBMGYU8HPTS;MKOVST34HX;Lanester - Avenue françois Billoux;;rue des écoles;;[-2.134335, 47.76628];;FRIONE413204;FRS18E97771;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.943775;47.792624;;;; +;;;;;;;;FRFR1PEI9OT5GBAB;HDGGB1NVRK;Lanester - Rue Youri Gagarine;;Rue de la mairie;;[-2.29707, 47.517403];;FRIONE413202;FRS18E200950;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.837508;48.028073;;;; +;;;;;;;;FRFR1PJA7BNPMKOY;LBFG8OBIJR;Langonnet - Place Morvan Leiz Breizh;;rue Bessonville;;[-2.545212, 48.097286];;FRCPIE64989851;FRS18E200951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.829046;47.930239;;;; +;;;;;;;;FRFR1POZK2ET0HLL;QMM82OX1GG;Lorient - Rue Maurice Thorez;;rue des pissotes;;[-3.029185, 47.589297];;FRIONE40405;FRIONE432301;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.34326909091439;47.905937;;;; +;;;;;;;;FRFR1PODFHLRKA2C;FHVJ8STYWS;Lorient - Place Anatole Le Braz;;rue Creuse;;[-2.54198, 47.688679];;FRIONE404005;FRIONE432302;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.104075;47.908288;;;; +;;;;;;;;FRFR1PPUZGJABMS9;PGJJYJCBOV;Lorient - Place d'Armes;;rue Principale;;[-3.076174, 47.748351];;FRIONE404004;FRIONE432303;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.365966;48.066944;;;; +;;;;;;;;FRFR1PC2SCCZDTFI;FT7Q4WNI3A;Lorient - Place de La Liberté;;rue Brise mur;;[-3.120444, 47.761657];;FRIONE404003;FRIONE43235;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.359602;47.891521;;;; +;;;;;;;;FRFR1PVTOBODIIAL;KYYFI6NIAL;Lorient - Rue de Lanveur;;route de Mormant;;[-3.349639, 47.763304];;FRIONE404002;FRCPIE66513951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.364871;47.93859;;;; +;;;;;;;;FRFR1PJCKGRBBWBK;LHO03SXIPB;Lorient - Rue Jean le Coutaller;;rue de la roche du saut;;[-3.341074, 47.774319];;FRCPIE64993251;FRS18E98496;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.362195;47.641507;;;; +;;;;;;;;FRFR1PBIJ5VAY56V;ZA8JA9BSVY;Lorient - Rue Léo Lagrange;;place de la fontaine;;[-3.491434, 48.103788];;FRCPIE64989852;FRS18E98497;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.36687356916206;47.817804;;;; +;;;;;;;;FRFR1PZWMI4CXHPK;KU6VNMWPRI;Locmaria - 56 Rue Argentré du Plessis;;rue Bernard;;[-3.393552, 47.739971];;FRCPIE66761552;FRIENE0068011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.737215;47.6014170979096;;;; +;;;;;;;;FRFR1PLYDSRQVHDQ;NIIRDBT67N;Lorient - Rue Moïse Le Bihan;;rue du onze novembre;;[-3.360043, 47.749039];;FRCPIE67367251;FRIENE0068012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.600977;47.618330149684;;;; +;;;;;;;;FRFR1PYQMAE8C3MB;POTRT2UKUG;Lorient - Rue Müller;;rue des Dronots;;[-3.356266, 47.746452];;FRIONE439604;FRIENE0068023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.442704;47.666459;;;; +;;;;;;;;FRFR1PNWFQDD7ISJ;BGK8U5EEDE;Lorient - Rue Raymond du Rallier du Baty;;route de Provins;;[-3.385916, 47.761289];;FRCPIE66587851;FRIENE0068024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.344105;47.670334;;;; +;;;;;;;;FRFR1PQVV3WJXNY7;TA9HIA7WJP;Malansac - Rue des Forges;;rue Cambot;;[-3.387461, 47.742671];;FRFASE3302408;FRS28E139425;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.8311430135182;47.668615;;;; +;;;;;;;;FRFR1PMP20MASWWU;E2ZYVDEZCI;Malestroit - Place du Docteur Jean Queinnec;;place de Bordeaux;;[-3.368187, 47.746835];;FRFASE3302407;FRS18E96970;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.156938;47.919083;;;; +;;;;;;;;FRFR1PMISIB4G9PH;SUUVYU;Marzan - Aire de Marzan;;rue du Pont;;[-3.37854, 47.762901];;FRFASE3302406;FRS18E196424;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.590841;47.542052;;;; +;;;;;;;;FRFR1PAAWKPFVNSO;CN71UXKBKD;Lorient - Place Alsace Lorraine;;rue du Marronnier;;[-3.382552, 47.736239];;FRFASE3302405;FRS55E122900;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.5899562431288;47.549741;;;; +;;;;;;;;FRFR1PTCIIETN158;LLIO765R6CG78K;Lorient - Parvis Gare;;route de Brodards;;[-3.401963, 47.766652];;FRFASE3302404;FRCPIE67270952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.581612;47.534599;;;; +;;;;;;;;FRFR1PAV6FY1L0OW;pontarroc;Locmaria-grand-champ - Rue du Stade;;rue des Champs;;[-3.373377, 47.731763];;FRFASE3302403;FRFASE3310308;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.00082862377166;47.61487027016;;;; +;;;;;;;;FRFR1PEVMYWOAM15;BKYNQA;Locmariaquer - Parking Wilson;;avenue Jean de la Fontaine;;[-2.29572, 47.676634];;FRFASE3302402;FRFASE3310307;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.812224;47.6269066197669;;;; +;;;;;;;;FRFR1PVDRSZH3ZTA;LQHELL;Locminé - Place Joseph Richard;;avenue georges clémenceau;;[-2.38363, 47.810723];;FRFASE3302401;FRFASE3310306;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.336729;47.637975;;;; +;;;;;;;;FRFR1PKVSPKBVOHL;JWFFPT;Locminé - Rue Maréchal Leclerc;;rue de Villaroche;;[-2.384419, 47.809912];;FRIONE43965;FRFASE3310305;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.341557;47.874823;;;; +;;;;;;;;FRFR1PBQLHACIPCL;RNAAVM;Locmiquélic - Parking du centre;;rue de Courcelles;;[-2.305132, 47.529508];;FRIONE439612;FRFASE3310304;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.842664;48.061611;;;; +;;;;;;;;FRFR1PQ5Y2M4CFKZ;CTUDSJ;Locoal-mendon - Rue de Kroas Er Bleu;;rue de Verdun;;[-3.361121, 47.74982];;FRIONE439611;FRFASE3310303;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.276149;47.848171;;;; +;;;;;;;;FRFR1PVMVLQ77CMB;JREWFN;Locqueltas - Place de la Mairie;;croisement RD402 - RD231;;[-3.36632778285274, 47.7542447078472];;FRIONE439610;FRFASE3310302;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.6447748899666;47.480774;;;; +;;;;;;;;FRFR1PG0G8NXXBNN;QPFAVF;Lorient - Avenue de la Perrière;;avenue Daniel Simon;;[-2.787496, 47.756393];;FRIONE439609;FRFASE3310301;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.403894;47.875616;;;; +;;;;;;;;FRFR1PL6DAT3JJ7M;MYCHBY;Lorient - Boulevard Abbé Louis le Cam;;rue de Milly;;[-2.943775, 47.568076];;FRIONE439608;FRS18E95969;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.310304;47.630798;;;; +;;;;;;;;FRFR1PCORSVFNDDL;IASECPLLXC;Lorient - Boulevard du Maréchal Joffre;;rue de Champeaux;;[-2.837508, 47.888933];;FRIONE439607;FRS18E95968;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.526174;47.964535;;;; +;;;;;;;;FRFR1PCDWU9FOQUI;SAOUCGH4D2;Lorient - Boulevard Leclerc - Parking Hôtel De Ville;;avenue Patton;;[-2.829046, 47.881531];;FRIONE439606;FRIENE0038024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.493116;47.896999;;;; +;;;;;;;;FRFR1PQALUCBHTJR;MEHMD1BJY0;Lorient - Cours Louis de Chazelles;;rue du petit paraclet;;[-3.34326909091439, 47.7237299482431];;FRS37E15074;FRIENE0038023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.092245;47.720345;;;; +;;;;;;;;FRFR1PCZWNSB;THW2NLV0GF;Lorient - Lorient Découverte Rue de Villeneuve;;1 Chemin des Mariniers;;[-3.104075, 47.710186];;FRTNME18B926140;FRIENE0038012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.127943;47.638886;;;; +;;;;;;;;FRFR1PRVBWQ4ACRN;XGGXMZDHIA;Lorient - Parking gare;;rue de la Tournelle;;[-2.76628, 47.758191];;FRIONE40855;FRIENE0038011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.123399;47.880847;;;; +;;;;;;;;FRFR1PNL5HBZFIZT;TD9JKXMCX6;Saint-avé - Rue 5 Août 1954;;rue du Calvaire;;[-3.365966, 47.735396];;FRIONE408505;FRCPIE67271152;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.976864;47.995538;;;; +;;;;;;;;FRFR1PPBANG1G7XO;XIGDYUXUYP;Gourin - Place Général de Gaulle;;avenue Léon Blum;;[-3.359602, 47.730545];;FRIONE408504;FRCPIE67271151;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.207056;47.67557;;;; +;;;;;;;;FRFR1PWSZO153YAE;OTBAPZKKLS;Gestel - Rue de Quéven;;place de la jouvence;;[-3.364871, 47.751861];;FRIONE408503;FRCPIE67271052;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.641356;47.54681;;;; +;;;;;;;;FRFR1PZSBWTUJWGI;PSHJETZDTQ;Férel - Rue du Pré de la Dame;;l'occitane;;[-3.36581, 47.748922];;FRIONE408502;FRN54E187398;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.563301;48.014049;;;; +;;;;;;;;FRS89PDLMH5PS9PO;S5MAYKG1DE;Évellys - Proximité médiathèque;;366 Avenue de L'isle sur Sorgue 84300 CAVAILLON;;[-3.362195, 47.753665];;FRS37E15075;FRN54E187399;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.448803;47.803188;;;; +;;;;;;;;FRS89PO9WI6RZMGF;DRPCRSDJXN;Étel - Ruelle des Champs;;11 impasse lavoisier;;[-3.37788, 47.75316];;FRS88E144228;FRIENE0030011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.133332;47.703143;;;; +;;;;;;;;FRS89PHEQ9HQWWAE;LLJ6XHLSS2QBEH;Erdeven - Place Saint Märgen;;273 Route Impériale 74370 Fillière;;[-3.36687356916206, 47.7541104118167];;FRS88E144226;FRIENE0046023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.86303026029825;47.667242;;;; +;;;;;;;;FRS89PFPTVYF69DD;KEWBFH2LZO;Elven - Rue Sainte Anne;;23 Avenue des Fontenelles 35400 Saint-Malo;;[-2.737215, 47.690303];;FRIONE41315;FRIONE440706;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.91851626989541;47.586732;;;; +;;;;;;;;FRS89PNPWU1NKGAH;WHUT1OA2QQ;Elven - Rue Robert de la Noé;;Avenue Kennedy 62650 PERNES EN ARTOIS;;[-3.600977, 48.141016];;FRIONE413105;FRIONE440705;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.989563;47.520606;;;; +;;;;;;;;FRS89PWGS1UBRXZZ;EBBPTU;Damgan - Boulevard de l'Océan;;8 Rte de Brie-Comte-Robert 94520 Périgny;;[-3.442704, 47.803108];;FRIONE413104;FRIONE440704;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.008414;48.09947;;;; +;;;;;;;;FRS89PZ5UCFNWMKC;I6QFCRFVXE;Crach - Parking Saint Thuriau;;Allée de la Communauté 79260 LA CRECHE;;[-2.344105, 47.48098];;FRIONE413103;FRIONE440703;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.281177;47.703906;;;; +;;;;;;;;FRS89PJJQXMOPFU6;doubshyper;Cournon - Rue de l'Ecole;;13 rue de Pithiviers 45480 BAZOCHES LES GALLERANDES;;[-2.8311430135182, 47.9891560944795];;FRIONE413102;FRIONE440702;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.894551;47.5275250709627;;;; +;;;;;;;;FRS89PAIYZMSQLBC;AEDHEK;Colpo - Rue Nationale;;4 Rue Baillon, 62990 Embry;;[-3.20436, 47.657677];;FRIONE41565;FRIONE440701;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.891044;47.5274203638255;;;; +;;;;;;;;FRS89PDPTFW3WTSR;VRIXQATI3S;Cléguer - Kerchopine;;101 ter rue des 80 fusillés 62590 oignies;;[-3.156938, 47.641144];;FRIONE439605;FRIENE0046024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.83016002077974;47.5921152831321;;;; +;;;;;;;;FRS89PJGEOPKPRGO;XRTQBE;Caudan - Place du Presbytère;;83 Rte de la Gorgue, 59660 Merville;;[-2.590841, 47.7337];;FRIONE439603;FRIENE0046012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.82373725796509;47.522153;;;; +;;;;;;;;FRS89PWYQIBGH61M;KHXZGS;Grand-champ - Rue de la Poste;;6 Rue Léna Bernstein;;[-2.5899562431288, 47.7311983193366];;FRTNME18B926170;FRIENE0030012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.163514;47.844376;;;; +;;;;;;;;FRS89PZX1OHTORO0;LLIOK3JAN1K99S;Île-aux-moines - Embarcadère;;2 Place du Paisy - 69570 Dardilly;;[-2.581612, 47.517901];;FRIONE439602;FRIENE0046011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.018244;47.827935;;;; +;;;;;;;;FRS89PKVJYQPYE2S;UULUVH;Hennebont - Place du Général de Gaulle;;43 rue francis combe;;[-3.00082862377166, 47.6173830049512];;FRIONE431202;FRIENE0052024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.686605;47.631023;;;; +;;;;;;;;FRS89PCFQAIZFBFN;XFPUWS;Guiscriff - Place Centrale;;17 rue francis combe;;[-2.10467, 47.74654];;FRIONE431201;FRIENE0052023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.000257;48.068001;;;; +;;;;;;;;FRS89PRBJSJAWJIU;GQUH2Z082H;Guilliers - Place Glaharon;;126 RUE PRINCIPALE, 67270 MELSHEIM;;[-2.812224, 47.817567];;FRS55E167583;FRIENE0052012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.397549;48.126648;;;; +;;;;;;;;FRS89PXBKOAMYT9V;CDMZFUQMXL;Riantec - Rue Le Gloahec;;135 Rte de Pontenx, 40160 Parentis-en-Born, France;;[-3.336729, 47.887598];;FRS55E167582;FRIENE0052011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.322814;47.819758;;;; +;;;;;;;;FRS89PJARPJJ9XE9;mandeuresuper;Guidel - Route de Kerbrest;;70 Avenue de la Libération 54750 Trieux;;[-3.341557, 47.810829];;FRS55E158019;FRIENE0030024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.285431;47.911114;;;; +;;;;;;;;FRS89PEWYZJ18PVY;Morteaugare;Guidel - Place le Montagner;;505 Avenue Jean Monnet;;[-2.842664, 47.758084];;FRS55E158018;FRIENE0030023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.173147;47.725984;;;; +;;;;;;;;FRS89PG3EJY8H0MI;gilleycret;Guern - Rue de la Vallée;;10 place de la mairie Sel;;[-3.276149, 47.804724];;FRS55E158013;FRCPIE67271051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.999055;47.92571;;;; +;;;;;;;;FRS89PNT5MWKKIOS;pontarcine;Guer - Zone d'activité du Val Coric;;370 ROUTE DE BOURRIAN - 83580 GASSIN;;[-3.6447748899666, 48.048179763944];;FRS55E158012;FRCPIE67270951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.948935;47.544915;;;; +;;;;;;;;FRS89PRGSCLDYTHV;VVCNFQ;Guer - Place de la Gare;;6 RUE CAPCIR - 66280 SAIELLES;;[-2.403894, 48.043441];;FRS55E158007;FRIONE440708;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.771008;48.107927;;;; +;;;;;;;;FRS89PRD41RSGJAA;NNYTYC;Guénin - Rue de Maneguen;;ZA LA BALORAIS;;[-3.310304, 47.712149];;FRS55E158006;FRCPIE67270852;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.393807;47.50187;;;; +;;;;;;;;FRS89PABZLE7DG3B;villerbartho;Guémené-sur-scorff - Rue du Condé;;155 Av. de Petite-Synthe, 59640 Grande-Synthe;;[-3.526174, 47.772376];;FRS55E157988;FRIONE454513;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.167758;48.12327;;;; +;;;;;;;;FRS89PDKORVPTIL0;RGGHFS;Guéhenno - Parking Rue Nationale;;AV DE GRUISSAN - 11100 NARBONNE;;[-3.493116, 47.792624];;FRS55E157987;FRIONE454512;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.721365;47.656324;;;; +;;;;;;;;FRS89PE7P4WVKFHE;Frasnegare;Guégon - Rue des Rosiers;;RTE DE GRUISSAN - 11100 NARBNONE;;[-3.092245, 48.028073];;FRS55E157955;FRIONE454511;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.418437;47.658649;;;; +;;;;;;;;FRS89PWKQMCXPLVY;oyepalletsdf;Groix - Parking Port Tudy;;8 BOULEVARD DES JARDINNIERS;;[-2.127943, 47.930239];;FRS55E157954;FRIONE454510;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.650631;47.670475;;;; +;;;;;;;;FRS89PXW1SLUHJGS;pierrefonmair;Carnac - Place de la Chapelle;;Le Poudreux, Rue des Quatre Francs, 14600 La Rivière-Saint-Sauveur 14600 HONFLEUR;;[-2.123399, 47.905937];;FRCPIE66728152;FRIONE454509;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.106252;47.63785;;;; +;;;;;;;;FRS89PRJ6WGXFAAQ;arcetsenans;Carentoir - Rue Abbé de La Vallière;;181 av Charles de Gaulle 02000 LAON;;[-2.976864, 47.908288];;FRCPIE66728151;FRIONE454502;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.000351;47.657587;;;; +;;;;;;;;FRS89PHS6YJGEDPN;UBXXUV;Baden - Parking Port Blanc;;14-16 Rue Antoine Lavoisier, Première Classe Dunkerque 59430 DUNKERQUE;;[-3.207056, 48.066944];;FRCPIE67367252;FRIONE454501;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.131924;47.642143;;;; +;;;;;;;;FRS89PEEP0X6NNHY;YZWNLR;Baden - Chemin du Vrancial;;HOTEL PREMIERE CLASSE 14800 TOUQUES;;[-2.641356, 47.891521];;FRIONE431203;FRIONE40995;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.950392;47.670911;;;; +;;;;;;;;FRS89POSPWWGX5NY;audincourpos;Auray - Rue du Four Mollet;;Hôtel Kyriad Direct Rouen Nord Barentin - 238 Rue Denis Papin 76360 BARENTIN;;[-2.563301, 47.93859];;FRIONE431204;FRIONE409906;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.76105177805124;47.650702;;;; +;;;;;;;;FRS89PO0HFZ0CNCY;morteaucoll;Auray - Parking Porte Océane;;Kyriad Beauvais Sud - 26 Rue Gay Lussac 60000 Beauvais;;[-3.448803, 47.641507];;FRIONE43125;FRIONE409905;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.76127088823087;47.658028;;;; +;;;;;;;;FRS89PJMYY8FYAWD;YJNMSJ;Auray - Parking Kériolet;;Hotel Kyriad Direct - 70 Av. Winston Churchill 27000 EVREUX;;[-2.133332, 47.817804];;FRS08E188243;FRIONE409904;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.84862890173862;47.651531;;;; +;;;;;;;;FRS89PGE5GIEJMTM;YLQMYY;Augan - Rue du Verger;;Hotel Kyriad Direct Laon - 181 Av. Charles de Gaulle 02000 LAON;;[-2.86303026029825, 47.6014170979096];;FRIONE439601;FRIONE409901;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.769914;47.977818;;;; +;;;;;;;;FRS89PNCSVTXWFT3;SRUYZT;Arzon - Quai des Cabestans - Le port du Crouesty;;Hotel Kyriad - Impasse des Ormes 14200 HEROUVILLE;;[-2.91851626989541, 47.618330149684];;FRS41E5021;FRFASE3310808;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.776055;47.65884;;;; +;;;;;;;;FRS89PGDSFD1GRQ5;RTZIYHR634;Arzon - Parking Maison des Associations;;14 Rue Robert Nau 41000 BLOIS;;[-2.989563, 47.666459];;FRS41E5020;FRFASE3310807;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.723187;47.629187;;;; +;;;;;;;;FRS89PLYKHGRPY0K;vercelville;Arzal - Parking Port d'Arzal;;PREMIERE CLASSE BOURGES - ZAC de l'Echangeur 18000 BOURGES;;[-3.008414, 47.670334];;FRCPIE65800052;FRFASE3310806;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.248809;47.618809;;;; +;;;;;;;;FRS89PYZOIQEYBLO;JXNFKK;Arzal - Parc d'activité de l'estuaire;;Campanile Aurillac - Zac De La Jordanne, 3 Av. Georges Pompidou 15000 Aurillac;;[-2.98203, 47.668615];;FRCPIE65800051;FRFASE3310805;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.101493;47.82212;;;; +;;;;;;;;FRS89PZMWXUS8EQA;DTWFUM;Arradon - Rue de la Carrière;;1 ter Rue du Lac, Hôtel Restaurant Campanile Armbouts Cappel 59380 ARMBOUTS-CAPPEL;;[-2.281177, 47.919083];;FRS37E1235;FRFASE3310804;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.752332;47.675299;;;; +;;;;;;;;FRS89PORELOOXXEX;KVTXUX;Arradon - Plessis d'Arradon;;Rue Maximilien Robespierre 59553 CUINCY;;[-2.894551, 47.542052];;FRS37E1234;FRIONE454514;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.717093;47.579263;;;; +;;;;;;;;FRS89PGWPDQ07EIS;HXJWUA;Allaire - Rue Le Mauff;;Zone D'Activités, 282 Rte de la Bassée 62300 LENS;;[-2.891044, 47.549741];;FRS08E188242;FRIONE454515;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.282708;47.792627;;;; +;;;;;;;;FRS89PPFG840FCF1;BFTTPG;Baud - Rue du pont clas;;Campanile Rouen Nord - Mont Saint Aignan - 1 RUE JACQUES MONOD PARC DE 76130 MONT-SAINT-AIGNAN;;[-2.40121, 47.534599];;FRFASE3300701;FRIONE454516;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.723772;47.658564;;;; +;;;;;;;;FRS89PLX6ZXEAANA;CDKXJS;Bréhan - Place de la Mairie;;Campanile Wasquehal - Allee De La Marque Rn 350 av Marne 59290 Wasquehal;;[-2.83016002077974, 47.61487027016];;FRFASE3300708;FRIONE408703;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.279209;47.645533;;;; +;;;;;;;;FRS89POQWUDU187C;DMVKVB;Camors - Rue du Vieux Presbytère;;148 Av. des Sabotiers 40150 Soorts-Hossegor;;[-2.82373725796509, 47.6269066197669];;FRFASE3300707;FRCPIE67270851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.153323;47.632566;;;; +;;;;;;;;FRS89PK5T7XB37GG;YECSZR;Camoël - Rue Paul Ladmirault;;Place_du_general_de_Gaulle;;[-2.163514, 47.637975];;FRFASE3300706;FRCPIE66900452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.890817;47.866851;;;; +;;;;;;;;FRS89PUAFKYILXEA;UCAAKJ;Calan - Rue Marc Le Floch;;19_Rue_de_la_vaugine;;[-3.018244, 47.874823];;FRFASE3300705;FRCPIE66900451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.833298;47.682369;;;; +;;;;;;;;FRS89PXKLPLJJ0NF;KHRYDG;Caden - Rue de la Mairie;;D4_Cimetiere;;[-2.686605, 48.061611];;FRFASE3300704;FRCPIE66894152;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.759406;43.814852;;;; +;;;;;;;;FRS89PTWOTKK05J9;JT0PXWXNVC;Bubry - Place de Macroom;;D130_parking_de_covoiturage;;[-3.000257, 47.848171];;FRFASE3300703;FRCPIE66894151;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.753999;44.12;;;; +;;;;;;;;FRS89PCQTIPBKW32;XTSRMR;Baud - Zone d'activites de Ty Er Douar;;Place_Pierre_Renet;;[-2.397549, 47.480774];;FRFASE3300702;FRIONE40875;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.788496;51.071259299999;;;; +;;;;;;;;FRS89PWMRHFI4HID;BOAWXOY1RL;Brech - Rue du Pont Douar;;Rue_du_clair_soleil;;[-3.322814, 47.875616];;FRTNME18B926150;FRIONE408704;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.804662;44.8856271;;;; +;;;;;;;;FRS89PFCCSV36CXN;BGFWHE;Bono - Rue Ferdinand Ardonin;;N57_Station_Avia;;[-2.285431, 47.630798];;FRCPIE66761551;FRIONE408702;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.754891;50.2733386;;;; +;;;;;;;;FRS89PVSJQ80Q6ZS;FC0CGPMFFS;Bignan - Rue comte de Lanjuinais;;Place_de_la_gare;;[-3.173147, 47.964535];;FRTNME099107870;FRIONE45455;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.768083;50.3941188;;;; +;;;;;;;;FRS89PGIM7NUC4LN;TQ4EGZPKGL;Berné - Place de la Mairie;;Impasse_du_bel_air;;[-3.01283, 47.896999];;FRS37E36329;FRIONE408701;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.755181;49.29;;;; +;;;;;;;;FRS89PNIBTKYNMO8;UPBWJL;Belz - Avenue Général de Gaulle;;9 RUE CALMETTE 69740 GENAS;;[-2.999055, 47.720345];;FRS37E10710;FRIONE101406;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.772154;44.52534544;;;; +;;;;;;;;FRS89PANJ1WIKMYP;GCCRUJ;Sarzeau - Saint Colombier;;32 RUE GILET;;[-2.948935, 47.638886];;FRS41E211305;FRIONE101405;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.788282;45.868052;;;; +;;;;;;;;FRS89PEAAJHMSG0A;PJHOAYDA3O;Saint-malo-des-trois-fontaines - Avenue Porhoët;;AVENUE DE PARIS 63200;;[-2.771008, 47.880847];;FRS41E211304;FRIONE101404;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.763805;43.7346869;;;; +;;;;;;;;FRS89PVN6VPKVCYJ;GKWHDP;Saint-marcel - Rue de la Bouie;;LA ROUQUETTE, 30560 SAINT-HILAIRE-DE-BRETHMAS;;[-3.393807, 47.995538];;FRIONE44895;FRIONE101403;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.649047;50.3450779;;;; +;;;;;;;;FRS89PXCORTW51OS;ZRTKJD;Saint-nolff - Place Saint Mayeuil;;100 AV ALEXANDRE SAOULI;;[-3.167758, 47.67557];;FRIONE448906;FRIONE101402;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.736666;45.191796;;;; +;;;;;;;;FRS89PZKTDTIRGQ6;KDDWBQ;Saint-perreux - Rue de la Mairie;;Domaine Pozzo di Mastri;;[-2.721365, 47.54681];;FRIONE448905;FRIONE101401;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.507532;48.697317;;;; +;;;;;;;;FRS89PYNELILYBTU;XRFJWF;Saint-philibert - Place de la Mairie;;2 rue des varennes 10;;[-2.47243, 48.014049];;FRIONE448904;FRIONE440707;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.570696;47.6515701;;;; +;;;;;;;;FRS89PRUSDRTRTIC;PQSUGK;Saint-pierre-quiberon - Rue Curie;;22 Rue de Vieux Berquin, 59190 Hazebrouck;;[-2.418437, 47.803188];;FRIONE448903;FRIONE44075;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.629431;48.147118;;;; +;;;;;;;;FRS89PZV712M4PDY;AVQXQB;Saint-tugdual - Route de l'Abbaye;;77370 NANGIS;;[-2.650631, 47.703143];;FRIONE448902;FRFASE3310802;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.591434;45.51;;;; +;;;;;;;;FRS89PL4SV657FSZ;VYUUWX;Sainte-anne-d'auray - Rue de Vannes;;Aire de Frontonnais Sud - Autoroute A62 - 31620 CASTELNAU-D'ESTRETEFONDS;;[-2.106252, 47.667242];;FRIONE448901;FRCPIE67142752;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.730633;43.108445;;;; +;;;;;;;;FRS89PZ2LFDV9ICD;BABXXR;Sainte-brigitte - Le Bourg;;Aire de Frontonnais Nord - Autoroute A62 - 31620 CASTELNAU-D'ESTRETEFONDS;;[-3.000351, 47.586732];;FRCPIE67299152;FRIONE454109;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.770689;46.858488;;;; +;;;;;;;;FRS89PFKDYATCML9;NKUESQ;Sarzeau - Rue Adrien Regent;;Aire de Loiret - Autoroute A19 - 45340 BEAUNE-LA-ROLANDE;;[-3.131924, 47.520606];;FRCPIE67299151;FRIONE454108;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.422678;49.1824605;;;; +;;;;;;;;FRS89PAYXSCDI0WU;SAXDEN;Sarzeau - Rue Adrien Régent (rapide);;Aire de la Scoperta - Autoroute A8 - 06320 LA TURBIE;;[-3.34054, 48.09947];;FRCPIE65310552;FRIONE454107;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.614167;45.759645;;;; +;;;;;;;;FRS89PVHOOTUNF03;XPAZYK;Ile-aux-moines - Kerscot;;1 Matiton, 33430 Bazas;;[-2.950392, 47.703906];;FRCPIE65310551;FRIONE454106;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.338526;45.91;;;; +;;;;;;;;FRS89PM2EKAJD91G;VFWKYJ;Sarzeau - Rue Père Marie Joseph Coudrin;;52 Route Nationale 80150 Le Boisle;;[-2.76105177805124, 47.5275250709627];;FRCPIE66972852;FRIONE454105;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9;48.115374;;;; +;;;;;;;;FRFR1PRQQJRQFCA0;ANWJWC;Sarzeau - Rue Raymond Marcellin - PEM;;14 Av. du Lac du Bourget, 73370 Le Bourget-du-Lac, France;;[-2.76127088823087, 47.5274203638255];;FRCPIE66972851;FRIONE454104;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5258151;50.6428226;;;; +;;;;;;;;FRS89PDX43HOHF9A;FPMRAX;Saint-jean-brévelay - Rue des Genêts;;315 Rue Athena Zone de l'Izelette, 38490 Aoste, France;;[-2.84862890173862, 47.5921152831321];;FRFASE3300801;FRIONE454103;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.568217899999;43.62;;;; +;;;;;;;;FRS89PIJ9TQ4ZQGD;NPCXMY;Inzinzac-lochrist - Rue du Blavet;;70 apeze;;[-2.769914, 47.525];;FRFASE3300802;FRIONE454102;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8505335;49.7380567;;;; +;;;;;;;;FRS89PKEFA2NCMDL;KFSCCR;Rieux - Rue de la Briqueterie;;7 Av. Gay Lussac, 33370 Artigues-près-Bordeaux;;[-2.776055, 47.522153];;FRFASE3300803;FRIONE454101;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.6032602;46.35;;;; +;;;;;;;;FRS89PHKSZNBMAIQ;RAMSWR;Rohan - Rue de Kerentree;;878 rue jules valles;;[-2.723187, 47.844376];;FRFASE3310201;FRS88E184033;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.38;43.96015;;;; +;;;;;;;;FRS89PIOUDAC89QN;AMUVUF;Roudouallec - Rue Nicolas Le Grand;;1770 Chemin du Terme 30430 Barjac;;[-3.248809, 47.827935];;FRFASE3310208;FRS88E184031;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7417018;48.9479326;;;; +;;;;;;;;FRS89PDNRVCQDURX;JO5BRM2AZJ;Ruffiac - Place de la Poste;;878 rue jules vales;;[-2.101493, 47.631023];;FRFASE3310207;FRIENE0048024;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.269016;44.5041561;;;; +;;;;;;;;FRS89PIFL3AFTDY3;VQODSEY6PD;Saint-allouestre - Parking Salle Polyvalente;;avenue du tilleul;;[-2.752332, 48.068001];;FRFASE3310206;FRIENE0048023;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.2914635;44.507331;;;; +;;;;;;;;FRS89PNHMKAMC2LI;ZO7EL7PRD6;Saint-gravé - Parking route de Saint Martin;;Avenue du Tilleul 90160 Bessoncourt;;[-3.717093, 48.126648];;FRFASE3310205;FRIENE0048012;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1188297;46.41;;;; +;;;;;;;;FRFR1PWC5UFQ7KI5;PU8TVQEFNN;Saint-barthélemy - Rue de la Poste;;805 AV du Dr Maurice Donat;;[-2.282708, 47.819758];;FRFASE3310204;FRIENE0048011;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.679598;49.0245985;;;; +;;;;;;;;FRFR1PM4QQQCYB7O;RP1ODR0UNU;Saint-dolay - Rue de Coueslan;;�8, rue Commodore JH Halley;;[-2.723772, 47.911114];;FRFASE3310203;FRCPIE67392251;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.6060341;47.59;;;; +;;;;;;;;FRFR1PWVK9HMQCCS;TFPYCFK3HI;Saint-gérand - Rue de la Croix Macé;;741 Chemin du plat;;[-2.279209, 47.725984];;FRFASE3310202;FRCPIE67142852;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8932515;43.45;;;; +;;;;;;;;FRFR1PQ0ZSMFKDDZ;ETLUKKUNU7;Saint-gildas-de-rhuys - Rue Saint Goustan;;Place de l'Eglise - 79300 ST AUBIN LE CLOUD;;[-3.04573, 47.92571];;FRCPIE66457052;FRIONE454110;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.412921;46.71109;;;; +;;;;;;;;FRFR1PL6GDDDH42A;JDUTLZQEJL;Saint-gonnery - Place Pierre Anne Beurel;;Place Denfert - 79400 ST MAIXENT L'ECOLE;;[-2.153323, 47.544915];;FRFASE3300804;FRIONE454111;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.72;44.55;;;; +;;;;;;;;FRFR1PKLLHKZ;XYOLENOBWF;Sauzon - Le Cardinal;;Place du Mirage - 79600 ST LOUP LAMAIRE;;[-2.890817, 48.107927];;FRCPIE66457051;FRIONE454112;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.630679;50.66179854122704;;;; +;;;;;;;;FRFR1POTOLZUTYPN;UVBI4ZPDJG;Vannes - Place de la République;;rue Charles Ragot - 79100 ST JEAN DE THOUARS;;[-2.833298, 47.50187];;FRCPIE66456952;FRCPIE66426051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.865277;45.74132497221715;;;; +;;;;;;;;FRFR1PRR19SMVEEU;LLIU98V8U1LGVB;Vannes - Place Générale de Gaulle;;Place de la Poste - 79210 ST HILAIRE LA PALUD;;[-2.82046, 48.12327];;FRCPIE66456951;FRCPIE66458952;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9023407;46.26;;;; +;;;;;;;;FRFR1POVFYCFMIF5;SRNTWNCMBI;Vannes - Rue Alain Gerbault;;rue de la Sèvre - 79380 ST ANDRE SUR SEVRE;;[-2.759406, 47.656324];;FRFASE3300808;FRCPIE66458951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.12813301;50.8550651;;;; +;;;;;;;;FRFR1PHIAAJ792SH;A3NZTZQNQG;Vannes - Rue Anita Conti;;Place du Président Mendès France - 79800 PAMPROUX;;[-2.753999, 47.658649];;FRFASE3300807;FRCPIE66426252;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.65;45.76;;;; +;;;;;;;;FRFR1PGKSM9JPFEJ;IMEFMD4DXW;Vannes - Rue Daniel Gilard;;6 rue Archimède - 79000 NIORT;;[-2.788496, 47.670475];;FRFASE3300806;FRCPIE66426251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.586281;45.827466656256114;;;; +;;;;;;;;FRFR1PMRITJNKUD6;LLI4EPKQ72IF9C;Vannes - Rue de Luscanen;;7 rue Archimède - 79000 NIORT;;[-2.76399, 47.63785];;FRFASE3300805;FRCPIE66426152;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1454473;51.0360565;;;; +;;;;;;;;FRFR1PVMK6UA8RNE;VUY2EBKCXJ;Vannes - Rue du Commerce;;avenue de Verdun - 79000 NIORT;;[-2.804662, 47.657587];;FRTNME099107871;FRCPIE66426151;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.94;43.7718429;;;; +;;;;;;;;FRFR1PV9EYPVI8LD;MWG2J2DVGU;Vannes - Rue Henri Matisse;;route d'Aiffres - 79000 NIORT;;[-2.754891, 47.642143];;FRIONE43775;FRCPIE66426052;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7093627;50.352955;;;; +;;;;;;;;FRFR1PTEEOXBC8Q5;EUXBWQWQXS;Vannes - Rue Jean Jaurès;;rue de Bessac - 79000 NIORT;;[-2.768083, 47.670911];;FRIONE437706;FRCPIE66425652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1653782;44.180912759319284;;;; +;;;;;;;;FRFR1PODWORPPTTT;GXUJA6EA0H;Vannes - Rue Jean Marie Bécel;;Place Colun - 79250 NUEIL LES AUBIERS;;[-2.755181, 47.650702];;FRCPIE66715852;FRIONE454113;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3932432;41.906105;;;; +;;;;;;;;FRFR1PUXPENJ0ONZ;JVRK3JQHGA;Vannes - Rue Tamara de Lempicka;;avenue Saint Hubert - 79250 NUEIL LES AUBIERS;;[-2.772154, 47.658028];;FRCPIE66715851;FRCPIE66425651;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.153194012;42.4479;;;; +;;;;;;;;FRFR1PVPUTSR;BNRBDCEV7P;Inguiniel - Place François Jaffré;;Place de la Ferté - 79800 PAMPROUX;;[-2.788282, 47.651531];;FRCPIE66761452;FRCPIE66666252;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.149585;42.77468;;;; +;;;;;;;;FRFR1PSPRJJM;AMULMNANEO;Vannes - Place de la Libération;;Place de la Mairie - 79120 ROM;;[-3.28161, 47.977818];;FRCPIE66761451;FRCPIE66666251;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.61;41.406843;;;; +;;;;;;;;FRFR1PDYCYSE;BDY183MWVK;Theix-noyalo - Rue de Treffléan;;rue de la Citadelle - 79200 PARTHENAY;;[-2.763805, 47.65884];;FRCPIE67241452;FRIONE45415;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1056502;41.40988;;;; +;;;;;;;;FRFR1PKUVQGY;TBTJI4QVE3;Sauzon - Pen Prad;;Place du Drapeau - 79200 PARTHENAY;;[-2.649047, 47.629187];;FRCPIE67241451;FRIONE454116;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.4;42.594663;;;; +;;;;;;;;FRFR1PHJWQTE;MQMBBYPLTF;Séné - Place Foresti;;Place de l'Eglise - 79100 PAS DE JEU;;[-2.736666, 47.618809];;FRFASE3304908;FRIONE454115;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.47;42.54706;;;; +;;;;;;;;FRFR1PRHVWXN;T6DFD4JXKG;Sérent - Rue Général de Kerhué;;Parking Lotissment du Clos Briant - Oiron - 79100 PLAINE ET VALLEES;;[-2.507532, 47.82212];;FRFASE3304907;FRIONE454114;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.39192;42.594581;;;; +;;;;;;;;FRFR1PYUSRPHWAJU;OAJVPG4P9J;Sulniac - 7 rue René Cassin;;Place du Monument aux Morts - St Jouin de Marnes - 79600 PLAINE ET VALLEES;;[-2.570696, 47.675299];;FRFASE3304906;FRCPIE67142851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.22;42.000249;;;; +;;;;;;;;FRFR1PBVTHHN;hamham;Surzur - Rue de la Gare;;Place de l'Eglise - 79230 PRAHECQ;;[-2.629431, 47.579263];;FRFASE3304905;FRCPIE67142751;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0697451419812665;41.89218;;;; +;;;;;;;;FRFR1PBUGQMG;58d245bb6a2bf;Trédion - Place Saint Christophe;;Place Saint Antoine - 79220 CHAMPDENIERS;;[-2.591434, 47.792627];;FRFASE3304904;FRCPIE66003751;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1596264000000005;41.707589;;;; +;;;;;;;;FRFR1PHPYME0H9MH;ZSEFWZ;Vannes - Avenue Général Délestraint;;13 route de Thouars - 79200 CHATILLON SUR THOUET;;[-2.730633, 47.658564];;FRFASE3304903;FRCPIE67072151;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.59;41.924136;;;; +;;;;;;;;FRFR1PRB9CFF9JHS;cagnybarbusse;Vannes - Avenue Winston Churchill;;rue de la Reine des Près - 79460 MAGNE;;[-2.770689, 47.645533];;FRFASE3304902;FRTNME089127290;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9824881;42.637722;;;; +;;;;;;;;FRFR1PWHQ8FILD6X;BPJAZA;Vannes - Avenue Maréchal Juin Maréchal de France;;Place de la Mairie - 79380 LA FORET SUR SEVRE;;[-2.78023, 47.632566];;FRFASE3304901;FRTNME089127280;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.13;42.334186;;;; +;;;;;;;;FRFR1PFNEF1NNCUJ;hornoydufour;Val d'oust - Place de l'église;;Place des Marronniers - 79200 LA PEYRATTE;;[-2.422678, 47.866851];;FRCPIE67240552;FRTNME089126920;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.094773232378359;41.721265;;;; +;;;;;;;;FRFR1PZZACWFQHTL;BXBPRQ;Treffléan - Rue du Dévehat;;Place du 14 Juillet 1836 - 79240 L'ABSIE;;[-2.614167, 47.682369];;FRCPIE67240551;FRTNMETERRA540111;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4046961;42.628813;;;; +;;;;;;;;FRFR1PQP7WQ717RY;UVJGEM;Mazda - Nîmes - 22kW AC;;route de la Liberté - 79200 LAGEON;;[4.338526, 43.814852];;FRCPIE66716851;FRTNMETERRA540110;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.2012429;41.934884;;;; +;;;;;;;;FRFR1PPGPGPUMXHP;58d2452cb39d7;GARAGE LAROSA;;Place du Champ de Foire -79120 LEZAY;;[4.90,44.12];;FRCPIE66716852;FRTNMETERRA540101;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.592142;42.238424;;;; +;;;;;;;;FRFR1POMPQB904LG;airaines53e;MAIRIE DE BRAY DUNES;;rue de l'Aquitaine - Les Maisons Blanches - 79190 LIMALONGES;;[2.5258151, 51.071259299999];;FRCPIE66716951;FRTNMETERRA540100;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.6233490421436728;42.167298;;;; +;;;;;;;;FRFR1PMECXL47JEY;PMHGVH;SAS CIGIMMO;;rue du Stade - 79100 LOUZY;;[-0.568217899999, 44.8856271];;FRS37E1340;FRS18E184331;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.668901;42.401596;;;; +;;;;;;;;FRFR1PWBBEFNGEV0;NUHCFA;SARL GRARE;;rue de la Fontaine Noire - 79700 MAULEON;;[2.8505335, 50.2733386];;FRIONE437705;FRS18E184330;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.506677;41.672692;;;; +;;;;;;;;FRFR1PVYVHYG;harbonnieres;3MI;;Route de Poitiers - 79390 LA FERRIERE EN PARTHENAY;;[3.6032602, 50.3941188];;FRIONE437704;FRS28E130809;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.473992;42.103312;;;; +;;;;;;;;FRFR1PHXUBZE62BL;ftmahontouris;BORNE SECURITEST, DOUVRES LA DELIVRANDE;;38 route de Poitiers - 79700 MAULEON;;[-0.38,49.29];;FRIONE437703;FRS28E127482;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.211675;42.508404;;;; +;;;;;;;;FRFR1PRHM6D0U5CK;BHCEYP;Mazda - Montelimar- 22KW AC;;Place des Marronniers - 79310 MAZIERES EN GATINE;;[4.7417018, 44.52534544];;FRIONE437702;FRS28E127481;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.124327;42.673079;;;; +;;;;;;;;FRFR1PQ0BSVGD4TL;molliensdreuil;Mazda - Limoges - 22kW AC;;27 route de Saintes - 79500 MELLE;;[1.269016, 45.868052];;FRIONE437701;FRS41E4751;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.437093;42.60074;;;; +;;;;;;;;FRFR1PKN5TJGPS90;DFJTTX;NOVAFFAIRES;;Place de la Mairie - 79500 MELLE;;[7.2914635, 43.7346869];;FRS37E1342;FRS41E4750;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.479663;42.466325;;;; +;;;;;;;;FRFR1PPPXUSFEVQZ;BPQRSK;CUISINES SCHMIDT;;Place Bujault - 79500 MELLE;;[3.1188297, 50.3450779];;FRS37E1341;FRS18E178310;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.437152;42.964422;;;; +;;;;;;;;FRFR1PJRNPEZU7Q6;ruebeffroi;Mazda - Grenoble (Fontaine) Gauche - 22kW;;rue Saint Pierre - 79500 MELLE;;[5.679598, 45.191796];;FRS37E1339;FRS18E178309;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.046333;41.877695;;;; +;;;;;;;;FRFR1PLLSVKH;lecrotoyvadic;Mazda - Grenoble (Fontaine) Droite- 22kW;;Place de Strasbourg - 79500 MELLE;;[2.6060341, 48.697317];;FRCPIE66716952;FRCPIE66003752;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.805342;42.301834;;;; +;;;;;;;;FRFR1PZDKGZT;ZZMXAN;Mazda - Brie Comte Robert - 22KW AC;;rue de la Marne - 79400 ST MAIXENT L'ECOLE;;[6.8932515, 47.6515701];;FRS37E1349;FRTNME089127300;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.793688;42.568969;;;; +;;;;;;;;FRFR1PDFCD7VBOXJ;58cab98e76bd3;Mazda - Belfort Denney - 22kW AC;;route de Lezay - 79190 CLUSSAIS LA POMMERAIE;;[-0.412921, 48.147118];;FRS37E1337;FRTNME089127310;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.389963;41.390111;;;; +;;;;;;;;FRFR1PYDXANV;XPBHMS;SuperU - Evron - 7.4kW;;rue Pierre-Gilles de Gennes - 79200 CHATILLON SUR THOUET;;[5.72,45.51];;FRIONE40215;FRTNME089127880;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.021637;41.60608;;;; +;;;;;;;;FRFR1PJDWNMZ;P9ZRAMGL0G;Borne-Garage-Rossi;;rue du Vieux Four - 79180 CHAURAY;;[1.630679, 43.108445];;FRIONE402104;FRIENE0034024;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.008317;41.606221;;;; +;;;;;;;;FRFR1PJBANTOHEUX;SG4BBYR1FY;KIA - Village Auto (Pamiers) - 22kW AC;;Place Cail - 79110 CHEF-BOUTONNE;;[-1.865277, 46.858488];;FRIONE402103;FRCPIE66664452;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.148236;41.606329;;;; +;;;;;;;;FRFR1PWBGP5SFP0C;PUMXEJQLLD;KIA - Village Auto (Pamiers) - 24 kW DC;;avenue du Président Kennedy - 79110 CHEF-BOUTONNE;;[3.9023407, 49.1824605];;FRIONE402102;FRCPIE66664451;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.467278;41.60646;;;; +;;;;;;;;FRFR1PSSWRWK;ZXIBYMRXBH;Bricomarché - Challans - 22kW AC;;Place Saint Martin - 79300 CHICHE;;[-1.12813301, 45.759645];;FRIONE402101;FRIONE41695;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.154738;41.60664;;;; +;;;;;;;;FRFR1PPWR6BZZQGG;UMSFRRANOQ;Mazda - Reims - 22KW AC;;Rte de Clessé - 79300 CHICHE;;[6.65,45.91];;FRS41E2951;FRIONE416905;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.636855;42.009528;;;; +;;;;;;;;FRFR1PVY4NRBJE2L;OCRUUMPHSX;Intermarché - La Tremblade - 22kW AC;;Aire de l'Autremont - 79510 COULON;;[-1.586281, 48.115374];;FRS55E122901;FRIONE416904;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.801244;42.130362;;;; +;;;;;;;;FRFR1PBOYXK5TOYQ;D4GOUTGVDY;Favret Automobiles;;Avenue de Paris - 79260 LA CRECHE;;[3.1454473, 50.6428226];;FRS28E175635;FRIONE416903;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.697524;41.64414;;;; +;;;;;;;;FRFR1PLVMPNLAYFU;stvalerysomme;Mazda - Rennes - 22kW AC;;Place des Halles - 79160 COULONGES SUR L'AUTIZE;;[3.35,43.62];;FRCPIE67585252;FRIONE416902;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.918164;42.252954;;;; +;;;;;;;;FRFR1PZJREN2NZLF;ALEJNTJITP;RESTAURANT L'OFFICE;;Place de la Solidarité - 79440 COURLAY;;[4.94,44.01];;FRIENE0059023;FRIENE0034023;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.212628;41.928461;;;; +;;;;;;;;FRFR1PUZHVKOIULL;QEKHJI0HSD;AUBERGE DE VAL MOUREZE;;Parking Côte de Chaillot - 79410 ECHIRE;;[4.7093627, 49.7380567];;FRIENE0059024;FRTNME089127890;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.855216;41.697254;;;; +;;;;;;;;FRFR1PLJRZ79TYYV;KB1PIN41BH;HOTEL DU PARC AVIGNON EST;;rue de la Fontaine - 79350 FAYE L'ABBESSE;;[6.44,46.35];;FRS28E127147;FRIENE0034012;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.30191;41.907975;;;; +;;;;;;;;FRFR1PVMQABZ1RXS;IKISQUTAT2;BMW CHARLEVILLE MEZIERES;;Place de la Mairie - 79330 GEAY;;[2.1653782, 43.96015];;FRCPIE66966851;FRIENE0034011;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.35969;41.916807;;;; +;;;;;;;;FRFR1PVZTNJWZFYA;EGZJSX;HYUNDAI LESCURE ALBIGEOIS;;Parking de la Gare - 79260 LA CRECHE;;[4.3932432, 48.9479326];;FRCPIE66966852;FRIONE43195;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.20858;41.932975;;;; +;;;;;;;;FRFR1PGDX3BISWCW;D1TG2DDEOE;BPW CHALONS EN CHAMPAGNE;;Place de la Poste - 79500 MELLE;;[0.153194012,44.50415610];;FRCPIE66966951;FRIONE431902;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.348162;41.943433;;;; +;;;;;;;;FRFR1PGZ4Z5QIFE5;PVJDXV;BMW Marmande;;Place de l'Hôtel de Ville - 79360 BEAUVOIR SUR NIORT;;[0.149585, 44.507331];;FRCPIE66966952;FRIONE431901;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.786427;41.927716;;;; +;;;;;;;;FRFR1PO3RJPKY0UW;MPGGBH;FORD - MARMANDE 22 kW;;92 rte de Riparfond - 79300 BRESSUIRE;;[2.61,46.41];;FRCPIE66967051;FRTNME099113550;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.157313;42.957671;;;; +;;;;;;;;FRFR1PT4PZWNFZBA;58aec90fe0c22;JARDIN DELICE;;27 Boulevard du Colonel Aubry - 79300 BRESSUIRE;;[2.1056502, 49.0245985];;FRCPIE66967052;FRTNME089127900;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.757366;42.169635;;;; +;;;;;;;;FRFR1PQROFJYHMEM;58c7c56db5ce3;Toyota - Cergy Eragny (GCA) - 22kW AC;;Place Saint Jacques - 79300 BRESSUIRE;;[-2.40,47.59];;FRCPIE66967651;FRFASE3310803;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.16492;42.568042;;;; +;;;;;;;;FRFR1PKXNJAH;PGVTTD;BRANFERE, LE GUERNO;;Zone commerciale Pont d'Ouit - 79300 BRESSUIRE;;[6.47,43.45];;FRCPIE66967652;FRFASE3310801;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.277777;42.554473;;;; +;;;;;;;;FRFR1PCNKANW;MJEMLB;Borne 2;;Espace Bocapôle - 79300 BRESSUIRE;;[4.39192, 46.71109];;FRCPIE66082051;FRS18E117188;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.277811;42.554579;;;; +;;;;;;;;FRFR1PMNPCFQ7OXG;XWTTNG;Borne 1;;Place de la Liberté - 79300 BOISME;;[2.22,44.55];;FRCPIE66082052;FRSHEE1763;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.277841;42.550419;;;; +;;;;;;;;FRFR1PD7WPB3XQ6G;GUCKJF;hager;;rue Pierre Mendès France - 79000 BESSINES;;[3.0697451419812665, 50.66179854122704];;FRCPIE67353851;FRSHEE1572;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.277871;42.017286;;;; +;;;;;;;;FRFR1PYDZTIADNZR;YPGAPL;VIVIEZ;;Impasse des Acacias - 79360 BEAUVOIR SUR NIORT;;[3.1596264000000005, 45.74132497221715];;FRCPIE67353852;FRSHEE1573;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.277918;42.30688;;;; +;;;;;;;;FRFR1PNJQYCSS9YJ;TBRBZZ;SUPER U La Madeleine;;Plaine d'Azia - 79400 AZAY LE BRULE;;[2.59,46.26];;FRCPIE67358551;FRSHEE1581;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.865745;42.543506;;;; +;;;;;;;;FRFR1PJ0GFGGCJEV;DJGFUS;SR-Triangle;;rue Saint Cybard - 79110 AUBIGNE;;[1.9824881, 50.8550651];;FRCPIE67358552;FRSHEE1582;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.705408;41.645189;;;; +;;;;;;;;FRFR1PN41JBEJUX0;XRQKGG;Saint-Genest;;Av du Général de Gaulle - Argenton les Vallées - 79150 ARGENTONNAY;;[3.13,45.76];;FRIENE0059012;FRSHEE1583;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.9579;41.645788;;;; +;;;;;;;;FRFR1PYA46XKXKNV;DLEYBP;BPH GEOMETRE;;rue Alphonse Lavoix - 79160 ARDIN;;[-1.094773232378359, 45.827466656256114];;FRIENE0059011;FRCPIE66643351;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.795516;41.645732;;;; +;;;;;;;;FRFR1PHAFZJ5OASW;doullenspisci;Cuisines AvivA Clermont-Ferrand;;7 allée Madeline Brès - 79600 AIRVAULT;;[2.4046961, 51.0360565];;FRS41E4724;FRCPIE66643352;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.764996;42.636601;;;; +;;;;;;;;FRFR1PYFZ4RGRHQW;BTSJDPSCWJ;Intermarché - Marennes - 22kW AC;;6 allée Madeline Brès - 79600 AIRVAULT;;[7.2012429,43.7718429];;FRCPIE65098051;FRCPIE66643451;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.346448;42.635771;;;; +;;;;;;;;FRFR1PY5T0WNKPDM;NUUUFQ;CARROSSERIE DEMARTHE;;Place du Cygne - 79600 AIRVAULT;;[2.592142, 50.352955];;FRIONE408405;FRCPIE66643452;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.679228;42.637674;;;; +;;;;;;;;FRFR1PDP3PB1WVYW;HUDFPP;Lou Castelet Appart'hotel;;Place René Cassin - 79230 AIFFRES;;[0.6233490421436728, 44.180912759319284];;FRIONE408406;FRIENE0051011;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.725979;42.227227;;;; +;;;;;;;;FRFR1PACHEMHFYWZ;QGBZJG;AUBIGNY EN ARTOIS;;Boulevard Foch - 79300 BRESSUIRE;;[8.668901,41.906105];;FRIONE40845;FRIENE0051012;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.740676;41.686208;;;; +;;;;;;;;FRFR1PVOQCWRZDSV;JGPERV;FORD AGEN EXT;;rue des Rosiers - St Sauveur - 79300 BRESSUIRE;;[9.506677,42.447900];;FRCPIE66302851;FRIENE0051023;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.753212;41.699134;;;; +;;;;;;;;FRFR1PR5KNPQNHQ2;stvalperree;Ajaccio-Hotel-Cala-Di-Sole;;Lotissement le Pérot - St Martin les Melles - 79500 MELLE;;[9.473992,42.774680];;FRCPIE66302852;FRIENE0051024;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.740141;42.405317;;;; +;;;;;;;;FRFR1PZEG82YBLHG;DXDFXN;Folelli;;Lotissement le P‚rot - St Martin les Melles - 79500 MELLE;;[9.211675,41.406843];;FRCPIE67556451;FRSHEE1741;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.455771;42.301326;;;; +;;;;;;;;FRFR1PRRQIJKR9TI;HLQJWN;Brando-Mairie;;rue des Vignes - 79340 MENIGOUTE;;[9.124327,41.409880];;FRCPIE67556452;FRSHEE1742;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.165863;41.712381;;;; +;;;;;;;;FRFR1PE0ZXMGMWDE;SEFWCP;Bonifacio-Casarina;;Place de l'Hôtel de Ville - 79320 MONCOUTANT SUR SEVRE;;[9.437093,42.594663];;FRS28E134213;FRSHEE1743;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.7585;41.621902;;;; +;;;;;;;;FRFR1PUTK8EYPJQ7;moreuilmalter;Bonifacio-A-Santa-Trinita;;336 avenue de Paris - 79000 NIORT;;[9.479663,42.547060];;FRS41E4723;FRSHEE1761;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.762181;41.621461;;;; +;;;;;;;;FRFR1PCXWV1XDUHI;YHMTEU;Biguglia-Hotel-Mercure;;103 avenue de la Venise Verte - 79000 NIORT;;[9.437152,42.594581];;FRS28E128898;FRSHEE1571;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.762064;41.570971;;;; +;;;;;;;;FRFR1PAGJL7CMQDC;EYMSLB;Lucciana;;Rue des Près Faucher - 79000 NIORT;;[9.046333,42.000249];;FRS88E162331;FRCPIE65537552;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.440808;42.121415;;;; +;;;;;;;;FRFR1PRDGTHWLARG;AWXSQD;Bastelica-Hotel-Artemisia;;Place des Capucins - 79000 NIORT;;[8.805342,41.892180];;FRS88E162333;FRCPIE65537551;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.406403;41.680914;;;; +;;;;;;;;FRFR1PNLZDH1ZLAJ;YGXHDL;Grossetto Prugna;;Place Chanzy - 79000 NIORT;;[8.793688,41.707589];;FRS28E139069;FRCPIE66411151;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.148584;41.623434;;;; +;;;;;;;;FRFR1PXNM9MXUP5F;KQJTGP;Porto Pollo;;Avenue Charles Darwin - 79000 NIORT;;[9.389963,41.924136];;FRCPIE67573251;FRIONE401801;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.757215;41.580418;;;; +;;;;;;;;FRFR1PRBZ1ZLYPLQ;doullensgoret;Solenzara;;Place Jean Monnet - 79140 CERIZAY;;[9.021637,42.637722];;FRCPIE67573252;FRIONE401802;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.333253;41.612182;;;; +;;;;;;;;FRFR1PRVEHPJBOQM;ZCLHFY;Lozari;;route de Saumur - 79100 BRION PRES THOUET;;[9.008317,42.334186];;FRS28E139436;FRIONE401803;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.868565;41.599686;;;; +;;;;;;;;FRFR1PIMLPHRRBEG;rueverdun;Calacuccia;;rue de Palveau - St Sauveur - 79300 BRESSUIRE;;[9.148236,41.721265];;FRCPIE67585251;FRIONE401804;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.868415;41.591126;;;; +;;;;;;;;FRFR1PY2JPVALCYB;GDZSRJ;San Gavino di Carbini;;Zone du Poirier - 79310 ST PARDOUX-SOUTIERS;;[9.467278,42.628813];;FRCPIE66967351;FRIONE40185;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.936156;41.593491;;;; +;;;;;;;;FRFR1PG5SA8D9JDH;58d24440e77bf;La Marana;;RD 740 - Bouin - 79110 VALDELAUME;;[9.154738,41.934884];;FRIONE408403;FRS37E1279;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.938499;41.565514;;;; +;;;;;;;;FRFR1PLIKFVHWT88;GPZAXD;Cozzano;;rue du Docteur George Fourré - 79100 THOUARS;;[8.636855,42.238424];;FRCPIE66967352;FRS37E1280;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.934076;41.620129;;;; +;;;;;;;;FRFR1PSVN7SXCAR1;VSJVFY;Piana;;Place de la Mairie - Mauzé-Thouarsais - 79100 THOUARS;;[8.801244,42.167298];;FRIONE438805;FRCPIE66411152;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.176994;42.253555;;;; +;;;;;;;;FRFR1PP5FSDYQORG;Miraumonmair;Vico;;2 rue du Général Lescure - Ste Radegonde - 79100 THOUARS;;[8.697524,42.401596];;FRIONE438806;FRCPIE65537352;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.367982;41.893857;;;; +;;;;;;;;FRFR1PKNICVTLTDG;VYEBQY;Galeria;;3 rue du Général Lescure - Ste Radegonde - 79100 THOUARS;;[8.918164,41.672692];;FRS55E66230;FRIENE0097011;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.394812;42.908693;;;; +;;;;;;;;FRFR1PM4NFTGGIIT;ZAWGJI2HTH;Propriano;;rue du Lac - Ste Radegonde - 79100 THOUARS;;[9.212628,42.103312];;FRS55E66231;FRIENE0097012;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.535097;41.666035;;;; +;;;;;;;;FRFR1PEKHSALDPCE;vesoul2;Ghisoni;;Place de la Mairie - Cersay - 79290 VAL EN VIGNES;;[8.855216,42.508404];;FRCPIE66721451;FRIENE0097023;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.709331;42.465956;;;; +;;;;;;;;FRFR1PESLPQIB7IA;Vesoulhaberges;Calenzana;;rue de la Trémoïlle - 79100 THOUARS;;[9.301910,42.673079];;FRCPIE66721452;FRIENE0097024;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.803926;42.550769;;;; +;;;;;;;;FRFR1PFJFZXU8ENZ;PYZKRX;Saint Florent;;Place du 25 Aout - 79340 VASLES;;[9.359690,42.600740];;FRS88E177158;FRS51E53917;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.963848;41.678688;;;; +;;;;;;;;FRFR1PZV5TCKN6XS;K5HNSQ9L6I;Olmeto di Tuda;;rte de l'Etang - 79310 VERRUYES;;[9.208580,42.466325];;FRS88E177160;FRS51E53918;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.964013;42.96541;;;; +;;;;;;;;FRFR1PFD7OZRUY0H;Vesoulmeillier;Ponte leccia;;Zoodyssée - 79360 VILLIERS EN BOIS;;[9.348162,42.964422];;FRS37E1213;FRCPIE65537351;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.95273;41.999154;;;; +;;;;;;;;FRFR1PGL2UG1CLGJ;TPLBGP;Centuri;;rue du Commerce - 79160 VILLIERS EN PLAINE;;[8.786427,41.877695];;FRS37E1334;FRSHEE1762;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.905017;42.168536;;;; +;;;;;;;;FRFR1PHZABK7HN5Y;Champagneyren;Porticcio-Hotel-Le-Maquis;;Place Saint Laon - 79100 THOUARS;;[9.157313,42.301834];;FRFASE3302201;FRSHEE251;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.915746;41.894111;;;; +;;;;;;;;FRFR1PBDJU4LBRSL;vesoul1;Corté;;43 Treille Bourgeau - 79190 SAUZE VAUSSAIS;;[8.757366,42.568969];;FRFASE3302202;FRIONE432605;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.300121;42.225865;;;; +;;;;;;;;FRFR1PIC5M8LGAEP;Hericourtbro;Calvi-Hotel-Saint-Christophe;;Place Saint Hubert - 79700 ST PIERRE DES ECHAUBROGNES;;[9.164920,41.390111];;FRFASE3302203;FRSHEE252;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.254713;42.225964;;;; +;;;;;;;;FRFR1PLKLAPAGPNF;WTQUNF;Bonifacio;;Parking Salle Polyvalente - 79410 ST REMY;;[9.277777,41.606080];;FRFASE3302204;FRS51E44730;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.279842;42.476445;;;; +;;;;;;;;FRFR1PU752AH0SVL;stloupmairie;porto vecchio;;Place du Champ de Foire - 79500 ST ROMAN LES MELLES;;[9.277811,41.606221];;FRS28E130145;FRS51E44731;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.28433;42.550499;;;; +;;;;;;;;FRFR1PHLGRFIGUUE;VesoulGerlingen;Peri;;Place du 14 Juillet - 79330 ST VARENT;;[9.277841,41.606329];;FRIONE413701;FRS28E137362;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.276693;42.528147;;;; +;;;;;;;;FRFR1PJSFZN0RULV;Hericourteurop;Sartene;;Place de l'Hôtel de Ville - 79130 SECONDIGNY;;[9.277871,41.606460];;FRIONE413702;FRS28E134756;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.27674;42.548657;;;; +;;;;;;;;FRFR1PYZIPETWE26;villersexel;Evisa;;Place de l'Hôtel de Ville - 79390 THENEZAY;;[9.277918,41.606640];;FRIONE438804;FRIENE0095011;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.326701;42.897789;;;; +;;;;;;;;FRFR1PSJOBQ9REOE;VNXAGJ;Ajaccio;;Place Lavault - 79100 THOUARS;;[8.865745,42.009528];;FRIONE438803;FRIENE0095012;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.300442;41.698015;;;; +;;;;;;;;FRFR1PPZKSGTHL8A;saulxgdspuits;Sainte Lucie de Porto vecchio;;Boulevard de Diepholz - 79100 THOUARS;;[8.705408,42.130362];;FRIONE438802;FRIENE0095023;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.721916;42.741337;;;; +;;;;;;;;FRFR1PGID9KTPSHB;Graymavia;Rogliano;;2 ROUTE DE COLMAR - 68150 OSTHEIM;;[8.957900,41.644140];;FRIENE0060012;FRIENE0095024;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.806314;42.469061;;;; +;;;;;;;;FRFR1PXVUPAYBDCJ;Fresnecarrefour;Vivario;;7 AVENUE FREDERIC FABREGE - 34250 PALAVAS LES FLOTS;;[8.795516,42.252954];;FRCPIE66967451;FRS28E126231;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.351695;42.632429;;;; +;;;;;;;;FRFR1PDRECSOIEMU;Planchermarcel;Calvi;;Theix-Noyalo 56450;;[8.764996,41.928461];;FRCPIE66967452;FRIENE35353A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.37966;42.629787;;;; +;;;;;;;;FRFR1PZ4TQI4RHCG;lureinter;Borgo;;87, ROUTE D'AVESNES 59600 MAUBEUGE;;[9.346448,41.697254];;FRCPIE66967551;FRIENE35353A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.458543;42.363212;;;; +;;;;;;;;FRFR1PJGHSSGGSHZ;Combeau15juin;Ghisonaccia;;Route de Générac;;[8.679228,41.907975];;FRCPIE66967552;FRIENE35353A3;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.465466;42.38426;;;; +;;;;;;;;FRFR1PQSGXNY9IT7;vesoulfaure;Calvi-Hotel-Corsica;;185 Boulevard Du Docteur Jules Pouget 62520, Le Touquet-Paris-Plage France;;[8.725979,41.916807];;FRCPIE66997951;FRIENE35353A4;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.146628;42.614509;;;; +;;;;;;;;FRFR1PQGXXGHMZW9;NWMJTK;Lecci-Agula-Mora;;Place Edouard Vii 62520, Le Touquet-Paris-Plage France;;[8.740676,41.932975];;FRCPIE66997952;FRIENE35353A5;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.350708;41.688053;;;; +;;;;;;;;FRFR1PAHQ9T8GJQL;gray;Campomoro-U-Livanti-;;Digue-promenade des Princes de Monaco 62520, Le Touquet-Paris-Plage France;;[8.753212,41.943433];;FRIENE0060011;FRS28E137353;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.435675;41.703089;;;; +;;;;;;;;FRFR1PFRILS7BK9O;PATTYH;ile-Rousse-Hotel-Rocabella;;Avenue De Quentovic 62520, Le Touquet-Paris-Plage France;;[8.740141,41.927716];;FRIENE0060023;FRS28E178731;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.949884;41.703037;;;; +;;;;;;;;FRFR1PFBVCG0WKZP;EYOQWAPMBZ;ile-Rousse-Hotel-Escale-Sud;;Avenue De L'hippodrome 62520, Le Touquet-Paris-Plage France;;[9.455771,42.957671];;FRIONE438801;FRS18E117187;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.807748;41.697897;;;; +;;;;;;;;FRFR1PJGRRPW;QI8FOZJERH;ile-Rousse-Hotel-Escale-Port;;34, avenue Draïo de la Mar 13620 Carry-le-Rouet;;[9.165863,42.169635];;FRIENE0060024;FRIENE0084024;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.548939;42.809196;;;; +;;;;;;;;FRFR1PZCPHMP;DORRYWA2NF;Venaco-Hotel-U-Frascone;;2 Rue des Varennes 10140 Vendeuvre-sur-Barse;;[8.758500,42.568042];;FRS88E177098;FRIENE0084023;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.548778;42.655748;;;; +;;;;;;;;FRFR1PRRFQQ84JRE;SL7L7X7UFK;Ste-Lucie-Tallano-Mairie;;8 rue des vignes 104;;[8.762181,42.554473];;FRS88E177100;FRIENE0084012;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.428504;48.91828;;;; +;;;;;;;;FRFR1PSHXYLZ;CMIXYEGR9U;Ste-Lucie-Porto-Vecchio-Hotel-U-Paesolu;;8 rue des Vignes 104;;[8.762064,42.554579];;FRCPIE66852051;FRS51E44685;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.446608;41.5372318;;;; +;;;;;;;;FRFR1PKHYFHA;RQEQVHLYFO;Ste-Lucie-Porto-Vecchio-Hotel-Residence-Olmuccio;;8 Rue des Vignes 10410 Villechétif;;[9.440808,42.550419];;FRCPIE66852052;FRS37E60636;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.442201;45.7115857;;;; +;;;;;;;;FRFR1PHNRRDP5IDY;YVHJEWG2DD;Poggio-Mezzana-Scopa-Marina;;6 rue paul eluard 25000 Besançon;;[9.406403,42.017286];;FRN54E187685;FRS37E60637;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.53063;44.125333499688494;;;; +;;;;;;;;FRFR1PCPLHFQ;Gymairie;Serriera-Mairie;;13 Av. Ampère, 78180 Montigny-le-Bretonneux;;[9.148584,42.306880];;FRN54E187686;FRCPIE67080451;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.408167;44.04578;;;; +;;;;;;;;FRFR1PTJPREQ;hericourtbere;Serra-di-Ferro-Terrasses-Du-Grand-Large;;41-41B, N10, 78310 Coignières;;[8.757215,42.543506];;FRIONE408404;FRCPIE67080452;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.896456;45.70419;;;; +;;;;;;;;FRFR1PYKR9MTGPDS;Luxeuilmai;Sartene-Hotel-Rossi;;RUE GISEL DE FROIL;;[9.333253,41.645189];;FRCPIE67111852;FRCPIE64736551;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.456341;43.98066;;;; +;;;;;;;;FRFR1PT7R6DBLAOK;MK1AHL8ZA7;Sartene-Hotel-Fior-Di-Ribba;;ROUTE PINARELLO MANGIAGLIA - 20144 ZONZA;;[8.868565,41.645788];;FRIONE413704;FRS51E44684;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.389505;43.67179371848097;;;; +;;;;;;;;FRFR1PR3WPD3XTW8;meliseygare;Sartene-Auberge-U-Sirenu;;Avenue de la Millardière St Sylvain d'Anjou 49480 SAINT-SYLVAIN-D'ANJOU;;[8.868415,41.645732];;FRS88E159237;FRS51E44705;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.961906;42.73825410000001;;;; +;;;;;;;;FRFR1PK8ATR4NEVO;TIVE2CNYCX;Salice-Mairie;;Allée andré marie;;[8.936156,42.636601];;FRCPIE67087651;FRIENE0084011;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.954898;43.11350701;;;; +;;;;;;;;FRFR1PM8NQCQQXMD;MYYLOA44OQ;Propriano-Hotel-Roc-e-Mare;;8 Rue Nelson Mandela 60600 Fitz-James;;[8.938499,42.635771];;FRCPIE67087652;FRS51E44706;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.529622;48.685055;;;; +;;;;;;;;FRFR1PLLKCK1HUA2A3KS;TPWWYVYVMM;Porto-Vecchio-Restaurant-l-Alivi;;8 Rue Nelson Mandela, 60600 Fitz-James, France;;[8.934076,42.637674];;FRCPIE67087851;FRIENE0064011;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.531038;46.27048;;;; +;;;;;;;;FRFR1PMD5OPC7NA3;F9HUXNS8SF;Porto-Vecchio-Hotel-San-Giovanni;;Les Bauches;;[9.176994,42.227227];;FRCPIE67087852;FRIENE0064012;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.350042;46.39088;;;; +;;;;;;;;FRFR1PG8PCTKKS0J;XFMCZX;Porto-Vecchio-Hotel-Le-Roi-Theodore;;2 Mnt de Pissa Lèbre;;[9.367982,41.686208];;FRS28E141761;FRIENE0064023;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.930927;46.84099;;;; +;;;;;;;;FRFR1PV8YS06G7V9;XPV9T9CG13;Porto-Vecchio-Hotel-Don-Cesar;;Village Pierre & Vacances Villages Les Restanques du Golfe de St-Tropez;;[9.394812,41.699134];;FRS18E112319;FRIENE0064024;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.835956;46.50859;;;; +;;;;;;;;FRFR1PYUEYTG;KG7R2ZWEFC;Porto-Vecchio-Hotel-Citta-Di-Lume;;36 Av. d'Espagne;;[9.535097,42.405317];;FRS18E112320;FRS51E44708;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.835726;46.73847;;;; +;;;;;;;;FRFR1PJNGVSR6RI1;ESPSCBXVJ3;Porto-Vecchio-Hotel-Best-Western-Alcyon;;432 Rue des Valets;;[8.709331,42.301326];;FRCPIE66433851;FRS51E44711;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.896435;46.11511;;;; +;;;;;;;;FRFR1PNKCESQ;L6FBP3FUUF;Porto-Vecchio-Hotel-Bergeries-Palombaggia;;829 Av. Majoral Jouve;;[8.803926,41.712381];;FRCPIE66433852;FRIONE43265;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.483918;46.6104;;;; +;;;;;;;;FRFR1PV99LMKPLKF;TDNK46PZBA;Porto-Vecchio-Campo-Di-Mare;;3 Av. du Brugeaud;;[8.963848,41.621902];;FRS88E161611;FRIONE432604;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.440757;46.48322;;;; +;;;;;;;;FRFR1PLRK1CDAXWF;Lomagnehopi;Porto-Ota-Camping-Funtana-A-l-Ora;;12 Av. du 8 Mai 1945;;[8.964013,41.621461];;FRS88E161613;FRIENE0096024;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.38071;47.07127;;;; +;;;;;;;;FRFR1PRIQRNFFR14;WPBREMU4YX;Porticcio-Hotel-Marina-Viva;;La Chadenede;;[8.952730,41.570971];;FRS18E181993;FRS51E43637;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.2747532;46.66113;;;; +;;;;;;;;FRFR1PEMNND9MFE7;QFLQSK;Pino-Mairie;;Camping Domaine De Lascaux;;[8.905017,42.121415];;FRS18E181994;FRS51E50488;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.609770199999;46.81861;;;; +;;;;;;;;FRFR1PNSJKPAECMT;pesmemarche;Pinarellu-Camping-California;;113 Rte de Narbonne;;[8.915746,41.680914];;FRCPIE66438151;FRS51E50489;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.079235881798033;46.2589;;;; +;;;;;;;;FRFR1PVM4NTLS3KB;FroteyLesVesl;Penta-Di-Casinca-Mairie;;151 Av. de la Grande Côte, 17420 Saint-Palais-sur-Mer;;[9.300121,41.623434];;FRCPIE66438152;FRIONE439101;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.02472;46.1429;;;; +;;;;;;;;FRFR1PLMRYSD3DHR;marnaychauff;Lucciana-Hotel-Poretta;;35 Rue de Gampaloud 38150 Salaise-sur-Sanne;;[9.254713,41.580418];;FRS18E186370;FRIONE439102;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9778;46.59822;;;; +;;;;;;;;FRFR1PWEWO1M3ZLV;dampiermairie;Carbini-Mairie;;GARAGE FORD LE VERN 12400 Saint-Affrique;;[9.279842,41.612182];;FRS18E186371;FRIONE439103;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8865;46.36157;;;; +;;;;;;;;FRFR1PYVRXBIGBK0;Faucogneymer;Centuri-Hotel-Le-Vieux-Moulin;;2, rue des P�res Camilliens � 94366 Bry-sur-Marne Cedex;;[9.284330,41.599686];;FRS18E204012;FRIONE439104;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.143857839450771;46.68164;;;; +;;;;;;;;FRFR1PMR6MQ1MPFP;Faverneydruais;Ghisonaccia-Camping-U-Casone;;10 RUE JACQUES MAILHOT;;[9.276693,41.591126];;FRS18E204011;FRIONE439105;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.4605483;46.42595;;;; +;;;;;;;;FRFR1PTMZQBK19CJ;vaivretmonto;Guagno-Mairie;;04300 Forcalquier;;[9.276740,41.593491];;FRCPIE67345952;FRIONE439106;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.85870711;46.50886;;;; +;;;;;;;;FRFR1PZ2JIPWRRFU;VRUSJX;Linguizzetta-Camping-Corsica-Natura-;;ZAC La Vallée, Rue de la Chau. Romaine, 02100 Saint-Quentin;;[9.326701,41.565514];;FRS18E186354;FRIONE43915;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.369951;46.73026;;;; +;;;;;;;;FRFR1PCJWNPZGMIC;romchamp14uil;Loretu-Mairie;;60 Rue DES MOUSSAILLONS;;[9.300442,41.620129];;FRS18E96971;FRIONE40445;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.54547;46.41083;;;; +;;;;;;;;FRFR1PJUJD4UMKPZ;jusseyfoire;Lucciana-Hotel-Castellu-Rossu;;Route DE LA CORNICHE;;[8.721916,42.253555];;FRS51E57469;FRCPIE66688351;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.76626;46.55103;;;; +;;;;;;;;FRFR1PBBYPZLGJJL;PortsurSaone;Lucciana-Hotel-Chez-Walter;;301 Avenue DE PASCALET;;[8.806314,41.893857];;FRS51E57470;FRCPIE66688352;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.45408;46.67593;;;; +;;;;;;;;FRFR1PV6CBXZ1GZG;SKHFUU;Lucciana-Hotel-La-Lagune;;Actipole la jarrie 1, 99 route de l'ecuissiere - lot 17a, 17550 Dolus-d'Oléron;;[9.351695,42.908693];;FRS18E112663;FRIONE402404;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.0437;46.63914;;;; +;;;;;;;;FRFR1PXHFOOZJRFN;QDBEGF;Luri-Spar;;178 Z.A. du Roucagnier;;[9.379660,41.666035];;FRS18E112664;FRIONE402403;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.42732;46.43572;;;; +;;;;;;;;FRFR1PD0GNFYOMAH;OLNVAYQDOR;Olmeto-Vigna-Maggiore;;Clef Vallée d'Eure, rue de Louviers;;[9.458543,42.465956];;FRS18E115406;FRIONE402402;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.56957;46.75725;;;; +;;;;;;;;FRFR1PA5L76J0IDO;JSVRYT;Miomo-Hotel-Casa-Mea;;101 TER RUE DES 80 FUSILLES 62590 OIGNIES;;[9.465466,42.550769];;FRS18E115664;FRS28E134851;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.26272;46.27595;;;; +;;;;;;;;FRFR1PMGD8YQM75S;MKXKYJ22DI;Monte-Mairie;;ZI De La Liane, Rue Louis Blériot, 62360 Saint-Léonard, France;;[9.146628,41.678688];;FRS18E186355;FRIENE0096023;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.30653;46.42201;;;; +;;;;;;;;FRFR1PVESSJQ8AJC;YXBALB;Monticello-Hotel-Casa-Paradisu;;Résidence du Port de Bourgenay;;[9.350708,42.965410];;FRCPIE67345951;FRIENE0096012;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.92126;46.11744;;;; +;;;;;;;;FRFR1PAJJF6AYYCD;EJISQ1M00E;Monticello-Residence-Les-Alizes;;40 grande rue;;[9.435675,41.999154];;FRS18E204137;FRIENE0096011;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.17571;46.1585;;;; +;;;;;;;;FRFR1PFA6ABFGHEF;E2J6I5CRAL;Moriani-Camping-Merendella;;120 rue de l'église;;[8.949884,42.168536];;FRS18E204139;FRCPIE66009552;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.16553;46.86971;;;; +;;;;;;;;FRFR1PM0LRMJF1GO;MS24BWDH9Z;Moriani-Marina-Bianca;;514 rue Raymond Lecerf;;[8.807748,41.894111];;FRS28E134496;FRCPIE66009551;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.99439;46.57075;;;; +;;;;;;;;FRFR1PO0XRO0D25I;CSYLN7MJO0;Olmeta-Di-Tuda-Hotel-U-Nebbiu;;25 RD2007;;[9.548939,42.225865];;FRS18E112214;FRCPIE66009452;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.27232;46.51127;;;; +;;;;;;;;FRFR1PM0X4I4ZK8M;VSSVCNY8HH;Olmeto-Bains-de-Baracci;;283 rue de la mairie;;[9.548778,42.225964];;FRS18E112215;FRCPIE66009451;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.09633;46.8183;;;; +;;;;;;;;FRFR1PQUVPSIP9F5;JVDXH7QTI9;Olmeto-Camping-Ras-l-Bol;;271 rue du gros moulin;;[9.428504,42.476445];;FRCPIE67185751;FRIENE0037024;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.48492;47.006;;;; +;;;;;;;;FRFR1PPC8GDNJARZ;LA2MZRBDKK;Sisco-Osteria-Stalla-Sischese;;5 avenue de la libération;;[9.446608,42.550499];;FRCPIE67185752;FRIONE402401;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.12241;46.3962;;;; +;;;;;;;;FRFR1PDZLXJEZHBZ;FNL0YUZD9U;Furiani;;Rue de l'huilerie;;[9.442201,42.528147];;FRS88E159235;FRCPIE67317152;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.2333;46.42481;;;; +;;;;;;;;FRFR1PRJWGDOQTTA;KBQ9A4IX7P;Parking Wingenerhof;;2 route d'oussoy;;[9.530630,42.548657];;FRS18E200419;FRCPIE67310851;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.35019;46.42918;;;; +;;;;;;;;FRFR1PVDPIDXOIQR;LDEBFXD6F6;SANTAGIULIAPALACE;;25 place du cas rouge;;[9.408167,42.897789];;FRCPIE67111851;FRCPIE67310852;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.0859;46.43525;;;; +;;;;;;;;FRFR1PDLUIDNHJUL;PRXH55YOEF;SCI HORUS;;6 rue edouard branly;;[8.896456,41.698015];;FRS18E200420;FRCPIE67317951;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.34093;47.0102;;;; +;;;;;;;;FRFR1PNAR10DSPNM;ZN2DDHBYGZ;RICOME ET SADOUL AXA FRANCE;;Rue Maurice Prévost;;[9.456341,42.741337];;FRS51E141854;FRCPIE67317952;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.11599;46.81327;;;; +;;;;;;;;FRFR1PDTYZ0PBUZR;BQNSBIB36O;SATUJO;;Rue du port;;[9.389505,42.469061];;FRS51E141855;FRCPIE67318051;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.12231;46.5191;;;; +;;;;;;;;FRFR1PPTOMNLSUF6;WSHTHJSG61;RSDA mobility;;1 Rue Prudent Harry;;[8.961906,42.632429];;FRS88E159296;FRCPIE67318052;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.08278;47.0633;;;; +;;;;;;;;FRFR1PYZVL09C8UY;N7CMCZKXED;Camping des graniers;;13 Avenue du château;;[8.954898,42.629787];;FRS88E159298;FRS28E129291;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.36949;46.47977;;;; +;;;;;;;;FRFR1PKVOLK1WG8K;X0KAYOBXRZ;EURO TAXI LINE;;286 rue marcel donette;;[9.529622,42.363212];;FRS88E159047;FRS51E43640;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.06018;46.23086;;;; +;;;;;;;;FRFR1PTBP9DOPXZ7;K9AVBWZHUY;SOLAIRE CORSE;;Place Lavoisier;;[9.531038,42.384260];;FRS88E159049;FRIONE432603;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.86969;46.91653;;;; +;;;;;;;;FRFR1PU6Y3WQLBRD;E2YEK1N0HS;La Seyne Services Auto - 22KW - 6;;ZA des Collinons;;[9.350042,42.614509];;FRCPIE67089951;FRIONE402001;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.88005;46.17257;;;; +;;;;;;;;FRFR1PRL2ISP2PKI;I1BMCT7WYC;La Seyne Services Auto - 22kW - 5;;Voie Romaine, 57280 Semécourt;;[8.930927,41.688053];;FRCPIE67089952;FRSHEE902;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.87701;46.76122;;;; +;;;;;;;;FRFR1PAKF8PQJQCF;JYBDYJJ4TC;CSI Tombelaine;;324 Rue Henri Barbusse, 59223 Roncq;;[8.835956,41.703089];;FRIONE469201;FRSHEE903;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.0199;47.10853;;;; +;;;;;;;;FRFR1PZB01ACJMQD;S1JONUHSPU;Romagne bourg;;Rue de la Sapinière, 54520 Laxou;;[8.835726,41.703037];;FRIONE469202;FRSHEE904;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.68699;46.42582;;;; +;;;;;;;;FRFR1PSKVQPRSH7U;LAN1EK83QC;Saint-Laurent de Jourdes;;ZAC DES GRAVIERES, 57685 Augny;;[8.896435,41.697897];;FRIONE469203;FRSHEE911;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.31113;46.43179;;;; +;;;;;;;;FRFR1PVAOKV8QVO0;CJYWF7AUNG;Saint-Julien l'Ars;;Bd de l'Europe, 55100 Haudainville;;[9.483918,42.809196];;FRIONE469204;FRSHEE912;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.4139;46.88099;;;; +;;;;;;;;FRFR1PBYDGEFUMKN;E95FKFHLMJ;Saint-Jean de Sauves;;Centre Commercial Cora,51100 REIMS;;[9.440757,42.655748];;FRIONE469205;FRSHEE913;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.16033;46.18983;;;; +;;;;;;;;FRFR1PST9CPGZFUY;C7QSS7UZXI;Rouillé;;Avenue de la République 62950 Noyelles-Godault;;[7.38071,48.91828];;FRIONE469206;FRSHEE914;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.22874;46.61954;;;; +;;;;;;;;FRFR1PS9WJLR0VHI;UJGU41XRPM;Nouaillé-Maupertuis;;121 Av. de l'Europe 59115 Leers;;[9.2747532,41.5372318];;FRIONE46925;FRS51E43906;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.28073;46.54147;;;; +;;;;;;;;FRFR1PG1QR7RBCW6;VNWWAFPBW9;Pleumartin;;Ccial Auchan, Rue Evariste Galois 59494 Petite-Forêt;;[-0.609770199999, 45.7115857];;FRS88E161737;FRS51E43907;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.64471;46.70139;;;; +;;;;;;;;FRFR1PLLJ5GHD3D2JJMR;BQZ44DT842;Pressac;;Centre commercial Auchan Rue de l'égalité prolongée 59155 Faches Thumesnil;;[4.079235881798033, 44.125333499688494];;FRS88E161739;FRS28E129084;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.64261;46.61877;;;; +;;;;;;;;FRFR1PCRDSBG1MTT;SOEDIIY83S;Quincay;;Zone Cciale Porte De Bourgogne Plaine De Champbertrand 89100 Sens;;[4.02472, 44.04578];;FRS88E161638;FRS51E43908;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.64653;46.44447;;;; +;;;;;;;;FRFR1PJGQZPED0A5;I9Q4QKTKIG;Nieuil l'Espoir;;Centre Commercial Carrefour 62600 Berck;;[4.9778, 45.70419];;FRS88E161636;FRS51E43909;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.04278;46.64555;;;; +;;;;;;;;FRFR1PMXEBYMAPVN;PHETZJE3DT;Saint-Léger de Montbrillais;;Zac Saint Lazare Avenue Montaigne 60000 Beauvais;;[3.8865, 43.98066];;FRIENE0093024;FRCPIE65576751;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.26689;46.72772;;;; +;;;;;;;;FRFR1PFG7EONN82J;MLAZLGVW42;Chalandray;;9 Rue Gutenberg 37300 Joue les Tours;;[4.143857839450771, 43.67179371848097];;FRS18E112720;FRCPIE65576752;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.52324;46.73765;;;; +;;;;;;;;FRFR1PHZ9ZG0T5CS;QURNW8BWEM;Chatellerault Blossac;;N42 62222 Saint-Martin-Boulogne;;[9.4605483,42.73825410000001];;FRS18E140155;FRCPIE66784951;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.185;46.56817;;;; +;;;;;;;;FRFR1PUEIRCTYOBR;Z0CNZYBUQL;Chateau Larcher;;Les Geants, Centre Commercial Auchan Englos, 59320 Haubourdin;;[5.85870711, 43.11350701];;FRS18E140156;FRCPIE66784952;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.05075;46.56539;;;; +;;;;;;;;FRFR1PEACABDPXEE;BAHAHGV1PV;Chateau Garnier;;Rue des Blancs Monts 51350 Cormontreuil;;[-1.369951, 48.685055];;FRS18E182380;FRIONE432602;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.163263;46.57301;;;; +;;;;;;;;FRFR1PI23JPPPTFT;PHXLM9QQUG;Charroux;;Route De St Pol 62000 arras;;[0.30311, 46.27048];;FRS18E182381;FRSHEE901;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.19736;46.56323;;;; +;;;;;;;;FRFR1PP54MDIWUGK;F0NR8K9NFG;Champagné Saint-Hilaire;;Rue Bernard Chochoy 62800 Liévin;;[0.54547, 46.39088];;FRS18E143927;FRS51E43905;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.72518;46.44436;;;; +;;;;;;;;FRFR1PTMJD1RDZHA;CLKIBX2TKQ;Cenon sur Vienne;;1 Rue de Versailles 59650 Villeneuve d'ascq;;[0.09176, 46.84099];;FRS18E143928;FRS51E43904;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.36019;46.46695;;;; +;;;;;;;;FRFR1PLLI1O4L2R16P33;FIXHIOIBDN;Bonnes;;C Des Charrieres, Rue des Chalands Z A, 21800 Quetigny;;[0.41466, 46.50859];;FRS18E112719;FRS18E147553;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.37178;46.80673;;;; +;;;;;;;;FRFR1PBPFMD6OOQ0;DHBBNU;Celle l'Evescault;;Rue des 3 Frontières, 68110 Illzach;;[0.76626, 46.73847];;FRIENE0041011;FRIONE402002;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.11232;46.48522;;;; +;;;;;;;;FRFR1PF1BQQZEED1;RMDZXYQQKA;Buxerolles;;92 Rue Georges Potié, 59120 Loos;;[0.57314, 46.11511];;FRIENE0093023;FRIONE402003;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.37142;46.87613;;;; +;;;;;;;;FRFR1PY39L9HN88E;C7JGYCFWRS;Bouresse;;Rue des Martyrs de la Résistance, 70300 Luxeuil-les-Bains;;[0.22979, 46.6104];;FRIENE0041012;FRIONE402004;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.30572;46.43994;;;; +;;;;;;;;FRFR1PTXPJR8TDQE;LOG48IHQH0;Bonneuil Matours;;Zac Du Pied Des Gouttes, Centre Commercial Leclerc, 25200 Montbéliard;;[0.45408, 46.48322];;FRIENE0041023;FRIONE40205;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.11593;46.53334;;;; +;;;;;;;;FRFR1PGTRDTE5TIF;A6NNCC3AAE;Mirebeau poste;;Sud Lieu Dit, La Haye Juda C Cial Auchan, Noyon;;[-0.0437, 47.07127];;FRIENE0041024;FRS51E151675;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.19754;46.47848;;;; +;;;;;;;;FRFR1PAYM7H1XRJQ;LLIWW36VL49NY2;Vivonne;;Rue Jules Mousseron, 59300 Aulnoy-Lez-Valenciennes;;[-0.00364, 46.66113];;FRS88E159270;FRS51E43647;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.24605;46.7588;;;; +;;;;;;;;FRFR1PFOR8S4ILKZ;UGEM4LBMME;Valdivienne;;Imp. de l'Industrie, 62500 Saint-Martin-lez-Tatinghem;;[0.5452, 46.81861];;FRS88E159272;FRS28E141733;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.70529;46.30726;;;; +;;;;;;;;FRFR1PS3RCEDCLUC;TFQU7A1NFU;Vendeuvre du Poitou ZA;;18 Rue de la Maison Rouge, 67600 Sélestat;;[0.42732, 46.2589];;FRIENE0093011;FRS18E147554;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.30925;46.56231;;;; +;;;;;;;;FRFR1PHJCQWV;MXFE5YVCKF;Verrieres;;Centre Norauto Zac Les Epis Cc Auchan Douai, 59450 Sin-le-Noble;;[0.40692, 46.1429];;FRIENE0093012;FRS41E52880;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.26751;46.79024;;;; +;;;;;;;;FRFR1PZGGYCJ;XVXRIKKVWZ;Villemort;;2 Chem. de l'Étang, 25480 École-Valentin;;[0.35242, 46.59822];;FRIONE413703;FRS37E1260;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.37044;46.206552;;;; +;;;;;;;;FRFR1PTRYTZF;WYZVCJ7RTY;Villiers;;5002F Rue Benjamin Moloise, 62400 Béthune;;[0.61114, 46.36157];;FRIONE413705;FRS37E1261;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.81045;46.35839;;;; +;;;;;;;;FRFR1PVZJYCG;NDOJ4662KH;Vouillé;;centre Commercial Auchan, Rue de Naves, 59400 Cambrai;;[0.56957, 46.68164];;FRS18E196425;FRS51E43896;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.53496;46.40225;;;; +;;;;;;;;FRFR1PUCNXMWQKXU;FO6DYAVEZA;Saint-Léomer;;Bd du 8 Mai 1945, 59540 Caudry;;[0.26272, 46.42595];;FRS28E137388;FRS51E43897;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.3933;46.66112;;;; +;;;;;;;;FRFR1PWRHI28XGMJ;J17WV9RWME;Vouillé Beauregard;;Parc Aeroport, 32 Av. de la Foire aux Vins, 68000 Colmar;;[0.63465, 46.50886];;FRSHEE442;FRS51E43900;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.3043377;46.61769;;;; +;;;;;;;;FRFR1PKETVBA;U1DFZSVSVG;Vouneuil sous Biard;;1 Rue Bernard Lecache, 21300 Chenôve;;[0.30653, 46.73026];;FRSHEE451;FRS51E43901;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4974859;46.73119;;;; +;;;;;;;;FRFR1PQKR5YQTB8B;Z6FDZYEANJ;Vouzailles;;Rue Georges Herrewyn, 59210 COUDEKERQUE;;[0.59284, 46.41083];;FRSHEE452;FRS41E52879;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5514549;46.67327;;;; +;;;;;;;;FRFR1PJJUUQQVTYZ;LLI8V0FNI2LL61;Naintré Intermarché;;Rte de Langres, 21000 Dijon;;[0.92126, 46.55103];;FRSHEE453;FRTNME18B924480;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9713852;46.94515;;;; +;;;;;;;;FRFR1PLBZUHX5FDU;QOS8EYYCTL;Leignes sur Fontaine;;Sq. de l'Europe, 57600 Forbach;;[0.17571, 46.67593];;FRSHEE454;FRTNME18B924490;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5669992;46.69456;;;; +;;;;;;;;FRFR1PQOOZLR9PNL;S7OUF5KWNV;Usson du Poitou;;403 Rue Michel Chasles, 59494 Petite-Forêt;;[0.16553, 46.63914];;FRS18E148756;FRTNME18B924500;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.03;46.25815;;;; +;;;;;;;;FRFR1PB3S9SCNTCJ;WGU09TC7OO;Thollet;;714 Av. François Godin Bis 62780 Cucq;;[0.99439, 46.43572];;FRS18E148757;FRCPIE67374751;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.633379459639794;46.56913;;;; +;;;;;;;;FRFR1PTVE2ZUMRJB;RTZPPN1BPO;Saint-Macoux;;713 Av. François Godin Bis 62780 Cucq;;[0.27232, 46.57058];;FRS28E130014;FRTNME089116961;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.85;46.42912;;;; +;;;;;;;;FRFR1POMAQGM6IDU;AGOI4WEQ4K;Saint-Maurice la Clouere;;712 Av. François Godin Bis 62780 Cucq;;[0.09633, 46.71077];;FRS18E186239;FRTNME089116960;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.63768;46.56906;;;; +;;;;;;;;FRFR1PYAWALWXPJN;SXIAVCPQMS;Saint-Pierre de Maillé;;710 Av. François Godin Bis 62780 Cucq;;[0.48492, 46.75725];;FRS18E98613;FRTNME089113880;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.79478;46.6551;;;; +;;;;;;;;FRFR1PP24RIEK1UK;UUGQOG3Q0H;Saint-Sauvant;;709 Av. François Godin Bis 62780 Cucq;;[0.52613, 46.27595];;FRS18E98614;FRS18E142816;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.021417;46.68789;;;; +;;;;;;;;FRFR1PKNBBD1WKUO;Fresnesceris;Saint-Sauveur;;708 Av. François Godin Bis 62780 Cucq;;[1.12241, 46.42201];;FRS18E153420;FRS18E142815;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.305767;46.37715;;;; +;;;;;;;;FRFR1PKGIFNNP4ME;RHNENTGU8Q;Saint-Savin;;404 Rue Michel Chasles, 59494 Petite-Forêt;;[0.2333, 46.11744];;FRS18E153421;FRCPIE65807652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.860826;46.75958;;;; +;;;;;;;;FRFR1PRWMAQR1XOL;JNNF0FAFIC;Savigné;;711 Av. François Godin Bis 62780 Cucq;;[0.311, 46.1585];;FRS28E134801;FRCPIE65807651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.59789;46.73564;;;; +;;;;;;;;FRFR1PUSCLUJN5UJ;PAR6SVC8CT;Savigny sous Faye;;402 Rue Michel Chasles, 59494 Petite-Forêt;;[0.28431, 46.86971];;FRCPIE66492551;FRIONE12485;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.800076;46.54957;;;; +;;;;;;;;FRFR1PUZR77QZIYM;FWNUUR;Senillé;;400 Rue Michel Chasles, 59494 Petite-Forêt;;[0.46523, 46.57075];;FRCPIE66492552;FRIONE124804;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.660926;46.49409;;;; +;;;;;;;;FRFR1PDS4JPFUSGX;N4CQ41LAFG;Sevres-Anxaumont;;22 Rue Emile Durkeim, 88100 Saint-Dié-des-Vosges;;[0.35019, 46.51127];;FRS18E214519;FRIONE124803;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.64036;46.5711;;;; +;;;;;;;;FRFR1PLUDB1KDHWA;YEVZGBQW8O;Smarves;;15 Avenue DU Tilleul, 90160 Bessoncourt;;[0.54894, 46.8183];;FRSHEE441;FRIONE124802;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.591242;46.73118;;;; +;;;;;;;;FRFR1PPLIIJQRR9K;YIQW3O95EW;Chatellerault gare;;401 Rue Michel Chasles, 59494 Petite-Forêt;;[0.0859, 47.006];;FRSHEE433;FRIONE124801;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.033389;46.4907;;;; +;;;;;;;;FRFR1PF9AE6Z9DRG;KCALTA6R9C;Loudun porte de Mirebeau;;34 Rue Pasteur 69Bordeaux;;[0.34093, 46.3962];;FRSHEE432;FRCPIE65805952;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.874503;46.77659;;;; +;;;;;;;;FRFR1PMPFMVAYMZL;YQUK3HWUQM;Marnay;;78 Avenue Ambroise Croizat56600 LANESTER;;[0.21484, 46.42481];;FRCPIE65937252;FRCPIE65805951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.786925;46.24312;;;; +;;;;;;;;FRFR1PMLMXKNWVEM;JYQST9D00N;Marigny-Chémereau;;Rue de Longvic21300 CHENOVE;;[0.11599, 46.42918];;FRCPIE66430251;FRSPSESHEL711;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.957987;46.35718;;;; +;;;;;;;;FRFR1PXNYAC5TPKK;LJS7NW956Z;Lussac les chateaux;;Rue Eugène Joly83600 FREJUS;;[0.12231, 46.43525];;FRCPIE66430252;FRCPIE67210652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.765274;46.78645;;;; +;;;;;;;;FRFR1PYA93PLA1NX;PGHLVV2XSS;Lusignan intermarché;;504 Avenue du Mas d'Argelliers34000 MONTPELLIER;;[0.08278, 47.0102];;FRS28E139389;FRCPIE67210651;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.349335;46.71738;;;; +;;;;;;;;FRFR1PJG6YZDT24P;GJ2TZ198MT;Lusignan centre;;Chemin des minimes37520 LA RICHE;;[0.53227, 46.81327];;FRS18E146793;FRTNME089125120;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.825952;49.1915441;;;; +;;;;;;;;FRFR1PN1TAYO5AC4;B3IBLOQRWG;Loudun mairie;;Avenue de Provence QuartierRue de Chantecouriol26000 VALENCE;;[0.33276, 46.5191];;FRS18E146794;FRTNME089125121;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.971726;51.0330233;;;; +;;;;;;;;FRFR1PQYPUGRMYGA;RKIXOAPMW8;Chatellerault Chateauneuf;;Rue Saint Jean31130 BALMA GRAMONT;;[0.5978, 46.43572];;FRS28E139024;FRTNME089125190;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.054889;51.078304;;;; +;;;;;;;;FRFR1PLUEONUMUAN;XWHJ7GPLUQ;Ligugé;;Rond Point Madame de Mondonville31000 TOULOUSE;;[0.0177, 47.0633];;FRCPIE65937251;FRTNME099112161;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.123814;50.9870357;;;; +;;;;;;;;FRFR1PQ8JLYNSB4D;ARF6FRWSZ6;Lhommaizé;;Avenue Flora Tristan31520 RAMONVILLE SAINT AGNE;;[0.36949, 46.47977];;FRS55E66442;FRCPIE65819951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.568649;51.033072399999;;;; +;;;;;;;;FRFR1PLZRLYBKPBE;JDCSTE;Les Trois Moutiers;;RN10, CC grandes Chaumes16430 CHAMPNIERS;;[0.67396, 46.23086];;FRSHEE431;FRS37E1247;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.829;43.18;;;; +;;;;;;;;FRFR1PW35JGY6RKE;RJEPQK;Les Roches Premarie;;Cc Monthieu, 140 rue de la montat42000 SAINT ETIENNE;;[0.06018, 46.91653];;FRS55E66443;FRS37E1246;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.985625;47.230062067926525;;;; +;;;;;;;;FRFR1PQRHB3TMWPV;GX0S6HFHSI;Le Vigeant;;45 Avenue Général de Gaulle68300 SAINT LOUIS;;[0.51656, 46.17257];;FRIONE403701;FRTNME18B931391;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.69995;45.71;;;; +;;;;;;;;FRFR1PKCZQAB;GSIMII44WZ;Martaizé;;162 Avenue Pierre Semard84000 AVIGNON;;[0.4882, 46.76122];;FRIONE403702;FRTNME18B931390;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.427434;46.367228;;;; +;;;;;;;;FRFR1PNHHVSV;I6PHLSC2S6;Mauprévoir;;Avenue de Bredasque13090 AIX EN PROVENCE;;[-0.02363, 47.10853];;FRIONE403703;FRTNME099901801;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.743907;48.505161;;;; +;;;;;;;;FRFR1PHEDC2RWJ6Z;JIVUAO3AA0;Naintré Paul Eluard;;400 Avenue Claude Baillet30918 NIMES;;[0.86969, 46.42582];;FRIONE403704;FRTNME099901800;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.828918;48.343342;;;; +;;;;;;;;FRFR1PXZLZEXJEIY;HR010KHJWD;Naintré bibliotheque;;38 Avenue des Casseaux87000 LIMOGES;;[0.88005, 46.43179];;FRIONE40375;FRTNME099112160;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.253999;48.782028;;;; +;;;;;;;;FRFR1PLM1TTMTMU6;UR6Z3WPAH1;Morton;;Rue des Usines31150 FENOUILLET;;[0.87701, 46.43351];;FRS28E130244;FRTNME089125191;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.060808;48.50412;;;; +;;;;;;;;FRFR1PZAUKZX;QWTCYQ;Monts sur Guesnes;;ASF Aire des Brouzils, A83 85260 LES BROUZILS;;[-0.0199, 46.88099];;FRS18E214520;FRTNME099107160;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8905;48.283298;;;; +;;;;;;;;FRFR1PTMKMTF;LGT1LJMVAS;Montmorillon centre;;ASF Aire de Chavagnes en Paillers, A83 85250 CHAVAGNES EN PAILLERS;;[0.68699, 46.18983];;FRIENE0092011;FRTNME089128811;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.915816;48.509586;;;; +;;;;;;;;FRFR1POQAQOPUOYC;FLPKSQ;Montmorillon stade;;ASF Aire De Rouille Pamproux Nord, A10 79800 PAMPROUX;;[0.31113, 46.61954];;FRCPIE66430151;FRTNME089128810;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.603089;48.521801;;;; +;;;;;;;;FRFR1PXHLANB0NZX;TFABMXZF7B;Montmorillon pole emploi;;ASF Aire de Toulouse Sud Nord, A61 31450 DEYME;;[0.4139, 46.54147];;FRIENE0092012;FRTNME089128801;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.565315;48.542576;;;; +;;;;;;;;FRFR1PS2ED4IIWU3;OMMSBZGWY6;Moncontour;;Aire de la Bruche67120 DUTTLENHEIM;;[0.16033, 46.70139];;FRS08E46445;FRTNME089128800;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.830538;49.017696;;;; +;;;;;;;;FRFR1PKZFREV;UK3CJTWPKE;Millac;;ZAC des Montagnes, 29 Les Montagnes, 16430 Champniers;;[0.07669, 46.61877];;FRS08E46460;FRTNME089125201;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.928877;48.713238;;;; +;;;;;;;;FRFR1PED5TDOOHPJ;CPBDRSCXA3;Migné-Auxances;;1070 Rte de Charnoz-za plantier trinquier - meximieux;;[0.66512, 46.44447];;FRS08E46461;FRTNME089125200;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.496094;48.75351;;;; +;;;;;;;;FRFR1PRCACXZCBUQ;LCOPFREFDC;Mignaloux-Beauvoir;;1 Rue des Gallois 14210 Évrecy;;[0.22874, 46.64555];;FRS08E46467;FRCPIE67374752;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.35106;48.999126;;;; +;;;;;;;;FRFR1PBOMNOSKIU2;BTTYQJ;Le Rochereau;;58 rue de Grosbliederstroff - 57200 SARREGUEMINES;;[0.65501, 46.72772];;FRS08E46468;FRCPIE67374552;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.229534;48.822292;;;; +;;;;;;;;FRFR1PBN72S1V6XC;DUSESMVQ5L;Latillé;;107 rue du Maréchal Foch 57200;;[0.28073, 46.73765];;FRS51E112429;FRCPIE65820051;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.438183;48.448474;;;; +;;;;;;;;FRFR1PMOFV72VTZQ;GR5HJDH3RQ;Civray;;34 rue du maréchal Foch 57200;;[0.64471, 46.56817];;FRS51E112430;FRCPIE67374551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.615704;48.483391;;;; +;;;;;;;;FRFR1PID7KOD7DHH;DKZZCS;Civaux;;Rue de la liberté 80100 ABBEVILLE;;[0.64261, 46.56539];;FRIONE417601;FRSHEE832;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.850102;48.912483;;;; +;;;;;;;;FRFR1POEWTMI5SDG;JCSDDF6LY8;Cissé;;Avenue Louis Bazerque, 31100 Toulouse;;[0.64653, 46.57301];;FRIONE417602;FRSHEE831;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.66521;48.511906;;;; +;;;;;;;;FRFR1PVWGLEPIVS9;ICP9SCW6WL;Chouppes;;Route Nationale 28380 Saint-Rémy-sur-Avre;;[0.62974, 46.56323];;FRIONE417603;FRSHEE822;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.694243;48.991291;;;; +;;;;;;;;FRFR1PZGBJXDCZFR;FWUWZA;Chenevelles;;88 Bd du Cardinal François Marty, 12100 Millau, France;;[0.16584, 46.44436];;FRIONE417604;FRSHEE821;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.688477;48.92767;;;; +;;;;;;;;FRFR1PF9MHRVG3FP;QNWNPEG1Z0;Chéneché;;136 Boulevard de l'Europe;;[1.04278, 46.46695];;FRIONE417605;FRSHEE814;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.026891;48.316978;;;; +;;;;;;;;FRFR1PMYDGOOZS6R;MZO1WROI2A;Chauvigny Banfora;;2 av de lattre de tassigny 68920;;[0.01791, 46.80673];;FRIONE417606;FRSHEE813;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.246524;48.455761;;;; +;;;;;;;;FRFR1PHTHA8SVPIE;LKZWHQ;Chauvigny gymnase Lathus;;Centre commercial Avenue de Saint-affrique 12100 Creissels;;[0.31542, 46.48522];;FRIONE41765;FRSHEE812;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.700226;48.941795;;;; +;;;;;;;;FRFR1PND7EXY8XAP;UKQGBDK3E7;Chauvigny cité médievale;;317 CHEMIN DE ROQUEMAURE 84100;;[0.56652, 46.87613];;FRIENE0037011;FRSHEE811;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.991441;48.30003;;;; +;;;;;;;;FRFR1PP4I9QD4QKG;M97MI77NNA;Chauvigny Peuron;;Hôpital de Gerardmer 18 Bd Kelsch 88400 Gérardmer;;[0.42395, 46.43994];;FRIENE0037012;FRIENE0032024;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.151188;48.851772;;;; +;;;;;;;;FRFR1PEWMJNJSRJF;XDCMNUFZH1;Chatellerault Nord;;Hôpital de Moyenmoutier 75 rue du Petit Himbaumont 88420 Moyenmoutier;;[0.26689, 46.53334];;FRIENE0037023;FRIENE0032023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.771959;49.025669;;;; +;;;;;;;;FRFR1PP846IQNS4O;FZSOUDQLT1;Chatellerault Manufacture;;Hôpital de Saint Dié des Vosges Rue du Nouvel Hôpital 881000 Saint Die des Vosges;;[0.52324, 46.47848];;FRS08E46444;FRIENE0032012;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.859685;49.00922;;;; +;;;;;;;;FRFR1PLRBTZV2OWE;VDQGVS;Cloué;;Hôtel de la Muse et du Rozier 12720 Mostuéjouls;;[0.09682, 46.7588];;FRS08E46434;FRIENE0032011;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.034994;48.383236;;;; +;;;;;;;;FRFR1PVU5BILOYOJ;W3AAB7VF4D;La Trimouille;;17 rue Léna Bernstein, ZAC Croix Blandin, 51100 Reims;;[0.185, 46.48457];;FRS08E46433;FRCPIE65799052;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.163473;48.452545;;;; +;;;;;;;;FRFR1PGRYOHUTHYB;YNDBGQMNFP;La Grimaudiere;;Route Nationale 43 Saint Martin 62120 Aire sur la Lys;;[0.18271, 46.30726];;FRSHEE333;FRCPIE65799051;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.581679;48.6065;;;; +;;;;;;;;FRFR1PY2ZMZANJDV;BJPTGU;Joussé;;AVENUE DU VERT GALAN 64230;;[0.05075, 46.56231];;FRIENE0092023;FRCPIE65798952;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.951969;48.789227;;;; +;;;;;;;;FRFR1PVRVUMOVGWL;WKRCQX;Iteuil;;2 Route de St. Gilles;;[0.18378, 46.79024];;FRIENE0092024;FRCPIE65798951;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.219879;49.064533;;;; +;;;;;;;;FRFR1PCOWK19Z19U;SUVZHC;Ingrandes sur Vienne;;463 CHEMIN DES HAUTS DES LANCONS;;[0.163263, 46.206552];;FRS28E130548;FRCPIE65798851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.906715;48.580364;;;; +;;;;;;;;FRFR1PEHUOWBPTAZ;UBCPEBFYNE;Gizay;;463 CHEMIN DES HAUTS DE LANCONS;;[0.19736, 46.35839];;FRSHEE321;FRSHEE841;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.998514;48.768833;;;; +;;;;;;;;FRFR1PKPINYLE999;N8GZ5CIJWA;Fontaine-le-Comte;;RUE DE L'INNOVATION;;[0.72518, 46.40225];;FRSHEE322;FRSHEE842;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.960665;48.335297;;;; +;;;;;;;;FRFR1PMQJVDT1XHK;E2BTI9BB2V;Fleuré;;144 CHEMIN NOTRE DAME D AUBUNE;;[0.36019, 46.66112];;FRSHEE331;FRCPIE65799551;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.08237;48.373798;;;; +;;;;;;;;FRFR1PXEHIISJMZ1;GXS4W24ADV;Cuhon;;2 Rue Robert Moinon;;[0.3464, 46.61769];;FRSHEE332;FRCPIE66083751;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.085838;48.45281;;;; +;;;;;;;;FRFR1PLFKAACIEEF;YU7PPYOYU0;Coulombiers;;Rue du clos des mares;;[0.37178, 46.56869];;FRSHEE334;FRCPIE65804352;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.974578;48.904442;;;; +;;;;;;;;FRFR1PVIWAJNSDVO;LUNOSLDDGN;Couhé-Verac;;1 RUE LOUIS PASTEUR 79160 Coulonges-sur-l'Autize;;[0.43986, 46.73119];;FRCPIE67087452;FRCPIE65804351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.687649;48.694653;;;; +;;;;;;;;FRFR1POCKZD1UBE6;ATYZJR;Benassay;;37 rue de bonnel - lyon;;[0.65243, 46.67327];;FRCPIE66472051;FRCPIE65804252;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.909066;48.747417;;;; +;;;;;;;;FRFR1PTNUIB2KDQK;LLIMVWEOVKSB9K;Mirebeau mail;;9 rue clement ader;;[0.11232, 46.94515];;FRCPIE66472052;FRCPIE65804251;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.195108;48.349255;;;; +;;;;;;;;FRFR1PP8G873ZCEV;YAQVWC;CHAUNAY;;34 Rue Pasteur 69300 Caluire-et-Cuire;;[0.88642, 46.69456];;FRCPIE66767851;FRS37E1243;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.841548;48.62632;;;; +;;;;;;;;FRFR1PLLIMV7TJ8J969D;LALSSE;Payré;;388 RUE ANTOINE PINAY 69740 Genas;;[0.79966, 46.25815];;FRCPIE66767852;FRS37E1242;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.184065;48.626202;;;; +;;;;;;;;FRFR1PHIH0CXVKI5;NXFKDH;Chasseneuil Teleport 2;;68 RUE DES FORGES 25370;;[0.37142, 46.56913];;FRCPIE65475451;FRCPIE66083752;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.837548;48.511044;;;; +;;;;;;;;FRFR1PAARDMXKVYP;JPBEPL;Poitiers République;;21 RUE DE LA MACHOTTE;;[0.30572, 46.57666];;FRCPIE65475452;FRS37E1253;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.835017;49.025196;;;; +;;;;;;;;FRFR1PSAOFNVECAW;TURUTF;Sorégies 3;;Route de mont de marsan 33430 Bazas;;[0.11593, 46.42912];;FRCPIE67087451;FRCPIE65799552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.62648;48.513992;;;; +;;;;;;;;FRFR1PC6B2YXNKME;IMOUXSVXCM;Beaumont Saint-Cyr;;1 Av du Maréchal Juin 33700 Merignac;;[0.19754, 46.56906];;FRCPIE66430152;FRS37E1241;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.096748;48.548374;;;; +;;;;;;;;FRFR1PGRLDTFOSSH;NRDWFQ;Ayron;;1 rue charles six;;[0.36394, 46.6551];;FRFASE3310008;FRCPIE65803552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.90766;48.862556;;;; +;;;;;;;;FRFR1PSORRN2XLAU;DWO4IMGBLA;Availles en Chatellerault;;6 rue Annet Segeron;;[0.24605, 46.68789];;FRIONE413706;FRCPIE65803551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.654417;48.558975;;;; +;;;;;;;;FRFR1PZ9THPO26DL;TA2FAXN8SN;Archigny;;2 rue Annet Segeron;;[0.87585, 46.37715];;FRCPIE66446352;FRCPIE65605252;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.922666;49.049637;;;; +;;;;;;;;FRFR1PR13OWRMEIG;Besacefs;Angliers;;55 rue de normandie;;[0.70529, 46.75958];;FRCPIE66998951;FRCPIE65605251;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.961401;48.926731;;;; +;;;;;;;;FRFR1PXL9FKMEJII;QJANFK;Angles sur l'Anglin;;35 AVDENFERT ROCHEREAU 42000 SAINT ETIENNE;;[0.30925, 46.73564];;FRCPIE66998952;FRCPIE65799652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.744265;48.38625;;;; +;;;;;;;;FRFR1PRXQ5H9G1WX;besacstpaul;Adriers;;225 AVENUE DE VILLENEUVE;;[0.34213, 46.54957];;FRS28E137338;FRCPIE65799651;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.293563;48.7766;;;; +;;;;;;;;FRFR1PN8SQMR1KAQ;besacgranvel;Sorégies 1;;ROUTE DE LA CHATAIGNERAIE 85390 Cheffois;;[0.26751, 46.49409];;FRCPIE66904551;FRCPIE65819952;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.120485;49.03389;;;; +;;;;;;;;FRFR1PT1MDRTWN1F;Besacstjacq;Biard;;610 route de cossel d11 59630 drincham;;[0.37044, 46.5711];;FRCPIE66904552;FRCPIE65820052;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.671611;48.555733;;;; +;;;;;;;;FRFR1PWYVFBS73YI;YHJJOKKRAK;Sorégies 2;;16 Boulevard Adolphe Garnier 88400 GERARDMER;;[0.43986, 46.73118];;FRS18E104686;FRCPIE65171351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.756482;48.758823;;;; +;;;;;;;;FRFR1PM3ELUWQTWT;AUVTU2DO3E;Béruges;;1229E rue Maurice Bokanowski 54200 TOUL;;[0.81045, 46.4907];;FRS18E104687;FRS37E1259;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.39162;48.858112;;;; +;;;;;;;;FRFR1PVAL9KPXK5Y;A5I8VJ3JUL;Chasseneuil du Poitou - SDIS;;11 rue Saint Louis 54400 LONGWY;;[0.53496, 46.77659];;FRS18E95964;FRFASE3310506;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8;48.469975;;;; +;;;;;;;;FRFR1PWMZBSDUXHJ;EG8ALQQG74;Mignaloux-Beauvoir le Verger;;55 rue des Ecoles 93300 Aubervilliers.;;[0.28977, 46.24312];;FRS18E95965;FRFASE3310505;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.674363;48.647747;;;; +;;;;;;;;FRFR1PWBTHYDIUJL;SCLWYD;Neuville de Poitou;;50 Av. du Campon;;[0.3933, 46.35718];;FRS88E161845;FRFASE3310504;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.945185;48.815;;;; +;;;;;;;;FRFR1PZ5MFSTXFBK;MUR6AGZUL1;Saulgé;;Rue du Docteur Ciais;;[0.81115, 46.78645];;FRS88E161847;FRFASE3310503;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.139536;48.81382;;;; +;;;;;;;;FRFR1PXOZQ9QYCLQ;VN9MGBRYJV;Leigné les Bois;;BOULEVARD DES ROCHEREAUX ZONE COMMERCIALE DE LA VIGNE 79180 CHAURY;;[0.25833, 46.71738];;FRS18E104721;FRFASE3310502;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.684942;49.006927;;;; +;;;;;;;;FRFR1PRX0SUMTB6R;LLI4N9U0V2FH74;Vendeuvre du Poitou;;34 route des commandières 44600 saint nazaire;;[-0.3043377,49.1915441];;FRS18E104722;FRFASE3310501;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.635144;48.945904;;;; +;;;;;;;;FRFR1PZIIBHFC8FI;DFUDNBMUJ3;Saint-Secondin;;279 AV Saint Maurice;;[2.4974859, 51.0330233];;FRCPIE66445551;FRFASE3301507;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.068942;48.857899;;;; +;;;;;;;;FRFR1PWXBEGJKS4B;I6ROSRNMR1;Saint-Benoit;;Carr de l'Europe 78150 Le Chesnay-Rocquencourt;;[2.5514549, 51.078304];;FRCPIE66445552;FRS37E1265;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.70119;48.616379;;;; +;;;;;;;;FRFR1PIXUXAPMXY4;LLJWX7L1CMZ069;Saint-Georges les Baillargeaux;;Rue Pottier 78150 Le Chesnay - Rocquencourt;;[1.9713852, 50.9870357];;FRCPIE66445651;FRS37E1264;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.700847;48.664284;;;; +;;;;;;;;FRFR1PICCUFQUYS4;LLJIKOK0H2BMCU;Vivonne Curie;;Parking Maison de quartier de Guézy 44500 La Baule;;[2.5669992, 51.033072399999];;FRCPIE66445652;FRS37E1263;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.188327;48.81773;;;; +;;;;;;;;FRFR1PPC8A6CPOJO;LLJWX8IC2K8Q24;Rebeilleau;;Parking du Cimetière 44500 La Baule;;[3.03,43.18];;FRCPIE66992852;FRS37E1262;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.570593;48.973423;;;; +;;;;;;;;FRFR1PEJRFCC8V5U;LLJWX7Z4MYYXND;Pindray;;Parking des Corallines 44500 La Baule;;[-1.633379459639794, 47.230062067926525];;FRCPIE66992851;FRCPIE66380451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.588406;48.529648;;;; +;;;;;;;;FRFR1PNKPTV8HRVT;LLJWX736V2AAFY;Cenon Fenwick;;Parking SNCF S1 44500 La Baule;;[4.85,45.71];;FRIONE43345;FRCPIE66380351;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.226534;48.233624;;;; +;;;;;;;;FRFR1PULZI7QNTXU;LLJWX6MFX20G9C;Dangé Saint-Romain;;Parking Honoré de Balzac 44500 La Baule;;[0.63768, 46.367228];;FRS28E134777;FRIONE40985;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.24285;48.419575;;;; +;;;;;;;;FRFR1PP47AQWL4FJ;YSGFNL;Romagne vallée des singes;;Parking Résidence de la Forêt 44500 La Baule;;[2.794780,48.505161];;FRIONE41375;FRIONE409806;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.244617;48.75396;;;; +;;;;;;;;FRFR1PZ8TORQXRCM;LLI2T0PJ21SQ0A;Magné;;Parking Marché de Guézy 44500 La Baule;;[3.021417,48.343342];;FRCPIE66386251;FRIONE409805;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.938246;48.243546;;;; +;;;;;;;;FRFR1PVCTIMHBD9S;FVYKCQ;La Roche-Posay;;Parking Kercausette 44500 La Baule-Escoublac;;[3.305767,48.782028];;FRCPIE66386252;FRIONE409804;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.318183;48.312195;;;; +;;;;;;;;FRFR1PESLALBBYRH;BKKQY5R3K6;Chabournay;;Parking Escholliers 44500 La Baule-Escoublac;;[2.860826,48.504120];;FRS88E177260;FRFASE3310508;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.478393;48.418995;;;; +;;;;;;;;FRFR1PTOA3WWVTKE;CS0IZRKH3Q;PTBG;;1 Avenue D'agen 44500 La Baule-Escoublac;;[2.597890,48.283298];;FRS88E177262;FRCPIE65885551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.603382;48.939857;;;; +;;;;;;;;FRFR1PLLHUCH3KM1EX6J;JBWAJLPSDU;CAMPING DU PERROQUET;;Parking des Pistes 73700 Montvalezan;;[2.800076,48.509586];;FRCPIE66386351;FRCPIE65885552;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.146731;48.482601;;;; +;;;;;;;;FRFR1PJGZFJ7CM6V;VKVLRRWSU5;CAMPING DE LA PLAGE;;Parking Avenue de la Plage 44500 La Baule;;[2.660926,48.521801];;FRCPIE66386352;FRCPIE65892652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.706278;48.398468;;;; +;;;;;;;;FRFR1PVFOHUPYC2O;SMUJWYXIBS;MAIRIE DES MOERES;;Parking des Salines 44500 La Baule-Escoublac;;[2.640360,48.542576];;FRIONE433404;FRCPIE65895452;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.021658;48.486507;;;; +;;;;;;;;FRFR1PWHWZWYFYDB;OOFJAHVKOS;LA SOURCE;;Rue Du Faure De Serre 05000 Gap;;[2.591242,49.017696];;FRIONE40265;FRCPIE65895451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.718575;48.41394;;;; +;;;;;;;;FRFR1PP82ADPOVAF;DEOKKTJKAX;Ouest Location, Saint Herblain;;Parking Relais du Stade Nautique 05000 GAP;;[3.033389,48.713238];;FRIONE433401;FRN54E187520;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.531976;48.4575;;;; +;;;;;;;;FRFR1PASYZQT6BCE;OB8ETW7HKF;STARTERRE;;Parking relais du Sénateur 05001 GAP;;[2.874503,48.753510];;FRIONE433402;FRN54E187519;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.56414;48.230656;;;; +;;;;;;;;FRFR1PY6BWAPE3KI;CGRR6UGO53;IES2022032881180001;;Parking relais du plan Tokoro 05000 GAP;;[2.786925,48.999126];;FRIONE433403;FRCPIE66314851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.561816;48.463512;;;; +;;;;;;;;FRFR1PZKXJSWERB9;VLVQIHN4G6;Le Châtelet-en-Brie;;Biocoop 45430 Chécy;;[2.957987,48.822292];;FRCPIE66446351;FRCPIE65894652;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.13829;48.476547;;;; +;;;;;;;;FRFR1PSJWECFVZZW;PMVU9IRAML;La-Brosse-Montceaux;;Stade la Haie le Doyen 88190 Golbey;;[2.765274,48.448474];;FRCPIE66446451;FRCPIE65894651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.760311;49.053848;;;; +;;;;;;;;FRFR1PRJ628PL5BR;VWCR0TPAP3;La-Ferté-Gaucher - Ernest Delbert;;Salle Lepage 88190 Golbey;;[3.349335,48.483391];;FRFASE3310007;FRCPIE65892651;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.250729;48.515441;;;; +;;;;;;;;FRFR1PQS8BTQA6LW;LLJH8ANW0TM25Q;Les Ecrennes;;Collège Louis Armand 88190 Golbey;;[2.825952,48.912483];;FRCPIE66446452;FRS37E1266;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.314407;49.090664;;;; +;;;;;;;;FRFR1PQOHDGTS2IJ;TULYZ5QK8S;Larchant;;Place du Souvenir 88190 Golbey;;[2.971726,48.511906];;FRS28E134195;FRCPIE65891252;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.459796;48.149586;;;; +;;;;;;;;FRFR1PTMKRKF2NVZ;WNIBH3CHGH;Le Châtelet-en-Brie / CCVC;;V and B 27930 Vieil Evreux;;[3.054889,48.991291];;FRS18E112534;FRCPIE65891251;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.124815;48.488678;;;; +;;;;;;;;FRFR1PIYFHIGTUD5;QVONONBFDE;La Rochette - Théodore Rousseau;;Rue de Versaille 78150 Le Chesnay-Rocquencourt;;[3.123814,48.927670];;FRS18E112535;FRCPIE65889952;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.607938;48.398651;;;; +;;;;;;;;FRFR1PHU0OZDLEWF;L1DBJXVP6P;Le Mée-sur-Seine;;Cuisinella 27300 Menneval 2;;[2.568649,48.316978];;FRIENE0028011;FRCPIE65889951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.601874;48.525444;;;; +;;;;;;;;FRFR1PS9CX3BOM9Y;IOXGW7EMIU;Le Mesnil-Amelot;;Parking du champs de Mars 05100 Briançon;;[2.829000,48.455761];;FRIENE0028012;FRCPIE67211552;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.343567;48.526657;;;; +;;;;;;;;FRFR1PKFRAWCIG6H;RNDADH3NG0;Le Plessis-Feu-Aussoux;;Place Jean Sapin 62780 Cucq;;[2.985625,48.941795];;FRIENE0028023;FRCPIE67211551;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.236135;48.684597;;;; +;;;;;;;;FRFR1PMV8MFFBHDJ;SYZW93FWG5;La Houssaye-en-Brie;;Rue Jean Jaurès 62780 Cucq;;[2.699950,48.300030];;FRIENE0028024;FRS37E1267;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.237932;48.678036;;;; +;;;;;;;;FRFR1PWMZPDCEPIA;WBFROMXNDZ;Iverny;;Avenue de la libération 62780 Cucq;;[3.427434,48.851772];;FRS88E177421;FRIONE409803;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.906949;48.702133;;;; +;;;;;;;;FRFR1POQT6PYP0AK;TK3O6QSGPC;Guerard;;Avenue Dutarte 78150 Le Chesnay-Rocquencourt;;[2.743907,49.025669];;FRS88E177423;FRS37E1258;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.435735;48.675091;;;; +;;;;;;;;FRFR1PKUPFNDHYBP;CA9CCNHNBW;Héricy;;Espace Saint-Germain Nord 38200 Vienne;;[2.828918,49.009220];;FRS28E139441;FRCPIE65350551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.657576;48.85722;;;; +;;;;;;;;FRFR1PLRZZVJ8N9E;QKJMLF9CKH;Hermé;;Square Vassy 38200 Vienne;;[3.253999,48.383236];;FRS28E139443;FRCPIE67337052;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.259898;48.139336;;;; +;;;;;;;;FRFR1PWC9D5OUSO6;QJ5GYSMHHX;Isles-les-Villenoy;;Parking Saint-Maurice 38200 Vienne;;[3.060808,48.452545];;FRFASE3310001;FRSHEE861;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.947197;48.44495;;;; +;;;;;;;;FRFR1PU4TXWRCMP1;VEVCZWWHW9;La Chapelle-Rablais;;Parking Saint-Pierre 38200 Vienne;;[2.890500000000000,48.606499999999997];;FRFASE3310002;FRSHEE854;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.835405;48.398796;;;; +;;;;;;;;FRS14PVRSXXFSM8G;UB39VOTDAV;Jaignes;;Place des Capucins 38200 Vienne;;[2.915816,48.789227];;FRFASE3310003;FRSHEE853;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.092751;48.231504;;;; +;;;;;;;;FRS14PDKNJSCFR5M;WULLAX36A5;Jouarre;;Parking François Mitterrand 38200 Vienne;;[2.603089,49.064533];;FRFASE3310004;FRSHEE852;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.080205;48.97871;;;; +;;;;;;;;FRS14PQE0UDZRZSN;VAWKTLVRWO;La Chapelle-la-Reine;;Place Saint-Paul 38200 Vienne;;[2.565315,48.580364];;FRFASE3310005;FRSHEE851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.92905;48.924843;;;; +;;;;;;;;FRS14PSRFJICA7UF;BALHQJMGSA;Machault - Pressoir;;Parc Relais Sud 38200 Vienne;;[2.830538,48.768833];;FRFASE3310006;FRS37E1252;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.891339;48.279121;;;; +;;;;;;;;FRS14PXJGG1BX1BV;KQ9R7VJ1CG;Montceaux-les-Meaux;;Espace Saint-Germain Sud 38200 Vienne;;[2.928877,48.335297];;FRS18E117886;FRS37E1251;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.602099;48.348167;;;; +;;;;;;;;FRS14POW2ZNJNSGE;AGLFNH;Montcourt-Fromonville;;Rue Emile Romanet 38200 Vienne;;[2.496094,48.373798];;FRS18E117885;FRS37E1378;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.708959;48.503139;;;; +;;;;;;;;FRS14PMRZST8CYGX;OAZ5L2OFUL;Montdauphin;;Quai Riondet 38200 Vienne;;[3.351060,48.452810];;FRCPIE66513952;FRS37E1250;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.011744;48.8218;;;; +;;;;;;;;FRS14PGTOZBG9FBP;beaucampsegl;Montge-en-Goele;;Rue de Louvenciennes 78150 Le Chesnay-Rocquencourt;;[3.229534,48.904442];;FRIONE432304;FRCPIE65823952;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.806383;48.971008;;;; +;;;;;;;;FRS14PMTZJ9GHEC9;GN7DXMH144;Monthyon;;Parking Saint-Louis 38200 Vienne;;[3.438183,48.694653];;FRS18E97770;FRCPIE65823951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.541457;48.482674;;;; +;;;;;;;;FRS14PQRFJYJHILI;UNE1XEQJFU;Montigny-le-Guesdier;;Carrefour de la Redingote 7804 Le Chesnay-Rocquencourt;;[2.615704,48.747417];;FRS18E97771;FRS37E1348;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.232304;48.529079;;;; +;;;;;;;;FRS14PRLM6CEWDCK;RCNKO7ZKC7;Montigny-Lencoup;;Boulevard Saint Antoine 78150 Le Chesnay-Rocquencourt;;[2.850102,48.349255];;FRS18E200950;FRS37E1249;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.915421;48.54184;;;; +;;;;;;;;FRS14PEUQ9MLUPEK;SZ5LMBLQWL;Mormant;;Rue des érables 78150 Le Chesnay-Rocquencourt;;[2.665210,48.626320];;FRS18E200951;FRCPIE65820752;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.828953;48.79105;;;; +;;;;;;;;FRS14PVYHQHHZGSX;AQAS4AR37L;Mortcerf;;Parly 2 (Av Charles de Gaulle) 78150 Le Chesnay-Rocquencourt;;[2.694243,48.626202];;FRIONE432301;FRCPIE65820751;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.848262;48.465767;;;; +;;;;;;;;FRS14PEIKF1QJBPH;YLDCBBAVTS;Moussy-le-Neuf;;ZA des grands champs;;[2.688477,48.511044];;FRIONE432302;FRCPIE65820652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.830368;48.56225;;;; +;;;;;;;;FRS14PQEINKRD3YH;GABMQWRAIZ;Nandy;;RUE DE LA FOLIE - ROND POINT DES TROIS CANONS 85200 Fontenay-le-Comte;;[3.026891,49.025196];;FRIONE432303;FRCPIE65820651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.772659;48.69384;;;; +;;;;;;;;FRS14PSWIRJOHWIU;QFEYWXCVA1;Neufmoutiers-en-Brie;;944 CHEMIN DE LA MONTAGNE;;[3.246524,48.513992];;FRIONE43235;FRSHEE862;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.773878;48.922424;;;; +;;;;;;;;FRS14PES3CPUZTN9;SYTNVNRXVA;Noisy-Rudignon;;BOULEVARD DU PARNASSE - CHATILLON SUR THOUET 79200 Parthenay;;[2.700226,48.548374];;FRCPIE66513951;FRSHEE871;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.969121;48.416935;;;; +;;;;;;;;FRS14PHUK16Y2VIO;AVEKYZHJ5W;Noisy-sur-Ecole;;ROUTE DE NANTES - ZA L'ALIETTE QUADRANT 79300 Bressuire;;[2.991441,48.862556];;FRS18E98496;FRSHEE872;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.664648;48.882027;;;; +;;;;;;;;FRS14PRH6ES7OMSP;KZERYWQHLC;Noyen-sur-Seine;;7 route de Chavagne 35310 MORDELLES;;[3.151188,48.558975];;FRS18E98497;FRCPIE65857152;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.003289;48.257244;;;; +;;;;;;;;FRS14PNJAYNI3IS5;DZPQJFHGIZ;Orly-sur-Morin;;6 route de Chavagne 35310 MORDELLES;;[2.771959,49.049637];;FRIENE0068011;FRCPIE67337051;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.165309;48.195572;;;; +;;;;;;;;FRS14PQETEMVQZCG;LLJMKO2YP5BIF6;Montceaux-les-Provins;;9 route de Chavagne 35310 MORDELLES;;[2.859685,48.926731];;FRIENE0068012;FRCPIE65866852;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.376131;48.895916;;;; +;;;;;;;;FRS14PULAU7GGFK3;FPVIHBM6KU;Lésigny - centre commercial;;8 route de Chavagne 35310 MORDELLES;;[3.034994,48.386250];;FRIENE0068023;FRCPIE65866851;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.406241;48.958482;;;; +;;;;;;;;FRS14PGHMUTKEBFR;LCYZMPMIOE;Montarlot;;11 route de Chavagne 35310 MORDELLES;;[3.163473,48.776600];;FRIENE0068024;FRCPIE65866352;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.599086;48.644661;;;; +;;;;;;;;FRS14PRKAVXVKURO;ICFNBQATMH;Limoges-Fourches;;10 route de Chavagne 35310 MORDELLES;;[2.581679,49.033890];;FRS28E139425;FRCPIE65866351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.672179;49.046368;;;; +;;;;;;;;FRS14PEKPWNBEKEL;HV7UHB3KKC;Lissy;;127 rue de Normandie;;[2.951969,48.555733];;FRS18E96970;FRCPIE65857652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.895756;48.688385;;;; +;;;;;;;;FRS14PQ7PXNU5TGT;CK6TYRZRSZ;Livry-sur-Seine;;10 RUE SAINT BARBE 21700;;[3.219879,48.758823];;FRS18E196424;FRCPIE65857651;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.343021;48.375946;;;; +;;;;;;;;FRS14PMNMLPFSE3R;CVPTFRAEJ5;Lizy-sur-Ourcq - Mairie;;249 avenue jean jaures 95100;;[2.906715,48.858112];;FRS55E122900;FRCPIE65857151;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.740637;48.44434;;;; +;;;;;;;;FRS14PTKVDATEIGS;HKXDNK2J5W;Longueville;;19 Boulevard Louise Michel 92230 Gennevilliers;;[2.998514,48.469975];;FRCPIE67270952;FRSHEE881;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.048279;48.342205;;;; +;;;;;;;;FRS14PLJYDD69MZG;NCNAZHKRLA;Maincy;;Aire de phalempin ouest - Autoroute A1 - 59113 Seclin;;[2.960665,48.647747];;FRFASE3310308;FRCPIE65843352;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.29573;48.58168;;;; +;;;;;;;;FRS14PGH4NB90TR9;VRAPXJYUMM;Mainsoncelles-en-Brie;;Aire de ressons ouest - Autoroute A1 - 60490 Ressons;;[3.082370,48.815000];;FRFASE3310307;FRCPIE65843351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.639528;48.735561;;;; +;;;;;;;;FRS14PQM29QD00GP;MNZELUZI7A;Maison-Rouge-en-Brie;;Aire de croixrault- Autoroute A29 -80290 Croixrault;;[3.085838,48.813820];;FRFASE3310306;FRCPIE65842552;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.238447;49.039307;;;; +;;;;;;;;FRS14PLXEN3QKGGW;RT1WHVS374;Marchemoret;;Aire de morainvilliers nord - Autoroute A13 -78630 Morainvilliers;;[2.974578,49.006927];;FRFASE3310305;FRCPIE65842551;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.233131;48.499256;;;; +;;;;;;;;FRS14PHYNZH5Z54R;TNM3OXB3T1;Mareuil-les-Meaux;;Aire de la sentinelle ouest - Autoroute A2 -59174 La sentinelle;;[2.687649,48.945904];;FRFASE3310304;FRCPIE65836252;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.62365;48.792183;;;; +;;;;;;;;FRS14PL7FSMQ3K4U;EJ0APYSPRG;Marolles sur seine;;Aire de mont de nizy - Autoroute A26 -02190 Juvinvourt et damary;;[2.909066,48.857899];;FRFASE3310303;FRCPIE65836251;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.023394;48.558926;;;; +;;;;;;;;FRS14PAEY2CFNUTF;LLIIF9G1T2E4ZZ;Marolles-en-Brie;;Aire de morainvilliers sud - Autoroute A13 -78630 Morainvilliers;;[3.195108,48.616379];;FRFASE3310302;FRSHEE882;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.281679;48.578262;;;; +;;;;;;;;FRS14PDI3I8QNHXO;CYGBUJHGBQ;Mauregard;;Aire de beuzeville nord - Autoroute A13 -27210 Beuzeville;;[2.841548,48.664284];;FRFASE3310301;FRCPIE65171352;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.040816;48.325367;;;; +;;;;;;;;FRS14POUXSBPXK6V;MA9BCHTCYB;Fontenailles;;Aire de la sentinelle est - Autoroute A2 -59125 Trith saint léger;;[3.184065,48.817730];;FRS18E95969;FRCPIE65794052;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.984761;48.813721;;;; +;;;;;;;;FRS14PTPQYPCO3UW;XGXZ9LPBQY;Choisy-en-Brie;;Aire de beuzeville sud- Autoroute A13 -27210 Beuzeville;;[2.837548,48.973423];;FRS18E95968;FRN54E187032;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.18528;48.660645;;;; +;;;;;;;;FRS14PG1IUADBW5Q;RE6ZKCKSUU;Crécy-la-Chapelle / Champs de Foire;;Aire de brumath ouest- Autoroute A4 -67170 Brumath;;[2.835017,48.529648];;FRIENE0038024;FRCPIE66055251;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.552458;48.637527;;;; +;;;;;;;;FRS14PVK9H0DVFDH;BBNL2YXVNI;Coutençon;;Aire de brumath est- Autoroute A4 -67170 Brumath;;[2.626480,48.233624];;FRIENE0038023;FRS37E1198;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.079428;48.282539;;;; +;;;;;;;;FRS14PC8PSNTNXXV;G3CWYWKLKX;Courpalay;;Aire de phalempin est - Autoroute A1 - 59113 Seclin;;[3.096748,48.419575];;FRIENE0038012;FRSPSESHEL411;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.69905;48.571087;;;; +;;;;;;;;FRS14PQADLCK0CXV;T9THS0ZXQQ;Coulommiers - Rue Victor Hugo;;Aire de champs roland- Autoroute A26 -02190 Villeneuve sur aisne;;[2.907660,48.753960];;FRIENE0038011;FRS37E1186;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.324744;48.690327;;;; +;;;;;;;;FRS14PXMBUXALML9;M4TBD6CVLX;Coulommiers - Place Pasteur;;CD 224 59570 Bellignies;;[2.654417,48.243546];;FRCPIE67271152;FRS37E1184;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.35406;48.439373;;;; +;;;;;;;;FRS14PX48FPHUJQU;LLJR8Z3PDHQEH0;Congis-sur-Thérouanne;;Aire de Dole Audelange - Autoroute A36 - 39700 Audelange;;[2.922666,48.312195];;FRCPIE67271151;FRCPIE65713452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.73093;48.455891;;;; +;;;;;;;;FRS14PO0GXWLZLG0;XF6G40NMKY;Claye-Souilly - parking la Poste;;Aire de lyon montluel - Autoroute A42 -01120 Dagneux;;[2.961401,48.418995];;FRCPIE67271052;FRCPIE65713451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.717254;48.649963;;;; +;;;;;;;;FRS14PTDEMGY1AN7;O3TJBYM5LC;Crécy-la-Chapelle / Mairie;;Aire de venoy soleil levant - Autoroute A6 -89290 Venoy;;[2.744265,48.939857];;FRN54E187398;FRSPSESHEL1111;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.961653;48.494175;;;; +;;;;;;;;FRS14PTUU49NLCLV;YLUVTVJOGE;Chenoise;;Aire de l'allier doyet - Autoroute A71 -03170 Doyet;;[3.293563,48.482601];;FRN54E187399;FRCPIE66550252;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.289959;48.900551;;;; +;;;;;;;;FRS14PZ454AWT7LX;UX2IS8EDAX;Chaumes-en-Brie;;Aire de l'allier saulzet - Autoroute A71 -03170 Doyet;;[3.120485,48.398468];;FRIENE0030011;FRCPIE66550251;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.549188;48.342731;;;; +;;;;;;;;FRS14PCTHD3M2P9Z;JTNVJKIPME;Chauffry;;Aire de montigny le roi - Autoroute A31 -52140 Val de Meuse;;[2.671611,48.965435];;FRIENE0046023;FRCPIE65713652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.750641;48.861053;;;; +;;;;;;;;FRS14PINJBEBIMWZ;AEFATBNYGL;Chauconin-Neufmontiers;;Aire de Beaune Merceuil - Autoroute A6 - 21190 Merceuil;;[2.756482,48.486507];;FRIONE440706;FRCPIE65713651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.582113;48.758305;;;; +;;;;;;;;FRS14PKIWGD0YPCW;J9YFZ96UNZ;Chatillon-la-Borde;;Aire de Chateauvillain - Autoroute A5 - 52120 Chateauvillain;;[3.391620,48.413940];;FRIONE440705;FRCPIE65713352;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.068419;48.875221;;;; +;;;;;;;;FRS14PCTQR1SV2HQ;Y6GYO7OHI0;Chatenoy;;Aire d'achères Est - Autoroute A6 - 77600 Ury;;[2.800000,48.457500];;FRIONE440704;FRCPIE65713351;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.51;48.346184;;;; +;;;;;;;;FRS14PYGKZQ5NRRM;XPTGCMDV0U;Chatenay-sur-Seine;;Aire de La Foret - Autoroute A6 -21360 Bligny sur ouche;;[2.674363,48.230656];;FRIONE440703;FRCPIE65713252;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.04;48.850102;;;; +;;;;;;;;FRS14PKTL39IK8IX;PGRUBML7KD;Crèvecoeur-en-Brie;;Aire de Galande La Mare Laroche - Autoroute A36 - 77550 Reau;;[2.945185,48.463512];;FRIONE440702;FRCPIE65713251;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.97;48.848412;;;; +;;;;;;;;FRS14PZUIJICJJYI;S9CNIAGWFB;Ormesson;;Aire de villeneuf l'archeveque - Autoroute A5 -89190 Villeneuve l'archeveque;;[3.139536,48.476547];;FRIONE440701;FRCPIE67377552;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.131164;48.610615;;;; +;;;;;;;;FRS14PJJ44TQLKVR;R82R4YH1ZS;Flagy;;Aire de Chateauvillain Val Marnay - Autoroute A5 - 52120 Chateauvillain;;[2.684942,49.053848];;FRIENE0046024;FRCPIE67377551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.9797605;48.421993;;;; +;;;;;;;;FRS14PWX6KIL9ED5;HUD0LV94TU;Forges;;2 rue legrand girac 16470 Saint Michel;;[2.635144,48.515441];;FRIENE0046012;FRS37E1199;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.402206153869494;48.539558;;;; +;;;;;;;;FRS14PRTYRGHNJ1K;KAHQKZVTML;Fresnes-sur-Marne;;19 Rue des Islandais, 59820 Gravelines;;[3.068942,49.090664];;FRIENE0030012;FRIONE439701;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.556822342990649;48.899723;;;; +;;;;;;;;FRS14PW0OVAVEOX2;VRYGY9TY8G;Gouaix;;18 Avenue de la Marne, 47520 Le Passage;;[2.701190,48.149586];;FRIENE0046011;FRIONE439702;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.311405;48.734184;;;; +;;;;;;;;FRS14PDTBNNOB9WY;TXZL7KODSA;Gravon;;Av. Eugène Vernholes, Dourdan;;[2.700847,48.488678];;FRIENE0052024;FRIONE440201;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.051543085729363;48.906219;;;; +;;;;;;;;FRS14PIVMBTJCG7K;WT3OVRA4UG;Gressy;;4 Bd de la Canche, 62520 Le Touquet-Paris-Plage;;[3.188327,48.398651];;FRIENE0052023;FRS37E1208;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9722276;48.474224;;;; +;;;;;;;;FRS14PZJXRR5YPFP;BBULJZHSML;Fontaine-le-Port;;Eurotunnel Flexiplus - Boulevard de l'europe - 62231 Coquelles;;[2.570593,48.525444];;FRIENE0052012;FRIONE44025;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9863507;48.656075;;;; +;;;;;;;;FRS14PX76NRT9OK4;FADPDFV1VI;Fontaine-Fourches;;Parking Eurotunnel Charles Dickens - 62231 Coquelles;;[2.588406,48.526657];;FRIENE0052011;FRIONE440206;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.6536518;48.652874;;;; +;;;;;;;;FRS14PR8RWH8HXZS;AGMLBZ12K4;Féricy;;13 Rue Lavoisier 77400 Lagny-sur-Marne;;[3.226534,48.684597];;FRIENE0030024;FRIONE440205;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.081249;48.566856;;;; +;;;;;;;;FRS14PATTXYEMZSE;RXLCWHBKRY;Faÿ-les-Nemours;;12 Av. Fridingen 77100 Nanteuil-lès-Meaux France;;[3.242850,48.678036];;FRIENE0030023;FRIONE440204;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.765641424794523;48.537212;;;; +;;;;;;;;FRS14PXLR3DJICQY;CITGXODUAA;Echouboulains;;2 RUE BRANLY 77400;;[3.244617,48.702133];;FRCPIE67271051;FRIONE440203;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0722651;48.18083;;;; +;;;;;;;;FRS14PAGX3GVGGGP;LLINATGFY10GT3;Donnemarie-Dontilly - Monpensier;;Aire de lormaison ouest - Autoroute A16- 60110 Lormaison;;[2.938246,48.675091];;FRCPIE67270951;FRIONE440202;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0725349;48.657776;;;; +;;;;;;;;FRS14PBSWUMHG7ZY;D2EUNOUMJS;Dammartin-en-Goële;;Aire de longeville sud - Autoroute A4 - 57740 Longeville Les St Avold;;[3.318183,48.857220];;FRIONE440708;FRS37E1207;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.52645;48.885735;;;; +;;;;;;;;FRS14PGI08L1LAZG;SILXS1RMLH;Dammarie-lès-Lys;;Aire de lormaison est - Autoroute A16- 60110 Lormaison;;[2.478393,48.139336];;FRCPIE67270852;FRIONE439703;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0767992;48.509865;;;; +;;;;;;;;FRS14PW3FDKK3Y4Y;G7YCDUZGUS;Crouy-sur-Ourcq;;Aire de longeville nord - Autoroute A4 - 57740 Longeville Les St Avold;;[2.603382,48.444950];;FRIONE454513;FRS37E1206;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.935854;48.557755;;;; +;;;;;;;;FRS14PBJLVQM5TAS;AUUTZ5ZPWK;Château-Landon;;4 rue de la glacerie 50200 Coutances;;[3.146731,48.398796];;FRIONE454512;FRS37E1201;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.64;48.52702;;;; +;;;;;;;;FRS14PT6CP8IZJCW;XL2OE745FF;Chartrettes;;5 rue des Landgraves;;[2.706278,48.231504];;FRIONE454511;FRS37E1200;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.10671;48.596577;;;; +;;;;;;;;FRS14PBXFKK77EJT;WV21IYOQMR;Bazoche-les-Bray;;28 CHE DU CAT 03110 COGNAT-LYONNE;;[3.021658,48.978710];;FRIONE454510;FRIONE43975;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5774003;48.92791;;;; +;;;;;;;;FRS14PSAKCOZYZCV;B4SFETIVZ4;Boissise-le-Roi - Centre;;135 ROUTE DE PONTENX 40160 PARENTIS EN BORN;;[2.718575,48.924843];;FRIONE454509;FRIONE439706;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9277708;43.54;;;; +;;;;;;;;FRS14PNPPA9S0IZH;C0EV8XYVBH;Boissise-la-Bertrand;;20 Rte de Bergues, 59210 Coudekerque-Branche, France;;[2.531976,48.279121];;FRIONE454502;FRIONE439705;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.03;43.85;;;; +;;;;;;;;FRS14PKPSZKEMHNF;ZJ0HFJ186C;Boisdon;;258 ROUTE DE VAISON;;[2.564140,48.348167];;FRIONE454501;FRIONE439704;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3196844;45.73;;;; +;;;;;;;;FRS14PA1BDJHEJBW;JJVAYN6WHW;Bezalles;;4 avenue marchande 57520;;[2.561816,48.503139];;FRIONE40995;FRCPIE66055252;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0558528;45.963065;;;; +;;;;;;;;FRS14PPISAGDEROT;ZYKZJX4FHI;Beton-Bazoches;;183 RUE DES RAYMONDS - 26220 DIEULEFIT;;[3.138290,48.821800];;FRIONE409906;FRCPIE65711851;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.192107439041139;48.6682107;;;; +;;;;;;;;FRS14PY6SL8CGLG1;JRR1WB5NO2;Bernay-Vilbert - Salle des fêtes;;420 CHEMIN DES PERSEDES 07 170 LAVILLEDIEU;;[2.760311,48.971008];;FRIONE409905;FRS37E1214;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.251979;50.483224599077815;;;; +;;;;;;;;FRS14PWDURE5OIIU;KGVGVFMDMV;Bellot;;LE PRIEURE 04350 MALIJAI;;[3.250729,48.482674];;FRIONE409904;FRSPSESHEL111;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.655559;48.69566871299743;;;; +;;;;;;;;FRS14PTTGYEWCD4D;TQJ9C4BJCW;Beaumont-du-Gâtinais;;Zac Reffye 1 - 11 Rue du général Reffye - 88000 Epinal;;[3.314407,48.529079];;FRIONE409901;FRCPIE65675252;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.336322;46.354612;;;; +;;;;;;;;FRS14PJERHB0BEAB;V7SFAZJTXG;Barbizon - Office de tourisme - AC;;Les Woodies - 12 rue de le vallée de l'aitre - 88220 Xertigny;;[3.459796,48.541840];;FRFASE3310808;FRCPIE65675251;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.09623;48.16127710253362;;;; +;;;;;;;;FRS14PPGOVR7LE8Z;ST9EIX80RW;Balloy;;Reservoir de bouzey - 233 Chemin des plages - 88390 Chamousey;;[3.124815,48.791050];;FRFASE3310807;FRCPIE65674552;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.959227;50.4945611;;;; +;;;;;;;;FRS14PCKEU2AXBPX;X6FFTH2H2I;Bagneaux sur Loing;;ZA Innova 3000 1 - 1 rue du ruisseau - 88150 Thaon Les Vosges;;[2.607938,48.465767];;FRFASE3310806;FRCPIE65674551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.111005;50.4699234;;;; +;;;;;;;;FRS14PG4DK6RTQ3D;IVCJMMNKKB;Armentières-en-Brie;;Zac Reffye 2 - Rue du général Reffye - 88000 Epinal;;[2.601874,48.562250];;FRFASE3310805;FRCPIE66424752;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.169503;50.636603699999;;;; +;;;;;;;;FRS14PRJ5B3FAJRM;MCOGHNKVCW;Annet-sur-Marne;;Hotel de l'innovation bois - 3 avenue Pierre Blanck - 88000 Epinal;;[3.343567,48.693840];;FRFASE3310804;FRCPIE66424751;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.65557;49.23891;;;; +;;;;;;;;FRS14PFLQCEIECNA;FVPEOSH3BV;Amponville;;Parking Pisine Lederlin - 11 avenue Armand Lederlin - 88150 Capavenir Vosges;;[3.236135,48.922424];;FRIONE454514;FRCPIE65672052;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.323656;45.80602585384945;;;; +;;;;;;;;FRS14PL9PDURSKHV;GDZIWFR8Y4;Achères-la-Forêt;;Piscine Olympique Roger Goujon - 2 Avenue Salvador Allende - 88000 Epinal;;[3.237932,48.416935];;FRIONE454515;FRCPIE65672051;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.331869;49.0455191;;;; +;;;;;;;;FRS14PXOUSTRWIIJ;JAXAX0EZZT;Boissise-le-Roi - Orgenoy;;Piscine Olympique Roger Goujon - 25 Rue Alphonse de Lamartine - 88000 Epinal;;[2.906949,48.882027];;FRIONE454516;FRCPIE65671352;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34201;49.0444744;;;; +;;;;;;;;FRS14PMEUKZBWL9R;XARMSHHUZH;Boissy-le-Châtel;;ZA La Voivre - Le Saut Le Cerf 2 - 34 Rue de la Bazaine - 88000 Epinal;;[2.435735,48.257244];;FRIONE408703;FRCPIE65671351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.44438;48.75191;;;; +;;;;;;;;FRS14PANOW48R3FC;LC5TWHDA5O;Charny;;Stade Pierre Pretot - 14 rue de sanchey - 88390 Uxegney;;[2.657576,48.195572];;FRCPIE67270851;FRS28E128795;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.334355;44.3455705;;;; +;;;;;;;;FRS14PDELR9H5LME;NSOAC8FZQK;Chalmaison;;Piscine Germain Creuse - 29 Rue général Leclerc- 88190 GOLBEY;;[3.259898,48.895916];;FRCPIE66900452;FRCPIE65665652;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.057926;49.32408;;;; +;;;;;;;;FRS14POIXFQFMHLO;Bovesoreno;Chalautre-la-Petite;;ZA Ermitage - 66 Voie Carpini - 88130 Charmes;;[2.947197,48.958482];;FRCPIE66900451;FRCPIE65665651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.817843;48.89223;;;; +;;;;;;;;FRS14PJ2CAXWCJQ2;ZROITA;Chalautre-la-Grande;;Réservoir de Bouzey - 233 Chemi des plages - 88390 Chaumousey;;[2.835405,48.644661];;FRCPIE66894152;FRCPIE66995852;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.094046;43.2402602;;;; +;;;;;;;;FRS14PZ7TCFV54RM;Bovesindes;Chailly-en-Brie;;ZA Jeanne d'Arc - 26 Allée des marronniers- 88190 GOLBEY;;[3.092751,49.046368];;FRCPIE66894151;FRCPIE66995851;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.115604;42.6585884;;;; +;;;;;;;;FRS14PYBCAAXHFBE;fortmahonparis;Chailly-en-Bière - Général Leclerc;;Chantraine mairie - 2 Impasse Payonne - 88000 CHANTRAINE;;[3.080205,48.688385];;FRIONE40875;FRCPIE66995752;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.39;51.0175233;;;; +;;;;;;;;FRS14PBJGJFYAMMJ;SJSVRY;Cesson;;Chantraine eglise - 12 Place de l'église - 88000 CHANTRAINE;;[2.929050,48.375946];;FRIONE408704;FRCPIE66995751;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.781118;43.12799930000001;;;; +;;;;;;;;FRS14PKARW5YQ2G0;Longprestade;Cerneux;;Stade truzey - 1101 ZI de trusey - 88390 Chaumousey;;[2.891339,48.444340];;FRIONE408702;FRSPSESHEL911;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.988465421806449;43.6967734467621;;;; +;;;;;;;;FRS14PLA2MHNO1J0;TEXNBQ;Bussières;;ZA Les Mitroches - 130 Chemin des mitroches - 88390 Girancourt;;[2.602099,48.342205];;FRIONE45455;FRCPIE67372151;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.3402467383073846;49.410967;;;; +;;;;;;;;FRS14PVFSQFDC7FS;Senarpaum;Bray-sur-Seine;;ZA La fougere - 9 rue de la plaine - 88150 Chavelot;;[2.708959,48.581680];;FRIONE408701;FRCPIE67372152;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1198560355938945;49.56802;;;; +;;;;;;;;FRS14PBKLEA4YHK3;Abbevital;Bouleurs;;5 Rue de la Bazaine 88000 Epinal;;[3.011744,48.735561];;FRIONE101406;FRCPIE65702752;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.135471415628564;51.022253;;;; +;;;;;;;;FRS14PCLLQAPXJGQ;bovesfde80;Boulancourt;;Rue d'Oncourt 88150 Capavenir Vosges;;[2.806383,49.039307];;FRIONE101405;FRCPIE65711552;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.5139025;49.347188;;;; +;;;;;;;;FRS14PCPSHDAIWXX;JEGRRW;Bougligny;;Avenue du Peintre Monchablon 88130 CHARMES;;[2.541457,48.499256];;FRIONE101404;FRCPIE65711551;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.136921215344072;49.540126;;;; +;;;;;;;;FRS14PDATGNHU3DP;WVTPRJ;Boitron;;1 Rue de la Fôret 88150 Thaon Les Vosges;;[3.232304,48.792183];;FRIONE101403;FRCPIE65704552;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4524017;49.40844;;;; +;;;;;;;;FRS14PQ7EG4SVFR8;XXXBPV;Trilport - Mairie;;5 Rue Général Leclerc 88240 La Vôge-les-Bains;;[2.915421,48.558926];;FRIONE101402;FRCPIE65704551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5428274;49.016271;;;; +;;;;;;;;FRS14PUW8EXZVJSE;CF7MTSVDNC;Verneuil-l'Etang;;22 RUE DU BIGNON, 35000 RENNES;;[2.828953,48.578262];;FRIONE101401;FRCPIE65704452;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0734169;49.568055;;;; +;;;;;;;;FRS14PQTJUNHZSQB;LLJ5RGFW83IU2L;Vendrest;;55 Route nationale le bois;;[2.848262,48.325367];;FRIONE440707;FRCPIE65704451;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.3592;49.209081;;;; +;;;;;;;;FRS14PRJC5UJDFHM;MK1KUGXZJN;Vaudoy-en-Brie;;340 route de la grappe fleurie - 69820 fleurie;;[2.830368,48.813721];;FRIONE44075;FRSPSESHEL1521;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.361448;47.612421;;;; +;;;;;;;;FRS14PQ8JNTUN4KO;BEEUFP;Varennes-sur-Seine;;route d'orange - 84110 rasteau;;[2.772659,48.660645];;FRFASE3310802;FRCPIE65702751;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.472599;47.046528;;;; +;;;;;;;;FRS14PPMGS18OQBS;PJXCC6BZCI;Valence-en-Brie;;D30 - 34480 PUISSALICOM;;[2.773878,48.637527];;FRCPIE67142752;FRCPIE67372751;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.398142;44.913949;;;; +;;;;;;;;FRS14PEINYNUPISK;58aebbfece386;Ury - Mairie;;chateau saint pierre de serjac - 34480 PUISSALICON;;[2.969121,48.282539];;FRIONE454109;FRS37E11018;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.2339028;50.997593;;;; +;;;;;;;;FRS14PBKNQO1ST1J;BZJXPH;St-Germain-Laxis;;717B Chemin de Saint-Marc 84120 Pertuis;;[2.664648,48.571087];;FRIONE454108;FRS37E11017;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.985609;50.383609;;;; +;;;;;;;;FRS14PVRHCX96IT0;VFTYGS;Touquin;;Route de Miramas 13300 Salon-de-Provence;;[3.003289,48.690327];;FRIONE454107;FRCPIE67373052;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.8647466;50.453351;;;; +;;;;;;;;FRS14PWNPDHQMXEF;KZMJLP;St-Soupplets;;6 place marechal leclerc 09500;;[3.165309,48.439373];;FRIONE454106;FRCPIE67373051;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.61;49.477319;;;; +;;;;;;;;FRS14PNZAMOLTFQS;Woincourtkleb;St-Sauveur-sur-Ecole;;1 AVENUE DE CARROS 06510 CARROS;;[3.376131,48.455891];;FRIONE454105;FRCPIE67372952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.72;50.682161;;;; +;;;;;;;;FRS14PC7MVLEKOXT;Sainsenamien;St-Rémy-la-Vanne;;QUARTIER HELIOS 64270 SALIES DE BEARN;;[3.406241,48.649963];;FRIONE454104;FRCPIE67372951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4978048;47.592013;;;; +;;;;;;;;FRS14PEP02VR6FM7;Quevauvifet;St-Ouen-en-Brie;;Rue Christophe Colomb;;[2.599086,48.494175];;FRIONE454103;FRCPIE67372752;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.073056;45.71576869086339;;;; +;;;;;;;;FRS14PMQRZ3VP5TF;feuquiereszi;St-Méry;;ZA, 67 Chem. de l'Étang Girard, 38270 Revel-Tourdan;;[2.672179,48.900551];;FRIONE454102;FRS37E1209;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.380825275475741;43.612262376081546;;;; +;;;;;;;;FRS14PKWSB5QN7ZK;QXFFCP;Villecerf;;223 Rte de Bourg, 01750 Replonges;;[2.895756,48.342731];;FRIONE454101;FRS37E1215;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.919329;45.90210582751428;;;; +;;;;;;;;FRS14PNWNXQPH8TD;PKNFQU;Villeneuve-le-Comte;;50 Boulevard Charles de Gaulle 49800 Trélazé;;[3.343021,48.861053];;FRS88E184033;FRCPIE65794051;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.016626;44.079339763735184;;;; +;;;;;;;;FRS14PJCXRAXISUD;TCSM2FPN91;Ozouer-le-Voulgis;;17 Rue des Alouettes 94320 THIAIS;;[2.740637,48.714993];;FRS88E184031;FRS37E7746;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.39091984844480976;42.1140208;;;; +;;;;;;;;FRS14PLUSPLHMJTM;MBFALP;Yebles;;32 Rue Edouard Aubert 91700 Fleury-Merogis;;[3.048279,48.758305];;FRIENE0048024;FRS37E1244;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.01672;41.50017664596053;;;; +;;;;;;;;FRS14PCSMXC6RE5P;corbie11nov;Voulx - Grande rue;;510 Avenue du Général de Gaulle;;[3.295730,48.875221];;FRIENE0048023;FRCPIE65769852;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.578864;48.2368506;;;; +;;;;;;;;FRS14PAU5QM7JWO3;KNVSCR;Voisenon;;23 rue de islandais;;[2.639528,48.346184];;FRIENE0048012;FRCPIE65769851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.3532908;50.7244213;;;; +;;;;;;;;FRS14PLJ98RD5Z2B;Stsauveur;Voinsles;;6 Rue Charles Peguy 64800 COARRAZE;;[3.238447,48.850102];;FRIENE0048011;FRCPIE65769652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.19848589;48.5665745;;;; +;;;;;;;;FRS14PG7U2LCCD4Y;stquenteglise;Vimpelles;;3 RUE DU GROUPE MANOUKIAN 78990 Élancourt;;[3.233131,48.848412];;FRCPIE67392251;FRCPIE65769651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.16642619;43.810977;;;; +;;;;;;;;FRS14PNBKCJUXTTW;fressenneti;Villiers-sur-Seine;;145, rue Pasteur, Chasse sur Rhône, 38670;;[2.623650,48.610615];;FRCPIE67142852;FRS41E139036;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.217966;43.812247;;;; +;;;;;;;;FRS14PZUGT4ZAI25;ault11nov1918;Villiers-St-Georges;;206 Rue des Peupliers, 74330 Epagny Metz-Tessy;;[3.023394,48.421993];;FRIONE454110;FRS41E139035;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.71177102;48.084312;;;; +;;;;;;;;FRS14PEO8WQHNMPB;TNUUY1QGPQ;Villiers-en-Bière;;86 Rue Ingénieur Sansoube, 74800 La Roche-sur-Foron;;[3.281679,48.539558];;FRIONE454111;FRS41E139034;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.677204;43.754762;;;; +;;;;;;;;FRS14POIGASENV23;L6TZIUSYVL;Villevaudé;;368 Rue de la Tuilerie, 74330 Epagny Metz-Tessy;;[3.040816,48.899723];;FRIONE454112;FRS41E139033;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.0553447;44.4425322;;;; +;;;;;;;;FRS14PS0QPPXPGJG;BRYYWZ;Ville-St-Jacques;;31, Rue Francis Carco, Plaisir, 78370;;[2.984761,48.734184];;FRCPIE66426051;FRCPIE65768352;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.489271;50.273541;;;; +;;;;;;;;FRS14PH9D6ILYVTS;UY61K2MLMX;Villeneuve-sur-Bellot;;60 Rte des Creuses, 74960 Annecy;;[3.185280,48.906219];;FRCPIE66458952;FRCPIE65768351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.460921;45.644607;;;; +;;;;;;;;FRS14PE4PPW00CLV;LLHU7YHXF1J6VY;Presles-en-Brie;;475 Rue du Quarré, Amancy, 74800;;[2.552458,48.474224];;FRCPIE66458951;FRS41E139064;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.437953;45.59;;;; +;;;;;;;;FRS14PFH2Y5F6VYX;XHCTBI3W6P;Saints;;70 a Avenue Froiçois Pignier, Bourg-en-Bresse, 01000;;[3.079428,48.656075];;FRCPIE66426252;FRS41E139063;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.437902;44.8526111;;;; +;;;;;;;;FRS14PY6V0AW4AW2;RTRSPB;Sablonnière;;1 ALLEE DU GOLF;;[2.699050,48.652874];;FRCPIE66426251;FRS37E21830;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.463516;49.101681;;;; +;;;;;;;;FRFR1PDCQLQDZEBO;YQAMRV;Recloses;;ROUTE DE LA DURANCE 04100 MANOSQUE;;[3.324744,48.566856];;FRCPIE66426152;FRCPIE65757852;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.58792319;44.288984939376896;;;; +;;;;;;;;FRFR1PGIKZ0YEDUA;AMBXBA;Rebais - aire covoiturage;;9-11 RUE BENOIT FOURNEYRON - 66000 PERPIGNAN;;[3.354060,48.537212];;FRCPIE66426151;FRCPIE65757851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.593893;47.641884;;;; +;;;;;;;;FRFR1POCKE9RJCWK;ASSGXF;Rebais;;CHEMIN DE LA PEINE 84820 VISAN;;[2.730930,48.180830];;FRCPIE66426052;FRSPSESHEL611;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.0521514;43.611925;;;; +;;;;;;;;FRFR1PYUKUFV;C1UPCJWJBM;Reau;;abbaye de Valmagne 34560 villeveyrac France;;[2.717254,48.657776];;FRCPIE66425652;FRS37E1245;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.11574545;49.20079970020356;;;; +;;;;;;;;FRS14PTJTE9E9IPY;GWBBXYWGGI;Salins;;2788 Route de la Madeleine 97300 Cayenne;;[2.961653,48.885735];;FRIONE454113;FRFASE3309901;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.251641;43.6121039;;;; +;;;;;;;;FRS14PN46VHJDQAK;LIRJJZROMK;Poigny;;130 Avenue joseph kess;;[3.289959,48.509865];;FRCPIE66425651;FRFASE3309902;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.2476458;45.704218;;;; +;;;;;;;;FRS14PAPLE3YWA6J;B4S2UL0ROL;Pierre-Levée;;188 route d'uxem;;[2.549188,48.557755];;FRCPIE66666252;FRFASE3309912;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.04221723;46.65044958;;;; +;;;;;;;;FRS14PEZYDLQMDET;GBLJBTXKT8;Pézarches;;94 rue Bergson 42000 Saint Etienne;;[2.750641,48.527020];;FRCPIE66666251;FRCPIE65779352;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.08293332;46.41558618;;;; +;;;;;;;;FRS14PLNBVCEOPZC;XETDNE;St-Cyr-sur-Morin;;228 RTE DE CARPENTRAS 84190 BEAUMES DE VENISE;;[2.582113,48.596577];;FRIONE45415;FRCPIE65779351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.055385;46.78781078;;;; +;;;;;;;;FRS14PE7G17KGQS8;IRFUTY0EAR;Perthes-en-Gatinais;;rue de roubaix 59123;;[3.068419,48.927910];;FRIONE454116;FRSPSESHEL211;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.34483773;46.962352;;;; +;;;;;;;;FRS14PFJDPVYD3VM;IQYT3DE6ZN;Pécy;;51 rue parmentier 59430 saint pol sur mer;;[1.51,43.54];;FRIONE454115;FRFASE3309916;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.40244332;46.26240115;;;; +;;;;;;;;FRS14PM5E6SNDFBJ;DP1GJBV0RC;Soignolles-en-Brie - rue de Champeaux;;22 RUE ALBERT CUENIN 59240 DUNKERQUE;;[5.04,43.85];;FRIONE454114;FRFASE3309915;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.248314;46.782245;;;; +;;;;;;;;FRS14PUTPIDLSOX7;LTNIZVT1SZ;St-Brice;;4 Rue du Mont de Piété, 59380 Bergues;;[4.97,45.73];;FRCPIE67142851;FRFASE3309914;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5557142;46.3959629;;;; +;;;;;;;;FRS14PHHQQUNK71G;NV41MYEPGH;Sourdun - Petit Paraclet;;3 Rue Château Gaillard 85500 Les Herbiers;;[6.131164, 45.963065];;FRCPIE67142751;FRFASE3309913;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.649319;46.3307391;;;; +;;;;;;;;FRS14PEZNQHP1WWZ;PM3WP4TS73;Souppes sur Loing;;81 ROUTE NATIONALE 10200;;[-1.9797605, 48.6682107];;FRCPIE66003751;FRFASE3309911;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.148041;46.32145;;;; +;;;;;;;;FRS14PKMIYT7TETI;GJUJZ8EFOO;Solers;;43 ROUTE DE STE MARIE AUX MINES 67730;;[2.402206153869494, 50.483224599077815];;FRCPIE67072151;FRFASE3309903;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.576905;46.303875;;;; +;;;;;;;;FRS14PGVMAEKKID2;JGMSKN;Sancy;;43 ROUTE DE STE MARIE AUX MINES;;[2.556822342990649, 48.69566871299743];;FRTNME089127290;FRFASE3309910;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.23694974;46.303843;;;; +;;;;;;;;FRS14PL1KGSJOGST;NETJXB;Soisy-Bouy;;1 avenue de Couville QUERQUEVILLE 50460 CHERBOURG-EN-COTENTIN;;[-0.311405, 46.354612];;FRTNME089127280;FRFASE3309909;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.0111787;46.331921;;;; +;;;;;;;;FRS14PE2RRBXWBWF;WZYXEF;Seine-Port - Mairie;;Le Parc de la Mairie BEAUMONT-HAGUE 50440 LA HAGUE;;[2.051543085729363, 48.16127710253362];;FRTNME089126920;FRFASE3309908;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.178913;46.95686714;;;; +;;;;;;;;FRS14PVVKHTT0N8X;QFRX2Z7OPB;Sivry courty;;5 place de la Gare PONTORSON 50170 PONTORSON;;[1.9722276, 50.4945611];;FRTNMETERRA540111;FRFASE3309907;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.18853;46.944964;;;; +;;;;;;;;FRS14PMEXJIN27J7;PHEETVQ3IH;Savigny-le-Temple;;5 rue de la Halle 50190 PERIERS;;[2.9863507, 50.4699234];;FRTNMETERRA540110;FRFASE3309906;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.748457;46.3965368;;;; +;;;;;;;;FRS14PGNV9UFSQLR;SXESMW;Signy-Signets;;3 rue Raymond Poincare PICAUVILLE 50360 PICAUVILLE;;[2.6536518, 50.636603699999];;FRTNMETERRA540101;FRFASE3309905;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.074488;46.29266393;;;; +;;;;;;;;FRS14PIZJM7OHIWO;mesnilecoles;ANYOS - Data Valley;;38 route des Isles 50340 PIERREVILLE;;[4.081249, 49.23891];;FRTNMETERRA540100;FRFASE3309904;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7384526;46.648833;;;; +;;;;;;;;FRS14PIHLSGMESO6;hangestmairie;Agrovial;;Aire de covoiturage de Ducey 50220 POILLEY;;[4.765641424794523, 45.80602585384945];;FRS18E184331;FRS37E7747;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.3234604;46.6477507;;;; +;;;;;;;;FRS14PNUVRR1EADB;Picquignygare;D2 FINANCE;;Rue des Juifs PONT-HEBERT 50880 PONT-HEBERT;;[2.0722651, 49.0455191];;FRS18E184330;FRS37E1236;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.144056;46.97521972;;;; +;;;;;;;;FRS14PGWNCBEVKLC;aillyhautcloc;Carrefour Contact Saint-Martin-de-Bellevue;;6 voie de la Liberté PONTORSON 50170 PONTORSON;;[2.0725349, 49.0444744];;FRS28E130809;FRS37E1216;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.14223895;46.90095884;;;; +;;;;;;;;FRS14PLWXGXZ6NVG;ENT7R39M9K;Carrefour Contact Saint-Malo;;Place Leclerc PONTORSON 50170 PONTORSON;;[7.52645,48.75191];;FRS28E127482;FRS37E1233;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.14375894;46.881532;;;; +;;;;;;;;FRS14PGLD9JG2RUT;eaucourtpont;Carrefour Contact Pernes;;Huche Pie SARTILLY 50530 SARTILLY-BAIE-BOCAGE;;[-1.0767992, 44.3455705];;FRS28E127481;FRIONE413801;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.14632978;46.25910761;;;; +;;;;;;;;FRS14PFZE0IT59TV;flersparis;Carrefour Contact Périgny;;1 rue Robert Asselin PORTBAIL 50580 PORT-BAIL-SUR-MER;;[5.935854, 49.32408];;FRS41E4751;FRS37E1227;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.14574514;46.48549392;;;; +;;;;;;;;FRS14PRHIZSXG2KA;H6BUUJO0HS;Carrefour Contact La Crèche;;1 rue de la Rocambole QUERQUEVILLE 50460 CHERBOURG-EN-COTENTIN;;[4.64,43.79];;FRS41E4750;FRS37E1226;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.202642;46.662615;;;; +;;;;;;;;FRS14PX76ERWSQBX;RCDEAM;Carrefour Contact Bazoche Les Gallerandes;;1 rue de Gaulle QUETTEHOU 50630 QUETTEHOU;;[8.10671,48.89223];;FRS18E178310;FRS37E1225;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.029774;46.3169129;;;; +;;;;;;;;FRS14PGXNIEP4LJS;domartetoile;SAS LARGO;;30 rue de la Roseraie QUETTREVILLE-SUR-SIENNE 50660 QUETTREVILLE-SUR-SIENNE;;[6.5774003,43.2402602];;FRS18E178309;FRS37E1224;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.253067;46.770453;;;; +;;;;;;;;FRS14PV4TIQY3EGA;poixgare;OMEO;;Place Flandres Dunkerque 50760 REVILLE;;[2.9277708,42.6585884];;FRCPIE66003752;FRS37E1223;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.06844854;46.674512;;;; +;;;;;;;;FRS14PVAT5RXQZXS;hallencourtrep;ANOSTEKE;;Place du Champs de Foire PERCY 50410 PERCY-EN-NORMANDIE;;[-1.03,48.12];;FRTNME089127300;FRS37E1222;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.07567057;46.633177;;;; +;;;;;;;;FRS14PWZVO2GVYMJ;poixrepublique;Citroen DS Auto Bernard - Reims - 22kW AC;;5 rue St Berthevin PARIGNY 50600 GRANDPARIGNY;;[2.3196844, 51.0175233];;FRTNME089127310;FRIONE44665;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.358129;46.73014296;;;; +;;;;;;;;FRS14PSHNTRB88GR;feuquebaie;FIREX-DARDILLY;;2 route de Milly PARIGNY 50600 GRANDPARIGNY;;[3.0558528,43.12799930000001];;FRTNME089127880;FRIONE446606;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.357363;46.2654959;;;; +;;;;;;;;FRS14PQVMV4MMGBF;contygare;SCI DU 151178;;3 place du Château MORTAIN 50140 MORTAIN-BOCAGE;;[7.192107439041139, 43.6967734467621];;FRIENE0034024;FRIONE446604;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.589684;46.133704;;;; +;;;;;;;;FRS14PJRO5XUKNVX;oisemont;SCIFCJ;;Rue Graime 50590 MONTMARTIN SUR MER;;[0.251979, 49.410967];;FRCPIE66664452;FRIONE446603;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.2994545;47.01279;;;; +;;;;;;;;FRS14PA3XTEFNVP7;cayeuxargou;Parking Vollmer;;41 place Albert Pelerin 50310 MONTEBOURG;;[3.655559, 49.56802];;FRCPIE66664451;FRIONE446602;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.59730395;46.923557;;;; +;;;;;;;;FRS14PLHXITWLNL8;conde22;TRISCOS LAVAGE;;ZA le Pont 50690 MARTINVAST;;[2.336322, 51.022253];;FRIONE41695;FRIONE446601;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.567109;46.654902;;;; +;;;;;;;;FRS14PMDE2V8GM3H;VYXQKS;NETTO - TRIEUX;;9 rue du Huit Mai 1945 MARIGNY 50570 MARIGNY-LE-LOZON;;[0.09623, 49.347188];;FRIONE416905;FRS37E1219;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4166322;46.9219211;;;; +;;;;;;;;FRS14PGQX8TOZGDZ;XREDGG;SVI Beaucaire;;Le Poteau MARIGNY 50570 MARIGNY-LE-LOZON;;[0.959227, 49.540126];;FRIONE416904;FRS37E1218;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.352278;46.53364734;;;; +;;;;;;;;FRS14PWRQX6K3RY5;XCDNKJ;Commune de Seltz;;34 place St Cloud LESSAY 50430 LESSAY;;[2.111005, 49.40844];;FRIONE416903;FRS37E1217;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.326927;46.21338;;;; +;;;;;;;;FRS14PUTD4TMRIWV;UPVMTH;CAMPING MONTANA;;Rue du Ferrage LESSAY 50430 LESSAY;;[1.169503, 49.016271];;FRIONE416902;FRIONE413802;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.296639;46.22412259;;;; +;;;;;;;;FRS14PS3XSSU87WY;TCYXHU;Hôtel les Dômes Perpignan Sud;;25 route de Flamanville 50340 LES PIEUX;;[3.65557, 49.568055];;FRIENE0034023;FRIONE413803;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.14301159;46.22190306;;;; +;;;;;;;;FRS14PHS5GOHL3FX;PBCCRA;AD BAUDUCEL, SaintPierre la Cour;;1 allee de la Fosse 50340 LES PIEUX;;[-0.323656, 49.209081];;FRTNME089127890;FRIONE413804;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4740947;46.2246696;;;; +;;;;;;;;FRS14PIGM47RQUIV;SZJUJC;PFMV - GRANDE SYNTHE;;9 rue Ferre des Ferris LE TEILLEUL 50640 LE TEILLEUL;;[1.331869, 47.612421];;FRIENE0034012;FRCPIE66316751;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.473538;46.22041599;;;; +;;;;;;;;FRFR1PLLIBEU92G1H0V7;FFVRKQ;CHATEAU CAPITOUL;;D900 LE MESNIL VIGOT 50570 REMILLY-LES-MARAIS;;[2.34201, 47.046528];;FRIENE0034011;FRCPIE65732452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.488702;46.412127;;;; +;;;;;;;;FRS14PBM0HFP9CGY;QKKLGT;CLUB HIPPIQUE DE NICE;;2 rue Claude Monet 50320 LA HAYE PESNEL;;[2.44438, 44.913949];;FRIONE43195;FRCPIE65732451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.494283;46.18141519;;;; +;;;;;;;;FRS14PYDK2B0ERXB;CWRWXB;PREMIERE CLASSE - HONFLEUR;;Rue du Vavasseur LA HAYE DU PUITS 50250 LA HAYE;;[2.334355, 50.997593];;FRIONE431902;FRS41E204267;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.495796;46.664542;;;; +;;;;;;;;FRS14PTYPWUQ7IGF;Pontremysav;Hotel KYRIAD DIRECT - LAON;;D103 50220 SAINT QUENTIN SUR LE HOMME;;[3.057926, 50.383609];;FRIONE431901;FRS41E204266;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4742407;46.360322;;;; +;;;;;;;;FRS14PJDWZ4GKGLJ;Abbeviroy;PREMIERE CLASSE - DUNKERQUE - ST-POL-SUR-MER;;1 rue de l'Eglise SARTILLY 50530 SARTILLY-BAIE-BOCAGE;;[2.817843, 50.453351];;FRTNME099113550;FRS18E98423;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.43454;46.1084164;;;; +;;;;;;;;FRS14PNU7TML0PLL;WBRCYE;PREMIERE CLASSE TOUQUES;;Place du Général de Gaulle 50720 BARENTON;;[1.094046, 49.477319];;FRTNME089127900;FRS18E98422;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.49691272;46.10834219;;;; +;;;;;;;;FRS14PWOGY4YK72D;SLFNQF;LOUVRE HOTEL - ROUEN NORD - BARENTIN;;Rue Jean Dévé VILLEDIEU LES POELES 50800 VILLEDIEU-LES-POELES-ROUFFIGNY;;[3.115604, 50.682161];;FRFASE3310803;FRCPIE66316752;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.471974;46.796145;;;; +;;;;;;;;FRS14PD9MFWXE3BX;glisymairie;Hôtel Kyriad Beauvais Sud;;19 rue Flandres Dunkerque 50550 ST VAAST LA HOUGUE;;[-1.39,43.67];;FRFASE3310801;FRS37E1231;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.14501628;46.795306;;;; +;;;;;;;;FRS14PRM3XAKQMTG;SNGDFA;KYRIAD DIRECT EVREUX;;Rue des Anciennes Halles TESSY SUR VIRE 50420 TESSY-BOCAGE;;[5.993921,47.917131];;FRS18E117188;FRIONE413805;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.2232991;46.321324;;;; +;;;;;;;;FRS14PJ69U6QU8AD;GXTYVE;LOUVRE HOTEL - LAON;;313 rue des Algues TOURLAVILLE 50110 CHERBOURG-EN-COTENTIN;;[6.143673,47.64323];;FRSHEE1763;FRS37E1230;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.1419912;46.3623019;;;; +;;;;;;;;FRS14PRQ8FFLKBGH;STFUZJ;HOTEL KYRIAD Hérouville;;2 rue du Général Leclerc TOURLAVILLE 50110 CHERBOURG-EN-COTENTIN;;[6.588925,47.650833];;FRSHEE1572;FRS88E163452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.45415867;46.48260664;;;; +;;;;;;;;FRS14PCBX7KUYBYW;JZXHUL;HOTEL 1er CLASSE - BLOIS;;677 rue du Moulin Guibert TOURLAVILLE 50110 CHERBOURG-EN-COTENTIN;;[6.781118,47.592013];;FRSHEE1573;FRS88E163450;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.55511357;46.779143;;;; +;;;;;;;;FRS14PO5K3TST9TA;estreescomcom;PREMIERE CLASSE - BOURGES;;105 place des Résistants TOURLAVILLE 50110 CHERBOURG-EN-COTENTIN;;[6.159957,47.62037];;FRSHEE1581;FRS37E1229;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.13181;46.3885737;;;; +;;;;;;;;FRS14PGDUIKKNQ0H;Corbiegare;Campanile Aurillac;;Place des Costils VILLEDIEU LES POELES 50800 VILLEDIEU-LES-POELES-ROUFFIGNY;;[6.073609,47.423647];;FRSHEE1582;FRS37E1228;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.142448;46.830708;;;; +;;;;;;;;FRS14PLSL7IGJCKA;LLQVXS;CAMPANILE DUNKERQUE EST - ARMBOUTS CAPPEL;;Rue du Capitaine Duval SOURDEVAL 50150 SOURDEVAL;;[6.365601,47.774631];;FRSHEE1583;FRIONE41385;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.414381;46.87922;;;; +;;;;;;;;FRS14PJXVJI1COJF;Abbevilmair;CAMPANILE DOUAI - CUINCY;;1 route des Pelles ACQUEVILLE 50440 LA HAGUE;;[5.895957,47.709747];;FRCPIE66643351;FRIONE413806;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.49713;46.360436;;;; +;;;;;;;;FRS14PMSSZCNYGB6;Abbevilpont;Hôtel Restaurant Campanile Lens;;40 rue Antoine Lavoisier 50180 AGNEAUX;;[6.174664,47.62926];;FRCPIE66643352;FRN54E187031;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.416726;46.2217749;;;; +;;;;;;;;FRS14PMNJRPSZUVR;gamachesmairie;LOUVRE HOTEL - ROUEN NORD - MONT SAINT-AIGNAN;;12 impasse de la Palière 50180 AGNEAUX;;[4.988465421806449, 45.71576869086339];;FRCPIE66643451;FRCPIE65896951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.15772504;46.3005485;;;; +;;;;;;;;FRS14PAVHMBVDDEL;W39IDRPDKI;Hôtel Campanile Wasquehal;;5 avenue du Golf 50230 AGON-COUTAINVILLE;;[1.3402467383073846, 43.612262376081546];;FRCPIE66643452;FRTNME18B929320;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.05695068;46.839468;;;; +;;;;;;;;FRS14PDZWIKE3NEN;Abbecapu;Borne 22kW SB-ASST-Lafourcade;;3 Place de la Gare 50300 AVRANCHES;;[3.1198560355938945, 45.90210582751428];;FRIENE0051011;FRIONE126506;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.589633;46.842215;;;; +;;;;;;;;FRS14PVIVCM51QGG;NGTDGD;CORRE_Place_du_general_de_Gaulle;;15 place Carnot 50300 AVRANCHES;;[4.135471415628564, 44.079339763735184];;FRIENE0051012;FRCPIE65998852;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.422692;46.837561;;;; +;;;;;;;;FRS14PH1P1PYTVJZ;airainesseym;PUSEY_Foyer_des_jeunes_travailleurs;;7 rue de l'Eglise ST SAUVEUR LENDELIN 50490 SAINT-SAUVEUR-VILLAGES;;[9.5139025, 42.1140208];;FRIENE0051023;FRCPIE65998851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.422689;46.8509075;;;; +;;;;;;;;FRS14PREGMVHBLYO;WJLBKW;LYOFFANS_Cimetiere;;8 place Auguste Cousin 50390 ST SAUVEUR LE VICOMTE;;[9.136921215344072, 41.50017664596053];;FRIENE0051024;FRS37E1385;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.48823878;46.8505132;;;; +;;;;;;;;FRS14PPFMKY61J2Z;feuquieremai;ECHENANS_SOUS_MONT_VAUDOIS_Parking_de_covoiturage;;9 place de l'Abbé Saint Pierre 50330 ST PIERRE EGLISE;;[4.4524017,48.2368506];;FRSHEE1741;FRS37E1330;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.471157;46.77368;;;; +;;;;;;;;FRS14PWDC8V4ORJE;frivilleescar;VESOUL_Place_du_theatre;;Place de la Liberte 50380 ST PAIR SUR MER;;[2.5428274, 50.7244213];;FRSHEE1742;FRSHEE773;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.467523;46.3056042;;;; +;;;;;;;;FRS14PVUHVSPUVEE;hamespla;RIOZ_Rue_du_Clairsoleil;;Rue des Ronchettes 50000 ST LO;;[3.0734169, 48.5665745];;FRSHEE1743;FRSHEE772;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4604029;46.184583;;;; +;;;;;;;;FRS14PSYA3HIFJSJ;LXGKYT9YHC;CHAPELLE_LES_LUXEUIL_Station_service;;Avenue des Hêtres 50000 ST LO;;[1.3592, 43.810977];;FRSHEE1761;FRSHEE771;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4074369;46.2223296;;;; +;;;;;;;;FRS14PFN2ROX2AOD;bernaduprez;Combeaufontaine_place_de_la_gare;;Route de Candol 50000 ST LO;;[1.361448, 43.812247];;FRSHEE1571;FRSHEE762;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.670187;46.4082556;;;; +;;;;;;;;FRS14PQNVE1QVN1M;IQIL9BNYXZ;FROTEY_Les_Vesoul_Eurotel;;Rue du Bourg Buisson 50000 ST LO;;[2.472599, 48.084312];;FRCPIE65537552;FRSHEE761;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.18543031;46.05641465;;;; +;;;;;;;;FRS14PNNOGALD1MD;I76W2YJNXA;A.L.R;;Rue du Pré de Haut 50000 ST LO;;[7.398142, 43.754762];;FRCPIE65537551;FRSHEE753;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.418693;46.98505968;;;; +;;;;;;;;FRS14PAWSCCFXPIZ;nouvionmairie;FRIENDLY AUBERGE;;Rue des Prés 50000 ST LO;;[-0.2339028, 44.4425322];;FRCPIE66411151;FRSHEE752;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.296768;46.47397865;;;; +;;;;;;;;FRS14PHKI3EEJ2VG;BLSJNA;GARAGE FORRET;;Place du Champs de Mars 50000 ST LO;;[1.985609, 50.273541];;FRIONE401801;FRSHEE751;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.012737;46.82647;;;; +;;;;;;;;FRS14PB5J7TXK8V7;EGMDVD;SCI LA COLLINE;;Place de la Mairie 50620 ST JEAN DE DAYE;;[1.985609,50.273541];;FRIONE401802;FRSHEE743;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.2109496;46.825164;;;; +;;;;;;;;FRFR1PMELUNERMI;stvalerystpier;ATRACHATA;;Place du Vieux Presbytere ST JAMES 50240 SAINT-JAMES;;[5.8647466,45.644607];;FRIONE401803;FRSHEE742;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.278269;46.2865953;;;; +;;;;;;;;FRFR1PQSGFVS;argoulesval;LE REVE DE JANINE;;Place de la Motte ST HILAIRE DU HARCOUET 50600 SAINT-HILAIRE-DU-HARCOUET;;[5.61,45.59];;FRIONE401804;FRSHEE741;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.244574;46.838103;;;; +;;;;;;;;FRFR1PKQBBVHXLQF;EPVLVLOVWF;Gamba et Rota 1;;La Taille 50680 ST GEORGES D'ELLE;;[-1.72,43.36];;FRIONE40185;FRSHEE732;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.2347598;46.822523;;;; +;;;;;;;;FRFR1PIZHQAZZMW0;WWFF9DHV9P;CCFI;;Village des Ponts Douves ST COME DU MONT 50500 CARENTAN-LES-MARAIS;;[-0.4978048, 44.8526111];;FRS37E1279;FRSHEE731;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.353478;46.2266485;;;; +;;;;;;;;FRFR1PCREOX7XV1T;R9JCWHPGKT;borneco postenangis3;;D292 50680 ST CLAIR SUR L'ELLE;;[-1.073056, 49.101681];;FRS37E1280;FRS37E1308;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.216844;46.49725688;;;; +;;;;;;;;FRFR1PQWU01HIDPC;GBETNRGWTT;borneco postenangis2;;49 rue Martin Luther King LA GLACERIE 50470 CHERBOURG-EN-COTENTIN;;[4.380825275475741, 44.288984939376896];;FRCPIE66411152;FRS37E1309;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.0255528;46.721541;;;; +;;;;;;;;FRFR1PJJPPHE;H2EMHAFSLS;borneco hoteldevillenangis4;;Les Rouges Terres LA GLACERIE 50470 CHERBOURG-EN-COTENTIN;;[6.919325,47.641882];;FRCPIE65537352;FRCPIE65999651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.2887617;46.336059;;;; +;;;;;;;;FRFR1PMELUNDOUMER;YVTKWXLYSL;borneco hoteldevillenangis3;;42 la Herviere 50800 LA COLOMBE;;[6.919329,47.641884];;FRIENE0097011;FRCPIE66591551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.394435;46.335983;;;; +;;;;;;;;FRFR1PC7FO07OXBQ;POVZLZ0M4M;borneco hoteldevillenangis2;;1 Allée du Président Menut CHERBOURG-OCTEVILLE 50100 CHERBOURG-EN-COTENTIN;;[7.016626,43.611925];;FRIENE0097012;FRS37E1310;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5380875;46.31882199;;;; +;;;;;;;;FRFR1PIQSGOGAXZQ;F4V8VL9UIA;borneco hoteldevillenangis1;;18 rue de Carbonnel 50750 CANISY;;[-0.39091984844480976,49.20079970020356];;FRIENE0097023;FRS18E179113;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.216606;46.315578;;;; +;;;;;;;;FRFR1PLLJMHQN8S1SRHJ;A3MGRRDRGB;borneco postenangis4;;13 boulevard des Fortifications CARENTAN 50500 CARENTAN-LES-MARAIS;;[7.01672,43.6121039];;FRIENE0097024;FRS18E179112;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.10559154;46.328049;;;; +;;;;;;;;FRFR1PYKHCDWYRQK;ZJWTUKQRTE;borneco postenangis1;;3, rue du Docteur Caillard CARENTAN 50500 CARENTAN-LES-MARAIS;;[4.578864, 45.704218];;FRS51E53917;FRS55E66237;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.742817;46.3288736;;;; +;;;;;;;;FRFR1PRYXKLF;MBIIAYIANW;VINCI Frontonnais Sud;;28 le Bout de la Ville CARQUEBUT 50480 SAINTE-MERE-EGLISE;;[-0.3532908,46.65044958];;FRS51E53918;FRS55E66236;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5216527;46.3157895;;;; +;;;;;;;;FRS14PJLGGHEVQB8;MTQXSIJ3RN;VINCI Frontonnais Nord;;Route de Brehal 50510 CERENCES;;[-0.19848589,46.41558618];;FRCPIE65537351;FRCPIE66002952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.18987608;46.821;;;; +;;;;;;;;FRS14PZABVAJT7UQ;WRZVCPI5NC;VINCI Loiret;;12 place de la mairie 50210 CERISY LA SALLE;;[-0.16642619,46.78781078];;FRSHEE1762;FRCPIE66002951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.232689;47.0539167;;;; +;;;;;;;;FRS14PJIQBOVFEMZ;VYYQLRBQLG;SSEC La Scoperta;;Rue François 1er CHERBOURG-OCTEVILLE 50100 CHERBOURG-EN-COTENTIN;;[-0.217966,46.962352];;FRSHEE251;FRCPIE66591452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.418977;46.82054;;;; +;;;;;;;;FRS14PKTAWLU4IZC;UHG7FBMQYH;SARL PERROT;;rue de Saint Hilaire JUVIGNY LE TERTRE 50520 JUVIGNY-LES-VALLES;;[-0.71177102,46.26240115];;FRIONE432605;FRCPIE65999652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.02581;46.572497;;;; +;;;;;;;;FRS14PCIQQYCDPTL;P5V9XI99Z7;Le BOISLE;;65 rue Victor Grignard CHERBOURG-OCTEVILLE 50100 CHERBOURG-EN-COTENTIN;;[-0.677204,46.782245];;FRSHEE252;FRCPIE66591451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.214995;46.083781;;;; +;;;;;;;;FRS14PTL6QWRNSBJ;A8NFE2AVUQ;GMK Motorsport;;Place Chantereyne CHERBOURG-OCTEVILLE 50100 CHERBOURG-EN-COTENTIN;;[-0.0553447,46.3959629];;FRS51E44730;FRCPIE66002652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.2157898;46.9851529;;;; +;;;;;;;;FRFR1PDJ0CFESMH8;RPIAIAYUIP;Gamm Vert Aoste;;1 Place Alfred Rossel CHERBOURG-OCTEVILLE 50100 CHERBOURG-EN-COTENTIN;;[-0.489271,46.3307391];;FRS51E44731;FRCPIE66002651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.1979541;46.976755;;;; +;;;;;;;;FRFR1PKFIO5AUOI5;P2VQPNZVP8;EIZMENDI TRAITEUR EVENEMENTS;;1 Place René Cassin CHERBOURG-OCTEVILLE 50100 CHERBOURG-EN-COTENTIN;;[-0.460921,46.32145];;FRS28E137362;FRCPIE66000252;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.371096600000001;46.99604;;;; +;;;;;;;;FRFR1PJXHEZ5LVEE;WGX350GV80;ELEN DISTRIBUTION;;1 Rue de l'Ile de France CHERBOURG-OCTEVILLE 50100 CHERBOURG-EN-COTENTIN;;[-0.437953,46.303875];;FRS28E134756;FRCPIE66000251;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9257621;46.991451;;;; +;;;;;;;;FRFR1PBCLQK08V8L;E7KRECKCYE;Lacmeca;;2 Rue des Tribunaux CHERBOURG-OCTEVILLE 50100 CHERBOURG-EN-COTENTIN;;[-0.437902,46.303843];;FRIENE0095011;FRCPIE65999852;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.64867;46.045597;;;; +;;;;;;;;FRFR1PNHOGL06J48;MPGVWJFVRH;MAS DU TERME;;Le Beau Parlé 50700 BRIX;;[-0.463516,46.331921];;FRIENE0095012;FRCPIE65999851;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9652648;46.972578;;;; +;;;;;;;;FRFR1PKZRU0KKOAL;NSDP4YBGRR;BESSONCOURT av du tilleul A;;10 route de l'abbaye BRICQUEBEC 50260 BRICQUEBEC-EN-COTENTIN;;[-0.58792319,46.95686714];;FRIENE0095023;FRIONE12655;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.356166554456669;46.57567772;;;; +;;;;;;;;FRFR1PUSPBSW;NRG9ZX5F3C;BESSONCOURT av du tilleul B;;2 rue de Verdun BRICQUEBEC 50260 BRICQUEBEC-EN-COTENTIN;;[-0.593893,46.944964];;FRIENE0095024;FRIONE126505;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.579135760951923;46.5165944;;;; +;;;;;;;;FRS14PFVD33KIR4U;OJGQG93S4C;SAP LABS FRANCE MOUGINS 22;;Rue St Martin 50290 BREHAL;;[-0.0521514,46.3965368];;FRS28E126231;FRCPIE66003851;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.5865782468226999;46.144166;;;; +;;;;;;;;FRS14PLLIU0VC43UH3BJ;YFBKCUHMCA;SAP LABS FRANCE MOUGINS 21;;11 rue des pélerins 50370 BRECEY;;[-0.11574545,46.29266393];;FRIENE35353A1;FRIONE126504;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.5802344825222774;46.4077779;;;; +;;;;;;;;FRS14PLLIU0JLHQ2NV4U;PRZ9UEOLLL;SAP LABS FRANCE MOUGINS 17;;La Croix Georges 50340 BENOITVILLE;;[-0.251641,46.648833];;FRIENE35353A2;FRIONE440314;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.5890656778496008;46.975545;;;; +;;;;;;;;FRS14PWEXJ08SAGD;WOJVP7XK3S;SAP LABS FRANCE MOUGINS 20;;2 bd de l'avenir 50270 BARNEVILLE CARTERET;;[-0.2476458,46.6477507];;FRIENE35353A3;FRIONE440313;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.5865497163965239;46.1315471;;;; +;;;;;;;;FRS14PJZIMSLSNZI;V2WYTXUEVW;SAP LABS FRANCE CAEN 06;;2 place de la Mairie 50270 BARNEVILLE CARTERET;;[-0.04221723,46.97521972];;FRIENE35353A4;FRIONE440310;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.59567398310793;46.989946;;;; +;;;;;;;;FRS14PLLIU23ZA9182RT;AXT8TBMQPM;SAP LABS FRANCE MOUGINS 16;;6 rue du Port 50270 BARNEVILLE CARTERET;;[-0.08293332,46.90095884];;FRIENE35353A5;FRIONE440309;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.5957009765331387;46.3730661;;;; +;;;;;;;;FRS14PTRYMDJ3CBV;TFZRLAD58K;SAP LABS FRANCE MOUGINS 15;;2 rue du Général de Gaulle 50300 AVRANCHES;;[-0.055385,46.881532];;FRS28E137353;FRIONE440308;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.143766265497639;46.2061172;;;; +;;;;;;;;FRS14PC0I5HNSCPF;HZSKCRY3NQ;SAP LABS FRANCE MOUGINS 14;;1 Place St Clément CHERBOURG-OCTEVILLE 50100 CHERBOURG-EN-COTENTIN;;[-0.34483773,46.25910761];;FRS28E178731;FRIONE440307;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.987552127378094;46.888542;;;; +;;;;;;;;FRS14PJX4EPALWZ9;URXXMQBEJN;SAP LABS FRANCE MOUGINS 13;;32 rue Vintras CHERBOURG-OCTEVILLE 50100 CHERBOURG-EN-COTENTIN;;[-0.40244332,46.48549392];;FRS18E117187;FRIONE440306;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.1348357;46.610536;;;; +;;;;;;;;FRS14PV8ZXCF8KLK;M6GVZ6JYET;SAP LABS FRANCE MOUGINS 08;;Rue St Martin CONDE SUR VIRE 50890 CONDE-SUR-VIRE;;[-0.248314,46.662615];;FRIENE0084024;FRIONE440305;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.954054532862406;46.719493;;;; +;;;;;;;;FRS14PCPFJ1PSP4H;XUJE2L5JUY;SAP LABS FRANCE CAEN 07;;Place de la Bascule GAVRAY 50450 GAVRAY-SUR-SIENNE;;[-0.5557142,46.3169129];;FRIENE0084023;FRIONE440304;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0458858;46.978754;;;; +;;;;;;;;FRS14PUX6T6V86EB;OOWFA5K8PB;SAP LABS FRANCE CAEN 05;;11 avenue du Marechal Leclerc 50610 JULLOUVILLE;;[-0.649319,46.770453];;FRIENE0084012;FRIONE440303;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9321064;46.9787321;;;; +;;;;;;;;FRS14PQQ9ULMFY9S;N9PUFD9IQX;SAP LABS FRANCE CAEN 03;;Rue d'Avranches 50540 ISIGNY LE BUAT;;[-0.148041,46.674512];;FRS51E44685;FRIONE440302;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.217619;46.981369;;;; +;;;;;;;;FRS14PPPAT8F1AHP;FOREKRBQZH;SAP LABS FRANCE MOUGINS 19;;Carrefour des Biards 50540 ISIGNY LE BUAT;;[-0.576905,46.633177];;FRS37E60636;FRIONE440301;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.345135599999999;48.15908049999999;;;; +;;;;;;;;FRS14PLMAJAU9VM3;Q60YP7CO65;SAP LABS FRANCE CAEN 01;;Chemin des Bruyères HEBECREVON 50180 THEREVAL;;[-0.23694974,46.73014296];;FRS37E60637;FRFASE3302304;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4743602103553713;43.5282927;;;; +;;;;;;;;FRS14PXZTAT4QNOV;SFFNZXZEQO;SAP LABS FRANCE CAEN 02;;Place des Robans 50590 HAUTEVILLE SUR MER;;[-0.0111787,46.2654959];;FRCPIE67080451;FRFASE3302303;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.95;47.64051;;;; +;;;;;;;;FRS14PIS3DWADVWS;UWENEDCQPA;SAP LABS FRANCE CAEN 04;;3 place de la Bascule 50450 HAMBYE;;[-0.178913,46.133704];;FRCPIE67080452;FRFASE3302302;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4218187;50.2669787;;;; +;;;;;;;;FRS14PRTTMEX22VQ;YWEZEFEDKH;YZERON;;D974 GUILBERVILLE 50160 TORIGNY-LES-VILLES;;[-0.18853,47.01279];;FRCPIE64736551;FRFASE3302301;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.7471049;43.7920082634787;;;; +;;;;;;;;FRS14PJ9E72TSRLI;JWVTOWOSAH;Réseau AlterBase - St Aubin le Cloud - Place de l'Eglise;;2 rue du Saussey GUILBERVILLE 50160 TORIGNY-LES-VILLES;;[-0.748457,46.923557];;FRS51E44684;FRS37E1303;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1967988;50.51658485952207;;;; +;;;;;;;;FRS14PIHJ5AEHHQC;JIRIL0QKRW;Réseau AlterBase - St Maixent l'Ecole - Place Denfert;;387 rue St Nicolas 50400 GRANVILLE;;[-0.074488,46.654902];;FRS51E44705;FRIONE440315;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5677804;50.52023803636371;;;; +;;;;;;;;FRS14PJVJN0XRMBD;QJZPGZZJNW;Réseau AlterBase - St Loup Lamairé - Centre;;11 rue de la Fontaine Bedeau 50400 GRANVILLE;;[-0.7384526,46.9219211];;FRIENE0084011;FRIONE440316;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.758025;50.5237102932706;;;; +;;;;;;;;FRS14PBENXV427ED;BNAYVYPNUE;Réseau AlterBase - St Jean de Thouars - Place de la Mairie;;Rue du Commandant Yvon 50400 GRANVILLE;;[-0.3234604,46.53364734];;FRS51E44706;FRIONE440317;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.057033999999999;50.526149397749904;;;; +;;;;;;;;FRS14PYTDEL15IL4;MB9F5TKRPJ;Réseau AlterBase - St Hilaire la Palud - La Poste;;13 place Pierre Semard 50400 GRANVILLE;;[-0.144056,46.21338];;FRIENE0064011;FRS37E1336;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.0311097;50.52024529238238;;;; +;;;;;;;;FRS14PRFATER8YU3;M53GGW3ONZ;Réseau AlterBase - St André sur Sèvre - Salle Omnisports;;Rue de la Mer GOUVILLE SUR MER 50560 GOUVILLE-SUR-MER;;[-0.14223895,46.22412259];;FRIENE0064012;FRIONE126503;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.372115;50.51999281984215;;;; +;;;;;;;;FRS14PUEPCJ1ONBV;HSR5CVUBSN;Réseau AlterBase - Pamproux - Mairie;;Route de Coutances GOUVILLE SUR MER 50560 GOUVILLE-SUR-MER;;[-0.14375894,46.22190306];;FRIENE0064023;FRS37E1307;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.3670389;50.52003488743544;;;; +;;;;;;;;FRS14PXZV5YXNZQK;OTAUCDKBHT;Réseau AlterBase - Niort - Parc des Expositions Noron;;15 Le Repas 50320 FOLLIGNY;;[-0.14632978,46.2246696];;FRIENE0064024;FRS37E1306;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4192407;43.3292004491334;;;; +;;;;;;;;FRS14PTTTLWP8ERC;OVRR1M5NIJ;Réseau AlterBase - Niort - La Poste;;Route du Mesnil CONDE SUR VIRE 50890 CONDE-SUR-VIRE;;[-0.14574514,46.22041599];;FRS51E44708;FRS55E66192;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.5955586;43.442782142736384;;;; +;;;;;;;;FRS14PCPTGDV5IRH;58e28a0851f24;Réseau AlterBase - Niort - Centre commercial Intermarché - QC;;La Maison Neuve 50800 FLEURY;;[-0.202642,46.412127];;FRS51E44711;FRS55E66191;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.79973;48.3005817;;;; +;;;;;;;;FRS14PWIO5B4HAFQ;BSKY08VNWK;Réseau AlterBase - Niort - Centre commercial Intermarché - DC 24 kW;;Dielette 50340 FLAMANVILLE;;[-0.029774,46.18141519];;FRIONE43265;FRS55E66184;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.1178263;47.2166457444792;;;; +;;;;;;;;FRS14PMACRGC0HBC;OY9U2KDFHP;Réseau AlterBase - Niort - Centre aquatique Pré-Leroy;;rue des Résistants EQUEURDREVILLE-HAINNEVILLE 50120 CHERBOURG-EN-COTENTIN;;[-0.253067,46.664542];;FRIONE432604;FRS55E66183;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.82;48.7978439;;;; +;;;;;;;;FRS14PK9DQ5BOGXT;FVL8IDQLIP;Réseau AlterBase - Nueil les Aubiers - Place Colun;;rue Louise Michel EQUEURDREVILLE-HAINNEVILLE 50120 CHERBOURG-EN-COTENTIN;;[-0.373516,46.360322];;FRIENE0096024;FRS37E1305;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.853408088061449;48.7513226;;;; +;;;;;;;;FRS14PPEMGBREIMZ;H7PMEQE0EW;Réseau AlterBase - Nueil les Aubiers - Espace Culturel Belle Arrivée;;29 rue Jean Moulin EQUEURDREVILLE-HAINNEVILLE 50120 CHERBOURG-EN-COTENTIN;;[-0.06844854,46.1084164];;FRS51E43637;FRIONE440318;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.52710519266027;50.566184;;;; +;;;;;;;;FRS14PZZNFVRZSHY;XJ5L0C9ZRQ;Réseau AlterBase - Pamproux - Pôle Santé;;19 rue Jean Bart EQUEURDREVILLE-HAINNEVILLE 50120 CHERBOURG-EN-COTENTIN;;[-0.07567057,46.10834219];;FRS51E50488;FRS37E1382;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.16;41.69983680000001;;;; +;;;;;;;;FRFR1PBFNM5FW7HS;LLJ8GYI0419GG7;Réseau AlterBase - Rom - Mairie;;Place des Plats d'Etain DUCEY 50220 DUCEY-LES CHERIS;;[-0.358129,46.796145];;FRS51E50489;FRS37E1304;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.780446;47.51236168509763;;;; +;;;;;;;;FRFR1PXLPLHU;NKMDJTOUDC;Réseau AlterBase - Parthenay - Mairie;;97 route de Coutances 50350 DONVILLE LES BAINS;;[-0.357363,46.795306];;FRIONE439101;FRCPIE66602552;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.136254786296182;43.47;;;; +;;;;;;;;FRFR1PLDZGF5PWXI;N8A8OYWIZN;Réseau AlterBase - Parthenay - Palais des Congrès;;rue des Marettes 50710 CREANCES;;[-0.589684,46.321324];;FRIONE439102;FRCPIE66602551;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8846990973662954;49.3959347;;;; +;;;;;;;;FRFR1PT8VY7PVFBV;N4XRQBUHJY;Réseau AlterBase - Pas de Jeu - Place de l'Eglise;;La Vallée 50690 COUVILLE;;[-0.2994545,46.3623019];;FRIONE439103;FRCPIE66601652;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.206137457654465;45.4137074;;;; +;;;;;;;;FRFR1PJM8ETU9UBG;XSXPKS4QIH;Réseau AlterBase - Plaine et Vallées / Oiron - Centre;;20 rue de St Malo 50200 COUTANCES;;[-0.59730395,46.48260664];;FRIONE439104;FRCPIE66601651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2585815;44.4381511;;;; +;;;;;;;;FRFR1PTJ4BORJXNJ;LRBN9SNHY0;Réseau AlterBase - Plaine et Vallées / St Jouin de Marnes - Centre;;place de la croute 50200 COUTANCES;;[-0.567109,46.779143];;FRIONE439105;FRIONE44035;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.08;43.2866873;;;; +;;;;;;;;FRFR1PLLJ2H7CNY2IO14;Z34FCKPU91;Réseau AlterBase - Prahecq - Mairie;;Le Haut de Délasse 50200 COUTANCES;;[-0.4166322,46.3885737];;FRIONE439106;FRS37E1311;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.23;42.484241;;;; +;;;;;;;;FRFR1PPIQJLO1TXU;F4ZNRA9TDQ;Réseau AlterBase - Champdeniers - Place St Antoine;;1 place de la gare 50200 COUTANCES;;[-0.352278,46.830708];;FRIONE43915;FRCPIE66003852;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6075326;45.84568999999999;;;; +;;;;;;;;FRFR1PU4M4GQBZCD;BNOETWSQ8N;Réseau AlterBase - Châtillon sur Thouet - agence Séolis;;2 rue 505e Airborne STE MERE EGLISE 50480 SAINTE-MERE-EGLISE;;[-0.326927,46.87922];;FRIONE40445;FRIONE10135;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.6760356;44.0911453;;;; +;;;;;;;;FRFR1PBSE7UXMPKB;W2JSXIFDDM;Réseau AlterBase - Magné - Centre Commercial;;5 place de la Gare 50170 PONTORSON;;[-0.296639,46.360436];;FRCPIE66688351;FRIONE407902;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.62602;46.12509099999999;;;; +;;;;;;;;FRFR1PPZOVLMKQWT;LZBDAYDH0Y;Réseau AlterBase - La Forêt-sur-Sèvre - Mairie - DC 24 kW;;5 Rue du Soleil Levant 50720 SAINT-GEORGES-DE-ROUELLEY;;[-0.14301159,46.2217749];;FRCPIE66688352;FRS37E1332;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.792899;46.10760080000001;;;; +;;;;;;;;FRFR1PXA7W3VU7CJ;XVWJDFBNAT;Réseau AlterBase - La Peyratte - Centre;;Place de l'Orangerie TORIGNI SUR VIRE 50160 TORIGNY-LES-VILLES;;[-0.4740947,46.3005485];;FRIONE402404;FRS37E1335;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.772764;44.4744571;;;; +;;;;;;;;FRFR1PXTR2GOJ0TI;BVSTOGZT0R;Réseau AlterBase - L'Absie - Mairie;;1 Place des Corsaires 50400 GRANVILLE;;[-0.473538,46.839468];;FRIONE402403;FRS37E1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.736547;45.2732968;;;; +;;;;;;;;FRFR1PDVSLEX3W4G;NDHQTP;Réseau AlterBase - Lageon - Aire de covoiturage;;24 Bd André Michel 50340 SIOUVILLE-HAGUE;;[-0.488702,46.842215];;FRIONE402402;FRCPIE66029452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.786245;43.2076102;;;; +;;;;;;;;FRFR1PSLAMWPZJFU;YPNGGQLI7H;Réseau AlterBase - Lezay - Place du Champ de Foire;;7 place Salle des Fêtes SAINT JEAN DES BAISANTS 50810 SAINT-JEAN-D'ELLE;;[-0.494283,46.837561];;FRS28E134851;FRCPIE66029451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.774432;45.6494913;;;; +;;;;;;;;FRFR1PMSJI4GKDMB;YSZ671LQHR;Réseau AlterBase - Limalonges - Les Maisons Blanches - QC;;7 Huguet de Semonville 50770 PIROU;;[-0.495796,46.8509075];;FRIENE0096023;FRS55E66457;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.709255;45.33;;;; +;;;;;;;;FRFR1PRBUT3DZJBH;A46LM1G17J;Réseau AlterBase - Louzy - Salle Hespérida;;1 rue du general leclerc 20137 porto-vecchio;;[-0.4742407,46.8505132];;FRIENE0096012;FRS55E66456;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.618866;43.954525553229516;;;; +;;;;;;;;FRFR1PHF3BZTMM7P;WQLJIEOSPD;Réseau AlterBase - Mauléon - rue de la Fontaine Noire;;16 rue Claude Chappe, Le Port 97420, La Reunion;;[-0.43454,46.77368];;FRIENE0096011;FRS37E1708;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.631166;48.832825866061164;;;; +;;;;;;;;FRFR1PLJV43VM9LI;CPW4BJOEDV;Réseau AlterBase - La Ferrière-en-Parthenay - Place de l'Eglise;;181 route de Goudargues - 30630 CORNILLON;;[-0.49691272,46.3056042];;FRCPIE66009552;FRS37E1699;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.686007;45.8;;;; +;;;;;;;;FRFR1PI6KMX075ND;LYNNVONFVX;Réseau AlterBase - Mauléon - Centre commercial Super U - QC;;route de lavernhe recoules-prévinquieres 12150 Séverac D’Aveyron;;[-0.471974,46.184583];;FRCPIE66009551;FRCPIE66025452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.730546;43.9585575;;;; +;;;;;;;;FRFR1PCX85FFNWSA;MCN2TV5DLV;Réseau AlterBase - Mazières en Gâtine - Place des Marronniers;;Route de MOLINI 20166 Albitreccia;;[-0.14501628,46.2223296];;FRCPIE66009452;FRCPIE66025451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.714751;43.54064693288783;;;; +;;;;;;;;FRFR1PG53AI8R0G2;TQFRQ15WCK;Réseau AlterBase - Melle - agence Séolis;;LD LA BOURIE 65250 HECHES;;[-0.2232991,46.4082556];;FRCPIE66009451;FRS37E1326;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.72942;44.107170327068204;;;; +;;;;;;;;FRFR1PGS6LRLDFED;DYII1VYXNM;Réseau AlterBase - Melle - Mairie;;7, Rue de la Durance 04290 Volonne;;[-0.1419912,46.05641465];;FRIENE0037024;FRS37E1325;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.697983;43.745680776707296;;;; +;;;;;;;;FRFR1PT6PQZXSMTB;SJWL0JJWCZ;Réseau AlterBase - Melle - Place Bujault Cinéma;;692 Route d'Orange 84870 Loriol-du-comtat;;[-0.45415867,46.98505968];;FRIONE402401;FRIONE40795;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.740797;45.90524019999999;;;; +;;;;;;;;FRFR1PGE9BBRGUJX;ZSAZHIGU1P;Réseau AlterBase - Melle - Centre St Joseph;;1052 rue des combattants en afrique du nord 83600 frejus;;[-0.55511357,46.47397865];;FRCPIE67317152;FRIONE407906;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.729438;43.68;;;; +;;;;;;;;FRFR1PRDCHWGQR7O;QUXPFGFXNE;Réseau AlterBase - Melle - Place de Strasbourg;;401 Chemin de Mentone, 83510 Saint-Antonin-du-Var;;[-0.13181,46.82647];;FRCPIE67310851;FRIONE407905;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.672061;49.11;;;; +;;;;;;;;FRFR1PMCGQW3FISF;TQ4MET9QHH;Réseau AlterBase - St Maixent l'Ecole - Les Halles;;360 AV DE L EUROPE 28230 EPERNON;;[-0.142448,46.825164];;FRCPIE67310852;FRIONE407904;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.715104;50.6962979;;;; +;;;;;;;;FRFR1PSVDOGAVSWH;QQHZ79XAXR;Réseau AlterBase - Clussais-La-Pommeraie - Salle des Fêtes;;378 RTE DE GENAS 69500 BRON;;[-0.414381,46.2865953];;FRCPIE67317951;FRS37E1333;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.736391;46.441643;;;; +;;;;;;;;FRFR1PBSU6OTRKUO;XWE4EWS3MA;Réseau AlterBase - Châtillon sur Thouet - La Bressandière - QC;;Pol Fabre Roquebrune-sur-Argens 83520;;[-0.49713,46.838103];;FRCPIE67317952;FRIONE101201;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.729456;47.96226;;;; +;;;;;;;;FRFR1PZKLMJTPPX4;IYOKNX7TZR;Réseau AlterBase - Chauray - Le Temple;;6523 Route de Bordeaux, 40600;;[-0.416726,46.822523];;FRCPIE67318051;FRIONE101202;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.143853;48.034992;;;; +;;;;;;;;FRFR1PSOH2CQN127;VRCUMHLPYR;Réseau AlterBase - Chef-Boutonne - Mairie;;Chem. du Finosello, 20000 Ajaccio, France;;[-0.15772504,46.2266485];;FRCPIE67318052;FRCPIE66037652;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.133115;47.968284;;;; +;;;;;;;;FRFR1PRP6RJUZXHE;POYTUZYBZT;Réseau AlterBase - Chef-Boutonne - Stade;;43Avenue de l'Hippodrome, 14390 Cabourg;;[-0.05695068,46.49725688];;FRS28E129291;FRS28E175634;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12795;47.918313;;;; +;;;;;;;;FRFR1PVFRBGTHDDU;XOPBHY1L2B;Réseau AlterBase - Chiché - Mairie;;1bis Le Haut Rain, 88640 Granges-Aumontzey, France;;[-0.589633,46.721541];;FRS51E43640;FRCPIE66040252;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.109315;47.952592;;;; +;;;;;;;;FRFR1PAQ1IWU1HSJ;OJHMGCHDSF;Réseau AlterBase - Chiché - Aire de covoiturage;;RTE DU TAMARIGUER 66700 ARGELES-SUR-MER;;[-0.422692,46.336059];;FRIONE432603;FRCPIE66040251;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.409276;47.968048;;;; +;;;;;;;;FRFR1PXR1ACRARZZ;KA6HPW7M1J;Réseau AlterBase - Coulon - Aire de l'Autremont;;12Bis Terr. Pépinière, 54000 Nancy,;;[-0.422689,46.335983];;FRIONE402001;FRS37E19684;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.02371;47.99084;;;; +;;;;;;;;FRFR1PPESMYK;EZSSVQ;Réseau AlterBase - La Crèche - Bibliothèque;;1029 route de Montpezat, 04500 Saint-Laurent-du-Verdon, France;;[-0.48823878,46.31882199];;FRSHEE902;FRS37E19683;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.988355;47.991795;;;; +;;;;;;;;FRFR1PQEVDN4ZT1R;VXFWFN;Réseau AlterBase - Coulonges-sur-l'Autize - les Halles;;Route Nationale 20 Lieu Dit Le, Couloumié, 09000 Foix, France;;[-0.471157,46.315578];;FRSHEE903;FRCPIE66518952;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.222288;47.940851;;;; +;;;;;;;;FRFR1PVYSYWYNZTS;AR9PTVOSJU;Réseau AlterBase - Courlay - Salle des Fêtes;;19 Rue Edouard Renault 93150 Le blanc Mesnil;;[-0.467523,46.328049];;FRSHEE904;FRCPIE66518951;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.478509;47.945937;;;; +;;;;;;;;FRFR1PDCQLBIKEE8;ET9YQKHSFE;Réseau AlterBase - Echiré - Parking Côte de Chaillot;;Rte de Contrexeville, 88140 Bulgnéville, France;;[-0.4604029,46.3288736];;FRSHEE911;FRCPIE66037651;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.08386;48.012275;;;; +;;;;;;;;FRFR1PFLFXSLPUEB;W0RMJ2P85R;Réseau AlterBase - Faye l'Abbesse - Centre;;441 AV MARGUERITE PEREY 77127 LIEUSAINT;;[-0.4074369,46.3157895];;FRSHEE912;FRIONE101203;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.288004;47.989077;;;; +;;;;;;;;FRFR1PIKAA3NFK9U;YFBVDEVTCQ;Réseau AlterBase - Geay - Mairie;;6 Rue D’Austerlitz 31260 Salies-du-Salat;;[-0.670187,46.821];;FRSHEE913;FRCPIE66037152;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.602383;48.000205;;;; +;;;;;;;;FRFR1PLM09XMN1JX;HKLD3MTZJB;Réseau AlterBase - La Crèche - Gare;;295 Rue Paul Sabatier, 11400 Castelnaudary, France;;[-0.18543031,47.0539167];;FRSHEE914;FRCPIE66037151;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.11163;48.045053;;;; +;;;;;;;;FRFR1PGVSCIPZ5TS;BOHVRKIAYW;Réseau AlterBase - Melle - Place de la Poste;;Lieu dit 0, 73260 Les Avanchers-Valmorel;;[-0.418693,46.82054];;FRS51E43906;FRCPIE66035952;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.647624;48.043351;;;; +;;;;;;;;FRFR1PGCDA7HXZKI;PL7JHFSCKK;Réseau AlterBase - Beauvoir sur Niort - Centre;;110 CHE DU CAMPING 38220 VIZILLE;;[-0.296768,46.572497];;FRS51E43907;FRCPIE66035951;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.666764;48.000162;;;; +;;;;;;;;FRFR1PIWH1A2IBF7;WUW4LZ9TPI;Réseau AlterBase - Bressuire - agence Séolis;;49 RUE DE MONTBELIARD25150 PONT DE ROIDE;;[-0.012737,46.083781];;FRS28E129084;FRIONE101206;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.965283;48.017411;;;; +;;;;;;;;FRFR1PNRRQEKQHFI;DNX2FL4ZPW;Réseau AlterBase - Bressuire - Siège de la Communauté d'Agglo 2B;;21 Av. Marcel Dassault, 93370 Montfermeil, France;;[-0.2109496,46.9851529];;FRS51E43908;FRIONE101205;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.055979;48.020196;;;; +;;;;;;;;FRFR1PCKCVU0L4PL;ZUMX4SSUME;Réseau AlterBase - Bressuire - Gare;;9 Rue DU FOUGERAY 35500 VITRE;;[-0.278269,46.976755];;FRS51E43909;FRIONE101204;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.702759;47.930405;;;; +;;;;;;;;FRFR1PYVE4QCBHBZ;YKVA6WUBXU;Réseau AlterBase - Bressuire - Centre commercial Pont d'Ouit - QC;;Place Auguste Tinchan 77640 JOUARRE;;[-0.244574,46.99604];;FRCPIE65576751;FRIONE407903;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.77271;48.000117;;;; +;;;;;;;;FRFR1PPDP2V645KH;N3JWK6WYPH;Réseau AlterBase - Bressuire - Bocapôle - QC;;10-12 Rue de la Chapelle, 77640 Jouarre, France;;[-0.2347598,46.991451];;FRCPIE65576752;FRIONE407901;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.129024;49.19134;;;; +;;;;;;;;FRFR1PYKHMXYULO0;FWEIOZ4CNV;Réseau AlterBase - Boismé - Mairie;;Rue de la Croix de Mission77640 Jouarre, France;;[-0.353478,46.045597];;FRCPIE66784951;FRIENE0089011;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.101673;50.740027;;;; +;;;;;;;;FRFR1POJWVDULAW6;JDCFCTPI49;Réseau AlterBase - Bessines - rue Pierre Mendes France;;39 RUE CARNOT 86000 POITIERS;;[-0.216844,46.972578];;FRCPIE66784952;FRIONE41235;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.388127;48.693561;;;; +;;;;;;;;FRFR1PFQ5XVNKIGI;ETJO1NSOE0;Réseau AlterBase - Beauvoir sur Niort - Centre commercial Intermarché - QC;;5 RUE DE DUNKERQUE 42100 SAINT-ETIENNE;;[-0.0255528,46.57567772];;FRIONE432602;FRCPIE66009752;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.00296;49.081079;;;; +;;;;;;;;FRFR1PRZMUAPWE9V;CQ2K0BBPT6;Réseau AlterBase - Melle - Place Bujault Marché;;Château du Fey (Lieu-dit, 89300 Villecien, France;;[-0.2887617,46.5165944];;FRSHEE901;FRCPIE66009751;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.387607;49.141723;;;; +;;;;;;;;FRFR1PDX98OTN73K;PWVZRTY6Z8;Réseau AlterBase - St Maixent L'Ecole - Centre commercial E.Leclerc - QC;;QUARTIER CASSOULIN 13690 GRAVESON;;[-0.394435,46.144166];;FRS51E43905;FRS37E1316;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.812512;49.288753;;;; +;;;;;;;;FRFR1PJBXZWVVFM5;Y6VC4OKUHC;Réseau AlterBase - Aubigné - Mairie;;LD LES GAUNIES 24420 ANTONNE-ET-TRIGONANT;;[-0.5380875,46.4077779];;FRS51E43904;FRS37E1315;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.978945;50.413551;;;; +;;;;;;;;FRFR1PGSANUPSRJN;ZU4GWOCMMU;Réseau AlterBase - Argentonnay - Supêrette;;11 Rte de Bayonne, 64190 Susmiou, France;;[-0.216606,46.975545];;FRS18E147553;FRCPIE67266452;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.511242;50.68201;;;; +;;;;;;;;FRFR1PZK1N3I2E1J;UJRBFAQ6K8;Réseau AlterBase - Ardin - rue Alphonse Lavoix;;800 chemin du gabinet 83440 Montouroux;;[-0.10559154,46.1315471];;FRIONE402002;FRCPIE67266451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.221258;50.381036;;;; +;;;;;;;;FRFR1PSBKBL8DGO5;RXZDFS3J0N;Réseau AlterBase - Airvault - Pôle Santé & MAM;;7 Route Napoléon, Les Houches, France;;[-0.742817,46.989946];;FRIONE402003;FRCPIE67266352;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.462091;50.58572;;;; +;;;;;;;;FRFR1PEIFCSLELR2;SO1ITMVT8N;Réseau AlterBase - Airvault - Place du Cygne;;3 Traverse DES CHARMETTE 13190 ALLAUCH;;[-0.5216527,46.3730661];;FRIONE402004;FRCPIE67266351;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.099427;48.172688;;;; +;;;;;;;;FRFR1PH5EHPPZSMJ;GXEHLA3ZLD;Réseau AlterBase - Aiffres - Place René Cassin;;1 Pl. du Rendez Vous, 95490 Vauréal, France;;[-0.18987608,46.2061172];;FRIONE40205;FRCPIE67266252;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.993622;50.405159;;;; +;;;;;;;;FRFR1PCAGYQWVCSD;RJRTM1TGUD;Réseau AlterBase - Bressuire - Pôle Multimodal;;6 Rue de la Haye, 88600 Aydoilles, France;;[-0.232689,46.888542];;FRS51E151675;FRCPIE67266251;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.629207;49.4094;;;; +;;;;;;;;FRFR1PYTZVC6LZLM;JE9YSXAOIJ;Réseau AlterBase - Bressuire / St Sauveur - Mairie;;Rue de la Vieille Grange, 76200 Dieppe, France;;[-0.418977,46.610536];;FRS51E43647;FRS37E1212;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.255056;47.348542;;;; +;;;;;;;;FRFR1PRFKYFA0B17;VGP2D1IL1W;Réseau AlterBase - Melle / St Martin les Melles - Lotissement du Pérot;;180 rue Emile Zola, 80450 Camon;;[-0.02581,46.719493];;FRS28E141733;FRS37E1210;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.426173;50.730562;;;; +;;;;;;;;FRFR1PEAREAOIQCM;KSPUBKEN0J;Réseau AlterBase - Ménigoute - Mairie;;16, av escadrille normandie niémen 31700 BLAGNAC;;[-0.214995,46.978754];;FRS18E147554;FRS37E1313;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.363111;50.63337;;;; +;;;;;;;;FRFR1PA8RIVCHP5G;Y3QEBNRC6N;Réseau AlterBase - Moncoutant sur Sèvre - Mairie;;120, Route de Paris - 54440 HERSERANGE;;[-0.2157898,46.9787321];;FRS41E52880;FRS37E1312;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.019881;49.213929;;;; +;;;;;;;;FRFR1PJPZIUHAPOR;HC303G1OWT;Réseau AlterBase - Niort - agence Séolis;;Route de Fontanès, Vacquières;;[-0.1979541,46.981369];;FRS37E1260;FRIENE0089024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.382405;50.308256;;;; +;;;;;;;;FRFR1PS5JH7VHBMO;X8N8GBP7Y5;Réseau AlterBase - Niort - Patinoire;;Chemin du camping, L'Auroire, Aubigny Les Clouzeaux;;[7.371096600000001,48.15908049999999];;FRS37E1261;FRIENE0089023;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.047322;50.422518;;;; +;;;;;;;;FRFR1PI7ALUF5SHC;QQYRC2FCMZ;Réseau AlterBase - Niort - Près Faucher;;Camping La Peyrugue, Daglan;;[3.9257621,43.5282927];;FRS51E43896;FRIENE0089012;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.878767;50.615268;;;; +;;;;;;;;FRFR1PX39YEQWXEA;YE8TVC3QFK;Réseau AlterBase - Niort - Moulin du Roc;;Vaures, Parcoul;;[-2.64867, 47.64051];;FRS51E43897;FRS37E1317;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.472424;47.311365;;;; +;;;;;;;;FRFR1PFTQ4OOHE5N;U3BIAJ1J75;Réseau AlterBase - Niort - Conseil Départemental 79;;Departementale 52, Bouzic;;[3.9652648, 50.2669787];;FRS51E43900;FRS37E1318;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.613217;47.771294;;;; +;;;;;;;;FRFR1PGRBGH8S115;ICW8FUK8MQ;Réseau AlterBase - Niort - Conseil Départemental 80;;247 Chemin de la plaine, Ruoms;;[4.356166554456669, 43.7920082634787];;FRS51E43901;FRCPIE66013951;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.935342;50.613957;;;; +;;;;;;;;FRFR1PCPCFCO01CI;QOTMBBSOOH;Réseau AlterBase - Niort - L'Acclameur;;Plage de Pinarello, Zonza;;[1.579135760951923, 50.51658485952207];;FRS41E52879;FRS37E1323;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.921037;47.822904;;;; +;;;;;;;;FRFR1PN2ZPQBEZ5K;JSQOWLLCAR;Réseau AlterBase - Cerizay - Mairie;;Route du rocher, Sampzon;;[1.5865782468226999, 50.52023803636371];;FRTNME18B924480;FRIONE412304;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.84;47.500958;;;; +;;;;;;;;FRFR1POYDVXOV7P5;XYEYOSNA3V;Réseau AlterBase - Brion près Thouet - Aire de repos;;341 Chemin de la Parée;;[1.5802344825222774, 50.5237102932706];;FRTNME18B924490;FRIONE412303;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.344864;49.570806;;;; +;;;;;;;;FRFR1PQGLWSBDZQW;CCMOAYZWCU;Réseau AlterBase - Bressuire / St Sauveur - Salle Omnisports;;49 avenue Jean Zay;;[1.5890656778496008, 50.526149397749904];;FRTNME18B924500;FRIONE412302;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.022089;50.333162;;;; +;;;;;;;;FRFR1PCYAJRHUDL0;VJBXXF;Réseau AlterBase - St Pardoux-Soutiers - Zone Commerciale;;8 Avenur du Général De Gaulle;;[1.5865497163965239, 50.52024529238238];;FRCPIE67374751;FRIONE412301;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.73321;50.759564;;;; +;;;;;;;;FRFR1PWQP2PREYY5;PA2YDVV83M;Réseau AlterBase - Valdelaume / Bouin - Grande rue;;Lieu dit Le Vigiers, 24240 Monestier;;[1.59567398310793, 50.51999281984215];;FRTNME089116961;FRCPIE66021452;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.889034;48.280718;;;; +;;;;;;;;FRFR1PDTPOLB2LSC;MYXF37NMTW;Réseau AlterBase - Thouars - Gare;;Route de la mer, Brushetto - 20240 Ghisonaccia;;[1.5957009765331387, 50.52003488743544];;FRTNME089116960;FRCPIE66021451;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.656658;50.34138;;;; +;;;;;;;;FRFR1PPWBKPDL4GY;SCDGJJ;Réseau AlterBase - Thouars / Mauzé-Thouarsais - Mairie;;Route de la Couarde - 17580 Le Bois-Plage-en-Ré;;[5.143766265497639, 43.3292004491334];;FRTNME089113880;FRS37E1324;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.87942;47.283904;;;; +;;;;;;;;FRFR1PBCORODH6N5;NWWABU;Réseau AlterBase - Thouars / Ste Radegonde - agence Séolis;;Le Bourg - 24290 Thonac;;[1.987552127378094, 43.442782142736384];;FRS18E142816;FRCPIE66017752;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.48157;50.524317;;;; +;;;;;;;;FRFR1PY9OMLDCVIQ;JPMAOIPEVR;Réseau AlterBase - Thouars / Ste Radegonde - Centre commercial;;Route de Gruissan;;[4.1348357,48.3005817];;FRS18E142815;FRCPIE66013952;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.45281;50.182967;;;; +;;;;;;;;FRFR1PA5TVCKW5J5;LG2QVY6WC6;Réseau AlterBase - Val en Vignes / Cersay - Place de la Mairie;;Les Mazes;;[5.954054532862406,47.2166457444792];;FRCPIE65807652;FRCPIE66017751;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.47735;50.129276;;;; +;;;;;;;;FRFR1PRE6KFOZKSG;Engencilaos;Réseau AlterBase - Thouars - Château de la Trémoïlle;;50 Avenue de Selves;;[2.0458858,48.7978439];;FRCPIE65807651;FRS37E1322;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.424006;48.106855;;;; +;;;;;;;;FRFR1PRRLMOTRKQ4;Engenguill;Réseau AlterBase - Vasles - Place de la Mairie;;62 Route d'Argentouleau;;[1.9321064,48.7513226];;FRIONE12485;FRS37E1321;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.557195;47.283199;;;; +;;;;;;;;FRFR1PHWWPMMR63R;Engencafres;Réseau Alterbase - Verruyes - Centre;;712 Chemin de Navarosse;;[3.217619, 50.566184];;FRIONE124804;FRS37E1320;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.834461;51.017619;;;; +;;;;;;;;FRFR1PB0GEOLP0UK;Engenstpier;Réseau AlterBase - Villiers en Bois - Zoodyssée;;2 Chemin du Manoir;;[9.345135599999999,41.69983680000001];;FRIONE124803;FRS37E1319;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.417452;47.357664;;;; +;;;;;;;;FRFR1PARZ7KBQW7E;Engenlagon;Réseau AlterBase - Villiers en Plaine - Ecole;;681 Rue du Tit;;[-0.4743602103553713, 47.51236168509763];;FRIONE124802;FRS55E66320;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.361258;49.173237;;;; +;;;;;;;;FRFR1PRBFHMY0D1N;Engenstemari;Réseau AlterBase - Thouars - Mairie;;Route de Saint-Laurent;;[4.95,43.47];;FRIONE124801;FRS55E66319;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.277484;50.379911;;;; +;;;;;;;;FRFR1PLLHRNZU6OU4U33;Engenstben;Réseau AlterBase - Sauzé Vaussais - Pôle Médical;;18 Route de la Tonnelle;;[2.4218187,49.3959347];;FRCPIE65805952;FRS37E1302;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.40005;50.485562;;;; +;;;;;;;;FRFR1PLLIDCQ4E41W16R;RR8JDRWME6;Réseau AlterBase - St Pierre des Echaubrognes - Centre;;Route de la plage;;[5.7471049, 45.4137074];;FRCPIE65805951;FRIONE101306;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.29015;48.293876;;;; +;;;;;;;;FRFR1PLLHQB3EQ7FWYJ7;VORHPZSFUA;Réseau AlterBase - St Rémy - Salle Polyvalente;;33 Avenue de l'Europe;;[3.1967988, 44.4381511];;FRCPIE67210652;FRCPIE65896952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.28364;47.643211;;;; +;;;;;;;;FRFR1PFBTYPI8YWW;GHOQAEUSKQ;Réseau AlterBase - St Roman les Melles - Salle des Fêtes;;8 Route de Gros Jonc;;[6.5677804, 43.2866873];;FRCPIE67210651;FRSHEE921;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.0183;45.79;;;; +;;;;;;;;FRFR1PTHJYJFR6JY;LQAKGFHXPA;Réseau AlterBase - St Varent - Place du 14 Juillet;;692 Route d’Orange 84870 Loriol-du-Comtat;;[2.758025, 42.484241];;FRTNME089125120;FRCPIE65916852;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.55014;47.776331;;;; +;;;;;;;;FRFR1PJIPTIDSXGP;DCAR0JL1LK;Réseau AlterBase - Secondigny - Mairie;;Rue Georges Besse;;[5.057033999999999, 45.84568999999999];;FRTNME089125121;FRCPIE65916851;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.58038;47.284263;;;; +;;;;;;;;FRFR1PPTGFUYTSHN;VWBTJN8VI5;Réseau AlterBase - Thénezay - Mairie;;1,rue Jean Claude Duret;;[5.0311097, 44.0911453];;FRTNME089125190;FRCPIE65916752;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.17878;43.42367;;;; +;;;;;;;;FRFR1PHSC6UVAWYO;O2JITRMIMN;Réseau AlterBase - Thouars - Place Lavault;;60,Avenue Jean Jaures;;[1.372115, 46.12509099999999];;FRTNME099112161;FRCPIE65916751;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.203654999999999;43.58858;;;; +;;;;;;;;FRFR1PPYLGWD;GWXQ3IKEQL;Réseau AlterBase - Thouars - Place Lavault - QC;;237 Rue du Maréchal Joffre;;[1.3670389, 46.10760080000001];;FRCPIE65819951;FRIONE43155;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.04449;47.376567;;;; +;;;;;;;;FRFR1PAYKGDM;LAMORX8BZO;Réseau AlterBase - Thouars - Centre commercial Super U - QC;;609,Route de la Roquette;;[4.4192407, 44.4744571];;FRS37E1247;FRIONE431504;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.083001;44.90681;;;; +;;;;;;;;FRFR1PGVLLPF2MXK;VK0TQGFDSG;HOTEL AU NID DE CIGOGNES;;32, Boulevard de Thibaud;;[1.5955586, 45.2732968];;FRS37E1246;FRIONE431503;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.075081;43.62854;;;; +;;;;;;;;FRFR1PKWCFZHSDUU;DAWXONRZ2Q;Hôtel Amérique Palavas Plage Piscine;;3, rue de la gare;;[2.79973, 43.2076102];;FRTNME18B931391;FRIONE431502;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8678295;43.64246;;;; +;;;;;;;;FRFR1PMEDKZN;ZU2CHSGYDT;CLERIGO;;Rue, Philippe Charbonneaux;;[-1.1178263,45.6494913];;FRTNME18B931390;FRIONE431501;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.39149;43.55739;;;; +;;;;;;;;FRFR1PTM6PKDLX7M;C3JINN4OUP;Mazda - Maubeuge - 22kW AC;;15, Av Salvador Allende;;[4.82,45.33];;FRTNME099901801;FRS37E1282;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.0151949687525528;45.692753;;;; +;;;;;;;;FRFR1PESR34INWKW;LLIKBWHPL24330;MAS GALOFFRE;;18, Les Maragolles;;[2.853408088061449, 43.954525553229516];;FRTNME099901800;FRS37E1281;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.065306;45.44038;;;; +;;;;;;;;FRFR1PX6DOW05MMB;EQRCK1OHOC;Carry-le-Rouet;;15, Rue Alain Bombard;;[2.52710519266027, 48.832825866061164];;FRTNME099112160;FRS37E1255;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4471530662225864;47.583132;;;; +;;;;;;;;FRFR1PHVUHMZ;ZCT8UV6EN8;Vaudreuille;;103 ROUTE DE ST JEAN D'ANGELY;;[3.16,45.80];;FRTNME089125191;FRS37E1254;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.294283;43.927927;;;; +;;;;;;;;FRFR1PSTEZAD;AVGUJC2YHB;Gamba et Rota 2;;191,Rue JB Lebas;;[5.780446, 43.9585575];;FRTNME099107160;FRSHEE932;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.04;43.532883;;;; +;;;;;;;;FRFR1PK3T4LY2OWV;RITQEFPOJM;Festilight 7D Log;;77,route nationale;;[4.136254786296182, 43.54064693288783];;FRTNME089128811;FRSHEE931;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8;43.811153;;;; +;;;;;;;;FRFR1PFI7ROKDWGQ;JAQ9DIPMFU;Festilight 7D Bur;;7, route de Riom;;[3.8846990973662954, 44.107170327068204];;FRTNME089128810;FRSHEE924;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.876855607462602;45.836617;;;; +;;;;;;;;FRFR1PUYBK6R4NSB;DOAFWLQLHH;Festilight 22D Ter;;125,Rue de la coquillade, Quartier de la coquillade;;[4.206137457654465, 43.745680776707296];;FRTNME089128801;FRSHEE923;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8801712406498;43.693127;;;; +;;;;;;;;FRFR1PUFUSXC;DKIVXKZFGA;Festilight 22D Log;;27, Route de Lussac 86500 Montmorillon;;[-1.2585815, 45.90524019999999];;FRTNME089128800;FRS18E170418;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.9645139789942;46.87914;;;; +;;;;;;;;FRFR1PTDVHUEWOGS;LYZYQRLMOW;Festilight 22D Bur;;ZAC des portes de Provence, Bd Charles André;;[4.08,43.68];;FRTNME089125201;FRS18E170419;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8801260998633;46.87354;;;; +;;;;;;;;FRFR1PFAONUN3BFI;BRUTSG;Est Auto;;1,Parc de la Calarde;;[1.23,49.11];;FRTNME089125200;FRS37E1283;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.9643743348954;46.45317;;;; +;;;;;;;;FRFR1PPVB2J2HEHR;TVIF7DKLUF;Socohy Hyundai Montigny;;24,rue du Manoir de Servigné;;[1.6075326, 50.6962979];;FRCPIE67374752;FRCPIE65934252;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.965496889543137;43.48583;;;; +;;;;;;;;FRFR1PKZMP18EEAU;WRTQ7PSGYO;Socohy Hyundai Coignière;;Rue du pré aux boeufs;;[-1.6760356, 46.441643];;FRCPIE67374552;FRCPIE65939351;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.9630213737653;48.53897;;;; +;;;;;;;;FRFR1PTEKGN2NYYP;GQOVRUFGXB;CYSOING;;14,rue de l'industrie;;[2.62602,47.96226];;FRCPIE65820051;FRCPIE66494552;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.212029;45.69066;;;; +;;;;;;;;FRFR1PGMKXTSAABQ;TY2KJ0CUTI;VillaPoggioli1;;Rue, Philippe Charbonneau;;[2.792899,48.034992];;FRCPIE67374551;FRCPIE66494551;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0855646;45.8936172;;;; +;;;;;;;;FRFR1PL5VJA9PLOF;QHFGR3GEVG;RURAL GARDEN - CENTRAKOR EXT GAUCHE;;232 Rue Édouard Delamare Deboutteville 76160 Saint-Martin-du-Vivier;;[2.772764,47.968284];;FRSHEE832;FRCPIE65935452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.395016;49.114638;;;; +;;;;;;;;FRFR1POTIU7I3VVW;FQ7UX0N0KS;Borne Charriere Ronalev;;10 rue des Princes;;[2.736547,47.918313];;FRSHEE831;FRCPIE65935451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.44;49.11801;;;; +;;;;;;;;FRFR1POZNIDWLXDO;DBUNVRBU3K;Midas Fitz-James;;17 Av. Charles de Gaulle, 69370 Saint Didier au Mont d'Or;;[2.786245,47.952592];;FRSHEE822;FRCPIE65934952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.466439;49.114571;;;; +;;;;;;;;FRFR1PPIY0KLXO2X;KHNTCSOFD9;RechargerMonAuto - Déplacer Les Montagnes;;92 quai Jea;;[2.774432,47.968048];;FRSHEE821;FRCPIE65934951;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.824020549638603;50.0958814;;;; +;;;;;;;;FRFR1PLSMJ9I3RMS;R8SVAECJXV;RechargerMonAuto - Calice du Gevaudan;;1 Rue Claude Chappe;;[2.709255,47.99084];;FRSHEE814;FRCPIE65934251;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.84;43.56942;;;; +;;;;;;;;FRFR1PRHN6Y2IMIA;E6UKE8TVSU;RechargerMonAuto - Golfe de Saint Tropez;;43 Route du Lion 33680 LACANAU;;[2.618866,47.991795];;FRSHEE813;FRS37E1284;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.83;49.491605515295085;;;; +;;;;;;;;FRFR1PHUO4UYLRZ6;RPDMF5LYE0;RechargerMonAuto - Camping De Nogarede;;57 rue des champs 59100 ROUBAIX;;[2.631166,47.940851];;FRSHEE812;FRIONE45385;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.02;44.116006;;;; +;;;;;;;;FRFR1PEXGSD0N3H2;WOJ0SHUXRA;RechargerMonAuto - Fibtech;;21 rue des Frères Remy;;[2.686007,47.945937];;FRSHEE811;FRIONE453806;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4541187;43.32939290277349;;;; +;;;;;;;;FRFR1PJ0TOR4JKAG;SCG80SXBHI;RechargerMonAuto - Aubipose;;Zi de l'Europort 57500 SAINT-AVOLD;;[2.730546,48.012275];;FRIENE0032024;FRIONE453805;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.504764;48.072785;;;; +;;;;;;;;FRFR1PKF35TDNN0J;ZISHTQLCPD;RechargerMonAuto - Les Seigneurs;;1 Rue de Bueil 28260 Guainville;;[2.714751,47.989077];;FRIENE0032023;FRIONE453804;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.59176364;48.07256195733498;;;; +;;;;;;;;FRFR1PGII6F3OBUX;QWFFJSO2PP;RechargerMonAuto - Hotel du pont;;3 PLACE EDOUARD BOUILLIERE;;[2.72942,48.000205];;FRIENE0032012;FRIONE453803;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.846839699999999;48.37587100374;;;; +;;;;;;;;FRFR1PW8NSPQCMF8;MLRG4EJHTC;RechargerMonAuto - Luguet;;3 avenur saint exupery 352;;[2.697983,48.045053];;FRIENE0032011;FRIONE453802;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.2113974;48.289964210164;;;; +;;;;;;;;FRFR1PLCZEGSP1N1;O2O5X8CIOC;RechargerMonAuto - La Chadenède;;2300 Les Rouges Terres 50470 Cherbourg-en-Cotentin;;[2.740797,48.043351];;FRCPIE65799052;FRIONE453801;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9849957;48.376012836572;;;; +;;;;;;;;FRFR1PWG8RNRAOA1;OURCDLLPBN;RechargerMonAuto - Peyrat;;14 Rue des Capucines;;[2.729438,48.000162];;FRCPIE65799051;FRSHEE922;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.38;48.289919288542;;;; +;;;;;;;;FRFR1PLLJWOR2WQJIQ3M;BK6QUX36OK;RechargerMonAuto - Relais des Corbières;;Rue Saint-Bartholoma / 22 Rue de Souligné;;[2.672061,48.017411];;FRCPIE65798952;FRCPIE66441952;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.26;48.29004613244174;;;; +;;;;;;;;FRFR1PAERRQIG8TN;FHPCMFYE1W;Camping le Puits de l'Auture;;La pièce des Perrières - Impasse des Allouettes - RD 51;;[2.715104,48.020196];;FRCPIE65798951;FRCPIE65939451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.63;48.28993400965;;;; +;;;;;;;;FRFR1PXNENEJQFNF;IEBNZSOUQ4;35 RUE DE GAMPALOUP;;Boulevard Demorieux - Parking;;[2.736391,47.930405];;FRCPIE65798851;FRCPIE66441951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5582183;44.196621;;;; +;;;;;;;;FRFR1PWTDGKNH6AA;GW64CPZFD3;FORD SAINT AFFRIQUE;;Chemin du villaret;;[2.729456,48.000117];;FRSHEE841;FRCPIE65900151;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.3126718;49.2371711;;;; +;;;;;;;;FRFR1PNWJ7TJ2XQR;WSKBVB1WJM;Hopital Saint Camille Parking exterieur;;Route de lorient;;[6.143853, 49.19134];;FRSHEE842;FRCPIE65899352;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.31;50.6610416;;;; +;;;;;;;;FRFR1PRJDZKR;BLHRLNQFGY;IRVE ART DECO FINITION;;Tennis club, Rue Suzanne Lenglen, 60000 Beauvais;;[3.133115, 50.740027];;FRCPIE65799551;FRCPIE65899351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.2943536;43.33;;;; +;;;;;;;;FRFR1PHDQRXKN1N0;UTHD3KC8DN;borneco casab;;12 rue du Petit Séminaire, 62140 HESDIN;;[6.12795, 48.693561];;FRCPIE66083751;FRCPIE65898452;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4;48.594319;;;; +;;;;;;;;FRFR1PAKXCVB;PFK6JNKO3Z;borneco casaa;;1 RUE WATTINNE BOSSUT, 62770 AUCHY-LES-HESDIN;;[6.109315, 49.081079];;FRCPIE65804352;FRCPIE65898451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4799048;43.144379705624395;;;; +;;;;;;;;FRFR1PFBYYXG;XO3MVEDDXB;borneco saint quentin;;6 RUE D HESDIN, 62770 AUCHY-LES-HESDIN;;[5.409276, 49.141723];;FRCPIE65804351;FRCPIE65897752;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.8283161;43.14;;;; +;;;;;;;;FRFR1PSRXQZC;LLID3GFDC93UL5;SCP ACANTHE DRIMARACCI;;70 PLACE DE LA GARE, 62990 BEAURAINVILLE;;[4.02371, 49.288753];;FRCPIE65804252;FRCPIE65897751;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.304633617401123;43.12;;;; +;;;;;;;;FRFR1PFVCJPT;V9N0HA5IKV;SELARL PHARMACIE CEVENOLE;;2 PLACE DE LA MAIRIE, 62990 BEAURAINVILLE;;[2.988355, 50.413551];;FRCPIE65804251;FRCPIE65897552;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8718;49.0202152;;;; +;;;;;;;;FRFR1PXSCWYL;HDIXLRAADA;IFERRO;;15 RUE FERNAND LEMERCIER, 62140 HUBY-SAINT-LIEU;;[3.222288, 50.68201];;FRS37E1243;FRCPIE65897551;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9342;48.903776;;;; +;;;;;;;;FRFR1PMPQTMN;QVUXSYMJAL;Intermarché - Dolus-d'Oléron - 22kW AC;;10 RUE DU MANÈGE, 62140 HESDIN;;[3.478509, 50.381036];;FRS37E1242;FRS37E1273;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.746956;46.47844882;;;; +;;;;;;;;FRFR1PVCJWZZ6OLJ;X9PLF6UY7Y;Borne de recharge Sud Camargue Lunel Viel;;3 rte de Latrape, 31310 Rieux-Volvestre;;[3.08386, 50.58572];;FRCPIE66083752;FRS37E1272;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3841132506467066;45.7618696;;;; +;;;;;;;;FRFR1PWMESPU;XFZEEO1KRT;XEV601C;;5 PLACE DE LA GARE, 62140 HESDIN;;[3.288004, 48.172688];;FRS37E1253;FRCPIE66314952;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.012604743905726;44.9769783;;;; +;;;;;;;;FRFR1PZTZRSG;UJGVB4DZD2;desenfans boulogne;;Aquaspace, RUE ANTONIO DE HOJAS, 60000 Beauvais;;[1.602383, 50.405159];;FRCPIE65799552;FRCPIE66314951;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.290915231602582;45.7312637;;;; +;;;;;;;;FRFR1PEQOI2FVJKI;EIC8ALLHQN;RechargerMonAuto - Talmont;;1 RUE DU DOCTEUR PASCAL MULLIEZ, 62140 MARCONNE;;[2.11163, 49.4094];;FRS37E1241;FRCPIE65897452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.3812921;46.75;;;; +;;;;;;;;FRFR1PBTEAKY;GUOMXU8IF3;Place Eglise;;32 RUE DU CHAMP SAINTE-MARIE, 62140 MARCONNE;;[0.647624, 47.348542];;FRCPIE65803552;FRCPIE65897451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.25;44.5;;;; +;;;;;;;;FRFR1PTXYSYT;VKXMXT;Parking Salle Polyvalente;;Rue du Lieutenant Vasseur, 55000 BAR-LE-DUC;;[1.666764, 50.730562];;FRCPIE65803551;FRCPIE65897352;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.96;44.82;;;; +;;;;;;;;FRFR1PNZ5AHMP1BV;BTDFPZ;Parking Bassin du Loing;;20 Avenue des Etats Unis, 52100 SAINT DIZIER;;[2.965283, 50.63337];;FRCPIE65605252;FRCPIE65897351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1297;51.0072064;;;; +;;;;;;;;FRFR1PITBF0WI799;WYRLXZ;Parking Mairie;;Place de la Haye, 62155 MERLIMONT;;[4.055979, 49.213929];;FRCPIE65605251;FRCPIE65900152;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1259;46.585065;;;; +;;;;;;;;FRFR1PUDZHMM2BS3;LLIJWV6HQ25LEY;Parking Peupleraie;;ZA route du Meuble, 35760 ST GREGOIRE;;[2.702759, 50.308256];;FRCPIE65799652;FRCPIE65900251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.33396657;46.59;;;; +;;;;;;;;FRFR1PMJDWGUEGAV;M1POXHVSQW;Parking Presse;;1400 Avenue d'Antibes, 45200 Amilly;;[2.77271, 50.422518];;FRCPIE65799651;FRCPIE65900252;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.35827385;49.1928486;;;; +;;;;;;;;FRFR1PMHD8X0KU4L;LLIIL4KRO26MRR;Parking Bar;;95, Faubourg de Ménil, 54300 LUNEVILLE;;[3.129024, 50.615268];;FRCPIE65819952;FRCPIE65952552;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.39379;45.44;;;; +;;;;;;;;FRFR1PAKAQHLZXWE;XLQAADPOMW;Parking Boulangerie;;Restaurant Memphis, RUE FERNAND SASTRE, 60000 Beauvais;;[5.101673, 47.311365];;FRCPIE65820052;FRCPIE65911651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.390635;43.89146969999999;;;; +;;;;;;;;FRFR1PEWHDONWUTE;OIMFWKQU3A;Parking Dojo;;9 rue Alexandre Fleming, 54700 PONT A MOUSSON;;[7.388127, 47.771294];;FRCPIE65171351;FRCPIE65911451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.378618;46.4675537;;;; +;;;;;;;;FRFR1PLLIK0JOAC1WRD4;LBVPKUWE5C;Parking Commissariat;;Jardins Rostand, RUE DE SÉTUBAL, 60000 Beauvais;;[3.00296, 50.613957];;FRS37E1259;FRCPIE65911351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.355691;50.90874481201172;;;; +;;;;;;;;FRFR1PLLIK018BS1Z3O4;VBMK6MTPKS;Parking Eglise;;Rue de l'Abreuvoir, 77380 COMBS LA VILLE;;[6.387607, 47.822904];;FRFASE3310506;FRCPIE65911251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.343717;48.07067;;;; +;;;;;;;;FRFR1PLLIK0B6WE2A0C7;OEGY4OXRSX;Parking Girafe;;177 Rue Auguste Biblocq, 62155 MERLIMONT;;[6.812512, 47.500958];;FRFASE3310505;FRCPIE65911151;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.406672;48.70158;;;; +;;;;;;;;FRFR1PSSHMQIUI0C;ECQW9RJZ8K;Parking Fleuriste;;52, rue de la Bolle, 88100 SAINT DIE;;[2.978945, 49.570806];;FRFASE3310504;FRCPIE65911051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.394561;49.495106;;;; +;;;;;;;;FRFR1PLLI8Y38FP1V7L9;MQXVLYFBDW;Place du marché;;3-5, Rue Marcel Pagnol, 91800 BOUSSY ST ANTOINE;;[3.511242, 50.333162];;FRFASE3310503;FRCPIE65910951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.41180177;48.90602152741062;;;; +;;;;;;;;FRFR1PLLJ5IARA3AQQZE;MP0UEPI09O;Parking Restaurant;;Rue du Clos Auchin, 91800 BOUSSY ST ANTOINE;;[2.221258, 50.759564];;FRFASE3310502;FRCPIE65952551;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.848091;43.57438496198235;;;; +;;;;;;;;FRFR1PIU1FUKZ0FE;G9SVXXKLU9;R3 - Norauto Metz Semecourt;;Rue de Rochopt, 91800 BOUSSY ST ANTOINE;;[7.462091, 48.280718];;FRFASE3310501;FRS37E166911;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.41498069;43.70607256724716;;;; +;;;;;;;;FRFR1PWKEA7ULFM6;VNW0SO2WZX;R3 - Norauto Roncq;;3, avenue de Villiers, 91210 DRAVEIL;;[3.099427, 50.34138];;FRFASE3301507;FRS37E1278;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.396071;46.3406381;;;; +;;;;;;;;FRFR1PD19TOD1FRC;R7NWGYM2SZ;R3 - Norauto Nancy Laxou;;Rue de la citadelle, 91210 DRAVEIL;;[5.993622, 47.283904];;FRS37E1265;FRS37E1277;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.06127559;48.82966;;;; +;;;;;;;;FRFR1PYPZPZO41JG;IOCMBEAY1L;R3 - Norauto Metz Augny;;53, rue Ferdinand Buisson, 91210 DRAVEIL;;[2.629207, 50.524317];;FRS37E1264;FRCPIE65901952;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.06130988;48.82597;;;; +;;;;;;;;FRFR1PA4ZETSZ9FZ;ZDNIEIV5PZ;R3 - Norauto Verdun Houdainville;;Allée Jacques Mayol, 91210 DRAVEIL;;[3.255056, 50.182967];;FRS37E1263;FRCPIE65901951;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.05445737;47.27512821;;;; +;;;;;;;;FRFR1PPDEDWPUBBC;HGWIUU7WVJ;R3 - Norauto Reims Neuvilette;;Parking, 208 BOULEVARD HENRI BARBUSSE, 91210 DRAVEIL;;[3.426173, 50.129276];;FRS37E1262;FRS37E1276;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.10233384;47.29464201;;;; +;;;;;;;;FRFR1PLLIK0MKQP2KRJB;XHQSUJ0P53;R3 - Norauto Noyelles Godault;;15 Avenue de l'Europe, 91210 DRAVEIL;;[7.363111, 48.106855];;FRCPIE66380451;FRS37E1275;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.033491;47.287674;;;; +;;;;;;;;FRFR1PRZMEWGYXIY;GM3IKXS9DT;R3 - Norauto Leers;;Place de l'An 2000, 77380 COMBS LA VILLE;;[5.019881, 47.283199];;FRCPIE66380351;FRS37E166912;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.425071;47.288267;;;; +;;;;;;;;FRFR1PG7WRYXX7TU;GWQCTT01WA;R3 - Norauto Petite Forêt;;4 ROUTE DU CAMP, 77950 MONTEREAU SUR LE JARD;;[2.382405, 51.017619];;FRIONE40985;FRCPIE65939352;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.42217;47.28234;;;; +;;;;;;;;FRFR1PAKZKLJ5ISV;UGJRF0YHEZ;R3 - Norauto Fâches Thumesnil;;Rue de la station, 62155 MERLIMONT;;[5.047322, 47.357664];;FRIONE409806;FRCPIE65939452;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.422346;47.280084;;;; +;;;;;;;;FRFR1PTRCBSB;OFXXVP8UFL;R3 - Norauto Sens;;Clos d'Eguisheim, 68420 EGUISHEIM;;[6.878767, 49.173237];;FRIONE409805;FRIONE101305;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.441108;47.271461;;;; +;;;;;;;;FRFR1PHRWXYL;ZKPBHRQOWL;R3 - Norauto Berck;;22, Rue Aviateur Guérin, 76600 LE HAVRE;;[3.472424, 50.379911];;FRIONE409804;FRCPIE65969251;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.189956;47.281257;;;; +;;;;;;;;FRFR1PG7D91ZNMHR;UATPZ39SAM;R3 - Norauto Beauvais;;Rue Jean-Baptiste Marcet, 77380 COMBS LA VILLE;;[1.613217, 50.485562];;FRFASE3310508;FRS37E1299;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.12831;47.282039;;;; +;;;;;;;;FRFR1PGDFCGE3FAO;VM0SB9N68T;R3 - Pizza del Arte Joué-les-Tours;;Rue René Dumont, 77380 COMBS LA VILLE;;[6.935342, 48.293876];;FRCPIE65885551;FRCPIE65995652;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.610229;47.28378784;;;; +;;;;;;;;FRFR1PKM8GM7ATSN;GDQJEBUTWF;R3 - Norauto Saint Martin Boulogne;;1 rue de la Ferme, 77350 LE MEE SUR SEINE;;[6.921037, 47.643211];;FRCPIE65885552;FRCPIE65995651;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.645486;45.628359;;;; +;;;;;;;;FRFR1PGFBWLWVA0T;OTTLB5IUZU;R3 - Norauto Englos;;Rue Sommeville, 77380 COMBS LA VILLE;;[4.84,45.79];;FRCPIE65892652;FRCPIE65995352;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.589814;47.27943453;;;; +;;;;;;;;FRFR1PK7EP7K1IOK;V3RPWWAZKE;R3 - Norauto Reims Cormontreuil;;1 Avenue Georges Mandel 75016 Paris;;[-3.3448640,47.7763310];;FRCPIE65895452;FRCPIE65995351;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6274056;47.290493;;;; +;;;;;;;;FRFR1PV29FRQK8HC;KZMOD3XW3U;R3 - Norauto Arras;;157 Boulevard Murat 75016 Paris;;[5.0220890,47.2842630];;FRCPIE65895451;FRCPIE65995152;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.623218;44.54181494;;;; +;;;;;;;;FRFR1PYL7CVNYH6R;D2IOI9VPRG;R3 - Norauto Liévin;;77 Boulevard Exelmans 75016 Paris;;[6.73321,43.42367];;FRN54E187520;FRCPIE65995151;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.11859;44.54188269;;;; +;;;;;;;;FRFR1PYCQGXG;FTHFZJ44NR;R3 - Norauto V2;;42 bis Avenue Georges Mandel 75016 Paris;;[3.8890340,43.5885800];;FRN54E187519;FRCPIE65994752;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8647;44.55803133;;;; +;;;;;;;;FRFR1PZCDWN9EH7O;KDEIJGQQJG;R3 - Norauto Quetigny;;20 Boulevard Émile Augier 75016 Paris;;[0.6566580,47.3765670];;FRCPIE66314851;FRCPIE65994751;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.87564;44.56943231;;;; +;;;;;;;;FRFR1PLLIK03NULU8FL0;H7UOMYFMJX;R3 - Norauto Illzach;;60 Avenue Victor Hugo 75016 Paris;;[4.87942,44.90681];;FRCPIE65894652;FRCPIE65994552;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8716;47.905369;;;; +;;;;;;;;FRFR1PLLIK06Y5F130FX;C6TP29MAZB;R3 - Norauto Loos;;115 Avenue de Malakoff 75016 Paris;;[1.48157,43.62854];;FRCPIE65894651;FRCPIE65994551;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.87108;48.204234;;;; +;;;;;;;;FRFR1PGNRTPG;BSTWKUXLHX;R3 - Norauto Luxeuil les Bains;;55 Rue d'Auteuil 75016 Paris;;[1.45281,43.64246];;FRCPIE65892651;FRCPIE65992752;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.87667;48.203893;;;; +;;;;;;;;FRFR1PQFAGQX;YTUL8DKYPE;R3 - Norauto Montbeliard;;70 Avenue Henri Martin 75016 Paris;;[1.47735,43.55739];;FRS37E1266;FRCPIE65992751;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.87537;48.183955;;;; +;;;;;;;;FRFR1PFOVDPBDHHG;ULRXO0HBQH;R3 - Norauto Noyon;;1 Avenue Marceau 75016 Paris;;[0.1815700,45.6927530];;FRCPIE65891252;FRCPIE65990952;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8739;48.198048;;;; +;;;;;;;;FRFR1PC2YSEV8CCC;FMDPPQ40YA;R3 - Norauto Aulnoy les Valenciennes;;72 Avenue Paul Doumer 75016 Paris;;[4.4240060,45.4403800];;FRCPIE65891251;FRCPIE65990951;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.849718;49.015557;;;; +;;;;;;;;FRFR1PV1GZIHEXMU;B6QDXR7OOU;R3 - Norauto Saint Martin Lez Tatinghem;;14 Avenue Théophile Gauthier 75016 Paris;;[7.5571950,47.5831320];;FRCPIE65889952;FRS37E1381;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.86466;48.81617;;;; +;;;;;;;;FRFR1PTBJUNGUIF2;64859;R3 - Norauto Selestat;;2 square Tolstoï 75016 Paris;;[4.8344610,43.927927];;FRCPIE65889951;FRS37E1298;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.87279;49.10076;;;; +;;;;;;;;FRFR1PXCLLB815FO;64860;R3 - Norauto Sin le Noble;;63 Avenue d'Iéna 75016 Paris;;[5.4174520,43.5328830];;FRCPIE67211552;FRS37E1352;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.86831;44.901527;;;; +;;;;;;;;FRFR1PUZJ5NXUIFE;64862;R3 - Norauto Besançon Ecole Valentin;;112 Avenue de Versailles 75016 Paris;;[4.3612580,43.8111530];;FRCPIE67211551;FRCPIE65993151;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.13736;50.481269;;;; +;;;;;;;;FRFR1PKUIQPXVEI6;64861;R3 - Norauto Bethune;;68 Avenue Mozart 75016 Paris;;[1.2774840,45.8366170];;FRS37E1267;FRCPIE65993152;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.87419;50.50043;;;; +;;;;;;;;FRFR1PK7CVN4VCEE;61828;R3 - Norauto Cambrai;;16 Place des États-Unis 75016 Paris;;[1.4000500,43.6931270];;FRIONE409803;FRCPIE65869152;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.12707;50.48689;;;; +;;;;;;;;FRFR1PLRNQPLHRUT;61827;R3 - Norauto Caudry;;53 Avenue de Versailles 75016 Paris;;[-1.29015,46.87914];;FRS37E1258;FRIONE101303;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.12136;48.82555;;;; +;;;;;;;;FRFR1POFKONKTICM;61826;R3 - Norauto Colmar;;33 Rue du Ranelagh 75016 Paris;;[-1.28364,46.87354];;FRCPIE65350551;FRIONE101302;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.11855;45.51407;;;; +;;;;;;;;FRFR1PQHY100AFB8;61825;R3 - Norauto Chenove;;6 Avenue de la Porte Pouchet 75017 Paris;;[-0.01830,46.45317];;FRCPIE67337052;FRIONE41245;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.11641;45.52464;;;; +;;;;;;;;FRFR1PAI1UC0OYPF;66816;R3 - Norauto Coudekerque;;22 Place Charles Fillion 75017 Paris;;[1.55014,43.48583];;FRSHEE861;FRIONE412404;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6492;45.52442;;;; +;;;;;;;;FRFR1PIMWA3KE6RA;66815;R3 - Norauto Dijon Toison d'Or;;12 Place du Général Koënig 75017 Paris;;[7.58038,48.53897];;FRSHEE854;FRIONE412403;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.8261274;45.52345;;;; +;;;;;;;;FRFR1PI9DZEK2CZD;66814;R3 - Norauto Forbach;;6 Avenue des Ternes 75017 Paris;;[0.17878,45.69066];;FRSHEE853;FRIONE412402;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.89;45.52714;;;; +;;;;;;;;FRFR1PL77RJKJRRN;66813;R3 - Petite Forêt;;59 Avenue Marceau 75016 Paris;;[5.203654999999999, 45.8936172];;FRSHEE852;FRIONE412401;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.2398801;45.52576;;;; +;;;;;;;;FRFR1PGG6FVWF3A4;70175;R3 - Cucq;;126 Rue Legendre 75017 Paris;;[7.04449, 49.114638];;FRSHEE851;FRCPIE65869151;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4943484;45.52472;;;; +;;;;;;;;FRFR1PX5M7HY9MD8;53651315-d7cb-4d91-a2ec-4ff2e8d06ae0;R3 - Norauto St Dié;;11 Rue Marguerite Long 75017 Paris;;[7.083001, 49.11801];;FRS37E1252;FRCPIE65993651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.83444;45.501381;;;; +;;;;;;;;FRFR1PD4G0UBMWRI;ea4af2d4-4d63-40a8-a7cd-c579b91e1a8c;R3 - Norauto Bessoncourt;;1 Rue Navier 75017 Paris;;[7.075081, 49.114571];;FRS37E1251;FRS37E1301;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0873826;45.51317;;;; +;;;;;;;;FRFR1PNN6JD7ESLV;5423755b-f394-4821-8e41-fa9dcb935aaa;EvBox DC;;66 Rue de la Jonquière 75017 Paris;;[1.8678295,50.0958814];;FRS37E1378;FRS37E1300;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.955188;45.52143;;;; +;;;;;;;;FRFR1PIRE24WVTIF;8e30cdf7-c9a7-48a3-a51b-9360b5620719;CASINO LANESTER;;18 Avenue Victor Hugo 75016 Paris;;[1.39149,43.56942];;FRS37E1250;FRCPIE65994052;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.25;45.52124;;;; +;;;;;;;;FRFR1PXBBL8M94QY;3a575c23-7b71-4f73-a0f8-fd73bc7bcfba;CASINO DIJON CHENOVE;;180 Avenue Victor Hugo 75016 Paris;;[1.0151949687525528, 49.491605515295085];;FRCPIE65823952;FRCPIE65994051;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.046084;48.82647;;;; +;;;;;;;;FRFR1PHMFZKUWKMH;31f4a65e-bbd2-4e46-a5cf-5714f0143e2a;CASINO FREJUS;;2 Rue Pétrarque 75016 Paris;;[3.065306, 44.116006];;FRCPIE65823951;FRCPIE65993952;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.719718;45.52793;;;; +;;;;;;;;FRFR1PEIIHBFT9VM;792c0a44-6b53-48fa-aa57-1b483e111f4a;CASINO MONTPELLIER;;51 Avenue Raymond Poincaré 75016 Paris;;[-0.4471530662225864, 43.32939290277349];;FRS37E1348;FRCPIE65993951;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.96862;48.82238;;;; +;;;;;;;;FRFR1PA6P6NQCN8U;37f31189-2de6-4633-8288-8acd8b78e52b;CASINO TOURS LA RICHE;;137 Rue de la Pompe 75016 Paris;;[7.294283, 48.072785];;FRS37E1249;FRCPIE65993652;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.95421;48.83427;;;; +;;;;;;;;FRFR1PEMJUWDE2ZC;f003b355-5ff8-4331-8e45-a66a57a668b0;CASINO VALENCE;;8 Rue Rémusat 75016 Paris;;[3.04,44.08];;FRCPIE65820752;FRCPIE65969252;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.467849;48.82899;;;; +;;;;;;;;FRFR1PEK78LCBFCD;90066;TISSEO BALMA GRAMONT;;23 Boulevard Delessert 75016 Paris;;[4.80,44.12];;FRCPIE65820751;FRCPIE65968352;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.92515;48.7561;;;; +;;;;;;;;FRFR1PZUUVO0OEOL;90067;TISSEO BORDEROUGE;;5 Place du Commerce 75015 Paris;;[6.876855607462602,48.072561957334980];;FRCPIE65820652;FRS37E1289;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.951229;46.46755;;;; +;;;;;;;;FRFR1PX64IY5FMOZ;60380;TISSEO RAMONVILLE;;80 Rue de Dantzig 75015 Paris;;[6.880171240649800,48.375871003740000];;FRCPIE65820651;FRCPIE65968351;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.327669;44.02;;;; +;;;;;;;;FRFR1PLARNQAMRTO;57150;CASINO CHAMPNIERS;;10 Rue de la Fédération 75015 Paris;;[6.964513978994200,48.289964210164000];;FRSHEE862;FRIONE126405;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.470007;46.6646193;;;; +;;;;;;;;FRFR1PT1YNAOAES4;96887;CASINO SAINT ETIENNE;;112 Avenue de Suffren 75015 Paris;;[6.880126099863300,48.376012836572000];;FRSHEE871;FRIONE126404;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.319564;46.8369672;;;; +;;;;;;;;FRFR1PTJYKIGXR01;36279;CASINO SAINT LOUIS;;171 Rue de la Convention 75015 Paris;;[6.964374334895400,48.289919288542000];;FRSHEE872;FRIONE126402;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.691281;48.068958;;;; +;;;;;;;;FRFR1PWWZYVJR2EY;36280;CASINO AVIGNON;;79 Rue de Lourmel 75015 Paris;;[6.965496889543137,48.290046132441740];;FRCPIE65857152;FRIONE126401;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.695719;49.1011474;;;; +;;;;;;;;FRFR1PPR1JKSCDLC;8fd21380-370e-45b5-901a-a104b0b2deab;CASINO AIX EN PROVENCE;;2 Rue Houdart de Lamotte 75015 Paris;;[6.963021373765300,48.289934009650000];;FRCPIE67337051;FRCPIE65957752;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.046384;47.160115;;;; +;;;;;;;;FRFR1PXBENFNB95Y;38835;CASINO NIMES;;1 Rue Jean Sicard 75015 Paris;;[3.212029,44.196621];;FRCPIE65866852;FRCPIE65957751;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.927965;48.94;;;; +;;;;;;;;FRFR1PIQU4R0ABMI;38834;CASINO LIMOGES;;43 Rue du Docteur Finlay 75015 Paris;;[4.0855646, 49.2371711];;FRCPIE65866851;FRCPIE65952052;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.751178;50.531584;;;; +;;;;;;;;FRFR1PLN5OWH3GTB;61743;CASINO FENOUILLET;;95 Rue des Morillons 75015 Paris;;[2.395016,50.6610416];;FRCPIE65866352;FRCPIE65952051;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.585043;49.518581;;;; +;;;;;;;;FRFR1PW6UE0JKLKL;e75e4340-be0a-49dd-adf9-4cf098145c81;LES BROUZILS ASF;;16 Rue de l'Arrivée 75015 Paris;;[-0.44,43.33];;FRCPIE65866351;FRCPIE65951952;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.071399;49.807764;;;; +;;;;;;;;FRFR1PLLI1FZ6R1VYO98;2cb71ce9-a7c2-4e98-b6ab-5491c8089f57;CHAVAGNES ASF;;26 Place Etienne Pernet 75015 Paris;;[-1.466439, 48.594319];;FRCPIE65857652;FRCPIE65951951;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.672802;48.94159;;;; +;;;;;;;;FRFR1PLLJOBYNIMYFIQW;60506;ROUILLE PAMPROUX ASF;;74 Rue Vasco de Gama 75015 Paris;;[5.824020549638603,43.144379705624395];;FRCPIE65857651;FRS37E1292;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.800069;50.340625;;;; +;;;;;;;;FRFR1PLLISSUAD0218PP;60498;TOULOUSE SUD NORD ASF;;109 Avenue Félix Faure 75015 Paris;;[5.84,43.14];;FRCPIE65857151;FRS37E1291;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.801309;49.449857;;;; +;;;;;;;;FRFR1PO63JQJDR8C;63418;ARCOS;;65 Avenue Emile Zola 75015 Paris;;[5.83,43.12];;FRSHEE881;FRCPIE65947652;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.499019;48.941981;;;; +;;;;;;;;FRFR1PLNDZLAR6YW;63419;ANGOULEME BERTRAND;;11 Rue Gerbert 75015 Paris;;[5.02,44.12];;FRCPIE65843352;FRCPIE65947651;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.497669;49.324463;;;; +;;;;;;;;FRFR1PMWSUJPSJ4J;55366;ALLOUISMEXIMIEUX;;192 Rue de la Croix Nivert 75015 Paris;;[2.4541187, 49.0202152];;FRCPIE65843351;FRCPIE65941452;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.838636;50.339582;;;; +;;;;;;;;FRFR1PDZVOZRKVZZ;55371;AUBERGE SAINT WALFRID;;27 Rue des Batignolles 75017 Paris;;[-1.504764, 48.903776];;FRCPIE65842552;FRCPIE65941451;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.960539;49.320563;;;; +;;;;;;;;FRFR1PGUBPYPEXXR;55370;TV MOSAIK CRISTAL;;29 Rue Cotentin 75015 Paris;;[-0.59176364, 46.47844882];;FRCPIE65842551;FRS37E1290;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.574611;48.725339;;;; +;;;;;;;;FRFR1PSAKZY4U1S4;55367;GARAGE SPEEDY;;44 Rue Paul Barruel 75015 Paris;;[4.846839699999999, 45.7618696];;FRCPIE65836252;FRIONE12645;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.713227;48.720927;;;; +;;;;;;;;FRFR1PDW28ZLLDTL;88393;ABBEVILLE;;75 Rue de la Convention 75015 Paris;;[-0.2113974, 44.9769783];;FRCPIE65836251;FRIONE414001;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.635365;50.529555;;;; +;;;;;;;;FRFR1PMARTXJJ3YQ;88392;BASSO CAMBO;;42 Rue Jean de la Fontaine 75016 Paris;;[4.9849957, 45.7312637];;FRSHEE882;FRIONE414002;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.554402;49.445715;;;; +;;;;;;;;FRFR1PJKC4QHAXRL;50490;Point P Maromme;;41 Boulevard Pasteur 75015 Paris;;[6.38,46.75];;FRCPIE65171352;FRS37E1295;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.959138;50.322857;;;; +;;;;;;;;FRFR1PTJDUQOWLBU;50491;IBIS 2;;4 Avenue du Maine 75015 Paris;;[5.93,47.24];;FRCPIE65794052;FRCPIE65968252;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.555524;47.149426;;;; +;;;;;;;;FRFR1PRMKFDTC3M4;e5ed9769-55df-4ef0-9f84-62673a8b44da;IBIS 1;;67 Rue Mademoiselle 75015 Paris;;[0.26,44.50];;FRN54E187032;FRCPIE65968251;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.1169209;45.845094;;;; +;;;;;;;;FRFR1PCXWQCAZPW9;28236;IBIS 3;;47 Rue de Vouillé 75015 Paris;;[-0.63,44.82];;FRCPIE66055251;FRS37E1297;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1227209;47.789103;;;; +;;;;;;;;FRFR1PQFZHBEZJDZ;28235;IBIS 4;;15 Rue Olier 75015 Paris;;[2.5582183, 51.0072064];;FRS37E1198;FRS37E1296;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.61;46.356078;;;; +;;;;;;;;FRFR1PEHGQLKGHD4;121730;CENTRAKOR - SARL WILIS;;2 Rue des Eaux 75016 Paris;;[0.3126718,46.585065];;FRS37E1186;FRCPIE65965252;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.01;46.355503;;;; +;;;;;;;;FRFR1PVAQY64MMFC;71494;IRVE WINTZENHEIM;;20 Avenue Raphaël 75016 Paris;;[0.31,46.59];;FRS37E1184;FRCPIE65965251;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.5960162;47.978019;;;; +;;;;;;;;FRFR1PA818R6G62Y;71514;Leclerc Millau;;16 Rue Molitor 75016 Paris;;[-0.2943536, 49.1928486];;FRCPIE65713452;FRS37E1380;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.811912;47.974269;;;; +;;;;;;;;FRFR1PSWR9LBHFPD;52756b64-e5c3-44db-930f-3d7134d97d86;0b02b04d-280a-4f56-9cb4-b2368c8a78d3;;4 Rue Beaugrenelle 75015 Paris;;[4.40,45.44];;FRCPIE65713451;FRCPIE65960352;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.812952;46.962058;;;; +;;;;;;;;FRFR1PXM03BDK6QH;74547d48-2597-4024-a46c-2399260c18f4;HMV / BORNE 2;;143 Avenue Émile Zola 75015 Paris;;[-0.4799048,43.89146969999999];;FRCPIE66550252;FRIONE414003;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.6813519665418823;48.05761;;;; +;;;;;;;;FRFR1PTICAR3Q0OM;96902;HMV / MOYENMOUTIER 1;;2 Rue de Cronstadt 75015 Paris;;[-0.8283161, 46.4675537];;FRCPIE66550251;FRCPIE65960351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8847469775400896;48.361796;;;; +;;;;;;;;FRFR1PZZZQYISOQJ;56571;HMV / SAINT DIE 3;;139 Boulevard de Grenelle 75015 Paris;;[2.304633617401123, 50.90874481201172];;FRCPIE65713652;FRCPIE65959952;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.685392965881789;47.104799;;;; +;;;;;;;;FRFR1PCRKFHHR17R;e9df2d26-22e3-4d29-a94a-cfeee0adc8e9;HMV / MOYENMOUTIER 2;;108 Rue Balard 75015 Paris;;[6.87180, 48.07067];;FRCPIE65713651;FRCPIE65959951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.096186;48.610633;;;; +;;;;;;;;FRFR1PRJZA6CVZ1N;7dcef345-7d8a-4753-ae4e-7b3d88d68dfb;HMV / SAINT DIE 1;;44 Rue Sébastien Mercier 75015 Paris;;[5.93420, 48.70158];;FRCPIE65713352;FRCPIE65959752;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.661876;48.243165;;;; +;;;;;;;;FRFR1PDTPSA3S6UB;2a58421e-08e5-4992-bcad-7e53de800fdf;HMV / SAINT DIE 4;;3 Rue Olivier de Serres 75015 Paris;;[5.746956, 49.495106];;FRCPIE65713351;FRCPIE65959751;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.097517;48.057404;;;; +;;;;;;;;FRFR1PMVRJMTFXFY;99d6d8ef-b3bf-4c14-a84a-866bfd484178;HMV / SAINT DIE 2;;78 Avenue de Suffren 75015 Paris;;[2.3841132506467066, 48.90602152741062];;FRCPIE65713252;FRIONE41405;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.657184;48.247318;;;; +;;;;;;;;FRFR1PU31Z1HOZPX;E46104;la muse 2;;14 BD DE VERDUN Station de Lavage TOTALWASH 92400 COURBEVOIE;;[7.012604743905726,43.57438496198235];;FRCPIE65713251;FRIONE414004;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.3852;45.6281317;;;; +;;;;;;;;FRFR1PFNABZHD5V0;EVC 11750373;la muse 1;;4 Avenue Secrétan 75019 Paris;;[7.290915231602582,43.70607256724716];;FRCPIE67377552;FRCPIE65661052;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.50378;50.9879353;;;; +;;;;;;;;FRFR1PGAWWXDWFLV;BOR-ECOE37374-E37375;KIA - Reims - 24kW DC;;1 Rue Manin 75019 Paris;;[-0.3812921, 46.3406381];;FRCPIE67377551;FRFASE3311302;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.33728;44.2;;;; +;;;;;;;;FRFR1PB22E6IS6IJ;EVC 11736622 E61083;KIA - Reims - 22kW AC;;10 Avenue de la Porte d'Aubervilliers 75019 Paris;;[-2.25,47.29];;FRS37E1199;FRCPIE66632752;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3759709;50.5265072;;;; +;;;;;;;;FRFR1PGNLNHDG2H5;EVC 11749592;AIRE SUR LA LYS;;1 Rue Jules Romains 75019 Paris;;[3.96,43.54];;FRIONE439701;FRCPIE66632751;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.986205;50.928405;;;; +;;;;;;;;FRFR1PXA55ET3COQ;EVC 11750472;CAMPING MIGNOT;;159 Rue Manin 75019 Paris;;[2.1297, 48.82966];;FRIONE439702;FRS18E112836;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.042501;50.934908;;;; +;;;;;;;;FRFR1PIHAJCZDFMR;128389;Le Clos St. Gilles;;119 Avenue de Flandre 75019 Paris;;[2.1259, 48.82597];;FRIONE440201;FRS18E112835;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.0802139;48.872472019341075;;;; +;;;;;;;;FRFR1PNZVMFPZB3C;128390;SARL GERARD ROBERT;;14 Rue Sorbier 75020 Paris;;[-2.33396657, 47.27512821];;FRS37E1208;FRS41E4435;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4457879;48.93616199443869;;;; +;;;;;;;;FRFR1PAGEDFVTZGT;EVB-P1924294;a78a5c9f-1088-4e10-92a6-da3eb1b73a30;;265 Rue de Belleville 75020 Paris;;[-2.35827385, 47.29464201];;FRIONE44025;FRS41E4434;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.050015999999999;48.87564000155572;;;; +;;;;;;;;FRFR1PDFKNF0DTEA;37831;SCI DU SOLEIL;;25 Rue de la Plaine 75020 Paris;;[-2.39379, 47.287674];;FRIONE440206;FRS37E4349;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.432864;49.241225;;;; +;;;;;;;;FRFR1PDLLHDQOSYL;37830;AUSTERLITZ;;5 bis Rue du Capitaine Ferber 75020 Paris;;[-2.390635, 47.288267];;FRIONE440205;FRS37E4348;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.39751;49.132545;;;; +;;;;;;;;FRFR1PXDPR5VCA2O;FRECN0162;DESENFANS GOUSAINVILLE;;54 Rue David d'Angers 75019 Paris;;[-2.378618, 47.28234];;FRIONE440204;FRCPIE65449252;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.352215;49.246191;;;; +;;;;;;;;FRFR1PT8CJCVP99U;FRECN0161;SARL Vigot;;50 Rue Botzaris 75019 Paris;;[-2.355691, 47.280084];;FRIONE440203;FRCPIE67317151;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.398973;49.134222;;;; +;;;;;;;;FRFR1PYTJ4Y9PL7Q;FRECN0160;FDG Automobiles - Coulonges - 22kW AC;;8 Rue Adolphe Mille 75019 Paris;;[-2.343717, 47.271461];;FRIONE440202;FRCPIE65284552;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.432877;49.0802;;;; +;;;;;;;;FRFR1PZFHTLR4J0P;FRECN0163;INOUID-HOTEL-CREQUI;;126 Rue d'Aubervilliers 75019 Paris;;[-2.406672, 47.281257];;FRS37E1207;FRCPIE65284551;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.460145;48.61529;;;; +;;;;;;;;FRFR1PCCNQFPQQIB;77754;mon espace carrelage;;60 Boulevard Sérurier 75019 Paris;;[-2.394561, 47.282039];;FRIONE439703;FRCPIE65282652;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.429412;46.11;;;; +;;;;;;;;FRFR1PVOSJB7Z6S8;77752;Elvi 22kw;;82 Rue de Crimée 75019 Paris;;[-2.41180177, 47.28378784];;FRS37E1206;FRCPIE65282651;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.459867;51.0192287;;;; +;;;;;;;;FRFR1PFINPWCYSPC;57006;MEDIODENT ROCHE;;8 Rue de Crimée 75019 Paris;;[6.848091, 45.628359];;FRS37E1201;FRCPIE65282052;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.461456;44.140487;;;; +;;;;;;;;FRFR1PADAKWI9JTZ;56657;NOMADE BREWERY - Genas - 22kW AC;;16 Rue de Botzaris 75019 Paris;;[-2.41498069, 47.27943453];;FRS37E1200;FRCPIE65282051;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.467504;49.138351;;;; +;;;;;;;;FRFR1PFI90Y2MKQN;96190;SCI LA GRANGE DESSOUS;;105 bis Rue Pelleport 75020 Paris;;[-2.396071, 47.290493];;FRIONE43975;FRFASE3311304;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.368293;44.5179413;;;; +;;;;;;;;FRFR1PTNSYPNWAHQ;109624;GARAGE HENRY;;16 Rue du Télégraphe 75020 Paris;;[6.06127559, 44.54181494];;FRIONE439706;FRCPIE65297851;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.43045;44.5894889;;;; +;;;;;;;;FRFR1PXHKFRPJTZC;49587;Domaine de Fompeyre;;356 Rue des Pyrénées 75020 Paris;;[6.06130988, 44.54188269];;FRIONE439705;FRCPIE65297852;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.303181;44.04692499999999;;;; +;;;;;;;;FRFR1PDQAOP9IPRJ;49607;Carrefour Contact;;15 Boulevard Mortier 75020 Paris;;[6.05445737, 44.55803133];;FRIONE439704;FRCPIE65803751;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.434275;48.181061;;;; +;;;;;;;;FRFR1PAX86CBKORF;5720d842-fcf2-4e6f-897d-bf0d2b6bfa10;mairie de ghyvelde;;5 Rue Frédéric Loliée 75020 Paris;;[6.10233384, 44.56943231];;FRCPIE66055252;FRIENE0066012;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.44083;48.046967;;;; +;;;;;;;;FRFR1PEAGJ5CQBFK;a191b56a-3e02-4cd5-86f9-5349a8cc4095;e-Fast 150kW - Parc commercial aéroport Poitiers-Biard;;52 Boulevard de Charonne 75020 Paris;;[2.033491, 47.905369];;FRCPIE65711851;FRIONE408101;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.43536;48.167175;;;; +;;;;;;;;FRFR1PBXEZOXEAUK;44ffcdec-3eaf-4358-8baf-7da4631d3f24;e-City 22kW - Parc commercial aéroport Poitiers-Biard;;5 rue Frédérick Lemaître 75020 Paris;;[6.425071, 48.204234];;FRS37E1214;FRCPIE66836352;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.307515;48.256221;;;; +;;;;;;;;FRFR1PVPDD4Y5RGE;a9e431e7-189c-44c7-b111-55db8d10d18f;2ED;;86 Rue Pelleport 75020 Paris;;[6.42217, 48.203893];;FRCPIE65675252;FRCPIE66836351;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.305172;48.179861;;;; +;;;;;;;;FRFR1POKOJZHOQ8P;87473;IBIS GARE SAINT ETIENNE CHATEAUCREUX;;137 Rue des Pyrénées 75020 Paris;;[6.422346, 48.183955];;FRCPIE65675251;FRCPIE66836252;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.434328;48.198666;;;; +;;;;;;;;FRFR1PQ0HJQPVBCX;87472;Hôtel Le Renaissance;;40 Rue Sorbier 75020 Paris;;[6.441108, 48.198048];;FRCPIE65674552;FRCPIE66836251;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.466535;48.253061;;;; +;;;;;;;;FRFR1PC9NIVDRMEM;47126;Toyota - Cheffois - 22kW AC G;;24 Rue Monte Cristo 75020 Paris;;[1.189956, 49.015557];;FRCPIE65674551;FRIENE0066024;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.40705;48.19329;;;; +;;;;;;;;FRFR1PBNEXS6CBJB;47104;Toyota - Cheffois - 22kW AC D;;142 Rue de Bagnolet 75020 Paris;;[2.12831, 48.81617];;FRCPIE66424752;FRIENE0066023;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.291893;48.192654;;;; +;;;;;;;;FRFR1PJ01CFCFFW4;49419;bbt;;39 Rue Julien Lacroix 75020 Paris;;[0.610229, 49.10076];;FRCPIE66424751;FRIENE0066011;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.378322;48.19942;;;; +;;;;;;;;FRFR1PZBAEAPMZYM;26491;Gerardmer, Boulevard Adolphe Garnier;;158 Boulevard de Charonne 75020 Paris;;[6.645486, 44.901527];;FRCPIE65672052;FRCPIE65803752;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.263997;48.189981;;;; +;;;;;;;;FRFR1PGUEO9FTWBS;26492;Toul, rue Maurice Bokanowski;;117 Rue de Lagny 75020 Paris;;[1.589814, 50.481269];;FRCPIE65672051;FRCPIE65605452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.6292594023148577;48.190584;;;; +;;;;;;;;FRFR1PDNQBLW1SZU;49420;Longwy, 11 rue Saint Louis;;2 Rue des Couronnes 75020 Paris;;[1.6274056, 50.50043];;FRCPIE65671352;FRCPIE65605451;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.6969447;48.360695;;;; +;;;;;;;;FRFR1PCQX0OZTVMC;FREZDE28287;Garage Malard;;6 Rue Guébriant 75020 Paris;;[1.623218, 50.48689];;FRCPIE65671351;FRCPIE65605352;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9881828;48.204642;;;; +;;;;;;;;FRFR1PA1YA9QASHE;FREZDE63396;Riviera Car Center - Le Cannet;;28 Avenue de la Porte de Villiers 75017 Paris;;[2.11859, 48.82555];;FRS28E128795;FRCPIE65605351;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2503986;48.169844;;;; +;;;;;;;;FRFR1PBK88LLSEWT;38b1f8f6-095f-4e98-a187-e1ca8abf2989;Riviera Car Center - Nice;;28 Avenue de Niel 75017 Paris;;[4.8647, 45.51407];;FRCPIE65665652;FRCPIE65297952;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.481704;48.172168;;;; +;;;;;;;;FRFR1PO2LQBPQQEQ;d3c00913-8774-4df3-8c07-97b5c596db39;Toyota - Chauray - 22kW AC;;42 Rue Brunel 75017 Paris;;[4.87564, 45.52464];;FRCPIE65665651;FRCPIE65297951;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.0631174;48.175353;;;; +;;;;;;;;FRFR1PTCRKEQNZSQ;02e88fc3-43b3-4289-b171-135781bfab8c;arteco 44;;28 Avenue Carnot 75017 Paris;;[4.8716, 45.52442];;FRCPIE66995852;FRCPIE65804051;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8745895;48.161522;;;; +;;;;;;;;FRFR1PPT85VGEYSD;de791cd2-c920-4121-aebe-5a54a3e5695f;Borne wallbox Le grand large Palavas;;19 Rue Brémontier 75017 Paris;;[4.87108, 45.52345];;FRCPIE66995851;FRFASE3311303;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.2038118;48.229258;;;; +;;;;;;;;FRFR1PUDEDECYP5I;50719;Le Chesnay-Rocquencourt , Carr de l'Europe;;48 Rue Henri Huchard 75018 Paris;;[4.87667, 45.52714];;FRCPIE66995752;FRFASE3311301;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.9140338999999997;48.197235;;;; +;;;;;;;;FRFR1PXLSGZFNVR4;50711;Le Chesnay, Rue Pottier;;1 Rue Fernand Labori 75018 Paris;;[4.87537, 45.52576];;FRCPIE66995751;FRIONE408103;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5792;48.254178;;;; +;;;;;;;;FRFR1PDXHSAGJEDX;89771;La Baule , Parking Maison de quartier de Guézy;;170 boulevard Pereire 75017 Paris;;[4.8739, 45.52472];;FRCPIE67372151;FRCPIE65460252;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.03;48.369538;;;; +;;;;;;;;FRFR1PFU2H3DXVPO;89772;La Baule , Parking du Cimetière;;2 Rue Georges Berger 75017 Paris;;[4.849718, 45.501381];;FRCPIE67372152;FRCPIE67365551;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.88;48.250729;;;; +;;;;;;;;FRFR1PT44AJWWFZ5;423e4356-77bc-4fc0-8b43-2d102d6b6093;La Baule , Parking des Corallines;;181 quater Avenue de Clichy 75017 Paris;;[4.86466, 45.51317];;FRCPIE65702752;FRCPIE67361852;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.48;48.002212;;;; +;;;;;;;;FRFR1PCIWXAZ1UQT;128615;La Baule , Parking SNCF S1;;40 Avenue de la Grande Armée 75017 Paris;;[4.87279, 45.52143];;FRCPIE65711552;FRCPIE67361851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3853772952424;48.097034066785476;;;; +;;;;;;;;FRFR1PMKW1V71V7J;128616;La Baule , Parking Honoré de Balzac;;210 Rue de Courcelles 75017 Paris;;[4.86831, 45.52124];;FRCPIE65711551;FRCPIE67268452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.368253087879;46.1869392;;;; +;;;;;;;;FRFR1PHV5VAKB6YB;56428;La Baule , Parking Résidence de la Forêt;;67 Rue Dulong 75017 Paris;;[2.13736, 48.82647];;FRCPIE65704552;FRCPIE67268451;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0905967;44.2251248;;;; +;;;;;;;;FRFR1PX3JXPCEBZD;56427;La Baule , Parking Marché de Guézy;;77 Avenue de Wagram 75017 Paris;;[4.87419, 45.52793];;FRCPIE65704551;FRS28E127476;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1233758;43.4706838;;;; +;;;;;;;;FRFR1PV4H4VQXES1;129868;La Baule, Parking Kercausette;;50 Boulevard Pereire 75017 Paris;;[2.12707, 48.82238];;FRCPIE65704452;FRS28E127475;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.23322691163974948;43.691167;;;; +;;;;;;;;FRFR1PCLC4PORYME;129846;La Baule, Parking Escholliers;;47 Rue Navier 75017 Paris;;[2.12136, 48.81823];;FRCPIE65704451;FRIONE45195;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9745308;43.629227;;;; +;;;;;;;;FRFR1PBJUX8ADWL0;71708;La Baule, Parking Agen;;73 Avenue des Ternes 75017 Paris;;[2.11855, 48.83427];;FRCPIE65702751;FRIONE451916;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.78772;43.088683;;;; +;;;;;;;;FRFR1PJ5RJLBUY0V;71707;Montvalezan, Parking des Pistes;;52 Rue Charles Hermite 75018 Paris;;[2.11641, 48.82899];;FRCPIE67372751;FRIONE451915;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.081096;43.7679769;;;; +;;;;;;;;FRFR1PAWPJ7Z2ZCT;129732;La Baule , Parking Avenue de la Plage;;220 Rue Marcadet 75018 Paris;;[-0.6492, 48.7561];;FRS37E11018;FRIONE451914;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.080938;43.47387800000001;;;; +;;;;;;;;FRFR1PVT5FXZFPHK;61148;La Baule, Parking des Salines;;1 Avenue Rachel 75018 Paris;;[-0.8261274, 46.46755];;FRS37E11017;FRIONE451913;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.303039;50.49925;;;; +;;;;;;;;FRFR1PVNYVFQYTMF;61147;Gap, Parking Relais du stade Nautique;;62 Rue Ramey 75018 Paris;;[4.89,44.02];;FRCPIE67373052;FRIONE451912;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.084506;45.37;;;; +;;;;;;;;FRFR1PYONT6QVIXV;50670;GAP , Parking Relais du Stade Nautique;;120 Rue Ordener 75018 Paris;;[-0.2398801, 46.6646193];;FRCPIE67373051;FRIONE451911;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.084455;47.45;;;; +;;;;;;;;FRFR1PXDVKEHAKEK;50704;GAP , Parking relais du Sénateur;;16 Rue Sofia 75018 Paris;;[-0.4943484, 46.8369672];;FRCPIE67372952;FRIONE451910;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.787825;48.76078419282144;;;; +;;;;;;;;FRFR1PS4FAVFBZN7;FRFR1EATXX1;GAP , Parking relais du plan Tokoro;;1 Rue Jacques Duchesne 75019 Paris;;[-1.83444, 48.068958];;FRCPIE67372951;FRIONE451909;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.081295;48.63330486819303;;;; +;;;;;;;;FRFR1PXRB9PAWM7D;62871;Chécy , Biocoop 1;;61 Avenue de Flandre 75019 Paris;;[-1.0873826, 49.1011474];;FRCPIE67372752;FRIONE451902;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.964767;50.6938179;;;; +;;;;;;;;FRFR1PJNCVUHJ9T2;62872;Golbey , Stade la Haie le Doyen;;304 Rue Botzaris 75019 Paris;;[4.955188,47.160115];;FRS37E1209;FRCPIE67365552;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09111;50.9897573;;;; +;;;;;;;;FRFR1PKU14SZGVCB;60013;Golbey , Salle Lepage;;1bis Rue Ravignan 75018 Paris;;[2.25,48.94];;FRS37E1215;FRCPIE67369051;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09201;43.17534289658668;;;; +;;;;;;;;FRFR1PHGSOGXCO0T;60012;Golbey , Collège Louis Armand;;1 Rue Jean-François Lépine 75018 Paris;;[3.046084, 50.531584];;FRCPIE65794051;FRCPIE67369052;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.091668;48.7955019;;;; +;;;;;;;;FRFR1PS1EZVRWU5Q;edc67b91-db41-4aa1-bfa4-e3c2a885e0c1;Golbey , Place du Souvenir;;150 Rue Marcadet 75018 Paris;;[2.719718, 49.518581];;FRS37E7746;FRFASE3311502;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09154;45.587334;;;; +;;;;;;;;FRFR1PZ8E4GHPDN1;47222;Vieil Evreux , V and B;;17 Rue Custine 75018 Paris;;[1.96862, 49.807764];;FRS37E1244;FRCPIE65460251;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.091524;45.933577;;;; +;;;;;;;;FRFR1PK7EHUWAXLO;2ed6b0ff-8e77-4c05-8b8b-5ba0d80e5677;Le Chesnay-Rocquencourt , Rue de Versaille;;17 Rue Caulaincourt 75018 Paris;;[1.95421, 48.94159];;FRCPIE65769852;FRCPIE65286052;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.964725;45.933958;;;; +;;;;;;;;FRFR1PC2QSB9HMEI;55361;Menneval 2 , Cuisinella;;162 Rue Championnet 75018 Paris;;[3.467849, 50.340625];;FRCPIE65769851;FRCPIE65286051;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.787973;46.07588;;;; +;;;;;;;;FRFR1PPEPRHZRXHR;54738;Briançon, Parking du champs de Mars;;2 Boulevard de Clichy 75018 Paris;;[3.92515, 49.449857];;FRCPIE65769652;FRCPIE65279152;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.315221;45.934997;;;; +;;;;;;;;FRFR1PCJXNDZ3C6G;0e5065cc-8847-4dfe-94dc-dc4aca52d2f1;Cucq , Place Jean Sapin;;28 Rue Championnet 75018 Paris;;[1.951229, 48.941981];;FRCPIE65769651;FRCPIE65279151;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.315092;45.934924;;;; +;;;;;;;;FRFR1PYQSAIA8LGL;61047;Cucq , Rue Jean Jaurès;;A39 - BOURG EN BRESSE DIJON 71480 DOMMARTIN LES CUISEAUX;;[0.327669, 49.324463];;FRS41E139036;FRFASE3311504;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.091181;45.587026;;;; +;;;;;;;;FRFR1PCQUDPLPZYE;61057;Cucq , Avenue de la libération;;A36 - BESANCON MULHOUSE 68520 BURNHAUPT LE BAS;;[3.470007, 50.339582];;FRS41E139035;FRFASE3311503;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2446;45.933736;;;; +;;;;;;;;FRFR1PPNLOUT8QPN;61056;Le Chesnay-Rocquencourt , Avenue Dutarte;;A31 - METZ DIJON 54200 CHAUDENEY SUR MOSELLE;;[0.319564, 49.320563];;FRS41E139034;FRFASE3311501;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2442;48.826624;;;; +;;;;;;;;FRFR1PHVQK2HM8GQ;61046;Vienne, Espace Saint-Germain Nord;;A26 - REIMS CALAIS 62143 ANGRES;;[7.691281, 48.725339];;FRS41E139033;FRCPIE67371151;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.370315499999999;45.892516;;;; +;;;;;;;;FRFR1PVAM8YTTW3I;95344;Vienne, Square Vassy;;A6 - LYON PARIS 21360 BLIGNY SUR OUCHE;;[7.695719, 48.720927];;FRCPIE65768352;FRS88E163473;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.802524000000001;45.89284;;;; +;;;;;;;;FRFR1PEUYZVQKVQM;95349;Vienne, Parking Saint-Maurice;;A1 SENS LILLE/PARIS 93120 LA COURNEUVE;;[3.046384, 50.529555];;FRCPIE65768351;FRS88E163471;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.863237199999999;45.892442;;;; +;;;;;;;;FRFR1PEK5YHMKEAO;19518;Vienne, Parking Saint-Pierre;;A6 - PARIS LYON 89420 GUILLON TERRE PLAINE;;[3.927965, 49.445715];;FRS41E139064;FRS28E126260;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.949088299999999;45.892571;;;; +;;;;;;;;FRFR1PN6BRENDZBL;78037;Vienne, Place des Capucins;;A6 - PARIS LYON 71240 SAINT AMBREUIL;;[3.751178, 50.322857];;FRS41E139063;FRS28E126258;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.562731802998726;45.892581;;;; +;;;;;;;;FRFR1PJ0FQWYCSH1;78036;Vienne, Parking François Mitterrand;;A1 SENS LILLE/PARIS REPERE 80 60490 RESSONS SUR MATZ;;[5.585043, 47.149426];;FRS37E21830;FRCPIE66969552;;;;;;;;;;;;;;;;;;;;;;;;;;;;-52.32188977802357;48.826976;;;; +;;;;;;;;FRFR1PD0AIJIWGHD;f1be318f-a242-42a9-ad6e-73d6cd386179;Vienne, Place Saint-Paul;;A13 - PARIS ROUEN 27400 VIRONVAY;;[5.071399, 45.845094];;FRCPIE65757852;FRCPIE66969551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.05;45.58718;;;; +;;;;;;;;FRFR1PEHNKRRPQNR;3c260145-276e-492d-82fd-bed3fda057ba;Vienne, Parc Relais Sud;;A4 - PARIS STRASBOURG 02130 FRESNES EN TARDENOIS;;[3.672802, 47.789103];;FRCPIE65757851;FRCPIE67371152;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.38219;46.074003;;;; +;;;;;;;;FRFR1PENUDY0G4GZ;49701;Vienne, Espace Saint-Germain Sud;;A81 - LE MANS RENNES 53270 "THORIGNE EN CHARNIE ";;[2.800069, 46.356078];;FRSPSESHEL611;FRIONE408102;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.014027;46.073619;;;; +;;;;;;;;FRFR1PDXLUDBXRWZ;FRFR1EDWYQ1;Vienne, Rue Emile Romanet;;A13 - AIRE DE VIRONVAY SUD 27400 LOUVIERS;;[2.801309, 46.355503];;FRS37E1245;FRIONE408104;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4900939;45.892593;;;; +;;;;;;;;FRFR1PUWGNCGZ3CU;4166dccb-868f-48a1-b068-a79728964816;Vienne, Quai Riondet;;A1 - PARIS LILLE 80200 ASSEVILLERS;;[5.499019, 47.978019];;FRFASE3309901;FRCPIE66845851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3418004;46.2175;;;; +;;;;;;;;FRFR1PIFBAAFS12E;76647;Le Chesnay-Rocquencourt , Rue de Louvenciennes;;A16 - AMIENS CALAIS 62630 WIDEHEM;;[5.497669, 47.974269];;FRFASE3309902;FRIENE0042023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4069522;43.421597;;;; +;;;;;;;;FRFR1PJOZZJYCYP2;76648;Vienne, Parking Saint-Louis;;A2 - PARIS BRUXELLES 62147 HAVRINCOURT;;[4.838636, 46.962058];;FRFASE3309912;FRIONE414804;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4307419;43.81472400000001;;;; +;;;;;;;;FRFR1PLLIMWW8BBCHFQP;6bff49ea-eb46-4ce7-82be-c6aa678247da;Le Chesnay-Rocquencourt, Carrefour de la Redingote;;A25 - LILLE DUNKERQUE 59114 STEENVOORDE;;[4.960539, 48.05761];;FRCPIE65779352;FRIONE414803;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.02;42.68525149999999;;;; +;;;;;;;;FRFR1PKSIC9LD3KI;57334;Le Chesnay-Rocquencourt , Boulevard Saint Antoine;;A40 - KM79 - SENS MILAN MACON 74520 VALLEIRY;;[2.574611, 48.361796];;FRCPIE65779351;FRIONE414802;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.6451248;44.31341339999999;;;; +;;;;;;;;FRFR1PH1G0Y8XBHP;57335;Le Chesnay-Rocquencourt , Rue des érables;;A41N - AIRE DE DRUMETTAZ 73100 MOUXY;;[4.713227, 47.104799];;FRFASE3309916;FRIONE414801;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.390097;43.485743901157626;;;; +;;;;;;;;FRFR1PD1EYROTLX1;57333;Le Chesnay-Rocquencourt , Parly 2;;1 LIEU-DIT LE HARDIER 35150 BRIE;;[2.635365, 48.610633];;FRFASE3309915;FRS88E150260;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.699955;4.909708809721746;;;; +;;;;;;;;FRFR1PR9HLO5VJ24;57332;Toyota - Fontenay le Comte - 22kW AC G;;42 AVENUE DU 45EME PARALLELE RN7 26600 PONT DE L'ISERE;;[3.554402, 48.243165];;FRFASE3309914;FRS88E150258;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.8364845;48.77;;;; +;;;;;;;;FRFR1PMWZHDVEEYF;131517;Toyota - Fontenay le Comte - 22kW AC D;;A64 - AIRE DES PYRENEES 64530 GER;;[4.959138, 48.057404];;FRFASE3309913;FRS88E150253;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5052815;45.45884;;;; +;;;;;;;;FRFR1PZRCZZOSUOR;131516;CAMPING LA MONTAGNE;;LA CROIX BLANCHE 19600 NESPULS;;[3.555524, 48.247318];;FRFASE3309911;FRS88E150251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4060821;44.12000449999999;;;; +;;;;;;;;FRFR1PZDYRGJQNWY;131524;Toyota - Parthenay - 22kW AC D;;L'OCEANE 72190 SARGE LES LE MANS;;[0.1169209, 45.6281317];;FRFASE3309903;FRIONE46275;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4209417;51.0677071;;;; +;;;;;;;;FRFR1PHTOS6OHD33;131525;Toyota - Parthenay - 22kW AC G;;A10 AIRE DE LIMOURS JANVRY 91640 JANVRY;;[2.1227209, 50.9879353];;FRFASE3309910;FRIONE462706;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.7876279;51.0293366;;;; +;;;;;;;;FRFR1PZREBJTTI3B;55087;Toyota - Bressuire - 22kW AC D;;2 RUE JEANNE BARRET-MASGARRIGUE 66600 RIVESALTES;;[0.61,44.20];;FRFASE3309909;FRIONE462705;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.3367836;51.0421206;;;; +;;;;;;;;FRFR1POL2TN2UB3M;55086;Toyota - Bressuire - 22kW AC G;;A10 AIRE ORLEANS GIDY 45520 GIDY;;[2.01,48.53];;FRFASE3309908;FRIONE462704;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.1278249;50.9694554;;;; +;;;;;;;;FRFR1PLBNGT0AA3J;61319;G2S-MORDELLES;;A85 PRUNIERS EN SOLOGNE - AIRE DE ROMORANTIN 41200 PRUNIERS EN SOLOGNE;;[1.5960162, 50.5265072];;FRFASE3309907;FRIONE462703;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.499777;46.87;;;; +;;;;;;;;FRFR1PMIGOKDUUYZ;61318;2ED LOISTIQUE;;A4 - AIRE DE METZ ST PRIVAT 57855 ST PRIVAT LA MONTAGNE;;[1.811912, 50.928405];;FRFASE3309906;FRIONE462702;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5122859;48.2690475;;;; +;;;;;;;;FRFR1PAZAJKTPA3O;63446;COMTE LIGIER;;81 Avenue de Seclin 59710 AVELIN;;[1.812952, 50.934908];;FRFASE3309905;FRIONE462701;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4671269;48.27955;;;; +;;;;;;;;FRFR1PVHJJAQQP0F;60301;hagger;;RN 87 38240 MEYLAN;;[2.6813519665418823,48.872472019341075];;FRFASE3309904;FRS88E161828;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.6962131;49.660872;;;; +;;;;;;;;FRFR1PEEXWDVZFWO;57830;SCI olympe;;A13 AIRE DE BOSGOUET NORD 27310 BOSGOUET;;[2.8847469775400896,48.93616199443869];;FRS37E7747;FRS88E161826;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.692228;49.6621683;;;; +;;;;;;;;FRFR1PD8WHXLJJOC;60302;SANEF PHALENPIN OUEST;;RN1 Les Vingt Mines 60000 ALLONNE;;[2.685392965881789,48.87564000155572];;FRS37E1236;FRIONE414805;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.3036013;48.5527294;;;; +;;;;;;;;FRFR1PHOYWIHBH4H;57831;SANEF RESSONS OUEST;;- ZAC Des Portes du Tarn A68 81370 SAINT SULPICE LA POINTE;;[2.096186, 49.241225];;FRS37E1216;FRIONE414809;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4689422;49.1868957;;;; +;;;;;;;;FRFR1PF4APLQXSCJ;57510;SANEF CROIXRAULT;;A41 AIRE DE LA RIPAILLE 74600 SEYNOD;;[6.661876, 49.132545];;FRS37E1233;FRIONE414810;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2592659;49.3787366;;;; +;;;;;;;;FRFR1PQBBJAH;57509;SANEF MORAINVILLIERS NORD;;A9 AIRE DE FABREGUES NORD 34690 FABREGUES;;[2.097517, 49.246191];;FRIONE413801;FRCPIE65344452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.19098;49.4712494;;;; +;;;;;;;;FRFR1PTFJPLY;77768;SANEF LA SENTINELLE OUEST;;Relais LORRAINE LES RAPPES , A31 88170 SANDAUCOURT;;[6.657184, 49.134222];;FRS37E1227;FRCPIE65578051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0898374;48.6249671;;;; +;;;;;;;;FRFR1PIBDZ4WIOAT;77767;SANEF MONT DE NIZY;;A71 - AIRE DES VOLCANS D'AUVERGNE 63440 CHAMPS;;[-1.3852, 49.0802];;FRS37E1226;FRCPIE65577952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0548212;49.1642203;;;; +;;;;;;;;FRFR1PUHMXW9N8BO;70163;SANEF MORAINVILLIERS SUD;;106 AVENUE DES PYRENEES 47520 LE PASSAGE D'AGEN;;[7.50378,48.61529];;FRS37E1225;FRCPIE65577951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.523626;48.554186;;;; +;;;;;;;;FRFR1PPDDDCJBIC9;70164;SANEF BEUZEVILLE NORD;;10-22 Rue de Châtillon 75014 PARIS;;[3.33728, 46.11];;FRS37E1224;FRCPIE65577852;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.3820192;48.5537084;;;; +;;;;;;;;FRFR1PEZQEWY01JS;53268;SANEF LA SENTINELLE EST;;RD 619 - De Corbeil à Guignes 77390 Yebles;;[2.3759709, 51.0192287];;FRS37E1223;FRCPIE65577851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.662814;48.760259;;;; +;;;;;;;;FRFR1PHELMIXFOE8;66598;SANEF BEUZEVILLE SUD;;A11 - AIRE DE VARADES PAYS DE LOIRE 44370 VARADES;;[4.986205,44.140487];;FRS37E1222;FRCPIE65577752;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2436855;49.3355948;;;; +;;;;;;;;FRFR1PXZ5WPWTVHV;66599;SANEF BRUMATH OUEST;;1270 ROUTE DE DAX 40260 CASTETS;;[7.042501, 49.138351];;FRIONE44665;FRCPIE65577751;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2491715;49.665796;;;; +;;;;;;;;FRFR1PPGHWPZSVYM;127538;SANEF BRUMATH EST;;ZAC du Champ du Roy 02000 LAON;;[5.0802139,44.5179413];;FRIONE446606;FRCPIE65344451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5355451;49.5938654;;;; +;;;;;;;;FRFR1PL0DBRWYOEI;59778;SANEF PHALENPIN EST;;A4 - AIRE DE SAVERNE MONSWILLER 67700 ECKARTSWILLER;;[4.4457879,44.5894889];;FRIONE446604;FRIONE414811;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5276278;48.968137;;;; +;;;;;;;;FRFR1PAVGTCZQU9B;59777;SANEF CHAMPS ROLAND;;55 Rue Desnouettes 75015 Paris;;[6.050015999999999,44.04692499999999];;FRIONE446603;FRCPIE65579452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.8093807;49.6187571;;;; +;;;;;;;;FRFR1PMLFLCWKQQC;128521;SECAB Bellignies;;55 Rue Pierre Charron 75008 Paris;;[6.432864, 48.181061];;FRIONE446602;FRCPIE65579451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.8044956;48.91603;;;; +;;;;;;;;FRFR1PLLJCP3OVP21SAS;792b3fe0-4923-4dea-863e-99e9ee01aaa4;APRR DOLE AUDELANGE;;9 Place du Colonel Fabien 75010 Paris;;[6.39751, 48.046967];;FRIONE446601;FRCPIE65579352;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.8746268;48.5866543;;;; +;;;;;;;;FRFR1PGMQ6WNJ7DC;3dd0bb09-bcbb-4fb0-a189-a95be7c3a01e;APRR LYON MONTLUEL;;31 Boulevard de Clichy 75009 Paris;;[6.352215, 48.167175];;FRS37E1219;FRCPIE65579351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2819547;48.60268;;;; +;;;;;;;;FRFR1PVSWHWM;51461466-c696-4bed-b274-0fa399784d92;APRR VENOY SOLEIL LEVANT;;2 Rue Pérignon 75007 Paris;;[6.398973, 48.256221];;FRS37E1218;FRCPIE65343652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.394381;48.6487864;;;; +;;;;;;;;FRFR1PVRSEKPOETD;8aec152b-584e-4139-87e6-f1994652ab40;APRR L'ALLIER DOYET;;2 Rue Louis Murat 75008 Paris;;[6.432877, 48.179861];;FRS37E1217;FRCPIE65343651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5463226;48.988262;;;; +;;;;;;;;FRFR1PZXHQKBCDP8;d72e5b17-a2e4-4a6c-bdbe-2840378c2131;APRR L'ALLIER SAULZET;;72 Rue de Rome 75008 Paris;;[6.460145, 48.198666];;FRIONE413802;FRIONE41485;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.347532;49.4878826;;;; +;;;;;;;;FRFR1PZTXNJV4UMI;118370;APRR MONTIGNY LE ROI;;150 Rue du Faubourg Saint Martin 75010 Paris;;[6.429412, 48.253061];;FRIONE413803;FRIENE0042024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4549578;49.6038954;;;; +;;;;;;;;FRFR1PZACLSUBH9M;118367;APRR MONTIGNY VAL DE MEUSE;;4 Avenue Parmentier 75011 Paris;;[6.459867, 48.19329];;FRIONE413804;FRIENE0042012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.8327776;49.1000191;;;; +;;;;;;;;FRFR1PWJPBSARJUV;71607;APRR BEAUNE MERCEUIL;;40 Boulevard du Temple 75011 Paris;;[6.461456, 48.192654];;FRCPIE66316751;FRIONE40815;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.226381;49.0897834;;;; +;;;;;;;;FRFR1PXXZV8DAA0C;71572;APRR CHATEAUVILLAIN ORGES LP;;26 Rue Léon Frot 75011 Paris;;[6.467504, 48.19942];;FRCPIE65732452;FRIENE0042011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2716169;49.2189767;;;; +;;;;;;;;FRFR1PAAPOEUSRPM;SDFRRAMSAYVIC;APRR ACHERES EST;;94 Rue Saint-Maur 75011 Paris;;[6.368293, 48.189981];;FRCPIE65732451;FRIONE431703;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0591078;49.2121913;;;; +;;;;;;;;FRFR1PGKA7W3JCGW;42aad73a-f081-48e8-a262-1d57eee1da24;APRR LA FORET;;3 Avenue du General Dodds 75012 Paris;;[6.43045, 48.190584];;FRS41E204267;FRIONE431702;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.565538;49.5128051;;;; +;;;;;;;;FRFR1PB2HE7Y57KD;caebd814-5cd7-4b55-a36e-c51fd5517e5f;APRR GALANDE LA MARE LAROCHE;;7 Rue Danton 75006 Paris;;[6.303181, 48.360695];;FRS41E204266;FRIONE431701;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.605019;49.5064375;;;; +;;;;;;;;FRFR1PEEIECWCICF;77d4547d-1848-4fbe-8882-04fdbaac3f6b;APRR VILLENEUF L'ARCHEVEQUE;;66 Rue de Rennes 75006 Paris;;[6.434275, 48.204642];;FRS18E98423;FRS18E148766;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.579452;48.5380251;;;; +;;;;;;;;FRFR1PWIUMZLWTQX;126136;APRR CHATEAUVILLAIN ORGES PL;;11 Rue de Medicis 75006 Paris;;[6.44083, 48.169844];;FRS18E98422;FRS18E148765;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.571767;49.1611428;;;; +;;;;;;;;FRFR1PU1KC483SJF;81447;APRR DOLE ROMANGE;;22 Rue Fabert 75007 Paris;;[6.43536, 48.172168];;FRCPIE66316752;FRCPIE65305752;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2192249;48.7941251;;;; +;;;;;;;;FRFR1PXEBBF2YBFN;EVB-P1941007;APRR VILLENEUF VAL LUISANT;;34 Rue Saint-Jacques 75005 Paris;;[6.307515, 48.175353];;FRS37E1231;FRCPIE65305751;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.9214924;49.2894615;;;; +;;;;;;;;FRFR1PCAWYATQLP8;50643;AUTO SERVICE PLUS;;55 Rue Monge 75005 Paris;;[6.305172, 48.161522];;FRIONE413805;FRCPIE65305552;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.7362482;48.649714;;;; +;;;;;;;;FRFR1PBIJOFRFG1E;50651;GARAGE RABAT;;20 Rue de Sevres 75006 Paris;;[6.434328, 48.229258];;FRS37E1230;FRCPIE65305551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.132432;48.752177;;;; +;;;;;;;;FRFR1PUFKNQYMEB6;EVB-P2003727;Securecharge Credit Agricole Le Passage;;47 Avenue Bosquet 75007 Paris;;[6.466535, 48.197235];;FRS88E163452;FRCPIE65304652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.1135212;48.5992163;;;; +;;;;;;;;FRFR1PUJZ0SC4ZZC;EVB-P2011337;Av. Eugène Vernholes, Dourdan;;10 Avenue de Saxe 75007 Paris;;[6.40705, 48.254178];;FRS88E163450;FRCPIE65304651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5985858;48.834159;;;; +;;;;;;;;FRFR1PLLHYM3I892BB2I;31929;le grand hotel;;9 Avenue de Villars 75007 Paris;;[6.291893, 48.369538];;FRS37E1229;FRS18E107001;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.3691367;49.5886421;;;; +;;;;;;;;FRFR1PSI6AYMQRSF;da1f45f8-082b-11ed-861d-0242ac120002;EUROTUNNEL FLEXIPLUS;;35 Rue du Bac 75007 Paris;;[6.378322, 48.250729];;FRS37E1228;FRS18E107000;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.3638731;48.9734709;;;; +;;;;;;;;FRFR1PNR1CEVICM8;a2a817ee-668f-47bd-9b69-1e0a894ae406;EUROTUNNEL CHARLES DICKENS;;126 Boulevard Diderot 75012 Paris;;[6.263997, 48.002212];;FRIONE41385;FRCPIE65427052;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.41135;49.654175;;;; +;;;;;;;;FRFR1PQGHU4NZ1E1;129087;LAGNY;;17 Place du Panthéon 75005 Paris;;[-1.6292594023148577, 48.097034066785476];;FRIONE413806;FRCPIE65427051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5296983;49.639211;;;; +;;;;;;;;FRFR1PNWS9EZWLMB;129086;NANTEUIL;;173 Avenue du Maine 75014 Paris;;[4.6969447,46.1869392];;FRN54E187031;FRCPIE65302952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4035618;49.639744;;;; +;;;;;;;;FRFR1PBCUFNF;50776;ALC CAR;;9 Boulevard Edgar Quinet 75014 Paris;;[4.9881828,44.2251248];;FRCPIE65896951;FRCPIE65302951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5701226;49.639352;;;; +;;;;;;;;FRFR1PH1FDA2VWZ8;P2003640;SANEF LORMAISON OUEST;;46 Avenue Reille 75014 Paris;;[3.2503986,43.4706838];;FRTNME18B929320;FRIONE431704;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.064822;48.8367225;;;; +;;;;;;;;FRFR1PJ7HVU7TKDJ;EVB-P1950844;SANEF LONGEVILLE SUD;;145 Rue de Tolbiac 75013 Paris;;[5.481704, 43.691167];;FRIONE126506;FRIONE43175;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.069148;48.7244128;;;; +;;;;;;;;FRFR1PVPCHZV;EVB-P2011264;SANEF LORMAISON EST;;118 Rue Regnault 75013 Paris;;[5.0631174, 43.629227];;FRCPIE65998852;FRCPIE65310251;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.116682;49.6043821;;;; +;;;;;;;;FRS82PMONTABANNORD;EVB-P2020196;SANEF LONGEVILLE NORD;;234 Rue de Tolbiac 75013 Paris;;[1.8745895,43.088683];;FRCPIE65998851;FRIONE403204;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.100014;49.1121181;;;; +;;;;;;;;FRS82PLAUZERTEMAIR;89152;Parking Armonial;;47 Rue Didot 75014 Paris;;[7.2038118,43.7679769];;FRS37E1385;FRIENE0024024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.087859;49.1168854;;;; +;;;;;;;;FRS82PMONTBARTGAR;49605;LA RESERVE DE RILHAT;;18 Avenue Emile Zola 75015 Paris;;[-0.9140338999999997,43.47387800000001];;FRS37E1330;FRIENE0024023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.095834;49.0490526;;;; +;;;;;;;;FRS82PMONTBETONMAIR;039ba96d-7e11-4dd7-be8c-5a57279ba65f;TRISCOS AUTOMOBILES;;16/18 Avenue du Maine 75015 Paris;;[2.5792, 50.49925];;FRSHEE773;FRIENE0024012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.086968;48.6908636;;;; +;;;;;;;;FRS82PAUCAMTOUL;d4d72f69-26a7-4db7-8429-7cdc0f59ae93;vandenbussche;;2 Rue Antonin Mercié 75015 Paris;;[5.03,45.37];;FRSHEE772;FRIENE0024011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.1364357;48.6838561;;;; +;;;;;;;;FRS82PABVXRQ;3ab41450-fa76-4583-842f-4841b4ef42d8;Rhonéa Vacqueyras;;99 Rue de la Convention 75015 Paris;;[4.88,46.30];;FRSHEE771;FRIONE40325;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.320199;49.130605;;;; +;;;;;;;;FRS82PGRAMONTCIM;b6ce4915-9f15-4241-9c97-08f3468dae4c;GEDIBOIS BATI COLMAN;;25 Rue de Vouillé 75015 Paris;;[-0.48,47.45];;FRSHEE762;FRIONE403206;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0907322;49.3863739;;;; +;;;;;;;;FRS82PPARISOTCAFE;414fdb34-8e7a-4add-b930-3f3c3ba8364c;Auberge de l'escargot d'or;;53 Rue Baron le Roy 75012 Paris;;[2.3853772952424, 48.76078419282144];;FRSHEE761;FRIONE403205;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.9757299;49.668173;;;; +;;;;;;;;FRS82PMONTBARTMAIR;49544;Hôtel des Persèdes;;5 Rue Docteur Goujon 75012 Paris;;[2.368253087879, 48.63330486819303];;FRSHEE753;FRIONE403203;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2645353;48.8164751;;;; +;;;;;;;;FRS82PLAVILDIEUT;49575;LUMI'iN MALIJAI;;4 Rue Changarnier 75012 Paris;;[3.0905967, 50.6938179];;FRSHEE752;FRCPIE65310252;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0292342;49.104373;;;; +;;;;;;;;FRS82PMONTEILS;49847;CA EPINAL ZAC REFFYE 1;;2 Rue Abel 75012 Paris;;[2.1233758, 50.9897573];;FRSHEE751;FRIONE46855;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.601422;49.111507;;;; +;;;;;;;;FRFR1PUW81KMON2C;49683;CA EPINAL LES WOODIES;;66 Cours de Vincennes 75012 Paris;;[-0.23322691163974948, 43.17534289658668];;FRSHEE743;FRIONE468506;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.603728;49.100755;;;; +;;;;;;;;FRS82PWEEQKT;4568bb01-f18a-4013-93b0-aa196cb6e8b2;CA EPINAL CHAMOUSEY;;10 Rue Villiot 75012 Paris;;[1.9745308, 48.7955019];;FRSHEE742;FRIONE468505;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.207212;49.116437;;;; +;;;;;;;;FRS82PVYKWNA;e5aeda40-da1f-4240-a0d4-6ef60efa5a28;CA EPINAL ZA JEANNE d'ARC GOLBEY;;3 Avenue Claude Régaud 75013 Paris;;[4.78772, 45.587334];;FRSHEE741;FRIONE468504;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.617731;49.11941;;;; +;;;;;;;;FRS82PNEGREPELISSE;4bc7d179-75e2-413a-9eee-54d9ec0cb00b;CA EPINAL ZAC REFFYE 2;;137 Boulevard Vincent-Auriol 75013 Paris;;[6.081096, 45.933577];;FRSHEE732;FRIONE468503;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.1732257;49.115154;;;; +;;;;;;;;FRS82PPOMMEVIC;aeefa47a-507e-47db-9c3f-a4ea1316dc1d;CA EPINAL HOTEL INNOVATION BOIS;;21 Rue Berbier du Mets 75013 Paris;;[6.080938, 45.933958];;FRSHEE731;FRIONE468502;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2421829;49.116522;;;; +;;;;;;;;FRS82PXWWSHW;c1cfd29b-d13c-4ffd-a556-aa77d5438876;CA EPINAL PISCINE LEDERLIN;;77 Rue de l'Amiral Mouchez 75013 Paris;;[6.303039, 46.07588];;FRS37E1308;FRIONE468501;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2448201;49.2283939;;;; +;;;;;;;;FRS82PFWWAKK;fr*map*e000014961534;CA EPINAL PISCINE OLYMPIQUE 2;;A9 - PERPIGNAN NARBONNE 11480 LA PALME;;[6.084506, 45.934997];;FRS37E1309;FRIONE451901;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2958843;48.523811;;;; +;;;;;;;;FRS82PMONTAUBANED;60127;CA EPINAL PISCINE OLYMPIQUE 1;;A10 - PARIS BORDEAUX 45190 MESSAS;;[6.084455, 45.934924];;FRCPIE65999651;FRCPIE66845752;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4401486;48.5759106;;;; +;;;;;;;;FRS82PMONTAUBANROGER;135128;CA EPINAL STADE PRETOT;;A10 - NIORT SAINTES 17350 FENIOUX;;[4.787825, 45.587026];;FRCPIE66591551;FRCPIE65661051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2832819;49.1354216;;;; +;;;;;;;;FRS82PMONTAUBANDR;49597;CA EPINAL PISCINE GOLBEY;;A8 - NICE/AIX EN PROVENCE 83550 VIDAUBAN;;[6.081295, 45.933736];;FRS37E1310;FRCPIE65521951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.624323;49.3199395;;;; +;;;;;;;;FRS82PMONTRICOUX;16a2b325-a56b-47f6-a647-76b2313b8506;CA EPINAL CHANTRAINE MAIRIE;;A89 BORDEAUX CLERMONT FERRAND 33660 GOURS;;[1.964767, 48.826624];;FRS18E179113;FRIONE473504;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0225093;49.1916925;;;; +;;;;;;;;FRS82PMONTJOIFETES;f1881994-3c6b-4596-9c91-5105129072b9;CA EPINAL CHANTRAINE EGLISE;;A4 - AIRE DE REIMS CHAMPAGNE NORD 51400 LES PETITES-LOGES;;[6.09111, 45.892516];;FRS18E179112;FRIONE473503;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.629394;49.614228;;;; +;;;;;;;;FRS82PPMVNFH;49521;CA EPINAL STADE TRUZEY;;A4 - PARIS STRASBOURG 67700 ECKARTSWILLER;;[6.09201, 45.89284];;FRS55E66237;FRIONE473502;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.623855;49.613656;;;; +;;;;;;;;FRS82PLDVNFW;49590;CA EPINAL ZA LES MITROCHES;;A87 - ANGERS CHOLET 49340 TREMENTINES;;[6.091668, 45.892442];;FRS55E66236;FRIONE473501;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.64284;48.860445;;;; +;;;;;;;;FRS82PBOURGDEVISA;49577;CA EPINAL CHAVELOT;;6 Imp. Dieudonné Coste 42160 Andrézieux-Bouthéon;;[6.09154, 45.892571];;FRCPIE66002952;FRCPIE67358452;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.641399;49.643581;;;; +;;;;;;;;FRS82PBRUNIQUEL;49591;CA EPINAL ZA Le Saut le Cerf 1;;527 Chemin de la Madrague-Ville 13015 Marseille;;[6.091524, 45.892581];;FRCPIE66002951;FRCPIE67358451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.634003;49.0762621;;;; +;;;;;;;;FRS82PCHATEAU;16987;CA EPINAL ZA Innova 3000 2;;1 Rue de L'Amiral De Coligny 75001 Paris;;[1.964725, 48.826976];;FRCPIE66591452;FRS51E49675;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.621794;49.3034833;;;; +;;;;;;;;FRS82PALBIAS;16986;CA EPINAL Parc de la Peupleraie;;4 Quai du Marché Neuf 75001 Paris;;[4.787973, 45.58718];;FRCPIE65999652;FRS51E49674;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5903001;49.3028024;;;; +;;;;;;;;FRS82PENXVSY;16993;CA EPINAL Mairie d'Oncourt;;18 Boulevard de la Grotte Rolland 13008 Marseille;;[6.315221, 46.074003];;FRCPIE66591451;FRCPIE65936052;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.6391676;49.3798413;;;; +;;;;;;;;FRS82PRNYVZB;16992;CA EPINAL Médiathèque;;101 Boulevard Michelet 13009 Marseille;;[6.315092, 46.073619];;FRCPIE66002652;FRCPIE65936051;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.6315858;48.9124279;;;; +;;;;;;;;FRS82PXVHDDR;cf782f10-bbbb-4e11-a7ed-083cc0459cd7;Pandora;;168 Route des Trois Lucs à la Valentine 13011 Marseille;;[6.091181, 45.892593];;FRCPIE66002651;FRCPIE65605652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5160379;49.0258146;;;; +;;;;;;;;FRS82PMNENFV;36717;Parking Candas;;7 Cours Charles Nédélec 13830 ROQUEFORT LA BEDOULE;;[5.2446, 46.2175];;FRCPIE66000252;FRCPIE65605651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.1700677;49.63612;;;; +;;;;;;;;FRS82PUEEYXZ;36716;Hotel des grand Vins;;7 Boulevard des Capucines 75002 Paris;;[5.2442, 46.2175];;FRCPIE66000251;FRCPIE65108351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.7752953;48.6764849;;;; +;;;;;;;;FRS82PMAUZA;19826;Rhonéa - Boutique de Rasteau;;44 Rue Étienne Marcel 75002 Paris;;[5.370315499999999,43.421597];;FRCPIE65999852;FRCPIE65945652;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.7690024;49.636395;;;; +;;;;;;;;FRS82PFOWAWH8MMK;19827;CHATEAU ST PIERRE DE SERJAC;;52 Rue Étienne Marcel 75002 Paris;;[5.802524000000001,43.81472400000001];;FRCPIE65999851;FRCPIE65945651;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.7554556;49.645317;;;; +;;;;;;;;FRS82PCAUSSADEGARE;56424;Camille Ferrat Pertuis;;5 Rue Réaumur 75003 Paris;;[2.863237199999999,42.68525149999999];;FRIONE12655;FRCPIE65933552;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.7906159;49.628488;;;; +;;;;;;;;FRS82PCAPUCINS;56423;GAGNERAUD Salon;;44 Quai Henri IV 75004 Paris;;[4.949088299999999,44.31341339999999];;FRIONE126505;FRCPIE65933551;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.3632336;49.626574;;;; +;;;;;;;;FRS82PCORBARIEU;70278;HOTEL MAISON DES CONSULS;;126 rue de Ruffi 13002 Marseille;;[3.562731802998726, 43.485743901157626];;FRCPIE66003851;FRIONE473505;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.61295;49.627575;;;; +;;;;;;;;FRS82PDURFORT;70279;de15341d-9257-4e3b-9db3-d4ce057c9c5c;;A4 - AIRE DE REIMS CHAMPAGNE SUD 51400 LES PETITES-LOGES;;[-52.32188977802357,4.909708809721746];;FRIONE126504;FRIONE473506;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.611977;49.637993;;;; +;;;;;;;;FRS82PDUNES;89539;BRIT HOTEL LE LODGE DU GOLF;;A62 - AIRE AGEN PORTE DAQUITAINE 47310 LAPLUME;;[2.05,48.77];;FRIONE440314;FRIONE47355;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0375894;49.5635953;;;; +;;;;;;;;FRS82PDHRGVC;89540;CRITTM2A;;A1 - AIRE DE LA COURNEUVE EST 93120 LA COURNEUVE;;[4.38219,45.45884];;FRIONE440313;FRIENE0065012;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.3505134;49.4713781;;;; +;;;;;;;;FRS82PYEMVUR;50782;Brico Marché Revel Tourdan;;A7 - AIRE PORTE LES VALENCE EST 26800 PORTES LES VALENCE;;[5.014027,44.12000449999999];;FRIONE440310;FRS08E57541;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5673533;49.471884;;;; +;;;;;;;;FRS82PJDZMJF;57ae7437-9d11-4de7-991b-04d0113271db;Intermarché Replonges;;A6 - AIRE DE VILLABE 91100 VILLABE;;[2.4900939, 51.0677071];;FRIONE440309;FRS51E61498;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.1743921;48.898219;;;; +;;;;;;;;FRS82PGNRKMK;325f41d9-7c4a-48ee-9a78-90eb82731102;SOLIDARAUTO 49;;77 AVENUE DU FRIBOURG 68110 ILLZACH;;[2.3418004, 51.0293366];;FRIONE440308;FRS51E61497;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.1796253;48.7248101;;;; +;;;;;;;;FRS82PMMQAZA;d6f56ed3-1f68-4edd-880f-2410bc766baa;Parking Gatage de la Senia;;Aire de Resson Est Autoroute A1 60490 RESSONS SUR MATZ;;[2.4069522, 51.0421206];;FRIONE440307;FRS08E57530;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.175209;49.5357881;;;; +;;;;;;;;FRS82PVRAGJQ;FRFR1EWRWA1;Parking Garage de la Mariniere;;A6 AIRE DE LA COULINE Sens Province - Paris 89116 PRECY SUR VRIN;;[2.4307419, 50.9694554];;FRIONE440306;FRS08E57529;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5568028;49.3682998;;;; +;;;;;;;;FRS82PKMNJNR;FRFR1EFGBG1;NOR NUIT;;A6 - AIRE VENOY-CHABLIS 89290 VENOY;;[-1.02,46.87];;FRIONE440305;FRIENE0065024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2642285;49.3821883;;;; +;;;;;;;;FRS82PEKYSEG;FRFR1EMWPZ1;restaurant l'eclusier;;A6 - AIRE DE MACON LA SALLE 71260 SAINT ALBAIN;;[4.6451248,48.2690475];;FRIONE440304;FRIENE0065023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.954338;49.372388;;;; +;;;;;;;;FRS82PEBTDSH;NVG0B46001;Bricomarché Coarraze;;A9 AIRE DE MARGUERITTES NORD 30320 MARGUERITTES;;[7.390097, 48.27955];;FRIONE440303;FRIENE0065011;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.949023;48.6867883;;;; +;;;;;;;;FRS82PSADYAZ;E175319;Nijkerk Computer Solutions - Élancourt - 22kW AC;;Aire de Lançon Ouest (sens Lyon-Marseille) Autoroute A7 13680 Lançon Provence;;[-1.699955, 49.660872];;FRIONE440302;FRCPIE66019851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5683501;49.638748;;;; +;;;;;;;;FRS82PUKXZTU;E175320;IBIS 22kVA Borne 2;;A9 - AIRE AMBRUSSUM SUD 34400 VILLETELLE;;[-1.8364845, 49.6621683];;FRIONE440301;FRS51E125306;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5955279;49.635956;;;; +;;;;;;;;FRS82PFKHQQM;E161583;KeyWest 22kVA Borne 2;;A6 - AIRE DE BEAUNE TAILLY 21190 MERCEUIL;;[-1.5052815, 48.5527294];;FRFASE3302304;FRS51E125305;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5965401;49.0517922;;;; +;;;;;;;;FRS82PSZTURH;E161582;KeyWest 2x22kVA Borne 3;;165 - Kerfleury Voie Express 56520 GUIDEL;;[-1.4060821, 49.1868957];;FRFASE3302303;FRS51E10673;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5877092;48.9096407;;;; +;;;;;;;;FRFR1PMY72KDYCBP;128771;Euromaster 11kVA Borne 1;;A5 RELAIS TROYES FRESNOY 10270 Fresnoy le Château;;[-1.4209417, 49.3787366];;FRFASE3302302;FRS51E10672;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.6079197;48.7743602;;;; +;;;;;;;;FRS82PRUMFHQ;128704;La Brasserie 22kVA Borne 1;;A26 - AIRE D'URVILLERS 2690 ESSIGNY LE GRAND;;[-1.7876279, 49.4712494];;FRFASE3302301;FRS51E49689;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5794053;48.6204334;;;; +;;;;;;;;FRS82PEDJWMR;128713;La Brasserie 22kVA Borne 2;;A10 AIRE FONTBELLEAU PARIS BAYONNE 33310 LORMONT;;[-1.3367836, 48.6249671];;FRS37E1303;FRS51E49688;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4147694;48.5960906;;;; +;;;;;;;;FRS82PZZXQHP;128712;IBIS 22kVA Borne 1;;A83 AIRE DE LA GRASSINIERE 44120 VERTOU;;[-1.1278249, 49.1642203];;FRIONE440315;FRCPIE66019852;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0025626;49.133094;;;; +;;;;;;;;FRS82PLAFRANCAISE;128770;KeyWest 22kVA Borne 1;;Avenue François Arago Coté Intérieur 28000 CHARTRES;;[-1.499777, 48.554186];;FRIONE440316;FRCPIE65521952;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2504703;48.9774889;;;; +;;;;;;;;FRS82PMONTAUBANTO;128703;Hippopotamus 22kVA Borne 1;;10 RUE DES ALLIES 57000 METZ;;[-1.5122859, 48.5537084];;FRIONE440317;FRIENE0010024;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.8579488;48.9483719;;;; +;;;;;;;;FRS82PMONCLAR;128758;Leclerc Cran Gevrier 2x22KVA Borne 2;;60 BOULEVARD LAFAYETTE 63000 CLERMONT FERRAND;;[-1.4671269, 48.760259];;FRS37E1336;FRCPIE65856451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.654263;48.983317;;;; +;;;;;;;;FRS82PGOLFECH;128787;Leclerc Cran Gevrier 22KVA Borne 6;;4 ROUTE DE CHANTEREINE 78711 MANTES LA VILLE;;[-1.6962131, 49.3355948];;FRIONE126503;FRIENE0010023;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.66402;48.988129;;;; +;;;;;;;;FRS82PGRISOLLES;128711;Leclerc Cran Gevrier 22KVA Borne 5;;88 AV DU MONT RIBOUDET 76000 ROUEN;;[-1.692228, 49.665796];;FRS37E1307;FRIONE432415;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.675774;48.8327924;;;; +;;;;;;;;FRS82PFAUDOAS;128789;Leclerc Cran Gevrier 2x22KVA Borne 4;;209 AVENUE DE STRASBOURG 67170 BRUMATH 209 AVENUE DE STRASBOURG 67170 BRUMATH;;[-1.3036013, 49.5938654];;FRS37E1306;FRIONE432414;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.651226;48.8359208;;;; +;;;;;;;;FRS82PLAMAGISTERE;128790;Leclerc Cran Gevrier 22KVA Borne 3;;100 RUE DE LA MONTAT 42100 ST ETIENNE;;[-1.4689422, 48.968137];;FRS55E66192;FRIONE432413;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2911409;48.8375254;;;; +;;;;;;;;FRS82PMONBEQUITO;128757;Hippopotamus 22kVA Borne 2;;91 rue du Faubourg de Béthune 59000 LILLE;;[-1.2592659, 49.6187571];;FRS55E66191;FRIONE432412;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5804867;48.8381083;;;; +;;;;;;;;FRS82PMOISSAC;128788;IBIS 2x22kVA Borne 3;;108 Avenue A. Morizet 92100 Boulogne-Billancourt;;[-1.19098, 48.91603];;FRS55E66184;FRIONE432411;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5640155;49.0993255;;;; +;;;;;;;;FRS82PQJGGHJ;128773;Norauto 22kVA Borne 1;;83 Boulevard de Plombieres 13003 MARSEILLE;;[-1.0898374, 48.5866543];;FRS55E66183;FRIONE432410;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.6723914;49.0965681;;;; +;;;;;;;;FRS82PNUMQRW;128752;Norauto 22kVA Borne 2;;133 Avenue du Maréchal Foch 78400 CHATOU;;[-1.0548212, 48.60268];;FRS37E1305;FRIONE432409;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4536927;48.8358569;;;; +;;;;;;;;FRS82PFADXTQ;128774;Leclerc Cran Gevrier 22KVA Borne 1;;83 BOULEVARD YVES GUILLOU 14000 CAEN;;[-0.944979, 48.6487864];;FRIONE440318;FRIONE432408;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4412921;49.0483967;;;; +;;;;;;;;FRS82PDUJPRC;128710;La Maison B 22kVA Borne 1;;10 AV. DU ROUSSILLON 63170 AUBIERE;;[-1.523626, 48.988262];;FRS37E1382;FRIONE432407;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4666847;48.841466;;;; +;;;;;;;;FRS82PMOLIERES;128765;La Maison B 22kVA Borne 2;;RN 12 Dir ST BRIEUC ROUTE DE ST BRIEUC 22970 PLOUMAGOAR;;[-1.3820192, 49.4878826];;FRS37E1304;FRIONE432406;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4400962;49.5512758;;;; +;;;;;;;;FRFR1PSO7YFPBWXL;128751;CABRIES GOLF DEVELOPPEMENT;;A4 - AIRE DE BUSSY SAINT GEORGES 77600 BUSSY ST GEORGES;;[-1.662814, 49.6038954];;FRCPIE66602552;FRIONE432405;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.3130607;49.647892;;;; +;;;;;;;;FRFR1PZSVJXFFR02;128766;LE PROVENCE;;A89 - AIRE DE LIMAGNE SUD 63190 ORLEAT;;[-1.2436855, 49.1000191];;FRCPIE66602551;FRIONE432404;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4999864;49.642007;;;; +;;;;;;;;FRFR1PRUIWFEJLLK;f566c0dd-5e8a-4911-b620-a1e97770e222;FAST HOTEL PERPIGNAN SUD;;A63 - AIRE DE BIDART EST 64210 BIDART;;[-1.2491715, 49.0897834];;FRCPIE66601652;FRIONE432403;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.765945;49.654087;;;; +;;;;;;;;FRFR1PKHTEZ3S19A;16805fed-ffdf-4120-973a-02f9f6ad4c2a;RHONEA BOUTIQUE DE VISAN;;A10 AIRE DE STE MAURE DE TOURAINE 37800 ST EPAIN;;[-1.5355451, 49.2189767];;FRCPIE66601651;FRIONE432402;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.97762;49.654982;;;; +;;;;;;;;FRFR1PEQLLJPVXCO;36d4830d-fc1f-4979-a8b2-c842fdfe8590;villeveyrac;;1 RUE DE STRASBOURG F 92400 COURBEVOIE;;[-1.5276278, 49.2121913];;FRIONE44035;FRIONE432401;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.600058;48.6198576;;;; +;;;;;;;;FRFR1PYGNJTREMMH;FRETIP59368A;MIDAS;;Route de Beaune 21160 MARSANNAY LA COTE;;[-1.8093807, 49.5128051];;FRS37E1311;FRTNME19B911970;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.844165;48.8468776;;;; +;;;;;;;;FRFR1PIWWUMCVSIG;f2a9d6ba-edd0-4e1e-a9e1-c75aed518e86;Voisins-le-bretonneux;;ROCADE PERIPHERIQUE-AIRE DU CHUT Coté Intérieur 33700 MERIGNAC;;[-1.8044956, 49.5064375];;FRCPIE66003852;FRIONE432417;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.97429;49.200886;;;; +;;;;;;;;FRFR1PPMDA7DOBMH;be2b6f75-a3b1-4254-a94d-c36080526e8a;camping de la hoogue moote;;A86 - ECHANGEUR DE VELIZY 78350 VELIZY;;[-0.8746268, 48.5380251];;FRIONE10135;FRIONE432418;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.596063;49.5574624;;;; +;;;;;;;;FRFR1PXG3TDDGOMM;fe86cb06-1461-47e5-87fd-4fbf71844232;Saint Etienne, 94 rue Bergson;;RN 157 - AIRE DE MONDEVERT 35370 MONDEVERT;;[-1.2819547, 49.1611428];;FRIONE407902;FRIONE43245;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.2785984;49.0515211;;;; +;;;;;;;;FRFR1PAZTNSXMBHG;172817;rhoneaRHONEA BEAUMES DE VENISE;;A63 - AIRE DE BIDART OUEST 64210 BIDART;;[-1.394381, 48.7941251];;FRS37E1332;FRIONE454208;;;;;;;;;;;;;;;;;;;;;;;;;;;;55.3159294128418;49.0486743;;;; +;;;;;;;;FRFR1PSLCGOXFVYX;172819;rhonea RHONEA BEAUMES DE VENISE;;A36 AIRE DE BESANCON MARCHAUX 25640 MARCHAUX;;[-1.5463226, 49.2894615];;FRS37E1335;FRIENE0010012;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.47906106710434;49.054234;;;; +;;;;;;;;FRFR1PIEKST5G1ZL;164421;camping zuydcootebeach;;175 BOULEVARD DE PONTOISE 95370 MONTIGNY LES CORMEILLES;;[-1.347532, 48.649714];;FRS37E1331;FRIENE0010011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9736927577629495;49.0438633;;;; +;;;;;;;;FRFR1PIG8XKOL1LY;164418;SAS VANDENBUSSCHE st pol;;202 ROUTE DE LORIENT 35000 RENNES;;[-1.4549578, 48.752177];;FRCPIE66029452;FRIONE45425;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.7970384;49.4095477;;;; +;;;;;;;;FRFR1PQLLMFZXIXH;03205e52-39b9-461a-b6ee-4b483a75c506;SAS VANDENBUSSCHE DUNKERQUE;;A10 - AIRE TOURS VAL DE LOIRE 37380 MONNAIE;;[-0.8327776, 48.5992163];;FRCPIE66029451;FRIONE454212;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.3790712356567383;48.5542101;;;; +;;;;;;;;FRFR1PSHP7YQXTW6;f5fc2930-f303-11ed-a05b-0242ac120003;HOTEL AU TONNELIER;;A8 AIRE TERRASSES PROVENCE CENTRE 83170 BRIGNOLES;;[-1.226381, 48.834159];;FRS55E66457;FRIONE454211;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.017630100250244;48.603128;;;; +;;;;;;;;FRFR1PI9G0X0SWES;FR*FR1*KPPH*1;LES HERBIERS;;A8 AIRE DE CANAVER 83480 PUGET SUR ARGENS;;[-1.2716169, 49.5886421];;FRS55E66456;FRIONE454210;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.992544651031494;49.034503;;;; +;;;;;;;;FRFR1PHWDOP47ZNA;E175425;HOSTELLERIE LA CHAUMIERE;;27 Avenue de la Porte d'Italie 75013 PARIS;;[-1.0591078, 48.9734709];;FRS37E1708;FRIONE454209;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.720282077789307;48.837858;;;; +;;;;;;;;FRFR1PLUBXMBZUNZ;E172798;Mazda - Chatenois - 22kW AC;;1160 AV. PIERRE MENDES FRANCE 34000 MONTPELLIER;;[-1.565538, 49.654175];;FRS37E1699;FRIONE454207;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.278209770098333;49.56517;;;; +;;;;;;;;FRFR1PKNIMTITM2R;748341ca-8462-4f72-bf94-7ffc369e534e;QUERQUEVILLE - Couville;;A36 AIRE DE LA PORTE D'ALSACE 68520 BURNHAUPT LE BAS;;[-1.605019, 49.639211];;FRCPIE66025452;FRCPIE65072851;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.683051586151123;49.094013;;;; +;;;;;;;;FRFR1PUZ2ITISA9Y;2cd293ec-8e21-4d6d-b57f-6caafbbdaba8;BEAUMONT HAGUE - Cyberbase;;A9 11110 SALLES D'AUDE;;[-1.579452, 49.639744];;FRCPIE66025451;FRIONE454206;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.926622543415475;49.166556;;;; +;;;;;;;;FRFR1PDLLYWL;e66a1a8e-3139-4937-8f93-5047adf628dd;PONTORSON - la Gare;;57 BOULEVARD INDUSTRIEL 76300 SOTTEVILLE LES ROUEN;;[-1.571767, 49.639352];;FRS37E1326;FRIONE454205;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.632329940795898;41.5930127;;;; +;;;;;;;;FRFR1PG2PRGCPO0G;867e81ce-5188-416a-ad4f-5397262a0238;PERIERS - Place de la Halle;;A43 - AIRE DE L'ISLE D'ABEAU NORD 38080 L'ISLE D'ABEAU;;[-1.2192249, 48.8367225];;FRS37E1325;FRIONE454204;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.130048315345508;-20.949535369873047;;;; +;;;;;;;;FRFR1PVLGWEW;193c7e74-429d-4886-aeb0-b32130ac90ff;PICAUVILLE - Le Bourg;;A10 - AIRE D'ORLEANS SARAN 45520 GIDY;;[-0.9214924, 48.7244128];;FRIONE40795;FRIONE454203;;;;;;;;;;;;;;;;;;;;;;;;;;;;8.746361669308984;44.22049963493783;;;; +;;;;;;;;FRFR1PAZ7U5AZUP6;68b650b5-14f6-4e1b-b0bb-1df531cbad31;PIERREVILLE - les Beauvais;;53 AVENUE DU XXEME CORPS AMERICAIN 57000 METZ;;[-1.7362482, 49.6043821];;FRIONE407906;FRIONE454202;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.115732;44.33852129529498;;;; +;;;;;;;;FRFR1PRKXKTUYHMP;e98b0d45-1648-4bb3-8334-ec83df10dcae;POILLEY - aire de l'Estuaire;;ROUTE DE GARGENVILLE 78680 EPONE;;[-1.132432, 49.1121181];;FRIONE407905;FRIONE454201;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.833339258860764;41.85874031254947;;;; +;;;;;;;;FRFR1PXLLMSNVNT8;460352ff-39b2-4992-b41f-d1c8049fce24;PONT-HEBERT - Rue des Juifs;;A55 - AIRE GIGNAC SUD LA NERTHE 13180 GIGNAC LA NERTHE;;[-1.1135212, 49.1168854];;FRIONE407904;FRCPIE65072852;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0321381;43.000159063034566;;;; +;;;;;;;;FRFR1PG6UP3TUUTZ;b321e50d-b3d7-489f-a3a6-f2f2f0b3cd2a;PONTORSON - aire de covoiturage;;ACCESS Relais de CARQUEFOU Route de Paris 44470 CARQUEFOU;;[-1.5985858, 49.0490526];;FRS37E1333;FRS08E57542;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.184235618402654;44.10531997680664;;;; +;;;;;;;;FRFR1PHMPLJPJZBZ;7b11480f-e105-4635-b4a8-ef0ba5c01b88;PONTORSON - Place Leclerc;;A84 - AIRE DU MONT ST MICHEL 50240 ST AUBIN DE TERREGATTE;;[-1.3691367, 48.6908636];;FRIONE101201;FRCPIE65856452;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.076252915345508;44.077613830566406;;;; +;;;;;;;;FRFR1PSRD9E7Z4IO;a3183c38-0b81-4c65-9707-dce2b446fa53;SARTILLY - aire de covoiturage;;A77 - AIRE DES VIGNOBLES 58150 TRACY SUR LOIRE;;[-1.3638731, 48.6838561];;FRIONE101202;FRCPIE66845751;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.615694;43.43741989135742;;;; +;;;;;;;;FRFR1PSYGATUARH8;c6584ed1-7a9c-4567-8c24-27092661687b;PORTBAIL - Place de l'Eglise;;A20 - AIRE DU BOIS DE DOURRE 82270 MONTALZAT;;[-1.41135, 49.130605];;FRCPIE66037652;FRIONE432704;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4648423;43.52534026251893;;;; +;;;;;;;;FRFR1PFCDNW73QHC;0a91bd69-34a2-455d-b6b4-cb69691e05bc;QUERQUEVILLE - Rocambole;;Aire de Troyes Le Plessis 10270 Fresnoy le Château;;[-1.5296983, 49.3863739];;FRS28E175634;FRS08E57716;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.844548;48.59249496459961;;;; +;;;;;;;;FRFR1PJJWUMZACZF;f8aa7fa8-c06f-4b19-886a-87a3a548549e;QUETTEHOU - Parking Halle au Grain;;A40 - AIRE DE CEIGNES CERDON 1430 CEIGNES;;[-1.4035618, 49.668173];;FRCPIE66040252;FRCPIE66659652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5627677;45.745946211701884;;;; +;;;;;;;;FRFR1PJFVT9N4ES5;66232122-0a47-4115-add7-b02c54d0ced3;QUETTREVILLE SUR SIENNE - Salle des Fetes;;A4 AIRE DE KESKASTEL EST 67260 KESKASTEL;;[-1.5701226, 48.8164751];;FRCPIE66040251;FRCPIE66659651;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.9588304576710754;43.463932037353516;;;; +;;;;;;;;FRFR1PHJ4XH5K9DO;dba85b2f-0987-475f-af0f-c9e73bed1006;REVILLE - Eglise;;Autoroute A10 - 33 Saint Andre de Cubzac 33240 ST ANDRE DE CUBZAC;;[-1.064822, 49.104373];;FRS37E19684;FRS08E200427;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.960545459507173;44.46056813187505;;;; +;;;;;;;;FRFR1POEKE1PI8DM;8ebb8d2e-f381-41b1-af4b-5299bdf492ca;PERCY - Place du Champs de Foire;;2 AVENUE DE BOURGOGNE 54500 VANDOEUVRE LES NANCY;;[-1.069148, 49.111507];;FRS37E19683;FRS08E200426;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.442518;41.94325812908591;;;; +;;;;;;;;FRFR1PILZU0QWCER;0ed6649f-72d7-4b44-a85e-77c60c3a0c5e;PARIGNY - St Berthevin;;174 Boulevard de l'Amiral Mouchez 76600 LE HAVRE;;[-1.116682, 49.100755];;FRCPIE66518952;FRS08E57694;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.7693176;49.2805603;;;; +;;;;;;;;FRFR1PHI8CYLTPBP;bf861d33-2d66-43a3-98dc-7a8e5a31a017;PARIGNY - le Pointon;;A42 AIRE DE LYON MONTLUEL 01120 DAGNEUX;;[-1.100014, 49.116437];;FRCPIE66518951;FRS08E57693;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.7717784;48.119479307086486;;;; +;;;;;;;;FRFR1PNTGG7P8XLF;933f4c75-7ec9-44a4-a558-60acfa011158;MORTAIN BOCAGE - place du Château;;BD LAURENT BONNEVAY 69500 BRON;;[-1.087859, 49.11941];;FRCPIE66037651;FRSHEE954;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.581885286584799;42.5615661;;;; +;;;;;;;;FRFR1PVTD24GRLDJ;f594a621-c183-411c-8549-54269cf30c0f;MONTMARTIN SUR MER - Place de l’eglise;;, BLD DU PERIPHERIQUE INTERIEUR , 75019 PARIS 19EME ARRONDISSEMENT;;[-1.095834, 49.115154];;FRIONE101203;FRSHEE953;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.219229;48.69547087754244;;;; +;;;;;;;;FRFR1PRJFZVVGX8O;45e71a75-aef8-4b84-8511-8112a20c8716;MONTEBOURG - Place de la Mairie;;Boulevard périphérique extérieur 75019 PARIS 19;;[-1.086968, 49.116522];;FRCPIE66037152;FRSHEE952;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.130455146024364;43.7342593961128;;;; +;;;;;;;;FRFR1PVSEYDG;38436051-4763-44cd-80c8-8cf33648ceeb;MARTINVAST - Le Pont;;A 46 - AIRE DE COMMUNAY SUD 69360 COMMUNAY;;[-1.1364357, 49.2283939];;FRCPIE66037151;FRSHEE951;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1331726;42.9937786;;;; +;;;;;;;;FRFR1PMCARLUQ2VL;ba5e516b-e37b-4cbd-9739-86be9084248a;MARIGNY - Rue du 8 Mai 45;;A16 AIRE HARDIVILLIERS 60120 HARDIVILLERS;;[-1.320199, 48.523811];;FRCPIE66035952;FRSHEE944;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1229985;48.95141080000001;;;; +;;;;;;;;FRFR1PZE3EDDITHO;4de294f3-d05c-4151-8ebb-8206f8c412e8;MARIGNY - aire de covoiturage;;A75 AIRE DU CAYLAR 34520 LE CAYLAR;;[-1.0907322, 48.5759106];;FRCPIE66035951;FRSHEE943;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.33806628395921656;48.198965;;;; +;;;;;;;;FRFR1PMAGQFS;ab8848af-a246-42f6-8abe-e68bf27a25e8;LESSAY - Place St Cloud;;A20 AIRE DES MILLE ETANGS 36350 LUANT;;[-0.9757299, 49.1354216];;FRIONE101206;FRSHEE942;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.405862426409584;48.6203594;;;; +;;;;;;;;FRFR1PWUZEQNBUU0;7250ce15-0ed6-4b88-a9f6-d0a1ff1340fb;LESSAY - Le rond Point;;A13 Aire de Beuzeville Sens vers CAEN 27210 BEUZEVILLE;;[-1.2645353, 49.3199395];;FRIONE101205;FRSHEE941;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.316255993913532;43.10066375282533;;;; +;;;;;;;;FRFR1PYKDY8UTUDA;02b59851-9d82-4401-94af-537b12b1e16f;LES PIEUX - Mairie;;A48 AIRE DE VOREPPE 38340 VOREPPE;;[-1.0292342, 49.1916925];;FRIONE101204;FRS08E57692;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.729168891906738;43.30223171200826;;;; +;;;;;;;;FRFR1PXPD0Y4AZML;528993a4-ab02-4fef-a437-7b0c1776fbf0;LES PIEUX - La Fosse;;A34 AIRE DES ARDENNES WOINIC 08270 SAULCES MONCLIN;;[-1.601422, 49.614228];;FRIONE407903;FRS08E57691;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.925962686538696;45.462032;;;; +;;;;;;;;FRFR1PYRPLK8JSQE;e797adbb-17d2-4d48-843c-cef357286c7b;LE TEILLEUL - Place de l'Eglise;;A6 AIRE DE BEAUNE MERCEUIL 21190 MERCEUIL;;[-1.603728, 49.613656];;FRIONE407901;FRS08E57717;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.277399063110352;45.0873099;;;; +;;;;;;;;FRFR1PSW0I6KKZAI;8dbb656e-d5e4-443c-ad35-6b21f0bda600;LE MESNIL VIGOT - La Rivière de Haut;;A65 - AIRE DE L'ADOUR 40800 AIRE SUR L ADOUR;;[-1.207212, 48.860445];;FRIENE0089011;FRS08E57722;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.017138957977295;47.3873487;;;; +;;;;;;;;FRFR1PVSN8XCGMXJ;579c1d14-019d-4f70-b766-a8a55eeafeb2;LA HAYE PESNEL - Parking du Thar;;A61 AIRE DE PORT LAURAGAIS SUD 31290 AVIGNONET LAURAGAIS;;[-1.617731, 49.643581];;FRIONE41235;FRS08E57723;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.994230270385742;48.9020454543009;;;; +;;;;;;;;FRFR1PS6ZRQZX1D5;3cd77ead-6640-4460-a400-7feac71a06fd;LA HAYE DU PUITS - Rue du Vavasseur;;A31 AIRE DE DIJON BROGNON (sens EST) 21490 BROGNON;;[-1.1732257, 49.0762621];;FRCPIE66009752;FRIONE41015;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.330907;48.11093710000001;;;; +;;;;;;;;FRFR1PHS9LF6WZTM;6007835c-c55e-4cd8-ab0f-85b890e9367f;SAINT QUENTIN SUR LE HOMME;;A51 - AIRE DE VOLX OUEST 4130 VOLX;;[-1.2421829, 49.3034833];;FRCPIE66009751;FRCPIE66845452;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.780463;48.92768371647863;;;; +;;;;;;;;FRFR1PWU01S8EWX9;09fff65b-9f7c-4439-bd9f-2e8d7fdd2e8a;SARTILLY - Superette;;A51 - AIRE DE MANOSQUE EST 4130 VOLX;;[-1.2448201, 49.3028024];;FRS37E1316;FRCPIE66845451;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.863237;48.92402509999999;;;; +;;;;;;;;FRFR1PUYYZ1I5HC8;6d34afed-25f2-423f-9620-2997a067caeb;BARENTON - Mairie;;A6 - AIRE DE BRUYERES-PAISY 69570 DARDILLY;;[-1.2958843, 49.3798413];;FRS37E1315;FRIONE40805;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7711457;48.9267881;;;; +;;;;;;;;FRFR1PE48M4FWGEO;62274d29-ccc4-4ee9-9718-17380a46a31e;VILLEDIEU LES POELES - La Gare;;A26 - AIRE DE SOUCHEZ 62153 SOUCHEZ;;[-1.4401486, 48.9124279];;FRCPIE67266452;FRIONE408005;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.781515100000001;46.57850280671129;;;; +;;;;;;;;FRFR1PXQUMZ7QBK6;cb841a91-eb88-4e84-81a1-ecb403acfa28;ST VAAST LA HOUGUE;;A28 -AIRE DE LA DENTELLE D'ALENCON 61250 VALFRAMBERT;;[-1.2832819, 49.0258146];;FRCPIE67266451;FRIONE408004;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8056475;45.415499560107136;;;; +;;;;;;;;FRFR1PHRKGJ6QXDH;5601d978-d008-4809-9fd7-e93f2a47f189;TESSY SUR VIRE - Rue des Anciennes Halles;;A8 - AIRE DE BREGUIERES SUD 06250 MOUGINS;;[-1.624323, 49.63612];;FRCPIE67266352;FRIONE408003;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.4783344;48.87284863189276;;;; +;;;;;;;;FRFR1PMTUB5LCGWL;7d20c1f9-c4aa-4dc7-87ac-0f4cf0cafa97;TOURLAVILLE - Algues;;A10 AIRE FONTBELLEAU BAYONNE PARIS 33310 LORMONT;;[-1.0225093, 48.6764849];;FRCPIE67266351;FRIONE408002;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.020918899999999;43.446937038436744;;;; +;;;;;;;;FRFR1PGXQCI6D93G;be91f8ff-3c6a-45fb-b3a9-ab1e4f6a80c5;TOURLAVILLE - Général Leclerc;;QUAI D'ISSY LES MOULINEAUX 75015 PARIS 15;;[-1.629394, 49.636395];;FRCPIE67266252;FRIONE410104;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5652006;45.746076812151216;;;; +;;;;;;;;FRFR1PKJ5HXBD2S2;0103fcc1-2f21-4416-82f0-1abd3e740d7f;TOURLAVILLE - Mairie;;Route des Estuaires A10 - Aire De Poitou 79230 VOUILLE;;[-1.623855, 49.645317];;FRCPIE67266251;FRS08E57726;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.077468;43.52554183417336;;;; +;;;;;;;;FRFR1PZP2XBRNY7Q;f92e71a8-f1a5-4d35-8cc8-85e286e7cd3f;TOURLAVILLE - Moulin Guibert;;43-47 BOULEVARD DE VERDUN 92400 COURBEVOIE;;[-1.64284, 49.628488];;FRS37E1212;FRIONE410103;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3423507;44.10501405816338;;;; +;;;;;;;;FRFR1PUH6ISR4DAZ;3e0ea59a-149e-4549-9601-8d2d3a3376ef;VILLEDIEU LES POELES - Place de La Poste;;29 bis Boulevard Maréchal Foch 93330 NEUILLY SUR MARNE;;[-1.641399, 49.626574];;FRS37E1210;FRIONE410102;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.394;44.07691857938178;;;; +;;;;;;;;FRFR1PNKA62CFRIP;b202cf34-2f84-4171-bfff-253a1d2e8711;SOURDEVAL - Cote Eglise;;106 ROUTE D'ESPAGNE 31120 PORTET SUR GARONNE;;[-1.634003, 49.627575];;FRS37E1313;FRIONE410101;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.78494;48.01435;;;; +;;;;;;;;FRFR1PWQWWODAWMW;b2ae1699-0590-4eb1-8cc9-f4e0c977b308;ACQUEVILLE - carrefour des Pelles;;A46 - AIRE DE COMMUNAY NORD 69360 COMMUNAY;;[-1.621794, 49.637993];;FRS37E1312;FRCPIE66859352;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.93391388;43.84705599999999;;;; +;;;;;;;;FRFR1PNEI1A4E2LR;adfa58fa-fb71-4cab-bdb8-140b41ce32aa;AGNEAUX - Rue Antoine LAVOISIER;;A4 - AIRE DE FERRIERES 77600 BUSSY ST GEORGES;;[-1.5903001, 49.5635953];;FRIENE0089024;FRCPIE66859351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4546121;45.21972;;;; +;;;;;;;;FRFR1PODZG0S8OHF;81f11bdc-6410-436b-8def-0abd1f081ba1;AGNEAUX - Rue du Général de Gaulle;;A6 - AIRE DES LISSES Corbeil Essonnes 91100 VILLABE;;[-1.6391676, 49.4713781];;FRIENE0089023;FRSHEE781;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.18773817;43.3193683;;;; +;;;;;;;;FRFR1PHSGDN5TMKB;90028f89-0376-4d9c-811b-cdcfcbb2a22d;AGON-COUTAINVILLE - Avenue du Golf;;A62 33720 Saint-Michel-de-Rieufret;;[-1.6315858, 49.471884];;FRIENE0089012;FRS08E57727;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.02692661;43.58764679999999;;;; +;;;;;;;;FRFR1PM8SKCP6RWC;881bd651-f45d-469c-bc3b-b19978a31617;AVRANCHES - Gare;;BOULEVARD GUSTAVE ANDRE 26000 VALENCE;;[-1.5160379, 48.898219];;FRS37E1317;FRIONE432705;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.23832843;45.8960714;;;; +;;;;;;;;FRFR1PBUE8MYS7P9;1c748c8b-76c7-4136-8f8d-855ec69cf8ca;AVRANCHES - Place Carnot;;A106 AIRE RUNGIS DELTA PONDORLY Sens Paris - Orly 94150 RUNGIS;;[-1.1700677, 48.7248101];;FRS37E1318;FRIONE432703;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.33611093;43.3190604;;;; +;;;;;;;;FRFR1PBZGNBR;4e36e768-5f8c-4a1b-9289-fffbf9fae3f0;ST SAUVEUR LENDELIN - Mairie;;Aire de Lançon Est (Sens Marseille – Lyon) Autoroute A7 13680 LANCON DE PROVENCE;;[-1.7752953, 49.5357881];;FRCPIE66013951;FRS08E57697;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.3749664;49.0335246;;;; +;;;;;;;;FRFR1PJFFCKZAJSW;bb3d81f5-2984-40ef-864c-e97dc2878092;ST SAUVEUR LE VICOMTE - Place de la Mairie;;A7 AIRE DE SOLAIZE 69360 ST SYMPHORIEN D OZON;;[-1.7690024, 49.3682998];;FRS37E1323;FRIONE432702;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.33468576;48.2028718;;;; +;;;;;;;;FRFR1PTWSE1GJQYS;d5de5dc8-3eb6-4b4d-b5ff-766dadba305c;ST PIERRE EGLISE - Eglise;;A50 - Aire La Pomme BP 105 13011 MARSEILLE;;[-1.7554556, 49.3821883];;FRIONE412304;FRS08E57613;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.52703596;49.905174;;;; +;;;;;;;;FRFR1PVIY9LSWFOF;57098fad-2b57-440a-9c01-04dc2c353302;ST PAIR SUR MER - Parking de la Liberte;;170-180 BLD DE STALINGRAD 94200 IVRY SUR SEINE;;[-1.7906159, 49.372388];;FRIONE412303;FRS08E57612;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.42539138;49.8969455;;;; +;;;;;;;;FRFR1PWSZEY4Y1GS;bcf252a2-2c1a-4a66-9e5e-9bfa3fb1a0cc;ST LO - Ronchettes;;RN 80 ROND POINT JEANNE ROSE 71210 MONTCHANIN,;;[-1.3632336, 48.6867883];;FRIONE412302;FRS08E57609;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7847036;43.6328;;;; +;;;;;;;;FRFR1PN0JPXHXQ78;ccbd71c7-a443-42d2-bb7b-d9c3c253bfd4;ST LO - Mersier;;A71 AIRE DES VOLCANS D AUVERGNE 63260 SAINT AGOULIN;;[-1.61295, 49.638748];;FRIONE412301;FRS08E57608;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.289881;49.518518;;;; +;;;;;;;;FRFR1PZEAQE62RQJ;552ec407-68b9-469f-b566-8bd6035ed9eb;ST LO - Maison du Département;;BOULEVARD ROBERT SCHUMANN 59110 LA MADELEINE;;[-1.611977, 49.635956];;FRCPIE66021452;FRS08E57605;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.445075;43.81099781;;;; +;;;;;;;;FRFR1PLLIX5ZKSM1M3T2;7b298eb5-9b0c-4a7d-800d-d07a5d90f5e6;ST LO - Gare;;A40 AIRE DE BOURG JASSERON 01250 CEYZERIAT;;[-1.0375894, 49.0517922];;FRCPIE66021451;FRS08E57604;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.445074;46.62349487;;;; +;;;;;;;;FRFR1PRUIVJ6JIHW;f5750116-3eb5-4fb2-8cd7-9a9b91010e62;ST LO - Dollee;;60 Rue des Marguerites 26300 ALIXAN;;[-1.3505134, 48.9096407];;FRS37E1324;FRS08E57600;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.445073;44.75268759;;;; +;;;;;;;;FRFR1PMLRMIEOLWC;fc2b7892-b112-45e5-aa08-022829efb409;ST LO - Cité administrative;;A75 - AIRE DE L' AVEYRON 12150 SEVERAC LE CHATEAU;;[-1.5673533, 48.7743602];;FRCPIE66017752;FRS08E57599;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.445072;45.1910994;;;; +;;;;;;;;FRFR1PI4EZXFLS0M;19d293a0-0b1a-49ec-8a45-0678e2c19af4;ST LO - Champs de Mars;;8 AIRE D'ERBREE -RN 157 35500 ERBREE;;[-1.1743921, 48.6204334];;FRCPIE66013952;FRCPIE65133352;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.445071;44.73029836;;;; +;;;;;;;;FRFR1PWPC00KCZXZ;a33024cd-5b86-4b7d-9d40-0d80630cccf6;ST JEAN DE DAYE - Place de la 30e Division d'Infanterie US;;A11 - AIRE DE VARADES PAYS ANCENIS VARADES 44370;;[-1.1796253, 48.5960906];;FRCPIE66017751;FRCPIE65133351;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.406844;44.42680651;;;; +;;;;;;;;FRFR1PAFRSGAL53C;b6777fc5-069b-4501-8219-863e4c608b73;ST JAMES - Place du Vieux Presbytere;;A20 - AIRE DE LA PORTE DE CORREZE 19510 MASSERET;;[-1.175209, 49.133094];;FRS37E1322;FRS08E57593;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.116399;41.6820949;;;; +;;;;;;;;FRFR1PRMYYKKNR3R;1355111d-5b55-49f7-b569-5889d6ad6bcb;ST HILAIRE DU HARCOUET - Eglise;;63 Boulevard Richard Lenoir 75011 Paris;;[-1.5568028, 48.9774889];;FRS37E1321;FRS08E57592;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.14350611;44.41770558;;;; +;;;;;;;;FRFR1PONVUHSIC32;abc031c5-c64a-4f7e-8cc7-a4c656095c5b;ST GEORGES D'ELLE;;2 Rue du Commandant Lamy 75011 Paris;;[-1.2642285, 48.9483719];;FRS37E1320;FRS55E81273;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.353438;46.41313532;;;; +;;;;;;;;FRFR1PCJMEQHEFAA;2bfd98ec-42fa-4df8-bdb2-72fed2a6d34e;ST COME DU MONT - Maison du Parc des Marais;;8 Boulevard Voltaire 75011 Paris;;[-0.954338, 48.983317];;FRS37E1319;FRS55E81272;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.21423544;43.65237411;;;; +;;;;;;;;FRFR1PTCIFDITPA3;b1cef114-1c75-43cf-9fbc-dff78b180795;ST CLAIR SUR L'ELLE - Place de la Mairie;;126 Avenue Philippe Auguste 75011 Paris;;[-0.949023, 48.988129];;FRS55E66320;FRS55E81268;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.20262039;45.80245775;;;; +;;;;;;;;FRFR1PTAUVNWVOHL;caacb69b-d250-4a6d-86a3-ab98c744d9a1;LA GLACERIE - Martin Luther King;;36 Boulevard Richard Lenoir 75011 Paris;;[-1.5683501, 48.8327924];;FRS55E66319;FRS55E81267;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.17166083;44.792649;;;; +;;;;;;;;FRFR1PAKLPHK;609980fa-e716-4abc-ab51-7a63f47bc2ee;LA GLACERIE - Mairie déléguée;;2 Avenue de Taillebourg 75011 Paris;;[-1.5955279, 48.8359208];;FRS37E1302;FRS08E57698;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.00205723;41.995246;;;; +;;;;;;;;FRFR1PMP5DRUW85N;53a75289-2870-423c-ac4f-df14dbbbcaa7;LA COLOMBE - Hotel Massu;;36 Rue Saint-Maur 75011 Paris;;[-1.5965401, 48.8375254];;FRIONE101306;FRS08E57615;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2400218;46.187012;;;; +;;;;;;;;FRFR1PLLIA7NV5H5IHN2;72900b6e-f8f0-4678-b2c2-6e08813108e9;CHERBOURG OCTEVILLE - Cité de la Mer;;11 Rue François de Neufchateau 75011 Paris;;[-1.5877092, 48.8381083];;FRCPIE65896952;FRS08E57616;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.02004486;45.022197;;;; +;;;;;;;;FRFR1PVXKSVK;36523750-f5a3-41d4-9b18-03808fda8c74;CANISY - Rue Jean Follain;;27 Rue Faidherbe 75011 Paris;;[-1.6079197, 49.0993255];;FRSHEE921;FRS08E57623;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.1202879;43.14288259;;;; +;;;;;;;;FRFR1PHTQSBOQOG8;0a90b56a-3e1d-4a3f-831c-6353d15216ba;CARENTAN - bd des Fortifications;;107 Quai de Valmy 75010 Paris;;[-1.5794053, 49.0965681];;FRCPIE65916852;FRS08E57637;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.35685396;44.409231;;;; +;;;;;;;;FRFR1PBZR3NP5DYR;307833fb-70cf-42db-9451-757a717f3c00;CARENTAN - la Gare;;155 Avenue Ledru Rollin 75011 Paris;;[-1.4147694, 48.8358569];;FRCPIE65916851;FRCPIE65186152;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.14394557;44.89537348;;;; +;;;;;;;;FRFR1PQP2QGHOLTL;fa741161-be34-4647-9504-3856b861d9fd;CARQUEBUT - Les Forges;;64 Rue du Faubourg Poissonnière 75010 Paris;;[-1.0025626, 49.0483967];;FRCPIE65916752;FRCPIE65186151;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.377925;44.90092439;;;; +;;;;;;;;FRFR1PPURIAGXR0E;832ce3eb-7f28-4464-9a0f-2c475e495dec;CERENCES - ZA Intermarche;;91 Rue du Faubourg Saint-Denis 75010 Paris;;[-1.2504703, 48.841466];;FRCPIE65916751;FRS08E57688;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.630963;44.43103518;;;; +;;;;;;;;FRFR1PERYMURP2DU;cbe249c5-c3d7-486c-845a-d71f4da570fc;CERISY LA SALLE - Rue des Ecoles;;162 Rue de la Roquette 75011 Paris;;[-1.8579488, 49.5512758];;FRIONE43155;FRS08E57687;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.368877;45.57975404;;;; +;;;;;;;;FRFR1PQIGUDGQUCV;f658a7b8-b650-48cb-b5f6-d0df6e9cdca3;CHERBOURG OCTEVILLE - François 1er;;15 Rue Rocroy 75010 Paris;;[-1.654263, 49.647892];;FRIONE431504;FRCPIE65171552;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.068559;44.45923178;;;; +;;;;;;;;FRFR1PC2AJENOGKE;aca2ec4c-fd6e-4ded-aace-52a1ca9d252a;JUVIGNY LE TERTRE - rue de St Hilaire;;50 Avenue du Docteur Arnold Netter 75012 Paris;;[-1.66402, 49.642007];;FRIONE431503;FRCPIE65171551;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.94637;42.77530709;;;; +;;;;;;;;FRFR1PASJPOGWDW9;6d3fcb21-d301-4fdd-ad7e-43400fe49982;CHERBOURG OCTEVILLE - Notre Dame du Vœu;;2 Rue du Charolais 75012 Paris;;[-1.675774, 49.654087];;FRIONE431502;FRS08E57638;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.972579;46.81010295;;;; +;;;;;;;;FRFR1PPDIWE44BBM;87513969-02bc-4cb6-8a8d-1e228ff293c7;CHERBOURG OCTEVILLE - Place Chantereyne;;105 avenue de la République 75011 Paris;;[-1.651226, 49.654982];;FRIONE431501;FRS08E57634;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.400349;43.9543369;;;; +;;;;;;;;FRFR1POF2V5RUQC2;f330dd0d-d2ce-4f64-97a8-569f542758de;CHERBOURG OCTEVILLE - Place Rossel;;251 Rue de Charenton 75012 Paris;;[-1.2911409, 48.6198576];;FRS37E1282;FRS08E57624;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8455834166546037;45.36995522;;;; +;;;;;;;;FRFR1PJTRLOAXURL;e839a051-ddd1-4be5-a870-9d5332878c90;CHERBOURG OCTEVILLE - René Cassin;;73 Boulevard Diderot 75012 Paris;;[-1.5804867, 48.8468776];;FRS37E1281;FRS08E57633;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8445087136534122;46.17418428;;;; +;;;;;;;;FRFR1PVHBVTE;ae1d3396-7568-4638-89e9-c4c0ea16fbd7;CHERBOURG OCTEVILLE - Rue de l'Ile de France;;94 Avenue de Saint-Mandé 75012 Paris;;[-1.5640155, 49.200886];;FRS37E1255;FRS08E57630;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.971536;48.41844;;;; +;;;;;;;;FRFR1PECHCTB;f72436b4-53d0-40c0-9ce4-f8d7e5676592;CHERBOURG OCTEVILLE - Rue des Tribunaux;;20 Boulevard de la Bastille 75012 Paris;;[-1.6723914, 49.5574624];;FRS37E1254;FRS08E57629;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4587;49.18286;;;; +;;;;;;;;FRFR1PFE7WITDLPX;3e0e2208-f617-46b3-9deb-6e46a0562283;BRIX;;110 Boulevard Richard Lenoir 75011 Paris;;[-1.4536927, 49.0515211];;FRSHEE932;FRS08E57628;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.740974;44.550005;;;; +;;;;;;;;FRS82PVUYNGD;fe7a16e5-398b-48e3-b101-194abc9e8217;BRICQUEBEC - Gare Routiere;;65 Avenue Philippe Auguste 75011 Paris;;[-1.4412921, 49.0486743];;FRSHEE931;FRS08E57627;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.348885488640659;48.202269;;;; +;;;;;;;;FRS82PVNJXRX;0fb69050-c96f-4dac-9305-f159ab58d22c;BRICQUEBEC - Cinema;;5 Avenue de la République 75011 Paris;;[-1.4666847, 49.054234];;FRSHEE924;FRS08E57626;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.814621642327829;43.611481;;;; +;;;;;;;;FRS82PPWCMEH;6e542516-266d-42ae-8d2d-4c8a422812bb;BREHAL - rue de la Plage;;125 Bis Avenue Parmentier 75011 Paris;;[-1.4400962, 49.0438633];;FRSHEE923;FRS08E57625;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2123569556846805;43.549642;;;; +;;;;;;;;FRS10PHFIJQKRTJJ;a9ebe6b1-f066-42bf-b055-2d069d1686ae;BRECEY - La Poste;;104 Avenue Ledru Rollin 75011 Paris;;[-1.3130607, 49.4095477];;FRS18E170418;FRCPIE65578052;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4961249380287276;50.666256180641085;;;; +;;;;;;;;FRS10PDVULJFPHTV;92fe8f97-f0d3-4600-ae39-30d031b162ed;BENOITVILLE - Croix Georges;;1 Rue Roubo 75011 Paris;;[-1.4999864, 48.5542101];;FRS18E170419;FRCPIE65578151;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2001838828882567;50.66617982049264;;;; +;;;;;;;;FRS10PMPLFZRRCH2;7a0fa23a-1e53-4d82-835e-9cb4c415b854;BARNEVILLE CARTERET - Plage;;2 Avenue Matignon 75008 Paris;;[-0.765945, 48.603128];;FRS37E1283;FRCPIE65578251;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.430500000000005;48.626299;;;; +;;;;;;;;FRS10PSGAGDZM0DN;1d26f354-cc73-4e46-b142-66ebb0ef11cd;BARNEVILLE CARTERET - Mairie;;5 Rue de la Chaussée d'Antin 75009 Paris;;[-0.97762, 49.034503];;FRCPIE65934252;FRFASE3302601;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.86;43.53783;;;; +;;;;;;;;FRS10PF6SJHLNDHA;07dc7cad-41cb-4af5-a02f-472689ec21d9;BARNEVILLE CARTERET - Gare Maritime;;13 Rue du conservatoire 75009 Paris;;[-1.600058, 48.837858];;FRCPIE65939351;FRFASE3309606;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.741838;49.516179;;;; +;;;;;;;;FRS10PFYOCOK9B3F;b889876b-b802-4b30-86f0-8a039833f95b;AVRANCHES - Place Valhubert;;35 Rue Victor Massé 75009 Paris;;[-1.844165, 49.56517];;FRCPIE66494552;FRFASE3309605;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.451591;48.38603775039389;;;; +;;;;;;;;FRS10PVLN2PSDDZH;69c04b2c-44ed-47fb-9759-fe3d8c06fef1;CHERBOURG OCTEVILLE - St Clément;;28 Rue d'Aumale 75009 Paris;;[-0.97429, 49.094013];;FRCPIE66494551;FRFASE3309604;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.730036;46.08831777039237;;;; +;;;;;;;;FRS10PNWRWARYFKP;233b10e1-981d-4810-be48-3590cfad5412;CHERBOURG OCTEVILLE - Trottebecq;;8 boulevard de la Madeleine 75009 Paris;;[-1.596063, 49.166556];;FRCPIE65935452;FRFASE3309603;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.115675;50.56848859815003;;;; +;;;;;;;;FRS10PLX4TJ9LIGD;44033ed4-e1cf-4137-ab95-223a836fddac;CONDE SUR VIRE - Le Bourg - Place de la mairie;;31 boulevard Rochechouart 75009 Paris;;[9.2785984, 41.5930127];;FRCPIE65935451;FRFASE3309602;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.77321;48.678652435121194;;;; +;;;;;;;;FRS10PAW2Y62ZANM;1bac8abd-42cd-4df5-9c4e-966bd9f70657;GAVRAY - Eglise;;56 Rue la Fayette 75009 Paris;;[55.3159294128418, -20.949535369873047];;FRCPIE65934952;FRFASE3309601;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.741545;46.01405490199754;;;; +;;;;;;;;FRS10PP0XP87AAJ7;4f60a739-4046-41a2-a48f-495ffad74fcb;JULLOUVILLE - Syndicat d'Initiative;;21 Rue de Chateaudun 75009 Paris;;[4.47906106710434, 44.22049963493783];;FRCPIE65934951;FRCPIE67696852;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.145726;43.57690340000002;;;; +;;;;;;;;FRS10PLOQVFXXZ4U;00effb79-072c-45b1-97c5-96657f7983c0;ISIGNY LE BUAT - Salle Omnisports;;43 Rue de Monceau 75008 Paris;;[2.9736927577629495, 44.33852129529498];;FRCPIE65934251;FRCPIE67696851;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.75;46.42;;;; +;;;;;;;;FRS10PJJGA8L3JV7;bf0dfde2-f504-41dc-81bf-f62a8501bc34;ISIGNY LE BUAT - Carrefour des Biards;;40 Rue de Courcelles 75008 Paris;;[8.7970384, 41.85874031254947];;FRS37E1284;FRIONE40895;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8076714;44.527159;;;; +;;;;;;;;FRS10PQ60WEBZNBK;0790a741-5825-4ddb-bae6-d6740ba4547e;HEBECREVON;;7 boulevard Malesherbes 75008 Paris;;[0.3790712356567383, 43.000159063034566];;FRIONE45385;FRIONE408904;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8372308;48.97995;;;; +;;;;;;;;FRS10PP4F3QRFJ1V;d6dd38d0-a7e5-47ae-a01a-2ee7ddc0de61;HAUTEVILLE SUR MER - Place des Robans;;19 Rue Tronchet 75008 Paris;;[6.017630100250244, 44.10531997680664];;FRIONE453806;FRIONE408903;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8071364;48.101993;;;; +;;;;;;;;FRS10PNLRCCHATCF;e0caaa09-9a5c-4712-a55f-e60f66a1fd3b;HAMBYE - Place de la Mairie;;1 Rue Jules Lefèbvre 75009 Paris;;[4.992544651031494, 44.077613830566406];;FRIONE453805;FRIONE408902;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.19743601177825;49.39352;;;; +;;;;;;;;FRS10PM1F8WRHMWF;a703da54-fda0-4b54-88e4-7b727a4bc12c;GUILBERVILLE - Aire de covoiturage Le Saussey;;2 Rue du Buisson Saint Louis 75010 Paris;;[6.720282077789307, 43.43741989135742];;FRIONE453804;FRIONE408901;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.166771;45.672402;;;; +;;;;;;;;FRS10PVPNHU2ZDUT;2558af0a-b77d-4ca9-a9a8-9e1a6531518d;GUILBERVILLE;;24 Rue du Château Landon 75010 Paris;;[6.278209770098333, 43.52534026251893];;FRIONE453803;FRS37E1294;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.100756;44.526897;;;; +;;;;;;;;FRS10POFTFKLBGGV;b330af16-a9fa-4a3d-b184-904c8fdc1836;GRANVILLE - St Nicolas Agora;;11 Avenue Richerand 75010 Paris;;[1.683051586151123, 48.59249496459961];;FRIONE453802;FRS37E1293;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.688881;49.486737;;;; +;;;;;;;;FRS10PYGET3T8P8P;7f8b451f-bff6-46be-a946-0b3941894f5e;GRANVILLE - Place Bedeau;;31 Rue Beaurepaire 75010 Paris;;[4.926622543415475, 45.745946211701884];;FRIONE453801;FRFASE3302604;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.4431105;48.41;;;; +;;;;;;;;FRS10PUCV3A9QN03;624ad20f-693e-41a5-91dd-d30239ffddf7;GRANVILLE - Mairie;;6 Rue de Metz 75010 Paris;;[6.632329940795898, 43.463932037353516];;FRSHEE922;FRFASE3302603;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.394606;45.7981775;;;; +;;;;;;;;FRS10PTNUS0N5LCV;0ca6e4b9-08cf-401a-b72a-ed8886381958;GRANVILLE - la Gare;;55 boulevard de la Villette 75010 Paris;;[-1.130048315345508, 44.46056813187505];;FRCPIE66441952;FRFASE3309607;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.59;46.3085443;;;; +;;;;;;;;FRS10PICAF2FYXD8;fb1b24c2-1623-4007-8986-98e98e43deca;GOUVILLE SUR MER - Plage;;28 Rue de Paradis 75010 Paris;;[8.746361669308984, 41.94325812908591];;FRCPIE65939451;FRFASE3309608;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.24189;45.7999825;;;; +;;;;;;;;FRS10PFT7GQAID6I;e3cdf95e-31f4-4088-a0ec-0014477b4c97;GOUVILLE SUR MER - Crédit Mutuel;;12 Rue Milton 75009 Paris;;[-0.115732, 49.2805603];;FRCPIE66441951;FRCPIE66321651;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.095828;44.993004231809124;;;; +;;;;;;;;FRS10PF3LFNNOE3M;4479a8a7-4764-489f-ad01-629f2a2b6a9a;FOLLIGNY - Le Repas;;2 Rue Paul Escudier 75009 Paris;;[6.833339258860764, 48.119479307086486];;FRCPIE65900151;FRS18E140281;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.163069;50.693723;;;; +;;;;;;;;FRS10PRIG9LCTQGX;1b3689d8-f9f9-11ed-be56-0242ac120002;CONDE SUR VIRE - Le Sault;;6 boulevard Haussmann 75009 Paris;;[3.0321381, 42.5615661];;FRCPIE65899352;FRS08E57620;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.172916;49.113056;;;; +;;;;;;;;FRS10PUATAXSIP73;bc840a90-12c1-4963-b396-75837d9ed5cf;FLEURY - la Maison Neuve;;1 Rue Pierre Chausson 75010 Paris;;[6.184235618402654, 48.69547087754244];;FRCPIE65899351;FRS08E57619;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.237465;49.140776;;;; +;;;;;;;;FRS10PJ2HGHKHSLJ;333a06ae-f6b3-458e-8e5a-5c63c8152bf5;FLAMANVILLE - Dielette;;2 Rue Sibour 75010 Paris;;[6.076252915345508, 43.7342593961128];;FRCPIE65898452;FRS08E57596;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.724781;48.919138;;;; +;;;;;;;;FRS10PR2QWWUUNL1;1a8d48c6-e9ed-4c97-890d-b19511959332;EQUEURDREVILLE HAINNEVILLE - Résistants;;97 Boulevard de Port-Royal 75014 Paris;;[1.615694, 42.9937786];;FRCPIE65898451;FRS08E57595;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.093535;43.56689;;;; +;;;;;;;;FRS10PS5GFRFHWSW;b7a67a33-5aa0-4aa1-ac7d-2cbfa3650cda;EQUEURDREVILLE HAINNEVILLE - Louise Michel;;56 Rue des Plantes 75014 Paris;;[2.4648423, 48.95141080000001];;FRCPIE65897752;FRCPIE65517152;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.038331;48.15;;;; +;;;;;;;;FRS10PNZLM3MS4GS;dacc7284-24fa-457a-a239-b5df87276e33;EQUEURDREVILLE HAINNEVILLE - Jean Moulin;;58 Avenue D'Ivry 75013 Paris;;[5.844548, 48.198965];;FRCPIE65897751;FRCPIE65517151;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.102055;49.61;;;; +;;;;;;;;FRS10PNCLUISOFLF;12ad3b82-577a-46c6-993b-50fc0caefdb9;EQUEURDREVILLE HAINNEVILLE - Jean Bart;;32 Rue Broussais 75014 Paris;;[2.5627677, 48.6203594];;FRCPIE65897552;FRS18E140282;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.102472;48.033895;;;; +;;;;;;;;FRS10PBCIKXNCWR9;95bb75f0-fedc-11ed-be56-0242ac120002;DUCEY - Place des Plats d'Etain;;10 Rue Castagnou 75014 Paris;;[0.9588304576710754, 43.10066375282533];;FRCPIE65897551;FRS08E57540;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.894763;47.972872;;;; +;;;;;;;;FRS10PFZQRL62BMY;166279;DONVILLE LES BAINS - Mairie;;1 Rue Boulard 75014 Paris;;[1.960545459507173, 43.30223171200826];;FRS37E1273;FRCPIE66321652;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.901209;47.949564;;;; +;;;;;;;;FRS10PWX2E9X4IMC;166278;CREANCES - Rue des Ecoles;;23 Rue du Départ 75014 Paris;;[6.442518, 45.462032];;FRS37E1272;FRS08E57539;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.035473;47.977284;;;; +;;;;;;;;FRS10PFIFWQ1FUV1;dd10fb7b-a5e0-4867-8e10-27d8b1196fc3;COUVILLE - la Vallée;;41 Rue de Tolbiac 75013 Paris;;[5.7693176, 45.0873099];;FRCPIE66314952;FRS88E163282;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.040881;48.018384;;;; +;;;;;;;;FRS10PE3LX6DF0I4;B082;COUTANCES - Stade;;245 Rue de Tolbiac 75013 Paris;;[6.7717784, 47.3873487];;FRCPIE66314951;FRS88E163280;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.196098;48.108326;;;; +;;;;;;;;FRS10PFHNPHFUR1P;B086;COUTANCES - Place de la Croute;;143 boulevard Vincent Auriol 75013 Paris;;[2.581885286584799, 48.9020454543009];;FRCPIE65897452;FRCPIE66107652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.035047;49.430228;;;; +;;;;;;;;FRS10PLRX5I5HMT3;B085;COUTANCES - la Paletière;;157 Rue Jeanne D'Arc 75013 Paris;;[-1.219229, 48.11093710000001];;FRCPIE65897451;FRCPIE66107651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.093459;50.372075;;;; +;;;;;;;;FRS10PGTF6ZJQHLQ;B084;COUTANCES - Gare;;10 Rue du Docteur Leray 75013 Paris;;[3.130455146024364, 48.92768371647863];;FRCPIE65897352;FRCPIE65509652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.030860517090839;50.399946;;;; +;;;;;;;;FRS10PT9MXJNYNEM;B083;STE MERE EGLISE - Le Bourg;;41 Rue Didot 75014 Paris;;[3.1331726, 48.92402509999999];;FRCPIE65897351;FRCPIE65509651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.03235;50.396286;;;; +;;;;;;;;FRS10PWZXY6YXQKL;B078;SAINT GEORGES DE ROUELLEY - Soleil Levant;;1 Rue du Colonel Pierre Avia 75015 Paris;;[3.1229985, 48.9267881];;FRCPIE65900152;FRFASE3302602;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.175758;50.423336;;;; +;;;;;;;;FRS10PMN2IP3OV9A;B079;TORIGNY LES VILLES - ORANGERIE;;56 Rue Lacordaire 75015 Paris;;[0.33806628395921656, 46.57850280671129];;FRCPIE65900251;FRCPIE67703952;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.968528;50.424837;;;; +;;;;;;;;FRS10PTYTYI3MTEH;B080;GRANVILLE - Place Corsaires;;26 Boulevard Jourdan 75014 Paris;;[4.405862426409584, 45.415499560107136];;FRCPIE65900252;FRSHEE1782;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6139677517069222;50.381443;;;; +;;;;;;;;FRS10PCI80EV2QJJ;B081;SIOUVILLE HAGUE - Bd André Michel;;8 Avenue de la Porte de Montrouge 75014 Paris;;[2.316255993913532, 48.87284863189276];;FRCPIE65952552;FRCPIE67703951;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.7212472222222224;50.375851;;;; +;;;;;;;;FRS10PDZTTFA557P;B077;SAINT JEAN D'ELLE - Salle des Fêtes;;21 Rue Miollis 75015 Paris;;[6.729168891906738, 43.446937038436744];;FRCPIE65911651;FRS18E148715;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.7316805;43.266711;;;; +;;;;;;;;FRS52PUHYAW6LFGQ;B087;PIROU - Huguet de Semonville;;19 Rue Leblanc 75015 Paris;;[4.925962686538696, 45.746076812151216];;FRCPIE65911451;FRS18E148714;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.489767;50.378089;;;; +;;;;;;;;FRS52PJMO7A9PAVP;B015;HOTEL LE TILBURY;;2 Boulevard Edgar Quinet 75014 Paris;;[6.277399063110352, 43.52554183417336];;FRCPIE65911351;FRIONE40435;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.115386;49.45384;;;; +;;;;;;;;FRS52PMIVDIW60ET;B020;EASYPLUG SEMIR LE PORT;;66 Rue Henri Barbusse 75014 Paris;;[6.017138957977295, 44.10501405816338];;FRCPIE65911251;FRIONE404304;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.040212;50.37340163915224;;;; +;;;;;;;;FRS52PUX0C74ZEDL;B019;CAMPING LES AMARINES;;34 Avenue Jean Moulin 75014 Paris;;[4.994230270385742, 44.07691857938178];;FRCPIE65911151;FRIONE404303;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.10449;50.364271;;;; +;;;;;;;;FRS10PEGU6AL9UI6;B018;CAMPING LE PLO;;145 Rue Raymond Losserand 75014 Paris;;[3.330907, 48.01435];;FRCPIE65911051;FRIONE404302;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5753830764544885;48.766458;;;; +;;;;;;;;FRS10PWCGDKEJF4J;B017;KALLISTE RIVE SUD;;26 Rue Claude Decaen 75012 Paris;;[4.780463, 43.84705599999999];;FRCPIE65910951;FRIONE404301;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.614797784474848;48.635862;;;; +;;;;;;;;FRS10PP5KHA01Q5Y;B016;CAMPING LA BOURIE;;122 ter Rue de Picpus 75012 Paris;;[0.863237, 45.21972];;FRCPIE65952551;FRCPIE65437952;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.94251;50.45591099689726;;;; +;;;;;;;;FRS10POKPUUNPHL4;B014;CAMPING Sunêlia l-Hippocampe;;7 Rue de Pommard 75012 Paris;;[-0.7711457, 43.3193683];;FRS37E166911;FRCPIE65437951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5295840174515463;48.1790417;;;; +;;;;;;;;FRS10PCXZBMR0ZO1;B009;STATION LUMIIN;;7 boulevard de Picpus 75012 Paris;;[6.781515100000001, 43.58764679999999];;FRS37E1278;FRCPIE65437852;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5286632377885447;47.9749816;;;; +;;;;;;;;FRS10PAIFFRKY5XV;B013;Camping Fréjus 5 étoiles - Le Domaine du Colombier;;5 boulevard de Bercy 75012 Paris;;[6.8056475, 45.8960714];;FRS37E1277;FRCPIE65437851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.526362317964585;48.584177;;;; +;;;;;;;;FRS10PO8L0SVN1YZ;B012;CHATEAU MENTONE;;77 Rue Nationale 75013 Paris;;[5.4783344, 43.3190604];;FRCPIE65901952;FRCPIE65435752;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.403842;49.433287;;;; +;;;;;;;;FRS10PIGEEE64TSJ;B011;SUN DEVELOPPEMENT;;2 Rue Marie-Andrée Lagroua Weil-Halle 75013 Paris;;[2.020918899999999, 49.0335246];;FRCPIE65901951;FRCPIE65435751;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4245679;48.909046;;;; +;;;;;;;;FRS10PRYCA2CSWBP;B010;STATION CIEL;;1 Avenue Émile Laurent 75012 Paris;;[6.5652006, 48.2028718];;FRS37E1276;FRIONE44015;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.407719;49.438526;;;; +;;;;;;;;FRS10PMWJ3AW8XB5;B114;HOTEL FORMULE 1;;3 Rue Henard 75012 Paris;;[1.077468, 49.905174];;FRS37E1275;FRIONE440124;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.431342;48.65993572270077;;;; +;;;;;;;;FRS10PJX3WYHQ0GZ;B107;LA RIVE CIELA VILLAGE;;2 Rue Fabre d'Églantine 75012 Paris;;[2.3423507, 49.8969455];;FRS37E166912;FRIONE440123;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4077141243933076;50.45384387673885;;;; +;;;;;;;;FRS10PO67PC5Z8LO;B102;CARREFOUR AJACCIO;;44 Rue des Pirogues de Bercy 75012 Paris;;[1.394, 43.6328];;FRCPIE65939352;FRCPIE67703451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4300481888403183;48.284472;;;; +;;;;;;;;FRS10PL3BRA1Y7LX;B103;AGAPHONE;;120 cours de Vincennes 75012 Paris;;[5.78494, 49.518518];;FRCPIE65939452;FRCPIE67703852;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5586172119781576;48.678489499960584;;;; +;;;;;;;;FRS10PX98XY5WWHQ;B104;CAMPING AUBERGE LA STENIOLE;;131 Rue de Chevaleret 75013 Paris;;[3.93391388, 43.81099781];;FRIONE101305;FRCPIE67703851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.6623570502624494;48.678389833990664;;;; +;;;;;;;;FRS10PPZWWQPXHOM;B105;CAMPING LES MARSOUINS;;21 Rue Fernand Braudel 75013 Paris;;[-1.4546121, 46.62349487];;FRCPIE65969251;FRCPIE67703752;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.581321738638749;48.69077906864795;;;; +;;;;;;;;FRS10PD2FWMEF7HF;B106;L'HOTEL PARTICULIER NANCY;;24 Rue des Frigos 75013 Paris;;[1.18773817, 44.75268759];;FRS37E1299;FRCPIE67703751;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.312264;48.6814842;;;; +;;;;;;;;FRS10PJBVMTPZMH6;B108;LA FARIGOULETTE CIEL A VILLAGE;;1 Rue Croulebarbe 75013 Paris;;[0.02692661, 45.1910994];;FRCPIE65995652;FRCPIE67703552;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.12882767066976641;48.6848221;;;; +;;;;;;;;FRS10PYQJEVUUE5V;B088;HOTEL ORIGINALS ACCESS;;12 Rue Gouthière 75013 Paris;;[1.23832843, 44.73029836];;FRCPIE65995651;FRCPIE67703551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.56593753620647;48.673546;;;; +;;;;;;;;FRS10PTAI6K956YE;B109;MINOTTI-TRANS;;24 Rue Vulpian 75013 Paris;;[4.33611093, 44.42680651];;FRCPIE65995352;FRCPIE67703452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.566489583236157;48.681508;;;; +;;;;;;;;FRS10PHAKGNH2QU1;B110;CAMPING PORTE DES VOSGES;;8 Avenue de Choisy 75013 Paris;;[9.3749664, 41.6820949];;FRCPIE65995351;FRCPIE67703252;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.627516720238731;48.68517050782172;;;; +;;;;;;;;FRS10PFHE4S0TLNK;B111;ARC EN CIEL SUBLIMATION;;188 Avenue de Choisy 75013 Paris;;[4.33468576, 44.41770558];;FRCPIE65995152;FRIONE402551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.568798248488855;48.682044800657714;;;; +;;;;;;;;FRS10PM8VPGPD5FN;B112;LOY'S HOTEL;;2 Rue de Rungis 75013 Paris;;[-1.52703596, 46.41313532];;FRCPIE65995151;FRCPIE67703251;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2628;48.66622067379457;;;; +;;;;;;;;FRS10PLLKGXP4CHU0PTM;B113;SARL CASTEL CONTROLE;;52 Boulevard Arago 75013 Paris;;[1.42539138, 43.65237411];;FRCPIE65994752;FRIENE0087024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2595;48.614318800000014;;;; +;;;;;;;;FRS10PSOLRFLNSDQ;B101;L'OXYGENE;;12 Rue Darmesteter 75013 Paris;;[4.7847036, 45.80245775];;FRCPIE65994751;FRIENE0087023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2806;50.46090694111128;;;; +;;;;;;;;FRS10PH6MGEHRH8L;B100;SARL LE BOIS DE CORNAGE;;16 Rue Bobillot 75013 Paris;;[0.289881, 44.792649];;FRCPIE65994552;FRIENE0087012;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.274;48.0449181;;;; +;;;;;;;;FRS10PATGU49BCSH;B089;CAFE LA PROMENADE;;12 Boulevard Emile Augier 75016 Paris;;[9.445075, 41.995246];;FRCPIE65994551;FRIENE0087011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.286851;49.487331285074724;;;; +;;;;;;;;FRS10PAIKEDRMXBL;B090;SCIC SEMPIN;;62 Jean-Jacques Rousseau 75001 Paris;;[9.445074, 41.995246];;FRCPIE65992752;FRIONE402553;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2843;48.65956307159419;;;; +;;;;;;;;FRS10PCIGMXJMDAM;B091;SARL 3M;;14 Rue Bertin Poirée 75001 Paris;;[9.445073, 41.995246];;FRCPIE65992751;FRIONE402552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2636;48.64892309996577;;;; +;;;;;;;;FRS10PM90FZ6RVEV;B092;MAIRIE - 77640;;12 Rue des Pyramides 75001 Paris;;[9.445072, 41.995246];;FRCPIE65990952;FRSHEE1781;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2754;48.53187547443857;;;; +;;;;;;;;FRS10PT9T4YNRQ8T;B093;HOTEL DE L'EUROPE;;4 Rue des Croix des Petits Champs 75001 Paris;;[9.445071, 41.995246];;FRCPIE65990951;FRSHEE1783;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2996;48.66428455199971;;;; +;;;;;;;;FRS10PKAI86XVIQL;B094;SQUASH CLUB SAINT-ETIENNE;;3 Saint Roch 75001 Paris;;[-1.406844, 46.187012];;FRS37E1381;FRCPIE65578451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2786938;48.863;;;; +;;;;;;;;FRS10PNHQEEP3OJC;B095;CHATEAU DU FEY;;4 Rue de Lobau 75004 Paris;;[1.116399, 45.022197];;FRS37E1298;FRE10E7681;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2739245;48.8433;;;; +;;;;;;;;FRS10PSMUUIBGAX6;B096;HOTEL DU MOULIN DAURE;;1-3 Av. du Général Sarrail 75016 Paris;;[3.14350611, 43.14288259];;FRS37E1352;FRIENE0045011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2616981;48.864;;;; +;;;;;;;;FRS10PERKIMUKWMI;B097;CODERC CAMPING;;25 Rue Henri Barbusse 75005 Paris;;[4.353438, 44.409231];;FRCPIE65993151;FRCPIE65619652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.295196;48.8603;;;; +;;;;;;;;FRS10PDPY7WNXRYD;B098;SCI CHEVY;;24 Rue de la Paix 75002 Paris;;[1.21423544, 44.89537348];;FRCPIE65993152;FRCPIE65619651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2698931;48.870343;;;; +;;;;;;;;FRS10PRCTBEA2JQY;B099;CJC RECORDING;;36 Rue Etienne Marcel 75002 Paris;;[1.20262039, 44.90092439];;FRCPIE65869152;FRE10E7689;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2685;48.8735;;;; +;;;;;;;;FRS10PZ8YVZWSQIE;B021;HOTEL ST ANTOINE;;1 Rue d'Uzès 75002 Paris;;[-1.17166083, 44.43103518];;FRIONE101303;FRE10E7688;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2927;48.8478;;;; +;;;;;;;;FRS10PZKK7RLCGHF;B057;MC HOTELLERIE;;43 Rue Vivienne 75002 Paris;;[3.00205723, 45.57975404];;FRIONE101302;FRIONE41005;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2745266;48.8646;;;; +;;;;;;;;FRS10PC16DS3V7VF;B063;INTERMARCHÉ VAURÉAL;;17 Avenue Victoria 75001 Paris;;[-1.2400218, 44.45923178];;FRIONE41245;FRIONE410006;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2768772;48.8655;;;; +;;;;;;;;FRS10PHCL9EMOH18;B062;GYROVOSGES;;21 Rue Notre-Dame des Victoires 75002 Paris;;[3.02004486, 42.77530709];;FRIONE412404;FRIONE410005;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.323452;48.859756;;;; +;;;;;;;;FRS10PMMCTUADDCP;B060;AB DIEPPE;;7 Rue d'Alexandrie 75002 Paris;;[-2.1202879, 46.81010295];;FRIONE412403;FRIONE410004;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3160603;48.8507539;;;; +;;;;;;;;FRS10PITYFK2QUQW;B059;FELIS CANIS;;104 Rue Louis Lumière 75020 Paris;;[-1.35685396, 43.9543369];;FRIONE412402;FRIONE410001;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.284095;48.8531;;;; +;;;;;;;;FRS10PNU0UK8KQ1U;B058;TOULOUSE AEROPORT HOTEL;;81 Rue de Rome 75017 Paris;;[-1.14394557, 45.36995522];;FRIONE412401;FRE10E7687;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2967633;48.8713288;;;; +;;;;;;;;FRS10PUYDC6UXCXN;B056;Mairie Herserange;;12 Boulevard de Courcelles 75017 Paris;;[-1.377925, 46.17418428];;FRCPIE65869151;FRE10E7686;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2976445;48.8437929;;;; +;;;;;;;;FRS10PWOWEZM3YVL;B022;Camping Parc le Duc;;83 Rue de Courcelles 75017 Paris;;[7.630963, 48.41844];;FRCPIE65993651;FRE10E7685;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3222;48.8534;;;; +;;;;;;;;FRS10PNWLLC5Y9PI;B055;Camping Campilo;;4 Avenue Gourgaud 75017 Paris;;[5.368877, 49.18286];;FRS37E1301;FRE10E7684;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.304;48.8685;;;; +;;;;;;;;FRS10PW5FI5XLP32;B053;Camping Dordogne La Peyrugue;;103 Rue Caulaincourt 75018 Paris;;[6.068559, 44.550005];;FRS37E1300;FRS28E171587;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3283;48.8478619;;;; +;;;;;;;;FRS10PSPHOAP76VH;B052;Camping Le Paradou;;150 Rue des Poissonniers 75018 Paris;;[5.94637, 48.202269];;FRCPIE65994052;FRS28E171586;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3211581;48.8538134;;;; +;;;;;;;;FRS10PUMJPQGG6NH;B051;Camping Le Douzou;;36 Quai de Béthune 75004 Paris;;[6.972579, 43.611481];;FRCPIE65994051;FRE10E7683;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2915577;48.8979743;;;; +;;;;;;;;FRS10PFI7LYGYWRE;B050;Camping La Plaine;;110 Rue Ordener 75018 Paris;;[1.400349, 43.549642];;FRCPIE65993952;FRIENE0045012;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2762194;48.8884456;;;; +;;;;;;;;FRS10PTAP2EUA8MR;B064;Hôtel Le Pinarello;;2 Rue Chardon Lagache 75016 Paris;;[1.8455834166546037, 50.666256180641085];;FRCPIE65993951;FRIENE0045023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.28423;48.88112;;;; +;;;;;;;;FRS10PB6PXRPIOV4;B065;Camping Vivarais;;15 Boulevard Murat 75016 Paris;;[1.8445087136534122, 50.66617982049264];;FRCPIE65993652;FRIENE0045024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2858795;48.8782587;;;; +;;;;;;;;FRS10PJ4HVLFJXYB;B076;Camping Les Brunelles;;2 Avenue de la Porte de Villiers 75017 Paris;;[4.971536, 48.626299];;FRCPIE65969252;FRCPIE65655651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.280347;48.8698929;;;; +;;;;;;;;FRS10PENKBOA6MC5;B075;Hôtel Ibis Style Toulouse;;36 Avenue des Ternes 75017 Paris;;[-1.4587, 43.53783];;FRCPIE65968352;FRCPIE65660952;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2723059;48.8888;;;; +;;;;;;;;FRS10PP4GE5YC7JS;B074;Pia Green;;227 Avenue Gambetta 75020 Paris;;[5.740974, 49.516179];;FRS37E1289;FRCPIE65660951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2851211;48.8914;;;; +;;;;;;;;FRS10PQUNCIFCCI8;B073;Le Relais des Vigiers;;39 Rue Riquet 75019 Paris;;[4.348885488640659, 48.38603775039389];;FRCPIE65968351;FRS37E18319;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.292136;48.8955;;;; +;;;;;;;;FRS10PGO3LHWGD06;B072;Camping Arinella;;13 Avenue du Père Lachaise 75020 Paris;;[5.814621642327829, 46.08831777039237];;FRIONE126405;FRS37E18318;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.295999;48.8941653;;;; +;;;;;;;;FRS10PTQAAFAZ1RT;B071;Camping des Dunes;;14 Rue de Crimée 75019 Paris;;[3.2123569556846805, 50.56848859815003];;FRIONE126404;FRS37E10700;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2904053;48.8724415;;;; +;;;;;;;;FRS10PMEPTJ9OWEG;B070;Hôtel Archambeau;;5 Rue Jules Romains 75020 Paris;;[2.4961249380287276, 48.678652435121194];;FRIONE126402;FRS37E10699;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3045476;48.8658188;;;; +;;;;;;;;FRS10PQJ1CPN7JU7;B069;Camping Campéole Côte des Roses;;127 Rue des Pyrénées 75020 Paris;;[3.2001838828882567, 46.01405490199754];;FRIONE126401;FRCPIE65655652;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2943442;48.8612923;;;; +;;;;;;;;FRS10PSM903GKE9B;B068;Camping La Plage Fleurie;;27 Rue Ordener 75018 Paris;;[5.430500000000005, 43.57690340000002];;FRCPIE65957752;FRS37E10698;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.287503;48.8669712;;;; +;;;;;;;;FRS10PNYOAPHU4JI;B067;Hôtel Le Madrigal;;54 Boulevard Sérurier 75019 Paris;;[0.86, 46.42];;FRCPIE65957751;FRCPIE65621551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2876;48.867315;;;; +;;;;;;;;FRS10PC2C0H3ORFE;B066;Hôtel Le Meysset;;10 Avenue de Flandre 75019 Paris;;[4.741838, 44.527159];;FRCPIE65952052;FRS37E10697;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2989;48.8478478;;;; +;;;;;;;;FRS10PUIDOGADTJG;B049;Camping Campéole Navarrosse;;4 Place Armand Carrel 75019 Paris;;[2.451591, 48.97995];;FRCPIE65952051;FRS37E24886;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2913;48.8585701;;;; +;;;;;;;;FRS10PXW3KNONHEE;B048;Camping Le Viginet;;9 Rue Adolphe Mille 75019 Paris;;[-1.730036, 48.101993];;FRCPIE65951952;FRS37E24226;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3048474;48.8454505;;;; +;;;;;;;;FRS10PAL6PSPCLF8;B034;Camping Campéole Le Vivier;;19 Rue Dalayrac 75002 Paris;;[1.115675, 49.39352];;FRCPIE65951951;FRS37E10694;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3217;48.8304;;;; +;;;;;;;;FRS10PITQ6ULMJ59;B033;Camping Les Tamaris;;2 bis Rue Valette 75005 Paris;;[4.77321, 45.672402];;FRS37E1292;FRS37E10693;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2920513;48.854819;;;; +;;;;;;;;FRS10PVDP80ZN7FA;B032;Camping Campéole Les Tonnelles;;16 Rue Claude Bernard 75005 Paris;;[4.741545, 44.526897];;FRS37E1291;FRSPSESHEL1011;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2851648;48.848923;;;; +;;;;;;;;FRS52PC6FVVB3MVR;B031;Camping Campéole Les Tourterelles;;1 Rue Dante 75005 Paris;;[1.145726, 49.486737];;FRCPIE65947652;FRCPIE65621552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2824849;48.8383125;;;; +;;;;;;;;FRS52PETNBV1EF5O;B030;Camping Campéole Medoc Plage;;99 Rue Monge 75005 Paris;;[-1.75,48.41];;FRCPIE65947651;FRE10E7682;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2844167;48.8451076;;;; +;;;;;;;;FRFR1PFJMTSHA9FY;B029;Camping Sunelia Interlude;;58 Rue Monge 75005 Paris;;[4.8076714, 45.7981775];;FRCPIE65941452;FRE10E7680;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2986453;48.8407;;;; +;;;;;;;;FRFR1PRTGNLZP5RI;B028;Wurth Erstein;;7 Rue Paul Painlevé 75005 Paris;;[4.8372308, 46.3085443];;FRCPIE65941451;FRSHEE1791;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2892983;48.8287;;;; +;;;;;;;;FRFR1POS5AYN2RWQ;B027;Fast automobile Verdun;;66 Rue Gay-Lussac 75005 Paris;;[4.8071364, 45.7999825];;FRS37E1290;FRCPIE65588852;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3213;48.8512;;;; +;;;;;;;;FRFR1PFQNUI0CSO4;B026;Orange Gap;;36 Rue du Temple 75004 Paris;;[-1.19743601177825, 44.993004231809124];;FRIONE12645;FRCPIE65313551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3126749;48.8319972;;;; +;;;;;;;;FRFR1PSDKEJCFATZ;B025;Vittel-Orange;;37 Rue Sainte-Croix de la Bretonnerie 75004 Paris;;[3.166771, 50.693723];;FRIONE414001;FRCPIE66293852;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3059905;48.8432;;;; +;;;;;;;;FRFR1PD63HYFBJKD;B024;Würth Mougins;;2 Rue Neuve Saint-Pierre 75004 Paris;;[7.100756, 49.113056];;FRIONE414002;FRCPIE66293851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2848904;48.8425947;;;; +;;;;;;;;FRFR1PBOQN0KHP5L;B023;Würth Toulouse;;8 Quai du Marché Neuf 75004 Paris;;[6.688881, 49.140776];;FRS37E1295;FRS08E57564;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2719012;48.835427;;;; +;;;;;;;;FRFR1PKGVDHE;B035;Garage Marcotte;;1 Rue Pierre Brossolette 75005 Paris;;[1.4431105, 48.919138];;FRCPIE65968252;FRS08E57563;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3132661;48.8389208;;;; +;;;;;;;;FRFR1PNSXP47CUV6;B047;Fast Automobile St Dizier;;20 Rue Clovis 75005 Paris;;[1.394606, 43.56689];;FRCPIE65968251;FRS08E57703;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3198109;48.8467033;;;; +;;;;;;;;FRFR1PLUC4FMQOJS;B046;Dulamon Auto;;21 Quai de la Tournelle 75005 Paris;;[-1.59,48.15];;FRS37E1297;FRS08E57702;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2994811;48.8395783;;;; +;;;;;;;;FRFR1PQFNDSB;B045;Fast Automobile Longwy;;112 Rue Monge 75005 Paris;;[-1.60,49.61];;FRS37E1296;FRS08E57520;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3081344;48.8388875;;;; +;;;;;;;;FRFR1PHKY1VPJFZJ;B044;LP Automobile;;18 Rue Perrée 75003 Paris;;[0.24189, 48.033895];;FRCPIE65965252;FRS08E57519;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2914295;48.8847;;;; +;;;;;;;;FRFR1PGZB3NTGYRT;B043;Segab;;87 Boulevard Beaumarchais 75003 Paris;;[0.095828, 47.972872];;FRCPIE65965251;FRSHEE1813;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2856025;48.8385459;;;; +;;;;;;;;FRFR1PX5FEEIN90B;B042;Xavier Delsalle;;98 Rue de Turenne 75003 Paris;;[0.163069, 47.949564];;FRS37E1380;FRSHEE1812;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.267881;48.8373656;;;; +;;;;;;;;FRFR1PM1UB8R9YFT;B040;AM5;;23 Quai aux Fleurs 75004 Paris;;[0.172916, 47.977284];;FRCPIE65960352;FRSHEE1811;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2640334;48.8425678;;;; +;;;;;;;;FRFR1PKVY9BPSSNH;B039;2A Automobiles;;116 Rue Réaumur 75002 Paris;;[0.237465, 48.018384];;FRIONE414003;FRSHEE1803;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2847;48.8509978;;;; +;;;;;;;;FRFR1PSJGU8UPEDR;B038;Citro-Puy;;204 Rue Saint-Martin 75003 Paris;;[-1.724781, 48.108326];;FRCPIE65960351;FRSHEE1802;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2953;48.8426446;;;; +;;;;;;;;FRFR1PEGRXO7GJVB;B037;Andrieux & Bourcerie 24KW DC;;17 Place de la République 75003 Paris;;[2.093535, 49.430228];;FRCPIE65959952;FRSHEE1801;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3026;48.8447061;;;; +;;;;;;;;FRFR1PGR3CSHARYG;B036;Würth Montélimar Logistic;;18 Rue Linnée 75005 Paris;;[2.038331, 50.372075];;FRCPIE65959951;FRSHEE1793;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.301;48.8434786;;;; +;;;;;;;;FRFR1PFMNRHLYJDM;B007;Würth Gonesse;;13 Rue Malher 75004 Paris;;[2.102055, 50.399946];;FRCPIE65959752;FRSHEE1792;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2787;48.8338872;;;; +;;;;;;;;FRFR1PHGSHBA4KAI;B115;Würth Rennes;;80 Rue François Miron 75004 Paris;;[2.102472, 50.396286];;FRCPIE65959751;FRS37E1451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2796928;48.8351985;;;; +;;;;;;;;FRS52PVIYOCDWK2D;B157;Würth Rouen;;9 Boulevard Bourdon 75004 Paris;;[1.894763, 50.423336];;FRIONE41405;FRS37E1452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2986736;48.8566608;;;; +;;;;;;;;FRS52PB3UGVAMI5V;B155;Würth Brignais;;45 Avenue Victor Hugo 75016 Paris;;[1.901209, 50.424837];;FRIONE414004;FRCPIE66527551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2997986;48.85926;;;; +;;;;;;;;FRS52PE2LLOSSIAV;B154;Würth Montélimar Proxi;;45 Avenue de la Bourdonnais 75007 Paris;;[2.035473, 50.381443];;FRCPIE65661052;FRIONE432351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.263132;48.8452821;;;; +;;;;;;;;FRS52PAXLL5QQDT9;B153;Fast Automobile Longw;;6 place du Président Mithouard 75007 Paris;;[2.040881, 50.375851];;FRFASE3311302;FRCPIE65588851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3708912;48.8479;;;; +;;;;;;;;FRS52PPGS8EFRLLN;B150;Fast automobile Verdu;;13 Rue Ernest Psichari 75007 Paris;;[1.196098, 43.266711];;FRCPIE66632752;FRE10E7679;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3790176;48.8472;;;; +;;;;;;;;FRS52PQDNIU62V9N;B149;D2009;;26 Avenue Duquesne 75007 Paris;;[2.035047, 50.378089];;FRCPIE66632751;FRE10E7678;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.371162;48.8349;;;; +;;;;;;;;FRS52PYPPLUMHPKQ;B148;BORNE PERRY;;142 Rue du Bac 75007 Paris;;[2.093459, 49.45384];;FRS18E112836;FRE10E7677;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3782985;48.8483;;;; +;;;;;;;;FRS52PROSGBVYDNK;B147;BORNE CHRISTOPHE PERRY;;2 Rue de Martignac 75007 Paris;;[2.030860517090839, 50.37340163915224];;FRS18E112835;FRE10E7676;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3936;48.8373;;;; +;;;;;;;;FRS52PZLMJZJ3PZH;B146;St Didier;;10 Rue jean Nicot 75007 Paris;;[2.03235, 50.364271];;FRS41E4435;FRIONE432353;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3775942;48.8439105;;;; +;;;;;;;;FRS52PCJNS7ETPCQ;B145;Hotel Macon;;21 Boulevard des Invalides 75007 Paris;;[5.175758, 48.766458];;FRS41E4434;FRIONE432352;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3906964;48.8370178;;;; +;;;;;;;;FRS52PJKZFBQGI7U;B144;Station Ax'Stone;;152 Rue de Grenelle 75007 Paris;;[4.968528, 48.635862];;FRS37E4349;FRCPIE66464052;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.399738;48.851832;;;; +;;;;;;;;FRS52PKZLRAD1NK3;B143;Parking Jardins de la Sud;;55 Avenue de Ségur 75007 Paris;;[1.6139677517069222, 50.45591099689726];;FRS37E4348;FRCPIE66527552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4019645;48.898351;;;; +;;;;;;;;FRS52POZAVWSNPPH;B142;FXM;;25 Rue Constantine 75007 Paris;;[-1.7212472222222224, 48.1790417];;FRCPIE65449252;FRCPIE66464051;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.405207;48.8821756;;;; +;;;;;;;;FRS52PVZFPF5S0ZN;B141;EGSM;;41 Avenue Bosquet 75007 Paris;;[2.7316805, 47.9749816];;FRCPIE67317151;FRS37E2481;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3938;48.8765968;;;; +;;;;;;;;FRS52PYV5RIITPOT;B140;Coprodex;;1 Rue Chanaleilles 75007 Paris;;[6.489767, 48.584177];;FRCPIE65284552;FRS37E2480;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3839;48.899335;;;; +;;;;;;;;FRS52PKAEYN5LYTA;B156;GUAINVILLE;;2 Rue Duroc 75007 Paris;;[2.115386, 49.433287];;FRCPIE65284551;FRCPIE66095552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3888;48.8727407;;;; +;;;;;;;;FRS52PP6GDR6CG8R;B139;ACCIF TOULOUSE;;76 Boulevard de la Tour-Maubourg 75007 Paris;;[6.040212, 48.909046];;FRCPIE65282652;FRCPIE66095551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3691;48.886098;;;; +;;;;;;;;FRS52PEFHFMNWM27;B151;MBC THORIGNE;;5 Rue de Bellechasse 75007 Paris;;[2.10449, 49.438526];;FRCPIE65282651;FRCPIE65573552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3978;48.891659;;;; +;;;;;;;;FRS52PUDQVGJDSB8;B006;DALTONER CHERBOURG;;7 Rue Francois 1er 75008 Paris;;[2.5753830764544885, 48.65993572270077];;FRCPIE65282052;FRCPIE65573551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3866;48.867322;;;; +;;;;;;;;FRS52PTR0POUQCGY;B005;Sargé Capucines;;10 Rue de Berri 75008 Paris;;[1.614797784474848, 50.45384387673885];;FRCPIE65282051;FRIONE440122;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3916;48.87559;;;; +;;;;;;;;FRS52PQH0DVWC2XY;B004;Saint-Georges-du-bois;;37 Rue la Boétie 75008 Paris;;[6.94251, 48.284472];;FRFASE3311304;FRIONE440121;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3812;48.8500605;;;; +;;;;;;;;FRS52PVIUG8CLD3R;B003;Bois joli;;69 Rue de Courcelles 75008 Paris;;[2.5295840174515463, 48.678489499960584];;FRCPIE65297851;FRIONE440113;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.400348;48.865359;;;; +;;;;;;;;FRS52PD2ZQGJMFFF;B002;Patte d'oie;;38 Rue François 1er 75008 Paris;;[2.5286632377885447, 48.678389833990664];;FRCPIE65297852;FRCPIE67292951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3995098;48.8818;;;; +;;;;;;;;FRS52PKWFKOG6DAH;B001;Les Fontenelles;;24 Rue de Liège 75008 Paris;;[2.526362317964585, 48.69077906864795];;FRCPIE65803751;FRCPIE67293451;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3864659;48.8792;;;; +;;;;;;;;FRS52PQNU5WLRMLT;B000;L'incroyable;;44 Avenue George V 75008 Paris;;[2.403842, 48.6814842];;FRIENE0066012;FRCPIE67293152;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4087;48.8886;;;; +;;;;;;;;FRS52PEH4IDAEXBO;B008;Tennis Club - BEAUVAIS;;188 boulevard Saint -Germain 75007 Paris;;[2.4245679, 48.6848221];;FRIONE408101;FRCPIE67293151;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4062;48.8917;;;; +;;;;;;;;FRS52PX2IJYCW9UM;B152;Petit Séminaire - HESDIN;;11 Rue d'Astorg 75008 Paris;;[2.407719, 48.673546];;FRCPIE66836352;FRCPIE65313952;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3982;48.88101;;;; +;;;;;;;;FRS52PTEXAQQOGXS;B138;Carrefour Contact - AUCHY LES HESDIN;;19 Rue du Chateaubriand 75008 Paris;;[2.431342, 48.681508];;FRCPIE66836351;FRCPIE65313951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3911798;48.8824;;;; +;;;;;;;;FRS52PSMOCKAISVV;B126;Gare SNCF - AUCHY LES HESDIN;;62 Rue Pierre Charron 75008 Paris;;[2.4077141243933076, 48.68517050782172];;FRCPIE66836252;FRS88E150327;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4021436;48.8777;;;; +;;;;;;;;FRS52PY6GAKTDMGZ;B125;Gare SNCF - BEAURAINVILLE;;42 Avenue de Friedland 75008 Paris;;[2.4300481888403183, 48.682044800657714];;FRCPIE66836251;FRS88E150325;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.402911;48.8769;;;; +;;;;;;;;FRS52PQFDR0FZIXG;B124;Mairie - BEAURAINVILLE;;73 Rue de Rome 75008 Paris;;[2.5586172119781576, 48.66622067379457];;FRIENE0066024;FRS88E162020;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3929721;48.86959;;;; +;;;;;;;;FRS82PCAYLUSBASCULE;B123;Stade - HUBY SAINT LIEU;;9 Boulevard des Batignolles 75008 Paris;;[2.6623570502624494, 48.614318800000014];;FRIENE0066023;FRS88E162018;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3984912;48.8723314;;;; +;;;;;;;;FRS10PIBKH2LGDHV;B116;Le stade - HESDIN;;46 Rue de Rome 75008 Paris;;[1.581321738638749, 50.46090694111128];;FRIENE0066011;FRCPIE67307252;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4056437;48.8738701;;;; +;;;;;;;;FRS10PVLM91FGX8V;B117;Route de Latrape - RIEUX VOLVESTRE;;3 Rue de Bérite 75006 Paris;;[7.312264, 48.0449181];;FRCPIE65803752;FRCPIE67307251;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.38494;48.8657;;;; +;;;;;;;;FRS10PJJYAMZXUCU;B118;Gare SNCF - HESDIN;;9 Rue Lobineau 75006 Paris;;[0.12882767066976641, 49.487331285074724];;FRCPIE65605452;FRCPIE67300052;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3941433;48.8495;;;; +;;;;;;;;FRS10POI2ALZD0UQ;B119;Aquaspace - BEAUVAIS;;8 Rue Danton 75006 Paris;;[2.56593753620647, 48.65956307159419];;FRCPIE65605451;FRCPIE67300051;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4133;48.8519;;;; +;;;;;;;;FRS10PLY7DK5AD7N;B120;Clinique de santé - MARCONNE;;8 Rue Mayet 75006 Paris;;[2.566489583236157, 48.64892309996577];;FRCPIE65605352;FRCPIE67293352;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3809;48.8736473;;;; +;;;;;;;;FRS10PYV9WPIXPRX;B121;Centre aquatique - MARCONNE;;21 Rue Theophraste Renaudot 75015 Paris;;[2.627516720238731, 48.53187547443857];;FRCPIE65605351;FRCPIE67293351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4092;48.8676044;;;; +;;;;;;;;FRS10PUOMK81HGEB;B122;BYMYCAR - BAR-LE-DUC;;6 Rue Michelet 75006 Paris;;[2.568798248488855, 48.66428455199971];;FRCPIE65297952;FRCPIE67293252;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2849721;48.85844;;;; +;;;;;;;;FRS10PXB2FPTW6L6;B137;BYMYCAR - SAINT-DIZIER;;101 Avenue Henri Martin 75016 Paris;;[2.2858, 48.863];;FRCPIE65297951;FRCPIE67293251;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2956282;48.8656837;;;; +;;;;;;;;FRS10PSGEMIBGXBY;B131;Mairie - MERLIMONT;;24 Avenue Paul Doumer 75016 Paris;;[2.2628, 48.8379];;FRCPIE65804051;FRCPIE67293452;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2878557;48.8552253;;;; +;;;;;;;;FRS10PWQKIXJ3XWI;B136;NISSAN ESPACE 3 - ST GREGOIRE;;4 Avenue Marcel Doret 75016 Paris;;[2.2595, 48.8433];;FRFASE3311303;FRCPIE67293551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2928;48.8614319;;;; +;;;;;;;;FRS10PIA7F7BLY0N;B135;Nissan Basty - AMILLY;;37 Avenue d'Iéna 75016 Paris;;[2.2806, 48.864];;FRFASE3311301;FRCPIE67293552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3035012;48.86986;;;; +;;;;;;;;FRS10PU45NFW8DLO;B134;BYMYCAR - LUNEVILLE;;77 Avenue de la Grande Armée 75016 Paris;;[2.274, 48.8603];;FRIONE408103;FRIONE451806;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.330375;48.8569151;;;; +;;;;;;;;FRS10PX7LH2QZYGH;B133;Restaurant Memphis - BEAUVAIS;;105 Rue de Rennes 75006 Paris;;[2.286851, 48.870343];;FRCPIE65460252;FRIONE451813;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3423252;48.8492;;;; +;;;;;;;;FRS10PROHSARMMTL;B132;BYMYCAR - PONT A MOUSSON;;15 Rue Joseph Bara 75006 Paris;;[2.2843, 48.8735];;FRCPIE67365551;FRIONE451812;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2922036;48.8692;;;; +;;;;;;;;FRS10PMGSFFZIVNT;B130;Jardins Rostand - BEAUVAIS;;2 Rue Péguy 75006 Paris;;[2.2636, 48.8478];;FRCPIE67361852;FRIONE451811;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3099;48.8731;;;; +;;;;;;;;FRS10PIXWB4EBYDV;B129;L'Abreuvoir - Combs-la-Ville;;5 Rue Jacques Callot 75006 Paris;;[2.2754, 48.8646];;FRCPIE67361851;FRIONE451810;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3148;48.8854246;;;; +;;;;;;;;FRS10PRSAKTATWHB;B128;Stade - MERLIMONT;;2 Rue de Fleurus 75006 Paris;;[2.2996, 48.8655];;FRCPIE67268452;FRIONE451809;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2884;48.881032;;;; +;;;;;;;;FRS10PAMRW3PLL2G;B127;BYMYCAR - SAINT-DIE;;38 Rue du Four 75006 Paris;;[2.2786938, 48.859756];;FRCPIE67268451;FRIONE451808;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2955;48.8788442;;;; +;;;;;;;;FRS10PRSDAVBFCEE;RCG0C210D9;Stations-e - Marcel Pagnol - BOUSSY ST ANTOINE;;1 Rue de l'Ourmède 31620 Castelnau d’Estretefonds;;[2.2739245, 48.8507539];;FRS28E127476;FRIONE451807;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3151;48.87683;;;; +;;;;;;;;FRS10PSX6GEG8ZZ9;4e20688a-6640-48a8-877d-e0551a005367;Stations-e - Clos Auchin - BOUSSY ST ANTOINE;;ZAC Europa Ouest 34350 VENDRES;;[2.2616981, 48.8531];;FRS28E127475;FRIONE451805;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.29950738;48.8849507;;;; +;;;;;;;;FRS10PVQEXLSVRD6;e1efaa9c-a39b-43d0-aebb-5984c425c47d;Piscine des Sénart - BOUSSY ST ANTOINE;;18 Rue de Laborde 75008 Paris;;[2.295196, 48.8713288];;FRIONE45195;FRN54E186924;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3050366;48.89919;;;; +;;;;;;;;FRS10PF2OPBGTHZ6;76ef5ec8-72ed-4727-8cd7-905954ff2646;Médiathèque Théâtre Donald Cardwell - DRAVEIL;;21 place de la Madeleine, 75008 Paris;;[2.2698931, 48.8437929];;FRIONE451916;FRIONE451804;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3242009;48.898303;;;; +;;;;;;;;FRS10PSWGZXGSK7K;e01071bd-0bd4-4615-84e9-f8e4d41fae9d;Gymnase Citadelle - DRAVEIL;;23 RUE DE THANN 68200 Mulhouse;;[2.2685, 48.8534];;FRIONE451915;FRIONE451803;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2899947;48.8824249;;;; +;;;;;;;;FRS10PHNYSCUGFWO;FR*MAP*P000000007472;Piscine Caneton - DRAVEIL;;Parking Roosevelt Montauban - Place Roosevelt, 82000 Montauban;;[2.2927, 48.8685];;FRIONE451914;FRIONE451802;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3649827;48.8809;;;; +;;;;;;;;FRS10PC3XIBVJXZ3;5aa39699-a74b-42e3-90ce-7167a52af169;Aqua Sénart 3 - Enceinte piscine - DRAVEIL;;21 bis rue de la République 06500 MENTON;;[2.2745266, 48.8478619];;FRIONE451913;FRIONE451801;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3331353;48.8935;;;; +;;;;;;;;FRS10PPCG9MT1EER;E175027;Centre administratif - DRAVEIL;;7 cours George V 06500 MENTON;;[2.2768772, 48.8538134];;FRIONE451912;FRCPIE66223352;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3305461;48.876;;;; +;;;;;;;;FRS10PR2KKTURY5F;E175028;Système U - DRAVEIL;;1773 promenade du Soleil, 06500, Menton;;[2.323452, 48.8979743];;FRIONE451911;FRCPIE66223351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3449781;48.8867;;;; +;;;;;;;;FRS10PPWW4OVOZ6V;01F5ZAKH61P9VBJ8QTZVKEFRX1;Place de l'An 2000 - Combs-la-Ville;;1 rue des Compagnons, 37190 Azay-le-Rideau;;[2.3160603, 48.8884456];;FRIONE451910;FRN54E186925;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3394999;48.8863;;;; +;;;;;;;;FRS10PNJ4BNTOLRY;01F5ZAKH616DTB2ER6983K24PN;FIRALP - MONTEREAU SUR LE JARD;;50 rue de Malte, 75011 Paris;;[2.284095, 48.88112];;FRIONE451909;FRCPIE67292952;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3475914;48.88003;;;; +;;;;;;;;FRS10PMMYWYPTXJS;01F5ZAKH6188B0GYCB085NCB34;Place du Marché - MERLIMONT;;153 Boulevard René Cassin, 06200 Nice;;[2.2967633, 48.8782587];;FRIONE451902;FRCPIE67292852;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3740363;48.8876949;;;; +;;;;;;;;FRS10PVTLPHAV5IB;01F5ZAKH61MEPVMYM1JS6XDRYK;Pierre & Vacances - EGUISHEIM;;9 Allée du Casino 88540 Bussang;;[2.2976445, 48.8698929];;FRCPIE67365552;FRIONE440112;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3730799;48.8957574;;;; +;;;;;;;;FRS10PJSBX7JXEXQ;01F5ZAKH61Y8K5YQPJP1YT4BZ0;Les Bains de Docks - LE HAVRE;;60 rue du Royaume 69125 Colombier-Saugnieu;;[2.3222, 48.8888];;FRCPIE67369051;FRCPIE67292851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.388647;48.8794622;;;; +;;;;;;;;FRS10PBWBZ2WP2CP;01F5ZAKH615GBMD56QDRJ7JNPA;La Coupole Conservatoire Piscine - Combs-la-Ville;;2 rue du Pré Droue 88150 Chavelot;;[2.304, 48.8914];;FRCPIE67369052;FRCPIE66238951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3375536;48.8990509;;;; +;;;;;;;;FRS10PJMNDZF5K60;01F5ZAKH61H3RP369G9Z4HJ948;ZAC EcoSénart - COMBS LA VILLE;;179 rue des Droits de l'Homme 60740 Saint-Maximin;;[2.3283, 48.8955];;FRFASE3311502;FRCPIE66238852;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3591;48.8920824;;;; +;;;;;;;;FRS10PXPVDAUWIUL;01F5ZAKH61MHDXZ175HME2B2NY;Château du Mée - LE MEE SUR SEINE;;40 rue Jean Aicard 83600 Fréjus;;[2.3211581, 48.8941653];;FRCPIE65460251;FRCPIE66238851;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3385;48.8844148;;;; +;;;;;;;;FRS10PTUOBRCUPX7;01F5ZAKH618FMNXABED9698TMX;Eglise Saint Vincent - Combs-la-Ville;;1767 Avenue Maréchal Juin 40000 Mont-de-Marsan;;[2.2915577, 48.8724415];;FRCPIE65286052;FRCPIE65345352;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3480345;48.8916426;;;; +;;;;;;;;FRS10PRHQHGUNUJO;01F5ZAKH61N4G320YY8QC4KCNC;Paris | Avenue Georges Mandel 1;;1768 Avenue Maréchal Juin 40000 Mont-de-Marsan;;[2.2762194, 48.8658188];;FRCPIE65286051;FRCPIE65345351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3330069;48.8932768;;;; +;;;;;;;;FRS10PKPYZDARPHY;01F5ZAKH61XMYRQ89RBARGP0C2;Paris | Boulevard Murat 157;;1765 Avenue Maréchal Juin 40000 Mont-de-Marsan;;[2.28423, 48.8612923];;FRCPIE65279152;FRIENE0047024;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3355;48.8850068;;;; +;;;;;;;;FRS10POWCZOVJJDA;01F5ZAKH61BSPYP13FFJF1643Y;Paris | Boulevard Exelmans 77;;1766 Avenue Maréchal Juin 40000 Mont-de-Marsan;;[2.2858795, 48.8669712];;FRCPIE65279151;FRIENE0047023;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3395;48.8989321;;;; +;;;;;;;;FRS10PXYVVZLUAV4;01F5ZAKH61FPF2MSHNDHDC50N6;Paris | Avenue Georges Mandel 42 bis;;1261 chemin Saint Roch 83110 Sanary-sur-Mer;;[2.280347, 48.867315];;FRFASE3311504;FRIENE0047012;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35;48.888195;;;; +;;;;;;;;FRS10PDEGQM5QJVX;01F5ZDX6C28GEPQQJHACKBPAZF;Paris | Boulevard Émile Augier 20;;19 rue Maubert 75005 Paris;;[2.2723059, 48.8478478];;FRFASE3311503;FRIENE0047011;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.311491;48.8794816;;;; +;;;;;;;;FRS10PE2RZPOTRBD;01F5ZAKH61X1D8BSQAJ2E72F29;Paris | Avenue Victor Hugo 60;;Rue Nungesser et Coli 75016 Paris;;[2.2851211, 48.8585701];;FRFASE3311501;FRS08E35484;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.138174;48.8850802;;;; +;;;;;;;;FRS82PXVDHGA;01F5ZAKH61V1RD9ZS470MESW77;Paris | Avenue de Malakoff 115;;Rue de Gâtel, 61250 VALFRAMBERT;;[2.292136, 48.8454505];;FRCPIE67371151;FRS08E35483;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.908246;48.8861;;;; +;;;;;;;;FRS82PCQADCS;01F5ZAKH615TX3C9VPZF2KXTVA;Paris | Rue d'Auteuil 55;;12 Avenue Thiers 6000 NICE;;[2.295999, 48.8304];;FRS88E163473;FRCPIE65579752;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.743748;48.8913;;;; +;;;;;;;;FRS82PVERDUN;01F5ZAKH6190M8XFX4J3JB6Y05;Paris | Avenue Henri Martin 70;;12 Place saint-jacques 78200 Mantes la Jolie;;[2.2904053, 48.854819];;FRS88E163471;FRCPIE65579751;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.711425;48.8883596;;;; +;;;;;;;;FRS82PNTXBJ7UOFO;01F5ZAKH61M7ERN7WVVETNSWC1;Paris | Avenue Marceau 1;;1 Place Henri Dunant 78200 Mantes-la-Jolie;;[2.3045476, 48.848923];;FRS28E126260;FRCPIE65578752;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3942192164788385;48.8872522;;;; +;;;;;;;;FRS82PROQUECOR;01F5ZAKH618NJP57369S0XJBFJ;Paris | Avenue Paul Doumer 72;;25 rue Gambetta 78200 Mantes la Jolie;;[2.2943442, 48.8383125];;FRS28E126258;FRCPIE65578751;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.034861;48.8949;;;; +;;;;;;;;FRS82PSAINTNICOLAS;01F5ZAKH61GVE1W45TQMVHRR86;Paris | Avenue Théophile Gauthier 14;;1 Promenade des anglais 6000 NICE;;[2.287503, 48.8451076];;FRCPIE66969552;FRCPIE65578652;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.843354;48.8823;;;; +;;;;;;;;FRS82PREALVILLE;01F5ZAKH61G266A66SE9DG9B7G;Paris | square Tolstoï 2;;10 rue Victor Hugo 37000 TOURS;;[2.2876, 48.8407];;FRCPIE66969551;FRCPIE65578651;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.720103;48.8954;;;; +;;;;;;;;FRS82PJRZPUA;01F5ZAKH61J7W7NMHQMVEC2RA6;Paris | Avenue d'Iéna 63;;rue Charles André Rémi Arnoult 21700 Nuits-Saint-Georges;;[2.2989, 48.8287];;FRCPIE67371152;FRCPIE66238952;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.219342;46.49502;;;; +;;;;;;;;FRS82PLIBERATION;01F5ZAKH6160PFDJT763HCR33P;Paris | Avenue de Versailles 112;;25 Grand Rue 33570 Montagne;;[2.2913, 48.8512];;FRIONE408102;FRCPIE66239051;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.537903;47.716307;;;; +;;;;;;;;FRS82PCGXFXH;01F5ZAKH61F9D9W7GGTNGS2NBF;Paris | Avenue Mozart 68;;68 rue de Salins 25300 Pontarlier;;[2.3048474, 48.8319972];;FRIONE408104;FRCPIE66239052;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.342533;48.660713;;;; +;;;;;;;;FRS82PYWHVYH;01F5ZAKH61WGK1CSYFH3ZXEPXT;Paris | Place des États-Unis 16;;2 Rue Bernard Palissy 3960 Bonchamp-lès-Laval;;[2.3217, 48.8432];;FRCPIE66845851;FRS88E162386;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.218275;50.405129;;;; +;;;;;;;;FRS82PEGDEZM;01F5ZAKH61QSEA2TT42JQTH6MC;Paris | Avenue de Versailles 53;;29 Avenue De La Sablier 21200 Beaune;;[2.2920513, 48.8425947];;FRIENE0042023;FRCPIE65648352;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.538076;47.113401;;;; +;;;;;;;;FRS82PYYSPNW;01F5ZAKH617FRP6TWWNWE4P3A6;Paris | Rue du Ranelagh 33;;Cours Jean de Vienne 14600 Honfleur;;[2.2851648, 48.835427];;FRIONE414804;FRCPIE65648351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.840505;48.93472544057976;;;; +;;;;;;;;FRS82PFXFDDN;01F5ZAKH61ZAYE68C06G8Q9BMV;Paris | Avenue de la Porte Pouchet 6;;28 Rue De La Resistance 74100 Annemasse;;[2.2824849, 48.8389208];;FRIONE414803;FRCPIE65357052;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6457;47.503262;;;; +;;;;;;;;FRS82PGCUBLN;01F5ZAKH61V9K8ZRSR3XPB92V5;Paris | Place Charles Fillion 22;;5 rue de la Falaise 50380 Granville;;[2.2844167, 48.8467033];;FRIONE414802;FRCPIE65357051;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6374;46.692852;;;; +;;;;;;;;FRS82PSERIGNAC;01F5ZAKH61J9776V0ADCNMGHWC;Paris | Place du Général Koënig 12;;Chemin du Banc 14600 La Rivière-Saint-Sauveur;;[2.2986453, 48.8395783];;FRIONE414801;FRCPIE65353752;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.090019;49.520236;;;; +;;;;;;;;FRS10PYDITYHBJKS;01F5ZAKH61TJN1VMHBQF5R1GH5;Paris | Avenue des Ternes 6;;2 Rue Raymond Pitet 38100 Grenoble;;[2.2892983, 48.8388875];;FRS88E150260;FRCPIE65353751;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.090159;49.21215;;;; +;;;;;;;;FRS10PLXINTQKPIH;01F5ZAKH6198YFVGWBKKTW620N;Paris | Avenue Marceau 59;;6 Allee Andre Bourlant 21000 Dijon;;[2.3213, 48.8847];;FRS88E150258;FRS88E162388;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.580335;49.125699;;;; +;;;;;;;;FRS10PENFWY3FHBW;01F5ZAKH61X9AQYTM4CDF50Y9A;Paris | Rue Legendre 126;;24 Rue François 1er, 75008 Paris;;[2.3126749, 48.8385459];;FRS88E150253;FRS88E150305;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.963146;48.026513;;;; +;;;;;;;;FRS10PC16QZJT72Y;01F5ZAKH6106W1EHH3HABH1GG9;Paris | Rue Marguerite Long 11;;Rue des Frères Michaut 14700 Falaise;;[2.3059905, 48.8373656];;FRS88E150251;FRIONE469407;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.926063;49.211506;;;; +;;;;;;;;FRS10PN4MBOOZ97B;01F5ZAKH614YDA9431KPAVPBE3;Paris | Rue Navier 1;;114 Boulevard de l'hopital 75013 Paris;;[2.2848904, 48.8425678];;FRIONE46275;FRS88E150303;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.538004;49.12686;;;; +;;;;;;;;FRS82PSEPTFONDS;01F5ZAKH615QZ24N94SBS0KBQ3;Paris | Rue de la Jonquière 66;;1167 route de Villedieu 50380 Granville;;[2.2719012, 48.8509978];;FRIONE462706;FRIONE46945;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.874171;49.888161;;;; +;;;;;;;;FRS82PVALENCEJEAN;01F5ZAKH61TR6BXJYMH25Q81SG;Paris | Avenue Victor Hugo 18;;1 rue Joseph Jacquard 14120 Mondeville;;[2.3132661, 48.8426446];;FRIONE462705;FRIONE469412;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.07922256090806372;50.5759;;;; +;;;;;;;;FRS82PSAINTPORQUIER;01403a42-66f5-4e60-bcd6-8f6cb0af432a;Paris | Avenue Victor Hugo 180;;1 Rue d'Alsace 78200 Mantes-la-Jolie;;[2.3198109, 48.8447061];;FRIONE462704;FRIONE469411;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.496258;50.5766;;;; +;;;;;;;;FRS82PSAVENES;01F5ZAKH612583SBGWNS3MWAKW;Paris | Rue Pétrarque 2;;132 Rue de Temple, 75003 Paris;;[2.2994811, 48.8434786];;FRIONE462703;FRIONE469410;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.254647;50.123916;;;; +;;;;;;;;FRS10PJT57QTOIAB;01F5ZAKH614FJF81C3AAMX98NB;Paris | Avenue Raymond Poincaré 51;;2 Rue de Gironde 33000 Bordeaux;;[2.3081344, 48.8338872];;FRIONE462702;FRIONE469409;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.145602;50.122864;;;; +;;;;;;;;FRS10PGCLIDDLXMP;01F5ZAKH61XPEKRDF6YA7HMZZA;Paris | Rue de la Pompe 137;;5 rue du Faubourg Poissonnière, 75009 Paris;;[2.2914295, 48.8351985];;FRIONE462701;FRIONE469408;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.899358;50.829441;;;; +;;;;;;;;FRS10PHQBEJCHF0S;01F5ZAKH61ZBQTS3PR3ATPQQHJ;Paris | Rue Rémusat 8;;10 rue de l'Etoile 75017 Paris;;[2.2856025, 48.8566608];;FRS88E161828;FRIONE451814;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.859716;46.097489;;;; +;;;;;;;;FRS10PXLCIFNNICB;01F5ZAKH614YH6Y44CRNT61J05;Paris | Boulevard Delessert 23;;66 allée de la Liberté 13300 Salon-de-Provence;;[2.267881, 48.85926];;FRS88E161826;FRIONE451815;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6666;45.672131;;;; +;;;;;;;;FRS10PNO3UTM7ESA;01F5ZAKH61MGQBB90EPZZ6RBP9;Paris | Place du Commerce 5;;1 avenue Chambolland 21700 Nuits-Saint-Georges;;[2.2640334, 48.8452821];;FRIONE414805;FRIONE451816;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.053499;47.972518;;;; +;;;;;;;;FRS10PHIUZKM0QXB;01F5ZAKH61NA6C8BWKXA4ZJN6B;Paris | Rue de Dantzig 80;;7 Rue Henri Dunant 21200 Beaune;;[2.2847, 48.8479];;FRIONE414809;FRIONE45185;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.074;45.018137;;;; +;;;;;;;;FRS10PW0DDDMUY3L;01F5ZAKH61ARJ2FXM1YTQCNDGM;Paris | Rue de la Fédération 10;;rue Paul Vachet 71100 Chalon-sur-Saône;;[2.2953, 48.8472];;FRIONE414810;FRCPIE65410852;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.78049;43.22956922042935;;;; +;;;;;;;;FRS10PFTPT9EVHHC;01F5ZAKH61281F27RSXT6EQ5NW;Paris | Avenue de Suffren 112;;7 boulevard Perpreuil 21200 Beaune;;[2.3026, 48.8349];;FRCPIE65344452;FRCPIE65410851;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.864688;45.052079;;;; +;;;;;;;;FRS10PMHAS1DBV2O;01F5ZAKH61NTEXBAEVC7N8XSSE;Paris | Rue de la Convention 171;;17 rue Général Voillot 21200 Beaune;;[2.301, 48.8483];;FRCPIE65578051;FRCPIE65410552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.128131;48.055847;;;; +;;;;;;;;FRS10PVE3I1SNXAY;01F5ZAKH61A2VGXQ2FPA7YGD3Y;Paris | Rue de Lourmel 79;;11 Rue Maccarani 06000 NICE;;[2.2787, 48.8373];;FRCPIE65577952;FRCPIE65410551;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.655602;48.635405;;;; +;;;;;;;;FRS10PUZHYYMLXNA;01F5ZAKH61AYQENVTDGRD2NHFM;Paris | Rue Houdart de Lamotte 2;;10 avenue du général Leclerc 30000 Nîmes;;[2.2796928, 48.8439105];;FRCPIE65577951;FRCPIE65409952;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.072417;42.779756;;;; +;;;;;;;;FRS10PEOSAEXVXOL;01F5ZAKH61J9TRC0E6S2PE96KG;Paris | Rue Jean Sicard 1;;1-3 avenue du Général Sarral 75016 Paris;;[2.2986736, 48.8370178];;FRCPIE65577852;FRCPIE65409951;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.795923;47.976571;;;; +;;;;;;;;FRS10PHC39F8XCC0;01F5ZAKH61Z5005NWZFCN4S2YP;Paris | Rue du Docteur Finlay 43;;16 Boulevard de l'hôpital Stell, 92500 Rueil-Malmaison;;[2.2997986, 48.851832];;FRCPIE65577851;FRCPIE67259252;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.863486341983179;47.33821;;;; +;;;;;;;;FRS10PPNTCUBAVK3;01F5ZAKH61Q2450FRWGGNY80W5;Paris | Rue des Morillons 95;;52 Rue François De Tessan 77100 Meaux;;[2.263132, 48.898351];;FRCPIE65577752;FRCPIE67259251;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.111322;49.179691;;;; +;;;;;;;;FRS10PQQCJJBHN5V;01F5ZAKH61K4NJ8AEGN29B15RV;Paris | Rue de l'Arrivée 16;;11 rue Jean Michel Haussmann 68000 Colmar;;[2.3708912, 48.8821756];;FRCPIE65577751;FRIONE43145;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.608616;50.540332;;;; +;;;;;;;;FRS10PML8ZQJOCDL;01F5ZAKH61NKNCRE4MN5SBC9T6;Paris | Place Etienne Pernet 26;;12 rue Jean Michel Haussmann 68000 Colmar;;[2.3790176, 48.8765968];;FRCPIE65344451;FRIONE431404;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.316345;45.197767;;;; +;;;;;;;;FRS10PKICUPJFZY5;01F5ZAKH61CZMYP29GAQ1GC4HR;Paris | Rue Vasco de Gama 74;;323 rue Nationale 57600 Forbach;;[2.371162, 48.899335];;FRIONE414811;FRIONE431403;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.780632;49.361312;;;; +;;;;;;;;FRS10PQ2NDRSYOYC;01F5ZAKH6180ZSWJ0ABGJ7FH89;Paris | Avenue Félix Faure 109;;Rue Du Pre Droue 88150 Chavelot;;[2.3782985, 48.8727407];;FRCPIE65579452;FRIONE431402;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0144273068944765;49.402915;;;; +;;;;;;;;FRS10PHSYIJGUBSD;01F5ZAKH6172NAS9AG8F41KN6S;Paris | Avenue Emile Zola 65;;9 rue Pierre Boileau 57050 Metz;;[2.3936, 48.886098];;FRCPIE65579451;FRIONE431401;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.133697;43.752619;;;; +;;;;;;;;FRS10PSK1TRPWVYS;01F5ZAKH61AQCGJ7RC8DDB28NY;Paris | Rue Gerbert 11;;ROUTE DE CLERMONT, 63160 Billom;;[2.3775942, 48.891659];;FRCPIE65579352;FRS08E57725;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.6546462208168315;45.877047;;;; +;;;;;;;;FRS10POA0RW4NYDI;01F5ZAKH61KQMQ3JSMY5G6DTFH;Paris | Rue de la Croix Nivert 192;;ZI LE CHAULAUDRE - ROUTE NATIONALE, 19300 Égletons;;[2.3906964, 48.867322];;FRCPIE65579351;FRS08E57724;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.363451;43.547473;;;; +;;;;;;;;FRS10PXKFIUVLHYL;01F5ZAKH619XDZ91BD13VZZTK3;Paris | Rue des Batignolles 27;;ROUTE D'AUBUSSON, 23140 Jarnages;;[2.399738, 48.87559];;FRCPIE65343652;FRCPIE65402152;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.286912;48.26738780480035;;;; +;;;;;;;;FRS10PCVPP0IT0WU;01F5ZAKH615ARP522Z2QF17A8J;Paris | Rue Cotentin 29;;38 route de Brignais 69630 Chaponost;;[2.4019645, 48.8500605];;FRCPIE65343651;FRCPIE65402151;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.303269;46.057755;;;; +;;;;;;;;FRS10PMJJBMETL1P;01F5ZAKH61QTR7Y591GGPT9YSB;Paris | Rue Paul Barruel 44;;CHEMIN DU PAROIS, 85300 Challans;;[2.405207, 48.865359];;FRIONE41485;FRCPIE66275051;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3696815;44.171001;;;; +;;;;;;;;FRS10PO1EWBAVT2R;01F5ZAKH6150BCSKADS949NNAX;Paris | Rue de la Convention 75;;rue de Ruffi, 13002 Marseille;;[2.3938, 48.8818];;FRIENE0042024;FRCPIE66275052;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.335728;48.823581;;;; +;;;;;;;;FRFR1PQIGYFMBDEQ;01F5ZAKH615K9YFB4VNVPPBYS6;Paris | Rue Jean de la Fontaine 42;;ZI du Pont des Chèvres, 03160 Bourbon-l'Archambault;;[2.3839, 48.8792];;FRIENE0042012;FRCPIE66275151;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.309952;48.635678;;;; +;;;;;;;;FRFR1PTMUDQRXWDT;01F5ZAKH618H9RPFGP1PPSK2KW;Paris | Boulevard Pasteur 41;;36 route de Brignais 69630 Chaponost;;[2.3888, 48.8886];;FRIONE40815;FRCPIE65434551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.309542;47.419479;;;; +;;;;;;;;FRS56PYVXMZJ;01F5ZAKH61XXBXBM3V6MWHM2SB;Paris | Avenue du Maine 4;;41 route de Brignais 69630 Chaponost;;[2.3691, 48.8917];;FRIENE0042011;FRIONE440111;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.321369;43.869821;;;; +;;;;;;;;FRS56PNBPTPB;01F5ZAKH61FD1B7KBDDZ58ZV6A;Paris | Rue Mademoiselle 67;;37 route de Brignais 69630 Chaponost;;[2.3978, 48.88101];;FRIONE431703;FRIONE440110;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.360103;49.5713395660623;;;; +;;;;;;;;FRS56PEUTTDT;01F5ZAKH61VZ8SH2QWCYV4ZHFE;Paris | Rue de Vouillé 47;;51 Rue François De Tessan 77100 Meaux;;[2.3866, 48.8824];;FRIONE431702;FRIONE440109;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.379874;48.759935;;;; +;;;;;;;;FRS56PFFTJZD;01F5ZAKH6138RM8VZ0HARNPBDR;Paris | Rue Olier 15;;50 Rue François De Tessan 77100 Meaux;;[2.3916, 48.8777];;FRIONE431701;FRIONE440103;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.36554;48.835709;;;; +;;;;;;;;FRS56PFSRMLH;01F5ZAKH61HXHE8EZ4KVA08RHB;Paris | Rue des Eaux 2;;18 Rue Bernard Palissy 60000 Beauvais;;[2.3812, 48.8769];;FRS18E148766;FRIONE440102;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.387548;48.86937;;;; +;;;;;;;;FRS56PANVVBU;01F5ZAKH61PCPP9M7Z1HWEX6W9;Paris | Avenue Raphaël 20;;20 Rue de Bouvron, 44750 Campbon;;[2.400348, 48.86959];;FRS18E148765;FRIONE440101;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.377939;48.878099;;;; +;;;;;;;;FRS56PSPXABC;01F5ZAKH61QEC61D29D0JQPXP2;Paris | Rue Molitor 16;;23 route de Gigny 21200 BEAUNE;;[2.3995098, 48.8723314];;FRCPIE65305752;FRCPIE65434552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.405248;48.88264;;;; +;;;;;;;;FRS56PEKCQMR;01F5ZAKH61FZ04WKXSKB4BZKFD;Paris | Rue Beaugrenelle 4;;27 ROUTE DE GRAND CHARMONT, 25200 Montbéliard;;[2.3864659, 48.8738701];;FRCPIE65305751;FRCPIE65422952;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.341483;48.847931;;;; +;;;;;;;;FRS56PUNJRKT;01F5ZAKH61Q3TKEJKHYAZT3HRD;Paris | Avenue Émile Zola 143;;5 rue Cugnot, 56000 Vannes;;[2.4087, 48.8657];;FRCPIE65305552;FRCPIE66275152;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.331346;48.875854;;;; +;;;;;;;;FRS56PPCHBYA;01F5ZAKH61HT51HJANTGRK3N18;Paris | Rue de Cronstadt 2;;25 ROUTE DE PONTCHATEAU, 44530 Saint-Gildas-des-Bois;;[2.4062, 48.8495];;FRCPIE65305551;FRCPIE65422951;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.339865;48.880698;;;; +;;;;;;;;FRS56PXKAKPT;01F5ZAKH61MVDX55W13APA2PV6;Paris | Boulevard de Grenelle 139;;ZI DE CHAULAUDRE, 19300 Égletons;;[2.3982, 48.8519];;FRCPIE65304652;FRS08E57518;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.31144092;48.875465;;;; +;;;;;;;;FRS56PTAVUZX;01F5ZAKH61DXWS7JDZRA1P5P49;Paris | Rue Balard 108;;51 RUE DE LA LIBERTE, 23100 La Courtine;;[2.3911798, 48.8736473];;FRCPIE65304651;FRS08E57517;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.345342915215558;48.858952;;;; +;;;;;;;;FRS56PNWTLJV;01F5ZAKH61697B2JJF1YQXZYFQ;Paris | Rue Sébastien Mercier 44;;2 Avenue De L'Europe 77600 Bussy-Saint-Georges;;[2.4021436, 48.8676044];;FRS18E107001;FRCPIE66275352;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35242;48.865097;;;; +;;;;;;;;FRS56PMYDKMD;01F5ZAKH61Z0GCXDZK54V3RCTZ;Paris | Rue Olivier de Serres 3;;92bis Boulevard Solidarite 57070 Metz;;[2.402911, 48.85844];;FRS18E107000;FRCPIE66275351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.326367;48.854664;;;; +;;;;;;;;FRS56PXJVQBA;01F5ZAKH61XJC9QZRM3CEVSNFE;Paris | Avenue de Suffren 78;;2 Chemin D'imling 57400 Sarrebourg;;[2.3929721, 48.8656837];;FRCPIE65427052;FRCPIE65415552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.30437;48.865358;;;; +;;;;;;;;FRS56PFWUXXF;01F5ZAKH61Z73TMEPH6TZXVW5G;RELAIS COURBEVOIE BINEAU;;39 route de Brignais 69630 Chaponost;;[2.3984912, 48.8552253];;FRCPIE65427051;FRCPIE65415551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.30749972;48.834084;;;; +;;;;;;;;FRS56PUPKBXY;01F5ZAKH61YZWMDZXX2P107VVX;Paris | Avenue Secrétan 4;;40 route de Brignais 69630 Chaponost;;[2.4056437, 48.8614319];;FRCPIE65302952;FRS18E113096;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.31368;48.852459;;;; +;;;;;;;;FRS56PDWXWZJ;01F5ZAKH61G6MNTJGT6FCZKNGZ;Paris | Rue Manin 1;;Port de Salles, 86150 Le Vigeant;;[2.38494, 48.86986];;FRCPIE65302951;FRS18E113095;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.327753;48.852126;;;; +;;;;;;;;FRS56PMCYRPV;01F5ZAKH61BYGVDJ7R63NQGJ33;Paris | Avenue de la Porte d'Aubervilliers 10;;2 rue du Drac 38130 Échirolles;;[2.3941433, 48.8569151];;FRIONE431704;FRCPIE65778352;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.38804;48.84824;;;; +;;;;;;;;FRS56PLNEXBM;01F5ZAKH611Q923KH5ADARW2HQ;Paris | Rue Jules Romains 1;;185 rue Jean Perrier Gustin 73000 Bassens;;[2.4133, 48.8492];;FRIONE43175;FRIONE43785;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.345032;48.8606571;;;; +;;;;;;;;FRS56PDDQTSB;01F5ZAKH610W301VEXX0C9G8HD;Paris | Rue Manin 159;;4 Place Hottinguer 77380 Combs-la-Ville;;[2.3809, 48.8692];;FRCPIE65310251;FRS08E35991;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.325895;48.85061353189264;;;; +;;;;;;;;FRS56PQRHCVG;01F5ZAKH61NJM3N38YN4AFMA86;Paris | Avenue de Flandre 119;;89 route de Marienthal 67500 Haguenau;;[2.4092, 48.8731];;FRIONE403204;FRS08E35886;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.323891;48.84477;;;; +;;;;;;;;FRS56PEFEJZZ;01F5ZAKH6018FD3AN16N6CZ5B0;Paris | Rue Sorbier 14;;6 Boulevard de la Marne 77120 Coulommiers;;[2.2849721, 48.8854246];;FRIENE0024024;FRS08E35885;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.336857;48.851025;;;; +;;;;;;;;FRS56PESZPPD;01F5ZAKH61V1G21XD9YK3CT4W9;Paris | Rue de Belleville 265;;27 rue du Chemin Rouge 44300 Nantes;;[2.2956282, 48.881032];;FRIENE0024023;FRS18E112822;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.358146;48.857552;;;; +;;;;;;;;FRS56PHLLWEY;01F5ZAKH61GKXMHQF39J59JWGZ;Paris | Rue de la Plaine 25;;18-32 RUE DE METZ, 54800 Jarny;;[2.2878557, 48.8788442];;FRIENE0024012;FRS18E112821;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.367798;48.8497494;;;; +;;;;;;;;FRS56PHGDFBF;01F5ZAKH61R7A2RC6PQKY808ZR;Paris | bis Rue du Capitaine Ferber 5;;41 bis rue porta ALBI 81000;;[2.2928, 48.87683];;FRIENE0024011;FRCPIE65369552;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.343366;48.852665;;;; +;;;;;;;;FRS56PPQFPGY;01F5ZAKH61N9MR617QEESG9B58;Paris | Rue David d'Angers 54;;42 bis rue porta ALBI 81000;;[2.3035012, 48.8849507];;FRIONE40325;FRCPIE65369551;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.320052;48.857124;;;; +;;;;;;;;FRS56PXAEEUR;01F5ZAKH61Z4V01APHPD4HN65N;Paris | Rue Botzaris 50;;43 bis rue porta ALBI 81000;;[2.330375, 48.89919];;FRIONE403206;FRIONE437808;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.279884;48.847446;;;; +;;;;;;;;FRS56PGFVWQZ;01F5ZAKH617HMA9QVJ43VQ9F5W;Paris | Rue Adolphe Mille 8;;44 bis rue porta ALBI 81000;;[2.3423252, 48.898303];;FRIONE403205;FRIONE409701;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.320272;48.845715;;;; +;;;;;;;;FRS56PRUZCWL;01F5ZAKH61DSK7H79WFYF7T5RT;Paris | Rue d'Aubervilliers 126;;RUE JEAN PIERRE BELTOISE 57180 TERVILLE;;[2.2922036, 48.8824249];;FRIONE403203;FRIONE437807;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.300643;48.83086;;;; +;;;;;;;;FRS56PEKLYRW;01F5ZAKH60ECP5XDNXDFK3HVCM;Paris | Boulevard Sérurier 60;;97 Place Saint-Hubert 59800 Lille;;[2.3099, 48.8809];;FRCPIE65310252;FRIONE437806;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.286931;48.841198;;;; +;;;;;;;;FRS56PEUEZBT;01F5ZAKH60YBBWPJTRVZESZ26B;Paris | Rue de Crimée 82;;7 place Charles Hernu 69100 Villeurbanne;;[2.3148, 48.8935];;FRIONE46855;FRIONE437805;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.305529;48.824388;;;; +;;;;;;;;FRS56PMJUDGW;01F5ZAKH602FGPT3MJJY9A3TN0;Paris | Rue de Crimée 8;;70 rue Félix Barth, BP 80025 57601 Forbach;;[2.2884, 48.876];;FRIONE468506;FRIONE437804;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.389173;48.826039;;;; +;;;;;;;;FRS56PTCSBVD;01F5ZAKH60YSH183AXJKF1QDE3;Paris | Rue de Botzaris 16;;Ancien Chemin du Val 83170 BRIGNOLES;;[2.2955, 48.8867];;FRIONE468505;FRIONE437803;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.397822;48.82312;;;; +;;;;;;;;FRS56PEGQHWV;01F5ZAKH60BBZ8ARN3XJK3K1JT;Paris | Rue Pelleport 105 bis;;1 Rue de Libourne 75012 Paris;;[2.3151, 48.8863];;FRIONE468504;FRIONE437802;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.411238;48.826504;;;; +;;;;;;;;FRS56PUXSADP;01F5ZAKH60Q14BJPZFWR9V3SJP;Paris | Rue du Télégraphe 16;;5 Rue Fontaine au Brun 44570 Trignac;;[2.29950738, 48.88003];;FRIONE468503;FRIONE437801;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.374877;48.831448;;;; +;;;;;;;;FRS56PLMHCBG;01F5ZAKH6058QXP88C4EMXM9MN;Paris | Rue des Pyrénées 356;;11 rue Jean PALACH 69720 SAINT LAURENT DE MURE;;[2.3050366, 48.8876949];;FRIONE468502;FRS08E57419;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.401736;48.846214;;;; +;;;;;;;;FRS56PWDVXQA;01F5ZAKH60ESS2APKE7BR49DN1;Paris | Boulevard Mortier 15;;5 Rue Marcel Paul 59113 SECLIN;;[2.3242009, 48.8957574];;FRIONE468501;FRIONE409702;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3748828;48.843753;;;; +;;;;;;;;FRS56PPWZCTQ;01F5ZAKH612745HQQ6N39DZXC6;Paris | Rue Frédéric Loliée 5;;Rue Jean Baptiste Greuze 33160 St Medard en Jalles;;[2.2899947, 48.8794622];;FRIONE451901;FRCPIE65778351;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.372971;48.828454;;;; +;;;;;;;;FRS56PWMRUPK;01F5ZAKH611V33JBR9K727DM53;Paris | Boulevard de Charonne 52;;8 Rue Champeau 21800 Quetigny;;[2.3649827, 48.8990509];;FRCPIE66845752;FRIONE40925;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.363025;48.841663;;;; +;;;;;;;;FRS56PZMJPKM;01F5ZAKH61TNF7SHNE997NPZ1R;Paris | rue Frédérick Lemaître 5;;50 Rue De La Villette 69003 Lyon;;[2.3331353, 48.8920824];;FRCPIE65661051;FRTNME079102700;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34965;48.834705;;;; +;;;;;;;;FRS56PCHEKHW;01F5ZAKH61KHC09TQDPBX6EE2Z;Paris | Rue Pelleport 86;;1 Allee des Peupliers 54180 Heillecourt;;[2.3305461, 48.8844148];;FRCPIE65521951;FRIONE41265;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.343626;48.833603;;;; +;;;;;;;;FRS56PLYFYJOBRX4;01F5ZAKH61TG3DXJGS087Z7W4Q;Paris | Rue des Pyrénées 137;;309 Av. de Lens, 62400 Béthune;;[2.3449781, 48.8916426];;FRIONE473504;FRIONE412606;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.97228;48.839947;;;; +;;;;;;;;FRS56PIQBKMPJAIG;01F5ZAKH619WAB3P82F16EMC0Y;Paris | Rue Sorbier 40;;515 av Tramontane 13600 LA CIOTAT;;[2.3394999, 48.8932768];;FRIONE473503;FRIONE412605;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.641518;48.845265;;;; +;;;;;;;;FRS56PLWQYYRAB2F;01F5ZAKH61GF4TYVNHGJZN4V37;Paris | Rue Monte Cristo 24;;2 Bis route de Sémalens 81710 SAÏX;;[2.3475914, 48.8850068];;FRIONE473502;FRIONE412604;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.604571;48.846295;;;; +;;;;;;;;FRS56PSGQGARWR3K;01F5ZAKH6113N1FAJ4SXYZ1B94;Paris | Rue de Bagnolet 142;;Chemin des infirmeries 13100 Aix en Provence;;[2.3740363, 48.8989321];;FRIONE473501;FRIONE412603;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.4519;48.847485;;;; +;;;;;;;;FRS56PNKDC4JEQPF;01F5ZAKH61N10JK8ACTNKVMS13;Paris | Rue Julien Lacroix 39;;18 rue Edouard Branly 60200 Compiègne;;[2.3730799, 48.888195];;FRCPIE67358452;FRCPIE65380951;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.036728;48.8412037;;;; +;;;;;;;;FRS56PVA14FOL0VC;01F5ZAKH617RS00Z06JRBZ3SP7;Paris | Boulevard de Charonne 158;;Place Jacques Tati 60880 JAUX;;[2.388647, 48.8794816];;FRCPIE67358451;FRIONE409206;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.246004;48.822432;;;; +;;;;;;;;FRS56PWFJUNQY8TV;01F5ZAKH61MYV6VSDS728MWJJH;Paris | Rue de Lagny 117;;6 ALL PAUL HALARY, 51100 Reims;;[2.3375536, 48.8850802];;FRS51E49675;FRIONE409703;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.365282;48.832893;;;; +;;;;;;;;FRS56PD1AOYXWWDU;01F5ZAKH61JKZ0MNXBV9QY3Q22;Paris | Rue des Couronnes 2;;Avenue Michel d'Ornano 14390 CABOURG;;[2.3591, 48.8861];;FRS51E49674;FRIONE409205;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.826153;48.835499;;;; +;;;;;;;;FRS56PZWSHUHFMQW;01F5ZAKH61HVVT0NPS06MV38WB;Paris | Rue Guébriant 6;;Parc d'activites logistiques Saint-Isidore 06284 Nice;;[2.3385, 48.8913];;FRCPIE65936052;FRIONE409204;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.295566333126504;48.82085;;;; +;;;;;;;;FRS56PCWX3CAM47B;01F5ZAKH61YVK6XCWX46CSQAGA;Paris | Avenue de la Porte de Villiers 28;;1 rue Antonin Magne 45400 FLEURY LES AUBRAIS;;[2.3480345, 48.8883596];;FRCPIE65936051;FRIONE409203;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.354652;42.951091;;;; +;;;;;;;;FRS56PJFWBRE;01F5ZAKH61TPHBTSFND6ME12R8;Paris | Avenue de Niel 28;;111 Avenue de Toulouse 31150 Bruguières;;[2.3330069, 48.8872522];;FRCPIE65605652;FRIONE409202;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34046;47.819657;;;; +;;;;;;;;FRS56PMNEHHV;01F5ZAKH61BFRHTER5H6HW5WZH;Paris | Rue Brunel 42;;1 Rue du Vignolle 95200 Sarcelles;;[2.3355, 48.8949];;FRCPIE65605651;FRIONE409201;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34556;45.894616;;;; +;;;;;;;;FRS56PGVDKQE;01F5ZAKH61J186694WWK9SKV1B;Paris | Avenue Carnot 28;;17 Avenue de Rome 13127 VITROLLES;;[2.3395, 48.8823];;FRCPIE65108351;FRIONE40975;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.362246;43.4155;;;; +;;;;;;;;FRS56PRJBZTG;01F5ZAKH61B1QR8NPNPA5FB6XD;Paris | Rue Brémontier 19;;7 Esplanade Georges Pompidou 22000 Saint Brieuc;;[2.35, 48.8954];;FRCPIE65945652;FRIONE409704;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.3953496;45.001584;;;; +;;;;;;;;FRS56PLXYAI8QKSC;01F5ZAKH611S01G19MY7TRAAAD;Paris | Rue Henri Huchard 48;;Avenue de l'europe 71100 CHALON SUR SAONE;;[5.311491, 46.49502];;FRCPIE65945651;FRCPIE65449251;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.474731;49.119215;;;; +;;;;;;;;FRS56PQDCXYC;01F5ZAKH61BST212NKJMVXM29X;Paris | Rue Fernand Labori 1;;Place Alexandre Rillé;;[7.138174, 47.716307];;FRCPIE65933552;3cf64d9d-1d91-4aa7-bab4-1332df12dece;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.591773;48.761676;;;; +;;;;;;;;FRS56PXLMBLJ;01F5ZAKH61AN7SE9N3CG32EQS1;Paris | boulevard Pereire 170;;57 Rue des Floralies;;[5.908246, 48.660713];;FRCPIE65933551;75722f71-206a-42a3-a3ea-f74ed28659b1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33321;47.135404;;;; +;;;;;;;;FRS56PZVHKXW;01F5ZAKH61SRQ9A5PY53130HYM;Paris | Rue Georges Berger 2;;rue de l'Abbaye;;[2.743748, 50.405129];;FRIONE473505;bcc51ef9-4e1e-42e9-a6cf-67a98b589dce;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.343436;45.524520306313626;;;; +;;;;;;;;FRS56PASJVEZ;01F5ZAKH61JC7J36YVW9KYEWZS;Paris | Avenue de Clichy 181 quater;;Parking de la Mairie;;[4.711425, 47.113401];;FRIONE473506;cbbbdfaf-503c-443a-aee0-62980999f77f;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.342244;43.346007;;;; +;;;;;;;;FRS56PK2YQ7NB5P1;01F5ZAKH61WGPSNTS8EQJ6902S;Paris | Avenue de la Grande Armée 40;;Place de Schweinfurt 28205;;[2.3942192164788385, 48.93472544057976];;FRIONE47355;FR*LUM*ECARASSINS1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.359043;48.86003;;;; +;;;;;;;;FRS56PAVMWS0NNYA;01F5ZAKH613JA6ST9Z9TX9QQBD;Paris | Rue de Courcelles 210;;Place du 18 octobre 28205;;[4.034861, 47.503262];;FRIENE0065012;70565;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3615763;48.854057;;;; +;;;;;;;;FRS56PQKXRZR;01F5ZAKH61WTEKG4MTFSZFAC2M;Paris | Rue Dulong 67;;30 Rue des Murgers 28200;;[4.843354, 46.692852];;FRS08E57541;70564;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.369344884371708;43.235483;;;; +;;;;;;;;FRS56PMEFKNE;01F5ZAKH61GB3Q6R56FSTMZADS;Paris | Avenue de Wagram 77;;Rue Jean-Michel Hérault 28500;;[2.720103, 49.520236];;FRS51E61498;4a833f25-e205-440a-97ce-fc15705a921c;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.244126;43.2674985;;;; +;;;;;;;;FRS56PZSCHEU;01F5ZAKH61A4FD8RXE2D5HVXZP;Paris | Boulevard Pereire 50;;Parking Mairie 28500;;[1.219342, 49.21215];;FRS51E61497;6bbb97a5-bd3d-4d66-ba5d-25591e1bc39a;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.507557;43.30344;;;; +;;;;;;;;FRS56PRWCLSX;01F5ZAKH61DRET8WA96DW8JABX;Paris | Rue Navier 47;;Parking de la Piscine municipale 28150;;[3.537903, 49.125699];;FRS08E57530;FR*LUM*EHOTELCHEVALBLANC1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.391378846523969;43.246902;;;; +;;;;;;;;FRS56PYFURSC;01F5ZAKH61GSQNYV98299GXJRZ;Paris | Avenue des Ternes 73;;1 Rue Gustave Eiffel ZC Carrefour Bel Air;;[-0.342533, 48.026513];;FRS08E57529;64555;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.867226;48.870628;;;; +;;;;;;;;FRS56PWHRADG;01F5ZAKH61WWA0H0Y8X8NR586D;Paris | Rue Charles Hermite 52;;Rue Gustave Eiffel;;[1.218275, 49.211506];;FRIENE0065024;64556;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.443222;48.865311;;;; +;;;;;;;;FRS56PHFJGYG;01F5ZAKH61ED7429VDSMRNSYCR;Paris | Rue Marcadet 220;;11 Rue André Bourvil - Domaine de l'implantation - 33140 Villenave d'Ornon;;[3.538076, 49.12686];;FRIENE0065023;55849;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.382357;48.865788;;;; +;;;;;;;;FRS56PNDWAGL;01F5ZAKH61JC7JD541PZX91Q19;Paris | Avenue Rachel 1;;20 Rue Raymond Aron 76451 Mont-Saint-Aignan;;[2.840505, 49.888161];;FRIENE0065011;55848;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.722189;48.864719;;;; +;;;;;;;;FRS56PMYZLMIBAEA;01F5ZAKH6106Q394Y3BDB7BX3R;Paris | Rue Ramey 62;;2682 Boulevard François Xavier Fafeur 11000 Carcassonne;;[1.6457, 50.5759];;FRCPIE66019851;e270d760-c439-4b2f-a380-dc52b4568f62;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.198907;48.8502305;;;; +;;;;;;;;FRS56PFTJNQSUBFI;01F5ZAKH61R37GJPE2BGRQBVFE;Paris | Rue Ordener 120;;45 Chemin des Oliviers 11590 Sallèles-d'Aude;;[1.6374, 50.5766];;FRS51E125306;FR*LUM*EPOINTSUBLIME1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.669435;43.31506007724927;;;; +;;;;;;;;FRS56PVOHTCOIT7B;01F5ZAKH61JQAJB8N08A2XPVV4;Paris | Rue Sofia 16;;Hôtel Orchidées Rue Robert Schumann 55100 Verdun;;[3.090019, 50.123916];;FRS51E125305;d005bf55-220d-4301-93f0-5c7a657c1412;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.865283;49.119763;;;; +;;;;;;;;FRS56PYHQTBN;01F5ZAKH61JRJ229GGPBXGQRTW;Paris | Rue Jacques Duchesne 1;;AVENUE DU CAMP DU DRAP D'OR;;[3.090159, 50.122864];;FRS51E10673;R*LUM*ELAGRANDEBASTIDE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.449003;44.199678;;;; +;;;;;;;;FRS56PPYLBEV;01F5ZAKH61QHH4V61S5VESVP7P;Paris | Avenue de Flandre 61;;CARRIERE DOREE;;[2.580335, 50.829441];;FRS51E10672;FR*LUM*ELOUCASTELET1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.186405;48.93390425439423;;;; +;;;;;;;;FRFR1PMRLB3TAK7Z;01F5ZAKH61DPW9CNSTFH732PYT;Paris | Rue Botzaris 76;;1 Rue Gaston Berger 13010 MARSEILLE-10E;;[5.963146, 46.097489];;FRS51E49689;ABKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.133269952383021;44.866331;;;; +;;;;;;;;FRS56PVCVTUT;01F5ZAKH61226N04Q3D9F4JANT;Paris | Rue Ravignan 1bis;;Traverse De La Roue, Bd De St Loup (Place Guy Durand) 13010 MARSEILLE-10E;;[5.926063, 45.672131];;FRS51E49688;0bb5e066-d30e-49e1-bfab-3d01437ca3b9;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.836437;48.595281;;;; +;;;;;;;;FRS56PJSEDAA;01F5ZAKH6137W78F5N8C2QK3VA;Paris | Rue Jean-François Lépine 1;;Chemin la Valbarelle à St-Marcel 13010 MARSEILLE-10E;;[-1.538004, 47.972518];;FRCPIE66019852;e7eeafb6-a4a5-4a79-9588-47fa400dcbae;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.468731;47.768193;;;; +;;;;;;;;FRS56PCNWQDX;01F5ZAKH61ZBJNVVX7GPVZJR86;Paris | Rue Marcadet 150;;271 Bd Paul Claudel 13010 MARSEILLE-10E;;[4.874171, 45.018137];;FRCPIE65521952;55851;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.241364539907534;49.523482;;;; +;;;;;;;;FRS56PPTJEBK;01F5ZAKH61543XR9FNK0WBWB8W;Paris | Rue Custine 17;;Place Alderic Chave 13700 MARIGNANE;;[-0.07922256090806372, 43.22956922042935];;FRIENE0010024;55852;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.335014;47.975069;;;; +;;;;;;;;FRS56PFPKPDC;01F5ZAKH61FTXDZBQKSYMRJR4Q;Paris | Rue Caulaincourt 17;;1 Rue Alfred Curtel 13010 MARSEILLE-10E;;[1.496258, 45.052079];;FRCPIE65856451;88247;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.507334;47.789562;;;; +;;;;;;;;FRS56PPTAZYC;01F5ZAKH617Z7JPB2W1XVCXPCM;Paris | Rue Championnet 162;;270 Route Des 3Lucs La Valentine 13011 MARSEILLE-11E;;[0.254647, 48.055847];;FRIENE0010023;88248;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5132;46.418606;;;; +;;;;;;;;FRFR1PSQMYKHQ3PK;01F5ZAKH614BC0DWNSTX28T6S1;Paris | Boulevard de Clichy 2;;Boulevard De La Libération 13700 MARIGNANE;;[2.145602, 48.635405];;FRIONE432415;6d57d6b8-f332-4d22-afc7-5ea9bb42915f;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.520438;43.8755;;;; +;;;;;;;;FRFR1PTVOJ4ZF90H;01F5ZAKH613YAZN3S2J4AMDG4C;Paris | Rue Championnet 28;;Parking De L'Auratoir 13370 MALLEMORT;;[2.899358, 42.779756];;FRIONE432414;49545;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1651;43.589684;;;; +;;;;;;;;FRS56PURNMJP;01F5ZAKH61B707RBDK5EFTM5VT;RELAIS DE POULET DE BRESSE;;Route de la Treille 13011 MARSEILLE-11E;;[1.859716, 47.976571];;FRIONE432413;25b7f3f0-9b4c-4ed7-b12b-346431d040e4;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.096547;43.713083462685034;;;; +;;;;;;;;FRS56PBUGKFT;01F5ZAKH61AR5S7HGFBEWKSTVH;RELAIS DE PORTE D'ALSACE SUD;;Boulevard Saint-Marcel 13011 MARSEILLE-11E;;[1.6666, 47.33821];;FRIONE432412;47259;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.719853;46.963869;;;; +;;;;;;;;FRS56PZFUQTJ;01F5ZAKH61BXDNWWQ0ST5558Y4;RELAIS DE TOUL DOMMARTIN;;Vieille Route De La Gavotte (Eglise Des Cadeneaux) 13170 LES PENNES-MIRABEAU;;[6.053499, 49.179691];;FRIONE432411;127535;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.076274;47.821635;;;; +;;;;;;;;FRS56PCYYADE;01F5ZAKH61YS90NBC7MSK83QP2;RELAIS DE ANGRES;;Traverse des Migauds 13011 MARSEILLE-11E;;[3.074, 50.540332];;FRIONE432410;65281;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.709794;48.21135002599696;;;; +;;;;;;;;FRS56PEETZMB;01F5ZAKH61NHB83D9ESKR7X5BM;RELAIS DE CREUX MOREAU;;3 Avenue Des Trois Lucs 13012 MARSEILLE-12E;;[5.78049, 45.197767];;FRIONE432409;65280;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.410002;49.78609;;;; +;;;;;;;;FRS56PQJSQBM;01F5ZAKH61BJ58DFFJ4X4N2B6Z;RELAIS LA COURNEUVE OUEST;;31 Avenue Fernandel 13012 MARSEILLE-12E;;[0.864688, 49.361312];;FRIONE432408;Non concerné;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.024536;44.8737;;;; +;;;;;;;;FRS56PXPBPBH;01F5ZAKH6106VFGF12QKK3NDS9;RELAIS DE LA CHAPONNE;;365 Avenue De Montolivet 13012 MARSEILLE-12E;;[2.128131, 49.402915];;FRIONE432407;95769;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.23132115;47.1617;;;; +;;;;;;;;FRS56PLLI2Z8CZS2PEU6;01F5ZAKH61QWHK70G0X1BKPBN8;RELAIS DE LA FERTE;;Avenue Des Caillols 13012 MARSEILLE-12E;;[1.655602, 43.752619];;FRIONE432406;f9073c7c-ba61-11ec-8422-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.383225;48.436347;;;; +;;;;;;;;FRS56PLEVJXJ;01F5ZAKH61XCEQM4H8763DKJRV;AIRE DE RESSONS OUEST;;Parking D113 13170 LES PENNES-MIRABEAU;;[6.072417, 45.877047];;FRIONE432405;61104586-0fe2-11ed-861d-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.144751;49.1295;;;; +;;;;;;;;FRFR1PHOT2JOEZEY;01F5ZAKH61J4GEKKMK6ZRRDMHV;RELAIS VIRONVAY NORD;;Parking Des Arnavaux 13800 ISTRES;;[3.795923, 43.547473];;FRIONE432404;50713;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.389485;45.772967;;;; +;;;;;;;;FRFR1PZUASAQ;01F5ZAKH61JWDDTJEE5S4C3RY1;RELAIS TARDENOIS SUD;;Avenue René Seyssaud 13580 LA FARE-LES-OLIVIERS;;[5.863486341983179, 48.26738780480035];;FRIONE432403;50663;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.12959;48.981678;;;; +;;;;;;;;FRFR1PAPWTIE1O95;01F5ZAKH61V21XFV3EBBW23ZCJ;RELAIS DE VALLEE DE L ERVE;;Avenue Du Mistral 13112 LA DESTROUSSE;;[3.111322, 46.057755];;FRIONE432402;FR*LUM*ECLECHAMPS1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.112511;49.444077;;;; +;;;;;;;;FRFR1PJWHLNC;01F5ZAKH61FG0J89KJ37MYHJGE;RELAIS VIRONVAY SUD;;Route Des Feissiniers - Parking Tennis 13330 LA BARBEN;;[0.608616, 44.171001];;FRIONE432401;FR*LUM*EATELIER1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.745091;48.707985;;;; +;;;;;;;;FRFR1PLLHUDJR8729BFQ;01F5ZAKH61X8484D24XKRFEH9V;RELAIS TARDENOIS NORD;;Mairie Annexe Prépaou 13800 ISTRES;;[2.316345, 48.823581];;FRTNME19B911970;FR*LUM*EVILADELAMARHOTEL1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.406246;45.442142;;;; +;;;;;;;;FRFR1PWLHEXK;01F7RQ4ZF5QVYGXR1RG90QKZ3X;RELAIS DE COEUR DES HAUTS DE FRANCE;;Vieille Route De La Gavotte - Parking Square Jean Moulin 13170 LES PENNES-MIRABEAU;;[2.780632, 48.635678];;FRIONE432417;FR*LUM*ECAMPINGLESOUSBOIS1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.596739;50.61693;;;; +;;;;;;;;FRFR1PWWLUVL;01F5ZAKH6188ZPT0CHFCQQM031;RELAIS DE FALAISES DE WIDEHEM EST;;Jean Moulin 13800 ISTRES;;[-1.0144273068944765, 47.419479];;FRIONE432418;35329;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.630401;48.8398361;;;; +;;;;;;;;FRFR1PPFMCUU;01F5ZAKH61N7MXZGDJMEN8TQYQ;RELAIS DE FALAISES DE WIDEHEM OUEST;;Gare Sncf 13800 ISTRES;;[-1.133697, 43.869821];;FRIONE43245;35328;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.247547;43.316251;;;; +;;;;;;;;FRFR1PBLIDF9PFDM;01F5ZAKH610WZFNN06YE1R2PHP;RELAIS DE GRAINCOURT;;Complexe Sportif Davini 13800 ISTRES;;[3.6546462208168315, 49.5713395660623];;FRIONE454208;131652;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.00808;48.891905;;;; +;;;;;;;;FRFR1PVNJBH5F0QI;01F5ZAKH61B7EXKKHQQMPAKWF5;RELAIS DE HAVRINCOURT;;Boulevard Voltaire 13821 LA PENNE-SUR-HUVEAUNE;;[7.363451, 48.759935];;FRIENE0010012;131655;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.667119;49.173149;;;; +;;;;;;;;FRFR1PXLILIHAPFT;01F5ZAKH615T44TYYE5HJP8AXY;RELAIS DE SAINT ELOI;;Rue De L'Europe Unie 13640 LA ROQUE-D'ANTHERON;;[2.286912, 48.835709];;FRIENE0010011;50737;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.173572;45.7547;;;; +;;;;;;;;FRFR1PHFFQCD;01F5ZAKH61K49RBSYZC50SY52B;RELAIS DE VALLEIRY NORD;;Cd 71 D Rte De La Provence 13113 LAMANON;;[2.303269, 48.86937];;FRIONE45425;50659;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.098026;48.550222;;;; +;;;;;;;;FRFR1PMOUTIERS;01F5ZAKH61M738W0VVEKZ9J14G;RELAIS DE DRUMETTAZ;;Route De Caireval 13410 LAMBESC;;[2.3696815, 48.878099];;FRIONE454212;50451;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.599122;48.83022;;;; +;;;;;;;;FRFR1PDB6JAUQC9M;ANYOS-IOTLAB-HBS8-P140;DODO - RELAIS SARL STATION JOUZEL;;Rue Saint-Marc 13680 LANCON-PROVENCE;;[2.335728, 48.88264];;FRIONE454211;50452;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.252268;45.850306;;;; +;;;;;;;;FRS56PVZHEMA;ANYOS-IOTLAB-HBS7-P139;RELAIS PONT DE L'ISERE;;664 Avenue Paul Julien 13100 LE THOLONET;;[2.309952, 48.847931];;FRIONE454210;131601;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12203;43.422748;;;; +;;;;;;;;FRS56PHDBBKQ;ANYOS-IOTLAB-HBS6-P138;RELAIS LES PYRENEES;;Place Jean Jaurès 13005 MARSEILLE-5E;;[2.309542, 48.875854];;FRIONE454209;77565;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.181563;47.167146;;;; +;;;;;;;;FRS56PLJZLHJ;ANYOS-IOTLAB-HBS5-P137;DODO - RELAIS DE LA CROIX BLANCHE;;Avenue Jean Compadieu 13012 MARSEILLE-12E;;[2.321369, 48.880698];;FRIONE454207;77564;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.726344;48.891207;;;; +;;;;;;;;FRS56PRNFCWQ;ANYOS-IOTLAB-HBS4-P136;SARTHE SARGE LE MANS NORD;;34 Avenue Laveran 13013 MARSEILLE-13E;;[2.360103, 48.875465];;FRCPIE65072851;131600;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.776472;47.280611;;;; +;;;;;;;;FRS56PGBVXDN;ANYOS-IOTLAB-HBS3-P135;LIMOURS JANVRY;;1 Rue Augustin Fresnel 13013 MARSEILLE-13E;;[2.379874, 48.858952];;FRIONE454206;57516;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.992246;44.85025;;;; +;;;;;;;;FRS56PBJDCGG;ANYOS-IOTLAB-HBS2-P115;RELAIS RIVESALTES NORD;;29 Boulevard De Dunkerque 13002 MARSEILLE-2E;;[2.36554, 48.865097];;FRIONE454205;49606;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.670919;48.780399;;;; +;;;;;;;;FRS56PHGVJHQ;ANYOS-IOTLAB-HBS1-P104;RELAIS ORLEANS GIDY;;28 Rue Jobin 13003 MARSEILLE-3E;;[2.387548, 48.854664];;FRIONE454204;50721;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.360609;48.089376;;;; +;;;;;;;;FRS56PFDWQJB;ANYOS-IOTLAB-HBS9-P141;RELAIS DE ROMORANTIN;;20 Rue Désirée Clary 13003 MARSEILLE-3E;;[2.377939, 48.865358];;FRIONE454203;50722;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.912803;43.422829;;;; +;;;;;;;;FRS56PCETTJG;ANYOS-IOTLAB-HBS10-P142;RELAIS METZ ST PRIVAT;;38 Rue De L'Evêché 13002 MARSEILLE-2E;;[2.405248, 48.834084];;FRIONE454202;142950;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.1364;48.055456;;;; +;;;;;;;;FRS56PHWGLVR;ANYOS-IOTLAB-HBS13-P156;RELAIS AVELIN;;1 Rue Jean François Leca 13002 MARSEILLE-2E;;[2.341483, 48.852459];;FRIONE454201;142953;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.092478;47.325805;;;; +;;;;;;;;FRS56PPPYXVZ;ANYOS-IOTLAB-HBS20-P239;RELAIS DE MEYLAN;;Place Des Marseillaises 13001 MARSEILLE-1E;;[2.331346, 48.852126];;FRCPIE65072852;142947;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.111099;48.986926;;;; +;;;;;;;;FRS56PUWNFHN;ANYOS-IOTLAB-HBS19-P238;RELAIS BOSGOUET NORD;;14 Allée Léon Gambetta 13001 MARSEILLE-1E;;[2.339865, 48.84824];;FRS08E57542;142948;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.212535;48.107428;;;; +;;;;;;;;FRS56PLJKNWD;ANYOS-IOTLAB-HBS18-P237;RELAIS DE SAINT MATHURIN ALLONNE;;11 Boulevard Montricher 13001 MARSEILLE-1E;;[2.31144092, 48.8606571];;FRCPIE65856452;55103;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.858496;47.473807;;;; +;;;;;;;;FRS56PBEDFUJ;ANYOS-IOTLAB-HBS17-P236;RELAIS PORTES DU TARN;;Boulevard De La Blancarde 13004 MARSEILLE-4E;;[2.345342915215558, 48.85061353189264];;FRCPIE66845751;125090;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.162850603858983;43.421975;;;; +;;;;;;;;FRS56PNNRVKY;ANYOS-IOTLAB-HBS16-P235;RELAIS DE LA RIPAILLE;;Avenue Des Chartreux 13004 MARSEILLE-4E;;[2.35242, 48.84477];;FRIONE432704;125091;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.812266;43.46707;;;; +;;;;;;;;FRS56PDXRKQV;ANYOS-IOTLAB-HBS15-P215;RELAIS MONTPELLIER FABREGUES NORD;;Avenue Des Chutes Lavie 13004 MARSEILLE-4E;;[2.326367, 48.851025];;FRS08E57716;55104;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.259203;48.816556;;;; +;;;;;;;;FRS56PSKSKQS;ANYOS-IOTLAB-HBS14-P204;RELAIS LORRAINE LES RAPPES;;Boulevard Jardin Zoologique 13004 MARSEILLE-4E;;[2.30437, 48.857552];;FRCPIE66659652;126576;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.489418;43.60815;;;; +;;;;;;;;FRS56PQQYWJL;ANYOS-IOTLAB-HBS12-P144;RELAIS VOLCANS D'AUVERGNE OUEST PL;;Cec Stade 13800 ISTRES;;[2.30749972, 48.8497494];;FRCPIE66659651;126575;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.32577;47.7167;;;; +;;;;;;;;FRS56PTZEPFV;ANYOS-IOTLAB-HBS11-P143;RELAIS PASSAGE D AGEN;;Rue Du Bosquet 13004 MARSEILLE-4E;;[2.31368, 48.852665];;FRS08E200427;225f248f-83e1-4ecd-898a-705d94eb7208;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.926765;43.216189;;;; +;;;;;;;;FRS56PEKGZCS;ANYOS-IOTLAB-HBS30-P336;RELAIS DE LA PORTE DE CHATILLON;;Boulevard Baille 13005 MARSEILLE-5E;;[2.327753, 48.857124];;FRS08E200426;02af2893-256f-4124-8d58-c728dc38f720;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.529364;49.403871;;;; +;;;;;;;;FRS56PCHQQTM;ANYOS-IOTLAB-HBS29-P335;RELAIS PORTES DE YEBLES;;Boulevard Jean Moulin (Jarret) 13005 MARSEILLE-5E;;[2.38804, 48.847446];;FRS08E57694;77820f96-7a75-43b4-8fc9-75748d52ee01;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.241010412111203;45.613803;;;; +;;;;;;;;FRS56PBJXJWS;ANYOS-IOTLAB-HBS28-P315;RELAIS VARADES PAYS DE LOIRE;;Boulevard D'Annam 13016 MARSEILLE-16E;;[2.345032, 48.845715];;FRS08E57693;FR*LUM*EATRIUMGOLBEY1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.493363;47.977888;;;; +;;;;;;;;FRS56PMWDFEN;ANYOS-IOTLAB-HBS27-P304;RELAIS DE CASTETS;;Rue Frédéric Joliot Curie 13013 MARSEILLE-13E;;[2.325895, 48.83086];;FRSHEE954;FR*LUM*EHOTELKYRIADBALARUC1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.0686;49.10100138963425;;;; +;;;;;;;;FRS56PMNFMWG;ANYOS-IOTLAB-HBS26-P256;RELAIS CHAMP DU ROY LAON;;101 Rue Alphonse Daudet 13013 MARSEILLE-13E;;[2.323891, 48.841198];;FRSHEE953;e229735d-27d8-4207-80ce-7b6afefbe501;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.431166;48.961863;;;; +;;;;;;;;FRS56PXAYSUU;ANYOS-IOTLAB-HBS25-P244;RELAIS SAVERNE MONSWILLER;;45 Avenue De Saint-Jérôme 13013 MARSEILLE-13E;;[2.336857, 48.824388];;FRSHEE952;63713;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.150559;43.391046;;;; +;;;;;;;;FRS56PKHNUDJ;ANYOS-IOTLAB-HBS24-P243;Paris | Rue Desnouettes 55;;6 Chemin De Palama 13013 MARSEILLE-13E;;[2.358146, 48.826039];;FRSHEE951;63712;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.149616;47.265314;;;; +;;;;;;;;FRS56PWCCSFT;ANYOS-IOTLAB-HBS23-P242;Paris | Rue Pierre Charron 55;;61 Avenue De Saint-Just 13013 MARSEILLE-13E;;[2.367798, 48.82312];;FRSHEE944;49702;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.070386;48.584798;;;; +;;;;;;;;FRS56PSSHGWX;ANYOS-IOTLAB-HBS22-P241;Paris | Place du Colonel Fabien 9;;Avenue Des Poilus 13013 MARSEILLE-13E;;[2.343366, 48.826504];;FRSHEE943;48423;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.905094;47.337545;;;; +;;;;;;;;FRS56PXQMKFJ;ANYOS-IOTLAB-HBS21-P240;Paris | Boulevard de Clichy 31;;Rue des Glycines 13013 MARSEILLE-13E;;[2.320052, 48.831448];;FRSHEE942;48422;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3735;44.231895;;;; +;;;;;;;;FRS56PZSBMZW;ANYOS-IOTLAB-HBS34-P340;Paris | Rue Pérignon 2;;42 Boulevard Charles Moretti 13014 MARSEILLE-14E;;[2.279884, 48.846214];;FRSHEE941;64646;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.375428;48.214366530490125;;;; +;;;;;;;;FRS56PTHSFCS;ANYOS-IOTLAB-HBS32-P338;Paris | Rue Louis Murat 2;;9 Rue Rabelais 13016 MARSEILLE-16E;;[2.320272, 48.843753];;FRS08E57692;64645;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.827109;46.114344;;;; +;;;;;;;;FRS56PYDWRKB;ANYOS-IOTLAB-HBS31-P337;Paris | Rue de Rome 72;;9 Boulevard Gay Lussac 13014 MARSEILLE-14E;;[2.300643, 48.828454];;FRS08E57691;80464;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.204589;48.972589;;;; +;;;;;;;;FRS56PWZXSRJ;ANYOS-IOTLAB-HBS33-P339;Paris | Rue du Faubourg Saint Martin 150;;Boulevard Simon Bolivar 13014 MARSEILLE-14E;;[2.286931, 48.841663];;FRS08E57717;80465;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.31121;44.979033;;;; +;;;;;;;;FRS56PCVJQYU;ANYOS-IOTLAB-HBS36-P342;Paris | Avenue Parmentier 4;;Boulevard Ledru-Rollin 13015 MARSEILLE-15E;;[2.305529, 48.834705];;FRS08E57722;128989;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.593513;48.652612;;;; +;;;;;;;;FRS56PYVPZUN;ANYOS-IOTLAB-HBS35-P341;Paris | Boulevard du Temple 27;;Chemin Des Bourrely 13015 MARSEILLE-15E;;[2.389173, 48.833603];;FRS08E57723;59911;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.32789;49.487559;;;; +;;;;;;;;FRFR1PWMNJBT;ANYOS-IOTLAB-HBS38-P344;Paris | Rue Léon Frot 26;;Rue André Allar 13015 MARSEILLE-15E;;[2.397822, 48.839947];;FRIONE41015;50784;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.623604;45.844552;;;; +;;;;;;;;FRS56PZGBPNA;ANYOS-IOTLAB-HBS40-P415;Paris | Rue Saint-Maur 94;;148 Plage De L'Estaque 13016 MARSEILLE-16E;;[2.411238, 48.845265];;FRCPIE66845452;JYMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.504672;45.739317;;;; +;;;;;;;;FRS56PPTMTEE;ANYOS-IOTLAB-HBS39-P356;Paris | Avenue du General Dodds 3;;Place Pierre Limberton 13103 MAS-BLANC-DES-ALPILLES;;[2.374877, 48.846295];;FRCPIE66845451;SKGY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.838227;48.900638;;;; +;;;;;;;;FRS56PCYTRZG;ANYOS-IOTLAB-HBS37-P343;Paris | Rue Danton 7;;Chemin Des Plâtrières 13080 AIX-EN-PROVENCE;;[2.401736, 48.847485];;FRIONE40805;HMWL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.269559;45.589631;;;; +;;;;;;;;FRS56PTZEHVV;ANYOS-IOTLAB-HBS43-P455;Paris | Rue de Rennes 66;;Cours Sextius 13090 AIX-EN-PROVENCE;;[2.3748828, 48.8412037];;FRIONE408005;HMWL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.80428;49.609844;;;; +;;;;;;;;FRS56PZFRNAW;ANYOS-IOTLAB-HBS42-P435;Paris | Rue de Medicis 11;;Cours Saint-Louis 13090 AIX-EN-PROVENCE;;[2.372971, 48.822432];;FRIONE408004;BSPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.172111;43.86441;;;; +;;;;;;;;FRS56PPMKMGS;ANYOS-IOTLAB-HBS41-P434;Paris | Rue Fabert 22;;Cours Marcel Bremond 13290 AIX-EN-PROVENCE;;[2.363025, 48.832893];;FRIONE408003;JYMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.848176;46.715962;;;; +;;;;;;;;FRS56PLQPFQW;25b71f4e-65b6-4bbb-91d1-834ec3833734;Paris | Rue Saint-Jacques 34;;Boulevard Du Roi René 13090 AIX-EN-PROVENCE;;[2.34965, 48.835499];;FRIONE408002;BSPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.850927825;49.32443;;;; +;;;;;;;;FRS56PURGRZH;FRCARP74282A;Paris | Rue Monge 55;;Avenue Jean Orsini - Parking De La Salle Des Fêtes De Puyricard 13540 AIX-EN-PROVENCE;;[2.343626, 48.82085];;FRIONE410104;SKGY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.769017;45.278781;;;; +;;;;;;;;FRS56PHJHXYP;FRCARP35288A;Paris | Rue de Sevres 20;;Avenue Saint-Mitre Des Champs 13090 AIX-EN-PROVENCE;;[2.97228, 42.951091];;FRS08E57726;PPVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.742603853735758;49.592204;;;; +;;;;;;;;FRS56PFYJMNZ;FRCARP62652A;Paris | Avenue Bosquet 47;;Avenue Robert Daugey 13080 AIX-EN-PROVENCE;;[1.641518, 47.819657];;FRIONE410103;PPVH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.125336;46.96323;;;; +;;;;;;;;FRS56PAPALYU;FRCARP17274A;Paris | Avenue de Saxe 10;;Avenue Jules Ferry 13090 AIX-EN-PROVENCE;;[-0.604571, 45.894616];;FRIONE410102;SLGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.035532;43.721222;;;; +;;;;;;;;FRS56PZCZYVW;FRCARP79048A;Paris | Avenue de Villars 9;;Place Albert Laforest 13080 AIX-EN-PROVENCE;;[6.4519, 43.4155];;FRIONE410101;JYRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.50616;43.35267;;;; +;;;;;;;;FRS56PYEHCXH;FRCARP45025A;Paris | Rue du Bac 35;;Place Du Souvenir Français 13090 AIX-EN-PROVENCE;;[0.036728, 45.001584];;FRCPIE66859352;PEUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26627;47.42224;;;; +;;;;;;;;FRS56PTI8PEKPXSF;f07350fd-879f-4cb5-9cee-8300c3b9e936;Paris | Boulevard Diderot 126;;Place Sextia Conca - 75 Route Des Milles 13090 AIX-EN-PROVENCE;;[4.246004, 49.119215];;FRCPIE66859351;SLUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.37080308694003083;43.84322;;;; +;;;;;;;;FRS56POTFVUHHRFE;9fde0393-47b8-4e9a-a0ea-635a099b06f4;Paris | Place du Panthéon 17;;Route De Sisteron 13100 AIX-EN-PROVENCE;;[7.365282, 48.761676];;FRSHEE781;SLYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.52491;43.84343386;;;; +;;;;;;;;FRS56PCGGCRTEPRZ;52a68029-6dbc-4c2b-8061-3fb41b638ad5;Paris | Avenue du Maine 173;;Rue Du Dr Lucien Cartotto 13090 AIX-EN-PROVENCE;;[-0.826153, 47.135404];;FRS08E57727;SLGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.39864;45.80924;;;; +;;;;;;;;FRS56PBD9SBFG89K;E175100;Paris | Boulevard Edgar Quinet 9;;Rue Neil Armstrong 13100 AIX-EN-PROVENCE;;[4.295566333126504, 45.524520306313626];;FRIONE432705;MYDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.826339;50.40453203652518;;;; +;;;;;;;;FRS56PHFVGTE;E175099;Paris | Avenue Reille 46;;Avenue Jean Moulin - Parking Fassanaro 13190 ALLAUCH;;[5.354652, 43.346007];;FRIONE432703;MYKC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.742822;48.456669;;;; +;;;;;;;;FRS56PCVA0LBMFFS;FRMOB69570FIREXAC01;Paris | Rue de Tolbiac 145;;Chemin Du Garlaban - Parking Monge 13190 ALLAUCH;;[2.34046, 48.86003];;FRS08E57697;NUBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.44222;43.589282;;;; +;;;;;;;;FRS56PPWIHLJMHAB;FRMOB69570FIREXAC02;Paris | Rue Regnault 118;;Pré D'Ester 13890 MOURIES;;[2.34556, 48.854057];;FRIONE432702;MYJU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.436995;44.87366;;;; +;;;;;;;;FRS56PFCQHSR;FRMOB69570FIREXAC04;Paris | Rue de Tolbiac 234;;Maison De Retraite De La Vallée Des Baux 13520 MAUSSANE-LES-ALPILLES;;[5.362246, 43.235483];;FRS08E57613;SKGU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.907771;48.835002;;;; +;;;;;;;;FRS56PLLI2WDITY2FS8E;FRMOB69570FIREXAC05;Paris | Rue Didot 47;;Avenue Des Alpilles 13520 MAUSSANE-LES-ALPILLES;;[5.3953496, 43.2674985];;FRS08E57612;SBRQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34749;46.29755602592633;;;; +;;;;;;;;FRS56PGSBW6HJK6Q;FRMOB69570FIREXAC06;Paris | Avenue Emile Zola 18;;Parking Des Arènes 13990 FONTVIEILLE;;[5.474731, 43.30344];;FRS08E57609;JYYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.193534;48.900075;;;; +;;;;;;;;FRS56PNE1A8MI3RW;FRMOB69570FIREXAC07;Paris | Avenue du Maine 16/18;;Avenue Jean Et Marcel Fontenaille 13100 AIX-EN-PROVENCE;;[5.591773, 43.246902];;FRS08E57608;NBFS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.83576;48.855643;;;; +;;;;;;;;FRS56POXD9WRDSZQ;FRMOB69570FIREXAC08;Paris | Rue Antonin Mercié 2;;Parking Avenue Leon Blum 13810 EYGALIERES;;[2.33321, 48.870628];;FRS08E57605;YHBR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.453912;43.5245;;;; +;;;;;;;;FRS56PQJ6QKLM4O5;FRMOB69570FIREXAC09;Paris | Rue de la Convention 99;;Place Du Huit Mai 1945 13930 AUREILLE;;[2.343436, 48.865311];;FRS08E57604;YJKW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.376323;45.590873;;;; +;;;;;;;;FRS56PFLENKG;FRMOB69570FIREXAC03;Paris | Rue de Vouillé 25;;Rue George 13005 MARSEILLE-5E;;[2.342244, 48.865788];;FRS08E57600;TLLH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.494;48.829064;;;; +;;;;;;;;FRS56PDNSWQT;EVB-P21151698;Paris | Rue Baron le Roy 53;;Parking Des coles 13520 PARADOU;;[2.359043, 48.864719];;FRS08E57599;SLYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.11733;48.59459;;;; +;;;;;;;;FRS56PNEDQCA;EVB-P1903315;Paris | Rue Docteur Goujon 5;;Avenue Frédéric Mistral 13103 SAINT-ETIENNE-DU-GRES;;[2.3615763, 48.8502305];;FRCPIE65133352;ZEYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.062407;44.645735;;;; +;;;;;;;;FRS56PPREPCWAOME;b2e5c99b-76e6-4eb7-91a6-cdea850b99ec;Paris | Rue Changarnier 4;;Avenue De La Libération 13210 SAINT-REMY-DE-PROVENCE;;[5.369344884371708, 43.31506007724927];;FRCPIE65133351;ZEYA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.296055;44.94012;;;; +;;;;;;;;FRS56PUT10PKNXV9;5f632578-9bb2-4c7d-b991-8f77b09b1f9f;Paris | Rue Abel 2;;Avenue Louis Mistral 13210 SAINT-REMY-DE-PROVENCE;;[4.244126, 49.119763];;FRS08E57593;MXML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.00055;48.758095;;;; +;;;;;;;;FRS56PPSZCJC;E147592;Paris | Cours de Vincennes 66;;Office De Tourisme - Place Jean Jaurès 13210 SAINT-REMY-DE-PROVENCE;;[0.507557, 44.199678];;FRS08E57592;SKGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.07982;43.589351;;;; +;;;;;;;;FRS56PLBRBBU;E147593;Paris | Rue Villiot 10;;Place Du Général De Gaulle 13210 SAINT-REMY-DE-PROVENCE;;[2.391378846523969, 48.93390425439423];;FRS55E81273;NBFS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.098658;45.6516;;;; +;;;;;;;;FRS56PCGJZHNOXXN;2ea7b747-59db-4b70-b0a4-7e64286475ba;Paris | Avenue Claude Régaud 3;;Avenue De Tübingen 13090 AIX-EN-PROVENCE;;[4.867226, 44.866331];;FRS55E81272;MYAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.016955;43.291896;;;; +;;;;;;;;FRS56PGQ6RXOGQR9;209f1166-0199-4e71-93f1-3759c8086176;Paris | Boulevard Vincent-Auriol 137;;Avenue François Argo - Parking Annexe Mairie 13100 AIX-EN-PROVENCE;;[2.443222, 48.595281];;FRS55E81268;MXML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.509803;48.805832;;;; +;;;;;;;;FRS56PYCX0MN1QXX;ddd39de6-d91a-11ed-afa1-0242ac120002;Paris | Rue Berbier du Mets 21;;Chemin Marius Milon / Chemin Des Mille Ecus 13190 ALLAUCH;;[7.382357, 47.768193];;FRS55E81267;JYRB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3719914;46.7483;;;; +;;;;;;;;FRFR1PJQ6N8HQWWD;b662d8fe-d919-11ed-afa1-0242ac120002;Paris | Rue de l'Amiral Mouchez 77;;Avenue René Cassin 13980 ALLEINS;;[2.722189, 49.523482];;FRS08E57698;SBRQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.374203;46.057926;;;; +;;;;;;;;FRFR1PAUFXYU;1339d91c-529f-4fdc-abf5-bbf33cb4185d;RELAIS DE LA PALME EST;;Parking Des Coulins 13820 ENSUES-LA-REDONNE;;[3.198907, 47.975069];;FRS08E57615;MYAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3664376;50.650931;;;; +;;;;;;;;FRFR1PPNUWUA;8cec9f22-53ca-40ba-9fc4-c58494ecc43c;RELAIS BEAUGENCY MESSAS;;Avenue D'Arménie (Semag) 13120 GARDANNE;;[3.669435, 47.789562];;FRS08E57616;NURW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.390264;46.20308;;;; +;;;;;;;;FRFR1PMXZDMN;e274e464-c94c-11ed-afa1-0242ac120002;RELAIS DE FENIOUX OUEST;;Allée Henri Barbusse 13270 FOS-SUR-MER;;[4.865283, 46.418606];;FRS08E57623;NURW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.37139;44.9997;;;; +;;;;;;;;FRFR1PBSWCES;ddaaa09a-c94c-11ed-afa1-0242ac120002;RELAIS VIDAUBAN NORD;;Avenue Saint Veredeme 13430 EYGUIERES;;[4.449003, 43.8755];;FRS08E57637;MXQC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.397761;44.329297;;;; +;;;;;;;;FRFR1PENQKRY;d642bc84-c3e4-4813-be28-38feb316f9ff;RELAIS DES PALOMBIERES;;Avenue Des Anciens Combattants 13510 EGUILLES;;[5.186405, 43.589684];;FRCPIE65186152;MXQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3809277;48.090032;;;; +;;;;;;;;FRFR1PQGPKVC;41b21718-caa0-4a4e-9904-8c02f5ae1684;RELAIS REIMS CHAMPAGNE NORD;;Chemin Du Cimetière 13780 CUGES-LES-PINS;;[4.133269952383021, 43.713083462685034];;FRCPIE65186151;JYYV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3825248;45.541115;;;; +;;;;;;;;FRFR1PHSKUAV;1fc222f1-5977-493d-a446-f33359543573;RELAIS SAVERNE ECKARTSWILLER;;Rue Des Ferrages 13250 CORNILLON-CONFOUX;;[4.836437, 46.963869];;FRS08E57688;UDXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3830368;48.86023;;;; +;;;;;;;;FRFR1PFASQGG;cc8997b4-a697-49c6-9dc4-9a3bbdca3a4e;RELAIS DE TREMENTINES;;Parking De La Cité Administrative 13120 GARDANNE;;[-3.468731, 47.821635];;FRS08E57687;NUBH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.36289;48.85579;;;; +;;;;;;;;FRFR1PEVBSNL;ccabc598-0b7e-11ee-be56-0242ac120002;RELAIS DES COQUELICOTS;;Place De Biver 13120 GARDANNE;;[4.241364539907534, 48.21135002599696];;FRCPIE65171552;SBXF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3783382;48.8657658;;;; +;;;;;;;;FRFR1PFLFETT;ccd2fa32-0b7e-11ee-be56-0242ac120002;AMP | 527 Chemin de la Madrague-Ville;;Rue Du Stade - Parking Savine 13120 GARDANNE;;[3.335014, 49.78609];;FRCPIE65171551;LMTF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.348162;48.8577957;;;; +;;;;;;;;FRFR1PGLHZJS;non concerné;Paris | Rue de L'Amiral De Coligny 1;;Chemin de Routelle 13420 GEMENOS;;[-0.507334, 44.8737];;FRS08E57638;LKVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3551424;48.857259;;;; +;;;;;;;;FRFR1PCZLFEL;FRWBCERCG0C21148;Paris | Quai du Marché Neuf 4;;Boulevard Perrier 13180 GIGNAC-LA-NERTHE;;[-1.5132, 47.1617];;FRS08E57634;SESP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.384125;48.84948;;;; +;;;;;;;;FRFR1PBNQCVM;352fac34-e899-4a98-940b-6f3448f9436f;AMP | 18 Boulevard de la Grotte Rolland;;Rue De L'Egalité - Parking Place Du Souvenir Français 13450 GRANS;;[1.520438, 48.436347];;FRS08E57624;LTSU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3509617;48.8615346;;;; +;;;;;;;;FRFR1PRCMSEE;756454;Michelet-Vélodrome;;Cec Piscine 13800 ISTRES;;[6.1651, 49.1295];;FRS08E57633;LEMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4050137;48.8561529;;;; +;;;;;;;;FRFR1PQLKTCA;107a257c-77d6-4050-831c-1cfb9c1a231e;AMP | 168 Route des Trois Lucs à la Valentine;;Place Des Résistants 13220 CHATEAUNEUF-LES-MARTIGUES;;[3.096547, 45.772967];;FRS08E57630;LKVT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3878529;48.8525733;;;; +;;;;;;;;FRFR1PYIAIVNQITZ;9a20d4d6-4f37-4557-be0f-81cae434db06;Roquefort La Bedoule;;Place André Leblanc 13350 CHARLEVAL;;[1.719853, 48.981678];;FRS08E57629;SDZT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3862243;48.87484;;;; +;;;;;;;;FRFR1PN2CH6C5QBH;6a3786a6-dc93-4cb9-af0c-ed80139a1d37;Paris | Boulevard des Capucines 7;;Parking Des Lisses 13130 BERRE-L'ETANG;;[1.076274, 49.444077];;FRS08E57628;SEZJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3922556;48.8553267;;;; +;;;;;;;;FRFR1PX9UCRG8ZDU;UVG0D07005;Paris | Rue Étienne Marcel 44;;1465 Route Nationnale 8, Le Charrel 13400 AUBAGNE;;[7.709794, 48.707985];;FRS08E57627;LMVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3856322;48.87517;;;; +;;;;;;;;FRFR1PR6EKEKG2QM;efeb05dd-38ba-4e6b-9661-32bef5c668c7;Paris | Rue Étienne Marcel 52;;22 Avenue De Verdun 13400 AUBAGNE;;[4.410002, 45.442142];;FRS08E57626;SBXF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.407044;48.8740698;;;; +;;;;;;;;FRFR1PVCFWJE8H9N;fbe29b94-6def-4919-b3a0-cfdc35fbdd9a;Paris | Rue Réaumur 5;;Avenue Des Soeurs Gastine 13400 AUBAGNE;;[3.024536, 50.61693];;FRS08E57625;LEMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.367915;48.858606;;;; +;;;;;;;;FRFR1PMBSSYTGNDB;29b639e2-1a77-11ee-be56-0242ac120002;Paris | Quai Henri IV 44;;Centre De Vie Agora 13400 AUBAGNE;;[2.23132115, 48.8398361];;FRCPIE65578052;LDAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3713985;48.8801236;;;; +;;;;;;;;FRS56PWUMDJK;9c0e8341-8c4a-4286-9eba-0985b15ffb0c;Rue de Ruffi;;Place Raymond Plumier 13390 AURIOL;;[5.383225, 43.316251];;FRCPIE65578151;LDAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3923486;48.8415951;;;; +;;;;;;;;FRS56PNFGWPG;YZERON;RELAIS REIMS CHAMPAGNE SUD;;Route De Pelissane 13121 AURONS;;[2.144751, 48.891905];;FRCPIE65578251;SDZT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.36784;48.839191;;;; +;;;;;;;;FRS56PLYQNFS;2f68eef6-cc99-11ed-afa1-0242ac120002;RELAIS AGEN PORTE D'AQUITAINE;;Parking De L'Europe 13130 BERRE-L'ETANG;;[-0.389485, 49.173149];;FRFASE3302601;SFPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.371679;48.8632221;;;; +;;;;;;;;FRS56PFZXXAW;0eb30e38-cc9b-11ed-afa1-0242ac120002;RELAIS LA COURNEUVE EST;;Boulevard Montesquieu 13320 BOUC-BEL-AIR;;[3.12959, 45.7547];;FRFASE3309606;SBHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.376434;48.8364094;;;; +;;;;;;;;FRS56PLYBRMC;FR*BHM*ECAMPINGCLERIGOERVELINA*1;RELAIS PORTES LES VALENCE EST;;Impasse Des Acacias 13320 BOUC-BEL-AIR;;[-3.112511, 48.550222];;FRFASE3309605;LMVE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.387246;48.8473293;;;; +;;;;;;;;FRS56PGRGKRU;FR*BHM*ECAMPINGCLERIGOERVELINB*1;RELAIS VILLABE;;Rue Roumavage 13480 CABRIES;;[2.745091, 48.83022];;FRFASE3309604;SESP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.312597;48.8444;;;; +;;;;;;;;FRS56PPVGAUH;50785;RELAIS ILE NAPOLEON;;Place Du Maréchal Lyautey 13470 CARNOUX-EN-PROVENCE;;[3.406246, 45.850306];;FRFASE3309603;LTSU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3338862;48.84837;;;; +;;;;;;;;FRS56PTJTDLE;0b3e19ec-0aa7-11ee-be56-0242ac120002;AIRE DE RESSONS EST;;Avenue Aristide Briand 13620 CARRY-LE-ROUET;;[-1.596739, 43.422748];;FRFASE3309602;LPQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3466528;48.8640621;;;; +;;;;;;;;FRS56PRRSVSJ;55d15d82-0aa4-11ee-be56-0242ac120002;RELAIS DE LA COULINE;;Parking Daudet 13260 CASSIS;;[0.630401, 47.167146];;FRFASE3309601;AHAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.336666;48.853661;;;; +;;;;;;;;FRS56PZCGGHS;9d048374-0445-11ee-be56-0242ac120002;RELAIS VENOY CHABLIS;;Chemin Des Peupliers 13600 CEYRESTE;;[2.247547, 48.891207];;FRCPIE67696852;MUDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3347774;48.86661;;;; +;;;;;;;;FRS56PADZEDJ;84743104-0456-11ee-be56-0242ac120002;RELAIS MACON LA SALLE;;Avenue Escadrille Normandie Niemen 13013 MARSEILLE-13E;;[5.00808, 47.280611];;FRCPIE67696851;FXMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.326691;48.8690795;;;; +;;;;;;;;FRS56PEVRKJN;FRWBCERCG0C2115C;RELAIS MARGUERITTES NORD;;Avenue De Delphes 13006 MARSEILLE-6E;;[-0.667119, 44.85025];;FRIONE40895;AGEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3454871;48.85189;;;; +;;;;;;;;FRS56PWMNCFY;FRWBCERJG0C23026;AIRE DE LANCON DE PROVENCE OUEST;;131 Boulevard Michelet 13009 MARSEILLE-9E;;[2.173572, 48.780399];;FRIONE408904;LSTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.342083;48.8499672;;;; +;;;;;;;;FRS56PJEAFVZ;FRWBCERJG0C2303B;RELAIS AMBRUSSUM SUD;;Quai Général Leclerc 13500 MARTIGUES;;[-1.098026, 48.089376];;FRIONE408903;LPQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3382898;48.87006;;;; +;;;;;;;;FRS56PHRLQKX;FRWBCERCG0C210E4;RELAIS BEAUNE TAILLY;;Avenue De La Gare De La Couronne 13500 MARTIGUES;;[-1.599122, 43.422829];;FRIONE408902;LSTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.310832;48.8716413;;;; +;;;;;;;;FRS56PHUSQJB;FRWBCERCG0C2115F;RELAIS GUIDEL SUD;;Boulevard de l'Océan 13009 MARSEILLE-9E;;[0.252268, 48.055456];;FRIONE408901;SFPS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3082976;48.8735894;;;; +;;;;;;;;FRS56PDREUCR;FRWBCERCG0C2117D;RELAIS TROYES FRESNOY;;5 Boulevard De La Méditerranée 13015 MARSEILLE-15E;;[6.12203, 47.325805];;FRS37E1294;LMTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3226488;48.88109;;;; +;;;;;;;;FRS56PLDQXAG;FRWBCEHGG0C03009;RELAIS URVILLERS;;Square Du Lieutenant Danjaume 13007 MARSEILLE-7E;;[2.181563, 48.986926];;FRS37E1293;LPJX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.326167;48.878643;;;; +;;;;;;;;FRS56PGKP4F0ALTF;NVG0B46012;RELAIS LORMONT;;7 Place Saint-Victor 13007 MARSEILLE-7E;;[-1.726344, 48.107428];;FRFASE3302604;LKTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3283632;48.86972;;;; +;;;;;;;;FRS56PGEPWPS;NVG0B46002;RELAIS DE VERTOU GRASSINIERE;;90 Rue Grignan 13001 MARSEILLE-1E;;[0.776472, 47.473807];;FRFASE3302603;LMPD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.372482;48.8829733;;;; +;;;;;;;;FRS56PUXWAZX;FR*FR1*EVLH*1;RELAIS ROCADE CHARTRES;;Rue de Balotesti 13105 MIMET;;[5.992246, 43.421975];;FRFASE3309607;LMPD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3629571;48.875464;;;; +;;;;;;;;FRS56PUUDAHB;e09c9636-039a-11ee-be56-0242ac120002;RELAIS PORT MAZEROLLE;;Avenue De La Garenne 13790 PEYNIER;;[6.670919, 43.46707];;FRFASE3309608;LPJX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.366288;48.875921;;;; +;;;;;;;;FRS56PXZZHAR;E170549;DODO - RELAIS LAGARDE CLERMONT-FERRAND LAFAYETTE;;Avenue de Valdonne 13124 PEYPIN;;[2.360609, 48.816556];;FRCPIE66321651;SBHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.364206;48.8778333;;;; +;;;;;;;;FRS56PCNAHPN;589ab6df-40f9-4200-84ec-301b6c4e1faa;DODO - RELAIS SAS CONNECT AUTOMOBILES FRANCE - MANTES LA VILLE;;Boulevard Jean Jaurès 13340 ROGNAC;;[3.912803, 43.60815];;FRS18E140281;LKTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.354076;48.8761878;;;; +;;;;;;;;FRS56PXBEWHF;6481841c9c07be00ded7039d;RELAIS MONT RIBOUDET;;Avenue Louis Alard 13790 ROUSSET;;[7.1364, 47.7167];;FRS08E57620;SEZJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.372715;48.870601;;;; +;;;;;;;;FRS56PRZFTLA;6460e7e38a20f02768a74212;RELAIS HERRENWALD;;Avenue Marx Dormoy 13250 SAINT-CHAMAS;;[3.092478, 43.216189];;FRS08E57619;CMXH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3523208;48.87236;;;; +;;;;;;;;FRS56PPDYFKZ;6486b47a9c07be00ded73694;RELAIS PONT DE L'ANE;;Chemin de la Rabassière 13250 Saint-Chamas;;[1.111099, 49.403871];;FRS08E57596;YPZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3409177;48.8804478;;;; +;;;;;;;;FRS56PHTGWJF;6492bf327afd87059ff1b834;RELAIS DE L'EPINETTE;;Parking Nord 13610 SAINT-ESTVE-JEANSON;;[5.212535, 45.613803];;FRS08E57595;EWYQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3317475;48.87179;;;; +;;;;;;;;FRS56PATFEQY;6475957aef82e9f9494a574a;RELAIS DE SILLY;;Parking Sud 13610 SAINT-ESTVE-JEANSON;;[1.858496, 47.977888];;FRCPIE65517152;VCDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3387762;48.8814921;;;; +;;;;;;;;FRS56PLQHUAW;6460e6968a20f02768a741ff;RELAIS PLOMBIERE MARSEILLE;;456 Rue De Lyon 13015 MARSEILLE-15E;;[6.162850603858983, 49.10100138963425];;FRCPIE65517151;AHJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3600462;48.87237;;;; +;;;;;;;;FRS56PZMMMWQ;64a523703d8a3b5a632cbf19;LES TILLEULS;;Parvis Hotel De Ville - Esplanade Bernadin Laugier 13800 ISTRES;;[1.812266, 48.961863];;FRS18E140282;VCDQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3587236;48.87119;;;; +;;;;;;;;FRS56PLPU0REEKYH;64807c519c07be00ded6ea17;RELAIS BEAU SITE;;Place Champollion 13800 ISTRES;;[5.259203, 43.391046];;FRS08E57540;AHJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3408664;48.87081;;;; +;;;;;;;;FRS56PVVLALM;64807c069c07be00ded6ea12;RELAIS DE GERGOVIE;;Victor Hugo 13800 ISTRES;;[-1.489418, 47.265314];;FRCPIE66321652;MSNC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3216963;48.87565;;;; +;;;;;;;;FRS56PCURVAL;6460e2eb8a20f02768a741d4;RELAIS PLOUMAGOAR;;Sous Préfecture 13800 ISTRES;;[-1.32577, 48.584798];;FRS08E57539;MSNC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.364308;48.8750753;;;; +;;;;;;;;FRS56PZTUAMX;64807c309c07be00ded6ea14;RELAIS BUSSY ST GEORGES;;Avenue de la Gare 13490 JOUQUES;;[2.926765, 47.337545];;FRS88E163282;JDSZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.336613;48.8777212;;;; +;;;;;;;;FRS56PVMWQEJ;6486b0e79c07be00ded73672;RELAIS LIMAGNE SUD;;Rue de l'Hotel de Ville 13610 LE PUY-SAINTE-REPARADE;;[1.529364, 44.231895];;FRS88E163280;EWYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.32608;48.8806436;;;; +;;;;;;;;FRS56PJXKJUW;9a1318f7-e55f-4811-8e66-a6dfd17a0121;RELAIS BIDART EST;;Place de l'Eglise 13740 LE ROVE;;[4.241010412111203, 48.214366530490125];;FRCPIE66107652;REMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3297831;48.8723178;;;; +;;;;;;;;FRS56PXNARGA;E175271;RELAIS STE MAURE DE TOURAINE;;3 Boulevard Rouvier 13010 MARSEILLE-10E;;[5.493363, 46.114344];;FRCPIE66107651;EWUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.323305;48.8702567;;;; +;;;;;;;;FRS56PNAKFKG;E175270;RELAIS DE LA DEFENSE;;Boulevard Pierre Ménard 13011 MARSEILLE-11E;;[7.0686, 48.972589];;FRCPIE65509652;JDSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3580488;48.8750762;;;; +;;;;;;;;FRS56PTTMTLH;7ffd26f8-4030-45ea-be1b-8b9322e17e2d;RELAIS DE MARSANNAY LA COTE;;Chemin de Saint-Menet aux Accates 13011 MARSEILLE-11E;;[-0.431166, 44.979033];;FRCPIE65509651;EWUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3721949;48.8383124;;;; +;;;;;;;;FRS56PULLLGP;756453;RELAIS GIRONDE MERIGNAC;;11 Rue des électriciens 13012 MARSEILLE-12E;;[6.150559, 48.652612];;FRFASE3302602;WTZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3424498;48.8283698;;;; +;;;;;;;;FRS56PJZDKPB;26596;RELAIS CLAIRBOIS;;Rue De La Busserine 13014 MARSEILLE-14E;;[0.149616, 49.487559];;FRCPIE67703952;WUBZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3624101;48.824068;;;; +;;;;;;;;FRS56PWFEDWU;4db960aa-06c5-11ee-be56-0242ac120002;RELAIS MONDEVERT;;19 avenue de Chevigné 13560 SENAS;;[5.070386, 45.844552];;FRSHEE1782;WTZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3592348;48.82844;;;; +;;;;;;;;FRS56PAAVVNR;4e026926-06c5-11ee-be56-0242ac120002;RELAIS BIDART OUEST;;Avenue Marco Polo 13140 MIRAMAS;;[4.905094, 45.739317];;FRCPIE67703951;WUBZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.354296;48.83273;;;; +;;;;;;;;FRS56PYLFQUA;39513d7c-0472-11ee-be56-0242ac120002;SARTHE SARGE LE MANS SUD;;Route De Cavaillon 13750 PLAN-D'ORGON;;[2.3735, 48.9003];;FRS18E148715;RCUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3202972;48.8348549;;;; +;;;;;;;;FRS56PYPKBZP;E174559;RELAIS MARCHAUX;;Route du 19 mars 1962 13550 NOVES;;[2.375428, 48.900638];;FRS18E148714;RGWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2788853;48.842173;;;; +;;;;;;;;FRS56PGTDFXE;E153280;RELAIS DU CROISILLON;;Route De St Andiol 13940 MOLLEGES;;[4.827109, 45.589631];;FRIONE40435;CMXH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.28136;48.8260824;;;; +;;;;;;;;FRS56PAAYULB;E153279;RELAIS BARRE THOMAS;;Avenue Du Général De Gaulle 13690 GRAVESON;;[2.204589, 49.609844];;FRIONE404304;CCTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3370783;48.8279725;;;; +;;;;;;;;FRS56PRTQNMD;E174558;RELAIS TOURS VAL DE LOIRE;;Avenue Gabriel Péri 13630 EYRAGUES;;[3.31121, 43.86441];;FRIONE404303;SEVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.322823;48.8262319;;;; +;;;;;;;;FRS56PYBMHAN;f0563af9-5bb6-48ef-9982-2d8a8b00639c;RELAIS TERRASSES DE PROVENCE CENTRE VL;;Parking Avenue Marx Dormoy 13160 CHATEAURENARD;;[1.593513, 46.715962];;FRIONE404302;SEVQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3038076;48.8328237;;;; +;;;;;;;;FRS56PTGSHMS;b8e7213c-daf2-46d0-8fec-82917f4d1e1a;RELAIS CANAVER;;Gare Routière - Salle Du Réal 13160 CHATEAURENARD;;[0.32789, 49.32443];;FRIONE404301;CTKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.273328;48.8365583;;;; +;;;;;;;;FRS56PEPRULV;0801cdce-0892-4cf9-9a9c-9a95b6322037;RELAIS DE LA PORTE D ITALIE;;Place Du Marché 13870 ROGNONAS;;[5.623604, 45.278781];;FRCPIE65437952;CXMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3301676;48.82325;;;; +;;;;;;;;FRS56PATFAFZ;64763927ef82e9f9494a5e0e;RELAIS LA LIRONDE;;RN7 13670 SAINT-ANDIOL;;[4.504672, 49.592204];;FRCPIE65437951;CTKD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.337229;48.8318566;;;; +;;;;;;;;FRS56PGWMRND;97a73804-c89a-11ed-afa1-0242ac120002;RELAIS LA PORTE D'ALSACE NORD;;Avenue Nostradamus 13310 SAINT-MARTIN-DE-CRAU;;[4.838227, 46.96323];;FRCPIE65437852;CXMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3237355;48.8325995;;;; +;;;;;;;;FRS56PLTFJPE;9f856230-c89a-11ed-afa1-0242ac120002;AIRE NARBONNE VINASSAN SUD;;Rue Des Artisans - Borne 1 13460 SAINTES-MARIES-DE-LA-MER;;[-0.269559, 43.721222];;FRCPIE65437851;CCTQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.313088;48.841403;;;; +;;;;;;;;FRS56PZRNMMN;a01624a0-c89a-11ed-afa1-0242ac120002;RELAIS ILE GAD;;Rue Des Artisans - Borne 2 13460 SAINTES-MARIES-DE-LA-MER;;[1.80428, 43.35267];;FRCPIE65435752;MJXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4002905;48.8207604;;;; +;;;;;;;;FRS56PQDNNRD;9fd0f8f8-c89a-11ed-afa1-0242ac120002;RELAIS L'ISLE D'ABEAU NORD;;Place Georges de Régis 13150 SAINT-PIERRE-DE-MEZOARGUES;;[5.172111, 47.42224];;FRCPIE65435751;RTYZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4022445;48.8230593;;;; +;;;;;;;;FRS56PGJHPTX;a169a05c-c89a-11ed-afa1-0242ac120002;RELAIS ORLEANS SARAN;;Place de l'Eglise 13670 VERQUIERES;;[5.848176, 43.84322];;FRIONE44015;MJXG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3850356;48.8458068;;;; +;;;;;;;;FRS56PSAMTCM;a05bc5e6-c89a-11ed-afa1-0242ac120002;RELAIS ST PRIVAT Ville;;Rue Pierre Damian 13910 MAILLANE;;[5.850927825, 43.84343386];;FRIONE440124;AQCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.400428;48.83984;;;; +;;;;;;;;FRS56PBGPYPT;a09b9afe-c89a-11ed-afa1-0242ac120002;RELAIS DE LA MAULDRE;;Place De La Mairie 13440 CABANNES;;[4.769017, 45.80924];;FRIONE440123;FXNC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.378739;48.8395108;;;; +;;;;;;;;FRS56PTLKZQJ;9e89cd76-c89a-11ed-afa1-0242ac120002;RELAIS GIGNAC LA NERTHE;;Parking Relais Einstein 13000 MARSEILLE;;[2.742603853735758, 50.40453203652518];;FRCPIE67703451;RGWW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3665764;48.83912;;;; +;;;;;;;;FRS56PWRRLPV;954250ee-c89a-11ed-afa1-0242ac120002;RELAIS CARQUEFOU;;36 avenue Denis Padovani 13127 VITROLLES;;[0.125336, 48.456669];;FRCPIE67703852;RTYZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3810867;48.8266807;;;; +;;;;;;;;FRS56PNRXSYF;9ecf01fc-c89a-11ed-afa1-0242ac120002;RELAIS LE MONT SAINT MICHEL;;Parking Savon 13260 CASSIS;;[7.035532, 43.589282];;FRCPIE67703851;RCUV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.409631;48.83126;;;; +;;;;;;;;FRS56PTLSDKV;9f13aabe-c89a-11ed-afa1-0242ac120002;RELAIS LES VIGNOBLES;;Cours Pasteur 13420 GEMENOS;;[-0.50616, 44.87366];;FRCPIE67703752;REMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.389211;48.8351899;;;; +;;;;;;;;FRS56PRAGKJL;9e46dd7c-c89a-11ed-afa1-0242ac120002;RELAIS BOIS DE DOURRE;;Rue De Verdun 13700 MARIGNANE;;[2.26627, 48.835002];;FRCPIE67703751;SLUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3953738;48.8373149;;;; +;;;;;;;;FRS56PJRXYXK;9cd734f0-c89a-11ed-afa1-0242ac120002;RELAIS TROYES LE PLESSIS;;Campus Luminy 13000 MARSEILLE;;[-0.37080308694003083, 46.29755602592633];;FRCPIE67703552;YNDH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.388111;48.8355193;;;; +;;;;;;;;FRS56PZJSCSE;9e0235dc-c89a-11ed-afa1-0242ac120002;RELAIS CEIGNES CERDON;;Parking De La Gare La Barasse 13000 MARSEILLE;;[2.26089, 48.900075];;FRCPIE67703551;PEUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.410751;48.8406851;;;; +;;;;;;;;FRS56PNCDSEP;a250ea3e-c89a-11ed-afa1-0242ac120002;AIRE DE KESKASTEL;;Chemin De La Lone 13150 BOULBON;;[2.52491, 48.855643];;FRCPIE67703452;GPDK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.372548;48.8403578;;;; +;;;;;;;;FRS56PSWHNTH;9c6588aa-c89a-11ed-afa1-0242ac120002;RELAIS DE L ESTALOT;;Parking Technoptic 13000 MARSEILLE;;[1.39864, 43.5245];;FRCPIE67703252;SRCH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3724643;48.8268565;;;; +;;;;;;;;FRS56PLPZGQN;a20a11fe-c89a-11ed-afa1-0242ac120002;RELAIS DE BRABOIS;;Parking De La Mairie, Bd Bouyala D'Arnaud 13000 MARSEILLE;;[4.826339, 45.590873];;FRIONE402551;JPXX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.379246;48.8276393;;;; +;;;;;;;;FRS56PCLYHGY;9d2d3774-c89a-11ed-afa1-0242ac120002;RELAIS AMIRAL MOUCHEZ;;Rue Henri Tommasi 13000 MARSEILLE;;[2.742822, 48.829064];;FRCPIE67703251;JPXX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.353056;48.84071;;;; +;;;;;;;;FRFR1PQRBEQB;9dbac706-c89a-11ed-afa1-0242ac120002;RELAIS LYON MONTLUEL;;Route De Boulbon 13570 BARBENTANE;;[2.44222, 48.59459];;FRIENE0087024;MRMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3512076;48.84154;;;; +;;;;;;;;FRFR1PZ5YRCO4MCH;9d77585e-c89a-11ed-afa1-0242ac120002;RELAIS DES BRONDILLANTS BRON;;Parking De L'Abreuvoir 13860 PEYROLLES-EN-PROVENCE;;[-0.436995, 44.645735];;FRIENE0087023;MRMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3460584;48.8455775;;;; +;;;;;;;;FRFR1PCSGDHJKZWQ;a7ce55c2-9856-4232-8cdc-fdd006f6c4d5;RELAIS DU PERIPHERIQUE INTERIEUR;;Rue De La République 13110 PORT-DE-BOUC;;[4.907771, 44.94012];;FRIENE0087012;MFWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3643333;48.8334137;;;; +;;;;;;;;FRFR1PQV1XBL32UC;EFEC9F1798CE4367B63FDE0635E888D2;RELAIS AUBERVILLIERS PERIPHERIQUE EXTERIEUR;;Rue Du 14 Juillet - Parking Piscine 13380 PLAN-DE-CUQUES;;[2.34749, 48.758095];;FRIENE0087011;PXSP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.356917;48.846304;;;; +;;;;;;;;FRFR1PA1OTAOVE13;635a8195-f947-4584-b418-4844f6f79fc9;RELAIS COMMUNAY SUD;;Avenue Georges Pompidou 13380 PLAN-DE-CUQUES;;[5.193534, 43.589351];;FRIONE402553;ZRDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.345853;48.83186;;;; +;;;;;;;;FRFR1PSZ3N6E2YCW;ec4b9d5d-0bf2-4aa4-b255-72308a3d4da4;RELAIS HARDIVILLERS;;Chemin Du Cimetière 13119 SAINT-SAVOURNIN;;[4.83576, 45.6516];;FRIONE402552;MFWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3446053;48.8362302;;;; +;;;;;;;;FRFR1PEUQNWG;1dba36be-0c2e-4786-b800-0631f46fadb2;RELAIS DU CAYLAR;;Place Granier 84120 PERTUIS;;[5.453912, 43.291896];;FRSHEE1781;PXSP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3753988;48.83171;;;; +;;;;;;;;FRFR1PEY9BGCXHTS;EVB-P2211454;RELAIS MILLE ETANGS;;Place Roux Brignoles 13330 PELISSANNE;;[2.376323, 48.805832];;FRSHEE1783;DCYN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3537665;48.8345242;;;; +;;;;;;;;FRFR1PSUERDA;FR*MAP*P000000006985;RELAIS BEUZEVILLE NORD;;Avenue De La République 13140 MIRAMAS;;[4.494, 46.7483];;FRCPIE65578451;DCYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.273944;48.8204223;;;; +;;;;;;;;FRFR1PNBMZWT;a013cc8c-e4fe-4b33-b189-7b94a2eb58ea;RELAIS VOREPPE;;Avenue Hippolyte Peut 13230 PORT-SAINT-LOUIS-DU-RHONE;;[3.11733, 46.057926];;FRE10E7681;ZRDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3437342;48.8310493;;;; +;;;;;;;;FRFR1PIAN9F6VWO1;FRCPIE66386351;RELAIS ARDENNES-WOINIC;;Avenue Du Chemin Neuf 13114 PUYLOUBIER;;[3.062407, 50.650931];;FRIENE0045011;GCRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3449501;48.8205622;;;; +;;;;;;;;FRFR1PCMPLB7WHDW;FRCPIE66430152;RELAIS BEAUNE MERCEUIL;;Boulevard des Jeunes 13340 ROGNAC;;[5.296055, 46.20308];;FRCPIE65619652;FAUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3329713;48.8303916;;;; +;;;;;;;;FRFR1PETMIFQYXCA;FRCPIE66546854;RELAIS L'ADOUR;;Avenue Marius Ghirardelli 13830 ROQUEFORT-LA-BEDOULE;;[5.00055, 44.9997];;FRCPIE65619651;GCRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3393006;48.82195;;;; +;;;;;;;;FRFR1PSFV8O6KKAO;FRCPIE66545854;RELAIS PORT LAURAGAIS SUD;;23 Allée Alfred Rinn 13360 ROQUEVAIRE;;[3.07982, 44.329297];;FRE10E7689;FAUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3314856;48.8351639;;;; +;;;;;;;;FRFR1PLTXRMEKMHM;FRCPIE66544154;RELAIS DIJON-BROGNON;;Avenue Jean Moulin 13760 SAINT-CANNAT;;[-1.098658, 48.090032];;FRE10E7688;WFFE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3538696405462756;48.8231521;;;; +;;;;;;;;FRFR1POVLIOS1NEP;FRCPIE66546754;RELAIS VOLX;;Rue Victor Ferrier 13250 SAINT-CHAMAS;;[-1.016955, 47.4185];;FRIONE41005;WFFE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2558389615;48.8295778;;;; +;;;;;;;;FRFR1PRQ3Q8W8JZB;f588e6140fcfab03;RELAIS MANOSQUE;;Résidence Les Remparts 13920 SAINT-MITRE-LES-REMPARTS;;[1.509803, 45.541115];;FRIONE410006;PCPK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.338973;48.859184;;;; +;;;;;;;;FRFR1PQYXETA;c45b7fe23fd6020a;RELAIS BRUYERES PAISY;;D11 13115 SAINT-PAUL-LEZ-DURANCE;;[2.3719914, 48.86023];;FRIONE410005;PCPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3320835;48.8640888;;;; +;;;;;;;;FRFR1PHMRQ8DJXDD;88249;RELAIS SOUCHEZ;;Parking Mourvedre - Rue Des Mineurs 13590 MEYREUIL;;[2.374203, 48.85579];;FRIONE410004;MWJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.344388;48.8588109;;;; +;;;;;;;;FRFR1PU8FM0DWWX8;88250;RELAIS LA DENTELLE D'ALENCON;;Police Municipale - Place Des Anciens Combattants 13650 MEYRARGUES;;[2.3664376, 48.8657658];;FRIONE410001;MWJG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3454538;48.8648594;;;; +;;;;;;;;FRFR1PZBOTAXM1N9;0b9c7838-1025-4387-ba85-ddbe5c7692b4;RELAIS BREGUIERES SUD;;Avenue Du Prado 13008 MARSEILLE-8E;;[2.390264, 48.8577957];;FRE10E7687;MWJG3;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3408933;48.8624631;;;; +;;;;;;;;FRFR1PRYJXOYUE86;12115377-e75a-4816-b2d2-e530a33ebc80;RELAIS FONTBELLEAU;;Boulevard Notre Dame 13006 MARSEILLE-6E;;[2.37139, 48.857259];;FRE10E7686;VJTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34681;48.8642939;;;; +;;;;;;;;FRFR1PBII1ZEOITL;97a6b2ba-a4c3-4c1a-bd28-1536ae106c14;RELAIS PONT AVAL;;Cours Lieutaud 13006 MARSEILLE-6E;;[2.397761, 48.84948];;FRE10E7685;VJTM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3423247;48.85679604727558;;;; +;;;;;;;;FRFR1PVEL3NQFHW0;a78a5c9f-1088-4e10-92a6-da3eb1b73a30;RELAIS POITOU CHARENTES SUD;;113 Avenue De La Corse 13007 MARSEILLE-7E;;[2.3809277, 48.8615346];;FRE10E7684;VJTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3508835;48.84697366289495;;;; +;;;;;;;;FRFR1PJGTXAAQTG7;a193b38a-4d29-4a6d-91dc-b2707112713b;RELAIS COURBEVOIE VERDUN;;12 Place Du Colonel Edon 13007 MARSEILLE-7E;;[2.3825248, 48.8561529];;FRS28E171587;SRCH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.41177;48.8415;;;; +;;;;;;;;FRFR1PHTMKTM7ROT;8bcfc19a-0441-4f6d-87e9-a424b89e4cb0;RELAIS NEUILLY SUR MARNE;;85 Boulevard Charles Livon 13007 MARSEILLE-7E;;[2.3830368, 48.8525733];;FRS28E171586;GPDK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.319768;48.8699261;;;; +;;;;;;;;FRFR1PZMADJK;506657f4-f858-4fc7-b773-275fbf5bbcd4;RELAIS DE PORTET OUEST;;Avenue André Zénatti 13008 MARSEILLE-8E;;[2.36289, 48.87484];;FRE10E7683;SYHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.313751;48.86502;;;; +;;;;;;;;FRFR1PPX8CCIXVTW;ac9b0935-ed7d-4713-8a18-075922e7a89e;RELAIS COMMUNAY NORD;;Boulevard Edouard Herriot 13008 MARSEILLE-8E;;[2.3783382, 48.8553267];;FRIENE0045012;UFJB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.302442;48.8704209;;;; +;;;;;;;;FRFR1PZOJVYBGVNI;128990;RELAIS FERRIERES;;Quai Jean Verandy 13500 MARTIGUES;;[2.348162, 48.87517];;FRIENE0045023;UCXL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.297463;48.8705626;;;; +;;;;;;;;FRFR1PKDNDRR;128991;RELAIS LES LISSES;;16 Rue Emile Zola 13009 MARSEILLE-9E;;[2.3551424, 48.8740698];;FRIENE0045024;PJFZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33891;48.85788;;;; +;;;;;;;;FRFR1PQUNHGB;fr-ise-e-inouid-crequi;LES TERRES DE GRAVES SUD;;83-81 Boulevard Du Redon 13009 MARSEILLE-9E;;[2.384125, 48.858606];;FRCPIE65655651;UCXL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.352758;48.8696994;;;; +;;;;;;;;FRFR1PZLOEP13R8Q;2db6221b-bd48-4868-ad35-90071ac9de1a;RELAIS VALENCE DAME BLANCHE;;Rue Antoine Fortuné Marion - Parking Jarre 13009 MARSEILLE-9E;;[2.3509617, 48.8801236];;FRCPIE65660952;QEMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3564553;48.8680082;;;; +;;;;;;;;FRFR1PG6EQG69JYG;EVB-P212223833;RELAIS DELTA RUNGIS;;Traverse De La Gaye 13009 MARSEILLE-9E;;[2.4050137, 48.8415951];;FRCPIE65660951;CYYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34066;48.863766;;;; +;;;;;;;;FRFR1PXEIHBKLJME;8ef7ac44-2295-427b-8f6c-589c0e47c43a;AIRE DE LANCON DE PROVENCE EST;;Avenue Du Président Salvadore Allende 13500 MARTIGUES;;[2.3878529, 48.839191];;FRS37E18319;NZHL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.268339;48.882718;;;; +;;;;;;;;FRFR1PPDGJQAA0FT;122021;RELAIS SOLAIZE;;Avenue Louis Sammut - Parking Stade Turcan 13500 MARTIGUES;;[2.3862243, 48.8632221];;FRS37E18318;PRCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.258213;48.881168;;;; +;;;;;;;;FRFR1PWGALU8RLGY;5a261145-4bb3-48f4-a72d-699958c5c975;RELAIS LA POMME;;Gymnase Arcelli 13118 ENTRESSENS;;[2.3922556, 48.8364094];;FRS37E10700;PVHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.286938;48.879654;;;; +;;;;;;;;FRFR1PCPXF2LLPM8;0ba8ed7c-43f6-4b51-9b36-66b094607c09;RELAIS IVRY SUR SEINE STADE;;Avenue Du Maréchal - Parking 13710 FUVEAU;;[2.3856322, 48.8473293];;FRS37E10699;PVHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.293606;48.885689;;;; +;;;;;;;;FRFR1PSI2KB9XGYR;87831698952267f0;RELAIS ROND POINT JEANNE ROSE;;Avenue du Sablé D'Or 13270 FOS-SUR-MER;;[2.407044, 48.8444];;FRCPIE65655652;PRCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.405196;48.889731;;;; +;;;;;;;;FRFR1PVAHGUF;961a816c0a70acf2;AIRE DES VOLCANS D AUVERGNE SAINT AGOULIN;;Place Dei Blagiaires 13118 ENTRESSENS;;[2.367915, 48.84837];;FRS37E10698;PHYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.371768;48.897671;;;; +;;;;;;;;FRFR1PMTMBQ1VMJY;74a79fa3d39ca269;RELAIS LILLE PERIPHERIQUE;;Avenue De La République 13111 COUDOUX;;[2.3713985, 48.8640621];;FRCPIE65621551;PHYV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.397724;48.8512525;;;; +;;;;;;;;FRFR1PKKQLE6INYX;7defedad9ee67c87;RELAIS BOURG JASSERON;;Place De L'Aire 13127 VITROLLES;;[2.3923486, 48.853661];;FRS37E10697;DHXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.39182;48.89311;;;; +;;;;;;;;FRFR1PAUCZWJ;29ebe92a3906ba65;RELAIS LA BAYANNE;;Place du Souvenir Français 13400 AUBAGNE;;[2.36784, 48.86661];;FRS37E24886;EWAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.378283;48.846761;;;; +;;;;;;;;FRFR1PYJMNZF;4b09727283003ba2;RELAIS L'AVEYRON;;Rue André Ampère (Paap) 13080 AIX-EN-PROVENCE;;[2.371679, 48.8690795];;FRS37E24226;YVFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.403802;48.846653;;;; +;;;;;;;;FRFR1PGKNGDZ;0d032d37-2265-40d7-b4ee-51ee1fe603b0;RELAIS ERBREE;;Avenue Winston Churchill 13090 AIX-EN-PROVENCE;;[2.376434, 48.85189];;FRS37E10694;DHXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35423;48.883282;;;; +;;;;;;;;FRFR1PAJGZJR;FR*QWT*S86027*A*1;RELAIS VARADES PAYS D'ANCENIS;;Parking Laure 13180 GIGNAC-LA-NERTHE;;[2.387246, 48.8499672];;FRS37E10693;EWAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.398476;48.878965;;;; +;;;;;;;;FRFR1PJLDOS4PD2H;FR*QWT*S86027*B*1;RELAIS PORTE DE CORREZE;;Boulevard Salvadore Allende 13850 GREASQUE;;[2.312597, 48.87006];;FRCPIE65621552;YVFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.369961;48.874134;;;; +;;;;;;;;FRFR1PWZNSAM;48db1801-1114-4055-a221-75d0e5262a2e;Paris | Boulevard Richard Lenoir 63;;Bayanne 13800 ISTRES;;[2.3338862, 48.8716413];;FRE10E7682;DXKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.382705;48.889011;;;; +;;;;;;;;FRFR1PYJRJT8ZFIK;20e6d906-5c2d-11ed-9b6a-0242ac120002;Paris | Rue du Commandant Lamy 2;;Centre Commercial Prédina 13800 ISTRES;;[2.3466528, 48.8735894];;FRE10E7680;QVJB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.388149;48.86424;;;; +;;;;;;;;FRFR1PN9E3AHO598;916dad76-9019-48d1-a94b-cf77f98e7d1e;Paris | Boulevard Voltaire 8;;Forum Des Carmes 13800 ISTRES;;[2.336666, 48.88109];;FRSHEE1791;MJHC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.335097;48.8778;;;; +;;;;;;;;FRFR1PGID8GC3XH5;60014;Paris | Avenue Philippe Auguste 126;;Gymnase Donadieu 13800 ISTRES;;[2.3347774, 48.878643];;FRCPIE65588852;JBXL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3469365;48.872905;;;; +;;;;;;;;FRFR1PHUMNVVMJLC;60015;Paris | Boulevard Richard Lenoir 36;;Halle Polyvalente Rassuen 13800 ISTRES;;[2.326691, 48.86972];;FRCPIE65313551;JBXL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3476575;48.857094;;;; +;;;;;;;;FRFR1POIRPBLPGGO;fr*bhm bubble;Paris | Avenue de Taillebourg 2;;Boulevard Paul Liotard 13730 SAINT-VICTORET;;[2.3454871, 48.8829733];;FRCPIE66293852;FTKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3472476;48.89061;;;; +;;;;;;;;FRFR1PHIPTHVIZZY;755c6ec8-a6de-11ed-afa1-0242ac120002;Paris | Rue Saint-Maur 36;;Rue André Marie Ampère 13300 SALON-DE-PROVENCE;;[2.342083, 48.875464];;FRCPIE66293851;FTKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3524539504414306;48.880421;;;; +;;;;;;;;FRFR1PROA62NCPNF;e81469d6-a6dc-11ed-afa1-0242ac120002;Paris | Rue François de Neufchateau 11;;Avenue De Grans 13300 SALON-DE-PROVENCE;;[2.3382898, 48.875921];;FRS08E57564;UFJB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3522773;48.88472;;;; +;;;;;;;;FRFR1PQJPMFY9VDG;4accd728-a6da-11ed-afa1-0242ac120002;Paris | Rue Faidherbe 27;;Place Des Droits De L'Homme 13960 SAUSSET-LES-PINS;;[2.310832, 48.8778333];;FRS08E57563;FPBE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3444286;48.882794;;;; +;;;;;;;;FRFR1PUK5JQUMRGT;35bb1501-eefa-4449-83d4-b795f4bd4880;Paris | Quai de Valmy 107;;Rue César Bossy 13300 SALON-DE-PROVENCE;;[2.3082976, 48.8761878];;FRS08E57703;CJMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3430684;48.88842;;;; +;;;;;;;;FRFR1PJDIEUSSXCH;RCC-CAN-01-DC-PKGCLIENT;Paris | Avenue Ledru Rollin 155;;Avenue Du Dauphiné 13300 SALON-DE-PROVENCE;;[2.3226488, 48.870601];;FRS08E57702;VYCZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3542653;48.868181;;;; +;;;;;;;;FRFR1PDK6XS3IOSC;RCC-NICE-01-DC-PKGCLIENT;Paris | Rue du Faubourg Poissonnière 64;;50 Avenue Du 8 Mai 1945 13240 SEPTEMES-LES-VALLONS;;[2.326167, 48.87236];;FRS08E57520;MYJU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3543751;48.8479993;;;; +;;;;;;;;FRFR1PJCNTJBOJ10;RCC-CAN-03-DC-PKGCLIENT-SAV;Paris | Rue du Faubourg Saint-Denis 91;;270 Rue Victor Grignard 13300 SALON-DE-PROVENCE;;[2.3283632, 48.8804478];;FRS08E57519;WUMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.363958;48.8397733;;;; +;;;;;;;;FRFR1POWJJ5SAPNR;143108;Paris | Rue de la Roquette 162;;Rue Raymond Marin 13730 SAINT-VICTORET;;[2.372482, 48.87179];;FRSHEE1813;CLYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.345341;48.8513879;;;; +;;;;;;;;FRFR1PTAXW4NUFVF;143107;Paris | Rue Rocroy 15;;Avenue Maurice Plantier 13770 VENELLES;;[2.3629571, 48.8814921];;FRSHEE1812;KCPP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.347262;48.84116058051008;;;; +;;;;;;;;FRFR1PJUD6RZJTTH;c635b39a-6507-11ed-9022-0242ac120002;Paris | Avenue du Docteur Arnold Netter 10;;Rue Diderot (Pl Du Bon Puit) 13880 VELAUX;;[2.366288, 48.87237];;FRSHEE1811;YNDH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3484148;48.8444276;;;; +;;;;;;;;FRFR1PW3NYJVVV4C;569d74e7-5e96-4bcd-a038-e2d5e855a9fe;Paris | Rue du Charolais 2;;Avenue Charles De Gaulle 13122 VENTABREN;;[2.364206, 48.87119];;FRSHEE1803;UDXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3544309;48.8499024;;;; +;;;;;;;;FRFR1PGYNIQ5AGRO;NN4XSWH5DX;Paris | avenue de la République 105;;Route Du Château Bas 13116 VERNEGUES;;[2.354076, 48.87081];;FRSHEE1802;FULY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3507414;48.8420054;;;; +;;;;;;;;FRFR1PHCGJJZ;EKGLSXWYLC;Paris | Rue de Charenton 251;;4 Rue Lambert 13109 SIMIANE-COLLONGUE;;[2.372715, 48.87565];;FRSHEE1801;FULY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.360503;48.8596689;;;; +;;;;;;;;FRFR1PDXWOUAPF4B;UVA1GK3BEZ;Paris | Boulevard Diderot 73;;5 Boulevard Moraliste 13126 VAUVENARGUES;;[2.3523208, 48.8750753];;FRSHEE1793;VHBA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3673798;48.8585045;;;; +;;;;;;;;FRFR1PCBMQXCFJ9L;SQAXHVYUL0;Paris | Avenue de Saint-Mandé 94;;Place De La Libération 13530 TRETS;;[2.3409177, 48.8777212];;FRSHEE1792;AMHQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3648513;48.853574;;;; +;;;;;;;;FRFR1PKBVONDUIIB;GYS7KX8RYW;Paris | Boulevard de la Bastille 20;;73B Avenue de la République 63000 CLERMONT FERRAND (63);;[2.3317475, 48.8806436];;FRS37E1451;VHBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3505278;48.8541989;;;; +;;;;;;;;FRFR1PI4HXYDCXJI;JQ63UNHXMO;Paris | Boulevard Richard Lenoir 110;;30 Place de la Rodade 63000 CLERMONT FERRAND (63);;[2.3387762, 48.8723178];;FRS37E1452;AMHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34525;48.84196;;;; +;;;;;;;;FRFR1PMWMLUQHPM0;EH4SWQBAHY;Paris | Avenue Philippe Auguste 65;;24 Rue Théodore de Banville 63000 CLERMONT FERRAND (63);;[2.3600462, 48.8702567];;FRCPIE66527551;YSMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3526978;48.8463237;;;; +;;;;;;;;FRFR1PRSX0LEKBQ0;OH8U5KZYGR;Paris | Avenue de la République 5;;7 Rue Charles Fournier 63400 CHAMALIERES (63);;[2.3587236, 48.8750762];;FRIONE432351;YSMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3630074;48.850032;;;; +;;;;;;;;FRFR1PLR8TGUULFU;HTBGD246VP;Paris | Bis Avenue Parmentier 125;;5-9 Rue des Salins 63000 CLERMONT FERRAND (63);;[2.3408664, 48.8383124];;FRCPIE65588851;SLME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3548335;48.8392739;;;; +;;;;;;;;FRFR1PB9F5WIHHBL;SSHO5RSRMZ;Paris | Avenue Ledru Rollin 104;;Place des Bughes 63000 CLERMONT FERRAND (63);;[2.3216963, 48.8283698];;FRE10E7679;PMJK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.361378;48.8589682;;;; +;;;;;;;;FRFR1PQBFZECLLXJ;PD9O4ON1F6;Paris | Rue Roubo 1;;198 Boulevard Étienne Clémentel 63000 CLERMONT FERRAND (63);;[2.364308, 48.824068];;FRE10E7678;QLLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3591939;48.8623505;;;; +;;;;;;;;FRFR1PYEGFTTHMH7;MLWOEU75YT;Paris | Avenue Matignon 2;;3 Place Charles de Gaulle 63119 CHATEAUGAY (63);;[2.336613, 48.82844];;FRE10E7677;MYDL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.366004;48.8548459;;;; +;;;;;;;;FRFR1PQKLPPL4XTK;IMSALVK01H;Paris | Rue de la Chaussée d'Antin 5;;Rue Antoine Menat 63000 CLERMONT FERRAND (63);;[2.32608, 48.83273];;FRE10E7676;DEYR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.289894;48.86781;;;; +;;;;;;;;FRFR1PMAFQ9DQN6F;Y3VAL8QRMQ;Paris | Rue du conservatoire 13;;Place Du Foirail 63320 CHAMPEIX (63);;[2.3297831, 48.8348549];;FRIONE432353;SLME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.299582;48.8633367;;;; +;;;;;;;;FRFR1PZPA4ATRQ2R;B4QYBOUPMM;Paris | Rue Victor Massé 35;;30 Place Henri Dunant 63000 CLERMONT FERRAND (63);;[2.323305, 48.842173];;FRIONE432352;SKSU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3129161;48.8674504;;;; +;;;;;;;;FRFR1PVXSL0B2ANU;SPNW8OHGXT;Paris | Rue d'Aumale 28;;1 Avenue de l'Europe 63140 CHATEL GUYON (63);;[2.3580488, 48.8260824];;FRCPIE66464052;SKSU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3080758;48.8452566;;;; +;;;;;;;;FRFR1PHJMFK5BNOH;IGJVLDRJPL;Paris | boulevard de la Madeleine 8;;5 Place des Vigeries 63360 GERZAT (63);;[2.3721949, 48.8279725];;FRCPIE66527552;MYKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3106373;48.85648;;;; +;;;;;;;;FRFR1PJWBYBTAJPL;FQD6TNYY1N;Paris | boulevard Rochechouart 31;;1 Rue des Châtaigniers 63830 DURTOL (63);;[2.3424498, 48.8262319];;FRCPIE66464051;SBVD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3237968;48.8553672;;;; +;;;;;;;;FRFR1PJ2PTEQVKWN;FJZP5RGIWR;Paris | Rue la Fayette 56;;15 Impasse des Dômes 63800 COURNON D'AUVERGNE (63);;[2.3624101, 48.8328237];;FRS37E2481;QLLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3195393;48.8484226;;;; +;;;;;;;;FRFR1PPEUJAWCTR7;KR0Q8THZQY;Paris | Rue de Chateaudun 21;;20 Rue des Roses 63120 COURPIERE (63);;[2.3592348, 48.8365583];;FRS37E2480;SBVD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3069867;48.871465;;;; +;;;;;;;;FRFR1PZYJ7I0FGEH;M676DRCSZV;Paris | Rue de Monceau 43;;12 Impasse des Dômes 63800 COURNON D'AUVERGNE (63);;[2.354296, 48.82325];;FRCPIE66095552;DEYR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3152447;48.85807;;;; +;;;;;;;;FRFR1PNMFEQ90JG9;MCGNQKQFJH;Paris | Rue de Courcelles 40;;24 Rue de l'Hôtel de Ville 63620 GIAT (63);;[2.3202972, 48.8318566];;FRCPIE66095551;NUNF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.310588;48.8512827;;;; +;;;;;;;;FRFR1PIZU8ZFBXXB;B8VYNNI4EK;Paris | boulevard Malesherbes 7;;2 Place Paul Eychart 63000 CLERMONT FERRAND (63);;[2.2788853, 48.8325995];;FRCPIE65573552;NUNF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3077697;48.8561697;;;; +;;;;;;;;FRFR1PDUSXJL;UTCAFKUEJR;Paris | Rue Tronchet 19;;15 Place Maréchal Fayolle 63000 CLERMONT FERRAND (63);;[2.28136, 48.841403];;FRCPIE65573551;YTEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.314834;48.8511276;;;; +;;;;;;;;FRFR1PG009CV3ZJE;AAOHVNYG1P;Paris | Rue Jules Lefèbvre 1;;42 Rue Charles Bruyant 63000 CLERMONT FERRAND (63);;[2.3370783, 48.8207604];;FRIONE440122;JKAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3041857865350335;48.8508194;;;; +;;;;;;;;FRFR1PCAS701RIZP;DCQ0LAWQZE;Paris | Rue du Buisson Saint Louis 2;;Place de l'Europe 63460 COMBRONDE (63);;[2.322823, 48.8230593];;FRIONE440121;VYCZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3190123;48.8593659;;;; +;;;;;;;;FRFR1PYQKELHNRP6;UWBEJENZM4;Paris | Rue du Château Landon 24;;Parking Entree Du Bourg 63420 ANZAT LE LUGUET (63);;[2.3038076, 48.8458068];;FRIONE440113;NRQH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.315725;48.8611286;;;; +;;;;;;;;FRFR1PYCPEWRGL9L;BNKAZ43L8B;Paris | Avenue Richerand 11;;4 Rue Frédéric Brunmurol 63122 CEYRAT (63);;[2.273328, 48.83984];;FRCPIE67292951;CJMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3097645;48.8558178;;;; +;;;;;;;;FRFR1PEACLKZ;ADPWEZEQNB;Paris | Rue Beaurepaire 31;;Avenue Pierre de Coubertin 63510 AULNAT (63);;[2.3301676, 48.8395108];;FRCPIE67293451;NEHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3245048;48.85806;;;; +;;;;;;;;FRFR1PVZL9GPAYNT;NIWYNHGWZQ;Paris | Rue de Metz 6;;3 Chemin des Cratères Egueules 63970 AYDAT (63);;[2.337229, 48.83912];;FRCPIE67293152;MLNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3084191;48.8492973;;;; +;;;;;;;;FRFR1PYJYG7SXQC9;HRHSOKTQFF;Paris | boulevard de la Villette 55;;624 Rue du Masage 63110 BEAUMONT (63);;[2.3237355, 48.8266807];;FRCPIE67293151;MLNY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3041662;48.8587263;;;; +;;;;;;;;FRFR1PB6VI5YO8DJ;CBGWRNLZUG;Paris | Rue de Paradis 28;;Allée Stéphane Hessel 63110 BEAUMONT (63);;[2.313088, 48.83126];;FRCPIE65313952;JJSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.314663;48.85829535733236;;;; +;;;;;;;;FRFR1PJPU6IRJFBD;AHACHJV7QW;Paris | Rue Milton 12;;Rdpt des Pistes 63610 BESSE ET SAINT ANASTAISE (63);;[2.4002905, 48.8351899];;FRCPIE65313951;VVMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3044935;48.8530403;;;; +;;;;;;;;FRFR1PWS9TVOAQQE;LRLCQP4NJM;Paris | Rue Paul Escudier 2;;4 Rue de la Gazelle 63610 BESSE ET SAINT ANASTAISE (63);;[2.4022445, 48.8373149];;FRS88E150327;THLJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3046348;48.8482825;;;; +;;;;;;;;FRFR1PLLJ40WJN92QMZD;X1GL3ADTTI;Paris | boulevard Haussmann 6;;56 Rue de Romagnat 63170 AUBIERE (63);;[2.3850356, 48.8355193];;FRS88E150325;NTJJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3263307;48.8560129;;;; +;;;;;;;;FRFR1PSKHOBW49HF;KPFDX4FTAA;Paris | Rue Pierre Chausson 1;;Place De La Montagne 63500 ISSOIRE (63);;[2.400428, 48.8406851];;FRS88E162020;YNJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.301121;48.8598769;;;; +;;;;;;;;FRFR1PTA02FFLDQM;QM8YJBAKS4;Paris | Rue Sibour 2;;24 Rue aux Chevrils 63260 AIGUEPERSE (63);;[2.378739, 48.8403578];;FRS88E162018;DWVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.329982;48.8657733;;;; +;;;;;;;;FRFR1PLWOOPFQ7NB;YSDEHHGQGH;Paris | Boulevard de Port-Royal 97;;Place Du Foirail 63420 ARDES (63);;[2.3665764, 48.8268565];;FRCPIE67307252;SCUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3193886;48.8724475;;;; +;;;;;;;;FRFR1PYMMBPBLYAI;LTETLMWDSZ;Paris | Rue des Plantes 56;;8 Rue Jean Vellay 63220 ARLANC (63);;[2.3810867, 48.8276393];;FRCPIE67307251;CSCM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3008886;48.8737;;;; +;;;;;;;;FRFR1PQAEFOK9R0M;VTBYUSAA5F;Paris | Avenue D'Ivry 58;;15 Avenue Victor Cohalion 63160 BILLOM (63);;[2.409631, 48.84071];;FRCPIE67300052;FXMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3036203;48.878351;;;; +;;;;;;;;FRFR1PXF0FLNMPLJ;MBBTCSNJTK;Paris | Rue Broussais 32;;1 Rue du Huit Mai 63250 CELLES SUR DUROLLE (63);;[2.389211, 48.84154];;FRCPIE67300051;VFZR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2976358;48.8682112;;;; +;;;;;;;;FRFR1PFEZQDELCUW;ENOYQDXIZO;Paris | Rue Castagnou 10;;58 Avenue des Combrailles 63230 BROMONT-LAMOTHE (63);;[2.3953738, 48.8455775];;FRCPIE67293352;EPYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.32056;48.8795963;;;; +;;;;;;;;FRFR1PBC9AMA977O;DLA46WPGDU;Paris | Rue Boulard 1;;3 Rue du Grillon 63118 CEBAZAT (63);;[2.388111, 48.8334137];;FRCPIE67293351;MDZY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.325922;48.87057;;;; +;;;;;;;;FRFR1PBEM0MZEHDY;I89XUJ039I;Paris | Rue du Départ 23;;Parking de la Gare 63670 LE CENDRE (63);;[2.410751, 48.846304];;FRCPIE67293252;NGTY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3225683;48.85461;;;; +;;;;;;;;FRFR1PKTXKVX;ZDHWTXVFAL;Paris | Rue de Tolbiac 147;;2 Avenue de la Vialle 63122 CEYRAT (63);;[2.372548, 48.83186];;FRCPIE67293251;PMNM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3239783;48.8728324;;;; +;;;;;;;;FRFR1PQXPD2AT8JS;JSNTKCLBH0;Paris | Rue de Tolbiac 41;;Route Des Vigneaux 63500 LE BROC (63);;[2.3724643, 48.8362302];;FRCPIE67293452;PMNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3361369;48.8734765;;;; +;;;;;;;;FRFR1PEWGRIN70CW;IVMKSI9TBL;Paris | Rue de Tolbiac 245;;157 Rue des Primevères 63112 BLANZAT (63);;[2.379246, 48.83171];;FRCPIE67293551;UYXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.342107;48.8696448;;;; +;;;;;;;;FRFR1PLNX7DVKRZO;XA1GQIFFQO;Paris | boulevard Vincent Auriol 143;;Rue des Voutes 63160 BILLOM (63);;[2.353056, 48.8345242];;FRCPIE67293552;PMNM4;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3182091;48.8741642;;;; +;;;;;;;;FRFR1PKBPNNPSUZB;OMGNS1LCLU;Paris | Rue Jeanne D'Arc 157;;Parking Entrée Du Bourg 63340 BOUDES (63);;[2.3512076, 48.8204223];;FRIONE451806;PMNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.296744;48.881834;;;; +;;;;;;;;FRFR1PZDFNGFYIU3;6652155f-b6f5-417e-972d-2575195a5a22;Paris | Rue du Docteur Leray 10;;Parking Rue Du Docteur Charles Souligoux 63570 BRASSAC LES MINES (63);;[2.3460584, 48.8310493];;FRIONE451813;AYBG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3363896;48.8830163;;;; +;;;;;;;;FRFR1PVVDFEN;67139;Paris | Rue Didot 41;;Avenue Jean Reynouard 63200 RIOM (63);;[2.3643333, 48.8205622];;FRIONE451812;NVFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.27153;48.8783912;;;; +;;;;;;;;FRFR1PP7EPOMTVSO;67140;Paris | Rue du Colonel Pierre Avia 1;;Route d'Ambert 63660 SAINT ANTHEME (63);;[2.356917, 48.8303916];;FRIONE451811;YQYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.28308;48.847875;;;; +;;;;;;;;FRFR1PVEZIJLLV8J;a300ab22-3725-4fad-9670-e76fe6594a81;Paris | Rue Lacordaire 56;;Parking Place Du Desert 63340 ST GERMAIN LEMBRON (63);;[2.345853, 48.82195];;FRIONE451810;NVFV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.259932;48.8516002;;;; +;;;;;;;;FRFR1PHQNSJ8DLJY;59965;Paris | Boulevard Jourdan 26;;Place du Foirail 63390 SAINT GERVAIS D'AUVERGNE (63);;[2.3446053, 48.8351639];;FRIONE451809;YQYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.295469;48.85262;;;; +;;;;;;;;FRFR1PBTVTHJ;59964;Paris | Avenue de la Porte de Montrouge 8;;Gare de Laqueuille 63820 SAINT JULIEN PUY LAVEZE (63);;[2.3753988, 48.8231521];;FRIONE451808;AHAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.286403;48.8473691;;;; +;;;;;;;;FRFR1PZ5YMICU46B;59954;Paris | Rue Miollis 21;;1446 Place de l'Église 63230 SAINT OURS (63);;[2.3537665, 48.8295778];;FRIONE451807;MUDE4;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3287351;48.841287;;;; +;;;;;;;;FRFR1PFPMK6CLAK8;59953;Paris | Rue Leblanc 19;;Parking Centre Historique 63530 VOLVIC (63);;[2.273944, 48.859184];;FRIONE451805;DDUZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.333149;48.8425631;;;; +;;;;;;;;FRFR1PYCQYLGSCIJ;6bb1e2c9-0d32-49a4-9598-83c9ae504b51;Paris | Boulevard Edgar Quinet 2;;ZAC Des Coustilles 63340 ST GERMAIN LEMBRON (63);;[2.3437342, 48.8640888];;FRN54E186924;QZZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3280363;48.863602;;;; +;;;;;;;;FRFR1PELC41U7R0U;FR*BHM*ECOMTELIGIERBELAIR*1;Paris | Rue Henri Barbusse 66;;Parking Mairie 63320 ST FLORET (63);;[2.3449501, 48.8588109];;FRIONE451804;CYEP3;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3371078;48.861016;;;; +;;;;;;;;FRFR1PFCRUCZZRMY;4227d79c-7a5a-4ca1-8853-486d8a91c665;Paris | Avenue Jean Moulin 34;;15 Rue du Pont Neuf 63360 SAINT BEAUZIRE (63);;[2.3329713, 48.8648594];;FRIONE451803;CYEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3321208;48.837055;;;; +;;;;;;;;FRM45PGKS0FGLKUY;9a04b6ff-ebb9-4858-8ae3-bfcbd63f2775;Paris | Rue Raymond Losserand 145;;167 Rue Jean Jaurès 63700 SAINT ELOY LES MINES (63);;[2.3393006, 48.8624631];;FRIONE451802;CYEP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3314662;48.868511;;;; +;;;;;;;;FRM45PPBVWXODJGA;Securecharge-CAALPA-CC-1;Paris | Rue Claude Decaen 26;;Place René Cassin 63122 SAINT GENES CHAMPANELLE (63);;[2.3314856, 48.8642939];;FRIONE451801;CYEP4;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.368846;48.876162;;;; +;;;;;;;;FRM45PI6GJEEHANQ;41fbb9fc-a0af-4524-b7f1-d1b7cddb596a;Paris | ter Rue de Picpus 122;;12 Rue du Château Vge Theix 63122 SAINT GENES CHAMPANELLE (63);;[2.3538696405462756, 48.85679604727558];;FRCPIE66223352;KPGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.218075;48.8489613;;;; +;;;;;;;;FRM45PSDVWXZW1J4;2111dee4-6034-47b2-a314-6222f7b003ee;Paris | Rue de Pommard 7;;Parking Rue Du Stade 63490 SAUXILLANGES (63);;[2.2558389615, 48.84697366289495];;FRCPIE66223351;DDFP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.320074840507427;48.84189;;;; +;;;;;;;;FRM45PTDQIJPJMNC;f9bed002-5bbd-44d6-aaaf-7673a109fc32;Paris | boulevard de Picpus 7;;Rue de la Gare 63270 VIC LE COMTE (63);;[2.338973, 48.8415];;FRN54E186925;DDFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.324200757103425;48.8430076;;;; +;;;;;;;;FRM45PH5QTPJILRB;265ba845-35e1-475e-a964-2dac31b42cd9;Paris | boulevard de Bercy 5;;Parking Visiteurs 63490 USSON (63);;[2.3320835, 48.8699261];;FRCPIE67292952;FVJJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.3042228;48.8552045;;;; +;;;;;;;;FRM45PPSUDUL9MIJ;cc1d2e0e-7a9b-45b5-9b5b-de5e07ec5ff8;Paris | Rue Nationale 77;;Parking Mairie 63580 VERNET LA VARENNE (63);;[2.344388, 48.86502];;FRCPIE67292852;FVJJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.3546758690873664;48.8471079;;;; +;;;;;;;;FRM45PMH4YHU6SK6;339947f7-156f-4a43-8d99-11be0fcadc38;Paris | Rue Marie-Andrée Lagroua Weil-Halle 2;;Parking En Face De La Mairie 63340 VILLENEUVE (63);;[2.3454538, 48.8704209];;FRIONE440112;QZZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.5039817;48.8524509;;;; +;;;;;;;;FRM45PBXRRLVQJLH;a9096453-eaa5-4678-a6bc-04dd8560dd64;Paris | Avenue Émile Laurent 1;;Parking Les Aurandeix 63690 TAUVES (63);;[2.3408933, 48.8705626];;FRCPIE67292851;MDTH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.4963382;43.765692;;;; +;;;;;;;;FRM45PRG6TILUNOU;249d8e6d-f737-4dd8-b92f-1c26a2fd251b;Paris | Rue Antoine-Julien Henard 3;;FCG Thiers Maison des sports 63300 THIERS (63);;[2.34681, 48.85788];;FRCPIE66238951;MDTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.5062241;43.295789;;;; +;;;;;;;;FRM45PNMFVTC5INF;ab39a848-e59f-47b2-9ad1-1dd3e94d3fa7;Paris | Rue Fabre d'Églantine 2;;3 Place Duchasseint 63300 THIERS (63);;[2.3423247, 48.8696994];;FRCPIE66238852;ZMRF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.465746327260876;48.87579799849022;;;; +;;;;;;;;FRM45PGWXYTVBPSU;2480517a-cc7d-44d3-82ec-15b467c1c91d;Paris | Rue des Pirogues de Bercy 44;;1 Rue Fernand Forest 63300 THIERS (63);;[2.3508835, 48.8680082];;FRCPIE66238851;LZLB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.366667;48.871139475303686;;;; +;;;;;;;;FRM45PLUGYSMFOZQ;8b6cd60c-7039-4767-a614-4bde137d5e1b;Paris | cours de Vincennes 120;;1 Rue de Jassaguet 63790 MUROL (63);;[2.41177, 48.863766];;FRCPIE65345352;LZLB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.21256;47.7504708;;;; +;;;;;;;;FRM45POJGJFQZ0RB;88ef85e9-de48-4f6d-ba13-85556123f161;Paris | Rue de Chevaleret 131;;Pied du Sancy 63240 MONT DORE (63);;[2.319768, 48.882718];;FRCPIE65345351;JWNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.85745361168763;44.015987295958546;;;; +;;;;;;;;FRM45PPZE0R0CX2I;a50a57d0-be6b-11ed-afa1-0242ac120002;Paris | Rue Fernand Braudel 21;;Parking Entree Du Bourg 63114 MONTPEYROUX (63);;[2.313751, 48.881168];;FRIENE0047024;JWNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.071864476703762;43.7759834;;;; +;;;;;;;;FRM45PEF6ASZTSVN;acc38e38-be6b-11ed-afa1-0242ac120002;Paris | Rue des Frigos 24;;13 Avenue de la Libération 63240 MONT DORE (63);;[2.302442, 48.879654];;FRIENE0047023;YSWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.437154769315841;43.7738717;;;; +;;;;;;;;FRM45PTVHCOYXT0Q;ad76910e-be6b-11ed-afa1-0242ac120002;Paris | Rue Croulebarbe 1;;1 Route Durtol 63830 NOHANENT (63);;[2.297463, 48.885689];;FRIENE0047012;WPNK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4680534959656213;43.7746702;;;; +;;;;;;;;FRM45PFGU7G4ZMF1;1c56aaca-a92f-11ed-afa1-0242ac120002;Paris | Rue Gouthière 12;;Place Du Bouillas 63340 NONETTE ORSONNETTE (63);;[2.33891, 48.889731];;FRIENE0047011;WPNK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.745622938624003;47.259069997714015;;;; +;;;;;;;;FRM45PO075GC5TMJ;48baf7c6-a92d-11ed-afa1-0242ac120002;Paris | Rue Vulpian 24;;9 Rue de la Liberté 63870 ORCINES (63);;[2.352758, 48.897671];;FRS08E35484;PSWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4708516751267252;48.8678524;;;; +;;;;;;;;FRM45PHSZFHCDE65;6cf8b432-a92a-11ed-afa1-0242ac120002;Paris | Avenue de Choisy 8;;1 Rue Saint-Verny 63370 LEMPDES (63);;[2.3564553, 48.8512525];;FRS08E35483;PSWX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.814664415340753;43.6689;;;; +;;;;;;;;FRM45PZIWOWMFJOR;5a8bb060-a92a-11ed-afa1-0242ac120002;Paris | Avenue de Choisy 188;;Parking Des Freres Lumieres 63500 ISSOIRE (63);;[2.34066, 48.89311];;FRCPIE65579752;PTHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3486904895097536;47.88572973520105;;;; +;;;;;;;;FRM45PT0XMNJU9T9;1eb8e7b4-62ee-474b-acd4-b6023d6614fb;Paris | Rue de Rungis 2;;Route de Bagnols 63680 LA TOUR D'AUVERGNE (63);;[2.268339, 48.846761];;FRCPIE65579751;UWSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2523614732393145;45.713664931380926;;;; +;;;;;;;;FRM45PDEAGBEULR4;bf55ffa3-b3a6-47af-a385-1238518c4580;Paris | Boulevard Arago 52;;Place Allard 63130 ROYAT (63);;[2.258213, 48.846653];;FRCPIE65578752;SKVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.098126;48.21617580915875;;;; +;;;;;;;;FRFR1PD1LX7U3SHG;7b1f4366-78f9-42cd-9b13-1d38b33eca3c;Paris | Rue Darmesteter 12;;Square Lopick 63190 LEZOUX (63);;[2.286938, 48.883282];;FRCPIE65578751;ZMRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.260794257663834;49.2313543194067;;;; +;;;;;;;;FRFR1PUZAVKETLCQ;ba8b6111-5958-436b-b596-5a0a9f36c47a;Paris | Rue Bobillot 16;;20-22 Rue de la Gare 63650 LA MONNERIE LE MONTEL (63);;[2.293606, 48.878965];;FRCPIE65578652;GAXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.71525;43.425620410989545;;;; +;;;;;;;;FRFR1PRWFXPQAB4Q;fc161245-0854-4069-af37-e005493803bc;Paris | Boulevard Emile Augier 12;;1 Rue de l'Église 63210 ROCHEFORT MONTAGNE (63);;[2.405196, 48.874134];;FRCPIE65578651;YJRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.71151;43.908112555133386;;;; +;;;;;;;;FRFR1PXVUDFL;0684bfd6-beba-41c9-9971-a815e82ffaf2;Paris | Rue Jean-Jacques Rousseau 62;;2 Rue Alphonse Cornet 63200 RIOM (63);;[2.371768, 48.889011];;FRCPIE66238952;THZL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.7155734422333266;43.126642692001724;;;; +;;;;;;;;FRFR1PAHSA5KVF5H;6fc1f04e-b3a4-4002-b89f-9955d0a67474;Paris | Rue Bertin Poirée 14;;1 Rue Jeanne d'Arc 63200 RIOM (63);;[2.397724, 48.86424];;FRCPIE66239051;UBMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.265881;48.850723128182764;;;; +;;;;;;;;FRFR1PPP3BZRYFVB;139321;Paris | Rue des Pyramides 12;;2 Avenue Jean Moulin 63540 ROMAGNAT (63);;[2.39182, 48.8778];;FRCPIE66239052;THZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.68833;48.844450618719236;;;; +;;;;;;;;FRM45PKWO1HTGHLY;139319;Paris | Rue des Croix des Petits Champs 4;;Avenue de la République 63170 PERIGNAT LES SARLIEVE (63);;[2.378283, 48.872905];;FRS88E162386;LKDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.968749384840031;48.449691;;;; +;;;;;;;;FRM45PZRINLM4J90;139322;Paris | Rue Saint Roch 3;;Parking Gare 63270 PARENT (63);;[2.403802, 48.857094];;FRCPIE65648352;MVXB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.1288420730115881;43.704066010469525;;;; +;;;;;;;;FRM45PYHVKIMCLPK;139320;Paris | SAGS Parking Lobau;;Place Jean Jaurès 63290 PUY GUILLAUME (63);;[2.35423, 48.89061];;FRCPIE65648351;PQGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.335902615342613;48.99051;;;; +;;;;;;;;FRM45PGI557RXISG;5c0bb6f0-a629-11ed-afa1-0242ac120002;Paris | SAEMES Parking Porte d'Auteuil;;Place Du Château 63500 PARENTIGNAT (63);;[2.398476, 48.880421];;FRCPIE65357052;MVXB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7257659312513107;48.98856;;;; +;;;;;;;;FRM45PTCKN0ZQ234;5a7d2c7a-a628-11ed-afa1-0242ac120002;Paris | Rue Henri Barbusse 25;;1 Rue du Dr Chambige 63430 PONT DU CHATEAU (63);;[2.369961, 48.88472];;FRCPIE65357051;EJFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.842535284659247;48.989153264996226;;;; +;;;;;;;;FRM45PLXDKXFFZNL;2460897a-a623-11ed-afa1-0242ac120002;Paris | Rue de la Paix 24;;AVENUE NOTRE DAME - PA DE LA CREULE;;[2.382705, 48.882794];;FRCPIE65353752;YJDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.2463627684080526;43.695113;;;; +;;;;;;;;FRM45PS7VYUHK4NE;3c380d96-a62a-11ed-afa1-0242ac120002;Paris | Rue Etienne Marcel 36;;Avenue Louis Philibert 13290 Aix-en-Provence;;[2.388149, 48.88842];;FRCPIE65353751;YJRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.259749755820001;47.38909;;;; +;;;;;;;;FRFR1PR3DAUXRW4P;50e103da-9bf1-11ed-a8fc-0242ac120002;Paris | Rue d'Uzès 1;;27 Allée du Petit Puy 63170 Pérignat-lès-Sarliève;;[2.335097, 48.868181];;FRS88E162388;YHLZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.595404028892517;47.13239465083698;;;; +;;;;;;;;FRFR1PUSZMAL05ZQ;FR*EZD*E45628;Paris | Rue Vivienne 43;;place de la gare 28240;;[2.3469365, 48.8479993];;FRS88E150305;YHLZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.24642427703547448;44.93076715073785;;;; +;;;;;;;;FRFR1PXSSSZNZRAX;2f00b621-df9a-4f47-a16a-f6367c6f4ee1;Paris | Avenue Victoria 17;;2 rue COPERNIC av Innovia, 39500 DAMPARIS;;[2.3476575, 48.8397733];;FRIONE469407;EZEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.714056171164;46.91060667443239;;;; +;;;;;;;;FRFR1PBSV6PWXBFW;618013fd-1c28-475a-b254-5d70df20d740;Paris | Rue Notre-Dame des Victoires 21;;4 B Avenue Antoine Becquerel 33600 PESSAC;;[2.3472476, 48.8513879];;FRS88E150303;YJDU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.045389;48.07223223395324;;;; +;;;;;;;;FRFR1PZNBCSN6ZPT;644a2d6e-ddca-11ed-b5ea-0242ac120002;Paris | Rue d'Alexandrie 7;;21 AVENUE DE LA CREATIVITE;;[2.3524539504414306, 48.84116058051008];;FRIONE46945;PRTH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.30588;47.03594831089646;;;; +;;;;;;;;FRFR1PMMGQZODB2U;0643f7d8-a22c-11ed-a8fc-0242ac120002;Paris | Rue Louis Lumière 104;;RUE AMBROISE PARE;;[2.3522773, 48.8444276];;FRIONE469412;PRTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.20869700610637665;49.41412118399849;;;; +;;;;;;;;FRFR1POJUO57LEEY;d3cad87d-af23-4a6a-96a1-eed1a258dbf2;Paris | Rue de Rome 81;;11 RUE PRINCIPALE 67510 Niedersteinbach;;[2.3444286, 48.8499024];;FRIONE469411;FHVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35791;46.19579293671129;;;; +;;;;;;;;FRFR1PLEH2TPO0J7;21f11530-1df1-4e97-8874-fb621835cfb1;Paris | Boulevard de Courcelles 12;;2 Avenue du Souvenir Francais 13210 Saint-Rémy-de-Provence;;[2.3430684, 48.8420054];;FRIONE469410;LYTY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5446009851970426;48.84031677246094;;;; +;;;;;;;;FRFR1PKR6PZL5IRM;28370af1-4351-460c-b230-7244a31d0245;Paris | Rue de Courcelles 83;;39 RUE DU BRONCKAERT - 59960 NEUVILLE EN FERRAN;;[2.3542653, 48.8596689];;FRIONE469409;FXZM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.3010955846585653;49.414548090909335;;;; +;;;;;;;;FRFR1PZ4Q5I7BYZR;347f5151-9688-4f3c-9509-90c282501fab;Paris | Avenue Gourgaud 4;;340 route de la violle - 07170 darbres;;[2.3543751, 48.8585045];;FRIONE469408;EZEF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.71206;45.16083229416006;;;; +;;;;;;;;FRFR1PDGUY2HD3PH;667c7cce-8908-4fd5-8a2a-b02cae20e4e8;Paris | Rue Caulaincourt 103;;16 AVENUE DES RAMADES - 84150 JONQUIERES;;[2.363958, 48.853574];;FRIONE451814;EZEF3;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35854;47.358192;;;; +;;;;;;;;FRFR1PIB0HMQS0YP;FR*MAP*P000000007038;Paris | Rue des Poissonniers 150;;ECOPARC DE MALIJAI - BAT 5 ZA DU PRIEURE - 04 350 MALIJAI;;[2.345341, 48.8541989];;FRIONE451815;EZEF4;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.55032;48.86761;;;; +;;;;;;;;FRFR1PNFZ3TXLMC0;30893f16-8cc1-4c38-ac64-f258d2f9bdd1;Paris | Quai de Béthune 36;;sainte lucie de porto vecchio -20144;;[2.347262, 48.84196];;FRIONE451816;FXZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34781;48.90683364868164;;;; +;;;;;;;;FRFR1PRNOIXUVWZ9;50637;Paris | Rue Ordener 110;;19 BD GENERAL VAUTRIN - 06600 ANTIBES;;[2.3484148, 48.8463237];;FRIONE45185;FXZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2967943540808378;48.8354;;;; +;;;;;;;;FRFR1PUIWGGGBRB8;50650;Paris | Rue Chardon Lagache 2;;7b chemin des combette 13;;[2.3544309, 48.850032];;FRCPIE65410852;RSVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.09441;48.83853657966518;;;; +;;;;;;;;FRFR1PGJTASUUHDC;FRC2P002101;Paris | Boulevard Murat 15;;692 ROUTE D ORANGE;;[2.3507414, 48.8392739];;FRCPIE65410851;RSVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.947743473694628;49.16246233244864;;;; +;;;;;;;;FRFR1POA04A96XNU;FRC2P002501;Paris | Avenue de la Porte de Villiers 2;;4 RUE D'ANTOEUILLES;;[2.360503, 48.86502];;FRCPIE65410552;TKQB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.834670844833498;48.99212;;;; +;;;;;;;;FRFR1PR5WTOSEIZZ;FRC2P002502;Paris | Avenue des Ternes 36;;3 boulevard de la Teign;;[2.3673798, 48.8589682];;FRCPIE65410551;TXLM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.838246420326645;48.86359;;;; +;;;;;;;;FRFR1PKSYDHOQJJU;FRC2P002503;Paris | Avenue Gambetta 227;;Place du Marché 57320 Bouzonville;;[2.3648513, 48.8623505];;FRCPIE65409952;WHJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.839751898330378;44.86411;;;; +;;;;;;;;FRFR1PBCW6UDGKOZ;FRC2P002505;Paris | Rue Riquet 39;;rue d'alzing - 57320 BOUZONVILLE;;[2.3505278, 48.8548459];;FRCPIE65409951;WHJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.846772144834794;48.87122;;;; +;;;;;;;;FRFR1PACYY4VWEH3;FRC2P002504;Paris | Avenue du Père Lachaise 13;;za de Kerboulard;;[2.34525, 48.86781];;FRCPIE67259252;LDUV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.2385127991437912;48.87715355652244;;;; +;;;;;;;;FRFR1PRQMXNLPGD7;FRC2P000402;Paris | Rue de Crimée 14;;86 AVENUE DE LA REPUBLIQUE;;[2.3526978, 48.8633367];;FRCPIE67259251;LDUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.26451;43.63799;;;; +;;;;;;;;FRFR1PASYWTL;FRC2P000407;Paris | Rue Jules Romains 5;;12 RUE DENIS PAPIN 37300;;[2.3630074, 48.8674504];;FRIONE43145;KGDW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.36856;47.13177788637616;;;; +;;;;;;;;FRLE2PWFAMGXB1VA;FRC2P000406;Paris | Rue des Pyrénées 127;;12 RUE DENIS PAPIN 37300 JOUE;;[2.3548335, 48.8452566];;FRIONE431404;KGDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2561617253619675;47.019918627758656;;;; +;;;;;;;;FRLE2PVYJZUKWZHX;FRC2P000405;Paris | Rue Ordener 27;;12 RUE denis papin 37300;;[2.361378, 48.85648];;FRIONE431403;WFHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.18515;46.796392784177385;;;; +;;;;;;;;FRLE2PYOTRGWFRUD;FRC2P000403;Paris | Boulevard Sérurier 54;;12 RUE DENIS PAPIN 37;;[2.3591939, 48.8553672];;FRIONE431402;TWGZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.87930851314442;47.0211145050141;;;; +;;;;;;;;FRLE2PKCAJTARK3I;FRC2P000401;Paris | Avenue de Flandre 10;;4 Rue Saint Michel 37800 Sainte Maure de Touraine;;[2.366004, 48.8484226];;FRIONE431401;TWGZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.378737442328959;47.02550828376189;;;; +;;;;;;;;FRLE2PVWWWTFPIOK;FRC2P002601;Paris | Place Armand Carrel 4;;LES BRUILLES;;[2.289894, 48.871465];;FRS08E57725;BUTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8803172978119616;49.41841125488281;;;; +;;;;;;;;FRLE2PVE2SNJRWXL;FRC2P002506;Paris | Rue Adolphe Mille 9;;31 Avenue de la Libération 63800 Cournon-d'Auvergne;;[2.299582, 48.85807];;FRS08E57724;TWGZ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.43787095756094;43.69807;;;; +;;;;;;;;FRLE2PYLN1E5ASLE;FRC2P003201;Paris | Rue Dalayrac 19;;13 Rue Pasteur 62410 Bénifontaine;;[2.3129161, 48.8512827];;FRCPIE65402152;AAAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16706109596188;43.831882;;;; +;;;;;;;;FRLE2PIMSVTLL4KF;FRC2P003402;Paris | bis Rue Valette 2;;ROUTE DE SAINT CAST 22550;;[2.3080758, 48.8561697];;FRCPIE65402151;TKQB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3392135708282433;48.847266326997016;;;; +;;;;;;;;FRLE2PUKTY6ATECR;FRC2P003902;Paris | Rue Claude Bernard 16;;ZI 25 Rue du Canton du Cailloutis;;[2.3106373, 48.8511276];;FRCPIE66275051;FUWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0343797063079334;48.87968;;;; +;;;;;;;;FRLE2PK5IED349PE;FRC2P003901;Paris | Rue Dante 1;;Quartier Les Grands Pres 26230 Grignan;;[2.3237968, 48.8508194];;FRCPIE66275052;VTPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.226915023755001;48.94679007929618;;;; +;;;;;;;;FRLE2PIFYOQREIHG;FRC2P004001;Paris | Rue Monge 99;;Parking SDED Privé 26300 Alixan;;[2.3195393, 48.8593659];;FRCPIE66275151;VTPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.771762215343999;48.11208081972636;;;; +;;;;;;;;FRLE2PUYYBBC9H8B;FRC2P003802;Paris | Rue Monge 58;;Passage de l'Amélie 26110 Vinsobres;;[2.3069867, 48.8611286];;FRCPIE65434551;FLZW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.8680684832543035;49.1758271238547;;;; +;;;;;;;;FRLE2PYYJ7KQJT6G;FRC2P003801;Paris | Rue Paul Painlevé 7;;Promenade de la Digue Est 26110 Nyons;;[2.3152447, 48.8558178];;FRIONE440111;JFKS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.072599014770537;48.21586889780601;;;; +;;;;;;;;FRLE2PBJPQZ2JJPW;FRC2P003702;Paris | Rue Gay-Lussac 66;;20 Avenue P. de Coubertin - Pkg piscine 26290 Donzère;;[2.310588, 48.85806];;FRIONE440110;FLZW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0869538865065596;49.14217184031736;;;; +;;;;;;;;FRLE2PJDCTMIKNGY;FRC2P003701;Paris | Rue du Temple 36;;Quai de l'Isère 26300 Châteauneuf-Sur-Isère;;[2.3077697, 48.8492973];;FRIONE440109;TWUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.9659948222190418;45.72855122129419;;;; +;;;;;;;;FRLE2PGHA5BJRBDD;FRC2P003403;Paris | Rue Sainte-Croix de la Bretonnerie 37;;Parking Du Temple 26270 Saulce-Sur-Rhône;;[2.314834, 48.8587263];;FRIONE440103;TMSP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8459941;45.396309000661006;;;; +;;;;;;;;FRLE2POTM9WEDT93;FRC2P004002;Paris | Rue Neuve Saint-Pierre 2;;Rue du Real Pkg Champ de Mars 26270 Loriol-Sur-Drôme;;[2.3041857865350335, 48.85829535733236];;FRIONE440102;TWUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8140013;46.19406639950159;;;; +;;;;;;;;FRLE2PADPZNMBHJV;FRC2P003401;Paris | Quai du Marché Neuf 8;;Place de la Mairie 26340 Saint-Nazaire-Le-Desert;;[2.3190123, 48.8530403];;FRIONE440101;TMSP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.721469092114616;45.712529840333644;;;; +;;;;;;;;FRLE2PNVFD81PSSR;FRC2P003501;Paris | Rue Pierre Brossolette 1;;ZI des Aires 26330 Châteauneuf-De-Galaure;;[2.315725, 48.8482825];;FRCPIE65434552;GGKH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.0415555914491317;46.8568964996855;;;; +;;;;;;;;FRLE2PKXNEVQRIEC;FRC2P002901;Paris | Rue Clovis 20;;Parking Rovaltain Face SDED 26300 Alixan;;[2.3097645, 48.8560129];;FRCPIE65422952;HZRQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.036040724644734;46.58534902679759;;;; +;;;;;;;;FRLE2PAJUHLGDXWB;FRC2P003202;Paris | Quai de la Tournelle 21;;Le Village 26320 Saint-Marcel-Lès-Valence;;[2.3245048, 48.8598769];;FRCPIE66275152;HUNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2589672351008163;49.45162182529298;;;; +;;;;;;;;FRLE2PU5VKNYZZH8;FRC2P003502;Paris | Rue Monge 112;;Place Anatole France 26260 Saint-Donat-Sur-L'Herbasse;;[2.3084191, 48.8657733];;FRCPIE65422951;HRDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.710239355468517;47.41092605168244;;;; +;;;;;;;;FRLE2PQNFNXLNAJV;FRC2P003601;Paris | Rue Perrée 18;;Place des Gauds 26210 Saint-Sorlin-En-Valloire;;[2.3041662, 48.8724475];;FRS08E57518;HGYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.233597954184353;47.0325195;;;; +;;;;;;;;FRLE2PNBQHPADN4M;FRC2P003602;Paris | Boulevard Beaumarchais 87;;Le Village 26210 Moras-En-Valloire;;[2.314663, 48.8737];;FRS08E57517;TWMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.044175784657921;47.5188961;;;; +;;;;;;;;FRLE2PAYO1HIHEPX;FRC2P005101;Paris | Rue de Turenne 98;;Parking des Grands Pres 26220 Dieulefit;;[2.3044935, 48.878351];;FRCPIE66275352;TWMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.6604186;47.65561996206715;;;; +;;;;;;;;FRLE2PGDMHCEAKTI;FRC2P004601;Paris | Quai aux Fleurs 23;;Place Nicolas Appert 26230 Valaurie;;[2.3046348, 48.8682112];;FRCPIE66275351;LJKX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.690473273011127;47.50852503292789;;;; +;;;;;;;;FRLE2PAPIQOKQASS;FRC2P004701;Paris | Rue Réaumur 116;;Massettes 2 73190 Challes-Les-Eaux;;[2.3263307, 48.8795963];;FRCPIE65415552;VNFR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.949377130687999;45.39793430999813;;;; +;;;;;;;;FRLE2PXFYFEZAQNO;FRC2P004702;Paris | Rue Saint-Martin 204;;Rue de Grasse 26700 Pierrelatte;;[2.301121, 48.87057];;FRCPIE65415551;VNFR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.547615742328;45.702755954262976;;;; +;;;;;;;;FRLE2PCUECDGTUQW;FRC2P004901;Paris | Place de la République 17;;Parking Cerisiers Mistral 26110 Nyons;;[2.329982, 48.85461];;FRS18E113096;YNTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.804661630684159;48.830511379284836;;;; +;;;;;;;;FRLE2PLUORMJVPMO;FRC2P004801;Paris | Rue Linnée 18;;Parking Comette Jouvet 26000 Valence;;[2.3193886, 48.8728324];;FRS18E113095;YNTS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0894925;49.10522433612676;;;; +;;;;;;;;FRLE2PGILDOVEZFC;FRC2P005201;Paris | Rue Malher 13;;Le Village 26560 Sederon;;[2.3008886, 48.8734765];;FRCPIE65778352;DQNG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.508447925326274;48.72321115587331;;;; +;;;;;;;;FRLE2PMMIX8ETSRI;FRC2P004502;Paris | Rue François Miron 80;;Parking du Supermarche 26510 Verclause;;[2.3036203, 48.8696448];;FRIONE43785;DQNG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.892356830681991;46.1920729;;;; +;;;;;;;;FRLE2PL0KOZZ2ARU;FRC2P005501;Paris | Boulevard Bourdon 9;;Piscine 26600 Tain-L'Hermitage;;[2.2976358, 48.8741642];;FRS08E35991;KWUV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.146379;45.148367685972154;;;; +;;;;;;;;FRLE2PFKHA6QWCW9;FRC2P005301;Paris | Avenue Victor Hugo 45;;Avenue des Langories 26000 Valence;;[2.32056, 48.881834];;FRS08E35886;VWPU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.145928;45.57229420213553;;;; +;;;;;;;;FRLE2PNJNRQHE26R;FRC2P005801;Paris | Avenue de la Bourdonnais 45;;Grande Rue 26600 La Roche-De-Glun;;[2.325922, 48.8830163];;FRS08E35885;CTXQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.070968;48.66533198978757;;;; +;;;;;;;;FRLE2PHDMLYUQSSU;FRC2P005802;Paris | place du Président Mithouard 6;;Place du 16 Août 26600 Pont-De-L'Isère;;[2.3225683, 48.8783912];;FRS18E112822;CTXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.863347;48.7960019597569;;;; +;;;;;;;;FRLE2PPPUUMBSESC;FRC2P005601;Paris | Rue Ernest Psichari 13;;Place de la Citoyenneté 26250 Livron Sur Drome;;[2.3239783, 48.847875];;FRS18E112821;VWPU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.899705;48.803014;;;; +;;;;;;;;FRLE2PDHAZIJAXIY;FRC2P005602;Paris | Avenue Duquesne 26;;170 Rue Ferdinand Fert - 26110 Nyons;;[2.3361369, 48.8516002];;FRCPIE65369552;FCBF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.067277;47.25090051279224;;;; +;;;;;;;;FRLE2PKIGSJKBXAQ;FRC2P004501;Paris | Rue du Bac 142;;Pont du Rhône 26000 Valence;;[2.342107, 48.85262];;FRCPIE65369551;KWUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.387229;49.154257203162594;;;; +;;;;;;;;FRLE2PNRA1F3Q2QE;FRC2P004401;Paris | Rue de Martignac 2;;Place De La Mairie 26110 St Ferreol Trente Pas;;[2.3182091, 48.8473691];;FRIONE437808;FCBF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.208368;43.932802;;;; +;;;;;;;;FRLE2PS1YCYKCLFA;FRC2P004301;Paris | Rue Jean Nicot 10;;Place Tony Garnier 26000 Valence;;[2.296744, 48.841287];;FRIONE409701;GQWS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.06979;49.349901;;;; +;;;;;;;;FRLE2PCKUSIH2KYG;FRC2P005901;Paris | Boulevard des Invalides 21;;Lautagne Labo 26000 Valence;;[2.3363896, 48.8425631];;FRIONE437807;CDNN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.03287;50.639161;;;; +;;;;;;;;FRLE2PX1P794WYD9;FRC2P006001;Paris | Rue de Grenelle 152;;Place du Champs de Mars 26240 Saint-Vallier;;[2.27153, 48.863602];;FRIONE437806;HMAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.691778;45.771057;;;; +;;;;;;;;FRLE2PF1FD6Q9XWL;FRC2P006101;Paris | Avenue de Ségur 55;;Parking Valentin 26500 Bourg-Lès-Valence;;[2.28308, 48.861016];;FRIONE437805;GQWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.093141;49.178504;;;; +;;;;;;;;FRLE2PQK9VIQB32M;FRC2P006501;Paris | Rue Constantine 25;;Place Jérôme Cavalli 26210 Lapeyrouse-Mornay;;[2.259932, 48.837055];;FRIONE437804;QGRT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.861404;43.420531;;;; +;;;;;;;;FRLE2PAJQJUM9B3C;FRC2P006502;Paris | Avenue Bosquet 41;;Cité de la Musique 26100 Romans-Sur-Isère;;[2.295469, 48.868511];;FRIONE437803;CHKP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.188131;48.831487;;;; +;;;;;;;;FRLE2PR7NKMNWNJE;FRC2P006301;Paris | Rue Chanaleilles 1;;Parking Jacquemard 26100 Romans-Sur-Isère;;[2.286403, 48.876162];;FRIONE437802;UBMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.64245;47.300077;;;; +;;;;;;;;FRFR1PX2P436SZ2U;FRC2P006302;Paris | Rue Duroc 2;;Place du 75eme Régiment Infanterie 26100 Romans-Sur-Isère;;[2.3287351, 48.8489613];;FRIONE437801;GAXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.601978976728186;45.688937;;;; +;;;;;;;;FRFR1PS3UNUSE4ZE;FRC2P006601;Paris | Boulevard de la Tour-Maubourg 76;;Delay 26100 Romans-Sur-Isère;;[2.333149, 48.84189];;FRS08E57419;MNYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.175193;50.568861;;;; +;;;;;;;;FRLE2PJAKVHCRJTT;FRC2P006401;Paris | Rue de Bellechasse 5;;Le Pont Neuf 26100 Romans-Sur-Isère;;[2.3280363, 48.8430076];;FRIONE409702;TZEH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.465756;44.88082;;;; +;;;;;;;;FRLE2PQUSUN2DQKD;FRC2P006707;Paris | Rue Francois 1er 7;;Place Des Tilleuils 26210 Lens-Lestang;;[2.3371078, 48.8552045];;FRCPIE65778351;FLQA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.790004885038854;47.317976;;;; +;;;;;;;;FRLE2PVEWFZ6V02A;FRC2P006706;Paris | Rue de Berri 10;;Place du Monument aux Morts Parking 26420 Saint-Martin-En-Vercors;;[2.3321208, 48.8471079];;FRIONE40925;PFBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.775424;45.759883;;;; +;;;;;;;;FRLE2PZVJ9WGG12K;FRC2P006705;Paris | Rue la Boétie 37;;Angle Léon Laurent/Julie Chaumat 26190 Saint-Nazaire-En-Royans;;[2.3314662, 48.8524509];;FRTNME079102700;FYGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.065153169232204;48.642626;;;; +;;;;;;;;FRLE2PZFEKUTTULE;FRC2P006704;Paris | Rue de Courcelles 69;;Parking Ancien Intermarché Bibliothèque 26190 Saint-Jean-En-Royans;;[1.368846, 43.765692];;FRIONE41265;FYGS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.117295;50.52183;;;; +;;;;;;;;FRLE2POWQGWF0OGT;FRC2P006703;Paris | Rue François 1er 38;;Rue Du Tram 26190 Saint-Jean-En-Royans;;[3.218075, 43.295789];;FRIONE412606;TPTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.195802;43.20610905711502;;;; +;;;;;;;;FRLE2PYE4ZWF9SHX;FRC2P006702;Paris | Rue de Liège 24;;Place de la Liberté 26400 Crest;;[2.320074840507427, 48.87579799849022];;FRIONE412605;TPTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.937386;43.587342;;;; +;;;;;;;;FRLE2PN3LWFBBFVR;FRC2P006701;Paris | Avenue George V 44;;Place des Maronniers 26400 Crest;;[2.324200757103425, 48.871139475303686];;FRIONE412604;GFYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.413516;43.512302;;;; +;;;;;;;;FRLE2PHGR47RDIT0;FRC2P006801;Paris | boulevard Saint -Germain 188;;Avenue Du Vercors 26240 Saint-Barthelemy-De-Vals;;[7.3042228, 47.7504708];;FRIONE412603;LFYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.388259;49.396659217227096;;;; +;;;;;;;;FRFR1PY0OSAKHGA8;FRC2P006901;Paris | Rue d'Astorg 11;;1 Place du Champs de Mars 26510 Remuzat;;[1.3546758690873664, 44.015987295958546];;FRCPIE65380951;UEWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.251248;49.402224;;;; +;;;;;;;;FRLE2PGHORFZQQIB;FRC2P007001;Paris | Rue du Chateaubriand 19;;Les Sources 26240 Saint-Uze;;[7.5039817, 43.7759834];;FRIONE409206;HMER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.762013;49.27058538303454;;;; +;;;;;;;;FRLE2PCYEDSCSTTC;01FDJ49W5BNFBBW4HR43XBSXYM;Paris | Rue Pierre Charron 62;;Route de Beaulieu 26450 Cleon-D'Andran;;[7.4963382, 43.7738717];;FRIONE409703;EYBB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.832477;49.282126;;;; +;;;;;;;;FRLE2PTXBSNOD426;01FBRQ3532D9RQ7W3DKXVQ7RS5;Paris | Avenue de Friedland 42;;Place du Quai 26460 Bourdeaux;;[7.5062241, 43.7746702];;FRIONE409205;AVXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.135334;43.703258;;;; +;;;;;;;;FRLE2PYIYEOEVU2D;01FBRNZA2J52JAYEAG7YXR7WXS;Paris | Rue de Rome 73;;Le Village 26400 Saou;;[0.465746327260876, 47.259069997714015];;FRIONE409204;PFBU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.760177;47.939605;;;; +;;;;;;;;FRLE2POXHA7QGZKR;69*axstn*lim*1;Paris | Boulevard des Batignolles 9;;Parking Ecole 26400 Mirabel-Et-Blacons;;[2.366667, 48.8678524];;FRIONE409203;BYLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.058089;43.710233;;;; +;;;;;;;;FRLE2PEGZ64DHCH9;EVB-P2020517;Paris | Rue de Rome 46;;Parking du Village 26470 La Motte-Chalancon;;[7.21256, 43.6689];;FRIONE409202;AMNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.340418;48.98659;;;; +;;;;;;;;FRLE2PYJFU0A6IJ3;01F85704N16K75F2NGKV1AERPC;Paris | Rue de Bérite 3;;575 Route de Nyons 26510 Sahune;;[6.85745361168763, 47.88572973520105];;FRIONE409201;RLRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.348379;43.434434;;;; +;;;;;;;;FRLE2PVSZIZOKFFF;399d4470-f5c3-11eb-9a03-0242ac130003;Paris | Rue Lobineau 9;;Ecole Jean Moulin 26500 Bourg-Lès-Valence;;[5.071864476703762, 45.713664931380926];;FRIONE40975;KXKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.329051;48.508649;;;; +;;;;;;;;FRLE2PKGCAZGUM9A;01F8SKQEQ9WHH6FRV6VTNW2ES9;Paris | Rue Danton 8;;Parking de la Mairie 26400 Aouste-Sur-Sye;;[6.437154769315841, 48.21617580915875];;FRIONE409704;BCCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.470213;46.79978;;;; +;;;;;;;;FRLE2PHL98XANBWT;61081;Paris | Rue Mayet 2;;Latour Maubourg 26000 Valence;;[2.4680534959656213, 49.2313543194067];;FRCPIE65449251;AVKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.322335;48.079524;;;; +;;;;;;;;FRLE2PWMUMKDAJTR;61082;Paris | Rue Theophraste Renaudot 21;;Place Saint Joseph 26400 Allex;;[6.745622938624003, 43.425620410989545];;FRA68P680210015;MAYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.355261;48.462003;;;; +;;;;;;;;FRLE2PY7RR8FAT3Y;61083;Paris | Rue Michelet 6;;Parking de l'école 26380 Peyrins;;[-0.4708516751267252, 43.908112555133386];;FRLUMECARASSINS11;XADC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.631473;48.503768;;;; +;;;;;;;;FRLE2PA12RW4GWRR;01FCMYGRABJTDCMWYM31ZQDEHA;Paris | Avenue Henri Martin 101;;Parking du Palais Idéal 26390 Hauterives;;[5.814664415340753, 43.126642692001724];;FRZIME22AC70565;NFVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.827436;48.703594;;;; +;;;;;;;;FRLE2PS2IIJS4XG5;01FGQVYRS0FX7TJ3JE1DEKMBBW;Paris | Avenue Paul Doumer 24;;Montée Soubeyranne 26340 Saillans;;[2.3486904895097536, 48.850723128182764];;FRZIME22AC70564;UNZJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.033458;48.044022;;;; +;;;;;;;;FRLE2PLLIU1YABC2MHX2;FR*V75*PPX16*16;Paris | Avenue Marcel Doret 4;;Place du Lavoir 26350 Saint-Bonnet-De-Valclerieux;;[2.2523614732393145, 48.844450618719236];;FRLUMEHOTELCHEVALBLANC11;CVGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5297513000000009;48.079293;;;; +;;;;;;;;FRLE2PRAWNYUUG7H;FR*V75*PPX16*18;Paris | Avenue d'Iéna 37;;D93 - Parking Pharmacie 26400 Aouste-Sur-Sye;;[0.098126, 48.449691];;FRZMAE22AC64555;FLQA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.094714;48.070643;;;; +;;;;;;;;FRLE2PPLJGCICCQV;FR*V75*PPX16*17;Paris | Avenue de la Grande Armée 77;;La Condamine 26570 Montbrun-Les-Bains;;[7.260794257663834, 43.704066010469525];;FRZMAE22AC64556;LVGX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.298185;48.040626;;;; +;;;;;;;;FRLE2PLSQHXACDBJ;FR*V75*PPX16*14;Paris | Rue de Rennes 105;;Avenue George Clémenceau 26108 Crest;;[1.71525, 48.99051];;FRZPEE22AC55849;XKFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.937887;48.676212;;;; +;;;;;;;;FRLE2PP3UZJUWQJR;FR*V75*PPX16*15;Paris | Rue Joseph Bara 15;;Clos Sylvestre 26000 Valence;;[1.71151, 48.98856];;FRZPEE24DC55848;GUFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.42;48.720711;;;; +;;;;;;;;FRLE2PHL3QNBDPQC;FR*V75*PPX16*22;Paris | Rue Péguy 2;;Commissariat, Rue Jacques Porraz 73200 Albertville;;[1.7155734422333266, 48.989153264996226];;FRLMSE1000121983;CJQZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8781143;48.27611;;;; +;;;;;;;;FRLE2PXAXIZNFOSG;FR*V75*PPX16*13;Paris | Rue Jacques Callot 5;;Parking Place de L'église 73200 Albertville;;[7.265881, 43.695113];;FRLMSE1000121976;EFAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2287561;48.624091;;;; +;;;;;;;;FRLE2PJ9REMMMQYE;FR*V75*PPX16*21;Paris | Rue de Fleurus 2;;Pkg des sœurs, Rue Claude Genoux 73200 Albertville;;[0.68833, 47.38909];;FRLMSE1000121977;ASCR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.414278;47.905351;;;; +;;;;;;;;FRLE2PYHEYYGZWWB;FR*V75*PPX16*20;Paris | Rue du Four 38;;Centre Bourg Route d'Apremont 73000 Barberaz;;[4.968749384840031, 47.13239465083698];;FRLMSE1000121978;ULWD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.431066;44.790757700000015;;;; +;;;;;;;;FRLE2PZYW3BNYUDP;FR*V75*PPX16*19;TOTALENERGIES | BAR RESTAURANT L’ARENA;;6 Rue Boucher De La Rupelle 73100 Grésy-sur-Aix;;[0.1288420730115881, 44.93076715073785];;FRLMSE1000121979;FNNC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.43951;49.474365;;;; +;;;;;;;;FRLE2PVD9HES2EX5;FR*V75*PPX16*09;TOTALENERGIES | RESTAURANT L’ETAPE BEZIERS;;Parking Place du Théatre 73200 Albertville;;[6.335902615342613, 46.91060667443239];;FRLMSE1000121980;ASCR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.421824;43.212574;;;; +;;;;;;;;FRFR1PDV6PHDO51M;FR*V75*PPX16*08;SAEMES | Parking Saint-Augustin;;Terraillet 1 73190 Saint-Baldoph;;[-0.7257659312513107, 48.07223223395324];;FRLMSE1000121981;CJQZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.213539;43.267998;;;; +;;;;;;;;FRLE2PWPHL8KYUMW;FR*V75*PPX16*07;SAEMES | Parking Madeleine-Tronchet;;Rte de Barby, Square de Leysse 73230 Saint-Alban-Leysse;;[4.842535284659247, 47.03594831089646];;FRLMSE1000121982;MELH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.4082;49.17;;;; +;;;;;;;;FRLE2PCYQSQKGBPL;FR*V75*PPX16*06;GROUPE CAR AVENUE - OHK MULHOUSE;;Gare 73250 Saint-Pierre-D'Albigny;;[0.2463627684080526, 49.41412118399849];;FRLMSE1000121991;ULWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.481858;50.8648906;;;; +;;;;;;;;FRLE2PKDPI0FF7U9;FR*V75*PPX16*05;INTERPARKING | PARKING Montauban Roosevelt;;Rue De La Petite Eau 73290 La Motte-Servolex;;[6.259749755820001, 46.19579293671129];;FRLMSE1000121984;GUWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.217351;50.4769909;;;; +;;;;;;;;FRLE2PNSMOIFZBLP;FR*V75*PPX16*12;INTERPARKING | PARKING MENTON HOTEL DE VILLE;;Place du commerce 73230 Saint-Alban-Leysse;;[-1.595404028892517, 48.84031677246094];;FRLMSE1000121985;GUJB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.177512;43.268556;;;; +;;;;;;;;FRLE2PGU3XHH5FGE;FR*V75*PPX16*11;INTERPARKING | PARKING MENTON GEORGE V;;Ruffieux, ZA de Saumont 73310 Ruffieux;;[0.24642427703547448, 49.414548090909335];;FRLMSE1000121986;GUJB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.51211;43.282781;;;; +;;;;;;;;FRLE2PRVQEOVVA6G;FR*V75*PPX16*10;INTERPARKING | PARKING MENTON BASTION;;Passage du 19 mars 1962 73800 Les Marches;;[5.714056171164, 45.16083229416006];;FRLMSE1000121987;LVGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.459582;43.28123;;;; +;;;;;;;;FRLE2PE23HKPXHU0;FR*V75*PPX16*26;INTERPARKING | PARKING Azay-le-Rideau Château;;En face ex siège social CC BAUGES 73630 Le Chatelard;;[5.045389, 47.358192];;FRLMSE1000121989;GUFY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.340986;43.269773;;;; +;;;;;;;;FRLE2PBTSTFI6AAL;FR*V75*PPX17*04;INTERPARKING | PARKING PARIS ALHAMBRA;;House Boat, allée Lac de Garde 73370 Le Bourget-Du-Lac;;[2.30588,48.86761];;FRLMSE1000121990;GUWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.50964;43.417033;;;; +;;;;;;;;FRLE2PLLI360U001X0NX;FR*V75*PPX17*03;Interparking | Parking Nice Nouvel'R;;658 Avenue de Lyon Hôpital 73000 Chambery;;[-0.20869700610637665, 48.90683364868164];;FRLMSE1000121973;VJRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.464186;43.280252;;;; +;;;;;;;;FRLE2PG2MLRX4ZEK;FR*V75*PPX17*02;VIKINGS CASINOS - Casino Bussang;;Rue de la République Manège 73000 Chambery;;[2.35791, 48.8354];;FRLMSE1000121992;JAEY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.449793;43.298393;;;; +;;;;;;;;FRLE2PINAACCIR9R;FR*V75*PPX17*01;IBIS Budget Aeroport de Lyon;;Grésy sur Aix, Rue du commerce 73100 Gresy-Sur-Aix;;[-1.5446009851970426, 48.83853657966518];;FRLMSE1000121975;RWUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.42204;43.418544;;;; +;;;;;;;;FRLE2PHV5IVJHUQH;FR*V75*PPX16*31;CAR AVENUE - KIA EPINAL;;Alpespace, Pyramide 73390 Francin;;[-0.3010955846585653, 49.16246233244864];;FRLMSE1000121988;LLHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.450343;43.728394;;;; +;;;;;;;;FRLE2PTJGAVFF5GW;FR*V75*PPX17*08;RIESTER HYUNDAI - SAINT MAXIMIN;;Place des fées 73490 La Ravoire;;[1.71206, 48.99212];;FRLMSE1000121974;YWBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.309629;43.31196;;;; +;;;;;;;;FRLE2PGIAIHIV8XR;FR*V75*PPX17*07;Vikings Casinos Frejus;;Rue des Allobroges 73290 La Motte-Servolex;;[2.35854,48.86359];;FRLMSE1000100981;GYRH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.990593;43.288847;;;; +;;;;;;;;FRLE2PAQQEZYTWL4;FR*V75*PPX17*06;IBIS Mont de Marsan;;Entrelacs, Pce JM Montillet 73410 Entrelacs;;[-0.55032, 44.86411];;FRLMSE1000100986;QASE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.194176;43.393554;;;; +;;;;;;;;FRLE2PQNCX1RC4JP;FR*V75*PPX17*05;Viking Casinos Sanary sur Mer;;Rue d'Anjou 73000 Chambery;;[2.34781,48.87122];;FRLMSE1000100978;LVGL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.60471;43.30106;;;; +;;;;;;;;FRLE2PIRPP8IVUJA;FR*V75*PPX16*23;SAEMES | PARKING LAGRANGE;;Rue de la Poterie 73160 Cognin;;[2.2967943540808378, 48.87715355652244];;FRLMSE1000100979;LVGX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.176413;43.312781;;;; +;;;;;;;;FRLE2PL1KKD299J9;FR*V75*PPX16*27;SAEMES | PARKING JEAN BOUIN;;Ecoris Rue de Chantabord 73000 Chambery;;[5.09441, 43.63799];;FRLMSE1000100977;YABL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.983332;43.312251;;;; +;;;;;;;;FRLE2PYBRK29KKAC;FR*V75*PPX16*25;VALFRAMBERT - Rue de Gâtel;;Agrion, Rue Maurice Herzog Savoie Hexapole 73420 Mery;;[4.947743473694628, 47.13177788637616];;FRLMSE1000100976;CAFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.348994;43.318421;;;; +;;;;;;;;FRLE2PYCCDL67FO4;FR*V75*PPX16*24;INTERPARKING - Nice Gare Thiers;;Place des Cantalous 73340 Lescheraines;;[4.834670844833498, 47.019918627758656];;FRLMSE1000100980;MMTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.988932;43.303279;;;; +;;;;;;;;FRLE2PYQWPOFVGFO;FR*V75*PPX16*30;INTERPARKING - Hôtel de Ville (Mantes-la-Jolie);;avenue de Savoie 73800 Montmelian;;[4.838246420326645, 46.796392784177385];;FRLMSE1000100982;MUNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.980599;43.410797;;;; +;;;;;;;;FRLE2POMOWLNFECU;FR*V75*PPX16*29;INTERPARKING - Normandie (Mantes-la-Jolie);;Place Herriot 26000 Valence;;[4.839751898330378, 47.0211145050141];;FRLMSE1000100983;GPLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.992584;43.513977;;;; +;;;;;;;;FRLE2PIKQI33EAGO;FR*V75*PPX16*28;INTERPARKING - Cœur de Mantes (Mantes-la-Jolie);;Aire de Bayanne 26300 Alixan;;[4.846772144834794, 47.02550828376189];;FRLMSE1000100988;UMRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.517073;43.551585;;;; +;;;;;;;;FRLE2PQWRHODBYDL;FR*V75*PPX15*37;INTERPARKING - Nice Ruhl Méridien;;Centre de vie Sud 2, Rue mer Caspienne 73370 Le Bourget-Du-Lac;;[0.2385127991437912, 49.41841125488281];;FRLMSE1000100987;JGAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.309295;43.376505;;;; +;;;;;;;;FRLE2PW7KDI5HCIN;FR*V75*PPX15*19;INTERPARKING - Palais Jaurès;;Allée lac d'Aiguebellette 73370 Le Bourget-Du-Lac;;[7.26451, 43.69807];;FRLMSE1000100984;JAUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.08596;43.629899;;;; +;;;;;;;;FRLE2PYQJMOPCAAH;FR*V75*PPX15*18;DESFOSSEY- ACCOR - IBIS BUDGET NUITS SAINT GEORGES;;Rue des Ecoles 73370 Le Bourget-Du-Lac;;[4.36856, 43.831882];;FRLMSE1000100985;HAEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.264653;43.494334;;;; +;;;;;;;;FRLE2PRYFDYJESIX;FR*V75*PPX15*17;HOTEL AUX DUCS DE SIENNE;;Boulevard du lac 73370 Le Bourget-Du-Lac;;[2.2561617253619675, 48.847266326997016];;FRMAPE000017079175;TATV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.124454;43.380874;;;; +;;;;;;;;FRLE2PCQPVKJX8F5;FR*V75*PPX15*16;DESFOSSEY - ACCOR - IBIS RED PONTARLIER;;Place Herriot 26362 Valence;;[2.18515, 48.87968];;FRMAPE000017079056;RURM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.487714;43.502474;;;; +;;;;;;;;FRLE2PBTABXYFOLK;FR*V75*PPX15*15;IBIS Budget Bonchamps Laval;;Place Jules Nadi 26100 Romans-Sur-Isere;;[2.87930851314442, 48.94679007929618];;FRMAPE000017079196;GMAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.387306;43.515583;;;; +;;;;;;;;FRLE2PPWO9NBXWE4;FR*V75*PPX15*22;SPORT ET NATURE - SCI DUBOIS SIMONNEAU BEAUNE;;Rue du Dr Rochefrette Pkg. Poste 73190 Challes-Les-Eaux;;[7.378737442328959, 48.11208081972636];;FRMAPE000017079377;SBMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.43225;43.476179;;;; +;;;;;;;;FRLE2PHEDAVFNBCX;FR*V75*PPX15*21;IBIS - Rouge Honfleur;;Route de Nyons 26110 Vinsobres;;[6.8803172978119616, 49.1758271238547];;FRMAPE000017079259;JVNC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.413793;43.281395;;;; +;;;;;;;;FRLE2PATCMVSJYLE;FR*V75*PPX15*20;Entrepôt du Bricolage - Annemasse;;Parking des Bains 26310 Luc-En-Diois;;[6.43787095756094, 48.21586889780601];;FRMAPE000017079367;SBMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.446643;43.714044;;;; +;;;;;;;;FRLE2PVEPHSK0X97;FR*V75*PPX15*14;VIKINGS CASINO MERCURE GRANVILLE;;Rue du Tram 26600 Granges-Les-Beaumont;;[6.16706109596188, 49.14217184031736];;FRLUMEPOINTSUBLIME11;JVNC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.367851;43.699042;;;; +;;;;;;;;FRLE2PM31REAHFB0;FR*V75*PPX15*23;B&B HOTEL HONFLEUR - la riviere Saint-Sauveur;;Barillettes-parc, Rue Louis Pasteur 73490 La Ravoire;;[3.3392135708282433, 45.72855122129419];;FRLUMELAGRANDEBASTIDE11;RVSY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.389845;43.654859;;;; +;;;;;;;;FRLE2PIQJ0OJAZ1J;FR*V75*PPX15*10;Siège Social - Pitet;;Rue du 8 mai 1945 73110 La Rochette;;[2.0343797063079334, 45.396309000661006];;FRLUMELOUCASTELET11;MULV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.371379;43.59286;;;; +;;;;;;;;FRLE2PX4XISCA2J2;FR*V75*PPX15*09;MAISON DES ENTREPRISES - Dijon;;Le Phare Bissy 73000 Chambery;;[2.226915023755001, 46.19406639950159];;FRMAPE000021199961;MULV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.366179;43.510783;;;; +;;;;;;;;FRLE2PHINBFLC45F;FR*V75*PPX15*08;INTERPARKING - Paris François 1er;;Massettes 1 73190 Challes-Les-Eaux;;[4.771762215343999, 45.712529840333644];;FRMAPE000021199786;MUNY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.368833;43.295444;;;; +;;;;;;;;FRLE2PR8YVCQZTND;FR*V75*PPX15*07;IBIS Rouge Falaise;;Avenue des Follaz, Fontanettes 73000 Chambery;;[-1.8680684832543035, 46.8568964996855];;FRMAPE000021781290;HEAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.381055;43.32013;;;; +;;;;;;;;FRLE2PXGDLZYXS0Z;FR*V75*PPX15*06;INTERPARKING - Paris Salpêtrière Italie;;Piscine Chambery 29 Rue Henri Oreiller 73000 Chambery;;[3.072599014770537, 46.58534902679759];;FRMAPE000025336848;HEAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.38179;43.326733;;;; +;;;;;;;;FRLE2PAVW2LZTUA9;FR*V75*PPX15*05;IBIS Budget - Grandville;;Cote Rousse, rue du genevois 73000 Chambery;;[2.0869538865065596, 49.45162182529298];;FRMAPE000021781297;UBJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.39319;43.342856;;;; +;;;;;;;;FRLE2PBL46XIQUQH;FR*V75*PPX17*09;IBIS Budget - Mondeville;;Centre de vie Sud 1, rue mer Caspienne 73370 Le Bourget-Du-Lac;;[-1.9659948222190418, 47.41092605168244];;FRMAPE000015123654;XKFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.400517;43.308184;;;; +;;;;;;;;FRLE2PMNRKQHLAFM;FR*V75*PPX15*13;INTERPARKING - Vieux Pilori (Mantes-la-Jolie);;Parking avenue des Salins 73230 Barby;;[4.8459941, 47.0325195];;FRMAPE000015145778;JKJD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.400736;43.309831;;;; +;;;;;;;;FRLE2PV5BA5FDJUH;FR*V75*PPX15*12;INTERPARKING - Parking Temple;;Parking co-voiturage 26120 Montelier;;[6.8140013, 47.5188961];;FRMAPE000015123685;JKJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.397974;43.309042;;;; +;;;;;;;;FRLE2PQ6OD1KDAIZ;FR*V75*PPX15*11;INTERPARKING - Bordeaux Cité du Vin;;Epinettes Avenue Paul Chevalier 73230 Barby;;[-2.721469092114616, 47.65561996206715];;FRMAPE000015145607;XKVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.396799;43.298904;;;; +;;;;;;;;FRLE2PBVXNEXLOLK;FR*V75*PPX16*04;INTERPARKING - Paris Rex Atrium;;Horloge, rue du Lac Majeur 73370 Le Bourget-Du-Lac;;[-2.0415555914491317, 47.50852503292789];;FRDOUEP27120CRACKS05;XKVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.992965;43.301462;;;; +;;;;;;;;FRLE2PTADFEWONYG;FR*V75*PPX15*36;INTERPARKING - Paris Wagram;;Hélios, avenue du Lac Léman 73370 Le Bourget-Du-Lac;;[2.036040724644734, 45.39793430999813];;FRDOUEP27120CRACKS01;ZJRX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.399566;43.301561;;;; +;;;;;;;;FRLE2PSZZB9I4EIY;FR*V75*PPX15*35;INTERPARKING - Salon de Provence place Morgan;;Route de Valence 26800 Montoison;;[2.2589672351008163, 45.702755954262976];;FRDOUEP27120CRACKS02;WRPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.396151;43.299055;;;; +;;;;;;;;FRLE2PMQMCLP8KZX;FR*V75*PPX15*34;DESFOSSEY - ACCOR - IBIS RED NUITS SAINT GEORGES;;Place De La Mairie 26600 Beaumont-Monteux;;[2.710239355468517, 48.830511379284836];;FRDOUEP27120CRACKS03;DAKP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.400273;43.304651;;;; +;;;;;;;;FRLE2PLLJIJ0TTT18I05;FR*V75*PPX15*33;DESFOSSEY - ACCOR - IBIS RED BEAUNE CENTRE;;66 Rue des Maisons Neuves 26600 Erôme;;[6.233597954184353, 49.10522433612676];;FRDOUEP27120CRACKS04;VTNL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.329846;43.302721;;;; +;;;;;;;;FRLE2PMOHBRNPVBT;FR*V75*PPX15*32;DESFOSSEY - ACCOR - IBIS RED CHALON SUR SAONE NORD;;Chemin De Ravaly 26200 Montelimar;;[7.044175784657921, 48.72321115587331];;FRFR1EABKF1;EJAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.436152;43.310012;;;; +;;;;;;;;FRLE2PQXCGZMJ0WQ;FR*V75*PPX16*03;DESFOSSEY - ACCOR - IBIS STYLES BEAUNE CENTRE;;Place Taurobole 26600 Tain-L'Hermitage;;[0.6604186, 46.1920729];;FRZPEE24DC55851;YKKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.409596;43.315138;;;; +;;;;;;;;FRLE2PMFHGZELL9S;FR*V75*PPX16*02;DESFOSSEY - SIEGE;;Place Taurobole 26600 Tain-L'hermitage;;[5.690473273011127, 45.148367685972154];;FRZPEE22AC55852;NKRS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.418971;43.303235;;;; +;;;;;;;;FRLE2PU7TAQTYQRD;FR*V75*PPX16*01;MERCURE - Honfleur;;Parking des Cornettes 26130 Saint-Restitut;;[5.949377130687999, 45.57229420213553];;FRZKAE24DC88247;UCVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.437851;43.50076;;;; +;;;;;;;;FRLE2PS8BGCQIRE8;FR*V75*PPX15*27;INTERPARKING - Nice Grimaldi;;Espace Gare 26130 Saint-Paul-Trois-Châteaux;;[2.547615742328, 48.66533198978757];;FRZKAE22AC88248;UUEB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.404849;43.300388;;;; +;;;;;;;;FRLE2PSTGP4YXUIC;FR*V75*PPX15*26;INTERPARKING - Nimes Nemausus;;Parking Chaussy 26130 Saint-Paul-Trois-Châteaux;;[7.804661630684159, 48.7960019597569];;FRZMAE22AC49545;VCHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.455123;43.289353;;;; +;;;;;;;;FRLE2PESUZWRLXFC;FR*V75*PPX15*25;SAEMES | Parking Porte d'Auteuil;;Parking face Mairie 26150 Aix-En-Diois;;[3.0894925, 48.803014];;FRZPEE74AC47259;BFLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.42744;43.289235;;;; +;;;;;;;;FRLE2PU4PSSV51LQ;FR*V75*PPX15*24;HOTEL IBIS PARIS RUEIL MALMAISON;;1347 Boulevard du Maréchal Leclerc 26150 Die;;[-1.508447925326274, 47.25090051279224];;FRZPEE22AC127535;DQKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.382365;43.361274;;;; +;;;;;;;;FRLE2PACOVDL0ZZ4;FR*V75*PPX15*28;RIESTER MEAUX;;Place du Gymnase 26140 Anneyron;;[5.892356830681991, 49.154257203162594];;FRZSUE22AC65281;BULA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.337002;43.342681;;;; +;;;;;;;;FRLE2POOAD2XGWNN;FR*V75*PPX15*31;CAR AVENUE - KIA COLMAR;;Avenue Sadi Carnot 26150 Die;;[2.146379, 43.932802];;FRZSUE22AC65280;QVTZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.374552;43.320297;;;; +;;;;;;;;FRLE2PQSN0XM5KUX;FR*V75*PPX15*30;CAR AVENUE - KIA FORBACH;;Avenue Saint Jean 26130 Montsegur-Sur-Lauzon;;[6.145928, 49.349901];;FRZMAE22AC95769;NDAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.0;43.329629;;;; +;;;;;;;;FRLE2PFHLQ03DZIG;FR*V75*PPX15*29;CAR AVENUE - BMW EPINAL CHAVELOT;;Rue Neuve 26140 Saint-Rambert-D'Albon;;[3.070968, 50.639161];;FRZMAE22AC50713;MFQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.356946;43.352498;;;; +;;;;;;;;FRLE2PAGK8IODLYI;FR*HPC*PNF062001;CAR AVENUE - KIA METZ;;Parking Saint James 26200 Montelimar;;[4.863347, 45.771057];;FRZMAE22AC50663;LSME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.361972;43.317055;;;; +;;;;;;;;FRLE2PNVOX3RW4SD;FR*V75*PPX19*17;BEAL ET FILS - BILLOM;;Palais des Congrès 26200 Montelimar;;[6.899705, 49.178504];;FRLUMECLECHAMPS11;HUMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.363271;43.32522;;;; +;;;;;;;;FRLE2PZTSPFG0NRB;FR*V75*PPX19*16;EGLETONS AUTOMOBILES - EGLETONS;;Parking Digue Sud 26170 Buis-Les-Baronnies;;[6.067277, 43.420531];;FRLUMEATELIER11;HPNP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.309551;43.32901;;;; +;;;;;;;;FRLE2PW9UNHTTQOI;FR*V75*PPX19*15;GOUZON AUTOMOBILES BENOIT ET BUJON - GOUZON;;Place du Monument aux Morts 26170 Mollans-Sur-Ouvèze;;[2.387229, 48.831487];;FRLUMEVILADELAMARHOTEL11;JBAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.755862;43.32494;;;; +;;;;;;;;FRLE2PQLTQGIT4ND;FR*V75*PPX19*14;Atelier de l'Aluminium Chanopost;;Parking de la Poste 26160 La Begude-De-Mazenc;;[-2.208368, 47.300077];;FRLUMECAMPINGLESOUSBOIS11;MDAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.419379;43.357724;;;; +;;;;;;;;FRLE2PXBRG7YCKY2;FR*V75*PPX19*13;KIA LITTOTAL - CHALLANS;;Allée des Platanes 26170 Buis-Les-Baronnies;;[5.06979, 45.688937];;FRZPEE22AC35329;DAHU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.443726;43.332198;;;; +;;;;;;;;FRLE2PLGDRVNGNWU;FR*V75*PPX19*12;Viking Casinos Bourbon l'Archambault;;Parking Square Nicolas 26200 Montelimar;;[3.03287, 50.568861];;FRZPEE22AC35328;WPXN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.453065;43.34564;;;; +;;;;;;;;FRS02PFSGKWN;FR*V75*PPX20*03;RIESTER HYUNDAI - BEAUVAIS;;Rond-Point Charles Trenet 26200 Montélimar;;[-0.691778, 44.88082];;FRZMAE22AC131652;PTAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.387851;43.339505;;;; +;;;;;;;;FRS02PYQDHZG;FR*V75*PPX20*02;GARAGE PLISSONNEAU - CAMPBON;;Avenue René Chartron 26740 Marsanne;;[5.093141, 47.317976];;FRZMAE22AC131655;PFFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.450732;43.379781;;;; +;;;;;;;;FRS02PNFTXEN;FR*V75*PPX20*01;Residence Les Primeveres - Beaune;;Place Sogno 26700 Pierrelatte;;[4.861404, 45.759883];;FRZMAE22AC50737;HHAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.422441;43.324349;;;; +;;;;;;;;FRS02PVCYCFG;FR*V75*PPX20*04;ETABLISSEMENTS BRUNO CUCIS ET CIE - MONTBELIARD;;Parking Freydier N7 26740 La Coucourde;;[6.188131, 48.642626];;FRZMAE22AC50659;NJNG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.419438;43.362236;;;; +;;;;;;;;FRS02PQCXCXZ;FR*V75*PPX19*08;LE RANCH - VANNES;;Parking du Théâtre le Rhône 26500 Bourg-Les-Valence;;[2.64245, 50.52183];;FRZKAE24DC50451;GGKH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.418336;43.788423;;;; +;;;;;;;;FRS02PUKHFNX;FR*V75*PPX19*07;PSA Agents France;;Parking du Centre 26760 Beaumont-Lès-Valence;;[5.601978976728186, 43.20610905711502];;FRZKAE22AC50452;ZQRE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.449734;43.556706;;;; +;;;;;;;;FRS02PPKKBDX;FR*V75*PPX19*06;TACHARD AUTOMOBILES - EGLETONS;;Parking du Prieuré 26300 Besayes;;[2.175193, 43.587342];;FRZIME22AC131601;ZPYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.420083;43.528782;;;; +;;;;;;;;FRS02PGAWKEX;FR*V75*PPX19*05;GARAGE TACHARD - LA COURTINE;;Place Jean Collombet 26362 Valence;;[5.465756, 43.512302];;FRZIME22AC77565;KSNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.460704;43.529819;;;; +;;;;;;;;FRS02PEGHFWA;FR*V75*PPX19*04;RIESTER HYUNDAI - BUSSY-SAINT-GEORGES;;Aire Multimodale de Saint Ferreol 26108 Crest;;[2.790004885038854, 49.396659217227096];;FRZIME22AC77564;AMPN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.438274;43.50363;;;; +;;;;;;;;FRS02PKRHRFU;FR*V75*PPX19*11;CAR AVENUE - BMW METZ;;Coopérative du Nyonsais 26220 Nyons;;[2.775424, 49.402224];;FRZIME22AC131600;WVHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.459641;43.524099;;;; +;;;;;;;;FRS02PYQUNQS;FR*V75*PPX19*10;CAR AVENUE - BMW SARREBOURG;;Place Bouverie 26198 Montelimar;;[4.065153169232204, 49.27058538303454];;FRZMAE22AC57516;LEXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.435907;43.580561;;;; +;;;;;;;;FRS02PPTKRJY;FR*V75*PPX19*09;Hotel Val de Vienne - Le Vigeant;;Parking des Gabions 26800 Etoile-Sur-Rhône;;[-0.117295, 49.282126];;FRZMAE22AC49606;MMKZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.347074;43.536986;;;; +;;;;;;;;FRS02PDGNAYM;FR*V75*PPX20*17;Entrepôt du Bricolage - Comboire;;9 Rue du Mont du Matin 26300 Chatuzange-Le-Goubet;;[7.195802, 43.703258];;FRZMAE22AC50721;QPZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.488317;43.484952;;;; +;;;;;;;;FRS02PSXKPDJ;FR*V75*PPX20*16;Entrepôt du Bricolage - Bassens;;Place des Martyrs 26420 Vassieux-En-Vercors;;[1.937386, 47.939605];;FRZMAE22AC50722;YEDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.483673;43.519155;;;; +;;;;;;;;FRS02PSOISSBARA;FR*V75*PPX20*15;SCI GADMP - Combs la ville;;Espace François Mitterrand 26300 Bourg-De-Peage;;[1.413516, 43.710233];;FRS68E137931;YGXB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.870647;43.522361;;;; +;;;;;;;;FRS02PLAONDEPART;FR*V75*PPX20*14;CAR AVENUE - KIA HAGUENAU;;Parc Colombet 26300 Alixan;;[2.388259, 48.98659];;FRS68E129888;MYPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.80578;43.526456;;;; +;;;;;;;;FRS02PKVRWMP;FR*V75*PPX20*13;RIESTER - COULOMMIERS;;Rue des Ecoles 26120 Chabeuil;;[5.251248, 43.434434];;FRZPEE142950;KSVF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.805189;43.509298;;;; +;;;;;;;;FRS02PYHXCZZ;FR*V75*PPX20*12;Best Western Nantes Beaujoire - Sure Hotel;;Parking Train Theatre 26800 Portes-Lès-Valence;;[-2.762013, 48.508649];;FRZPEE142953;KXVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.709475;43.556239;;;; +;;;;;;;;FRS02PNAQYGM;FR*V75*PPX20*21;LECLERC AUTOMOBILE - JARNY - RENAULT;;Rue Champ Morand 26420 La Chapelle-En-Vercors;;[4.832477, 46.79978];;FRZPEE142947;DYMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.461132;43.515683;;;; +;;;;;;;;FRS02PUZGRQP;FR*V75*PPX20*20;Mercure Albi Bastides;;Parc Forêt d'Orient 26760 Monteleger;;[1.135334, 48.079524];;FRZPEE142948;MAJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.94716;43.485668;;;; +;;;;;;;;FRS02PRUDGAA;FR*V75*PPX20*19;CAR AVENUE TERVILLE;;Le Pré du Bost 26120 Montvendre;;[1.760177, 48.462003];;FRZTLE22AC55103;MAJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.948532;43.357858;;;; +;;;;;;;;FRS02PYTEXJA;FR*V75*PPX20*18;Mama Shelter Lille;;Place Sabaton 26100 Romans-Sur-Isère;;[1.058089, 48.503768];;FRZTLE22AC125090;KWFH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.39792;43.336789;;;; +;;;;;;;;FRS02PSCMZBN;FR*V75*PPX20*08;Mercure - Villeurbanne Charpennes;;9 Rue Emile Zola 26800 Portes-Lès-Valence;;[1.340418, 48.703594];;FRZTLE22AC125091;QPZG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.782551;43.691626;;;; +;;;;;;;;FRS02PKDKQWE;FR*V75*PPX20*07;Mercure Forbach;;Parking du Golf de la Valdaine 26740 Montboucher-Sur-Jabron;;[1.186173, 48.044022];;FRZTLE22AC55104;WQKS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.726419;43.721516;;;; +;;;;;;;;FRS02PAYHWSZ;FR*V75*PPX20*06;Ibis Brignoles Provence;;Place du 11 Novembre 26770 Taulignan;;[1.348379, 48.079293];;FRZKAE50DC126576;BQXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.834699;43.722592;;;; +;;;;;;;;FRS02PUJASVQ;FR*V75*PPX20*05;Pullman Paris Centre - Bercy;;Place du Marché 26750 Genissieux;;[1.329051, 48.070643];;FRZKAE43AC126575;BNTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.829994;43.724666;;;; +;;;;;;;;FRS02PAGYBXE;FR*V75*PPX20*11;Ibis Saint Nazaire - Trignac;;Rue Raymond Grosset 26780 Espeluche;;[1.470213, 48.040626];;FRFR1EAYRU3;BQDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.831202;43.534036;;;; +;;;;;;;;FRS02PRBQMXU;FR*V75*PPX20*10;WARNING Lyon;;Parking De La Piscine 26780 Châteauneuf-Du-Rhône;;[1.322335, 48.676212];;FRFR1EAYRU2;QBPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.829711;43.761237;;;; +;;;;;;;;FRS02PYSTCSA;FR*V75*PPX20*09;WARNING Lille;;Avenue de Provence 26790 Tulette;;[1.355261, 48.720711];;FRFR1EAYRU1;BQEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.431899;43.706298;;;; +;;;;;;;;FRS02PDQYPER;FR*V75*PPX17*23;WARNING - Bordeaux;;Parking de la Poste 26620 Lus-La-Croix-Haute;;[1.631473, 48.27611];;FRP000000007069;BNBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.354437;43.295949;;;; +;;;;;;;;FRS02PZRAUNU;FR*V75*PPX17*22;WARNING Dijon;;avenue du Comtat Venaissin 26790 Rochegude;;[1.827436, 48.624091];;FRFR1ESMNJ1;BKMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.468472;43.719317;;;; +;;;;;;;;FRS02PXSKTTA;FR*V75*PPX17*21;Mercure - Lyon Part Dieu;;621 Avenue Des Côtes Du Rhône 26790 Suze-La-Rousse;;[2.033458, 47.905351];;FRMAPP000000006777;BKCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.1569112;43.781708;;;; +;;;;;;;;FRS02PBEZJPU;FR*V75*PPX17*20;WARNING Nancy;;Place Du Tricastin 26790 La Baume-De-Transit;;[-0.5297513000000009, 44.790757700000015];;FRFR1EBVFK1;WQKS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.193556;43.788743;;;; +;;;;;;;;FRS02PEPINEBOISPAR;FR*V75*PPX17*19;IBIS BETHUNE CENTRE GARE;;Avenue Jean-Perrin 26700 Pierrelatte;;[1.094714, 49.474365];;FRLUMEATRIUMGOLBEY11;MYPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.44866;43.790756;;;; +;;;;;;;;FRS02PXUTMPU;FR*V75*PPX18*02;Ibis la ciotat;;Rue Charcot 26700 Pierrelatte;;[2.298185, 43.212574];;FRLUMEHOTELKYRIADBALARUC11;SMGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.944231;43.786244;;;; +;;;;;;;;FRS02PZFEUKM;FR*V75*PPX18*01;Greet Hotel Castres Saïx;;Place de l'église 26120 Châteaudouble;;[2.937887, 43.267998];;FRFR1EDXS3;NLVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.026815;43.792941;;;; +;;;;;;;;FRS02PLAONBESNY;FR*V75*PPX17*25;IBIS AIX EN PROVENCE;;Aéroport - Unamed Road 26120 Chabeuil;;[5.42,49.17];;FRFR1EDXS1;KPUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.353442;43.524809;;;; +;;;;;;;;FRS02PYCNFVS;FR*V75*PPX17*14;IBIS COMPIEGNE;;Complexe aquatique Diabolo 26300 Bourg-De-Peage;;[1.8781143, 50.8648906];;FRFR1EDXS2;RVQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.700573;43.491323;;;; +;;;;;;;;FRS02PVRYCFW;FR*V75*PPX17*13;Ibis Styles Compiegne;;Place de la Mairie 26300 Bourg-De-Peage;;[3.2287561, 50.4769909];;FRZKAE22AC63713;RVPC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.071913;43.334722;;;; +;;;;;;;;FRS02PNSVAFV;FR*V75*PPX17*12;FB SERVICE - Reims - All Paul Halary;;Voie du Tram 38250 Lans-En-Vercors;;[5.414278,43.268556];;FRZKAE24DC63712;RVQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.47019;43.704091;;;; +;;;;;;;;FRS02PPJZZXM;FR*V75*PPX17*11;Mercure Cabourg;;Parking Voie du 6 Fevrier 1968 38880 Autrans;;[5.431066,43.282781];;FRZMAE22AC49702;RTAN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.464812;43.356012;;;; +;;;;;;;;FRS02PQRMSRP;FR*V75*PPX17*10;WARNING Nice;;Rue Claude Guillermoz 38500 Voiron;;[5.43951,43.28123];;FRZTLE22AC48423;RVPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.474463;43.450954;;;; +;;;;;;;;FRS02PMDGPWT;FR*V75*PPX17*18;WARNING Orleans;;Chemin De La Croze 38540 Grenay;;[5.421824,43.269773];;FRZTLE22AC48422;RTAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.627451;43.454421;;;; +;;;;;;;;FRS02P58C7C6D45D4A8;FR*V75*PPX17*17;WARNING Toulouse;;Rue De La Republique 38580 Allevard;;[5.213539,43.417033];;FRZTLE22AC64646;RTAN3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.23536;43.69299;;;; +;;;;;;;;FRS02P58C7C8DAA8451;FR*V75*PPX17*16;Premiere Classe - Sarcelles;;Place André Chaize 38620 Saint-Geoire-En-Valdaine;;[5.4082,43.280252];;FRZTLE22AC64645;BTGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.063095;43.571542;;;; +;;;;;;;;FRS02PKCCJFU;FR*V75*PPX17*15;WARNING - Marseille;;Parking de l'Eglise 38650 Château-Bernard;;[5.481858,43.298393];;FRZPEE24DC80464;BTGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.995847;43.274927;;;; +;;;;;;;;FRS02P58C7C7EA4DBA6;FR*V75*PPX18*03;Novotel Saint Brieuc;;Rue du Stade 38570 Le Cheylas;;[5.217351,43.418544];;FRZPEE22AC80465;MHAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.162934;43.565413;;;; +;;;;;;;;FRS02PUXWQPQ;FR*V75*PPX18*15;IBIS STYLES CHALON SUR SAONE;;Parking Place Clodomir 38510 Vezeronce-Curtin;;[5.177512,43.728394];;FRE10E22AC128989;NFQY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.246711;43.451656;;;; +;;;;;;;;FRS02PMZQNJY;FR*V75*PPX18*14;COURTALAIN;;Parking Mairie 38530 Pontcharra;;[5.51211,43.31196];;FRZMAE22AC59911;KWFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.168224;43.434866;;;; +;;;;;;;;FRS02PQBFAVT;FR*V75*PPX18*13;AUNEAU Complexe sportif;;Parking RD 2558 38570 Theys;;[5.459582,43.288847];;FRZMAE22AC50784;KVEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.545049;43.4563;;;; +;;;;;;;;FRS02PZWFLZY;FR*V75*PPX18*12;BELHOMERT;;Grande Rue 38650 Monestier-De-Clermont;;[5.340986,43.393554];;FRFR1EPJXS2;WVHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.57308;43.293444;;;; +;;;;;;;;FRS02PQYSVEH;FR*V75*PPX18*16;GARNAY;;Parking de la Médiatheque 38690 Le Grand-Lemps;;[5.50964,43.30106];;FRFR1EPJXS3;KSVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.56348;43.39324;;;; +;;;;;;;;FRS02P589D892331C0C;FR*V75*PPX19*03;LANGEY;;parking chemin de l usine 38690 Biol;;[5.464186,43.312781];;FRFR1EPJXS1;LEXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.603132;43.605489;;;; +;;;;;;;;FRS02PRTQZUX;FR*V75*PPX19*02;Place de Schweinfurt;;ZA Bievre Dauphine 38690 Colombe;;[5.449793,43.312251];;FRFR1EJYMG2;KXVZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.632679;43.499057;;;; +;;;;;;;;FRS02PTREUU2CJ9Q;FR*V75*PPX19*01;Place du 18 octobre;;Impasse du Vivier 38680 Pont En Royans;;[5.42204,43.318421];;FRFR1ESKGY2;YEDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.156308;43.382782;;;; +;;;;;;;;FRS02PSZPKRV;FR*V75*PPX18*11;30 Rue des Murgers;;Parking Public - RD8A 38650 Gresse-En-Vercors;;[5.450343,43.303279];;FRFR1EHMWL2;AMPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.168563;43.719609;;;; +;;;;;;;;FRS02PQWNXPB;FR*V75*PPX18*07;Rue Jean-Michel Hérault;;Parking Mairie - RD 59 38650 Treffort;;[5.309629,43.410797];;FRFR1EHMWL1;MMKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.423155;43.472999;;;; +;;;;;;;;FRS02PDTPERS;FR*V75*PPX18*06;Parking de la Piscine municipale;;Avenue de la Gare 38470 Vinay;;[4.990593,43.513977];;FRFR1EBSPA1;KSNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.41303;43.284336;;;; +;;;;;;;;FRS02PEQMEHC;FR*V75*PPX18*05;Rambouillet;;Place de L'Eglise 38470 Cognin-Les-Gorges;;[5.194176,43.551585];;FRFR1EJYMG1;DYMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.352806;43.288849;;;; +;;;;;;;;FRS02PDICCAMLZZA;FR*V75*PPX18*04;Checy;;Place Du Champ De Mars 38300 Bourgoin-Jallieu;;[5.60471,43.376505];;FRFR1EBSPA2;YGXB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.566859;43.29134;;;; +;;;;;;;;FRS02PMONLENGAR;FR*V75*PPX18*09;Parking Hippopotamus Villenave d'Ornon;;Rue Louis Leydier 38780 Pont Eveque;;[5.176413,43.629899];;FRFR1ESKGY1;BMKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.151676;43.287061;;;; +;;;;;;;;FRS02PMDBAEJ;FR*V75*PPX18*10;M2003;;Mouterle 38440 Moidieu-Detourbe;;[4.983332,43.494334];;FRFR1EPPVH1;BMJL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.536259;43.368648;;;; +;;;;;;;;FRS02PRRHVFY;FR*V75*PPX18*08;M2023;;Place du 8 Mai 1945 38460 Leyrieu;;[5.348994,43.380874];;FRFR1EPPVH2;RUEK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.624754;43.663796;;;; +;;;;;;;;FRS02PCAYFWR;FR*HPC*PNF080343;M2025;;Route De Berardier 38200 Jardin;;[4.988932,43.502474];;FRFR1ESLGM2;MQSB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.41021;43.477008;;;; +;;;;;;;;FRS02PVDJSBC;FR*HPC*PNF080342;M2024;;Quartier Vieil Alpe 38191 Huez;;[4.980599,43.515583];;FRFR1EJYRB1;AJNY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.388323;43.44122;;;; +;;;;;;;;FRS02PCRCRLR;FR*HPC*PNF080344;M2029;;Place Jean Vinay 38470 L'Albenc;;[4.992584,43.476179];;FRFR1EPEUA1;FLSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.395063;43.459768;;;; +;;;;;;;;FRS02P58AEB3ECE5680;FR*HPC*PNF080345;M2026;;Parking - Rue Paul Langevin 38490 Saint-Andre-Le-Gaz;;[5.517073,43.281395];;FRFR1ESLUA2;MNFT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.057812;43.459944;;;; +;;;;;;;;FRS02PQAYSJE;FR*HPC*PNF080339;Hôtel Orchidées;;Place De La Mairie 38230 Tignieu-Jameyzieu;;[5.309295,43.714044];;FRFR1ESLYM1;AGDP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.053184;43.255951;;;; +;;;;;;;;FRS02PXYHQKM;FR*HPC*PNF080299;LELIEUR FERNAND;;Place du 19 Mars 1962 38590 Saint-Etienne-De-Saint-Geoirs;;[5.08596,43.699042];;FRFR1ESLGM1;MQBG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.39766;43.33248;;;; +;;;;;;;;FRS02PGBJVJY;FR*HPC*PNF080340;SOLLIX;;Parking Place Rue Centrale 38260 Faramans;;[5.264653,43.654859];;FRFR1EMYDL1;FLSX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.363658;43.218608;;;; +;;;;;;;;FRS02PUGWUQK;FR*HPC*PNF080341;Marseille-10E, 1 Rue Gaston Berger;;Avenue Docteur Pravaz 38480 Le Pont-De-Beauvoisin;;[5.124454,43.59286];;FRFR1EMYKC2;AGTD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.351102;43.210398;;;; +;;;;;;;;FRS02PZSXCNB;FR*HPC*PNF080294;Marseille-10E, Traverse de la Roue, Bd de St Loup;;Route des 3 Villages 38660 Saint-Hilaire-Du-Touvet;;[5.487714,43.510783];;FRFR1ENUBH1;AGDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.366079;43.33595;;;; +;;;;;;;;FRS02PSUPFYC;FR*HPC*PNF080356;Marseille-10E, Chemin la Valbarelle À St-Marcel;;Rue Clos Giraud 38510 Morestel;;[5.387306,43.295444];;FRFR1EMYJU1;MPQW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.373858;43.284704;;;; +;;;;;;;;FRS02PYHKZDC;FR*HPC*PNF080354;Marseille-10E, 271 Bd Paul Claudel;;Rue De La Muzelle 38860 Les Deux Alpes;;[5.43225,43.32013];;FRFR1ESKGU2;MQBG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.50502;43.266244;;;; +;;;;;;;;FRS02PESQSQW;FR*HPC*PNF080355;Marignane, Place Alderic Chave;;Place Jean Plantier 38150 Vernioz;;[5.413793,43.326733];;FRFR1ESBRQ2;MPQW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.639103;43.40283;;;; +;;;;;;;;FRS02PACFGRT;FR*HPC*PNF080357;Marseille-10E, 1 Rue Alfred Curtel;;Rue Clément Gondrand 38490 Les Abrets;;[5.446643,43.342856];;FRFR1EJYYV1;MQSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.57785;43.339068;;;; +;;;;;;;;FRS02PQTNYBQ;FR*HPC*PNF080353;Marseille-11E, 270 Route des 3Lucs la Valentine;;Rue Du Château Picard 38200 Seyssuel;;[5.367851,43.308184];;FRFR1ENBFS2;AVUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.227451;43.24166;;;; +;;;;;;;;FRS02PNZNXLT;FR*HPC*PNF080346;Marignane, Boulevard de la Libération;;Route De La Pivollée 38780 Septème;;[5.389845,43.309831];;FRFR1EYHBR1;MNKN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.62431;43.333326;;;; +;;;;;;;;FRS02PJBDYVD;FR*HPC*PNF080347;Mallemort, Parking de L'Auratoir;;Place Blanc Jolicoeur 38490 Aoste;;[5.371379,43.309042];;FRFR1EYJKW1;MQXB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.03184;43.286276;;;; +;;;;;;;;FRS02PLAONFOCH;FR*HPC*PNF080348;Marseille-11E, Route de la Treille;;Chemin du Ruisseau 38890 Saint-Chef;;[5.366179,43.298904];;FRFR1ETLLH1;MQXB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.040562;43.290685;;;; +;;;;;;;;FRFR1PX1F885A2LS;FR*HPC*PNF080349;Marseille-11E, 71 Boulevard Saint-Marcel;;Place Publique 38150 Agnin;;[5.368833,43.301462];;FRFR1ESLYM2;MNVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.403016;43.29145;;;; +;;;;;;;;FRFR1PXAIIQFT7IW;FR*HPC*PNF080350;Les Pennes-Mirabeau, Vieille Route de la Gavotte;;Avenue du Rif Nel 38750 Huez;;[5.381055,43.301561];;FRFR1EZEYA1;AGTD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.404101;43.417;;;; +;;;;;;;;FRFR1PQSJIQWEZ6G;FR*HPC*PNF080352;Marseille-11E, Traverse des Migauds;;Rue Principale 38740 Valbonnais;;[5.38179,43.299055];;FRFR1EZEYA2;MNKN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.360216;43.447876;;;; +;;;;;;;;FRFR1PGJO5868P4K;FR*HPC*PNF080288;Marseille-12E, 3 Avenue des Trois Lucs;;Rue de la Poste 38690 Châbons;;[5.39319,43.304651];;FRFR1EMXML2;AJNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.988923;43.38458;;;; +;;;;;;;;FRFR1PDS2ZKBGWPN;FR*HPC*PNF080072;Marseille-12E, 31 Avenue Fernandel;;Chemin Pré Colombon 38710 Mens;;[5.400517,43.302721];;FRFR1ESKGU1;MUDE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.986984;43.487976;;;; +;;;;;;;;FRFR1PUGFTMLOCNC;FR*HPC*PNF080117;Marseille-12E, 365 Avenue de Montolivet;;Rue de la Barbeniere 38730 Virieu;;[5.400736,43.310012];;FRFR1ENBFS1;MUDE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9899;43.4809;;;; +;;;;;;;;FRFR1PBTIOCISWLO;FR*HPC*PNF080071;Marseille-12E, Avenue des Caillols;;Impasse Des Genets 38500 Coublevie;;[5.397974,43.315138];;FRFR1EMYAV1;MPKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.994777;43.54726;;;; +;;;;;;;;FRFR1PMETZCAT;FR*HPC*PNF080070;Les Pennes-Mirabeau, Parking D113;;Place Du Marche 38850 Charavines;;[5.396799,43.303235];;FRFR1EMXML1;MNYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.636482;43.550837;;;; +;;;;;;;;FRFR1PQZGNESQT2U;FR*HPC*PNF080123;Istres, Parking Des Arnavaux;;Parking R21 - Le Village 38840 Saint-Hilaire-Du-Rosier;;[4.992965,43.50076];;FRFR1EJYRB2;MPKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.435216;43.680347;;;; +;;;;;;;;FRFR1PM3QO1Y3NBX;FR*HPC*PNF080138;La Fare-Les-Oliviers, Avenue René Seyssaud;;Av Honore De Balzac 38340 Voreppe;;[5.399566,43.300388];;FRFR1ESBRQ1;MNFT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.25035;43.679402;;;; +;;;;;;;;FRFR1PITD8L7L5KT;FR*HPC*PNF080155;La destrousse, Avenue du Mistral;;Chemin Pré Barbier 38770 Monteynard;;[5.396151,43.289353];;FRFR1EMYAV2;MNVH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.416769;43.341629;;;; +;;;;;;;;FRFR1PAA86CZDAIR;FR*HPC*PNF080162;La Barben, Route des Feissiniers, Parking Tennis;;Hotel Best Western 38500 Voiron;;[5.400273,43.289235];;FRFR1ENURW1;AGEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.439112;43.516083;;;; +;;;;;;;;FRFR1PGQ1TNKNZLU;FR*HPC*PNF080172;Istres, Mairie Annexe Prépaou;;Rue de l'Eglise 38770 La Motte-D'Aveillans;;[5.329846,43.361274];;FRFR1ENURW2;RUEK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.49404;43.504714;;;; +;;;;;;;;FRFR1PJL2912T1FX;FR*HPC*PNF080056;Les Pennes-Mirabeau, Parking Square Jean Moulin;;Avenue Jules Ravat 38500 Voiron;;[5.436152,43.342681];;FRFR1EMXQC2;AVUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.417336;43.51302;;;; +;;;;;;;;FRFR1PYSYP1FUAQD;FR*HPC*PNF080063;Istres, Jean Moulin;;118 Avenue du Driève 38090 Villefontaine;;[5.409596,43.320297];;FRFR1EMXQC1;KSVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.393556;43.502734;;;; +;;;;;;;;FRFR1PGY3ENDUNAL;FR*HPC*PNF080064;Istres, Gare Sncf;;Avenue du Général de Gaulle 38540 Heyrieux;;[5.418971,43.329629];;FRFR1EJYYV2;KSBL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.076277;43.635899;;;; +;;;;;;;;FRFR1PSCEEY592G4;FR*HPC*PNF080259;Istres, Complexe Sportif Davini;;Rue Des Colporteurs 38520 Le Bourg-D'Oisans;;[5.437851,43.352498];;FRFR1EUDXA2;KSBL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.00374;43.663894;;;; +;;;;;;;;FRFR1PQHOHHOBGVO;FR*HPC*PNF080261;La Penne-Sur-Huveaune, Boulevard Voltaire;;Route du 16 Mai 1944 38260 Champier;;[5.404849,43.317055];;FRFR1ENUBH2;KSVL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.998991;43.36924;;;; +;;;;;;;;FRFR1PYSATF07ZM0;FR*HPC*PNF080198;La Roque-D'Antheron, Rue de L'Europe Unie;;Allée de l'Eden (Flunch) 38053 Bourgoin Jallieu;;[5.455123,43.32522];;FRFR1ESBXF2;JDNB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.903217;43.279139;;;; +;;;;;;;;FRFR1PQAFCVFAWVK;FR*HPC*PNF080232;Lamanon, Cd 71 D Rte de la Provence;;RD 1075 38930 Le Monestier-Du-Percy;;[5.42744,43.32901];;FRFR1ELMTF2;JDNB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.949075;43.290268;;;; +;;;;;;;;FRFR1PWZFERVLS6W;FR*HPC*PNF080200;Lambesc, Route de Caireval;;Rue Jean Vittoz 38630 Les Avenières;;[5.382365,43.32494];;FRFR1ELKVT1;JDHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.775139;43.30195;;;; +;;;;;;;;FRFR1PS141EGXVGU;FR*HPC*PNF080266;Lançon-Provence, Rue Saint-Marc;;RN85 38350 La Salle-En-Beaumont;;[5.337002,43.357724];;FRFR1ESESP1;JDHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.841645;43.304228;;;; +;;;;;;;;FRFR1PLLI1HDD2GWRT7N;FR*HPC*PNF080197;Le Tholonet, 664 Avenue Paul Julien;;Place du Champ de Mars 38160 Saint-Marcellin;;[5.374552,43.332198];;FRFR1ELTSU1;JDHH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.857174;43.330417;;;; +;;;;;;;;FRFR1PYDHE3VJJY9;FR*HPC*PNF080175;Marseille-5E, Place Jean Jaurès;;Avenue Francois Mitterand 38500 Voiron;;[5,43.34564];;FRFR1ELEMG2;JDPJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.852998;43.746832;;;; +;;;;;;;;FRFR1PMEYJUE0LKV;FR*HPC*PNF080183;Marseille-12E, Avenue Jean Compadieu;;Place des Deux Alpes 38860 LES DEUX ALPES;;[5.356946,43.339505];;FRFR1ELKVT2;JDHJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.805896282196045;43.608018;;;; +;;;;;;;;FRFR1PX8A9OQR4ED;FR*HPC*PNF080179;Marseille-13E, 34 Bouevard Laveran;;14 Rue Maréchal Foch 38300 Bourgoin Jallieu;;[5.361972,43.379781];;FRFR1ESDZT1;JDPJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.944956;43.809447;;;; +;;;;;;;;FRS02PUFFXNG;FR*HPC*PNF080178;Marseille-13E, 1 Rue Augustin Fresnel;;Avenue des Jeux 38750 Huez;;[5.363271,43.324349];;FRFR1ESEZJ1;XSNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.813026;43.87559;;;; +;;;;;;;;FRS02PMPQRYN;FR*HPC*PNF080173;Marseille-2E, 29 Boulevard de dunkerque;;Rue Serge Mauroit 38553 Villefontaine;;[5.309551,43.362236];;FRFR1ELMVE1;GVBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.42714;43.807491;;;; +;;;;;;;;FRS02PAHRSQW;FR*HPC*PNF080188;Marseille-3E, 28 Rue Jobin;;Rue de la Ventive 38570 Goncelin;;[4.755862,43.788423];;FRFR1ESBXF1;NVRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.427083;43.850038;;;; +;;;;;;;;FRS02PSOISSJEUDARC;FR*HPC*PNF080191;Marseille-3E, 20 Rue Désirée Clary;;Parking place du champs de foire 42300 Roanne;;[5.419379,43.556706];;FRFR1ELEMG1;NVRG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.648661;43.839761;;;; +;;;;;;;;FRS02PVUFZHX;FR*HPC*PNF080193;Marseille-2E, 38 Rue de L'Evêché;;place Gabriel Péri 42300 Roanne;;[5.443726,43.528782];;FRFR1ELDAH1;FGMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.918112;43.883885;;;; +;;;;;;;;FRS02PGERAYP;FR*V75*P9015*06;Marseille-2E, 1 Rue Jean François Leca;;Parking avenue de Lyon 42300 Roanne;;[5.453065,43.529819];;FRFR1ELDAH2;CBND2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.783836;43.881935;;;; +;;;;;;;;FRS02PSVZDTK;FR*V75*P9008*04;Marseille-1E, Place des Marseillaises;;COSEC Mably 42300 Mably;;[5.387851,43.50363];;FRFR1ESDZT2;CBND1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.948373;43.89907521461469;;;; +;;;;;;;;FRS02PMERCINBAINS;FR*V75*P9010*01;Marseille-1E, 14 Allée Léon Gambetta;;Parking rue Bousson 42120 Le Coteau;;[5.450732,43.524099];;FRFR1ESFPS1;VQWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.448569;43.834723;;;; +;;;;;;;;FRS02PBELLEUSETP;FR*V75*P9009*01;Marseille-1E, 11 Boulevard Montricher;;Centre commercial Saint Louis 42300 Roanne;;[5.422441,43.580561];;FRFR1ESBHV1;VQWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.257975;43.638466;;;; +;;;;;;;;FRS02PQCMMEU;FR*V75*P9007*06;Marseille-4E, 41 Boulevard Françoise duparc;;Parking Pierre Semard gare SNCF 42300 Roanne;;[5.419438,43.536986];;FRFR1ELMVE2;KPUY4;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.53811;43.457535;;;; +;;;;;;;;FRS02PBEAUREVOIRCDG;FR*V75*P9008*03;Marseille-4E, Avenue des Chartreux;;Avenue de l'Europe 38330 Montbonnot;;[5.418336,43.484952];;FRFR1ESESP2;BKKU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.62862;43.457513;;;; +;;;;;;;;FRS02PMONTILENGVAU;FR*V75*P9008*02;Marseille-4E, Avenue des Chutes lavie;;10 Rue Grammont 38230 Pont-De-Cheruy;;[5.449734,43.519155];;FRFR1ELTSU2;BKKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.21803;43.859012;;;; +;;;;;;;;FRFR1PYNLENGKDIG;FR*V75*P9010*02;Marseille-4E, Boulevard Jardin Zoologique;;Parking du Gymnase 38121 Reventin Vaugris;;[5.420083,43.522361];;FRFR1ELPQM1;WZUJ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.438303;43.839632;;;; +;;;;;;;;FRFR1PZQJI8TT2HQ;FR*V75*P9011*01;Istres, Cec Stade;;Place Jean Jacques Rousseau 38300 Bourgoin Jallieu;;[5.460704,43.526456];;FRFR1EAHAM2;MEGD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.484191;43.832303;;;; +;;;;;;;;FRFR1PTHJWNEXIN5;FR*V75*P9011*02;Marseille-4E, Rue du Bosquet;;Rue Gustave Toursier - Parking 38550 Sablons;;[5.438274,43.509298];;FRFR1EMUDE1;MWTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.69093;43.860836;;;; +;;;;;;;;FRFR1PDN2MMDN9FZ;FR*V75*P9011*03;Marseille-5E, Boulevard Baille;;Rue de la Cote 38870 Saint-Simeon-De-Bressieux;;[5.459641,43.556239];;FRFR1EFXMC1;MJPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.431385;43.345406;;;; +;;;;;;;;FRFR1PFCGRS7CQWI;FR*V75*P9011*04;Marseille-5E, Boulevard Jean Moulin (Jarret);;Place de la Mairie 38390 La Balme-Les-Grottes;;[5.435907,43.515683];;FRFR1EAGEG1;MEPD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.443135;43.436392;;;; +;;;;;;;;FRFR1PAVIZJCCHFM;FR*V75*P9012*01;Marseille-16E, Boulevard D'Annam;;Place Publique 38150 Salaise-Sur-Sanne;;[5.347074,43.485668];;FRFR1ELSTM2;MEPD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.412199;43.213528;;;; +;;;;;;;;FRS02PFPANMF;FR*V75*P9006*01;Marseille-13E, Rue Frédéric Joliot Curie;;Rue des Violettes 38460 Saint-Romain-De-Jalionas;;[5.488317,43.357858];;FRFR1ELPQM2;MJVD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.754017;43.297151;;;; +;;;;;;;;FRS02PRZFESC;FR*V75*P9006*03;Marseille-13E, 101 Rue Alphonse Daudet;;Parking Route de Loyettes 38230 Chavanoz;;[5.483673,43.336789];;FRFR1ELSTM1;MEVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.584868;43.416931;;;; +;;;;;;;;FRFR1PVSKJMEF5WR;FR*V75*P9006*02;Marseille-13E, 45 Avenue de Saint-Jérôme;;Parking Place Du Moulin 38930 Clelles;;[4.870647,43.691626];;FRFR1ESFPS2;MWTE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.981837;43.231932;;;; +;;;;;;;;FRFR1PWC1AKJFZH5;FR*V75*P9007*05;Marseille-13E, 6 Chemin de Palama;;Route de Vienne 38460 Chamagnieu;;[4.80578,43.721516];;FRFR1ELMTF1;MJPX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.46472;43.285678;;;; +;;;;;;;;FRFR1PBPNWOVXD2R;FR*V75*P9005*03;Marseille-13E, 61 Avenue de Saint-Just;;Avenue Joliot Curie 38920 Crolles;;[4.805189,43.722592];;FRFR1ELPJX2;MJVD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.463668;43.863427;;;; +;;;;;;;;FRFR1PQENWKTMZCF;FR*V75*P9005*02;Marseille-13E, Avenue des Poilus;;Roussillon 38150 Roussillon;;[4.709475,43.724666];;FRFR1ELKTV2;MEVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.525681;43.344402;;;; +;;;;;;;;FRFR1PMMGYMF;FR*V75*P9006*04;Marseille-13E, Rue des Glycines;;Place des Anciens Combattants AFN 38460 Trept;;[5.461132,43.534036];;FRFR1ELMPD1;WZUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.501983;43.297307;;;; +;;;;;;;;FRFR1PLNCRPQ;FR*V75*P9007*01;Marseille-14E, 42 Boulevard Charles Moretti;;Place du Jeu de Paume 38270 Beaurepaire;;[4.94716,43.761237];;FRFR1ELMPD2;GRZY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.152651;43.245262;;;; +;;;;;;;;FRFR1PGQZHCENVFB;FR*V75*P9007*02;Marseille-16E, 9 Rue Rabelais;;Place Hector Berlioz 38260 La Côte-Saint-Andre;;[4.948532,43.706298];;FRFR1ELPJX1;WZUJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.003616;43.90181;;;; +;;;;;;;;FRFR1PEJBKFGAQ96;FR*V75*P9007*03;Marseille-14E, 9 Boulevard Gay Lussac;;Parking Place De La Mairie 38290 Satolas Et Bonce;;[5.39792,43.295949];;FRFR1ESBHV2;YFKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.80192;43.645533;;;; +;;;;;;;;FRFR1PLX3M7GUQLZ;FR*V75*P9007*04;Marseille-14E, Boulevard Simon Bolivar;;Espace Marcel Noyer 38550 Saint-Maurice-L'Exil;;[4.782551,43.719317];;FRFR1ELKTV1;YFKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.673313;43.404731;;;; +;;;;;;;;FRFR1PNVU3GGF8HX;FR*V75*P9012*02;Marseille-15E, Boulevard Ledru-Rollin;;Place de la Croix 38122 Cour-Et-Buis;;[4.726419,43.781708];;FRFR1ESEZJ2;ZBZV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.23283;43.347677;;;; +;;;;;;;;FRFR1PVAC3YJH6PA;FR*V75*P9005*01;Marseille-15E, Chemin des Bourrely;;Place Jean Moulin 38440 Saint-Jean-De-Bournay;;[4.834699,43.788743];;FRFR1ECMXH1;GTGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.588032;43.343455;;;; +;;;;;;;;FRFR1PZMNFG2WGSB;FR*V75*P9014*01;Marseille-15E, Rue André Allar;;Parking Rue du 19 Mars 1962 38460 Cremieu;;[4.829994,43.790756];;FRFR1EYPZX1;GTGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.604201;43.40751;;;; +;;;;;;;;FRFR1PHDIHBPSJPW;FR*V75*P9014*03;Marseille-16E, 148 Plage de L'Estaque;;Rue Capitaine Meunier 38520 LE BOURG D OISANS;;[4.831202,43.786244];;FRFR1EEWYQ2;GTMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.299185;43.692855;;;; +;;;;;;;;FRFR1PHROA3L4NBG;FR*V75*P9014*02;Mas-Blanc-Des-Alpilles, Place Pierre Limberton;;PLACE DU 10E REGROUPEMENT PARKING 38380 Saint-Laurent-Du-Pont;;[4.829711,43.792941];;FRFR1EVCDQ1;GRYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.030772;43.631195;;;; +;;;;;;;;FRFR1PRLWJHC;FR*V75*P9013*05;Aix-En-Provence, Chemin des Plâtrières;;Place de la Mairie 38380 Saint-Pierre-De-Chartreuse;;[5.431899,43.524809];;FRFR1EAHJW2;GTMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.011772;43.582842;;;; +;;;;;;;;FRFR1PPIPHPE34WD;FR*V75*P9013*07;Aix-En-Provence, Cours Sextius;;Rue du Général de Gaulle 38330 Montbonnot-Saint-Martin;;[5.354437,43.491323];;FRFR1EVCDQ2;GRYF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.710252;43.389722;;;; +;;;;;;;;FRFR1PVU508T5OVZ;FR*V75*P9013*06;Aix-En-Provence, Cours Saint-Louis;;Place De La Mairie 38350 La Morte;;[5.468472,43.334722];;FRFR1EAHJW1;ZBZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.49543;43.524756;;;; +;;;;;;;;FRFR1PGCQHR8X8AM;FR*V75*P9014*04;Aix-En-Provence, Cours Marcel Bremond;;Parking Avenue Des Thermes - Rd 523 38410 St Martin D Uriage;;[5.1569112,43.704091];;FRFR1EMSNC2;MWTE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.527233;43.48956;;;; +;;;;;;;;FRFR1PIYRXKDVGXP;FR*V75*P9015*01;Aix-En-Provence, Boulevard du Roi René;;Rue Mozart 38430 Moirans;;[5.193556,43.356012];;FRFR1EMSNC1;MTBA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.38785;43.248829;;;; +;;;;;;;;FRFR1PFQVDTM;FR*V75*P9015*02;Aix-En-Provence, Avenue Jean Orsini;;Avenue du 8 mai 1945 38380 Entre Deux Guiers;;[5.44866,43.450954];;FRFR1EJDSZ2;MTBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.373637;43.348577;;;; +;;;;;;;;FRFR1PKAYLQU8CEK;FR*V75*P9015*03;Aix-En-Provence, Avenue Saint-Mitre des Champs;;Place des Trolles 38410 Chamrousse;;[4.944231,43.454421];;FRFR1EEWYQ1;MTBA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.384417;43.623065;;;; +;;;;;;;;FRFR1PJSQOOBA6QV;FR*V75*P9015*04;Aix-En-Provence, Avenue Robert Daugey;;Place Mure Ravaud 38250 Villard-De-Lans;;[5.026815,43.69299];;FRFR1EREMM1;SWAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.356014;43.549935;;;; +;;;;;;;;FRFR1PWJAIJ1IBFG;FR*V75*P9015*05;Aix-En-Provence, Avenue Jules Ferry;;Parking RD 215 38250 Corrençon-En-Vercors;;[5.353442,43.571542];;FRFR1EEWUN2;CSKP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.370056;43.453829;;;; +;;;;;;;;FRFR1PYAYRFJMR2U;FR*V75*P9012*05;Aix-En-Provence, Place Albert laforest;;Place du 14 Avril 1929 38250 Saint-Nizier-Du-Moucherotte;;[5.700573,43.274927];;FRFR1EJDSZ1;EMEX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.358481;43.686469;;;; +;;;;;;;;FRFR1POJUCCZEVLA;FR*V75*P9012*07;Aix-En-Provence, Place du Souvenir Français;;Rue des Écoliers 38300 Crachier;;[5.071913,43.565413];;FRFR1EEWUN1;EMNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.381914;43.473074;;;; +;;;;;;;;FRFR1PANX5XTRANK;FR*V75*P9012*06;Aix-En-Provence, Place Sextia Conca;;Chemin du Rozat 38330 Saint-Ismier;;[5.47019,43.451656];;FRFR1EWTZM1;EMNQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.390105;43.637349;;;; +;;;;;;;;FRFR1PCZKSFL;FR*V75*P9012*04;Aix-En-Provence, Route de Sisteron;;Rue des Grands Tournants 38300 Meyrie;;[5.464812,43.434866];;FRFR1EWUBZ2;JMVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.039669;43.27915;;;; +;;;;;;;;FRFR1PLLHQ8XLQM1082U;FR*V75*P9012*03;Aix-En-Provence, Rue du Dr Lucien Cartotto;;Square Du 8 Mai 1945 38300 Nivolas-Vermelle;;[5.474463,43.4563];;FRFR1EWTZM2;JZGX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.399622;43.287646;;;; +;;;;;;;;FRFR1PT63G4SSANF;FR*V75*P9012*08;Aix-en-Provence, Rue Neil Armstrong;;Rue des Deymes 38538 Le Versoud;;[5.627451,43.293444];;FRFR1EWUBZ1;JNXZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.421871;43.288361;;;; +;;;;;;;;FRFR1PRGSVS1AL8N;FR*V75*P9013*01;Allauch, Avenue Jean Moulin, Parking Fassanaro;;Avenue Henri Bergson 38080 L'Isle-D'Abeau;;[5.23536,43.39324];;FRFR1ERCUV1;JKMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.404021;43.289968;;;; +;;;;;;;;FRFR1PFKCYGTVQZZ;FR*V75*P9013*02;Allauch, Chemin du Garlaban, Parking Monge;;Place des Déportés et Résistants 38260 La Frette;;[5.063095,43.605489];;FRFR1ERGWW1;TCZJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.409066;43.286242;;;; +;;;;;;;;FRFR1PEK29BLZG2U;FR*V75*P9013*03;Mouries, Pré D'Ester;;Place Jean Perraud 38940 Roybon;;[4.995847,43.499057];;FRFR1ECMXH2;LSUT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.056633;43.291969;;;; +;;;;;;;;FRFR1PLLIYF14UR2QU1N;FR*V75*P9013*04;Maussane-Les-Alpilles, Maison De Retraite;;Route de Mens 38930 Lalley;;[5.162934,43.382782];;FRFR1ECCTQ1;NWCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.048822;43.247392;;;; +;;;;;;;;FRFR1PLLJZI2PFA147ER;FR*HPC*PNF080363;Maussane-Les-Alpilles, Avenue Des Alpilles;;Rue du Besset 38390 Montalieu-Vercieu;;[5.246711,43.719609];;FRFR1ESEVQ1;WMNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.933619;43.272778;;;; +;;;;;;;;FRFR1PUZSVN0XKFV;FR*HPC*PNF080364;Fontvieille, Parking Des Arènes;;Place Charles de Gaulle 38370 Saint-Clair-Du-Rhône;;[5.168224,43.472999];;FRFR1ESEVQ2;WMNV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.557972;43.329723;;;; +;;;;;;;;FRFR1PXXHDK2JIDV;FR*HPC*PNF080362;Aix-En-Provence, Avenue Jean Et Marcel Fontenaille;;Route du 16 Mai 1944 38540 Valencin;;[5.545049,43.284336];;FRFR1ECTKD1;SWTR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.94352;43.24787;;;; +;;;;;;;;FRFR1PWSTO3YTK15;FR*HPC*PNF080371;Eygalieres, Parking Avenue Leon Blum;;Pont d'Aiton 73800 Aiton;;[5.57308,43.288849];;FRFR1ECXMY2;SWTR3;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.939013;43.253283;;;; +;;;;;;;;FRFR1PC8ZUDPSMZR;FR*HPC*PNF080372;Aureille, Place Du Huit Mai 1945;;Parking Place Jean Jaures 38210 Tullins;;[5.56348,43.29134];;FRFR1ECTKD2;SWTR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.253117;43.238356;;;; +;;;;;;;;FRFR1PLT9KFZGHYY;FR*HPC*PNF080373;Marseille-5E, Rue George;;Place des Droits de l'Homme 38190 Bernin;;[5.603132,43.287061];;FRFR1ECXMY1;PBEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.25032;43.258666;;;; +;;;;;;;;FRFR1PLLJZIKVQJBF8T4;FR*HPC*PNF080358;Paradou, Parking Des coles;;Parkinng de la mairie - RD 59 38190 Laval;;[5.632679,43.368648];;FRFR1ECCTQ2;PQVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.574552;43.408601;;;; +;;;;;;;;FRFR1PAGLDMBPSEF;FR*HPC*PNF080361;Saint-Etienne-Du-Gres, Avenue Frédéric Mistral;;Place de l'Espace Aragon 38190 Villard-Bonnot;;[5.156308,43.663796];;FRFR1EMJXG1;EDKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.370653;43.406476;;;; +;;;;;;;;FRFR1PZXBMMXPZY1;FR*HPC*PNF080359;St-Remy-de-Provence, Avenue De La Libération;;Parking salle polyvalente 38190 Les Adrets;;[5.168563,43.477008];;FRFR1ERTYZ1;HGFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.446349;43.59184;;;; +;;;;;;;;FRFR1PLLHQ9B01L2OYT4;FR*TCB*P01789;St-Remy-de-Provence, Avenue Louis Mistral;;Camping Grandes Sagnes 38220 Laffrey;;[5.423155,43.44122];;FRFR1EMJXG2;YLFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.223084;43.452861;;;; +;;;;;;;;FRFR1PIGWTYIK1QR;FR*V75*P9001*02;St-Remy-de-Provence, Office De Tourisme;;Rue P. Saras 38220 Livet-Et-Gavet;;[5.41303,43.459768];;FRFR1EAQCV1;ERKQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.540469;43.42977;;;; +;;;;;;;;FRFR1PJO7VVPBFQW;FR*V75*P9001*01;St-Remy-de-Provence, Place Du Général De Gaulle;;Route du Sud 38210 Saint-Quentin-Sur-Isère;;[5.352806,43.459944];;FRFR1EFXNC1;GSPP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.955317;43.593007;;;; +;;;;;;;;FRFR1PV43HVYP7PY;FR*TCB*P01788;Aix-En-Provence, Avenue de Tübingen;;Place Gérard Clet 38112 Meaudre;;[5.566859,43.255951];;FRFR1ERGWW2;GRZY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.987945;43.558456;;;; +;;;;;;;;FRS02PSOISSONSARC;FR*TCB*P00954;Aix-en-Provence, avenue François Argo, Parking Annexe Mairie;;Chemin Des Ecoliers 38114 Allemond;;[5.151676,43.33248];;FRFR1ERTYZ2;APVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.986419;43.459262;;;; +;;;;;;;;FRS02P58B6D63F2370F;FR*TCB*P01734;Allauch, Chemin Marius Milon;;Parking RD 51 38110 Saint-Victor-De-Cessieu;;[5.536259,43.218608];;FRFR1ERCUV2;KPUY3;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.988791;43.292736;;;; +;;;;;;;;FRS02PYLWMERYTIJ;FR*TCB*P01489;Alleins, Avenue René Cassin;;Square du 19 Mars 1962 38110 Rochetoirin;;[5.624754,43.210398];;FRFR1EREMM2;AMCU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.974134;43.490568;;;; +;;;;;;;;FRS02PSOISSONSDAMA;FR*V75*P9002*01;Ensues-la-Redonne, Parking des Coulins;;Parking du Bourg 38160 Saint-Antoine-L'Abbaye;;[5.41021,43.33595];;FRFR1ESLUA1;ALFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.24102;43.519237;;;; +;;;;;;;;FRS02P58AEB617AD8C4;FR*V75*P9002*02;Gardanne, Avenue D'Arménie (Semag);;Carrefour Des 4 Routes 38160 Saint-Romans;;[5.388323,43.284704];;FRFR1EYNDH1;ALFP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.107927;43.386888;;;; +;;;;;;;;FRS02P58B6D74CCC142;FR*V75*P9002*03;Fos-Sur-Mer, Allée Henri Barbusse;;Place des Anciens Combattants AFN 38119 Pierre-Châtel;;[5.395063,43.266244];;FRFR1EPEUA2;ALMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.090649;43.434712;;;; +;;;;;;;;FRS02PWVRRH8KDBX;FR*V75*P9003*01;Eyguieres, Avenue Saint Veredeme;;Place De La Liberation 38140 Rives;;[5.057812,43.40283];;FRFR1EGPDK1;ALMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.109004;43.526777;;;; +;;;;;;;;FRS02PXYKQRE;FR*V75*P9004*02;Eguilles, Avenue des Anciens Combattants;;Place du Champ de Mars 38110 La Tour-Du-Pin;;[5.053184,43.339068];;FRFR1ESRCH1;QADJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.093004;43.493681;;;; +;;;;;;;;FRS02PFRHDSL;FR*TCB*P00802;Cuges-Les-Pins, Chemin du Cimetière;;Place du Bourg 38380 Saint-Pierre-D'Entremont;;[5.39766,43.24166];;FRFR1EJPXX2;ATMV4;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.099081;43.51365;;;; +;;;;;;;;FRS02PDBLHFU;FR*HPC*PNF080374;Cornillon-Confoux, Rue des Ferrages;;Rue du Stade 38110 Dolomieu;;[5.363658,43.333326];;FRFR1EJPXX1;MMYT4;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.366413;43.507643;;;; +;;;;;;;;FRS02P58B6C69E0D34E;FR*HPC*PNF088576;Gardanne, Parking de la Cité Administrative;;Parking du Sanctuaire 38970 La Salette-Fallavaux;;[5.351102,43.286276];;FRFR1EMRMF1;MMYT3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.056872;43.494049;;;; +;;;;;;;;FRS02PWWBNFP;FR*HPC*PNF080048;Gardanne, Place de Biver;;Parking RN 85 38970 Corps;;[5.366079,43.290685];;FRFR1EMRMF2;ATMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.235656;43.415533;;;; +;;;;;;;;FRS02PTWZDPZ;FR*HPC*PNF058969;Gardanne, Rue du Stade, Parking Savine;;St Pierre d'Allevard 38570 Crets-En-Belledonne;;[5.373858,43.29145];;FRFR1EMFWU1;ATMV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.486176;43.639222;;;; +;;;;;;;;FRS02PKBWFSH;FR*HPC*PNF058968;Gemenos, Chemin de Routelle;;Place Des Orgières 38142 Auris;;[5.50502,43.417];;FRFR1EPXSP2;ATMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.255214;43.635131;;;; +;;;;;;;;FRS02PQWGEWH;FR*HPC*PNF059010;Gignac-la-Nerthe, Boulevard Perrier;;L'eclose 38750 Huez;;[5.639103,43.447876];;FRFR1EZRDD1;GSPP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.293237;43.332432;;;; +;;;;;;;;FRS02PSNUFDD;FR*HPC*PNF058967;Grans, Parking Place du Souvenir Français;;Parking Gymnase Rue des Ecoles 38090 Vaulx-Milieu;;[5.57785,43.38458];;FRFR1EMFWU2;CASF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.205005;43.638665;;;; +;;;;;;;;FRS02PSOISSONSUNIS;FR*HPC*PNF058931;Istres, Cec Piscine;;Rue de la République 38550 Le Peage-De-Roussillon;;[5.227451,43.487976];;FRFR1EPXSP1;QADJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.436711;43.65232;;;; +;;;;;;;;FRS02P58AEB7222DB0F;FR*HPC*PNF058911;Chateauneuf-Les-Martigues, Place des Résistants;;La condamine 38860 Les Deux Alpes;;[5.62431,43.4809];;FRFR1EDCYN2;MMYT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.598967;43.398629;;;; +;;;;;;;;FRS02PMEZYMOUMEDIC;FR*HPC*PNF059190;Charleval, Place André Leblanc;;Parking du Fieu 43190 Tence;;[5.03184,43.54726];;FRFR1EDCYN1;MMYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.688023;43.638515;;;; +;;;;;;;;FRS02PCHARLYMORL;FR*HPC*PNF059193;Berre-L'Etang, Parking des Lisses;;Chemin des Percières 03290 Dompierre-sur-Besbre;;[5.040562,43.550837];;FRFR1EZRDD2;GYFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.10163;43.420631;;;; +;;;;;;;;FRS02PUNJDMY;FR*HPC*PNF059189;Aubagne, 1465 Route Nationnale 8, Le Charrel;;Sisteron, Place du Dauphiné 04200 Sisteron;;[5.403016,43.680347];;FRFR1EGCRR2;AMXD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.108089;43.600001;;;; +;;;;;;;;FRS02P5899A3D83D245;FR*HPC*PNF059051;Aubagne, 22 Avenue de Verdun;;Avenue Bad Merghenteim 04000 Digne-Les-Bains;;[5.404101,43.679402];;FRFR1EFAUW1;AMMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.105057;43.523198;;;; +;;;;;;;;FRS02PMVQUQH;FR*HPC*PNF059042;Aubagne, Avenue des Soeurs Gastine;;Parking de La gare 04320 Entrevaux;;[5.360216,43.341629];;FRFR1EGCRR1;AMXD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.068955;43.54659;;;; +;;;;;;;;FRS02PEZJMRB;FR*HPC*PNF042589;Aubagne, Centre de Vie Agora;;Place des Ferrages 04860 Pierrevert;;[4.988923,43.516083];;FRFR1EFAUW2;KPUY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.080522;43.689299;;;; +;;;;;;;;FRS02PCEKNKB;FR*HPC*PNF042236;Auriol, Place Raymond Plumier;;Boulevard de Narwick 04500 Riez;;[4.986984,43.504714];;FRFR1EWFFE2;AMMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.085003;43.429731;;;; +;;;;;;;;FRS02P589D8A780A12E;FR*HPC*PNF042331;Aurons, Route de Pelissane;;Le Vignaou 04120 La Palud-Sur-Verdon;;[4.9899,43.51302];;FRFR1EWFFE1;APVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.10959;43.555415;;;; +;;;;;;;;FRS02PFTRQMO3IQ3;FR*HPC*PNF042677;Berre-L'Etang, Parking de L'Europe;;Boulevard les Tilleuls 04100 Manosque;;[4.994777,43.502734];;FRFR1EPCPK2;AMCU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.084515;43.448682;;;; +;;;;;;;;FRS02PAYRAGX;FR*HPC*PNF042595;Bouc-Bel-Air, Boulevard Montesquieu;;Place de Verdun 04170 Saint-Andre-Les-Alpes;;[5.636482,43.635899];;FRFR1EPCPK1;CAQH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.072883;45.785758;;;; +;;;;;;;;FRS02PLLJ2MJF702J9PW;FR*HPC*PNF039295;Bouc-Bel-Air, Impasse des Acacias;;Avenue du Dr Bernard Foussier 04100 Manosque;;[5.435216,43.663894];;FRFR1EMWJG1;GNAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1293519;45.79353;;;; +;;;;;;;;FRS02PCMVVUZ;FR*HPC*PNF037072;Cabries, rue Roumavage;;Parc du souvenir français Pkg Drouille 04100 Manosque;;[5.25035,43.36924];;FRFR1EMWJG2;YLCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.088685;45.778448;;;; +;;;;;;;;FRS02PEFENPV;FR*HPC*PNF026412;Carnoux-En-Provence, Place du Maréchal Lyautey;;Bas Saint Sépulcre 04100 Manosque;;[5.416769,43.279139];;FRFR1EMWJG3;ZNMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.072574;45.776503;;;; +;;;;;;;;FRS02P58DCDCBF82A84;FR*HPC*PNF011512;Carry-Le-Rouet, Avenue Aristide Briand;;Parking Guilhempierre 04100 Manosque;;[5.439112,43.290268];;FRFR1EVJTM1;KXAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.144055;45.771753;;;; +;;;;;;;;FRS02P58DE499D6602C;FR*HPC*PNF010263;Cassis, Parking Daudet;;Les Armands 04200 Mison;;[5.49404,43.30195];;FRFR1EVJTM3;GUBD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.050666;45.78558;;;; +;;;;;;;;FRS02P58DE4AE5AAABB;FR*HPC*PNF050214;Ceyreste, Chemin des Peupliers;;Rue Adrien Badin 04160 Chateau-Arnoux-Saint-Auban;;[5.417336,43.304228];;FRFR1EVJTM2;GUBD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1928738;45.810183;;;; +;;;;;;;;FRS02P58DE4A4BDF840;FR*HPC*PNF058500;Marseille-13E, Avenue Escadrille Normandie Niemen;;Gare Routière 04000 Digne-Les-Bains;;[5.393556,43.330417];;FRFR1ESRCH2;ASNU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.535703;45.849755;;;; +;;;;;;;;FRS02PZGGRYJ;FR*HPC*PNF051046;Marseille-6E, Avenue de delphes;;Lycée Carmejane 04510 Le Chaffaut-Saint-Jurson;;[5.076277,43.746832];;FRFR1EGPDK2;JPCY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1928496;45.778677;;;; +;;;;;;;;FRFR1PMU4VEED0OF;FR*HPC*PNF058016;Marseille-9E, 131 Boulevard Michelet;;Avenue de Miravail 04230 Revest-Du-Bion;;[5.00374,43.608018];;FRFR1ESYHY1;JVXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.468026;45.5896077;;;; +;;;;;;;;FRFR1PBLXZFV;FR*HPC*PNF058543;Martigues, Quai Général Leclerc;;Le Sauze 04400 Enchastrayes;;[4.998991,43.809447];;FRFR1EUFJB2;LHXE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.065886;45.760472;;;; +;;;;;;;;FRFR1PLAVERDERIE;FR*HPC*PNF058742;Martigues, Avenue de la Gare de la Couronne;;Parking Salle Polyvalente 04210 Valensole;;[4.903217,43.87559];;FRFR1EUCXL2;LHXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.078341;45.919709;;;; +;;;;;;;;FRFR1PPMW0TWM1G9;FR*HPC*PNF051024;Marseille-9E, Boulevard de L'Océan;;Place du Germe 04240 Annot;;[4.949075,43.807491];;FRFR1EPJFZ1;RJNW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.083815;45.825378;;;; +;;;;;;;;FRFR1PIJOXVXWV0B;FR*HPC*PNF050499;Marseille-15E, 5 Boulevard de la Méditerranée;;Place de La république 04150 Banon;;[4.775139,43.850038];;FRFR1EUCXL1;JWKQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.087534;45.795907;;;; +;;;;;;;;FRFR1PMU6UKE1DGT;FR*HPC*PNF050462;Marseille-7E, Square du Lieutenant Danjaume;;La Foux d'Allos 04260 Allos;;[4.841645,43.839761];;FRFR1EQEMM1;JWKQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.04208259;45.7313678;;;; +;;;;;;;;FRFR1PGFGWISRUKV;FR*HPC*PNF059775;Marseille-7E, 7 Place Saint-Victor;;Parking De La Mairie 04870 Saint-Michel-L'Observatoire;;[4.857174,43.883885];;FRFR1ECYYT1;RJNW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0646;45.755722;;;; +;;;;;;;;FRFR1PRJXC0KVN9L;FR*HPC*PNF059748;Marseille-1E, 90 Rue Grignan;;Place Joseph Fontaine 04000 Digne-Les-Bains;;[4.852998,43.881935];;FRFR1ENZHL1;VTQZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.168743;45.7307631;;;; +;;;;;;;;FRFR1PNPHZOEZONW;FR*HPC*PNF059743;Mimet, Rue de Balotesti;;Saint Pierre 04140 Seyne;;[4.805896282196045,43.89907521461469];;FRFR1EPRCW2;VTQZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9810852;45.802692;;;; +;;;;;;;;FRFR1PTMRU6GQRN3;FR*HPC*PNF059736;Peynier, Avenue de la Garenne;;Place Bon Accueil 04700 La Brillanne;;[4.944956,43.834723];;FRFR1EPVHK2;FZBE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.096065;45.793482;;;; +;;;;;;;;FRS02PVXETMU;FR*HPC*PNF059983;Peypin, Avenue de Valdonne;;Parking Ecociné Verdon 04800 Greoux-Les-Bains;;[4.813026,43.638466];;FRFR1EPVHK1;FZBE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.086385;45.781253;;;; +;;;;;;;;FRS02PCMGEBPEBGY;FR*HPC*PNF059916;Rognac, Boulevard Jean Jaurès;;Place d'Arnaud Ville 04850 Jausiers;;[4.42714,43.457535];;FRFR1EPRCW1;FZBE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8542;45.764902;;;; +;;;;;;;;FRS02PPASSBK;FR*HPC*PNF059964;Rousset, Avenue Louis Alard;;Parking de La Mairie 04700 Oraison;;[4.427083,43.457513];;FRFR1EPHYV1;WZVP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9324802;45.993258;;;; +;;;;;;;;FRS02PWKRRKN;FR*HPC*PNF059779;Saint-Chamas, Avenue Marx Dormoy;;Parking La Ville 04260 Allos;;[4.648661,43.859012];;FRFR1EPHYV2;EVUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.109378;45.33291829;;;; +;;;;;;;;FRS02PRHTBXV;FR*HPC*PNF059994;Saint-Chamas, Parking de la Gare;;Place du Théatre 04220 Sainte-Tulle;;[4.918112,43.839632];;FRFR1EDHXA2;WZVP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.25019974;45.73286;;;; +;;;;;;;;FRS02P58AEB47A92E48;FR*HPC*PNF059903;Saint-Esteve-Jeanson, Parking Nord;;Rue Hoche 04410 Puimoisson;;[4.783836,43.832303];;FRFR1EEWAL1;YLCF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.200362;45.795585;;;; +;;;;;;;;FRFR1PDFR9ZCDQ6F;FR*HPC*PNF059902;Saint-Esteve-Jeanson, Parking Sud;;Entrée du village 04200 Les Omergues;;[4.948373,43.860836];;FRFR1EYVFM2;GNAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.12345866;45.666657;;;; +;;;;;;;;FRFR1PQ4JVAXJQH0;FR*HPC*PNF059797;Marseille-15E, 456 Rue de Lyon;;Le Village 04250 La Motte-Du-Caire;;[5.448569,43.345406];;FRFR1EDHXA1;ZPTP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.724858;45.75256;;;; +;;;;;;;;FRLE2PQ6MEVWHEHS;FR*HPC*PNF059792;Istres, Parvis Hotel De Ville, Esplanade Bernadin Laugier;;D109, Pra Loup 04400 UVERNET-FOURS;;[5.257975,43.436392];;FRFR1EEWAL2;RHXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.34237;45.754934;;;; +;;;;;;;;FRLE2PDEOTABIQBH;FR*HPC*PNF059786;Istres, Place Champollion;;Grand Parking 04500 QUINSON;;[5.53811,43.213528];;FRFR1EYVFM1;HPUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.634929;45.5119;;;; +;;;;;;;;FRLE2PR3XWXLIQVP;FR*HPC*PNF059694;Istres, Victor Hugo;;Rue Pierre Ardillon 03190 Moulins;;[5.62862,43.297151];;FRFR1EDXKC1;AAAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.819578;45.510146;;;; +;;;;;;;;FRLE2PPHLNTHDLYD;FR*HPC*PNF059599;Istres, Sous Préfecture;;Place Rantian 2 03118 Gannat;;[5.21803,43.416931];;FRFR1EQVJB1;QDJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.098991;45.747517;;;; +;;;;;;;;FRLE2POUBY1DDYTO;FR*HPC*PNF059499;Jouques, Avenue de la Gare;;Boulevard Maréchal de Lattre de Tassigny 03310 Vichy;;[5.438303,43.231932];;FRFR1EMJHC1;RDZK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.189445;45.54625829;;;; +;;;;;;;;FRLE2PG5WSCVUOGV;FR*HPC*PNF059511;Le Puy-Sainte-Reparade, Rue de L'Hotel de Ville;;Avenue du Général de Gaulle 03000 Moulins;;[5.484191,43.285678];;FRFR1EJBXL2;AXUP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.060217;46.020521;;;; +;;;;;;;;FRLE2PQS6DHJXSDF;FR*HPC*PNF059558;Le Rove, Place de L'Eglise;;Le Village 04500 Sainte-Croix-De-Verdon;;[4.69093,43.863427];;FRFR1EJBXL1;EVVP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.247247;45.40161915;;;; +;;;;;;;;FRLE2PIKYUTHP1BE;FR*HPC*PNF059600;Marseille-10E, 3 Boulevard Rouvier;;Place de la Résistance 04160 Chateau-Arnoux-Saint-Auban;;[5.431385,43.344402];;FRFR1EFTKB2;EMDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.078451;45.413449;;;; +;;;;;;;;FRLE2PIQ31SB4676;FR*HPC*PNF059472;Marseille-11E, Boulevard Pierre Ménard;;Parking Mairie 04130 Volx;;[5.443135,43.297307];;FRFR1EFTKB1;ECAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.338388;45.726008;;;; +;;;;;;;;FRLE2PYXZCNHKIHR;FR*HPC*PNF059380;Marseille-11E, Chemin de Saint-Menet Aux Accates;;Parking de la Poste 04230 Saint-Etienne-Les-Orgues;;[5.412199,43.245262];;FRFR1EUFJB1;FFJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.18769063;45.85832;;;; +;;;;;;;;FRLE2PSSPQRIGGGG;FR*HPC*PNF059672;Marseille-12E, 11 Rue des Électriciens;;Place de La Mairie 04460 Selonnet;;[4.754017,43.90181];;FRFR1EFPBE1;ABPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3307619;45.8380775;;;; +;;;;;;;;FRLE2PBHJBR6MTSL;FR*HPC*PNF059671;Marseille-14E, Rue de la Busserine;;Parking Les Lauves 04320 Entrevaux;;[5.584868,43.645533];;FRFR1ECJMP1;LVCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.111787;45.829498;;;; +;;;;;;;;FRLE2PYSCJHWOOBD;FR*HPC*PNF059628;Senas, Avenue de Chevigné;;Parking Ecociné Verdon 04800 GREOUX LES BAINS;;[4.981837,43.404731];;FRFR1EVYCZ1;UFGN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.914898;45.723408;;;; +;;;;;;;;FRLE2PHXDYFHVRAK;FR*HPC*PNF059614;Miramas, Avenue Marco Polo;;Parking de La Boudousque 04120 CASTELLANE;;[5.46472,43.347677];;FRFR1EMYJU2;LQCT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2373332;45.739984;;;; +;;;;;;;;FRLE2PEM1XTBUMGN;FR*HPC*PNF059602;Plan-D'Orgon, Route De Cavaillon;;Rue des Oliviers 04310 Peyruis 04310 Peyruis;;[5.463668,43.343455];;FRFR1EWUMK1;LGTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.820273;45.499488;;;; +;;;;;;;;FRLE2PACCWKSNKDG;FR*HPC*PNF010132;Noves, Route du 19 mars 1962;;Place Aimé Gassier 04400 Barcelonnette;;[5.525681,43.40751];;FRFR1ECLYQ1;LBCU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.7053498;45.827998;;;; +;;;;;;;;FRLE2PB3EMG8J6LZ;FR*HPC*PNF078244;Molleges, Route De St Andiol;;Parking du Riou 04112 Manosque;;[5.501983,43.692855];;FRFR1EKCPP1;MAAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8935134;45.724561;;;; +;;;;;;;;FRLE2PJ3N1KOHIJZ;FR*HPC*PNF078333;Graveson, Avenue Du Général De Gaulle;;Avenue Gutenberg 04000 Digne-Les-Bains 04000 Digne-Les-Bains;;[5.152651,43.631195];;FRFR1EYNDH2;LVTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.04223102;45.45757491;;;; +;;;;;;;;FRLE2PRCMGGZK8UV;FR*HPC*PNF078243;Eyragues, Avenue Gabriel Péri;;Parking de Pré Combeaux 04100 Manosque 04100 Manosque;;[5.003616,43.582842];;FRFR1EUDXA1;GYAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2547808;45.4131122;;;; +;;;;;;;;FRLE2PUXEUSC0NOG;FR*HPC*PNF078386;Chateaurenard, Parking Avenue Marx Dormoy;;Parking de La Gare 04200 Sisteron;;[4.80192,43.389722];;FRFR1EFULY2;GYAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1044068;45.89586;;;; +;;;;;;;;FRLE2PXQEM9PNU02;FR*HPC*PNF078387;Chateaurenard, Gare Routière - Salle Du Réal;;Place de La Poste 04340 Le Lauzet-Ubaye;;[5.673313,43.524756];;FRFR1EFULY1;WSMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.182088;45.527348;;;; +;;;;;;;;FRLE2PSZKATEV5AC;FR*HPC*PNF078531;Rognonas, Place Du Marché;;Parking Les Aires 04280 Cereste;;[5.23283,43.48956];;FRFR1EVHBA2;UFGN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.835858;45.456907;;;; +;;;;;;;;FRLE2PQKLF8YQGSF;FR*HPC*PNF078546;Saint-Andiol, RN7;;Place de la Guinguette 07160 Le Cheylard;;[5.588032,43.248829];;FRFR1EAMHQ2;HDXW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.01792;46.030863;;;; +;;;;;;;;FRLE2PC91UWKY1QR;FR*HPC*PNF078075;Saint-Martin-De-Crau, Avenue Nostradamus;;Le Bourdaric 07140 Les Vans;;[5.604201,43.348577];;FRFR1EVHBA1;YTFL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.02307;45.6464757;;;; +;;;;;;;;FRLE2PKZWEVDDHH9;FR*HPC*PNF078171;Stes-Maries-De-La-Mer, Rue Des Artisans;;Parking Néruda 07150 Vallon-Pont-D'Arc;;[5.299185,43.623065];;FRFR1EAMHQ1;LLDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3698728;45.8488467;;;; +;;;;;;;;FRLE2PFYPYBGCKG4;FR*HPC*PNF078118;St-Pierre-De-Mezoargues, Pl. Georges de Régis;;Cours Saint Louis 07000 Privas;;[5.030772,43.549935];;FRFR1EYSMM1;PYUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.207466;45.87167589;;;; +;;;;;;;;FRLE2PCKOSSK9SU8;FR*HPC*PNF078069;Verquieres, Place de l'Eglise;;Aire de Covoiturage 07430 Davezieux;;[5.011772,43.453829];;FRFR1EYSMM2;PYUJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3363148;45.4602738;;;; +;;;;;;;;FRLE2PF8CISMNBL6;FR*HPC*PNF078062;Maillane, Rue Pierre Damian, parking Noria;;Place des Vignettes 07200 Saint-Didier-Sous-Aubenas;;[5.710252,43.686469];;FRFR1ESLME1;AEYF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4514244;45.5500991;;;; +;;;;;;;;FRLE2PBGJEL6OX17;FR*HPC*PNF078061;Cabannes, Place De La Mairie;;Place Predon 07270 Lamastre;;[5.49543,43.473074];;FRFR1EPMJK1;AEYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1849199;45.8528279;;;; +;;;;;;;;FRLE2PYCDY4DXWFE;FR*HPC*PNF078183;Marseille, Parking Relais Einstein;;Place Jardin Neptune 07700 Bourg-Saint-Andeol;;[5.527233,43.637349];;FRFR1EQLLS2;AFEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.623934;46.158716;;;; +;;;;;;;;FRLE2PZEWFPVSRKI;FR*HPC*PNF078218;Vitrolles, Avenue Denis Padovani;;Mayres, Place du Chambon 7330 Mayres;;[5.38785,43.27915];;FRFR1EMYDL2;AFLD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.521339;45.720608;;;; +;;;;;;;;FRLE2PZRLDYDOYI6;FR*HPC*PNF078230;Cassis, Parking Savon;;Quai Jules Roche Sud 07340 Serrières;;[5.373637,43.287646];;FRFR1EDEYR1;AFEV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5475098;45.70559;;;; +;;;;;;;;FRLE2PRCVNUCGJWB;FR*HPC*PNF078238;Gemenos, Cours Pasteur;;Rue de L'Hopital 04190 Les Mees;;[5.384417,43.288361];;FRFR1ESLME2;AFLD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.5464023;45.55;;;; +;;;;;;;;FRLE2PO2JCWW7L4P;FR*HPC*PNF078544;Marignane, Rue De Verdun;;Place Notre Dame Du Bourguet 04300 Forcalquier;;[5.356014,43.289968];;FRFR1ESKSU1;LLXB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9417191;45.663033;;;; +;;;;;;;;FRLE2PLBBOWNBKO6;FR*HPC*PNF007502;Marseille, Campus Luminy;;Le Village 04380 Thoard;;[5.370056,43.286242];;FRFR1ESKSU2;HDXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8164264;45.5265496;;;; +;;;;;;;;FRLE2PKIXKMOIV8M;FR*HPC*PNF078601;Marseille, Parking De La Gare La Barasse;;Place Charles de Gaulles 04290 Volonne;;[5.358481,43.291969];;FRFR1EMYKC1;LPMZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2003302;45.4727824;;;; +;;;;;;;;FRLE2PG07NKV2IV3;FR*HPC*PNF080041;Boulbon, Chemin De La Lone;;Maison de Pays RN10/Clavieres 04300 Mane;;[5.381914,43.247392];;FRFR1ESBVD1;LPMZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8083731;45.4777874;;;; +;;;;;;;;FRLE2PXZ5BGZA7KF;FR*HPC*PNF078611;Marseille, Parking Technoptic;;Parking Le Claus 04270 Mezel;;[5.390105,43.272778];;FRFR1EQLLS1;LLXB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.055715;45.560108;;;; +;;;;;;;;FRLE2PLHFKUTTBHP;FR*HPC*PNF078569;Marseille, Parking De La Mairie, Bd Bouyala D'Arnaud;;Rue Sainte-Anne 04370 Colmars;;[5.039669,43.329723];;FRFR1ESBVD2;LLDW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.28099446;45.845524;;;; +;;;;;;;;FRLE2PSOUICAHQGU;FR*HPC*PNF080042;Marseille, Rue Henri Tommasi;;Parking Office Du Tourisme 04400 Uvernet-Fours;;[5.399622,43.24787];;FRFR1EDEYR2;MJDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0132707;45.8570762;;;; +;;;;;;;;FRLE2POH8L29VRNN;FR*HPC*PNF080044;Barbentane, Route De Boulbon;;1 Boneisse 04430 Ubaye Serre Poncon;;[5.421871,43.253283];;FRFR1ENUNF1;MATE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1967603;45.8552796;;;; +;;;;;;;;FRLE2PWQV2RNZM6H;FR*HPC*PNF080045;Peyrolles-En-Provence, Parking de L'Abreuvoir;;Parking PROXI 04330 Barreme;;[5.404021,43.238356];;FRFR1ENUNF2;TXVG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2429965;45.5727239;;;; +;;;;;;;;FRLE2PR84F9WYP2R;FR*HPC*PNF080046;Port-de-Bouc, Rue de la République;;Médiathèque 04420 Le Brusquet;;[5.409066,43.258666];;FRFR1EYTEQ1;CHLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.6875493;45.5420679;;;; +;;;;;;;;FRLE2PJBMCIPOQG1;FR*HPC*PNF080047;Plan-de-Cuques, Rue du 14 Juillet, Parking Piscine;;Parking Intermédiaire 04360 Moustiers-Sainte-Marie;;[5.056633,43.408601];;FRFR1EJKAT1;KLAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0558558;45.6245733;;;; +;;;;;;;;FRLE2PEOJBWKSCLF;FR*HPC*PNF078556;Plan-de-Cuques, Avenue Georges Pompidou;;Espace Rompe Cuou 04088 Forcalquier;;[5.048822,43.406476];;FRFR1EVYCZ2;WSMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3785739;45.5723908;;;; +;;;;;;;;FRLE2PVFHQDF7H5S;FR*HPC*PNF078564;Saint-Savournin, Chemin du Cimetière;;Place Paul Reynaud 04400 Barcelonnette;;[4.933619,43.59184];;FRFR1ENRQH1;KLAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.6059;45.808796;;;; +;;;;;;;;FRLE2PWZWROIDFBO;FR*HPC*PNF078551;Pertuis, Place Granier;;Parking Les Côtes De St Jean 04140 Montclar;;[5.557972,43.452861];;FRFR1ECJMP2;DCVC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.805302;45.47737767;;;; +;;;;;;;;FRLE2PY4W4XRLU0W;FR*HPC*PNF078037;Pelissanne, Place Roux Brignoles;;Parking aqualudique de Bellerive sur Allier 03700 Bellerive-sur-Allier;;[4.94352,43.42977];;FRFR1ENEHN1;PDBY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.118337;45.7840008;;;; +;;;;;;;;FRLE2PT1K60S6LOO;FR*HPC*PNF078016;Miramas, Avenue de la République;;Rue Auguste Blanqui 03600 Commentry;;[4.939013,43.593007];;FRFR1EMLNY1;KFXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.114279;45.768258;;;; +;;;;;;;;FRLE2PVN1NPSWHO2;FR*HPC*PNF062209;Port-Saint-Louis-du-Rhone, Avenue Hippolyte Peut;;Rue Denis Papin Sobovidé 03100 Montluçon;;[5.253117,43.558456];;FRFR1EMLNY2;CQKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.100119;45.5436886;;;; +;;;;;;;;FRLE2PROTRW5ZTBM;FR*HPC*PNF062228;Puyloubier, Avenue du Chemin Neuf;;Europe Lavandières 03100 Montluçon;;[5.25032,43.459262];;FRFR1EJJSW1;CQKV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.139562;45.5330676;;;; +;;;;;;;;FRLE2PHVZILC8RVL;FR*HPC*PNF001019;Rognac, Boulevard des Jeunes;;Étang de Sault - Route du Plan d'eau 03410 Prémilhat;;[5.574552,43.292736];;FRFR1EVVMF1;CQKV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.21635011;45.7664558;;;; +;;;;;;;;FRLE2PMX6Q1OAWHF;FR*HPC*PNF062085;Roquefort-la-Bedoule, Avenue Marius Ghirardelli;;Allée du Pont du Garde - Espace de la Charité 03310 Lavault-Sainte-Anne;;[5.370653,43.490568];;FRFR1ETHLJ1;XQEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.47442;45.828258;;;; +;;;;;;;;FRLE2PMUDXQHMAZH;FR*HPC*PNF062704;Roquevaire, 23 Allée Alfred Rinn;;Ilets Boris Vian 03100 Montluçon;;[5.446349,43.519237];;FRFR1ENTJJ1;MVVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2902348;45.8691923;;;; +;;;;;;;;FRLE2PRWQKAKGXL4;FR*HPC*PNF006369;Saint-Cannat, Avenue Jean Moulin;;Boulevard Victor Hugo 03410 Domérat;;[5.223084,43.386888];;FRFR1EYNJV1;DCVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.248129;45.6840001;;;; +;;;;;;;;FRLE2PWCCOPA7FR3;FR*HPC*PNF007451;Saint-Chamas, Rue Victor Ferrier;;Cours des Anciens combattant d'Afrique 03500 Saint Pourçain sur Sioule;;[5.540469,43.434712];;FRFR1EDWVQ1;FYLM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5474457;45.887632;;;; +;;;;;;;;FRFR1PKYUVJINTQC;FR*HPC*PNF007357;Saint-Mitre-Les-Remparts, Résidence Les Remparts;;Route de Lyon - Parking des Halles 03321 Yzeure;;[4.955317,43.526777];;FRFR1ESCUH1;HMUC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.329331;45.890311;;;; +;;;;;;;;FRFR1PMAIBZUMHHF;FR*HPC*PNF007060;Saint-Paul-Lez-durance, D11;;Place de l'Hôtel de Ville 03150 Varennes-sur-Allier;;[4.987945,43.493681];;FRFR1ECSCM1;KRAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.14829;45.731146;;;; +;;;;;;;;FRFR1PVUNAICL53Z;FR*HPC*PNF007052;Meyreuil, Parking Mourvedre, Rue des Mineurs;;Avenue Gilbert Roux 03300 Cusset;;[4.986419,43.51365];;FRFR1EFXMC2;HHGG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.011409;45.740944;;;; +;;;;;;;;FRFR1PG3DXGKYHRM;FR*HPC*PNF006467;Meyrargues, Police Municipale;;Place de la Mairie 03210 Besson;;[4.988791,43.507643];;FRFR1EVFZR1;HHGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.428846;45.61447849;;;; +;;;;;;;;FRFR1PNPEBXB9YXF;FR*HPC*PNF067705;Marseille-8E, Avenue du Prado;;Le Plan de Foire 03240 Le Montet;;[4.974134,43.494049];;FRFR1EEPYA1;LMYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6453929999999919;45.959944;;;; +;;;;;;;;FRFR1PZET3IOQSGY;FR*HPC*PNF072380;Marseille-6E, Boulevard Notre Dame;;74 Boulevard Gambetta 03320 Lurcy-Lévis;;[5.24102,43.415533];;FRFR1EMDZY1;HHGG3;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1459805;45.5323749;;;; +;;;;;;;;FRFR1PTGEZRIQCB9;FR*HPC*PNF070668;Marseille-6E, Cours Lieutaud;;Rue de la Gironde - Aout 2016 03100 Montluçon;;[5.107927,43.639222];;FRFR1ENGTY1;HHGG4;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.8965763;45.79836;;;; +;;;;;;;;FRLE2PV4QRFQWA0I;FR*HPC*PNF070641;Marseille-7E, 113 Avenue de la Corse;;Place du 8 Mai 1945 03390 Montmarault;;[5.090649,43.635131];;FRFR1EPMNM3;YTJR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.7103309;50.7384692;;;; +;;;;;;;;FRLE2PNYMVETIFEG;FR*HPC*PNF074566;Marseille-7E, 12 Place du Colonel Edon;;15 Rue Achille Roche 03000 Moulins 4;;[5.109004,43.332432];;FRFR1EPMNM2;YTJR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.828324822319736;43.49131;;;; +;;;;;;;;FRLE2PFD8OWVSZIC;FR*HPC*PNF076523;Marseille-7E, 85 Boulevard Charles Livon;;Place Pierre Petit 03100 Montluçon;;[5.093004,43.638665];;FRFR1EUYXY1;YYTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1485441;45.73457;;;; +;;;;;;;;FRLE2PVRGXDRTTO6;FR*HPC*PNF077241;Marseille-8E, Avenue André Zénatti;;Boulevard Jean Bignon 03160 Bourbon-l'Archambault;;[5.099081,43.65232];;FRFR1EPMNM4;RSNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.503644299999999;48.474017;;;; +;;;;;;;;FRFR1PELECLEROBER;FR*HPC*PNF070002;Marseille-8E, Boulevard Edouard Herriot;;Rue René Fallet 03340 Bessay-sur-Allier;;[5.366413,43.398629];;FRFR1EPMNM1;BARJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9041925;47.053393;;;; +;;;;;;;;FRFR1POUS5RTX2UW;FR*HPC*PNF069303;Martigues, Quai Jean Verandy;;1 place de la Chaume 03110 Broût-Vernet;;[5.056872,43.638515];;FRFR1EAYBG1;BARJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.118697;44.787885;;;; +;;;;;;;;FRFR1PPUSQCHVOAB;FR*HPC*PNF069703;Marseille-9E, 16 Rue Emile Zola;;Place du Champ de Foire - Partie Haute 03350 Cérilly;;[5.235656,43.420631];;FRFR1ENVFV1;HHQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9942375;50.6399697;;;; +;;;;;;;;FRLE2PQH4GD1TUH4;FR*HPC*PNF070003;Marseille-9E, 83-81 Boulevard du Redon;;Place aux foires 03250 Le Mayet-de-Montagne;;[5.486176,43.600001];;FRFR1EYQYM2;QBXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.105857;50.6561949;;;; +;;;;;;;;FRLE2PVGLWGT1XND;FR*V75*PPX11*06;Marseille-9E, Rue Antoine Fortuné Marion;;Place De L'hôtel De Ville 03200 Vichy;;[5.255214,43.523198];;FRFR1ENVFV2;QEDX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.1;49.0313229;;;; +;;;;;;;;FRLE2PZAJRFADFMD;FR*V75*PPX11*07;Marseille-9E, Traverse de la Gaye;;Rue des Fossés 03430 Villefranche d'Allier;;[5.293237,43.54659];;FRFR1EYQYM1;JEWJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.532536;43.78639927025314;;;; +;;;;;;;;FRLE2PGQWX3AC3GR;FR*V75*PPX11*05;Martigues, Avenue du Président Salvadore Allende;;Rue de Marseille 03200 Vichy;;[5.205005,43.689299];;FRFR1EAHAM1;JHAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.535945;50.7582304;;;; +;;;;;;;;FRLE2POMWSI0JG0A;FR*V75*PPX11*04;Martigues, Parking Stade Turcan;;Place du Champ de Foire 03420 Marcillat-en-Combraille;;[5.436711,43.429731];;FRFR1EMUDE4;NJRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.64;44.6477737;;;; +;;;;;;;;FRLE2PMKOVST34HX;FR*V75*PPX11*08;Entressens, Gymnase Arcelli;;Rond point Liberté 03400 Yzeure;;[5.598967,43.555415];;FRFR1EDDUZ1;MGJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0448811;44.1160294;;;; +;;;;;;;;FRLE2PHDGGB1NVRK;FR*V75*PPX11*09;Fuveau, Avenue Du Maréchal, Parking;;Boulevard des Arènes - Parking angle rue Bar 03310 Néris-les-Bains;;[5.688023,43.448682];;FRFR1EQZZM1;MJFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.654826;43.5871748;;;; +;;;;;;;;FRLE2PLBFG8OBIJR;FR*V75*PPX11*10;Fos-Sur-Mer, Avenue du Sablé D'Or;;Avenue Marx Dormoy 03100 Montluçon;;[3.10163, 45.785758];;FRFR1ECYEP3;MFEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.6196363424603306;44.0769349;;;; +;;;;;;;;FRLE2PQMM82OX1GG;FR*V75*PPX11*03;Entressens, Place Dei Blagiaires;;Parking Porte de France 03200 Vichy;;[3.108089, 45.79353];;FRFR1ECYEP1;MKTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.573539;50.5314804;;;; +;;;;;;;;FRLE2PFHVJ8STYWS;FR*V75*PPX11*11;Coudoux, Avenue De La République;;Place Bendorf 03400 Yzeure;;[3.105057, 45.778448];;FRFR1ECYEP2;ATZZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.19;47.48;;;; +;;;;;;;;FRLE2PPGJJYJCBOV;FR*V75*PPX10*14;Vitrolles, Place de L'Aire;;160 Route Des Maisons Blanches 05100 Briançon;;[3.068955, 45.776503];;FRFR1ECYEP4;ATZZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.831599;49.292436;;;; +;;;;;;;;FRLE2PFT7Q4WNI3A;FR*V75*PPX11*01;Aubagne, Place du Souvenir Français;;Hôtel de Ville 42300 Roanne;;[3.080522, 45.771753];;FRFR1EKPGM1;ATZZ4;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.28;49.289694;;;; +;;;;;;;;FRLE2PKYYFI6NIAL;FR*V75*PPX10*13;Aix-En-Provence, Rue André Ampère (Paap);;Rue Georges Brassens 03630 Désertines;;[3.085003, 45.78558];;FRFR1EDDFP2;ATZZ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.203439987359303;47.7;;;; +;;;;;;;;FRLE2PLHO03SXIPB;FR*V75*PPX10*12;Aix-En-Provence, Avenue Winston Churchill;;Place Jean Epinat 03200 Vichy 5;;[3.10959, 45.810183];;FRFR1EDDFP1;MRFW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.912101;50.5467231;;;; +;;;;;;;;FRLE2PZA8JA9BSVY;FR*V75*PPX11*02;Gignac-la-Nerthe, Parking laure;;10 route de Chavenon 03440 Buxières-les-Mines;;[3.084515, 45.849755];;FRFR1EFVJJ2;MRFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.976144;47.353958;;;; +;;;;;;;;FRFR1PKU6VNMWPRI;FR*V75*PPX10*11;Greasque, Boulevard Salvadore Allende;;Rue du Pressoir 03380 Huriel;;[3.072883, 45.778677];;FRFR1EFVJJ1;MSVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.063022;47.11494422473446;;;; +;;;;;;;;FRFR1PNIIRDBT67N;FR*V75*PPX12*01;Istres, Bayanne;;1 avenue du Drapeau 03300 Cusset;;[3.1293519, 45.5896077];;FRFR1EQZZM2;ADTP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.140972;50.408746;;;; +;;;;;;;;FRFR1PPOTRT2UKUG;FR*V75*PPX12*02;Istres, Centre Commercial Prédina;;Square Gal Leclerc 03200 Vichy;;[3.088685, 45.760472];;FRFR1EMDTH2;ADTP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.709302;50.485561;;;; +;;;;;;;;FRFR1PBGK8U5EEDE;FR*V75*PPX11*18;Istres, Forum Des Carmes;;Place de La Gare 03200 Vichy;;[3.072574, 45.919709];;FRFR1EMDTH1;AERM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.936933;48.61;;;; +;;;;;;;;FRFR1PTA9HIA7WJP;FR*V75*PPX12*04;Istres, Gymnase Donadieu;;20 place Charles de Gaulle 03200 Vichy;;[3.144055, 45.825378];;FRFR1EZMRF2;DYEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.799172;50.99486000882223;;;; +;;;;;;;;FRFR1PE2ZYVDEZCI;FR*V75*PPX12*05;Istres, Halle Polyvalente Rassuen;;Espl. des Combattants en Afrique du N. 03200 Vichy;;[3.050666, 45.795907];;FRFR1ELZLB2;QEMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.819175;44.419857;;;; +;;;;;;;;FRFR1PSUUVYU;FR*V75*PPX12*06;Saint-Victoret, Boulevard Paul Liotard;;Place Athanor 03100 Montluçon;;[3.1928738, 45.7313678];;FRFR1ELZLB1;LLBG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.27678869;44.989731;;;; +;;;;;;;;FRFR1PCN71UXKBKD;FR*V75*PPX12*07;Salon-de-Provence, Rue André Marie Ampère;;7 rue du Progrès 03000 Moulins;;[3.535703, 45.755722];;FRFR1EJWNA1;SHMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.960262;44.332828;;;; +;;;;;;;;FRS25PLLIO765R6CG78K;FR*V75*PPX11*17;Salon-de-Provence, Avenue de Grans;;Place du Champ de Foire 03330 Bellenaves;;[3.1928496, 45.7307631];;FRFR1EJWNA2;SMPG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9767;44.358895;;;; +;;;;;;;;FRS25PPONTARROC;FR*V75*PPX11*13;Sausset-Les-Pins, Place des Droits de L'Homme;;1 Place de la source intermittente 03700 Bellerive-sur-Allier;;[2.468026, 45.802692];;FRFR1EYSWD1;QEMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.957015;44.441867;;;; +;;;;;;;;FRS25PBKYNQA;FR*V75*PPX11*14;Salon-de-Provence, Rue César Bossy;;Rue Michel de l'Hospital 03000 Moulins;;[3.065886, 45.793482];;FRFR1EWPNK1;MGZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.985143;45.015669;;;; +;;;;;;;;FRS25PLQHELL;FR*V75*PPX11*12;Salon-de-Provence, Avenue du Dauphiné;;7 place de la Mairie 03340 Neuilly-le-Réal;;[3.078341, 45.781253];;FRFR1EWPNK2;LVTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.954134;44.702527;;;; +;;;;;;;;FRFR1PJWFFPT;FR*V75*PPX11*15;Septemes-Les-Vallons, 50 Avenue du 8 Mai 1945;;Parking Place de la Mairie 03700 Bellerive-sur-Allier;;[3.083815, 45.764902];;FRFR1EPSWX1;LPZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.993811;44.752224;;;; +;;;;;;;;FRFR1PRNAAVM;FR*V75*PPX11*16;Salon-de-Provence, 270 Rue Victor Grignard;;Place Jean Moulin 03200 Abrest;;[3.087534, 45.993258];;FRFR1EPSWX2;VJMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.060403;44.5691193;;;; +;;;;;;;;FRFR1PCTUDSJ;FR*V75*PPX08*17;Saint-Victoret, Rue Raymond Marin;;Place du Marché 03210 Noyant-d'Allier;;[3.04208259, 45.33291829];;FRFR1EPTHM1;DWWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.802167;45.229445;;;; +;;;;;;;;FRFR1PJREWFN;FR*V75*PPX09*05;Venelles, Avenue Maurice Plantier;;Place Jean Moulin 03000 Moulins;;[3.0646, 45.73286];;FRFR1EUWSA1;VFHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9711;44.9891;;;; +;;;;;;;;FRFR1PQPFAVF;FR*V75*PPX09*06;Velaux, Rue Diderot (Pl du Bon Puit);;Zone de la Loue 03410 Saint-Victo;;[3.168743, 45.795585];;FRFR1ESKVQ1;AFTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.70472835;44.972802;;;; +;;;;;;;;FRFR1PMYCHBY;FR*V75*PPX09*04;Ventabren, Avenue Charles de Gaulle;;Place de la libération 03220 Saint-Germain-des-Fossés;;[2.9810852, 45.666657];;FRFR1EZMRF1;ZRVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.127572;45.122126;;;; +;;;;;;;;FRFR1PIASECPLLXC;FR*V75*PPX09*03;Vernegues, Route du Château Bas;;Rue Maurice Dupont 03150 Saint-Gérand-le-Puy;;[3.096065, 45.75256];;FRFR1EGAXM2;AFUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.883411;45.291376;;;; +;;;;;;;;FRFR1PSAOUCGH4D2;FR*V75*PPX09*07;Simiane-Collongue, 4 Rue lambert;;Aire des Vérités 03120 Lapalisse;;[3.086385, 45.754934];;FRFR1EYJRR2;NQRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.53849131;45.290854;;;; +;;;;;;;;FRFR1PMEHMD1BJY0;FR*V75*PPX09*08;Vauvenargues, 5 Boulevard Moraliste;;Quai de La Ronde 03500 Saint-Pourçain-sur-Sioule;;[2.8542, 45.5119];;FRFR1ETHZL2;FBCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.426297;44.522082;;;; +;;;;;;;;FRFR1PTHW2NLV0GF;FR*V75*PPX09*09;Trets, Place de la Libération;;D 707 Parking Centre Routier 03400 Toulon-sur-Allier;;[2.9324802, 45.510146];;FRFR1EUBMW2;MGTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.845401;44.418065;;;; +;;;;;;;;FRFR1PXGGXMZDHIA;FR*V75*PPX09*02;SIEG63 - ePremium - Clermont Ferrand - République;;Zone de la Loue 03410 Saint-Victor;;[3.109378, 45.747517];;FRFR1ETHZL1;SLFW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.902889;45.5471;;;; +;;;;;;;;FRFR1PTD9JKXMCX6;FR*V75*PPX08*19;SIEG63 - ePremium - Clermont Ferrand - Rodade;;Parking centre de secours 03430 Cosne-d'Allier;;[3.25019974, 45.54625829];;FRFR1ELKDM1;DTWE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.844279;44.35463006;;;; +;;;;;;;;FRFR1PXIGDYUXUYP;FR*V75*PPX08*20;SIEG63 - ePremium - Clermont Ferrand - Banville;;Parking INTERMARCHE 03360 Ainay-le-château;;[3.200362, 46.020521];;FRFR1EMVXB1;DUWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.872427;44.357458;;;; +;;;;;;;;FRFR1POTBAPZKKLS;FR*V75*PPX08*18;SIEG63 - ePremium - Chamalieres - Fournier;;ZA du Grand Champ 03390 Montmarault;;[3.12345866, 45.40161915];;FRFR1EPQGT1;DGCP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.839749;44.92895;;;; +;;;;;;;;FRFR1PPSHJETZDTQ;FR*V75*PPX08*21;SIEG63 - ePremium - Clermont Ferrand - Salins;;Avenue de la République 03000 Moulins;;[3.724858, 45.413449];;FRFR1EMVXB2;DTWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.118107;44.20221446;;;; +;;;;;;;;FRFR1PS5MAYKG1DE;FR*V75*PPX09*01;SIEG63 - ePremium - Clermont Ferrand - Bughes;;Place Pasteur 03800 Gannat;;[3.34237, 45.726008];;FRFR1EEJFF1;GYXW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.885265;44.378797;;;; +;;;;;;;;FRFR1PDRPCRSDJXN;FR*V75*PPX10*06;SIEG63 - ePremium - Clermont Ferrand - Clementel;;24 rue de Bourgneuf 03140 Chantelle;;[3.634929, 45.85832];;FRFR1EYJDU1;HZYX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.218949;45.067357;;;; +;;;;;;;;FRFR1PLLJ6XHLSS2QBEH;FR*V75*PPX10*07;SIEG63 - ePremium - Chateaugay - Gaulle;;Place de la Guillotière 03130 Le Donjon;;[2.819578, 45.8380775];;FRFR1EYJRR1;MZJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.929752;44.904445;;;; +;;;;;;;;FRFR1PKEWBFH2LZO;FR*V75*PPX10*03;SIEG63 - ePremium - Clermont Ferrand - Menat;;Les Guinards 03300 Creuzier-le-Vieux;;[3.098991, 45.829498];;FRFR1EYHLZ1;AEDY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.904457;45.013752;;;; +;;;;;;;;FRFR1PWHUT1OA2QQ;FR*V75*PPX10*05;SIEG63 - ePremium - Champeix - Place du Foirail;;Place René Fallet 03220 Jaligny-sur-Besbre;;[3.189445, 45.723408];;FRFR1EYHLZ2;MZJS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.81653;45.001602;;;; +;;;;;;;;FRFR1PEBBPTU;FR*V75*PPX10*08;SIEG63 - ePremium - Clermont Ferrand - Dunant;;Place Saint-James 03450 Ébreuil;;[3.060217, 45.739984];;FRFR1EEZEF1;AYQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.893549;44.769233;;;; +;;;;;;;;FRFR1PI6QFCRFVXE;FR*V75*PPX10*09;SIEG63 - ePremium - Chatel Guyon - Europe;;Place du Marché 03230 Chevagnes;;[3.247247, 45.499488];;FRFR1EYJDU2;ASNF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.994846;44.35214;;;; +;;;;;;;;FRS25PDOUBSHYPER;FR*V75*PPX10*10;SIEG63 - ePremium - Gerzat - Vigeries;;Avenue Pasteur 03120 Lapalisse;;[3.078451, 45.827998];;FRFR1EPRTH2;VKXB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.04475;44.931448;;;; +;;;;;;;;FRS25PAEDHEK;FR*V75*PPX09*11;SIEG63 - ePremium - Durtol - Chataigniers;;Place du Centenaire 03300 Cusset;;[3.338388, 45.724561];;FRFR1EPRTH1;VKXB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.04918;44.428743;;;; +;;;;;;;;FRS25PVRIXQATI3S;FR*V75*PPX09*12;SIEG63 - ePremium - Cournon D Auvergne - Domes (15);;2 Route d'Espinasse 03110 Cognat-Lyonne;;[3.18769063, 45.45757491];;FRFR1EFHVT1;NGSZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.05134;44.950546;;;; +;;;;;;;;FRS25PXRTQBE;FR*V75*PPX09*10;SIEG63 - ePremium - Courpiere - Roses;;Route de Moulins 03210 Souvigny;;[3.3307619, 45.4131122];;FRFR1ELYTY1;VXLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.05015;44.904052;;;; +;;;;;;;;FRS25PKHXZGS;FR*V75*PPX10*01;SIEG63 - ePremium - Cournon D Auvergne - Domes (12);;16 Avenue de Vichy 03270 Saint-Yorre;;[3.111787, 45.89586];;FRFR1EFXZM3;VXLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.05586;45.176935;;;; +;;;;;;;;FRS25PLLIOK3JAN1K99S;FR*V75*PPX10*02;SIEG63 - ePremium - Giat - Hotel de Ville;;3 Route de Nassigny 03190 Vallon-en-Sully;;[3.914898, 45.527348];;FRFR1EEZEF2;NGSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.041824;44.946232;;;; +;;;;;;;;FRS25PUULUVH;FR*V75*PPX14*02;SIEG63 - ePremium - Clermont Ferrand - Eychart;;Parking de la poste 03000 Avermes;;[3.2373332, 45.456907];;FRFR1EEZEF3;MSTD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.44251;45.322879;;;; +;;;;;;;;FRS25PXFPUWS;FR*V75*PPX14*03;SIEG63 - ePremium - Clermont Ferrand - Fayolle;;Le Village 07530 Mezilhac;;[2.820273, 46.030863];;FRFR1EEZEF4;DXAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2494;45.0434;;;; +;;;;;;;;FRS25PGQUH2Z082H;FR*V75*PPX13*21;SIEG63 - ePremium - Clermont Ferrand - Bruyant;;Parking Rue Nationale 43240 Saint-Just-Malmont;;[2.7053498, 45.6464757];;FRFR1EFXZM1;DVUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.29092;45.0448;;;; +;;;;;;;;FRS25PCDMZFUQMXL;FR*V75*PPX14*01;SIEG63 - ePremium - Combronde - Europe;;place Louis de Cazenave 43230 Saint-Georges-D'Aurac;;[2.8935134, 45.8488467];;FRFR1EFXZM2;DVUY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.32729;45.0451;;;; +;;;;;;;;FRS25PMANDEURESUPER;FR*V75*PPX14*04;SIEG63 - ePremium - Anzat-Le-Luguet - Parking Entree;;Parking du stade 43130 Retournac;;[3.04223102, 45.87167589];;FRFR1ERSVK2;DLSK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.020937;45.0492;;;; +;;;;;;;;FRS25PMORTEAUGARE;FR*V75*PPX14*05;SIEG63 - ePremium - Ceyrat - Brunmurol;;Place des Anciens d'AFN 43600 Sainte-Sigolene;;[3.2547808, 45.4602738];;FRFR1ERSVK1;SLFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.024275;45.0422;;;; +;;;;;;;;FRS25PGILLEYCRET;FR*V75*PPX14*06;SIEG63 - ePremium - Aulnat - Coubertin;;Place des Moulettes 43800 Vorey-Sur-Arzon;;[3.1044068, 45.5500991];;FRFR1ETKQB1;AERM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.873418;45.29267;;;; +;;;;;;;;FRS25PPONTARCINE;FR*V75*PPX13*16;SIEG63 - ePremium - Aydat - Egueules;;Place de la Poste 43500 Craponne-Sur-Arzon;;[3.182088, 45.8528279];;FRFR1ETXLM1;CYBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.356327;45.0202;;;; +;;;;;;;;FRS25PVVCNFQ;FR*V75*PPX13*17;SIEG63 - ePremium - Beaumont - Masage (624);;Parking Gare SNCF 43160 La-Chaise-Dieu;;[2.835858, 46.158716];;FRFR1EWHJW1;AHZK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.859351;45.06;;;; +;;;;;;;;FRS25PNNYTYC;FR*V75*PPX13*15;SIEG63 - ePremium - Beaumont - Hessel;;Avenue de la Gare 43500 Craponne-Sur-Arzon;;[3.01792, 45.720608];;FRFR1EWHJW2;RDZK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.934015;45.0166;;;; +;;;;;;;;FRS25PVILLERBARTHO;FR*V75*PPX13*18;SIEG63 - ePremium - Besse et Saint Anastaise - Pistes;;Rue de Chateauneuf 43270 Allegre;;[3.02307, 45.70559];;FRFR1ELDUV2;AHZK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.133801;45.0293;;;; +;;;;;;;;FRS25PRGGHFS;FR*V75*PPX13*19;SIEG63 - ePremium - Besse et Saint Anastaise - Gazelle;;Place du Pont Neuf 43800 Lavoûte-Sur-Loire;;[3.3698728, 45.55];;FRFR1ELDUV1;AXUP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.062747;44.72668;;;; +;;;;;;;;FRS25PFRASNEGARE;FR*V75*PPX13*20;SIEG63 - ePremium - Aubière - Romagnat;;Parking La Gare, lieu dit Oumey 43290 Raucoules;;[3.207466, 45.663033];;FRFR1EKGDW2;RVYB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.091215;44.727057;;;; +;;;;;;;;FRS25POYEPALLETSDF;FR*V75*PPX14*07;SIEG63 - ePremium - Issoire - Place Montagne;;Parking Boulevard Frederic Boulet 43140 Saint-Didier-En-Velay;;[3.3363148, 45.5265496];;FRFR1EKGDW1;RWFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.381235;45.170177;;;; +;;;;;;;;FRS25PPIERREFONMAIR;FR*V75*PPX15*01;SIEG63 - ePremium - Aigueperse - Chevrils;;Avenue Charles Dupuy 43000 Le-Puy-En-Velay;;[3.4514244, 45.4727824];;FRFR1EWFHE1;RVYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2581;44.414245;;;; +;;;;;;;;FRS25PARCETSENANS;FR*V75*PPX15*02;SIEG63 - ePremium - Ardes - Place du Foirail;;Parking Mairie 43700 Arsac-En-Velay;;[3.1849199, 45.4777874];;FRFR1ETWGZ2;RWFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.898153;45.184396;;;; +;;;;;;;;FRS25PUBXXUV;FR*V75*PPX14*13;SIEG63 - ePremium - Arlanc - Vellay;;Places aux champignons 43290 Saint-Bonnet-Le-Froid;;[2.623934, 45.560108];;FRFR1ETWGZ1;JUVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.056612;44.610178;;;; +;;;;;;;;FRS25PYZWNLR;FR*V75*PPX14*14;SIEG63 - ePremium - Billom - Cohalion;;Place de la Libération 43000 Le-Puy-En-Velay;;[3.521339, 45.845524];;FRFR1EBUTF1;FXUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.903566;44.585658;;;; +;;;;;;;;FRS25PAUDINCOURPOS;FR*V75*PPX15*03;SIEG63 - ePremium - Celles Sur Durolle - Huit Mai;;Parking Rue Anatole France 43250 Sainte-Florine;;[3.5475098, 45.8570762];;FRFR1ETWGZ3;CYBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.918842;44.646529;;;; +;;;;;;;;FRS25PMORTEAUCOLL;FR*V75*PPX15*04;SIEG63 - ePremium - Bromon Lamothe - Combrailles;;Place de l'europe 43700 Saint Germain Laprade;;[3.5464023, 45.8552796];;FRFR1EAAAD1;AGDJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.049421;44.711668;;;; +;;;;;;;;FRS25PYJNMSJ;FR*V75*PPX14*08;SIEG63 - ePremium - Cebazat - Grillon;;Place de la Paix 43700 Coubon;;[2.9417191, 45.5727239];;FRFR1ETKQB2;AGDJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.0291181;44.486233;;;; +;;;;;;;;FRS25PYLQMYY;FR*V75*PPX14*10;SIEG63 - ePremium - Le Cendre - Gare;;Parking Place Charles de Gaulles 43200 Yssingeaux;;[2.8164264, 45.5420679];;FRFR1EFUWM1;CMRC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.142652;44.41145;;;; +;;;;;;;;FRS25PSRUYZT;FR*V75*PPX14*11;SIEG63 - ePremium - Ceyrat - Vialle;;Route du Puy 43170 SAUGUES;;[3.2003302, 45.6245733];;FRFR1EVTPT1;CWHG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.056833;44.948826;;;; +;;;;;;;;FRS25PRTZIYHR634;FR*V75*PPX14*12;SIEG63 - ePremium - Le Broc - Vigneaux;;Emplacement RD587 43170 Chanaleilles;;[2.8083731, 45.5723908];;FRFR1EVTPT2;JUVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.441792;44.714312;;;; +;;;;;;;;FRS25PVERCELVILLE;FR*V75*PPX12*15;SIEG63 - ePremium - Blanzat - Primeveres;;Avenue Pierre Et Marie Curie 43770 Chadrac;;[3.055715, 45.808796];;FRFR1EFLZW2;CWHG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.017178;44.933541;;;; +;;;;;;;;FRS32PJXNFKK;FR*V75*PPX12*17;SIEG63 - ePremium - Billom - Voutes;;Impasse du Docteur Guillaume Court 43100 Brioude;;[3.28099446, 45.47737767];;FRFR1EJFKS1;CMRC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.88804;44.762521;;;; +;;;;;;;;FRS32PDTWFUM;FR*V75*PPX12*16;SIEG63 - ePremium - Boudes - Parking Entree;;Place Du Pré Clos 43590 Beauzac;;[3.0132707, 45.7840008];;FRFR1EFLZW1;ZLQY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.391256;45.092633;;;; +;;;;;;;;FRS32PKVTXUX;FR*V75*PPX12*14;SIEG63 - ePremium - Brassac-Les-Mines - Charles Souligoux;;Place du Marché 43260 Saint-Julien-Chapteuil;;[3.1967603, 45.768258];;FRFR1ETWUM1;ZLQY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.39107;45.2558692;;;; +;;;;;;;;FRS32PHXJWUA;FR*V75*PPX12*18;SIEG63 - ePremium - Riom - Reynouard;;Rue Jean Baudoin 43000 Le Puy En Velay;;[3.2429965, 45.5436886];;FRFR1ETMSP2;CQDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.388156;44.697264;;;; +;;;;;;;;FRS32PBFTTPG;FR*V75*PPX13*01;SIEG63 - ePremium - Saint Antheme - Ambert;;Aiguilhe, Quincieu – Parking Salle Multisport 43000 Aiguilhe;;[2.6875493, 45.5330676];;FRFR1ETWUM2;CQDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.94363;45.194985;;;; +;;;;;;;;FRS32PCDKXJS;FR*V75*PPX13*14;SIEG63 - ePremium - St Germain Lembron - Place du desert;;283 Chemin d'Argevillières 07000 Privas;;[3.0558558, 45.7664558];;FRFR1ETMSP1;SZAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.92185;44.71694;;;; +;;;;;;;;FRS32PDMVKVB;FR*V75*PPX12*10;SIEG63 - ePremium - Saint Gervais D Auvergne - Foirail;;Place du 14 Juillet 07470 Coucouron;;[3.3785739, 45.828258];;FRFR1EGGKH1;SZAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.390545;44.174437;;;; +;;;;;;;;FRS32PYECSZR;FR*V75*PPX12*11;SIEG63 - ePremium - Saint Julien Puy Laveze - Laqueuille;;Place du Heyd 07200 Vogüe;;[3.6059, 45.8691923];;FRFR1EHZRQ1;ANRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.960062;44.730592;;;; +;;;;;;;;FRS32PUCAAKJ;FR*V75*PPX12*08;SIEG63 - ePremium - Saint Ours - Eglise;;Place de la Mairie 07210 Alissas;;[2.805302, 45.6840001];;FRFR1EHUNM1;ANRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.974522;44.925184;;;; +;;;;;;;;FRS32PKHRYDG;FR*V75*PPX12*12;SIEG63 - ePremium - Volvic - Centre historique;;Place de l Airette 07200 Aubenas;;[3.118337, 45.887632];;FRFR1EHRDM1;ANJU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.156654;45.674221;;;; +;;;;;;;;FRS32PJT0PXWXNVC;FR*V75*PPX12*13;SIEG63 - EV-QC45 - St Germain Lembron - Coustilles;;Rue de la Mairie 07200 Saint-Etienne-De-Fontbellon;;[3.114279, 45.890311];;FRFR1EHGYF1;ANJU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.887285;45.67794;;;; +;;;;;;;;FRS32PXTSRMR;FR*V75*PPX13*02;SIEG63 - ePremium - St Floret - Mairie;;Le Village 07200 Ailhon;;[3.100119, 45.731146];;FRFR1ETWMW2;QREQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.955532;45.677082;;;; +;;;;;;;;FRFR1PBOAWXOY1RL;FR*V75*PPX13*10;SIEG63 - ePremium - Saint Beauzire - Pont Neuf;;Le Village 07470 Le Lac-D'Issarlès;;[3.139562, 45.740944];;FRFR1ETWMW1;BBSX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.83655;45.561391;;;; +;;;;;;;;FRS32PBGFWHE;FR*V75*PPX13*11;SIEG63 - ePremium - Saint Eloy les Mines - Jean Jaures;;Rte manufacture royale - Esp. Deydier 07200 Ucel;;[3.21635011, 45.61447849];;FRFR1ELJKX1;BCTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.000266;45.71688;;;; +;;;;;;;;FRFR1PFC0CGPMFFS;FR*V75*PPX13*09;SIEG63 - ePremium - Saint Genes Champanelle - Cassin;;Le Pré du Château 07260 Joyeuse;;[3.47442, 45.959944];;FRFR1EVNFR2;QREQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.134802;45.676146;;;; +;;;;;;;;FRFR1PTQ4EGZPKGL;FR*V75*PPX13*12;SIEG63 - ePremium - Saint Genes Champanelle - Theix;;Place du Village 07260 Rosières;;[3.2902348, 45.5323749];;FRFR1EVNFR1;BCTL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.870602;45.530767;;;; +;;;;;;;;FRS32PUPBWJL;FR*V75*PPX13*13;SIEG63 - ePremium - Sauxillanges - Stade;;Le Verdal 07230 Chandolas;;[3.248129, 45.79836];;FRFR1EYNTS1;QNWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.911907;45.576509;;;; +;;;;;;;;FRS32PGCCRUJ;FR*V75*PPX13*08;SIEG63 - ePremium - Vic le Comte - Gare;;Place Carnot 07300 Tournon-Sur-Rhône;;[2.5474457, 50.7384692];;FRFR1EYNTS2;QNWD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.925893;45.557526;;;; +;;;;;;;;FRS32PPJHOAYDA3O;FR*V75*PPX13*05;SIEG63 - ePremium - Usson - Parking Visiteurs;;Place du Collège 07290 Satillieu;;[5.329331,43.491310];;FRFR1EDQNG2;BBSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.922962;45.592874;;;; +;;;;;;;;FRS32PGKWHDP;FR*V75*PPX13*03;SIEG63 - ePremium - Vernet La Varenne - Mairie;;Avenue de Praperrier 07290 Saint-Romain-D'Ay;;[3.14829, 45.73457];;FRFR1EDQNG1;VDHU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.032985;45.578509;;;; +;;;;;;;;FRS32PZRTKJD;FR*V75*PPX13*04;SIEG63 - ePremium - Villeneuve - Mairie;;La Bruge 07660 Lanarce;;[1.011409, 48.474017];;FRFR1EKWUV2;VDHU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.965906;45.846898;;;; +;;;;;;;;FRS32PKDDWBQ;FR*V75*PPX13*06;SIEG63 - ePremium - Tauves - Aurlandeix;;Saint Sauveur 07190 Saint-Sauveur-De-Montagut;;[5.428846, 47.053393];;FRFR1EVWPU2;EVVP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.875031;45.499247;;;; +;;;;;;;;FRS32PXRFJWF;FR*V75*PPX13*07;SIEG63 - ePremium - Thiers - Sports;;Le Triolet 07210 Chomerac;;[-0.6453929999999919, 44.787885];;FRFR1ECTXQ2;YTFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.946799;45.68745;;;; +;;;;;;;;FRS32PPQSUGK;FR*V75*P9016*07;SIEG63 - ePremium - Thiers - Duchasseint;;La Palisse 07630 Cros-De-Georand;;[3.1459805, 50.6399697];;FRFR1ECTXQ1;CDAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.916712;45.646947;;;; +;;;;;;;;FRS32PAVQXQB;FR*V75*PPX01*02;SIEG63 - ePremium - Thiers - Forest;;Place de la Libération 07160 Le Cheylard;;[2.8965763, 50.6561949];;FRFR1EVWPU1;GYXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.897872;45.562052;;;; +;;;;;;;;FRS32PVYUUWX;FR*V75*PPX01*03;SIEG63 - ePremium - Murol - Jassaguet;;Parking les Lauriers 07220 Viviers;;[7.7103309,49.0313229];;FRFR1EFCBF2;NFJU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.89316;45.564292;;;; +;;;;;;;;FRS32PBABXXR;FR*V75*PPX01*04;SIEG63 - ePremium - Mont Dore - Sancy;;Chemin de l'Ancien Stade 07200 Vesseaux;;[4.828324822319736,43.78639927025314];;FRFR1EKWUV1;YEMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.912892;45.718341;;;; +;;;;;;;;FRS32PNKUESQ;FR*V75*PPX01*05;SIEG63 - ePremium - Montpeyroux - Parking Entree;;Le Village 07260 Sablières;;[3.1485441,50.7582304];;FRFR1EFCBF1;YEMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.106362;45.480671;;;; +;;;;;;;;FRS32PSAXDEN;FR*V75*PPX01*01;SIEG63 - ePremium - Mont Dore - Libération;;Les Sagnes 07450 Sagnes-Et-Goudoulet;;[4.503644299999999,44.6477737];;FRFR1EGQWS2;YSDH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.051382;45.57173;;;; +;;;;;;;;FRS32PXPAZYK;FR*V75*PHBSAG*LOB;SIEG63 - ePremium - Nohanent - Durtol;;Place Olivier de Serres 07200 Aubenas;;[4.9041925,44.1160294];;FRFR1ECDNN1;YHNT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.894544;45.596798;;;; +;;;;;;;;FRS32PVFWKYJ;FR*V75*PHBSAE*PDA;SIEG63 - ePremium - Nonette Orsonnette - Place du Bouillas;;Place de la Pécourte 07200 Aubenas;;[7.118697,43.5871748];;FRFR1EHMAV1;YHNT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.99937;45.786238;;;; +;;;;;;;;FRS32PANWJWC;FR*V75*PPX05*13;SIEG63 - ePremium - Orcines - Liberté;;Bauvache 07220 Saint-Montan;;[4.83,43.79];;FRFR1EGQWS1;YSUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.873462;45.588654;;;; +;;;;;;;;FRS32PFPMRAX;FR*V75*PPX02*06;SIEG63 - ePremium - Lempdes - Verny;;Place des Crottes 07220 Saint-Thome;;[4.9942375,44.0769349];;FRFR1EQGRT1;YSUV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.868916;45.560258;;;; +;;;;;;;;FRS32PNPCXMY;FR*V75*PPX02*05;SIEG63 - ePremium - Issoire - Place Freres Lumieres;;Rue Du Vol À Voile 43320 Chaspuzac;;[3.105857, 50.5314804];;FRFR1ECHKP1;YSDH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.85806;45.5928;;;; +;;;;;;;;FRS32PKFSCCR;FR*V75*PPX02*07;SIEG63 - ePremium - La Tour d'Auvergne - Bagnols;;Rue de Bellevue 43220 Dunieres;;[-3.10,47.48];;FRFR1EUBMW1;RDEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.859653;45.645266;;;; +;;;;;;;;FRS32PRAMSWR;FR*V75*PPX02*03;SIEG63 - ePremium - Royat - Allard;;Place Saint-Pierre 43450 Blesle;;[6.532536, 49.292436];;FRFR1EGAXM1;YHJM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.894331;45.714598;;;; +;;;;;;;;FRS32PAMUVUF;FR*V75*PPX01*06;SIEG63 - ePremium - Lezoux - Lopick;;Parking du centre historique 43100 BRIOUDE;;[6.535945, 49.289694];;FRFR1EMNYM1;RDEV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.052549;45.501175;;;; +;;;;;;;;FRFR1PJO5BRM2AZJ;FR*V75*PPX02*01;SIEG63 - ePremium - Monnerie le Montel - Gare;;Place Michelet 43000 Le Puy-en-Velay;;[-2.64, 47.7];;FRFR1ETZEH1;NFJU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.983438;44.934744;;;; +;;;;;;;;FRFR1PVQODSEY6PD;FR*V75*PPX02*02;SIEG63 - ePremium - Rochefort Montagne - Eglise;;Place de la Mairie 43490 Costaros;;[3.0448811, 50.5467231];;FRFR1EFLQA1;VMRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.08223;44.9995;;;; +;;;;;;;;FRFR1PZO7EL7PRD6;FR*V75*P9020*05;SIEG63 - ePremium - Riom - Cornet;;Parking de l'Antreuil 43200 Yssingeaux;;[0.654826, 47.353958];;FRFR1EPFBU1;NVQK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.450919;45.640808;;;; +;;;;;;;;FRFR1PPU8TVQEFNN;FR*V75*P9017*06;SIEG63 - ePremium - Riom - Jeanne D Arc;;Place blanche 43700 Brives-Charensac;;[0.6196363424603306, 47.11494422473446];;FRFR1EFYGS1;NVQK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.983865;45.645002;;;; +;;;;;;;;FRFR1PRP1ODR0UNU;FR*V75*P9017*04;SIEG63 - ePremium - Romagnat - Jean Moulin;;Rue du Marais 43210 Bas -En-Basset;;[3.573539, 50.408746];;FRFR1EFYGS2;LJRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.96026;45.64881;;;; +;;;;;;;;FRFR1PTFPYCFK3HI;FR*V75*P9017*05;SIEG63 - ePremium - Pérignat les Sarliève - République;;Place du Postel 43100 Brioude;;[3.19,45.73];;FRFR1ETPTV1;LJCE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.117952;45.65551;;;; +;;;;;;;;FRFR1PETLUKKUNU7;FR*V75*P9017*03;SIEG63 - ePremium - Parent - Gare;;3 Avenue Charles Massot 43750 Vals-près-le-Puy;;[2.831599, 50.485561];;FRFR1ETPTV2;LJRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.901328;44.93486;;;; +;;;;;;;;FRFR1PJDUTLZQEJL;FR*V75*P9018*02;SIEG63 - ePremium - Puy Guillaume - Jaures;;Place Du Foirail 43420 Pradelles;;[-2.28,48.61];;FRFR1EGFYM1;YKFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.971748;45.044026;;;; +;;;;;;;;FRFR1PXYOLENOBWF;FR*V75*P9018*03;SIEG63 - ePremium - Parentignat - Chateau;;Place Du Général Lafayette 43300 Siaugues-Sainte-Marie;;[2.203439987359303, 50.99486000882223];;FRFR1ELFYX1;YHJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.904766;45.54879;;;; +;;;;;;;;FRFR1PUVBI4ZPDJG;FR*V75*PPX04*05;SIEG63 - ePremium - Pont Du Chateau - Chambige;;Parking maison communal 43000 Polignac;;[4.912101, 44.419857];;FRFR1EUEWX1;CDAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.936632;44.3298;;;; +;;;;;;;;FRFR1PLLIU98V8U1LGVB;FR*V75*P9018*04;RENAULT HAZEBROUCK;;Rue de l’Anyade 43350 Saint-Paulien;;[4.976144, 44.989731];;FRFR1EHMER1;FXSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.924012;44.616002;;;; +;;;;;;;;FRFR1PSRNTWNCMBI;FR*V75*P9016*09;Technopole Arbois;;Parking de la mairie 43200 Le Pertuis;;[5.063022, 44.332828];;FRFR1EEYBB1;TZCM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.873377;45.050388;;;; +;;;;;;;;FRFR1PA3NZTZQNQG;FR*V75*P9016*08;INDIAN MOTORCYCLE;;Place du 19 Mars 1962 43120 Monistrol-Sur-Loire;;[5.140972, 44.358895];;FRFR1EAVXE1;TPWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.977494;45.57204;;;; +;;;;;;;;FRFR1PIMEFMD4DXW;FR*V75*P9017*01;Place de la Gare - LA LOUPE;;Place Rechausseyre 43150 Les-Estables;;[4.709302, 44.441867];;FRFR1EPFBU2;TBMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.02737;45.458288;;;; +;;;;;;;;FRFR1PLLI4EPKQ72IF9C;FR*V75*P9017*02;Bureau;;Rue de la Poste 43400 Le-Chambon-Sur-Lignon;;[4.936933, 45.015669];;FRFR1EBYLU1;PCTD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.973817;45.583496;;;; +;;;;;;;;FRFR1PVUY2EBKCXJ;FR*V75*P9020*02;Parking Hippopotamus Pessac;;Place des déportés 43110 Aurec-Sur-Loire;;[4.799172, 44.702527];;FRFR1EAMNY1;RVQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.868361;45.545721;;;; +;;;;;;;;FRFR1PMWG2J2DVGU;FR*V75*P9019*06;ANS COM;;Place Lafayette 43230 Paulhaguet;;[4.819175, 44.752224];;FRFR1ERLRW1;PCTD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.875138;45.578371;;;; +;;;;;;;;FRFR1PEUXBWQWQXS;FR*V75*P9020*01;BDS MENUISERIE;;Fabrias 07380 Jaujac;;[5.27678869, 44.5691193];;FRFR1EKXKZ1;RVQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.93832;45.565976;;;; +;;;;;;;;FRFR1PGXUJA6EA0H;FR*V75*P9019*05;Au Cheval Blanc Niedersteinbach;;Le Village 07590 Saint-Laurent-Les-Bains;;[4.960262, 45.229445];;FRFR1EBCCQ1;MWME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.921365;45.588643;;;; +;;;;;;;;FRFR1PJVRK3JQHGA;FR*V75*P9020*03;017a012b-1701-4a2c-a262-2d5dfd1ff1fd;;Place de l'Eglise 07150 Vagnas;;[4.9767, 44.9891];;FRFR1EAVKK1;SSVW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.820926;45.640928;;;; +;;;;;;;;FRFR1PBNRBDCEV7P;FR*V75*P9020*04;Logis Hôtel des Acacias Lille Tourcoing;;Place Andre Pic 07130 Saint-Peray;;[4.957015, 44.972802];;FRFR1EMAYM1;YKFJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.760774;45.572016;;;; +;;;;;;;;FRFR1PAMULMNANEO;FR*V75*P9018*05;Camping les lavandes Darbres;;Le Village 07150 Lagorce;;[4.985143, 45.122126];;FRFR1EXADC1;HJUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.83665;44.9355;;;; +;;;;;;;;FRFR1PBDY183MWVK;FR*V75*P9019*02;RAMADES;;Sous la Vielle 07150 Labastide-De-Virac;;[4.954134, 45.291376];;FRFR1ENFVC1;SSVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.790972;45.568758;;;; +;;;;;;;;FRFR1PTBTJI4QVE3;FR*V75*P9019*01;ECOPARC DE MALIJAI;;Place De L'Alambic 07200 Lachapelle-Sous-Aubenas;;[4.993811, 45.290854];;FRFR1EUNZJ1;FXSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.763941;45.644002;;;; +;;;;;;;;FRFR1PMQMBBYPLTF;FR*V75*P9019*03;SARL C&M;;Place des Combettes 07170 Villeneuve-De-Berg;;[5.060403, 44.522082];;FRFR1ECVGG1;AHSW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.769987;45.639726;;;; +;;;;;;;;FRFR1PT6DFD4JXKG;FR*V75*P9019*04;HOTEL LE COLLIER;;Place du Champ des Pauvres 07170 Saint-Germain;;[4.802167, 44.418065];;FRFR1EFLQA2;HJUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.401908;44.8003;;;; +;;;;;;;;FRFR1POAJVPG4P9J;FR*V75*PPX02*08;PARKING ROUMANILLE;;Allee Du Mistral 07130 Saint-Peray;;[5.9711, 45.5471];;FRFR1ELVGX2;AHSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.372968;45.018041;;;; +;;;;;;;;FRS80PHAMHAM;FR*V75*PPX05*05;LUMI'IN LORIOL;;Avenue de la Gare 07100 Annonay;;[4.70472835, 44.35463006];;FRFR1EXKFM2;SEQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.886768;45.119321;;;; +;;;;;;;;FRS80P58D245BB6A2BF;FR*V75*PPX05*06;LE DOMAINE DES CIGOGNES;;Place les Vergnades 07110 Largentière;;[5.127572, 44.357458];;FRFR1EGUFY1;SEQD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.367919;44.532597;;;; +;;;;;;;;FRS80PZSEFWZ;FR*V75*PPX05*07;Hôtel EUROPA - QUIBERON;;Rue de la Valette - Parking la Valette 07100 Annonay;;[4.883411, 44.92895];;FRS89ECJQZ1;LJCE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.85676;45.0711;;;; +;;;;;;;;FRS80PCAGNYBARBUSSE;FR*V75*PPX05*04;Bouzonville Place du Marché;;Place Des Mineurs 07000 Saint-Priest;;[5.53849131, 44.20221446];;FRS89EEFAW2;AGNL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.813139;44.33132;;;; +;;;;;;;;FRS80PBPJAZA;FR*V75*PPX05*09;Bouzonville Mairie;;Avenue de l'Europe Unie 07000 Privas;;[5.426297, 44.378797];;FRS89EASCR1;AGNL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.747654;44.345787;;;; +;;;;;;;;FRS80PHORNOYDUFOUR;FR*V75*PPX05*10;Brasserie LA DILETTANTE;;Place Chalendas 07110 Vinezac;;[4.845401, 45.067357];;FRS89EULWD2;MLBR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.744417;44.347337;;;; +;;;;;;;;FRS80PBXBPRQ;FR*V75*PPX05*08;GOOD KING;;Place Général de Gaulle 07120 Ruoms;;[4.902889, 44.904445];;FRS89EFNNC2;RLTY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.274113;44.712392;;;; +;;;;;;;;FRS80PUVJGEM;FR*V75*PPX04*07;HERVE THERMIQUE JOUE LES TOURS;;Camp Redon 07150 Orgnac-L'Aven;;[4.844279, 45.013752];;FRS89EASCR2;MLFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.190152;44.751122;;;; +;;;;;;;;FRS80P58D2452CB39D7;FR*V75*PPX04*08;CREDIT AGRICOLE;;Quartier Ratiere 07150 Vallon-Pont-D'Arc;;[4.872427, 45.001602];;FRS89ECJQZ2;FFDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9333;45.272129;;;; +;;;;;;;;FRS80PAIRAINES53E;FR*V75*PPX04*09;STBM;;Sainte-Agathe 07520 Lalouvesc;;[4.839749, 44.769233];;FRS89EMELH1;ZYSS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.277503;44.75614;;;; +;;;;;;;;FRS80PPMHGVH;FR*V75*PPX04*06;ESPACE AUTO COURNON;;Fangaro 07460 Saint-Sauveur-De-Cruzières;;[5.118107, 44.35214];;FRS89EULWD1;MNTX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.756491;44.36141;;;; +;;;;;;;;FRS80PNUHCFA;FR*V75*PPX05*02;M2018;;Place d'Onclaire 07000 Coux;;[4.885265, 44.931448];;FRFR1EGUWU2;KDBB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.751107;45.295163;;;; +;;;;;;;;FRS80PHARBONNIERES;FR*V75*PPX05*03;BORNE ROUXEL MARINE;;Place du Foiral 07000 Privas;;[5.218949, 44.428743];;FRFR1EGUJB1;AHWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.872588;44.549544;;;; +;;;;;;;;FRS80PFTMAHONTOURIS;FR*V75*PPX05*01;Borne Levaroy;;Place du Champs de Mars 07000 Privas;;[4.929752, 44.950546];;FRFR1EGUJB2;MLBR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.703235;44.556301;;;; +;;;;;;;;FRS80PBHCEYP;FR*V75*PPX05*11;Grignan, Les Grand Près;;Pl. de l'Ecole Rte de Bourg St Andeol 07700 Saint-Just-D'Ardèche;;[4.904457, 44.904052];;FRFR1ELVGL1;AHWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.781791;44.273155;;;; +;;;;;;;;FRS80PMOLLIENSDREUIL;FR*V75*PPX03*04;Alixan, Parking SDED Privé;;Lochere 07460 Banne;;[4.81653, 45.176935];;FRFR1EGUFY2;FUJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.88637;44.23775;;;; +;;;;;;;;FRS80PDFJTTX;FR*V75*PPX03*03;Vinsobres, Passage de l'Amélie;;Boulevard Charles de Gaulle 07500 Guilherand-Granges;;[4.893549, 44.946232];;FRFR1EGUWU1;KDBB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.93998;44.5448;;;; +;;;;;;;;FRS80PBPQRSK;FR*V75*PPX03*06;Nyons, Promenade de la Digue Est;;Place Andrée Rouveyrol 07460 Berrias-Et-Casteljau;;[4.994846, 45.322879];;FRFR1EVJRF1;UWYU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.07845;44.277843;;;; +;;;;;;;;FRS80PRUEBEFFROI;FR*V75*PPX04*01;Donzère, 20 Avenue P. de Coubertin - Pkg piscine;;Place de la Poste 07430 Davezieux;;[5.04475, 45.0434];;FRFR1EJAEY1;UWYU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.89511442;44.556028;;;; +;;;;;;;;FRS80PLECROTOYVADIC;FR*V75*PPX02*09;Châteauneuf-Sur-Isère, Quai de l'Isère;;Fringuet 07440 Champis;;[5.04918, 45.0448];;FRFR1ERWUB1;FGWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.02580276;44.561668;;;; +;;;;;;;;FRFR1PZZMXAN;FR*V75*PPX03*01;Saulce-Sur-Rhône, Parking Du Temple;;Avenue Georges Clemenceau 07500 Guilherand-Granges;;[5.05134, 45.0451];;FRFR1ELLHF1;EJDV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.13266647;44.642778;;;; +;;;;;;;;FRFR1P58CAB98E76BD3;FR*V75*PPX03*02;Loriol-Sur-Drôme, Rue du Real Pkg Champ de Mars;;Place Galimard 07600 Vals-Les-Bains;;[5.05015, 45.0492];;FRFR1EYWBU1;PEMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.75091764;44.376507;;;; +;;;;;;;;FRFR1PXPBHMS;FR*V75*PPX05*12;Saint-Nazaire-Le-Desert, Place de la Mairie;;Place de l'Eglise 07690 Vocance;;[5.05586, 45.0422];;FRFR1EGYRH1;PEMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.89067;44.649576;;;; +;;;;;;;;FRFR1PP9ZRAMGL0G;FR*V75*PPX04*03;Châteauneuf-De-Galaure, ZI des Aires;;Les Allevards 07530 Antraigues-Sur-Volane;;[5.041824, 45.29267];;FRFR1EQASE1;QGXS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.0923;44.944521;;;; +;;;;;;;;FRFR1PSG4BBYR1FY;FR*V75*PPX04*02;Alixan, Parking Rovaltain Face SDED;;Avenue du Colonel Rousset 07130 Cornas;;[5.44251, 45.0202];;FRFR1ELVGL2;CTRL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.37037;44.8613;;;; +;;;;;;;;FRFR1PPUMXEJQLLD;FR*V75*PPX04*04;Saint-Marcel-Lès-Valence, Le Village;;Place de la Mairie 07120 Sampzon;;[5.2494, 45.06];;FRFR1ELVGX1;DBKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.06121;44.9669;;;; +;;;;;;;;FRFR1PZXIBYMRXBH;FR*V75*P9016*06;Saint-Donat-Sur-L'Herbasse, Place Anatole France;;Les Fraysses 07120 Labeaume;;[5.29092, 45.0166];;FRFR1EYABL1;APHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.02596;44.93115343;;;; +;;;;;;;;FRFR1PUMSFRRANOQ;FR*V75*PPX07*08;Saint-Sorlin-En-Valloire, Place des Gauds;;Place des Brassieres 07400 Rochemaure;;[5.32729, 45.0293];;FRFR1ECAFW1;VANS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.01835;44.72066204;;;; +;;;;;;;;FRFR1POCRUUMPHSX;FR*V75*PPX07*12;Moras-En-Valloire, Le Village;;Le Village 07590 Saint-Etienne-De-Lugdarès;;[5.020937, 44.72668];;FRFR1EMMTT1;HMAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.88401;44.36218458;;;; +;;;;;;;;FRFR1PD4GOUTGVDY;FR*V75*PPX07*11;Dieulefit, Parking des Grands Pres;;Place du Marche 07510 Sainte-Eulalie;;[5.024275, 44.727057];;FRFR1EMUNY1;HMAM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.41656;44.56067532;;;; +;;;;;;;;FRS80PSTVALERYSOMME;FR*V75*PPX07*10;Valaurie, Place Nicolas Appert;;Place du Marché 07410 Colombier-Le-Vieux;;[4.873418, 45.170177];;FRFR1EGPLU1;HMAM4;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.92192;44.8405;;;; +;;;;;;;;FRFR1PALEJNTJITP;FR*V75*PPX07*09;Challes-Les-Eaux, Massettes 2;;Place du Martouret 07410 Saint-Felicien;;[5.356327, 44.414245];;FRFR1EUMRU1;XKDH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.0225;45.0034;;;; +;;;;;;;;FRFR1PQEKHJI0HSD;FR*V75*PPX07*14;Pierrelatte, Ferme au crocodile;;Place de Chantoisel 7320 Saint-Agrève;;[4.859351, 45.184396];;FRFR1EJGAK1;XKDH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.05141;44.8955;;;; +;;;;;;;;FRFR1PKB1PIN41BH;FR*V75*PPX07*16;Nyons, Parking Cerisiers Mistral;;Place du Cimetière 07400 Le Teil;;[4.934015, 44.610178];;FRFR1EJAUM1;HMAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.87871;45.0304;;;; +;;;;;;;;FRFR1PIKISQUTAT2;FR*V75*PPX07*15;Valence, Parking Comette Jouvet;;Place René Montérémal 07400 Le Teil;;[5.133801, 44.585658];;FRFR1EHAEW1;ZHEH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.799586;44.9741;;;; +;;;;;;;;FRFR1PEGZJSX;FR*V75*PPX07*13;Sederon, Le Village;;Village Nord 07310 Saint-Martial;;[5.062747, 44.646529];;FRFR1ETATV1;ZHEH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.97910139;44.8993;;;; +;;;;;;;;FRFR1PD1TG2DDEOE;FR*V75*PPX07*04;Verclause, Parking du Supermarche;;Parking le clos - Le clos 07400 Alba-La-Romaine;;[5.091215, 44.711668];;FRFR1ERURM1;FMYW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.085042;44.8756;;;; +;;;;;;;;FRS80PPVJDXV;FR*V75*PPX07*03;Tain-L'Hermitage, Piscine;;Place Aristide Briand 07120 Saint-Alban-Auriolles;;[5.381235, 44.486233];;FRFR1EGMAX1;FUJS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.82037;44.9687;;;; +;;;;;;;;FRS80PMPGGBH;FR*V75*PPX07*02;Valence, Avenue des Langories;;Rue Chevrière 07400 Meysse;;[5.2581, 44.41145];;FRFR1ESBMD2;FMYW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.71889;44.86594;;;; +;;;;;;;;FRS80P58AEC90FE0C22;FR*V75*PPX07*01;La Roche-De-Glun, Grande Rue;;Rue du Centre 07430 Vernosc-Lès-Annonay;;[4.898153, 44.948826];;FRFR1EJVNC2;GTAB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.930583;44.8715;;;; +;;;;;;;;FRS80P58C7C56DB5CE3;FR*V75*PPX07*05;Pont-De-L'Isère, Place du 16 Août;;Chemin de Halage 07300 Mauves;;[5.056612, 44.714312];;FRFR1ESBMD1;GUPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.70697;45.0423;;;; +;;;;;;;;FRS80PPGVTTD;FR*V75*PPX07*07;Livron Sur Drome, Place de la Citoyenneté;;Place Maxime Chantier 07340 Andance;;[4.903566, 44.933541];;FRFR1EJVNC1;GUPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.828305;44.874;;;; +;;;;;;;;FRS80PMJEMLB;FR*V75*PPX07*06;Nyons, 170 Rue Ferdinand Fert -;;Rue Centrale 07300 Saint-Jean-De-Muzols;;[4.918842, 44.762521];;FRFR1ERVSY1;GTAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.838851;44.541316;;;; +;;;;;;;;FRS80PXWTTNG;FR*V75*PPX08*09;Valence, Pont du Rhône;;Route de l'Egalité 07340 Peaugres;;[5.049421, 45.092633];;FRFR1EMULV2;CVKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.866178;44.4428751;;;; +;;;;;;;;FRS80PGUCKJF;FR*V75*PPX08*12;St Ferreol Trente Pas, Place De La Mairie;;Place Jean Moulin 07370 Sarras;;[5.0291181, 45.2558692];;FRFR1EMULV1;WNHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.69954;45.080627;;;; +;;;;;;;;FRS80PYPGAPL;FR*V75*PPX08*11;Valence, Place Tony Garnier;;Le Village 07340 Champagne;;[5.200007, 44.697264];;FRFR1EMUNY2;TBMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.698986;44.51525;;;; +;;;;;;;;FRS80PTBRBZZ;FR*V75*PPX08*10;Valence, Lautagne Labo;;Place du Clos 07190 Saint-Pierreville;;[5.142652, 45.194985];;FRFR1EHEAV1;TPWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.09518;44.486352;;;; +;;;;;;;;FRS80PDJGFUS;FR*V75*PPX08*13;Saint-Vallier, Place du Champs de Mars;;Place René Cassin 07350 Cruas;;[5.056833, 44.71694];;FRFR1EHEAV2;TZCM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.96484;44.285472;;;; +;;;;;;;;FRS80PXRQKGG;FR*V75*PPX08*15;Bourg-Lès-Valence, Parking Valentin;;La Jaujon 07230 Lablachère;;[5.441792, 44.174437];;FRFR1EUBJM1;DVEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.03997;44.666304;;;; +;;;;;;;;FRS80PDLEYBP;FR*V75*PPX08*14;Lapeyrouse-Mornay, Place Jérôme Cavalli;;Chemin du Grand Clos 07700 Saint-Martin-D'Ardèche;;[5.017178, 44.730592];;FRFR1EXKFM1;UEJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.05117;44.24526;;;; +;;;;;;;;FRS80PDOULLENSPISCI;FR*V75*PPX07*17;Romans-Sur-Isère, Cité de la Musique;;Place du Champs de Mars 07700 Bourg-Saint-Andeol;;[4.88804, 44.925184];;FRFR1EJKJD2;GESK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.583329;44.288371;;;; +;;;;;;;;FRS80PBTSJDPSCWJ;FR*V75*PPX08*03;Romans-Sur-Isère, Parking Jacquemard;;Le Village 07700 Bidon;;[6.391256, 45.674221];;FRFR1EJKJD1;ALKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.544305;44.337725;;;; +;;;;;;;;FRS80PNUUUFQ;FR*V75*PPX08*02;Romans-Sur-Isère, Pl. du 75eme Rég Inf;;Avenue Vincent D Indy - Le Village 07240 Vernoux-En-Vivarais;;[6.39107, 45.67794];;FRFR1EXKVR2;GESK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.587042;44.377282;;;; +;;;;;;;;FRS80PHUDFPP;FR*V75*PPX08*01;Romans-Sur-Isère, Delay;;Le Blod 07800 Saint-Georges-Les-Bains;;[6.388156, 45.677082];;FRFR1EXKVR1;UEJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.08628;44.372311;;;; +;;;;;;;;FRS80PQGBZJG;FR*V75*PPX08*05;Romans-Sur-Isère, Le Pont Neuf;;Quai Anatole France 07800 La Voulte-Sur-Rhône;;[5.94363, 45.561391];;FRFR1EZJRX1;DEXX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.076071;44.8994;;;; +;;;;;;;;FRS80PJGPERV;FR*V75*PPX08*07;Lens-Lestang, Place Des Tilleuils;;Font Benite 07790 Saint-Alban-D'Ay;;[5.92185, 45.71688];;FRFR1EWRPW1;MRGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.636785;44.9165;;;; +;;;;;;;;FRS80PSTVALPERREE;FR*V75*PPX08*08;Saint-Martin-En-Vercors, Place du Monument au;;Le Village 07110 Valgorge;;[6.390545, 45.676146];;FRFR1EDAKP1;DKGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.5761418;45.0169;;;; +;;;;;;;;FRS80PDXDFXN;FR*V75*PPX08*06;Saint-Nazaire-En-Royans, Angle L. Laurent/J.;;Le Village 07660 Lesperon;;[5.960062, 45.530767];;FRFR1EVTNL1;DKDZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.99027;45.0395;;;; +;;;;;;;;FRS80PHLQJWN;FR*V75*PPX06*04;Saint-Jean-En-Royans, Parking Ancien Intermar;;Place du Champ de Mars 07380 Meyras;;[5.974522, 45.576509];;FRFR1EEJAS1;UXVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.4705944;45.129631;;;; +;;;;;;;;FRS80PSEFWCP;FR*V75*PPX06*01;Saint-Laurent-En-Royans, Rue Du Tram;;Place du Champ de Mars 07330 Thueyts;;[6.156654, 45.557526];;FRFR1EYKKK1;MRGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.020297;45.173596;;;; +;;;;;;;;FRS80PMOREUILMALTER;FR*V75*PPX06*02;Crest, Place de la Liberté;;Montpezat-Sous-Bauzon, Place de la Poste - Bo 07560 Montpezat-Sous-Bauzon;;[5.887285, 45.592874];;FRFR1ENKRS1;DXRY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.992505;45.366279;;;; +;;;;;;;;FRS80PYHMTEU;FR*V75*PPX06*03;Crest, Place des Marronniers;;Parigny 42120 Parigny;;[5.955532, 45.578509];;FRFR1EUCVJ1;DNQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.6337565;45.6679;;;; +;;;;;;;;FRS80PEYMSLB;FR*V75*P9015*07;Saint-Barthelemy-De-Vals, Avenue Du Vercors;;Rue Jacques Duboin 74160 Saint Julien En Genevois;;[5.83655, 45.846898];;FRFR1EUUEB1;HHTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.420295;45.392746;;;; +;;;;;;;;FRS80PAWXSQD;FR*V75*PPX06*11;Remuzat, 1 Place du Champs de Mars;;Victor Hugo Mulsant 42300 Roanne;;[6.000266, 45.499247];;FRFR1EVCHM1;PVNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.3891472;45.455873;;;; +;;;;;;;;FRS80PYGXHDL;FR*V75*P9016*03;Saint-Uze, Les Sources;;Avenue Gabriel AMORETTI 83160 La Valette Du Var;;[6.134802, 45.68745];;FRFR1EBFLY1;UWDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.476072;44.9751199;;;; +;;;;;;;;FRS80PKQJTGP;FR*V75*P9016*05;Cleon-D'Andran, Route de Beaulieu;;Parking LAVIGERIE 83220 Le Pradet;;[5.870602, 45.646947];;FRFR1EDQKZ1;VJYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.343487;45.371901;;;; +;;;;;;;;FRS80PDOULLENSGORET;FR*V75*P9016*04;Bourdeaux, Place du Quai;;Parking Museum Départemental 83000 Toulon;;[5.911907, 45.562052];;FRFR1EBULA1;HEPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.56859;45.6513139;;;; +;;;;;;;;FRS80PZCLHFY;FR*V75*P9016*02;Saou, Le Village;;Avenue Maréchal de Lattre de Tassigny 83140 Six-Fours-Les-Plages;;[5.925893, 45.564292];;FRFR1EQVTZ1;FBTY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.671319;45.432277;;;; +;;;;;;;;FRS80PRUEVERDUN;FR*V75*P9016*01;Mirabel-Et-Blacons, Parking Ecole;;Avenue Maréchal LECLERC 83400 Hyeres;;[5.922962, 45.718341];;FRFR1ENDAU1;FBTY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.410519;45.2996611;;;; +;;;;;;;;FRS80PGDZSRJ;FR*V75*PPX06*09;La Motte-Chalancon, Parking du Village;;Place du Belvédère 83400 Hyeres;;[6.032985, 45.480671];;FRFR1EMFQL1;MDWJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.412653;44.9155285;;;; +;;;;;;;;FRS80P58D24440E77BF;FR*V75*PPX06*10;Sahune, Place du Village;;9 Avenue De La Bergerie 83400 Hyères;;[5.965906, 45.57173];;FRFR1ELSME1;PUHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.27874;45.39962;;;; +;;;;;;;;FRS80PGPZAXD;FR*V75*PPX06*08;Bourg-Lès-Valence, Ecole Jean Moulin;;Rue Bossuet 83056 Toulon;;[5.875031, 45.596798];;FRFR1EHUMM1;RAHQ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.9175;45.4907722;;;; +;;;;;;;;FRS80PVSJVFY;FR*V75*PPX06*05;Aouste-Sur-Sye, Parking de la Mairie;;11 Avenue Beau Rivage 83320 Carqueiranne;;[5.946799, 45.786238];;FRFR1EHPNP1;RAHQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.01369;45.385062;;;; +;;;;;;;;FRS80PMIRAUMONMAIR;FR*V75*PPX06*06;Valence, Latour Maubourg;;Parking de la colle 83630 Aups;;[5.916712, 45.588654];;FRFR1EJBAQ1;RAHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.25441;45.0595127;;;; +;;;;;;;;FRS80PVYEBQY;FR*V75*PPX06*07;Allex, Place Saint Joseph;;Chemin du Petit Lac 83320 Carqueiranne;;[5.897872, 45.560258];;FRFR1EMDAQ1;RRDU3;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.91129;44.902538;;;; +;;;;;;;;FRFR1PZAWGJI2HTH;FRSAEPSA;Peyrins, Parking de l'école;;740 Avenue Des Monocotylédones 83400 Hyères;;[5.89316, 45.5928];;FRFR1EDAHU1;RRDU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.06444;44.907212;;;; +;;;;;;;;FRS70PVESOUL2;FRSAEPMAD;Hauterives, Parking du Palais Idéal;;Hyères, Parking Tour Fondue 83400 Hyères;;[5.912892, 45.645266];;FRFR1EWPXN1;RRDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.439585;45.207744;;;; +;;;;;;;;FRS70PVESOULHABERGES;FRTCBP01606;Saillans, Montée Soubeyranne;;Rue Amiral Sénès 83220 Le Pradet;;[6.106362, 45.714598];;FRFR1EPTAQ1;MREK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.523008;45.170807;;;; +;;;;;;;;FRS70PPYZKRX;FRIPKPMRO;Saint-Bonnet-De-Valclerieux, Place du Lavoir;;Avenue De Lisbonne 83500 La Seyne-sur-Mer;;[6.051382, 45.501175];;FRFR1EPFFW1;MWAA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.1867;45.59071;;;; +;;;;;;;;FRS70PK5HNSQ9L6I;FRIPKPMHV;Aouste-Sur-Sye, D93 - Parking Pharmacie;;10 Avenue De La Libération 83890 Besse-sur-Issole;;[4.894544, 44.934744];;FRFR1EHHAV1;MWAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.34407;45.5281;;;; +;;;;;;;;FRS70PVESOULMEILLIER;FRIPKPMG5;Montbrun-Les-Bains, La Condamine;;SOLLIES-PONT, Parking BELTRAME 83210 SOLLIES-PONT;;[4.99937, 44.9995];;FRFR1ENJNG1;MWAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.16562;45.5054;;;; +;;;;;;;;FRS70PTPLBGP;FRIPKPMBA;Crest, Avenue George Clémenceau;;Ollioules, Adeto Technopole 83190 Ollioules;;[5.873462, 45.640808];;FRFR1EGGKH2;ZBUX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.6714725;45.759;;;; +;;;;;;;;FRS70PCHAMPAGNEYREN;FRIPKPARC;Valence, Clos Sylvestre;;1 Rue De La Gare 83400 Hyères;;[5.868916, 45.645002];;FRFR1EZQRE1;ZBUX3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.887383;45.5053;;;; +;;;;;;;;FRS70PVESOUL1;FRIPKPALH;Albertville, Commissariat, Rue Jacques Porraz;;Rue Henri Matisse 83000 Toulon;;[5.85806, 45.64881];;FRFR1EZPYE1;LCRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.47326;45.09059;;;; +;;;;;;;;FRS70PHERICOURTBRO;FRIPKPNVR;Albertville, Parking Place de L'église;;PLACE HENRI 83840 Brenon;;[5.859653, 45.65551];;FRFR1EKSNM2;ZBUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12483;45.223157;;;; +;;;;;;;;FRS70PWTQUNF;FRTCBP00968;Albertville, Pkg des sœurs, Rue Claude Genoux;;Quartier La Blocarde 83400 Hyeres;;[4.894331, 44.93486];;FRFR1EAMPN2;LCRM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.90136;45.543217;;;; +;;;;;;;;FRS70PSTLOUPMAIRIE;FRTCBP00803;Barberaz, Centre Bourg Route d'Apremont;;Avenue Alfred DECUGIS 83400 Hyeres;;[5.052549, 45.044026];;FRFR1EWVHE2;LCRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.585147;45.73356;;;; +;;;;;;;;FRS70PVESOULGERLINGEN;FRTCBP00701;Grésy sur Aix, 6 Rue Boucher de la Rupelle;;111 impasse HERA 83160 La Valette Du Var;;[5.983438, 45.54879];;FRFR1ELEXM2;MDWJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.84452;45.3407;;;; +;;;;;;;;FRS70PHERICOURTEUROP;FRTCBP00700;Albertville, Parking Place du Théatre;;73 Corniche Du Cros 83140 Six-Fours-les-Plages;;[5.08223, 44.3298];;FRFR1EMMKZ2;XMVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.00383028;45.3936;;;; +;;;;;;;;FRS70PVILLERSEXEL;FRTCBP00814;Saint-Baldoph, Terraillet 1;;Place Gleb Sivirine 83630 Les Salles-sur-Verdon;;[5.450919, 44.616002];;FRFR1EQPZG1;AMYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.607645;45.5346056;;;; +;;;;;;;;FRS70PVNXAGJ;FRTCBP00935;Saint-Alban-Leysse, Rte de Barby, Square de Leysse;;Rue Marc et Yvonne BARON 83000 Toulon;;[4.983865, 45.050388];;FRFR1EYEDM2;TNVH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.362579;45.310644;;;; +;;;;;;;;FRS70PSAULXGDSPUITS;FRTCBP00805;Saint-Pierre-D'Albigny, Gare;;Place de la Victoire 83590 Gonfaron;;[5.96026, 45.57204];;FRFR1EYGXB2;BTMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.85669;45.674127;;;; +;;;;;;;;FRS70PGRAYMAVIA;FRSAEPLAG;La Motte Servolex, Borne parking SDES, 1 rue de la petite eau;;Place Des Oursinières 83220 Le Pradet;;[6.117952, 45.458288];;FRFR1EMYPR2;WHFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.070816;45.013227;;;; +;;;;;;;;FRS70PFRESNECARREFOUR;FRSAEPJBO;Saint-Alban-Leysse, Place du commerce;;Rue de la planque 83390 Puget-Ville;;[5.901328, 45.583496];;FRFR1EKSVF2;GBFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.90845;45.4203;;;; +;;;;;;;;FRS70PPLANCHERMARCEL;FRS61P61497A;Ruffieux, Ruffieux, ZA de Saumont;;Quai St Pierre 83140 Six-Fours-les-Plages;;[5.971748, 45.545721];;FRFR1EKXVZ1;GPAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.42419;45.536575;;;; +;;;;;;;;FRS70PLUREINTER;FRIPKNGTH;Les Marches, Passage du 19 mars 1962;;Vieux chemin d'HYERES 83260 LA CRAU;;[5.904766, 45.578371];;FRFR1EDYMQ2;GBFL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.75416;45.5589;;;; +;;;;;;;;FRS70PCOMBEAU15JUIN;FRIPKPHDV;Le Chatelard, En face ex siège social CC BAUGES;;Chemin du Beal 83200 Le Revest-les-Eaux;;[5.936632, 45.565976];;FRFR1EMAJQ2;GPAN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.476562;45.5539001;;;; +;;;;;;;;FRS70PVESOULFAURE;FRIPKPMLJ;Le Bourget-Du-Lac, House Boat, allée Lac de Garde;;quai de la marine 83500 LA SEYNE SUR MER;;[5.924012, 45.588643];;FRFR1EMAJQ1;BTMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.598293;45.587038;;;; +;;;;;;;;FRS70PNWMJTK;FRIPKPCDM;Chambery, 658 Avenue de Lyon Hôpital;;Avenue Ambroise THOMAS 83400 Hyeres;;[5.873377, 45.640928];;FRFR1EKWFH2;BQER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.513731;45.639335;;;; +;;;;;;;;FRS70PGRAY;FRIPKNRME;Chambery, Rue de la République Manège;;Traverse de la Badine 83400 Hyeres;;[5.977494, 45.572016];;FRFR1EQPZG2;DYPW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.248005;45.3394;;;; +;;;;;;;;FRS70PPATTYH;FRIPKPPAJ;Gresy-Sur-Aix, Grésy sur Aix, Rue du commerce;;Avenue des Sources 83000 Toulon;;[5.02737, 44.9355];;FRFR1EWQKS2;BQER2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.63757;45.094943;;;; +;;;;;;;;FRS70PEYOQWAPMBZ;FRTCBP01334;Francin, Alpespace, Pyramide;;Rue Antoine BONNET 83000 Toulon;;[5.973817, 45.568758];;FRFR1EBQXM1;EDVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.702787;44.90066;;;; +;;;;;;;;FRS70PQI8FOZJERH;FRTCBP01313;La Ravoire, Place des fées;;Rue Henri Poincaré 83000 TOULON;;[5.868361, 45.644002];;FRFR1EBNTB1;DYPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.5698368;45.443313;;;; +;;;;;;;;FRS70PDORRYWA2NF;FRTCBP01253;La Motte-Servolex, Rue des Allobroges;;Avenue du Lieutenand Jean TOUCAS 83260 La Crau;;[5.875138, 45.639726];;FRFR1EBQDW1;BMZK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.744811;44.81704;;;; +;;;;;;;;FRS70PSL7L7X7UFK;FRTCBP01005;Entrelacs, Entrelacs, Pce JM Montillet;;817 Littoral Frédéric Mistral 83000 Toulon;;[4.93832, 44.8003];;FRFR1EQBPW1;BMZK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.588077;45.485728;;;; +;;;;;;;;FRS70PCMIXYEGR9U;FRTCBP01110;Chambery, Rue d'Anjou;;Avenue Du Cap Nègre 83140 Six-Fours-les-Plages;;[4.921365, 45.018041];;FRFR1EBQEV1;YMTZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.1450261;45.349774;;;; +;;;;;;;;FRS70PRQEQVHLYFO;FRTCBP01006;Cognin, Rue de la Poterie;;Rue Jean NATTE 83260 La Crau;;[4.820926, 45.119321];;FRFR1EBNBW1;YMTZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.06389;45.428405;;;; +;;;;;;;;FRS70PYVHJEWG2DD;FRTCBP01329;Chambery, Ecoris Rue de Chantabord;;Rue Chalucet 83000 Toulon;;[4.760774, 44.532597];;FRFR1EBKMY1;APRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.03424;45.100607;;;; +;;;;;;;;FRS70PGYMAIRIE;FRTCBP01004;Mery, Agrion, Rue Maurice Herzog Savoie Hexapole;;Parking Rond point de l'Europe 83340 Le Luc;;[4.83665, 45.0711];;FRFR1EBKCA1;MWWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.29093;45.2958;;;; +;;;;;;;;FRS70PHERICOURTBERE;FRTCBP01003;Lescheraines, Place des Cantalous;;Parking Jean Monnet 83136 Gareoult;;[4.790972, 44.33132];;FRFR1EWQKS1;TNVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.24054;44.970991;;;; +;;;;;;;;FRS70PLUXEUILMAI;FRTCBP01400;Montmelian, avenue de Savoie;;4 Avenue des Marthes 83830 Figanieres;;[4.763941, 44.345787];;FRFR1EMYPR1;WHFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.6381;45.3500388;;;; +;;;;;;;;FRS70PMK1AHL8ZA7;FRTCBP01609;Valence, Place Herriot;;Chemin De La Guinguette 83390 Cuers;;[4.769987, 44.347337];;FRFR1ESMGF1;WFTJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.54047;44.960441;;;; +;;;;;;;;FRS70PMELISEYGARE;FRIPKPFRA;Alixan, Aire de Bayanne;;Avenue Mal De Lattre De Tassigny 83390 Cuers;;[5.401908, 44.712392];;FRFR1ENLVZ1;WFTJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.86115;45.368226;;;; +;;;;;;;;FRFR1PTIVE2CNYCX;FRTCBP01002;Le Bourget-Du-Lac, Sud 2, Rue mer Caspienne;;Avenue Rene Cassin 83440 Fayence;;[5.372968, 44.751122];;FRFR1EKPUY1;WGPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.31921;45.6165465;;;; +;;;;;;;;FRFR1PMYYLOA44OQ;FRIPKPPSI;Le Bourget-Du-Lac, Allée lac d'Aiguebellette;;Parking Le Collet 83570 Entrecasteaux;;[4.886768, 45.272129];;FRFR1ERVQP1;NTCZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.59367;45.6309;;;; +;;;;;;;;FRFR1PTPWWYVYVMM;FRTCBP01000;Le Bourget-Du-Lac, Rue des Ecoles;;10 Rue Du 8 Mai 1945 83510 Lorgues;;[5.367919, 44.75614];;FRFR1ERVPC2;MMCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2770589;45.0555;;;; +;;;;;;;;FRFR1PF9HUXNS8SF;FRTCBP00999;Le Bourget-Du-Lac, Boulevard du lac;;Rue De La Mairie 83680 La Garde-Freinet;;[4.85676, 44.36141];;FRFR1ERVQP2;UAWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.067759;45.4559;;;; +;;;;;;;;FRFR1PXFMCZX;FRIPKPVPM;Romans-Sur-Isere, Place Jules Nadi;;Parking Rue Du Four 83310 La Mole;;[4.813139, 45.295163];;FRFR1ERTAN2;XFPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.155459;45.59485;;;; +;;;;;;;;FRFR1PXPV9T9CG13;FRIPKPPTE;Challes-Les-Eaux, Rue du Dr Rochefrette Pkg. Poste;;Avenue Pierre Gaudin 83340 Les Mayons;;[4.747654, 44.549544];;FRFR1ERVPC1;QMAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.97673;44.7888;;;; +;;;;;;;;FRFR1PKG7R2ZWEFC;FRIPKPCTV;Vinsobres, Route de Nyons;;Place Victor Hugo 83250 La Londe-Les-Maures;;[4.744417, 44.556301];;FRFR1ERTAN1;QMAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.071512;45.6267;;;; +;;;;;;;;FRFR1PESPSCBXVJ3;FRIPKPPRA;Luc-En-Diois, Parking des Bains;;Boulevard Des Acacias 83980 Le Lavandou;;[5.274113, 44.273155];;FRFR1ERTAN3;NPZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0664465;44.8644;;;; +;;;;;;;;FRFR1PL6FBP3FUUF;FRIPKPPWA;Granges-Les-Beaumont, Rue du Tram;;Pont de Maurice 83590 Gonfaron;;[5.190152, 44.23775];;FRFR1EBTGA2;NPZG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0747703;45.1552;;;; +;;;;;;;;FRFR1PTDNK46PZBA;FRIPKPPPM;La Ravoire, Barillettes-parc, Rue Louis Pasteur;;Rue Des Poilus 83250 La Londe-Les-Maures;;[4.9333, 44.5448];;FRFR1EBTGA1;AXTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.06897568;45.3633;;;; +;;;;;;;;FRFR1PLOMAGNEHOPI;FRTCBP01167;La Rochette, Rue du 8 mai 1945;;Boulevard De Lattre Tassigny 83980 Le Lavandou;;[5.277503, 44.277843];;FRFR1EMHAW1;ZZDF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.08614;45.010306;;;; +;;;;;;;;FRFR1PWPBREMU4YX;FRTCBP01169;Chambery, Le Phare Bissy;;Parking Gymnase J.Troin 83130 La Garde;;[4.756491, 44.556028];;FRFR1ENFQY1;QXJM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0672642;45.5937983;;;; +;;;;;;;;FRS70PQFLQSK;FRTCBP01168;Challes-Les-Eaux, Massettes 1;;1-6 Rue des Cantons 83390 Puget-Ville;;[4.751107, 44.561668];;FRFR1EKWFH1;QXJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0631344;45.09145;;;; +;;;;;;;;FRS70PPESMEMARCHE;FRTCBP01166;Chambery, Avenue des Follaz, Fontanettes;;Parking de la Respelide 83570 Carces;;[4.872588, 44.642778];;FRFR1EKVEV1;AXTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.812742;45.613229;;;; +;;;;;;;;FRS70PFROTEYLESVESL;FRTCBP01165;Chambery, Piscine Chambery 29 Rue Henri Oreiller;;Avenue De La Mairie 83790 Pignans;;[4.703235, 44.376507];;FRFR1EWVHE1;ZZDF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.16856;45.3424;;;; +;;;;;;;;FRS70PMARNAYCHAUFF;FRTCBP01001;Chambery, Cote Rousse, rue du genevois;;Impasse Des Romarins 83910 Pourrieres;;[4.781791, 44.649576];;FRFR1EKSVF1;WGPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.83469;46.045819;;;; +;;;;;;;;FRS70PDAMPIERMAIRIE;FRIPKPGRI;Le Bourget-Du-Lac, Sud 1, rue mer Caspienne;;Rue Gustave Aubert 83470 Pourcieux;;[4.88637, 44.944521];;FRFR1ELEXM1;WGFN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.276082;46.0285599;;;; +;;;;;;;;FRS70PFAUCOGNEYMER;FRIPKPNEM;Barby, Parking avenue des Salins;;108 Rue Charles Gounod 83220 Le Pradet;;[4.93998, 44.8613];;FRFR1EKXVZ2;WGFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.76984;46.0414962;;;; +;;;;;;;;FRS70PFAVERNEYDRUAIS;FRSAEPPDA;Montelier, Parking co-voiturage;;Rue Paulin David 83220 Le Pradet;;[5.07845, 44.9669];;FRFR1EYEDM1;HZYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.26696;46.07763561;;;; +;;;;;;;;FRS70PVAIVRETMONTO;FRTCBP00753;Barby, Epinettes Avenue Paul Chevalier;;Chemin de Brignoles 83670 Ponteves;;[4.89511442, 44.93115343];;FRFR1EAMPN1;GAWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.33732;46.025338;;;; +;;;;;;;;FRS70PVRUSJX;FRTCBP00702;Le Bourget-Du-Lac, Horloge, rue du Lac Majeur;;2 Avenue Léon Blum 83390 Pierrefeu-Du-Var;;[5.02580276, 44.72066204];;FRFR1EMMKZ1;WUPD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.80409;46.0330277;;;; +;;;;;;;;FRS70PROMCHAMP14UIL;FRTCBP00703;Le Bourget-Du-Lac, Hélios, avenue du Lac Léman;;Place Lemoyne 83190 Ollioules;;[5.13266647, 44.36218458];;FRFR1EKSNM1;GKQJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.22137;46.0376702;;;; +;;;;;;;;FRS70PJUSSEYFOIRE;FRTCBP00705;Montoison, Route de Valence;;2 Rue Dr Edmond Mercier 83390 Pierrefeu-Du-Var;;[4.75091764, 44.56067532];;FRFR1EDYMQ1;GULQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.19798;45.221615;;;; +;;;;;;;;FRS70PPORTSURSAONE;FRTCBP00707;Beaumont-Monteux, Place De La Mairie;;Boulevard Du Huit Mai 1945 83350 Ramatuelle;;[4.89067, 44.8405];;FRFR1EYGXB1;ASEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.622193;45.7503;;;; +;;;;;;;;FRS70PSKHFUU;FRTCBP00708;Erôme, 66 Rue des Maisons Neuves;;Place de la Mairie 83600 Les Adrets-De-L'Esterel;;[5.0923, 45.0034];;FRFR1EBMKL1;PCJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.16758;45.473;;;; +;;;;;;;;FRS32PQDBEGF;FRTCBP00724;Montelimar, Chemin De Ravaly;;Avenue Franklin Roosevelt 83560 Rians;;[5.37037, 44.8955];;FRFR1EBMJL1;DZRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.881739;45.58996;;;; +;;;;;;;;FRS32POLNVAYQDOR;FRTCBP00726;Tain-L'Hermitage, Place Taurobole;;8 Boulevard Georges Clemenceau 83111 Ampus;;[5.06121, 45.0304];;FRFR1ERUEK2;NVBT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.80239;45.3191;;;; +;;;;;;;;FRS32PJSVRYT;FRTCBP00727;Saint-Restitut, Parking des Cornettes;;Place De La Mairie 83630 Aiguines;;[5.02596, 44.9741];;FRFR1EMQSB2;NVBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.319735;45.3291;;;; +;;;;;;;;FRFR1PMKXKYJ22DI;FRTCBP00839;Saint-Paul-Trois-Châteaux, Espace Gare;;Rue du Lavoir Neuf 83560 Rians;;[5.01835, 44.8993];;FRFR1EAJNY2;GKQJ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.05698;45.8525;;;; +;;;;;;;;FRFR1PYXBALB;FRTCBP00774;Saint-Paul-Trois-Châteaux, Parking Chaussy;;Rue Jubert 83480 Puget-Sur-Argens;;[4.88401, 44.8756];;FRFR1EFLSX1;GKQJ4;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.26067;45.3499;;;; +;;;;;;;;FRFR1PEJISQ1M00E;FRTCBP00802;Aix-En-Diois, Parking face Mairie;;Rue Gabriel Peri 83480 Puget-Sur-Argens;;[5.41656, 44.9687];;FRFR1EMNFT1;GKQJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.12667;45.7563;;;; +;;;;;;;;FRFR1PE2J6I5CRAL;FRTCBP00809;Die, 1347 Boulevard du Maréchal Leclerc;;01-03 Boulevard de la République 83260 La Crau;;[4.92192, 44.86594];;FRFR1EAGDP2;EQDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.77447;45.7681;;;; +;;;;;;;;FRFR1PMS24BWDH9Z;FRTCBP00699;Anneyron, Place du Gymnase;;48 Avenue du 8 mai 1945 83340 Le Cannet-Des-Maures;;[5.0225, 44.8715];;FRFR1EMQBG2;VDTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.00648;44.826436;;;; +;;;;;;;;FRFR1PCSYLN7MJO0;FRTCBP00627;Die, Avenue Sadi Carnot;;Boulevard De La Marine 83400 Hyères;;[5.05141, 45.0423];;FRFR1EFLSX2;FVCJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.14015;45.6793;;;; +;;;;;;;;FRFR1PVSSVCNY8HH;FRTCBP00650;Montsegur-Sur-Lauzon, Avenue Saint Jean;;Parking La Farandole 83136 Forcalqueiret;;[4.87871, 44.874];;FRFR1EAGTD1;NAYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.24647;45.283485;;;; +;;;;;;;;FRFR1PJVDXH7QTI9;FRTCBP00689;Saint-Rambert-D'Albon, Rue Neuve;;Rue Du Revest 83140 Six-Fours-les-Plages;;[4.799586, 44.541316];;FRFR1EAGDP1;AVBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0308339;45.3621;;;; +;;;;;;;;FRFR1PLA2MZRBDKK;FRTCBP00690;Montelimar, Parking Saint James;;Rue De Saint-Mandrier 83140 Six-Fours-les-Plages;;[4.97910139, 44.4428751];;FRFR1EMPQW1;DLES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.737686;45.68719;;;; +;;;;;;;;FRFR1PFNL0YUZD9U;FRTCBP00691;Montelimar, Palais des Congrès;;Avenue de l'Europe 83400 Hyères;;[5.085042, 45.080627];;FRFR1EMQBG1;BDCR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.815538;45.3391;;;; +;;;;;;;;FRFR1PKBQ9A4IX7P;FRTCBP00694;Buis-Les-Baronnies, Parking Digue Sud;;Parking Jean Moulin 83136 Rocbaron;;[4.82037, 44.51525];;FRFR1EMPQW2;AXQJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.803005;45.3918;;;; +;;;;;;;;FRFR1PLDEBFXD6F6;FRTCBP00695;Mollans-Sur-Ouvèze, Place du Monument aux Morts;;Parking Square des Bains 83140 Six-Fours-Les-Plages;;[4.71889, 44.486352];;FRFR1EMQSB1;AMMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.856414;45.3964;;;; +;;;;;;;;FRFR1PPRXH55YOEF;FRTCBP00696;La Begude-De-Mazenc, Parking de la Poste;;Avenue de l'Europe 83140 Six-Fours-Les-Plages;;[4.930583, 44.285472];;FRFR1EAVUA1;EQDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.829775;45.4409;;;; +;;;;;;;;FRFR1PZN2DDHBYGZ;FRTCBP00697;Buis-Les-Baronnies, Allée des Platanes;;Place Gabriel Peri 83400 Hyères;;[5.70697, 44.666304];;FRFR1EMNKN1;CTSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.564157;45.4975;;;; +;;;;;;;;FRFR1PBQNSBIB36O;FRTCBP00698;Montelimar, Parking Square Nicolas;;Rue De La Liberation 83320 Carqueiranne;;[4.828305, 44.24526];;FRFR1EMQXB1;RMMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.752153;45.7252;;;; +;;;;;;;;FRFR1PWSHTHJSG61;FRTCBP00621;Montélimar, Rond-Point Charles Trenet;;Notre Dame 83610 Collobrieres;;[4.838851, 44.288371];;FRFR1EMQXB2;VDYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.87483;45.0527698;;;; +;;;;;;;;FRFR1PN7CMCZKXED;FRTCBP01199;Marsanne, Avenue René Chartron;;Avenue Colonel Fabien 83660 Carnoules;;[4.866178, 44.337725];;FRFR1EMNVH1;WAYZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.55164676;45.390089;;;; +;;;;;;;;FRFR1PX0KAYOBXRZ;FRTCBP01198;Pierrelatte, Place Sogno;;Chemin Des Frayeres 83830 Callas;;[4.69954, 44.377282];;FRFR1EAGTD2;WLMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.5271472;45.341601;;;; +;;;;;;;;FRFR1PK9AVBWZHUY;FRTCBP00915;La Coucourde, Parking Freydier N7;;3 Rue Bruneck Brunico 83170 Brignoles;;[4.698986, 44.372311];;FRFR1EMNKN2;WHZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.630496;45.226977;;;; +;;;;;;;;FRFR1PE2YEK1N0HS;FRTCBP01299;Bourg-Les-Valence,Parking du Théâtre le Rhône;;7 Cours de la Liberte 83170 Brignoles;;[5.09518, 44.8994];;FRFR1EAJNY1;WYKG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.22312;45.029217;;;; +;;;;;;;;FRFR1PI1BMCT7WYC;FRTCBP01302;Beaumont-Lès-Valence, Parking du Centre;;105-142 Avenue Henri Jansoulin 83740 La Cadiere-D'Azur;;[4.96484, 44.9165];;FRFR1EMUDE3;WGQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.820972;45.144034;;;; +;;;;;;;;FRFR1PJYBDYJJ4TC;FRTCBP00916;Besayes, Parking du Prieuré;;21-22 Rue Jules Ferry 83340 Cabasse;;[5.03997, 45.0169];;FRFR1EMUDE2;WGQV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.286122;45.328211;;;; +;;;;;;;;FRFR1PS1JONUHSPU;FRTCBP00989;Valence, Place Jean Collombet;;Avenue De La Fontenouille 83840 Comps-Sur-Artuby;;[5.05117, 45.0395];;FRFR1EMPKA1;WVKT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.30582;45.433729;;;; +;;;;;;;;FRFR1PLAN1EK83QC;FRTCBP00991;Crest, Aire Multimodale de Saint Ferreol;;02 Place du Maréchal De Lattre Tassigny 83260 La Crau;;[5.583329, 45.129631];;FRFR1EMNYM2;WVKT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.8611931;45.11147;;;; +;;;;;;;;FRFR1PCJYWF7AUNG;FRTCBP01185;Nyons, Coopérative du Nyonsais;;Avenue de Rome 83500 La-Seyne-Sur-Mer;;[5.544305, 45.173596];;FRFR1EMPKA2;FCQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.21895;45.07208481;;;; +;;;;;;;;FRFR1PE95FKFHLMJ;FRTCBP00601;Montelimar, Place Bouverie;;621 rue Ferraillon 83570 Cotignac;;[5.587042, 45.366279];;FRFR1EMNFT2;APRF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.36198;45.0326389;;;; +;;;;;;;;FRFR1PC7QSS7UZXI;FRTCBP00356;Etoile-Sur-Rhône, Parking des Gabions;;Chemin De Sainte Croix 83610 Collobrieres;;[5.08628, 45.6679];;FRFR1EMNVH2;EJNF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.24093;45.170753;;;; +;;;;;;;;FRFR1PUJGU41XRPM;FRTCBP00123;Chatuzange-Le-Goubet, 9 Rue du Mont du Matin;;3054 Route des Sources 83330 Le Castellet;;[6.076071, 45.392746];;FRFR1EAGEG2;GKMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.67848;45.54915;;;; +;;;;;;;;FRFR1PVNWWAFPBW9;FRTCBP00124;Vassieux-En-Vercors, Place des Martyrs;;Avenue Jean Jaures 83320 Carqueiranne;;[5.636785, 45.455873];;FRFR1ERUEK1;GRWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.404874;45.241288;;;; +;;;;;;;;FRFR1PBQZ44DT842;FRTCBP00125;Bourg-De-Peage, Espace François Mitterrand;;Saint-Eloi 83300 Chateaudouble;;[5.5761418, 44.9751199];;FRFR1EAVUA2;ZVVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.77067;45.55948;;;; +;;;;;;;;FRFR1PSOEDIIY83S;FRTCBP00355;Alixan, Parc Colombet;;Rue De La Republique 83170 La Celle;;[5.99027, 45.371901];;FRFR1EKSVL1;CTSM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.01665;45.557352;;;; +;;;;;;;;FRFR1PI9Q4QKTKIG;FRTCBP00357;Chabeuil, Rue des Ecoles;;Place de la Gare 05120 L'Argentière-La-Bessee;;[5.4705944, 45.6513139];;FRFR1EKSBL2;APRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.255442;45.21769;;;; +;;;;;;;;FRFR1PPHETZJE3DT;FRTCBP00386;Portes-Lès-Valence, Parking Train Théâtre;;La Joue du Loup 05250 Devoluy;;[6.020297, 45.432277];;FRFR1EKSBL1;DZAF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.4828056;45.621;;;; +;;;;;;;;FRFR1PMLAZLGVW42;FRTCBP00371;La Chapelle-En-Vercors, Rue Champ Morand;;Parking des Ecoles 05230 Chorges;;[5.992505, 45.2996611];;FRFR1EKSVL2;DZAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.8679;45.3908;;;; +;;;;;;;;FRFR1PQURNW8BWEM;FRTCBP00382;Monteleger, Parc Forêt d'Orient;;Hôtel Les Glaciers 05220 Le Monêtier-Les-Bains;;[5.6337565, 44.9155285];;FRFR1EJDNB2;AJQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.932438;45.258479;;;; +;;;;;;;;FRFR1PZ0CNZYBUQL;FRTCBP00384;Montvendre, Le Pré du Bost;;Route de Grenoble 05220 Le Monêtier-Les-Bains;;[5.420295, 45.39962];;FRFR1EJDNB1;AZZE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.888787;44.757898;;;; +;;;;;;;;FRFR1PBAHAHGV1PV;FRTCBP00120;Romans-Sur-Isère, Place Sabaton;;Place de la Mairie 05230 La Batie-Neuve;;[5.3891472, 45.4907722];;FRFR1EJDHJ1;AFBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.964939;45.81437;;;; +;;;;;;;;FRFR1PPHXLM9QQUG;FRTCBP00387;Portes-Lès-Valence, 9 Rue Emile Zola;;Le Laux 05290 Puy-Saint-Vincent;;[5.476072, 45.385062];;FRFR1EJDHH1;LRMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.775626;45.4387;;;; +;;;;;;;;FRFR1PF0NR8K9NFG;FRTCBP00529;Montboucher-Sur-Jabron, Pkg Golf de la Valdaine;;Parking Veragne 05300 Laragne-Monteglin;;[5.343487, 45.0595127];;FRFR1EJDHH2;SVWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.902;45.6128;;;; +;;;;;;;;FRFR1PCLKIBX2TKQ;FRTCBP00475;Taulignan, Place du 11 Novembre;;Place de la Fontaine 05300 Ribiers;;[5.56859, 44.902538];;FRFR1EJDPJ1;MUUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.538613;45.555121;;;; +;;;;;;;;FRFR1PFIXHIOIBDN;FRTCBP00513;Génissieux, Place du Marché;;Pelvoux 05290 Vallouise;;[5.671319, 44.907212];;FRFR1EJDHJ2;KBDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.527525;45.2955083;;;; +;;;;;;;;FRFR1PDHBBNU;FRTCBP00528;Espeluche, Rue Raymond Grosset;;Place du Groupe Scolaire 05260 Ancelle;;[5.410519, 45.207744];;FRFR1EJDPJ2;REGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.03748;45.270236;;;; +;;;;;;;;FRFR1PRMDZXYQQKA;FRTCBP00530;Châteauneuf-Du-Rhône, Parking De La Piscine;;Parking Haute Plaine 05260 Chabottes;;[5.412653, 45.170807];;FRFR1EXSNM1;FFMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.398483;45.252998;;;; +;;;;;;;;FRFR1PC7JGYCFWRS;FRTCBP00568;Tulette, Avenue de Provence;;Parking de la Poste 05260 Saint-Jean-Saint-Nicolas;;[5.27874, 45.59071];;FRFR1EGVBX1;YSHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.41652;45.238327;;;; +;;;;;;;;FRFR1PLOG48IHQH0;FRTCBP00427;Lus-La-Croix-Haute, Parking de la Poste;;Stade - Champs de Mars 05200 Embrun;;[4.9175, 45.5281];;FRFR1ENVRG1;YGHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.218808;45.271113;;;; +;;;;;;;;FRFR1PA6NNCC3AAE;FRTCBP00389;Rochegude, avenue du Comtat Venaissin;;Place Amédée Turel 05190 Espinasses;;[5.01369, 45.5054];;FRFR1ENVRG2;HAGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.326985;45.020777;;;; +;;;;;;;;FRFR1PLLIWW36VL49NY2;FRTCBP00390;Suze-La-Rousse, 621 Avenue Des Côtes Du Rhône;;Merlette - Casse Blanche 05170 Orcières;;[5.25441, 45.759];;FRFR1EFGMM1;WWEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.778528;45.0906;;;; +;;;;;;;;FRFR1PUGEM4LBMME;FRTCBP00392;La Baume-De-Transit, Place Du Tricastin;;Espace de la Roche 05200 Embrun;;[4.91129, 45.5053];;FRFR1ECBND2;AMBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.503642;45.279523;;;; +;;;;;;;;FRFR1PTFQU7A1NFU;FRTCBP00396;Pierrelatte, Avenue Jean-Perrin;;Parking Horizon 05200 Les Orres;;[6.06444, 45.09059];;FRFR1ECBND1;WMLG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.4431;45.1274889;;;; +;;;;;;;;FRFR1PMXFE5YVCKF;FRTCBP00415;Pierrelatte, Rue Charcot;;Superdevoluy - Parking Lilas 05250 Devoluy;;[5.439585, 45.223157];;FRFR1EVQWN2;LKBF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.853393;45.127339;;;; +;;;;;;;;FRFR1PXVXRIKKVWZ;FRTCBP00425;Châteaudouble, Place de l'église;;Place du Grand Logis 05230 Chorges;;[5.523008, 45.543217];;FRFR1EVQWN1;UQTG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.504107;45.5444;;;; +;;;;;;;;FRFR1PWYZVCJ7RTY;FRTCBP00426;Chabeuil, Aéroport - Unamed Road;;Office de Tourisme 05600 Risoul;;[5.1867, 45.73356];;FRFR1EKPUY4;ZYTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.976983;45.581692;;;; +;;;;;;;;FRFR1PNDOJ4662KH;FRS28E137294;Bourg-De-Peage, Complexe aquatique Diabolo;;Voie Communale 2 05310 La Roche-De-Rame;;[5.34407, 45.3407];;FRFR1EBKKU2;ZMFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.947731;45.174304;;;; +;;;;;;;;FRFR1PFO6DYAVEZA;FRS28E139678;Bourg-De-Peage, Place de la Mairie;;Rue Marius Meyer 05700 Serres;;[5.16562, 45.3936];;FRFR1EBKKU1;ZVDK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.048525;45.117174;;;; +;;;;;;;;FRFR1PJ17WV9RWME;FRS28E139679;Lans-En-Vercors, Voie du Tram;;Parking UCPA 05700 Orpierre;;[5.6714725, 45.5346056];;FRFR1EWZUJ3;ZPYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.077811;44.95151;;;; +;;;;;;;;FRFR1PU1DFZSVSVG;FRS28E137373;Autrans, Parking Voie du 6 Fevrier 1968;;Rue de la Fontloube 05600 Guillestre;;[5.887383, 45.310644];;FRFR1EMEGD1;ZMRY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.06886;45.350166;;;; +;;;;;;;;FRFR1PZ6FDZYEANJ;FRS28E137374;Voiron, Rue Claude Guillermoz;;Parking Beauregard 05350 Saint-Veran;;[5.47326, 45.674127];;FRFR1EMWTE1;TGMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.18387;45.562975;;;; +;;;;;;;;FRFR1PLLI8V0FNI2LL61;FRS28E137368;Grenay, Chemin De La Croze;;Le Coolidge 05330 Saint-Chaffrey;;[6.12483, 45.013227];;FRFR1EMJPX1;KTGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.79927;45.415628;;;; +;;;;;;;;FRFR1PQOS8EYYCTL;FRS28E137295;Allevard, Rue De La Republique;;Clot la Chalpe 05350 Molines-En-Queyras;;[4.90136, 45.4203];;FRFR1EMEPD1;KSSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.11627;45.609835;;;; +;;;;;;;;FRFR1PS7OUF5KWNV;FRS28E137316;Saint-Geoire-En-Valdaine, Place André Chaize;;Parking Mairie- Château neuf de chabre 05300 Val Buech-Meouge;;[5.585147, 45.536575];;FRFR1EMEPD2;KTFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.29221;44.8587405;;;; +;;;;;;;;FRFR1PWGU09TC7OO;FRS28E137317;Château-Bernard, Parking de l'Eglise;;Champ de Foire 05600 GUILLESTRE;;[4.84452, 45.5589];;FRFR1EMJVD1;LQDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.68414;44.817169;;;; +;;;;;;;;FRFR1PRTZPPN1BPO;FRS28E137367;Le Cheylas, Rue du Stade;;Place des Lavandes 05300 Laragne-Monteglin;;[5.00383028, 45.5539001];;FRFR1EMEVA1;LETV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.94514;45.376141;;;; +;;;;;;;;FRFR1PAGOI4WEQ4K;EVB-P1941188;Vezeronce-Curtin, Parking Place Clodomir;;Place de la Bascule 05300 Le Poët;;[5.607645, 45.587038];;FRFR1EMWTE3;LAMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.238784;45.056067;;;; +;;;;;;;;FRFR1PSXIAVCPQMS;01FHDM6WJ5MKS65JRPYB48K6BD;Pontcharra, Parking Mairie;;Chemin du Plan d Eau 05200 Embrun;;[5.362579, 45.639335];;FRFR1EMJPX2;LPKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.81235;45.08731;;;; +;;;;;;;;FRFR1PUUGQOG3Q0H;01FHFE4GDH2FH23D14SJJB8XKG;Theys, Parking RD 2558;;Esplanade de la Resistance 05200 Embrun;;[4.85669, 45.3394];;FRFR1EMJVD2;GXVH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.7499732;45.6147;;;; +;;;;;;;;FRFR1PFRESNESCERIS;01FHQK32DYB4KYY5Z3B0C21JGH;Monestier-De-Clermont, Grande Rue;;Camping Municipal 05150 Rosans;;[6.070816, 45.094943];;FRFR1EMEVA2;LNHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09219;44.98706;;;; +;;;;;;;;FRFR1PRHNENTGU8Q;ckuifu8qa0000jhpfd4kmpf72;Le Grand-Lemps, Parking de la Médiatheque;;Office de Tourisme 05560 Vars;;[5.90845, 44.90066];;FRFR1EWZUJ1;GXVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.34313;45.11508;;;; +;;;;;;;;FRFR1PJNNF0FAFIC;cl667tzrr31386098qo29vpvb0n;Biol, parking chemin de l usine;;Place du 19 Mars 1962 05700 L'Epine;;[5.42419, 45.443313];;FRFR1EGRZY1;KZUW3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.784201;46.5176;;;; +;;;;;;;;FRFR1PPAR6SVC8CT;67b1865c-14bb-11ec-82a8-0242ac130003;Colombe, ZA Bievre Dauphine;;Immeuble Les Glaciers 05800 La Chapelle-En-Valgaudemar;;[5.75416, 44.81704];;FRFR1EWZUJ2;LFHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5085;44.1987;;;; +;;;;;;;;FRFR1PFWNUUR;EVB-P1941191;Pont En Royans, Impasse du Vivier;;Parking sous la poste 05800 Saint-Firmin;;[5.476562, 45.485728];;FRFR1EYFKB1;LWZQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.805136;44.090763;;;; +;;;;;;;;FRFR1PN4CQ41LAFG;01FEG2Q7790MKZPGT58T8G1KD8;Gresse-En-Vercors, Parking Public - RD8A;;Gendarmerie 05500 Saint-Bonnet-En-Champsaur;;[5.598293, 45.349774];;FRFR1EYFKB2;LMFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.7837;43.9489;;;; +;;;;;;;;FRFR1PYEVZGBQW8O;01FEK79E4NNDZAPESGBYSYPZ7J;Treffort, Parking Mairie - RD 59;;Place Waldems 05500 Saint-Bonnet-En-Champsaur;;[5.513731, 45.428405];;FRFR1EZBZV2;LVML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.796637;43.8109723;;;; +;;;;;;;;FRFR1PYIQW3O95EW;167730c5-b7ef-48d4-b39c-9337bfece636;Vinay, Avenue de la Gare;;Les Claux 05560 Vars;;[5.248005, 45.100607];;FRFR1EGTGC1;KZUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.78056;43.8167;;;; +;;;;;;;;FRFR1PKCALTA6R9C;62570df4-ab8b-11ed-afa1-0242ac120002;Cognin-Les-Gorges, Place de L'Eglise;;Maison du Tourisme 05600 Saint-Clement-Sur-Durance;;[5.63757, 45.2958];;FRFR1EGTGC2;KZUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.858366;43.7805;;;; +;;;;;;;;FRFR1PYQUK3HWUQM;ed2da8f2-b28e-11ed-afa1-0242ac120002;Bourgoin Jallieu, Place du champ de Mars;;Le Fort 05600 Mont-Dauphin;;[5.702787, 44.970991];;FRFR1EGTMY2;LCQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.992738;43.835102;;;; +;;;;;;;;FRFR1PJYQST9D00N;747a4ee8-b28d-11ed-afa1-0242ac120002;Pont Eveque, Rue Louis Leydier;;Route du Col d'Izoard 05100 Cervières;;[5.5698368, 45.3500388];;FRFR1EGRYF1;KTED1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.230547;43.9672;;;; +;;;;;;;;FRFR1PLJS7NW956Z;4daae94a-c7db-11ed-afa1-0242ac120002;Moidieu-Detourbe, Mouterle;;Parking l Enclare 05100 Val-Des-Pres;;[5.744811, 44.960441];;FRFR1EGTMY1;HHHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.13566;43.829352;;;; +;;;;;;;;FRFR1PPGHLVV2XSS;4d3a0cb6-c7db-11ed-afa1-0242ac120002;Leyrieu, Place du 8 Mai 1945;;Office de Tourisme 05140 Aspres-Sur-Buëch;;[5.588077, 45.368226];;FRFR1EGRYF2;APBP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.54716;43.83019;;;; +;;;;;;;;FRFR1PGJ2TZ198MT;64117dc4-cf8e-11ed-afa1-0242ac120002;Jardin, Route De Berardier;;Parking Coccimarket 05140 Aspremont;;[5.1450261, 45.6165465];;FRFR1EZBZV1;APBP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.680762;43.83;;;; +;;;;;;;;FRFR1PB3IBLOQRWG;34e85270-ea64-11ed-a05b-0242ac120003;Huez, Quartier Vieil Alpe;;Aire du Beauchêne 05140 Saint-Julien-En-Beauchêne;;[5.06389, 45.6309];;FRFR1EMWTE2;LFXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.98638;43.83339;;;; +;;;;;;;;FRFR1PRKIXOAPMW8;a0a9bb0e-4199-11ec-81d3-0242ac130003;L'Albenc, Place Jean Vinay;;Parking de la Poste 05170 Orcières;;[6.03424, 45.0555];;FRFR1EMTBA2;RCWT3;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.66765;44.266426;;;; +;;;;;;;;FRFR1PXWHJ7GPLUQ;47bbb1da-a79f-42b8-bc43-4d9a05039fb1;Saint-André-Le-Gaz, Parking - Rue Paul Langevin;;Rue du Stade 05160 Savines-Le-Lac;;[5.29093, 45.4559];;FRFR1EMTBA1;BMQB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.62843;44.074343;;;; +;;;;;;;;FRFR1PARF6FRWSZ6;01FENA6FWRWNN3X1EHFBAQ53ZG;Tigneu Jameyzieu, Place de Mairie;;La Station 05160 Reallon;;[5.24054, 45.59485];;FRFR1EMTBA3;NQZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5692;44.09287;;;; +;;;;;;;;FRFR1PJDCSTE;01FEXVKTTEMPX67SNSGRWXERZA;Saint-Etienne-De-Saint-Geoirs, Place 19 Mars;;Pra Vesqua 05200 Crevoux;;[5.6381, 44.7888];;FRFR1ESWAD1;BMQB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.717422;44.0327;;;; +;;;;;;;;FRFR1PRJEPQK;VRT_003416;Faramans, Parking Place Rue Centrale;;Route de Chalvet 05200 Embrun;;[5.54047, 45.6267];;FRFR1ECSKP1;YNTC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.23938;44.0824;;;; +;;;;;;;;FRFR1PGX0S6HFHSI;VRT_003415;Le Pont-De-Beauvoisin, Avenue Docteur Pravaz;;Parking Bois Means 05200 Les Orres;;[5.86115, 44.8644];;FRFR1EEMEX1;YNTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.35781;44.374162;;;; +;;;;;;;;FRFR1PGSIMII44WZ;VRT_003417;Saint-Hilaire-Du-Touvet, Route des 3 Villages;;Rue Marcel Pagnol 83160 La Valette Du Var;;[5.31921, 45.1552];;FRFR1EEMNQ1;RCWT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.890822;43.8365;;;; +;;;;;;;;FRFR1PI6PHLSC2S6;VRT_003418;Morestel, Rue Clos Giraud;;place du 4 septembre 83000 TOULON;;[5.59367, 45.3633];;FRFR1EEMNQ2;RCWT4;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.88646;44.0379;;;; +;;;;;;;;FRFR1PJIVUAO3AA0;01FF28B6WNPQGFRVWMT6FVVV9V;Les Deux Alpes, Rue De La Muzelle;;Route de Marseille 83000 TOULON;;[6.12483, 45.010306];;FRFR1EJMVC1;RCWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.735105;44.290693;;;; +;;;;;;;;FRFR1PHR010KHJWD;01FEJX4YZEHDSET14TRKNSJJ2C;Vernioz, Place Jean Plantier;;Place Sadi Carnot, Avenue de Valbourdin 83000 Toulon;;[5.2770589, 45.5937983];;FRFR1EJZGX1;YAUT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.918223;43.909233;;;; +;;;;;;;;FRFR1PUR6Z3WPAH1;01FB4PZ8WF60XF3FXH7C4M33S9;Les Abrets, Rue Clément Gondrand;;Rue de Bouillibaye 83140 SIX-FOURS;;[6.067759, 45.09145];;FRFR1EJNXZ1;RPCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.626622;44.094728;;;; +;;;;;;;;FRS32PQWTCYQ;WUV7HSEG7Z;Seyssuel, Rue Du Château Picard;;Le Peychier 5100 Montgenevre;;[5.155459, 45.613229];;FRFR1EJKMD1;HDWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.765247;44.3521;;;; +;;;;;;;;FRFR1PLGT1LJMVAS;XNTOYCDUUU;Septème, Route De La Pivollée;;passage de la Corderie 83000 TOULON;;[5.97673, 45.3424];;FRFR1ETCZJ1;FFTG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12718;43.927252;;;; +;;;;;;;;FRFR1PFLPKSQ;HHI7NXS2BU;Aoste, Place Blanc Jolicoeur;;Rond-Point des Orres 05200 Baratier;;[4.071512, 46.045819];;FRFR1ELSUT1;RUXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.60693;43.7569;;;; +;;;;;;;;FRFR1PTFABMXZF7B;HLIQFU7MBL;Saint-Chef, Chemin du Ruisseau;;La Gare 05230 Chorges;;[4.0664465, 46.0285599];;FRFR1ENWCX1;SFHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.02821;44.419531;;;; +;;;;;;;;FRFR1POMMSBZGWY6;FT9RYLHLGP;Agnin, Place Publique;;ZA sous la Roche 05800 Saint-Firmin;;[4.0747703, 46.0414962];;FRFR1EWMNV1;WRUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.60302;43.917451;;;; +;;;;;;;;FRFR1PUK3CJTWPKE;DRERGYFIWV;Huez, Avenue du Rif Nel;;La Gandiere 05110 La Saulce;;[4.06897568, 46.07763561];;FRFR1EWMNV2;RZAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.038995;44.241315;;;; +;;;;;;;;FRFR1PCPBDRSCXA3;VJR4KERRP4;Valbonnais, Rue Principale;;Rue Marius Meyere 05700 Serres;;[4.08614, 46.025338];;FRFR1ESWTR2;RJRQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3296;43.786687;;;; +;;;;;;;;FRFR1PLCOPFREFDC;DZI9RFFUXV;Châbons, Rue de la Poste;;Avenue Aristide Briand 83000 TOULON;;[4.0672642, 46.0330277];;FRFR1ESWTR3;RKGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1959;43.8627;;;; +;;;;;;;;FRFR1PBTTYQJ;XPWLH9URLF;Mens, Chemin Pré Colombon;;Parking du Port 83320 CARQUEIRANNE;;[4.0631344, 46.0376702];;FRFR1ESWTR1;NQZV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.41637;44.171957;;;; +;;;;;;;;FRFR1PDUSESMVQ5L;JKA3JEAMYP;Virieu, Rue de la Barbeniere;;Rue des Frères Lumières 83130 La Garde;;[5.812742, 45.221615];;FRFR1EPBEC1;QFBR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32408;44.3425;;;; +;;;;;;;;FRFR1PGR5HJDH3RQ;RHLBTLPSI5;Coublevie, Impasse Des Genets;;Pk Bld André Bouis 83920 LA MOTTE;;[5.16856, 45.7503];;FRFR1EPQVW1;QFBR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.15186;44.3699;;;; +;;;;;;;;FRFR1PDKZZCS;HCVY8ZZGX8;Charavines, Place Du Marche;;Parking de la Poste Avenue Jean Jaurès 83130 La Garde;;[4.83469, 45.473];;FRFR1EEDKC1;WGRL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.009624;43.698242;;;; +;;;;;;;;FRFR1PJCSDDF6LY8;SJORIJEACH;Saint-Hilaire-Du-Rosier, Parking R21 - Le Village;;Parking Aérodrome 05130 Tallard;;[5.276082, 45.58996];;FRFR1EHGFA1;VCDY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.842387;46.56562;;;; +;;;;;;;;FRFR1PICP9SCW6WL;XEAAPBSHGL;Voreppe, Av Honoré De Balzac;;Ville Vieille 05350 Château-Ville-Vieille;;[4.76984, 45.3191];;FRFR1EYLFM1;QQMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.78116;46.10168;;;; +;;;;;;;;FRFR1PFWUWZA;KMY7EK3TVS;Monteynard, Chemin Pré Barbier;;Place Albert Pons 05400 Veynes;;[5.26696, 45.3291];;FRFR1EERKQ1;LCEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.31201;46.12908;;;; +;;;;;;;;FRFR1PQNWNPEG1Z0;YOVTZBLZ6Y;Voiron, Hotel Best Western;;Parking de l'obelisque 5100 Montgenevre;;[5.33732, 45.8525];;FRFR1EGSPP1;ZKUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.81066;46.5712;;;; +;;;;;;;;FRFR1PMZO1WROI2A;QRT5VAQ5PW;La Motte-D'Aveillans, Rue de l'Eglise;;Parking de l'Eglise 05350 Arvieux;;[4.80409, 45.3499];;FRFR1EGRZY2;YZVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.88641;43.7592;;;; +;;;;;;;;FRFR1PLKZWHQ;G15FUATVOZ;Voiron, Avenue Jules Ravat;;Parking Hôpital 05470 Aiguilles;;[5.22137, 45.7563];;FRFR1EAPVS2;FKDK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.515089;44.095176;;;; +;;;;;;;;FRFR1PUKQGBDK3E7;WKHCVF4ZLP;Villefontaine, 118 Avenue du Driève;;Salle Polyvalente 05320 La Grave;;[5.19798, 45.7681];;FRFR1EKPUY3;NKXF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.95677;43.876715;;;; +;;;;;;;;FRFR1PM97MI77NNA;PTMJY7PQFA;Heyrieux, Avenue du Général de Gaulle;;Parking entre les Eaux 05240 La Salle-Les-Alpes;;[5.622193, 44.826436];;FRFR1EAMCU2;NKXF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.651513;44.043;;;; +;;;;;;;;FRFR1PXDCMNUFZH1;X215JLJ2YH;Le Bourg-D'Oisans, Rue Des Colporteurs;;Parking de la Gare 05600 Eygliers;;[5.16758, 45.6793];;FRFR1EALFP1;WVSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.78727;44.3711;;;; +;;;;;;;;FRFR1PFZSOUDQLT1;KUZMMX4TIX;Champier, Route du 16 Mai 1944;;avenue du CDT Dumont 05400 Veynes;;[5.881739, 45.283485];;FRFR1EALFP2;WNHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.18529;43.9488;;;; +;;;;;;;;FRFR1PVDQGVS;P4CTJBHF9Q;Bourgoin Jallieu, Allée de l'Eden (Flunch);;Esplanade Napoléon 05500 La Fare-En-Champsaur;;[4.80239, 45.3621];;FRFR1EALMQ1;WKDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.79858;43.75702;;;; +;;;;;;;;FRS25PW3AAB7VF4D;S5JXS0NDKH;Le Monestier-Du-Percy, RD 1075;;Rue Edward Whymper 05120 L'Argentière-La-Bessee;;[5.319735, 45.68719];;FRFR1EALMQ2;WYDC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.94565;43.846434;;;; +;;;;;;;;FRFR1PYNDBGQMNFP;KOKMLXJ1C1;Les Avenières, Rue Jean Vittoz;;Place Martin Bidaure 83630 Aups;;[5.05698, 45.3391];;FRFR1EQADJ2;WEJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.43503;44.0431;;;; +;;;;;;;;FRS32PBJPTGU;UHWF1QXLIT;La Salle-En-Beaumont, RN85;;38 Rue Montagard 83230 Bormes-Les-Mimosas;;[5.26067, 45.3918];;FRFR1EATMV4;WZZJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.591744;44.38584;;;; +;;;;;;;;FRS32PWKRCQX;ONVAVTDPJC;Saint-Marcellin, Place du Champ de Mars;;Place Saint-Francois 83230 Bormes-Les-Mimosas;;[5.12667, 45.6934];;FRFR1EMMYT4;DHSJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.42441;43.83218;;;; +;;;;;;;;FRS32PSUVZHC;KDSOJBUKIE;Voiron, Avenue Francois Mitterand;;Avenue Louis Arnaud 83210 Belgentier;;[4.77447, 45.3964];;FRFR1EMMYT3;DHSJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.12818;44.0759;;;; +;;;;;;;;FRFR1PUBCPEBFYNE;EDVOP2GKDT;Les-Deux-Alpes, Place des Deux Alpes;;157 Avenue du Mail 83140 Six-Fours-Les-Plages;;[5.00648, 45.4409];;FRFR1EATMV2;WGRL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.38994;43.817;;;; +;;;;;;;;FRFR1PN8GZ5CIJWA;D5L0ETPPMV;Bourgoin Jallieu, 14 Rue Maréchal Foch;;Chemin De La Rode 83870 Signes;;[5.14015, 45.4975];;FRFR1EATMV3;RSCT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.59495;44.1913;;;; +;;;;;;;;FRFR1PE2BTI9BB2V;OMHSNRMBVM;Huez, Avenue des Jeux;;Rue Ferraillette 83870 Signes;;[5.24647, 45.7252];;FRFR1EATMV1;RNGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.70596;44.4282;;;; +;;;;;;;;FRFR1PGXS4W24ADV;ICYZM13ZT9;Villefontaine, Rue Serge Mauroit;;Square Hippolyte Cesmat 83140 Six-Fours-Les-Plages;;[6.0308339, 45.0527698];;FRFR1EGSPP2;LFXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.40901;43.855664;;;; +;;;;;;;;FRFR1PYU7PPYOYU0;TL1WGTVEO9;Goncelin, Rue de la Ventive;;Avenue de la Liberte 83210 Sollies-Pont;;[5.737686, 45.390089];;FRFR1ECASF1;LMFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.57977;44.9059;;;; +;;;;;;;;FRFR1PLUNOSLDDGN;RDFEUWJLV7;Roanne, Parking place du champ de foire;;Parking Rezzonico 83210 Sollies Pont;;[5.815538, 45.341601];;FRFR1EQADJ1;LLNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.64673;44.4053;;;; +;;;;;;;;FRS32PATYZJR;PO6ZR7Q3T0;Roanne, place Gabriel Péri;;23 rue l'Ormeau 83460 Taradeau;;[5.803005, 45.226977];;FRFR1EMMYT2;LPBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.11127;44.4063;;;; +;;;;;;;;FRS32PLLIMVWEOVKSB9K;LK4IORN6OX;Roanne, Parking avenue de Lyon;;Avenue Du Gapeau 83210 Sollies-Toucas;;[5.856414, 45.029217];;FRFR1EMMYT1;LGVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.76676;44.7351;;;; +;;;;;;;;FRS32PYAQVWC;CLMHBS;Mably, COSEC Mably;;Parking Ancienne Prison De St Roch 83000 Toulon;;[5.829775, 45.144034];;FRFR1EGYFJ1;NJSS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.97563;45.2618;;;; +;;;;;;;;FRS32PLALSSE;TWVNEL;Le Coteau, Parking rue Bousson;;208 Boulevard du 17 Aout 1944 83340 Le Thoronet;;[5.564157, 45.328211];;FRFR1EAMXD1;LDUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.781649;44.6124;;;; +;;;;;;;;FRS32PNXFKDH;RQNSQX;Roanne, Centre commercial Saint Louis;;Avenue F.Lesseps 83000 Toulon;;[5.752153, 45.433729];;FRFR1EAMMN2;LHSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.149061;44.987;;;; +;;;;;;;;FRS32PJPBEPL;JGECQF;Roanne, Parking Pierre Semard gare SNCF;;Place Du Colonel Bonnier 83000 Toulon;;[5.87483, 45.11147];;FRFR1EAMXD2;LCVP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.013327;44.3671;;;; +;;;;;;;;FRS32PTURUTF;NZAXHX;Montbonnot, Innovallée;;1475 Route de Valaury 83210 Sollies-Toucas;;[5.55164676, 45.07208481];;FRFR1EKPUY2;LGKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.764642;44.6663;;;; +;;;;;;;;FRFR1PIMOUXSVXCM;WTKHQRLVGM;Pont-De-Cheruy, 10 Rue Grammont;;Parking Du Parc Braudel 83500 La Seyne Sur Mer;;[5.5271472, 45.0326389];;FRFR1EAMMN1;SFLB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.19651;45.317;;;; +;;;;;;;;FRS25PNRDWFQ;HMQVVL;Reventin Vaugris, Parking du Gymnase;;Parking Parc Navale 83500 La Seyne Sur Mer;;[5.630496, 45.170753];;FRFR1EAPVS1;RVSE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.62872;44.03;;;; +;;;;;;;;FRFR1PDWO4IMGBLA;JMYBDN;Bourgoin Jallieu, Place Jean Jacques Rousseau;;121 Avenue General Rose 83110 Sanary-Sur-Mer;;[5.22312, 45.54915];;FRFR1EAMCU1;RAPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.601126;43.959465;;;; +;;;;;;;;FRFR1PTA2FAXN8SN;NPRXBQ;Sablons, Rue Gustave Toursier - Parking;;71 Boulevard George Clemenceau 83110 Sanary-Sur-Mer;;[5.820972, 45.241288];;FRFR1ECAQH2;VMWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.29439297;44.1495;;;; +;;;;;;;;FRS25PBESACEFS;YYVBBJ;Saint-Simeon-De-Bressieux, Rue de la Cote;;50 Corniche de la Coudouliere 83140 Six-Fours-Les-Plages;;[5.286122, 45.55948];;FRFR1EGNAT1;VAZS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.37018;44.11129;;;; +;;;;;;;;FRS25PQJANFK;DHCKIJOAXG;La Balme-Les-Grottes, Place de la Mairie;;Allee Du 15 Aout 1944 83520 Roquebrune-Sur-Argens;;[5.30582, 45.557352];;FRFR1EYLCF1;LXEH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.30695;43.93593;;;; +;;;;;;;;FRS25PBESACSTPAUL;TNY0MUAT3P;Salaise-Sur-Sanne, Place Publique;;La Falquette 1 83270 Saint-Cyr-Sur-Mer;;[5.8611931, 45.21769];;FRFR1EZNMP1;WWRZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.22201;43.9959;;;; +;;;;;;;;FRS25PBESACGRANVEL;IVVBJ8KBSM;Saint-Romain-De-Jalionas, Rue des Violettes;;Place De La Liberation 83670 Varages;;[5.21895, 45.621];;FRFR1EKXAA1;NCNN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.77988;44.18199;;;; +;;;;;;;;FRS25PBESACSTJACQ;KU7GOCOQLM;Chavanoz, Parking Route de Loyettes;;Parking ENTREE AFUZI 83130 La Garde;;[5.36198, 45.3908];;FRFR1EGUBD1;USBZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.654159;44.370105;;;; +;;;;;;;;FRFR1PYHJJOKKRAK;T80X29F55X;Clelles, Parking Place Du Moulin;;Chemin Des Aubepines 83430 Saint-Mandrier-Sur-Mer;;[5.24093, 45.258479];;FRFR1EGUBD2;JSBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.35087674;44.4571429;;;; +;;;;;;;;FRFR1PAUVTU2DO3E;WJASLMUGE9;Chamagnieu, Route de Vienne;;Boulevard Saint-Asile 83430 Saint-Mandrier-Sur-Mer;;[5.67848, 44.757898];;FRFR1EASNU1;NJSS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.396184;43.954;;;; +;;;;;;;;FRFR1PA5I8VJ3JUL;XB7KJGMX1B;Crolles, Avenue Joliot Curie;;La Falquette 2 83270 Saint-Cyr-Sur-Mer;;[5.404874, 45.81437];;FRFR1EJPCY1;LWMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.74365;44.1607;;;; +;;;;;;;;FRFR1PEG8ALQQG74;OZC3CQY0LP;Roussillon, Place de la République;;Route De Varage 83560 La Verdiere;;[4.77067, 45.4387];;FRFR1EJVXG1;LYQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.59832;43.8438;;;; +;;;;;;;;FRFR1PSCLWYD;HYERDCGEKJ;Trept, Place des Anciens Combattants AFN;;Avenue de la Libération 83170 Tourves;;[5.01665, 45.6128];;FRFR1ELHXE2;VCPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.59689;43.95895;;;; +;;;;;;;;FRFR1PMUR6AGZUL1;GHGFD1VXML;Beaurepaire, Place du Jeu de Paume;;Parking Escaillon 83000 Toulon;;[6.255442, 45.555121];;FRFR1ELHXE1;VUKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.55699;44.387667;;;; +;;;;;;;;FRFR1PVN9MGBRYJV;HTXRRAG7VZ;La Côte-Saint-Andre, Place Hector Berlioz;;D90 83840 Trigance;;[5.4828056, 45.2955083];;FRFR1ERJNW2;PWLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5904;44.41307066;;;; +;;;;;;;;FRFR1PLLI4N9U0V2FH74;RTRXS7Y6C9;Satolas Et Bonce, Parking Place De La Mairie;;Boulevard Des Murenes 83520 Roquebrune-Sur-Argens;;[5.8679, 45.270236];;FRFR1EJWKQ2;ABRG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.60561;46.127122;;;; +;;;;;;;;FRFR1PDFUDNBMUJ3;LR3Z5GMDXD;Saint-Maurice-L'Exil, Espace Marcel Noyer;;Boulevard Jean Jaures 83520 Roquebrune-Sur-Argens;;[5.932438, 45.252998];;FRFR1EJWKQ1;ABRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.53289;46.2869;;;; +;;;;;;;;FRFR1PI6ROSRNMR1;ZIUHTQE97T;Cour-Et-Buis, Place de la Croix;;Rue de la Rousse 83170 Rougiers;;[5.888787, 45.238327];;FRFR1ERJNW1;TTZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2886;46.3444;;;; +;;;;;;;;FRFR1PLLJWX7L1CMZ069;P4ZIKZMGVU;Saint-Jean-De-Bournay, Place Jean Moulin;;11 les Ferrages 83136 Sainte-Anastasie-Sur-Issole;;[5.964939, 45.271113];;FRFR1EVTQZ1;JTMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.34381;46.3511;;;; +;;;;;;;;FRFR1PLLJIKOK0H2BMCU;CLMU9GFZZA;Cremieu, Parking Rue du 19 Mars 1962;;Quartier Notre Dame 83840 La Roque-Esclapon;;[5.775626, 45.020777];;FRFR1EVTQZ2;JBZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.40415;46.3273;;;; +;;;;;;;;FRFR1PLLJWX8IC2K8Q24;SWKGDBKOKM;Le Bourg d'Oisans, Rue Capitaine Meunier;;Place Gueit 83136 La Roquebrussanne;;[5.902, 45.0906];;FRFR1EFZBE2;JCVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.43955;46.3149;;;; +;;;;;;;;FRFR1PLLJWX7Z4MYYXND;AKHOI6DR2E;Saint-Laurent-Du-Pont, PLACE DU 10E REGROUPEMENT PARKING;;Avenue Aime Carbonnel 83270 Saint-Cyr-Sur-Mer;;[5.538613, 45.279523];;FRFR1EFZBE3;JCVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.26319;46.3301;;;; +;;;;;;;;FRFR1PLLJWX736V2AAFY;XZXALUKTTA;Saint-Pierre-De-Chartreuse, Place de la Mairie;;Boulevard Ferdinand Clavel 83520 Roquebrune-Sur-Argens;;[5.527525, 45.1274889];;FRFR1EFZBE1;JBZF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.05179;46.3619;;;; +;;;;;;;;FRFR1PLLJWX6MFX20G9C;KVCB2FBNZ3;Montbonnot-Saint-Martin, Rue du Général de Gaulle;;Parking La Madrague 83270 Saint-Cyr-Sur-Mer;;[6.03748, 45.127339];;FRFR1EWZVP2;VFBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9377;46.30993;;;; +;;;;;;;;FRFR1PYSGFNL;F36WUWT4H7;La Morte, Place De La Mairie;;Place Clemenceau 83690 Salernes;;[5.398483, 45.5444];;FRFR1EEVUA1;VXAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.60975;46.54197;;;; +;;;;;;;;FRFR1PLLI2T0PJ21SQ0A;IY1C479BL4;St Martin D Uriage, Parking Avenue Des Thermes - Rd 523;;Pkg. du parc Des Lices 3 83000 Toulon;;[5.41652, 45.581692];;FRFR1EWZVP1;AAFH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.95552;46.3128;;;; +;;;;;;;;FRFR1PFVYKCQ;WM3WAO2RMZ;Moirans, Rue Mozart;;Pkg. du parc Des Lices 2 83000 Toulon;;[5.218808, 45.174304];;FRFR1EYLCF2;VCQB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.32884;46.1385;;;; +;;;;;;;;FRFR1PBKKQY5R3K6;W5KMVUFDR3;Entre Deux Guiers, Avenue du 8 mai 1945;;allée de l'armée d'Afrique 83000 TOULON;;[5.326985, 45.117174];;FRFR1EGNAT2;AAFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.60423;46.471;;;; +;;;;;;;;FRFR1PCS0IZRKH3Q;NKIJMI48IG;Chamrousse, Place des Trolles;;Chemin de Réal Vieux 83470 Saint-Maximin-La-Sainte-Baume;;[5.778528, 44.95151];;FRFR1EZPTP1;AAFH3;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0522;46.4088;;;; +;;;;;;;;FRFR1PJBWAJLPSDU;ZHGBKZ4XPO;Villard-De-Lans, Place Mure Ravaud;;93 Chemin de la Fontaine du Midi 83136 Neoules;;[5.503642, 45.350166];;FRS89ERHXE1;VXAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.36633;46.7277;;;; +;;;;;;;;FRFR1PVKVLRRWSU5;CARIVD0JDN;Corrençon-En-Vercors, Parking RD 215;;Avenue Julien Jourdan 83860 Nans-Les-Pins;;[5.4431, 45.562975];;FRFR1EHPUM1;AAMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.27081;46.3396;;;; +;;;;;;;;FRFR1PSMUJWYXIBS;J9OYDDWH7H;Saint-Nizier-Du-Moucherotte, Place du 14 Avril 1929;;Parking Le Roucas 83490 Le Muy;;[5.853393, 45.415628];;FRFR1EAAAH1;RMMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.81824;46.3171;;;; +;;;;;;;;FRFR1POOFJAHVKOS;BEXG8FSQXS;Crachier, Rue des Écoliers;;7 Avenue de Fontaine Marcellin 83136 Neoules;;[5.504107, 45.609835];;FRFR1EQDJF1;GAWY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.66512;46.5618;;;; +;;;;;;;;FRFR1PDEOKKTJKAX;IOJV93PGDX;Saint-Ismier, Chemin du Rozat;;Rue De La Rougiere 83570 Montfort-Sur-Argens;;[5.976983, 44.8587405];;FRFR1ERDZK2;NPRP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.42901;46.3414;;;; +;;;;;;;;FRFR1POB8ETW7HKF;QMCDRLTNYE;Meyrie, Rue des Grands Tournants;;Place Du Clos 83440 Montauroux;;[5.947731, 44.817169];;FRFR1EAXUP1;MFFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.85832;46.5833;;;; +;;;;;;;;FRFR1PCGRR6UGO53;HAERKHAILF;Nivolas-Vermelle, Square Du 8 Mai 1945;;Plan d'eau 4000 Digne-Les-Bains;;[6.048525, 45.376141];;FRFR1EEVVP2;NQMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4349;46.4392;;;; +;;;;;;;;FRFR1PVLVQIHN4G6;F8KFZXGKDI;Le Versoud, Rue des Deymes;;Allée de Verdun 04200 Sisteron;;[6.077811, 45.056067];;FRFR1EEMDB1;NRPU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.63455;46.1884;;;; +;;;;;;;;FRFR1PPMVU9IRAML;FLPBRFXHAM;L'Isle-D'Abeau, Avenue Henri Bergson;;Pré-la-joux 74390 Châtel;;[6.06886, 45.08731];;FRFR1EECAF1;NRPU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.36337;46.6173;;;; +;;;;;;;;FRFR1PVWCR0TPAP3;YHCKATCVZD;La Frette, Place des Déportés et Résistants;;Avenue De La République 83000 Toulon;;[5.18387, 45.6147];;FRFR1EFFJW1;NRPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.66032;46.07;;;; +;;;;;;;;FRFR1PLLJH8ANW0TM25Q;L8FMQOSKS4;Roybon, Place Jean Perraud;;ZAC Saint Martin 83400 Hyères;;[4.79927, 45.37];;FRFR1EABPT1;NRPC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.59894;46.12431;;;; +;;;;;;;;FRFR1PTULYZ5QK8S;FW8JB0GBVB;Lalley, Route de Mens;;Allées Alfred Viviens 83150 Bandol;;[6.11627, 44.98706];;FRFR1ELVCV1;NQMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.42184;46.3964;;;; +;;;;;;;;FRFR1PWNIBH3CHGH;OYKRAJWUI5;Montalieu-Vercieu, Rue du Besset;;Rue Max Bruchet 74000 Annecy;;[4.29221, 45.11508];;FRFR1EUFGN2;NSHF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.35443;46.1247;;;; +;;;;;;;;FRFR1PQVONONBFDE;JWSJQ6RNHM;Saint-Clair-Du-Rhône, Plc Charles de Gaulle;;Allée Anita Conti 83500 La Sey sur Mer;;[3.68414, 46.5176];;FRFR1ELQCT1;NPRP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.62275452;46.1667;;;; +;;;;;;;;FRFR1PL1DBJXVP6P;GIB8D1B3ML;Valencin, Route du 16 Mai 1944;;Route de Faramaz 74520 Vulbens;;[5.94514, 44.1987];;FRFR1ELGTH1;MHFK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0728184;46.5535;;;; +;;;;;;;;FRFR1PIOXGW7EMIU;QH3MXFSZJA;Bourgneuf, pont d’aiton;;Rue Poste 74120 Megève;;[6.238784, 44.090763];;FRFR1ELBCU1;NRSP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.61675;46.2883;;;; +;;;;;;;;FRFR1PRNDADH3NG0;I8CSUBSTQY;Tullins, Parking Place Jean Jaures;;61 Route De L'église 74140 Massongy;;[6.81235, 43.9489];;FRFR1EMAAY1;NRSP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.426512;46.3386;;;; +;;;;;;;;FRFR1PSYZW93FWG5;DZTEO5VMC9;Bernin, Place des Droits de l'Homme;;Rue du bois ternay 42660 Saint-Genest-Malifaux;;[5.7499732, 43.8109723];;FRFR1ELVTA1;NSHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.96364;46.1217;;;; +;;;;;;;;FRFR1PWBFROMXNDZ;PFDSQONRUW;Laval, Parkinng de la mairie - RD 59;;Avenue Méditerranée 83400 Hyère;;[6.09219, 43.8167];;FRFR1EGYAH2;NPWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.478734;46.5653;;;; +;;;;;;;;FRFR1PTK3O6QSGPC;HV3YYVD9CQ;Villard-Bonnot, Place de l'Espace Aragon;;Boulevard Lachèze 42147 Montbrison;;[6.34313, 43.7805];;FRFR1EGYAH1;NPWA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.45557;44.88128484;;;; +;;;;;;;;FRFR1PCA9CCNHNBW;MSU1UWQGZE;Les Adrets, Parking salle polyvalente;;Boulevard DESAIX 83000 Toulon;;[5.784201, 43.835102];;FRFR1EWSMT1;NQCE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.41922;46.0344539;;;; +;;;;;;;;FRFR1PQKJMLF9CKH;PVZ0P4QBGB;Laffrey, Camping Grandes Sagnes;;Parking Salengro 42300 Roanne;;[6.5085, 43.9672];;FRFR1EUFGN1;GLPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.43013;46.3457;;;; +;;;;;;;;FRFR1PQJ5GYSMHHX;CDVYRNUDQ1;Livet-Et-Gavet, Rue P. Saras;;Place Marius CHAMPAGNE 83200 Toulon;;[5.805136, 43.829352];;FRFR1EHDXW2;NQAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.42649;46.130601;;;; +;;;;;;;;FRFR1PVEVCZWWHW9;QKKIKZK3ZD;Saint-Quentin-Sur-Isère, Route du Sud;;Parking Gare SNCF 83500 La Seyne Sur Mer;;[5.7837, 43.83019];;FRFR1EYTFL2;MHFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.41621;46.468;;;; +;;;;;;;;FRFR1PUB39VOTDAV;O2ILRGMRRA;Meaudre, Place Gérard Clet;;Toulon, Parking Fosse à Bois 83000 Toulon;;[5.796637, 43.83];;FRFR1ELLDW1;MHHR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.60412;46.37378;;;; +;;;;;;;;FRFR1PWULLAX36A5;WXHZWTA5ER;Allemond, Chemin Des Ecoliers;;Allée Rouvière Sainte Musse 83000 Toulon;;[5.78056, 43.83339];;FRFR1EPYUJ1;USKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3335;46.1327;;;; +;;;;;;;;FRFR1PVAWKTLVRWO;H5N3BW8X1L;Saint-Victor-De-Cessieu, Parking RD 51;;Résidence Le Rayolet 83140 Six-Fours-Les-Plages;;[5.858366, 44.266426];;FRFR1EPYUJ2;MFYK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.08009;46.1225;;;; +;;;;;;;;FRFR1PBALHQJMGSA;CANHER;Rochetoirin, Square du 19 Mars 1962;;Place du 19 Mars 1962 43120 Monistrol sur Loire;;[5.992738, 44.074343];;FRFR1EAEYF2;MGNB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.40917;46.1272;;;; +;;;;;;;;FRFR1PKQ9R7VJ1CG;FBYQDSUWIU;Saint-Antoine-L'Abbaye, Parking du Bourg;;Place Emile Loubet 26198 Montelimar;;[6.230547, 44.09287];;FRFR1EAEYF1;MGRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.33517;46.1252;;;; +;;;;;;;;FRFR1PAGLFNH;FRD1O42B4X;Saint-Romans, Carrefour Des 4 Routes;;Place championnet 26000 Valence;;[6.13566, 44.0327];;FRFR1EAFEV1;MGCA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.43213;46.1332;;;; +;;;;;;;;FRFR1POAZ5L2OFUL;YXWYDYAZRR;Pierre-Châtel, Place des Anciens Combattants AFN;;Promenade de la Digue Ouest 1260 Nyon;;[5.54716, 44.0824];;FRFR1EAFLD2;MGCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.40602;46.3478;;;; +;;;;;;;;FRS80PBEAUCAMPSEGL;DWG6IHEU7O;Rives, Place De La Liberation;;Place Champanne 43100 Brioude;;[6.680762, 44.374162];;FRFR1EAFEV2;MFRD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4438;46.571;;;; +;;;;;;;;FRLE2PGN7DXMH144;QYCADMQWOA;La Tour-Du-Pin, Place du Champ de Mars;;Boulevard Carnot 43000 Puy-En-Velay (Le);;[5.98638, 43.8365];;FRFR1EAFLD1;MFRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.12541;46.1985;;;; +;;;;;;;;FRLE2PUNE1XEQJFU;OMXZZQL6TV;Saint-Pierre-D'Entremont, Place du Bourg;;7 Rue Pierre Favre 73100 Aix-les-Bains;;[6.66765, 43.9654];;FRFR1ELLXB1;MFFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3274;46.1171;;;; +;;;;;;;;FRLE2PRCNKO7ZKC7;CY2ZODO2QU;Dolomieu, Rue du Stade;;Parking du Tampinet 4000 Digne-Les-Bains;;[5.62843, 44.0379];;FRFR1EHDXW1;MGNB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.58477;46.5676;;;; +;;;;;;;;FRLE2PSZ5LMBLQWL;WL5XZNI7WZ;La Salette-Fallavaux, Parking du Sanctuaire;;Chemin Marcel Provence 04135 Moustiers-Sainte-Marie;;[6.5692, 44.290693];;FRFR1ELPMZ2;MFYK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.43331;46.4653;;;; +;;;;;;;;FRLE2PAQAS4AR37L;WDLJPIX1QR;Corps, Parking RN 85;;Avenue Victoria 73100 Aix-les-Bains;;[5.717422, 43.909233];;FRFR1ELPMZ1;MGRD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.51176;46.1215;;;; +;;;;;;;;FRLE2PYLDCBBAVTS;GXXHNQ5HXX;Crets-En-Belledonne, St Pierre d'Allevard;;Plage de Villerest 42300 Villerest;;[6.23938, 44.094728];;FRFR1ELLXB2;MHBA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.61178;46.0992;;;; +;;;;;;;;FRLE2PGABMQWRAIZ;L26DHUKX0L;Auris, Place des Orgières;;Avenue de la santé 38416 Saint-Marcellin;;[6.35781, 44.3521];;FRFR1ELLDW2;MHBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.29217;46.4799;;;; +;;;;;;;;FRLE2PQFEYWXCVA1;KQBUJVHM6Y;Huez, L'éclose;;Rue Célestin Linder 1873-1951 42780 Violay;;[5.890822, 43.927252];;FRFR1EMJDG1;MHHR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.36124;46.5668;;;; +;;;;;;;;FRLE2PSYTNVNRXVA;FA3KQKMH2K;Vaulx-Milieu, Parking Gymnase Rue des Ecoles;;Place du 8 Mai 1945 38080 L’Isle-D’Abeau;;[5.88646, 43.7569];;FRFR1EMATE1;MESN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.83132;46.3787;;;; +;;;;;;;;FRLE2PAVEKYZHJ5W;C4QMLCCH2R;Le Peage-De-Roussillon, Rue de la République;;Parking des jeux 38750 Huez;;[6.735105, 44.419531];;FRFR1ETXVG1;MEUS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.69498;46.2018;;;; +;;;;;;;;FRLE2PKZERYWQHLC;ZSP1FHHFPM;Les Deux Alpes, Office de Tourisme de Venosc;;Parking St Michel Sud, 43 Bd St Michel 38300 Bourgoin Jallieu;;[5.918223, 43.917451];;FRFR1ECHLL1;MEUS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.96782;46.2593;;;; +;;;;;;;;FRLE2PDZPQJFHGIZ;Y4YC7FBRZQ;Tence, Parking du Fieu;;Parking Medicis. 23 ,Avenue d'Italie 38300 Bourgoin Jallieu;;[6.626622, 44.241315];;FRFR1EKLAS2;MEHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3389;46.2463;;;; +;;;;;;;;FRLE2PLLJMKO2YP5BIF6;MRFEJQ1ZVF;Dompierre-sur-Besbre, Percières;;Parking Salle Jean Bouchard 73240 Saint Genix les Villages;;[5.765247, 43.786687];;FRFR1EWSMT2;MEHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1982;46.3067;;;; +;;;;;;;;FRLE2PFPVIHBM6KU;OH9QA6KXPK;Sisteron, Place du Dauphiné;;Place Clémenceau 83690 Toulon;;[6.12718, 43.8627];;FRFR1EKLAS1;NPVN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.15781;46.5062;;;; +;;;;;;;;FRLE2PLCYZMPMIOE;OM98B5NCGU;Digne-Les-Bains, Avenue Bad Merghenteim;;Parking Collège Bosco Chemin du Buchet 83160 Le Val;;[5.60693, 44.171957];;FRFR1EDCVC2;NSPG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.79649;46.474;;;; +;;;;;;;;FRLE2PICFNBQATMH;YYBZKF;Entrevaux, Parking de La gare;;Rue des Jardins 83630 Bauduen;;[6.02821, 44.3425];;FRFR1EPDBY1;NSLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.42969;46.7056;;;; +;;;;;;;;FRFR1PHV7UHB3KKC;WOQTPMJD7R;Pierrevert, Place des Ferrages;;Rue Des Bailes 83840 La Bastide;;[6.60302, 44.3699];;FRFR1EKFXC1;MELS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.59224;46.3251;;;; +;;;;;;;;FRLE2PCK6TYRZRSZ;PH6VWTTSVI;Riez, Boulevard de Narwick;;4 Rue de la Fontaine Neuve 83330 Le Beausset;;[6.038995, 43.698242];;FRFR1ECQKV1;PAAX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.08854;46.5633;;;; +;;;;;;;;FRLE2PCVPTFRAEJ5;FQCR2BEGJF;La Palud-Sur-Verdon, Le Vignaou;;Rue Antoine Simoni 83330 Le Beausset;;[3.3296, 46.56562];;FRFR1ECQKV2;PBLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.55099;46.1023;;;; +;;;;;;;;FRLE2PHKXDNK2J5W;CLFAVQ;Manosque, Boulevard les Tilleuls;;133 Boulevard du Rayol 83600 Bagnols-En-Foret;;[3.1959, 46.10168];;FRFR1ECQKV3;FMVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.64484;46.2407;;;; +;;;;;;;;FRLE2PNCNAZHKRLA;QIYDUPSLD7;Saint-Andre-Les-Alpes, Place de Verdun;;3 Rue Du Stade 83330 Le Beausset;;[3.41637, 46.12908];;FRFR1EXQEG1;PJAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.45461;46.3502;;;; +;;;;;;;;FRLE2PVRAPXJYUMM;DBA0BNH7EP;Manosque, Avenue du Dr Bernard Foussier;;4 Montée de derrière le Château 83600 Bagnols-En-Foret;;[3.32408, 46.5712];;FRFR1EMVVL1;PJAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.31194;46.1548;;;; +;;;;;;;;FRFR1PMNZELUZI7A;BAWG4VXXRC;Manosque, Parc du souvenir français Pkg Drouille;;Parking Du Château 83840 Bargeme;;[6.15186, 43.7592];;FRFR1EDCVC1;PFTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.19333;46.3816;;;; +;;;;;;;;FRFR1PRT1WHVS374;IL2LVDJOZC;Manosque, Bas Saint Sépulcre;;3 Allée Alfred Vivien 83150 Bandol;;[6.009624, 44.095176];;FRFR1EFYLM1;MENB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.46515;46.1169;;;; +;;;;;;;;FRFR1PTNM3OXB3T1;GJHDGEW1RW;Manosque, Parking Guilhempierre;;09 Avenue Maréchal Foch 83170 Brignoles;;[5.842387, 43.876715];;FRFR1EHMUC1;PGFE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.60819;46.6098;;;; +;;;;;;;;FRFR1PEJ0APYSPRG;DOTZDZMFFW;Mison, Les Armands;;01 Rue du portail Neuf 83170 Brignoles;;[5.78116, 44.043];;FRFR1EKRAF1;MENB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.30928;46.2505;;;; +;;;;;;;;FRFR1PLLIIF9G1T2E4ZZ;P4BGHJXHOT;Chateau-Arnoux-Saint-Auban, Rue Adrien Badin;;15 Rue Petit Paradis 83170 Brignoles;;[6.31201, 44.3711];;FRFR1EHHGG2;NSLL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.35146;46.1344;;;; +;;;;;;;;FRLE2PCYGBUJHGBQ;EBYI5NPO9K;Digne-Les-Bains, Gare Routière;;29 Rue de la République 83170 Brignoles;;[6.81066, 43.9488];;FRFR1EHHGG1;PGFE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3136;46.1086;;;; +;;;;;;;;FRLE2PMA9BCHTCYB;LOGXNLQR1V;Le Chaffaut-Saint-Jurson, Lycée Carmejane;;D252 83840 Le Bourguet;;[5.88641, 43.75702];;FRFR1ELMYF1;MELS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.54074;46.5335;;;; +;;;;;;;;FRLE2PXGXZ9LPBQY;BIAIJUVWY6;Revest-Du-Bion, Avenue de Miravail;;Sentier des Pêcheurs 83230 Bormes-Les-Mimosas;;[6.515089, 43.846434];;FRFR1EHHGG3;PFTT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.03682;46.0671;;;; +;;;;;;;;FRLE2PRE6ZKCKSUU;AVUGAR5K1V;Enchastrayes, Le Sauze;;Parking St elme Rue Georges Lahaye 83500 Six-Fours;;[5.95677, 44.0431];;FRFR1EHHGG4;NQAU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.23258;46.5343;;;; +;;;;;;;;FRLE2PBBNL2YXVNI;HLDZRB6LRZ;Valensole, Parking Salle Polyvalente;;Pkg. de la Mairie Place de la Libération 83143 Toulon;;[6.651513, 44.38584];;FRFR1EYTJR2;NUAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.90828;46.5868;;;; +;;;;;;;;FRLE2PG3CWYWKLKX;E6Y7M7AMVB;Annot, Place du Germe;;Rue Marcelin Berthelot 83130 Afuzy-La Garde;;[5.78727, 43.83218];;FRFR1EYTJR1;NUAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.84579;44.808;;;; +;;;;;;;;FRLE2PT9THS0ZXQQ;ZVTPWBGVUT;Banon, Place de La république;;Parking des Bleuets Avenue Jules Ferry 83130 La Garde;;[6.18529, 44.0759];;FRFR1EYYTQ1;PGVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.69669;45.34064;;;; +;;;;;;;;FRLE2PM4TBD6CVLX;URHEE05T5G;Allos, La Foux d'Allos;;Pkg. du Stade rte de Draguignan 83131 Montferrat;;[5.79858, 43.817];;FRFR1ERSNQ1;PGVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8506602;45.15616;;;; +;;;;;;;;FRLE2PLLJR8Z3PDHQEH0;VGOBDGLPKS;Saint-Michel-L'Observatoire, Pkg De La Mairie;;Parking espace 3000 83400 Hyères;;[5.94565, 44.1913];;FRFR1EBARJ1;NWUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.71035;45.20158;;;; +;;;;;;;;FRLE2PXF6G40NMKY;S2X4SQRIWM;Digne-Les-Bains, Place Joseph Fontaine;;Parking du Collége Rue Louis Meric 83260 La Crau;;[6.43503, 44.4282];;FRFR1EBARJ2;PBLV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.90733;45.24424;;;; +;;;;;;;;FRLE2PO3TJBYM5LC;IOEFVEOSYD;Seyne, Saint Pierre;;Parking Versin 83400 Hyères;;[5.591744, 43.855664];;FRFR1EHHQV1;PGXS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.29389;45.18615;;;; +;;;;;;;;FRLE2PYLUVTVJOGE;Z4C1VGM0DH;La Brillanne, Place Bon Accueil;;Mairie 83160 La Valette;;[4.42441, 44.9059];;FRFR1EQBXW1;PHBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.27371;45.33199;;;; +;;;;;;;;FRLE2PUX2IS8EDAX;VPY490SRSN;Greoux-Les-Bains, Parking Ecociné Verdon;;Pkg des Playes Rue Président Kennedy 83140 Salernes;;[4.12818, 44.4053];;FRFR1EQEDX1;NQCE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.89164;45.31652;;;; +;;;;;;;;FRLE2PJTNVJKIPME;FQCHFMZVJL;Jausiers, Place d'Arnaud Ville;;Plages Du Mourillon Entrée Ouest 1-1 83000 Toulon;;[4.38994, 44.4063];;FRFR1EJEWJ1;GLWP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.94333;45.33388671;;;; +;;;;;;;;FRFR1PAEFATBNYGL;HT6OIBP1HQ;Oraison, Parking de La Mairie;;Complexe Sportif Léo Lagrange 83000 Toulon;;[4.59495, 44.7351];;FRFR1EJHAX1;GLPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.43568;45.19631;;;; +;;;;;;;;FRLE2PJ9YFZ96UNZ;FDJN70AGER;Allos, Parking La Ville;;Plages Du Mourillon 4Ème Anse 1 83000 Toulon;;[4.70596, 45.2618];;FRFR1ENJRW1;MESN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.87728;45.12107;;;; +;;;;;;;;FRLE2PY6GYO7OHI0;PCPZSNAJOW;Sainte-Tulle, Place du Théatre;;Piscine Du Pin D'Alep 83000 Toulon;;[4.40901, 44.6124];;FRFR1EMGJQ1;PGMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.31931;45.16762;;;; +;;;;;;;;FRLE2PXPTGCMDV0U;R8XY0SZE9U;Puimoisson, Rue Hoche;;Pkg. Centre, place Jean Moulin 83200 La Valette Du Var;;[4.57977, 44.987];;FRFR1EMJFB1;PGMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.96790901;45.30199;;;; +;;;;;;;;FRLE2PPGRUBML7KD;CUG99GGOWF;Les Omergues, Entrée du village;;Parking Chateauvert 83250 La Londe-Les-Maures;;[4.64673, 44.3671];;FRFR1EMFEN1;GLGE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.91745792;45.04276;;;; +;;;;;;;;FRLE2PS9CNIAGWFB;UTSMAL;La Motte-Du-Caire, Le Village;;Parking Place Maréchal Leclerc 83260 La Crau;;[4.11127, 44.6663];;FRFR1EMKTM1;GLGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.12381;44.99135;;;; +;;;;;;;;FRLE2PR82R4YH1ZS;NGKNNY;Uvernet-Fours, Pra Loup;;La Condamine 83570 Correns;;[4.76676, 45.317];;FRFR1EATZZ2;NYQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.549119;45.1428;;;; +;;;;;;;;FRLE2PHUD0LV94TU;LWXQSAKCCJ;Quinson, Grand Parking;;Parking Espace Des Arts 83220 Le Pradet;;[5.97563, 44.03];;FRFR1EATZZ1;FPWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.48785;45.04768;;;; +;;;;;;;;FRLE2PKAHQKZVTML;SURFS8ZTGN;Moulins, Rue Pierre Ardillon;;Parking Des Lices 1 83000 Toulon;;[5.781649, 43.959465];;FRFR1EATZZ4;FMQQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.902205;45.40492;;;; +;;;;;;;;FRLE2PVRYGY9TY8G;LIEIZRQF8F;Gannat, Place Rantian 2;;13 Place des Pêcheurs - les salins d'hyères 83400 Hyères;;[6.149061, 44.1495];;FRFR1EATZZ3;NYQD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.38137544;45.0379469;;;; +;;;;;;;;FRLE2PTXZL7KODSA;UKTMEQNRXJ;Vichy, Boulevard Maréchal de Lattre de Tassigny;;147 chemin de la Glacière 83470 Saint-Maximin-La-Sainte-Baume;;[6.013327, 44.11129];;FRFR1EMRFW2;DGAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.09876;44.99766512;;;; +;;;;;;;;FRLE2PWT3OVRA4UG;DXPLVE;Moulins, Hôpital;;Afuzi Pôle D'Activités De Toulon -Est, Rue La 83130 La Garde;;[5.764642, 43.93593];;FRFR1EMRFW1;NWUD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.06222;45.14355;;;; +;;;;;;;;FRLE2PBBULJZHSML;SXUCBY;Sainte-Croix-De-Verdon, Le Village;;Route d'Italie 05100 Montgenèvre;;[6.19651, 43.9959];;FRFR1EMSVU1;PAAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.883293;44.959245;;;; +;;;;;;;;FRLE2PFADPDFV1VI;MDEFSB;Chateau-Arnoux-Saint-Auban, Pl. de la Résistance;;Rue du Château - Village 05130 Tallard;;[6.62872, 44.18199];;FRFR1EADTP1;PGXS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.881278;44.86069;;;; +;;;;;;;;FRLE2PAGMLBZ12K4;XJLPEH;Volx, Parking Mairie;;Parking stade Beaulieu 42230 Roche-La-Moliere;;[6.601126, 44.370105];;FRFR1EADTP2;PHBQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.579153;45.060964;;;; +;;;;;;;;FRLE2PRXLCWHBKRY;KRPNCH;Saint-Etienne-Les-Orgues, Parking de la Poste;;Square Mozart 42300 Roanne;;[6.29439297, 44.4571429];;FRFR1EAERM2;GLWP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.97075;45.29758934;;;; +;;;;;;;;FRLE2PCITGXODUAA;GBMHGY;Selonnet, Place de La Mairie;;Parking Nauticum 42300 Roanne;;[6.37018, 43.954];;FRFR1EDYEN1;NPVN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.418393;45.257872;;;; +;;;;;;;;FRLE2PLLINATGFY10GT3;MBKYAM;Entrevaux, Parking Les Lauves;;Place de l'église 42670 Belmont De La Loire;;[6.30695, 44.1607];;FRFR1EQEMF2;JAKL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.632694;45.03316;;;; +;;;;;;;;FRLE2PD2EUNOUMJS;SGRPBU;Greoux-les-bains, Parking Ecociné Verdon;;Parking de La Berge 42300 Roanne;;[6.22201, 43.8438];;FRFR1ELLBG1;CXDL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.392542;45.031025;;;; +;;;;;;;;FRLE2PSILXS1RMLH;JLQKAG;Castellane, Parking de La Boudousque;;Faubourg St antoine 42094 Feurs;;[5.77988, 43.95895];;FRFR1ESHMN1;LRJK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.382688;45.049778;;;; +;;;;;;;;FRLE2PG7YCDUZGUS;LLZYYD;Peyruis, Rue des Oliviers;;31 Rue Diderot 42300 Roanne;;[6.654159, 44.387667];;FRFR1ESMPG1;LRJK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.341696;44.726121;;;; +;;;;;;;;FRLE2PAUUTZ5ZPWK;BRKYBY;Barcelonnette, Place Aimé Gassier;;Place François mitterand 42160 Bonson;;[6.35087674, 44.41307066];;FRFR1EQEMF1;GSYR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.06294;44.8031;;;; +;;;;;;;;FRLE2PXL2OE745FF;TZZHBY;Manosque, Parking du Riou;;Veauche 42340 Veauche;;[3.396184, 46.127122];;FRFR1EMGZH1;FXHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.397295;44.539131;;;; +;;;;;;;;FRLE2PWV21IYOQMR;K8UHYWJQHE;Digne-Les-Bains, Avenue Gutenberg;;Chemin du Crozet 42370 Haut du bourg;;[2.74365, 46.2869];;FRFR1ELVTB1;GMWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.24175;44.7145;;;; +;;;;;;;;FRLE2PB4SFETIVZ4;ZZEIEVWEMC;Manosque, Parking de Pré Combeaux;;Place de Verdun 42640 Saint-Forgeux-Lespinasse;;[2.59832, 46.3444];;FRFR1ELPZX1;GLSH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.255207;44.62086;;;; +;;;;;;;;FRLE2PC0EV8XYVBH;BIE1NOC2IO;Sisteron, Parking de La Gare;;Route d'Annecy 74330 Poisy;;[2.59689, 46.3511];;FRFR1EVJMB1;GEEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.23633;44.599646;;;; +;;;;;;;;FRLE2PZJ0HFJ186C;ZIMRJWFPJL;Le Lauzet-Ubaye, Place de La Poste;;Parking Saint Michel 74400 Chamonix;;[2.55699, 46.3273];;FRFR1EDWWX1;FXHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.835527;44.597907;;;; +;;;;;;;;FRLE2PJJVAYN6WHW;HON0JAOCCV;Cereste, Parking Les Aires;;Parking de la Gare 74225 Rumilly;;[2.5904, 46.3149];;FRFR1EVFHX1;CXDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.61752;44.8161;;;; +;;;;;;;;FRLE2PZYKZJX4FHI;VTPM86E6SG;Le Cheylard, Place de la Guinguette;;Rue de la Paix 74000 Annecy;;[2.60561, 46.3301];;FRFR1EAFTQ1;KWXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.66594299;44.626255;;;; +;;;;;;;;FRLE2PJRR1WB5NO2;IHDYYMOWSE;Les Vans, Le Bourdaric;;Route des Moulins 74300 Arâches-La-Frasse;;[2.53289, 46.3619];;FRFR1EZRVS1;NXUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.00661;44.479972;;;; +;;;;;;;;FRLE2PKGVGVFMDMV;FUVLYZNAC1;Vallon-Pont-D'Arc, Parking Néruda;;Parking du Jaillet 74120 Megève;;[3.2886, 46.30993];;FRFR1EAFUW1;NXUV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.58457;44.482199;;;; +;;;;;;;;FRLE2PTQJ9C4BJCW;HANDNASEFE;Privas, Cours Saint Louis;;Quai du Parquet 74130 Bonneville;;[3.34381, 46.54197];;FRFR1ENQRV1;FHWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.662959;44.393373;;;; +;;;;;;;;FRLE2PV7SFAZJTXG;EP9B5SQXIV;Davezieux, Aire de Covoiturage;;RD1212 74120 Megève;;[3.40415, 46.3128];;FRFR1EFBCF1;FXFJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.10358;45.0643;;;; +;;;;;;;;FRLE2PST9EIX80RW;GE3HA5PUXP;Saint-Didier-Sous-Aubenas, Place des Vignettes;;Avenue Louis Armand 74043 Bons-en-Chablais;;[3.43955, 46.1385];;FRFR1EMGTC1;FHWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.42219;45.151355;;;; +;;;;;;;;FRLE2PX6FFTH2H2I;HTGDQIHOM0;Lamastre, Place Predon;;Rue Antoine de Saint-Exupéry 74940 Annecy-le-Vieux;;[3.26319, 46.471];;FRFR1ESLFW2;FXFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.6887;45.166995;;;; +;;;;;;;;FRLE2PIVCJMMNKKB;VZZKPP;Bourg-Saint-Andeol, Place Jardin Neptune;;Boulevard Thiers 42300 Roanne;;[3.05179, 46.4088];;FRFR1EDTWE2;JMZK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.445178;44.7284;;;; +;;;;;;;;FRLE2PMCOGHNKVCW;NYDEBU;Mayres, Place du Chambon;;Route de Saint-Germain 42310 Vivans;;[2.9377, 46.7277];;FRFR1EDUWW1;JMZK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.07317;44.8214;;;; +;;;;;;;;FRLE2PFVPEOSH3BV;PNSRMA;Serrières, Quai Jules Roche Sud;;Parking rue Louis Richard 42530 Saint-Genest-Lerpt;;[2.60975, 46.3396];;FRFR1EDGCP1;XJTX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.22643;44.706977;;;; +;;;;;;;;FRLE2PGDZIWFR8Y4;XUNZRR;Les Mees, Rue de L'Hopital;;Place De Verdun 42510 Balbigny;;[2.95552, 46.3171];;FRFR1EDTWE1;ATEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.386888;44.7779;;;; +;;;;;;;;FRLE2PJAXAX0EZZT;HUNZB9FZ2G;Forcalquier, Place Notre Dame Du Bourguet;;Parking rue Marechal Leclerc 42240 Unieux;;[3.32884, 46.5618];;FRFR1EGYXW2;ATEN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.387469;44.9065;;;; +;;;;;;;;FRLE2PXARMSHHUZH;FDY5ILTA9I;Thoard, Le Village;;Parking Mairie 42230 Roche-La-Moliere;;[2.60423, 46.3414];;FRFR1EHZYX2;LQZT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.625431;44.484416;;;; +;;;;;;;;FRLE2PLC5TWHDA5O;PVTHLSH5KU;Volonne, Place Charles de Gaulles;;Parking rue de la plage 42230 Saint-Victor-Sur-Loire;;[3.0522, 46.5833];;FRFR1EMZJS1;BGEZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.629389;44.652523;;;; +;;;;;;;;FRFR1PNSOAC8FZQK;VHAMCV;Mane, Maison de Pays RN10/Clavieres;;Parking Médiathèque 42170 Saint-Just-Saint-Rambert;;[3.36633, 46.4392];;FRFR1EAEDY1;AAMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.76284;44.5323;;;; +;;;;;;;;FRS80PBOVESORENO;YHBVNIPGQG;Mezel, Parking Le Claus;;Parking le Pertuiset 42240 Unieux;;[3.27081, 46.1884];;FRFR1EMZJS2;USKR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.34412;44.7905;;;; +;;;;;;;;FRS80PZROITA;SNJTCRYXPQ;Colmars, Rue Sainte-Anne;;Parking de la glacière 42120 Le Coteau;;[2.81824, 46.6173];;FRFR1EAYQR1;BGEZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.17263;44.620794;;;; +;;;;;;;;FRS80PBOVESINDES;NKBQJ8XDAJ;Uvernet-Fours, Parking Office Du Tourisme;;D52 32563 Ambierle;;[3.66512, 46.07];;FRFR1EASNF1;BFHL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.386839;44.619624;;;; +;;;;;;;;FRS80PFORTMAHONPARIS;EMAQAISOIN;La Breole Ubaye Serre Poncon, Route de Boneis;;Parking Salle des Sports 42300 Mably;;[3.42901, 46.12431];;FRFR1EVKXB2;BDED1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.886055;44.438699;;;; +;;;;;;;;FRS80PSJSVRY;H6VUVLTMNF;Barreme, Parking PROXI;;Parc Beaulieu 42153 Riorges;;[2.85832, 46.3964];;FRFR1EVKXB1;ZMXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.849828;44.503;;;; +;;;;;;;;FRS80PLONGPRESTADE;OYFFQZBYFP;Le Brusquet, Médiathèque;;Rue des écoles 42120 Perreux;;[3.4349, 46.1247];;FRFR1ENGSZ2;ZNNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.122835;45.07478;;;; +;;;;;;;;FRS80PTEXNBQ;EDM5XZ78S5;Moustiers-Sainte-Marie, Pkg interm.;;Parking médiathèque 42530 Saint-Genest-Lerpt;;[2.63455, 46.1667];;FRFR1EVXLA2;ZZTJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.92956;45.21375;;;; +;;;;;;;;FRS80PSENARPAUM;SJCGRO59VL;Forcalquier, Espace Rompe Cuou;;Parking supérette 42240 Saint-Maurice-En-Gourgois;;[3.36337, 46.5535];;FRFR1EVXLA1;ZXRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.11404;45.31767;;;; +;;;;;;;;FRS80PABBEVITAL;UYRULM0CVA;Barcelonnette, Place Paul Reynaud;;Parking rue de la Briqueterie 42230 Roche-La-Moliere;;[2.66032, 46.2883];;FRFR1ENGSZ1;ZBVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.387615;45.294012;;;; +;;;;;;;;FRS80PBOVESFDE80;LMO4CYWQ7Z;Montclar, Parking Les Côtes De St Jean;;SAVIGNEUX 42600 Savigneux;;[2.59894, 46.3386];;FRFR1EMSTD1;WTHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8785064;45.040595;;;; +;;;;;;;;FRS80PJEGRRW;W3MF1HLOKZ;Bellerive sur Allier, Parking Aqualudique;;Parking place du souvenir 42550 Usson-En-Forez;;[3.42184, 46.1217];;FRFR1EDXAV1;WTHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.883702;44.894145;;;; +;;;;;;;;FRS80PWVTPRJ;GKE5UHODFR;Commentry, Auguste Blanqui;;Place Bouvier 42600 Montbrison;;[3.35443, 46.5653];;FRFR1EDVUY1;EYLQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.631;45.144505;;;; +;;;;;;;;FRS80PXXXBPV;GH4VMCSAZK;Montluçon, Denis Papin;;Les Jacquins 42590 Neulise;;[6.62275452, 44.88128484];;FRFR1EDVUY2;XJTX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.85666;45.0469;;;; +;;;;;;;;FRFR1PCF7MTSVDNC;JCC4MS2WXT;Montluçon, Europe;;Parking place Jacques Fougerat 42630 Regny;;[4.0728184, 46.0344539];;FRFR1EDLSK1;EYLQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.81171;45.30546;;;; +;;;;;;;;FRFR1PLLJ5RGFW83IU2L;HEQVLNPGAI;Prémilhat, Étang de Sault;;Saint Romain les Atheux 42660 Saint-Romain-Les-Atheux;;[2.61675, 46.3457];;FRFR1ESLFW1;LQZT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.05984;45.291636;;;; +;;;;;;;;FRFR1PMK1KUGXZJN;IVIDV8DXOP;Lavault-Sainte-Anne, Charité;;Marlhes 42660 Marlhes;;[3.426512, 46.130601];;FRFR1EAERM1;MJNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.17089;45.0295307;;;; +;;;;;;;;FRS80PBEEUFP;RVKMQBXTEP;Montluçon, Ilets Boris Vian;;Parking rue du 8 mai 1945 42680 Saint-Marcellin-En-Forez;;[2.96364, 46.468];;FRFR1ECYBM2;AWHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.15323;44.7698789;;;; +;;;;;;;;FRS80PPJXCC6BZCI;CYFHJJ;Domérat, Victor Hugo;;Parking place de la bouverie 42190 Charlieu;;[2.478734, 46.37378];;FRFR1EAHZK1;JAKL3;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.30415;45.093055;;;; +;;;;;;;;FRS80P58AEBBFECE386;AZPDRF;Saint Pourçain sur Sioule, Cours des Anciens combattant d'Afrique;;Parking rue de Verdun 42580 L'Etrat;;[3.45557, 46.1327];;FRFR1ERDZK1;XETZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.20076;45.06895;;;; +;;;;;;;;FRS80PBZJXPH;ELRFKZ;Yzeure, Route de Lyon - Parking des Halles;;Parking avenue thermale 42600 Montbrison;;[3.41922, 46.1225];;FRFR1EAHZK2;RRHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.515296;45.13562;;;; +;;;;;;;;FRS80PVFTYGS;MAMVPH;Varennes-sur-Allier, Mairie;;Parking rue Joseph Sanguedolce 42230 Roche-La-Moliere;;[3.43013, 46.1272];;FRFR1EAXUP2;BEPQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2569;45.09719;;;; +;;;;;;;;FRS80PKZMJLP;CMTC5TQSOW;Cusset, Gilbert Roux;;Parking espace Jean Roux 42220 Saint-Sauveur-En-Rue;;[3.42649, 46.1252];;FRFR1ERVYB2;RRFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.96914;45.2951;;;; +;;;;;;;;FRS80PWOINCOURTKLEB;NAPOVOMVVA;Besson , Mairie;;Parking place Jean Monnet 42170 Saint-Just-Saint-Rambert;;[3.41621, 46.1332];;FRFR1ERWFF2;RRHD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.366008;44.90396;;;; +;;;;;;;;FRS80PSAINSENAMIEN;XHERGSSQS7;Le Montet, Centre technique;;Parking Cimetière 74220 La Clusaz;;[2.60412, 46.3478];;FRFR1ERVYB1;RRFL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.83965;45.06124;;;; +;;;;;;;;FRS80PQUEVAUVIFET;X3OK9GZBRM;Lurcy-Levis, Comcom;;Rue François Vernex 74960 Annecy Meythet;;[3.3335, 46.571];;FRFR1ERWFF1;PRXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.41797;45.37026;;;; +;;;;;;;;FRS80PFEUQUIERESZI;QNXYMD;Montluçon, Gironde;;ZA de la Croisée 74270 Chêne-En-Semine;;[3.08009, 46.1985];;FRFR1EJUVR2;PRXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.399957;45.206547;;;; +;;;;;;;;FRS80PQXFFCP;GAXPWP;Montmarault, Boulevard Tourret;;Mairie 74370 VILLAZ;;[3.40917, 46.1171];;FRFR1EFXUD1;BEPQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.36312;44.6352;;;; +;;;;;;;;FRS80PPKNFQU;S17UEJU18E;Moulins, Achille Roche;;Parking Maison des Associations 74210 Doussard;;[3.33517, 46.5676];;FRFR1ECYBM1;XETZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.501929;44.6071;;;; +;;;;;;;;FRS80PTCSM2FPN91;Z6CIOZHDCI;Montluçon, Place Pierre Petit;;Route du Pont du Brogny 74370 Annecy Pringy;;[3.43213, 46.4653];;FRFR1EAGDJ1;ZZUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.451231;44.345122;;;; +;;;;;;;;FRS80PMBFALP;KBRRRM6IGB;Bourbon-l'Archambault, Jean Bignon;;RD 1203 74370 CHARVONNEX;;[3.40602, 46.1215];;FRFR1EAGDJ2;EKAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.856624;44.94409;;;; +;;;;;;;;FRS80PCORBIE11NOV;AGUITTXLTF;Bessay-sur-Allier, René Fallet;;Pace Arthur Lavy 74370 ARGONAY;;[3.4438, 46.0992];;FRFR1ECMRC2;EKAC3;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.674702;44.447861;;;; +;;;;;;;;FRS80PKNVSCR;XQSNJH;Brout-Vernet, Maison de santé;;Place de l'église 74410 DUINGT;;[3.12541, 46.4799];;FRFR1ECWHG1;JVEB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.291861;44.351686;;;; +;;;;;;;;FRS80PSTSAUVEUR;FT0LK4QOQ6;Cérilly, Champ de Foire - Partie Haute;;Rue de la Mairie 74300 THYEZ;;[3.3274, 46.5668];;FRFR1EJUVR1;JVCF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.670735;44.563802;;;; +;;;;;;;;FRS80PSTQUENTEGLISE;CDANYF;Le Mayet-de-Montagne, Vichy Place aux foires;;Parking du Centre Aquatique 74700 SALLANCHES;;[2.58477, 46.3787];;FRFR1ECWHG2;JVEB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.574741;44.558368;;;; +;;;;;;;;FRS80PFRESSENNETI;QJDZRN;Vichy, Place de l'Hotel de Ville;;Parking Pont de Fillinges 74250 FILLINGES;;[3.43331, 46.2018];;FRFR1ECMRC1;JVCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.598438;44.555261;;;; +;;;;;;;;FRS80PAULT11NOV1918;PJQBERSPPR;Villefranche d'Allier, Fossés;;Les Passerelles 74960 Annecy Cran-Gevrier;;[3.51176, 46.2593];;FRFR1EZLQY1;JAKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.325842;44.94513;;;; +;;;;;;;;FRFR1PTNUUY1QGPQ;PUXYSIZM6Z;Vichy, Marseille;;Parking Grepon 74400 Chamonix;;[3.61178, 46.2463];;FRFR1EZLQY2;EKAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.342456;45.244738;;;; +;;;;;;;;FRFR1PL6TZIUSYVL;MNCBAF;Marcillat-en-Combraille, Champ de foire;;Rue Dupanloup 74000 Annecy;;[3.29217, 46.3067];;FRFR1ECQDD1;RFFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.413857;44.538528;;;; +;;;;;;;;FRFR1PBRYYWZ;NV2EOLFRDB;Yzeure, Liberté;;Parking Comedie 74960 Annecy Cran-Gevrier;;[3.36124, 46.5062];;FRFR1ECQDD2;RFFG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.39753;45.241713;;;; +;;;;;;;;FRFR1PUY61K2MLMX;DDGRGVA9AS;Néris-les-Bains, Arènes;;NRO 74940 annecy-le-Vieux;;[2.83132, 46.474];;FRFR1ESZAK1;RVUB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.534039;44.720654;;;; +;;;;;;;;FRFR1PLLHU7YHXF1J6VY;UWVSZLJ2WU;Montluçon, Marx Dormoy;;Rue de la Gare 74000 Annecy;;[2.69498, 46.7056];;FRFR1ESZAK2;RVUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.254712;44.734181;;;; +;;;;;;;;FRFR1PXHCTBI3W6P;YYKO4XRXGU;Vichy, Porte de France;;Albigny 74940 Annecy-le-Vieux;;[2.96782, 46.3251];;FRFR1EANRM2;ZYBP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.623651;44.537509;;;; +;;;;;;;;FRFR1PRTRSPB;KSTK4RC9AC;Yzeure, Place Bendorf;;Parking Clavel 74800 La Roche-Sur-Foron;;[3.3389, 46.5633];;FRFR1EANRM1;ZUSJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.59005;44.453956;;;; +;;;;;;;;FRFR1PYQAMRV;GGVI7THWNN;Briançon, Rue Maréchal de Lattre de Tassigny;;Parking Fruitières 74960 Annecy Meythet;;[3.1982, 46.1023];;FRFR1EANJU2;ZBVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.598804;44.31816;;;; +;;;;;;;;FRFR1PAMBXBA;ICUCTV9PK5;Roanne, Hôtel de Ville;;Le Polyèdre - Rue du Champs de la Taillee 74600 Annecy Seynod;;[3.15781, 46.2407];;FRFR1EANJU1;ZQVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.613528;44.406231;;;; +;;;;;;;;FRFR1PASSGXF;SOFCJVBSHW;Désertines, Georges Brassens;;89 route de Cluses - Chemin du Bugnon 74130 Mont-Saxonnex;;[3.79649, 46.3502];;FRFR1EQREQ2;ZMUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.155203;45.119859;;;; +;;;;;;;;FRFR1PC1UPCJWJBM;NWPV9SOVSE;Vichy, Place Jean Epinat;;Route De Vonnes 74390 Châtel;;[3.42969, 46.1548];;FRFR1EBBSX2;ZNGJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.883509;44.298979;;;; +;;;;;;;;FRFR1PGWBBXYWGGI;UOEXIUJAXI;Buxières-les-Mines, station essence;;Route De Reignier 74930 Pers-Jussy;;[3.59224, 46.3816];;FRFR1EBCTL1;ZWFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.201782;44.735891;;;; +;;;;;;;;FRFR1PLIRJJZROMK;PJVJCPOJL2;Huriel, Pressoir;;Grande Rue 74930 Reignier-Esery;;[3.08854, 46.1169];;FRFR1EQREQ1;ZQAP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.70591;44.734135;;;; +;;;;;;;;FRFR1PB4S2UL0ROL;YA9IINLOWM;Cusset, Avenue du Drapeau;;Rue du Môle 74930 Reignier-Esery;;[3.55099, 46.6098];;FRFR1EBCTL2;ZCJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.765732;44.736443;;;; +;;;;;;;;FRFR1PGBLJBTXKT8;DBDELKZ02M;Vichy, Square Gal Leclerc;;Supermarché 74330 La Balme-De-Sillingy;;[3.64484, 46.2505];;FRFR1EQNWD1;WWFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.870804;44.30425;;;; +;;;;;;;;FRFR1PXETDNE;IQXD4XD3T3;Vichy, Gare;;Centre Nautique - Rue Jean Clerc 74600 Annecy Seynod;;[3.45461, 46.1344];;FRFR1EQNWD2;ZXQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.365731;44.366488;;;; +;;;;;;;;FRFR1PIRFUTY0EAR;JUZPMH;Vichy, Poste;;Lac 74330 La Balme-De-Sillingy;;[3.31194, 46.1086];;FRFR1EBBSX1;ZVZJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.553613;44.935071;;;; +;;;;;;;;FRFR1PIQYT3DE6ZN;HGHRMSS0WP;Vichy, Stade;;Parking des Marquisats 74000 Annecy;;[3.19333, 46.5335];;FRFR1EVDHU2;ZVZJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.358827;44.373635;;;; +;;;;;;;;FRFR1PDP1GJBV0RC;DNLKCM;Montluçon, Athanor;;Place du 18 Août 74950 Scionzier;;[3.46515, 46.0671];;FRFR1EVDHU1;RLWP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.848103;45.257324;;;; +;;;;;;;;FRFR1PLTNIZVT1SZ;JLVMUSR7MM;Moulins, Vigenère;;Parking De La Gare 74970 Marignier;;[2.60819, 46.5343];;FRFR1EEVVP1;BNZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.343681;44.941794;;;; +;;;;;;;;FRFR1PNV41MYEPGH;QP0YIL8IFI;Bellenaves, Champ de foire;;Rue de la Liberté 74330 Epagny Metz-Tessy;;[3.30928, 46.5868];;FRFR1EYTFL1;RLWP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.307057;44.932387;;;; +;;;;;;;;FRFR1PPM3WP4TS73;YLGMS2ZOQX;Bellerive-sur-Allier, Source Intermittente;;Parking Du Clocher 74330 Epagny Metz-Tessy;;[4.35146, 44.808];;FRFR1ECDAZ1;WWFA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.704728;44.665798;;;; +;;;;;;;;FRFR1PGJUJZ8EFOO;TMF2EKI4VW;Moulins, Préfecture;;Parking De la passerelle 74970 Marignier;;[4.3136, 45.34064];;FRFR1EGYXW1;DRJU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.95545;45.202235;;;; +;;;;;;;;FRFR1PJGMSKN;ZW7N7BPXFX;Neuilly-le-Real, Gendarmerie;;Parking Malvoisin 74950 Scionzier;;[3.54074, 45.15616];;FRFR1ENFJU1;EEAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.18949;44.719448;;;; +;;;;;;;;FRFR1PNETJXB;NDUJH0PIS3;Bellerive-sur-Allier, Mairie;;Grande Rue 07110 Beaumont;;[4.03682, 45.20158];;FRFR1EYEMH2;HDWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.695439;44.960719;;;; +;;;;;;;;FRFR1PWZYXEF;YSINDSLO2T;Abrest, Jean Moulin;;Route De Bissinges 74500 Évian-les-Bains;;[4.23258, 45.24424];;FRFR1EYEMH1;WVME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.625376;44.424621;;;; +;;;;;;;;FRFR1PQFRX2Z7OPB;NPBXS3RZKU;Noyant-d'Allier, Marché;;Impasse des sports 42840 Montagny;;[3.90828, 45.18615];;FRFR1EYSDH2;WYUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.39372;44.447701;;;; +;;;;;;;;FRFR1PPHEETVQ3IH;CXDGTIEHUK;Moulins, Place Jean Moulin;;rue de Paris 42300 Malby;;[3.84579, 45.33199];;FRFR1EYHNT2;WHCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.682286;44.588025;;;; +;;;;;;;;FRS80PSXESMW;G7PHWB2AIL;Saint-Victor, La Loue;;Parking gymnase boulevard de belgique 42300 Roanne;;[3.69669, 45.31652];;FRFR1EYHNT1;WVAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.685681;44.6512;;;; +;;;;;;;;FRS80PMESNILECOLES;O4FMROVXLK;Saint-Germain-des-Fossés, Place Libération;;Parking Technopole Diderot 42300 Roanne;;[3.8506602, 45.33388671];;FRFR1EYSUV1;WVMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.27483;44.8092;;;; +;;;;;;;;FRS80PHANGESTMAIRIE;URQIIQNRHG;Saint-Gérand-le-Puy, Maurice Dupont;;Parking gymnase 42310 La Pacaudiere;;[3.71035, 45.19631];;FRFR1EYSUV2;WLDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.597261;45.066154;;;; +;;;;;;;;FRS80PPICQUIGNYGARE;HFHFSNPFL8;Lapalisse, Vérités;;Parking place du 11 novembre 42370 Renaison;;[3.90733, 45.12107];;FRFR1EYSDH1;WAJX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.299883;45.085456;;;; +;;;;;;;;FRS80PAILLYHAUTCLOC;FZYNI4UPQP;Saint-Pourçain-sur-Sioule, Quai de La Ronde;;Rue Alphonse Coste 42300 Roanne;;[4.29389, 45.16762];;FRFR1ERDEV1;WDWP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.72489514;45.0099;;;; +;;;;;;;;FRS80PENT7R39M9K;JMKUVVPZI3;Toulon-sur-Allier, Centre Routier;;Parking place de la mairie 42370 Saint-Andre-D'Apchon;;[4.27371, 45.30199];;FRFR1EYHJM2;WSJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.71452;44.550008;;;; +;;;;;;;;FRS80PEAUCOURTPONT;J8KQANINTN;Cosne-d'Allier, Centre de secours;;Parking super U 42120 Perreux;;[3.89164, 45.04276];;FRFR1ERDEV2;WKMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.831528;44.552929;;;; +;;;;;;;;FRS80PFLERSPARIS;KMKK2WXJUA;Ainay-le-Château, Intermarché;;Parking capitaine Aucey 42120 Le Coteau;;[3.94333, 44.99135];;FRFR1ENFJU2;WKXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.798643;44.8673;;;; +;;;;;;;;FRS80PH6BUUJO0HS;WIBXDEW7O1;Montmarault, Maison du Tourisme;;Parking rue Robert Barathon 42370 Renaison;;[4.43568, 45.1428];;FRFR1EVMRG1;LZXF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.815346;44.553365;;;; +;;;;;;;;FRS80PRCDEAM;FDSV6LVTDM;Moulins, République;;Avenue de Paris 42300 Roanne;;[3.87728, 45.04768];;FRFR1ENVQK2;LZRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7268;44.426088;;;; +;;;;;;;;FRS80PDOMARTETOILE;ERWQRN;Gannat, Place Pasteur;;Parking rue de l'hotel de ville 42110 Feurs;;[3.31931, 45.40492];;FRFR1ENVQK1;LZXF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.799815;44.60970725;;;; +;;;;;;;;FRS80PPOIXGARE;O85SVV2ACJ;Chantelle, Terrain de tennis;;Parking musée du chapeau 42140 Chazelles-Sur-Lyon;;[3.96790901, 45.0379469];;FRFR1ELJRU1;LZRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.80108;45.2187;;;; +;;;;;;;;FRS80PHALLENCOURTREP;USPQX0MDQ8;Le Donjon, Guillotière;;Parking Rue des Echeneaux 42100 Saint Etienne Rochetaillee;;[3.91745792, 44.99766512];;FRFR1ELJCE1;ZNAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.48872;45.038472;;;; +;;;;;;;;FRS80PPOIXREPUBLIQUE;KHRDRG;Creuzier-le-Vieux, Guinards;;Parking Avenue Maurice Thorez 42150 La Ricamarie;;[4.12381, 45.14355];;FRFR1ELJRU2;ZNAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.765453;45.239897;;;; +;;;;;;;;FRS80PFEUQUEBAIE;NWEPJA;Jaligny-sur-Besbre, Place René Fallet;;Parking Boulevard Victor Hugo 42150 La Ricamarie;;[3.549119, 44.959245];;FRFR1EYKFJ1;XFDZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.215867;45.083486;;;; +;;;;;;;;FRS80PCONTYGARE;GARMFX;Ebreuil, Place Saint-James;;Boën-sur-Lignon 42130 Boen-Sur-Lignon;;[3.48785, 44.86069];;FRFR1EYHJM1;EYUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.568563;45.286166;;;; +;;;;;;;;FRS80POISEMONT;YCJKYF;Chevagnes, Marché;;Parking place de la cure 42131 La Valla-En-Gier;;[3.902205, 45.060964];;FRFR1ECDAZ2;ZZMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.643774;45.187721;;;; +;;;;;;;;FRS80PCAYEUXARGOU;ELMCAG;Lapalisse, Pasteur;;Parking rue des roseaux 42290 Sorbiers;;[3.38137544, 45.29758934];;FRFR1EFXSA1;ZUKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.534159;45.271138;;;; +;;;;;;;;FRS80PCONDE22;ZFXETG;Cusset, Place du Centenaire;;Parking place du Général de Gaulle 42320 La Grand-Croix;;[4.09876, 45.257872];;FRFR1ETZCM2;SMJK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.64776;44.8149;;;; +;;;;;;;;FRS80PVYXQKS;B46FPVWMDM;Cognat-Lyonne, Route d'Espinasse;;Parking rue Saint Joseph 42420 Lorette;;[4.06222, 45.03316];;FRFR1ETPWN1;WLYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.829734;44.657171;;;; +;;;;;;;;FRS80PXREDGG;NNKJNY;Souvigny, Moulins;;Parking rue Fontanesium 42140 Fontanes;;[3.883293, 45.031025];;FRFR1ETBMC1;WDTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.781453;44.463088;;;; +;;;;;;;;FRS80PXCDNKJ;LDJEOI8BK0;Saint-Yorre, Bellevue;;Parking gallieni 42153 Riorges;;[3.881278, 45.049778];;FRFR1EPCTD2;YFQH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.638471;44.301353;;;; +;;;;;;;;FRS80PUPVMTH;REMDRY;Vallon-en-Sully, Mairie;;Boulevard Jean Baptiste Clément 42300 Roanne;;[4.579153, 44.726121];;FRFR1ERVQM2;WCXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.12942;44.371477;;;; +;;;;;;;;FRS80PTCYXHU;SMK51LMAB7;Avermes, La Poste;;Parking aéroport 42155 Saint-Leger-Sur-Roanne;;[3.97075, 44.8031];;FRFR1EPCTD1;YFRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.89792;44.366203;;;; +;;;;;;;;FRS80PPBCCRA;YTBQSB;Mezilhac, Le Village;;Parking Place Jean Cocteau 42153 Riorges;;[4.418393, 44.539131];;FRFR1ERVQM1;YFTL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.267563;44.8977;;;; +;;;;;;;;FRS80PSZJUJC;LCJTWZ;Saint-Just-Malmont, Parking des APG 39-45;;Parking mairie de Villerest 42300 Villerest;;[4.632694, 44.7145];;FRFR1EMWME1;UFRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2218;44.856094;;;; +;;;;;;;;FRS80PFFVRKQ;FMSJHW;Saint-Georges-D'Aurac, place Louis de Cazenave;;Clinique du Renaison 42300 Roanne;;[4.392542, 44.62086];;FRFR1ESSVW2;UCGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.20786;44.799609;;;; +;;;;;;;;FRS80PQKKLGT;FELLSQ;Retournac, Avenue de la Gare;;Parking halle Vacheresse 42300 Roanne;;[4.382688, 44.599646];;FRFR1EYKFJ2;PECZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.097078;45.188983;;;; +;;;;;;;;FRS80PCWRWXB;HXTWYM;Sainte-Sigolène, Place des Anciens d'AFN;;Parking Scarabée 42153 Riorges;;[4.341696, 44.597907];;FRFR1EHJUH1;AMUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.073676;44.5878;;;; +;;;;;;;;FRS80PPONTREMYSAV;ACUAKZ;Vorey-Sur-Arzon, Place des Moulettes;;Numériparc 42300 Roanne;;[4.06294, 44.8161];;FRFR1ESSVW1;AMUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.057257;44.7303;;;; +;;;;;;;;FRS80PABBEVIROY;GRPQDU;Craponne-Sur-Arzon, Place de la Poste;;rue Alsace Lorraine 42300 Roanne;;[4.397295, 44.626255];;FRFR1EFXSA2;AMTJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.981366;44.681074;;;; +;;;;;;;;FRS80PWBRCYE;VS6SOGHFTE;La-Chaise-Dieu, Parking Gare SNCF;;Bonvert 42300 Mably;;[4.24175, 44.479972];;FRFR1EAHSW2;AMTJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.01814;44.6758;;;; +;;;;;;;;FRS80PSLFNQF;JYPPQA0TJQ;Craponne-Sur-Arzon, Avenue de la Gare;;Parking allée du Parc 42120 Commelle-Vernay;;[4.255207, 44.482199];;FRFR1EHJUH2;AMUH3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.910646;44.711;;;; +;;;;;;;;FRS80PGLISYMAIRIE;WJJPG4Z7MN;Allegre, Rue de Chateauneuf;;Parking Intermarche 05130 Tallard;;[4.23633, 44.393373];;FRFR1EAHSW1;WMAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.842399;45.990188;;;; +;;;;;;;;FRS80PSNGDFA;SNSM4WFCED;Lavoûte-Sur-Loire, Place du Pont Neuf;;Salvizinet 42110 Salvizinet;;[4.835527, 45.0643];;FRFR1ESEQD1;WACB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.113377;46.142809;;;; +;;;;;;;;FRS80PGXTYVE;YWRAKBDU72;Raucoules, Parking La Gare, lieu dit Oumey;;Parking rue Claudius Remilleux 42290 Sorbiers;;[4.61752, 45.151355];;FRFR1ESEQD2;WAPP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.131286;46.0384893;;;; +;;;;;;;;FRS80PSTFUZJ;SAUDIUNPPA;Saint-Didier-En-Velay, Avenue Veron de la Conde;;Parking place Jean Moulin 42350 La Talaudiere;;[4.66594299, 45.166995];;FRFR1ELJCE2;WKFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.148806;43.139698;;;; +;;;;;;;;FRS80PJZXHUL;OYPH3MTL0S;Le-Puy-En-Velay, Avenue Charles Dupuy;;Parking COPLER 42470 Saint-Symphorien-De-Lay;;[4.00661, 44.7284];;FRFR1EAGNL1;WBVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.914784;43.108139;;;; +;;;;;;;;FRS80PESTREESCOMCOM;PGI7OZI3HX;Arsac-En-Velay, Parking Mairie;;Parking rue Jean Jaures 42240 Unieux;;[4.58457, 44.8214];;FRFR1EAGNL2;WMEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.083604;43.142256;;;; +;;;;;;;;FRS80PCORBIEGARE;ZUQ6OZWIHO;Saint-Bonnet-Le-Froid, Places aux champignons;;Parking rue Salvador Allende 42350 La Talaudiere;;[4.662959, 44.706977];;FRFR1EMLBR1;WFFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.22004267;43.093511;;;; +;;;;;;;;FRS80PLLQVXS;W1ACYG8P4K;Le-Puy-En-Velay, Place de la Libération;;Parking route de cottance 42360 Panissieres;;[4.10358, 44.7779];;FRFR1ERLTY1;WHMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.077222;43.120276;;;; +;;;;;;;;FRS80PABBEVILMAIR;UGZUCTHE6K;Sainte-Florine, Parking Rue Anatole France;;Avenue du général Gouraud 42380 Saint-Bonnet-Le-Chateau;;[4.42219, 44.9065];;FRFR1EMLFV1;WUCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.109689;43.038647;;;; +;;;;;;;;FRS80PABBEVILPONT;AEOHHR2DTT;Saint Germain Laprade,Place de l'europe;;Parking place Verdun 42320 Cellieu;;[4.6887, 44.484416];;FRFR1EFFDP1;WGWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.153966;43.047876;;;; +;;;;;;;;FRS80PGAMACHESMAIRIE;QRKRSXDLOB;Coubon, Place de la Paix;;Parking rue centrale 42480 La Fouillouse;;[4.445178, 44.652523];;FRFR1EZYSS1;WZRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.025026;43.130261;;;; +;;;;;;;;FRS80PW39IDRPDKI;LGOYUQZSSS;Yssingeaux, Parking Place Charles de Gaulles;;Parking place Jean Rist 42490 Fraisses;;[4.07317, 44.5323];;FRFR1EMNTX1;ABAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.855232;43.088313;;;; +;;;;;;;;FRS80PABBECAPU;JLQWOQOKKG;Saugues, Route du Puy;;Parking rue de l'arsenal 42390 Villars;;[4.22643, 44.7905];;FRFR1EKDBB2;ABAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.175952;43.6266837;;;; +;;;;;;;;FRS80PNGTDGD;TJJ9KFP8UM;Chanaleilles, le Bourg;;Parking rue de l'hôtel de ville 42390 Villars;;[4.386888, 44.620794];;FRFR1EAHWM1;ABLE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.036826;43.094876;;;; +;;;;;;;;FRS80PAIRAINESSEYM;RDH1HYPVXW;Chadrac, Avenue Pierre et Marie Curie;;Boulevard M Orelu 42450 Sury-Le-Comtal;;[4.387469, 44.619624];;FRFR1EMLBR2;ABLE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.867203;43.12475;;;; +;;;;;;;;FRS80PWJLBKW;X12ABRPVCW;Brioude, 38 Avenue Victor Hugo;;Parking aux portes 42800 Sainte-Croix-En-Jarez;;[4.625431, 44.438699];;FRFR1EAHWM2;TGNV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.125505;43.030095;;;; +;;;;;;;;FRS80PFEUQUIEREMAI;IBY7XIF9QN;Beauzac, Place du Pré Clos;;Parking médiathèque 42320 La Grand-Croix;;[4.629389, 44.503];;FRFR1EFUJS1;TGFW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.982913;43.092978;;;; +;;;;;;;;FRS80PFRIVILLEESCAR;BYXYO6YXTR;Saint-Julien-Chapteuil, Place du Marché;;Parking boulevard Gabriel Cousin 42330 Saint-Galmier;;[3.76284, 45.07478];;FRFR1EKDBB1;TFWZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.543831;43.107958;;;; +;;;;;;;;FRS80PHAMESPLA;FL632BDMHN;Le Puy En Velay, Val Vert;;rue Suel Picat 42800 Saint-Romain-En-Jarez;;[4.34412, 45.21375];;FRFR1EUWYU1;XYNR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.140912;43.348508;;;; +;;;;;;;;FRS80PLXGKYT9YHC;YXQDXS;Aiguilhe, Quincieu – Parking Salle Multisport;;Parking rue des anciens combattants 42740 Saint-Paul-En-Jarez;;[3.17263, 45.31767];;FRFR1EUWYU2;XYNR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.175739;43.191242;;;; +;;;;;;;;FRS80PBERNADUPREZ;XZCHPX;Privas, 283 Chemin d'Argevillières;;Parking route des côtes 42152 L'Horme;;[3.386839, 45.294012];;FRFR1EFGWH2;XFZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.000823;43.124073;;;; +;;;;;;;;FRS80PIQIL9BNYXZ;OE2C6C8Q1R;Coucouron, Place du 14 Juillet;;Parking rue Victor Hugo 42210 Saint-Andre-Le-Puy;;[3.886055, 45.040595];;FRFR1EEJDV2;SCAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.806694;43.10854;;;; +;;;;;;;;FRS80PI76W2YJNXA;RVEJP6FQDH;Vogüe, Place du Heyd;;Parking collège Joseph Collard 42570 Saint-Heand;;[3.849828, 44.894145];;FRFR1EPEMM2;EXUQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.208756;43.128743;;;; +;;;;;;;;FRS80PNOUVIONMAIRIE;DCNJKNE4HQ;Alissas, Place de la Mairie;;Parking allée des bourdonnes 42800 Genilac;;[4.122835, 45.144505];;FRFR1EPEMM1;FBWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.936084;43.766333;;;; +;;;;;;;;FRS80PBLSJNA;JB7O75BBKV;Aubenas, Place de l Airette;;Parking zoo 42800 Saint-Martin-La-Plaine;;[3.92956, 45.0469];;FRFR1EQGXS2;HWAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.28863;43.118344;;;; +;;;;;;;;FRS80PEGMDVD;YPOTF1HQQB;Saint-Etienne-De-Fontbellon, Rue de la Mairie;;Parking route de la Tour 42800 Saint-Martin-La-Plaine;;[4.11404, 45.30546];;FRFR1ECTRL1;SBRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.018776;43.106;;;; +;;;;;;;;FRS80PSTVALERYSTPIER;UFKDSKNUHA;Ailhon, Le Village;;Parking place de la liberté 42320 Saint-Christo-En-Jarez;;[3.387615, 45.291636];;FRFR1EDBKV1;XENE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.13862;43.134444;;;; +;;;;;;;;FRS80PARGOULESVAL;YLM0HHUMDL;Le Lac-D'Issarlès, Le Village;;Parking Mairie 74400 Chamonix-Mont-Blanc;;[3.8785064, 45.0295307];;FRFR1EAPHV1;SQTP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.800506;43.080991;;;; +;;;;;;;;FRFR1PEPVLVLOVWF;KZDPHHY9QV;Ucel, Rte de la manufacture royale Esp. Deydier;;Route Du Palais Des Sports 74110 Morzine;;[3.883702, 44.7698789];;FRFR1EVANS1;XAPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.078095;43.77316;;;; +;;;;;;;;FRFR1PWWFF9DHV9P;XC9VDLJNF4;Joyeuse, Le Pré du Château;;Plan Meuret 74120 Praz-Sur-Arly;;[3.631, 45.093055];;FRFR1EHMAM2;SBVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.92812;43.115201;;;; +;;;;;;;;FRFR1PR9JCWHPGKT;YALRDZFAG8;Rosières, Place du Village;;Avenue de la gare 74130 Bonneville;;[3.85666, 45.06895];;FRFR1EHMAM3;EPYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.88241;43.3194;;;; +;;;;;;;;FRFR1PGBETNRGWTT;TL3NL9QBRT;Chandolas, Le Verdal;;Ecole 74140 Ballaison;;[3.81171, 45.13562];;FRFR1EHMAM4;ETRL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.137923;43.084552;;;; +;;;;;;;;FRFR1PH2EMHAFSLS;PK3YEM8DDW;Tournon-Sur-Rhône, Place Carnot;;Parking face à la mairie 74140 Sciez;;[4.05984, 45.09719];;FRFR1EXKDH1;NQRZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.149858;43.286628;;;; +;;;;;;;;FRFR1PYVTKWXLYSL;ISLSCODQRA;Satillieu, Place du Collège;;Parking de la Médiathèque 74130 Le Petit-Bornand-Les-Glières;;[4.17089, 45.2951];;FRFR1EXKDH2;XQSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.97218364;43.07487;;;; +;;;;;;;;FRFR1PPOVZLZ0M4M;GBOCPUKOTD;Saint-Romain-D'Ay, Avenue de Praperrier;;Parking Champ Faviol 74140 Veigy-Foncenex;;[4.15323, 44.90396];;FRFR1EHMAM1;ETVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9238871;43.120548;;;; +;;;;;;;;FRFR1PF4V8VL9UIA;A8IMSEI4DH;Lanarce, La Bruge;;Parking Chef-Lieu 74160 Neydens;;[4.30415, 45.06124];;FRFR1EZHEH1;SKKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.94080194;43.16388;;;; +;;;;;;;;FRFR1PA3MGRRDRGB;MD0GNWWEBH;Saint-Sauveur-De-Montagut, Saint Sauveur;;Parking de la Mairie 74160 Saint-Julien-En-Genevois;;[4.20076, 45.37026];;FRFR1EZHEH2;TFYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.070709;43.103103;;;; +;;;;;;;;FRFR1PZJWTUKQRTE;T2SVHB67IN;Chomerac, Le Triolet;;Parking Patinoire 74170 Saint-Gervais-Les-Bains;;[3.515296, 45.206547];;FRFR1EFMYW2;TGNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.945638;43.111634;;;; +;;;;;;;;FRFR1PMBIIAYIANW;QSGWZRZ34C;Cros-De-Georand, La Palisse;;Grand Rue 74160 Saint-Julien-En-Genevois;;[4.2569, 44.6352];;FRFR1EFUJS2;TFWZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.8125;43.064793;;;; +;;;;;;;;FRFR1PMTQXSIJ3RN;ZX5LMPLOCQ;Le Cheylard, Place de la Libération;;Parking Molettaz 74120 Megève;;[3.96914, 44.6071];;FRFR1EFMYW1;GSNP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.075492;43.12926791;;;; +;;;;;;;;FRFR1PWRZVCPI5NC;C4KRE3VPLQ;Viviers, Parking les Lauriers;;Rd 1206 74160 Collonges-Sous-Salève;;[4.366008, 44.345122];;FRFR1EGTAB2;NHRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.927102;43.13027018;;;; +;;;;;;;;FRFR1PVYYQLRBQLG;NZGBPIAKU2;Vesseaux, Chemin de l'Ancien Stade;;Taille Du Grand Mas 74110 Morzine;;[4.83965, 44.94409];;FRFR1EGUPT1;ABMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.316517;43.1194873;;;; +;;;;;;;;FRFR1PUHG7FBMQYH;BJ9TZMED5E;Sablières, Le Village;;Place Berger 74190 Passy;;[4.41797, 44.447861];;FRFR1EGUPT2;ABMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.044463;43.147958;;;; +;;;;;;;;FRFR1PP5V9XI99Z7;UJZXTSOGHT;Sagnes-Et-Goudoulet, Les Sagnes;;Parking du Solaret 74170 Les Contamines-Montjoie;;[4.399957, 44.351686];;FRFR1EGTAB1;QYFZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.497017;43.107935;;;; +;;;;;;;;FRFR1PA8NFE2AVUQ;OMMZ7I0YRZ;Aubenas, Place Olivier de Serres;;Jardin Public RD1212 74120 Megève;;[4.36312, 44.563802];;FRFR1ECVKE1;ABFX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.075095;43.099783;;;; +;;;;;;;;FRFR1PRPIAIAYUIP;KAH5MCU0PR;Aubenas, Place de la Pécourte;;39 Rue du cimetière 74220 La Clusaz;;[4.501929, 44.558368];;FRFR1EWNHE1;ABFX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.073719;43.147169;;;; +;;;;;;;;FRFR1PP2VQPNZVP8;BR5VEJ4LUC;Saint-Montan, Bauvache;;Place Des Anciens Combattants 42720 Vougy;;[4.451231, 44.555261];;FRFR1ETBMC2;WSVP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.696857;43.126733;;;; +;;;;;;;;FRFR1PWGX350GV80;SKUWSYWI8M;Saint-Thome, Place des Crottes;;Parking Salle des Fêtes 74200 Anthy-Sur-Leman;;[4.856624, 44.94513];;FRFR1ETPWN2;YKAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.24135;43.3927;;;; +;;;;;;;;FRFR1PE7KRECKCYE;PVQGYC;Chaspuzac, Aérodrome;;Parking de l'Église 74200 Allinges;;[4.674702, 45.244738];;FRFR1ETZCM1;MEFZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.361105;43.330293;;;; +;;;;;;;;FRFR1PMPGVWJFVRH;OJBNYNLLXC;Dunieres, Rue de St Régis;;Eglise 74200 Lyaud;;[4.291861, 44.538528];;FRFR1EDVEW1;MEFZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.46939;43.571181;;;; +;;;;;;;;FRFR1PNSDP4YBGRR;UINJVNH6Q6;Blesle, Place Saint-Pierre;;Cimetière 74230 Dingy-Saint-Clair;;[4.670735, 45.241713];;FRFR1EUEJA2;TFYA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.463953;43.23772;;;; +;;;;;;;;FRFR1PNRG9ZX5F3C;dompierre;Brioude, Parking du centre historique;;Chef Lieu 74230 Manigod;;[4.574741, 44.720654];;FRFR1EGESK1;GSNP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.357913;43.236609;;;; +;;;;;;;;FRFR1POJGQG93S4C;MNVNQJ;Le Puy-en-Velay, Place Michelet;;Avenue du Bas Chablais 74140 Douvaine;;[4.598438, 44.734181];;FRFR1EALKU1;YKAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.23577;43.624273;;;; +;;;;;;;;FRFR1PYFBKCUHMCA;CA3BLMPVBD;Costaros, Place de la Mairie;;Ancienne Mairie 74140 Chens-Sur-Leman;;[4.325842, 44.537509];;FRFR1EGESK2;FYHD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.425536;43.51516;;;; +;;;;;;;;FRFR1PPRZ9UEOLLL;CCRCZB;Yssingeaux, Parking de l'Antreuil;;Parking Pré Ponce 74140 Yvoire;;[4.342456, 44.453956];;FRFR1EUEJA1;YZLG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.293704;43.490803;;;; +;;;;;;;;FRFR1PWOJVP7XK3S;ZQJLTS8LZQ;Brives-Charensac, Place blanche;;Avenue de la Plage 74140 Excenevex;;[4.413857, 44.31816];;FRFR1EDEXX1;YZLG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.236833;43.317779;;;; +;;;;;;;;FRFR1PV2WYTXUEVW;MQTUEZ;Bas -En-Basset, Rue du Marais;;Avenue Beauregard 74960 Annecy Cran-Gevrier;;[4.39753, 44.406231];;FRFR1EMRGC2;AXAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.369696;43.208338;;;; +;;;;;;;;FRFR1PAXT8TBMQPM;XBFXBY;Brioude, Place du Postel;;Place de la Vignule 74380 Lucinges;;[4.534039, 45.119859];;FRFR1EDKGS1;FYHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.010334;43.314384;;;; +;;;;;;;;FRFR1PTFZRLAD58K;TGQQ9EOFPO;Vals-près-le-Puy, avenue Charles Massot;;Parking Mattel 74190 Passy;;[4.254712, 44.298979];;FRFR1EDKDZ1;AXAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.137679;43.135207;;;; +;;;;;;;;FRFR1PHZSKCRY3NQ;UQWWKV;Pradelles, Place du Foirail;;Rue de la Bruyère 74100 Annemasse;;[4.623651, 44.735891];;FRFR1EUXVV1;TGFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.182072;43.152094;;;; +;;;;;;;;FRFR1PURXXMQBEJN;QLKVQH0DOT;Siaugues-Sainte-Marie, Place du Général Lafayette;;Rue du Sentier 74100 Annemasse;;[4.59005, 44.734135];;FRFR1EMRGC1;YFSD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.229499;43.323544;;;; +;;;;;;;;FRFR1PM6GVZ6JYET;RAATACOPRW;Polignac, Parking maison communal;;RD907 74380 Bonne;;[4.598804, 44.736443];;FRFR1EDXRY1;YFSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.736809;43.139693;;;; +;;;;;;;;FRFR1PXUJE2L5JUY;TUDR0E6GUP;Saint-Paulien, Rue de l’Anyade;;Quartier Rigoles 74370 Argonay;;[4.613528, 44.30425];;FRFR1EDNQT1;YKQH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.784954;43.137889;;;; +;;;;;;;;FRFR1POOWFA5K8PB;VDPQRVEOZH;Le Pertuis, Parking de la mairie;;Grande Rue 74350 Cruseilles;;[4.155203, 44.366488];;FRFR1EHHTH1;NUAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.021739;43.120467;;;; +;;;;;;;;FRFR1PN9PUFD9IQX;Z3QABMCZC1;Monistrol-Sur-Loire, Place Marechal Jourda de Vaux;;Parking De La Mairie 74360 Abondance;;[4.883509, 44.935071];;FRFR1EPVNE1;CTFV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.024325;43.288093;;;; +;;;;;;;;FRFR1PFOREKRBQZH;IXBABVQUXW;Les-Estables, Place Rechausseyre;;Route de Borly 74380 Cranves-Sales;;[4.201782, 44.373635];;FRFR1EUWDL1;JYNH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.029939;43.475585;;;; +;;;;;;;;FRFR1PQ60YP7CO65;UBG4WBEFLR;Le-Chambon-Sur-Lignon, Rue de la Poste;;Parking du Corzelet 74400 Chamonix-Mont-Blanc;;[4.70591, 45.257324];;FRFR1EVJYQ1;CTFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.143279;43.301314;;;; +;;;;;;;;FRFR1PSFFNZXZEQO;FACVXR;Aurec-Sur-Loire, Place des déportés;;Parking Courmayeur 74400 Chamonix-Mont-Blanc;;[4.765732, 44.941794];;FRFR1EHEPW1;QNMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.847451;43.50392;;;; +;;;;;;;;FRFR1PUWENEDCQPA;SZNPWU;Paulhaguet, Place Lafayette;;Parking Allobroges 74400 Chamonix-Mont-Blanc;;[4.870804, 44.932387];;FRFR1EFBTY1;QNMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.144734;43.471881;;;; +;;;;;;;;FRFR1PYWEZEFEDKH;JZZ4ARDOAD;Jaujac, Fabrias;;Rue des Tournelles 74100 Ville-La-Grand;;[4.365731, 44.665798];;FRFR1EFBTY2;RLGH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.610836;43.107612;;;; +;;;;;;;;FRFR1PJWVTOWOSAH;ACHVAB;Saint-Laurent-Les-Bains, Le Village;;Place Porte-Bonheur 74100 Ville-La-Grand;;[4.553613, 45.202235];;FRFR1EMDWJ1;XHAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.813964;43.106136;;;; +;;;;;;;;FRFR1PJIRIL0QKRW;HWBKSS;Vagnas, Place de l'Eglise;;Rue des Sorbiers 74300 Thyez;;[4.358827, 44.719448];;FRFR1EPUHW1;JYJM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.75708;43.553296;;;; +;;;;;;;;FRFR1PQJZPGZZJNW;ZCALPN;Saint-Peray, Place Andre Pic;;D106 Route de la Barliette 74300 Arâches-La-Frasse;;[4.848103, 44.960719];;FRFR1ERAHQ3;JYJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.382547;43.228023;;;; +;;;;;;;;FRFR1PBNAYVYPNUE;S4VXC1ZBVR;Lagorce, Le Village;;Rue Pré Benevix - Cœur de ville 74300 Cluses;;[4.343681, 44.424621];;FRFR1ERAHQ2;VJAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.243153;43.137181;;;; +;;;;;;;;FRFR1PMB9F5TKRPJ;BWUC0Z5W3X;Labastide-De-Virac, Sous la Vielle;;Sardagne 74300 Cluses;;[4.307057, 44.447701];;FRFR1ERAHQ1;XHAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.752095;43.226478;;;; +;;;;;;;;FRFR1PM53GGW3ONZ;AHJLY7UVLM;Lachapelle-Sous-Aubenas, Place De L'Alambic;;Rue Fernand David 74100 Annemasse;;[4.704728, 44.588025];;FRFR1ERRDU3;VJAG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.685957;43.2172196;;;; +;;;;;;;;FRFR1PHSR5CVUBSN;PMYFKJ;Villeneuve-De-Berg, Place des Combettes;;Flaine 74300 Arâches-La-Frasse;;[3.95545, 44.6512];;FRFR1ERRDU2;AGUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.683481;43.525115;;;; +;;;;;;;;FRFR1POTAUCDKBHT;UKPJV9OC6M;Saint-Germain, Place du Champ des Pauvres;;Parking de la Mairie 05000 La Freissinouse;;[4.18949, 44.8092];;FRFR1ERRDU1;AGUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.074581;43.608633;;;; +;;;;;;;;FRFR1POVRR1M5NIJ;FANRVL;Saint-Peray, Parking relais Maladière;;Office de Tourisme 05100 Nevache;;[4.695439, 45.066154];;FRFR1EMREK1;MQLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.342794;43.605991;;;; +;;;;;;;;FRFR1P58E28A0851F24;XQQCZS16EH;Annonay, Avenue de la Gare;;Place du General de Gaulle 05130 Tallard;;[4.625376, 45.085456];;FRFR1EMWAA3;AMKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.150598;43.774849;;;; +;;;;;;;;FRFR1PBSKY08VNWK;ANDDND3BDK;Largentière, Place les Vergnades;;Avenue du Faubourg 05160 Savines-Le-Lac;;[4.39372, 45.0099];;FRFR1EMWAA1;AMKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.082015;43.606096;;;; +;;;;;;;;FRFR1POY9U2KDFHP;YVGSKBCI4J;Annonay, Rue de la Valette - Parking la Valette;;Za Des Bonnets 74270 Musièges;;[4.682286, 44.550008];;FRFR1EMWAA2;MQLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.841899;43.45612;;;; +;;;;;;;;FRFR1PFVL8IDQLIP;DBC1X2LWNF;Saint-Priest, Place Des Mineurs;;Parging Trésum 74000 Annecy;;[4.685681, 44.552929];;FRFR1EZBUX2;LUCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.840185;43.453692;;;; +;;;;;;;;FRFR1PH7PMEQE0EW;KDUPPQ;Privas, Avenue de l'Europe Unie;;Parking RD1206 74100 Etrembières;;[4.27483, 44.8673];;FRFR1EZBUX3;KHQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.84677031;43.148347;;;; +;;;;;;;;FRFR1PXJ5L0C9ZRQ;CDVWPX;Vinezac, Place Chalendas;;Rue Du Rond Point 74960 Annecy Cran-Gevrier;;[4.597261, 44.553365];;FRFR1ELCRM2;KHQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.090382;43.390503;;;; +;;;;;;;;FRFR1PLLJ8GYI0419GG7;TTJZND;Ruoms, Place Général de Gaulle;;Tunnel du Mont-Blanc 74400 Chamonix-Mont-Blanc;;[4.299883, 44.426088];;FRFR1EZBUX1;JYNH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.813819;43.083425;;;; +;;;;;;;;FRFR1PNKMDJTOUDC;M7ZASMMQY6;Orgnac-L'Aven, Camp Redon;;Rue du Capricorne 74230 Thônes;;[4.72489514, 44.60970725];;FRFR1ELCRM3;HSMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.848177;43.336062;;;; +;;;;;;;;FRFR1PN8A8OYWIZN;OBSGYTJHXU;Vallon-Pont-D'Arc, Quartier Ratiere;;Stade - Piscine 74190 Passy;;[4.71452, 45.2187];;FRFR1ELCRM1;YFQH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.125679;43.117565;;;; +;;;;;;;;FRFR1PN4XRQBUHJY;PIHT6XLNGT;Lalouvesc, Place du lac;;Parking P+R 74540 Alby-Sur-Cheran;;[4.831528, 45.038472];;FRFR1EMDWJ2;HSMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.074425;43.111404;;;; +;;;;;;;;FRFR1PXSXPKS4QIH;JCAUYPEAYA;Saint-Sauveur-De-Cruzières, Fangaro;;Parking Pizzaiola 74140 Saint-Cergues;;[4.798643, 45.239897];;FRFR1EXMVY1;MWPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.302705;43.11675785;;;; +;;;;;;;;FRFR1PLRBN9SNHY0;WD8KTGUBE3;Coux, Place d'Onclaire;;Rue de la Vallée verte 74420 Boëge;;[4.815346, 45.083486];;FRFR1EAMYV1;DTYR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.185457;43.303283;;;; +;;;;;;;;FRFR1PZ34FCKPU91;moulinshopital;Privas, Place du Foiral;;Aire De Repos 74210 Faverges;;[4.7268, 45.286166];;FRFR1ETNVH2;VVCJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.535475;43.109906;;;; +;;;;;;;;FRFR1PF4ZNRA9TDQ;VSQHNQ;Privas, Place du Champs de Mars;;Parking Salle des Fêtes 74440 Taninges;;[4.799815, 45.187721];;FRFR1EBTMM2;DTYR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.073943;43.116827;;;; +;;;;;;;;FRFR1PBNOETWSQ8N;WXTEE2IGIX;Saint-Just-D'Ardèche, Pl. de l'Ecole;;Parking Pfullingen 74190 Passy;;[4.80108, 45.271138];;FRFR1EWHFF1;RVXC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.064265;43.119765;;;; +;;;;;;;;FRFR1PW2JSXIFDDM;HU7ZHXIDPR;Banne, Lochere;;Autoport 74300 Cluses;;[4.48872, 44.8149];;FRFR1EGBFL1;RVXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.754467;43.092958;;;; +;;;;;;;;FRFR1PLZBDAYDH0Y;LPQNUV;Guilherand-Granges, Boulevard Charles de Gaulle;;Cite De L'Eau 74500 Publier;;[4.765453, 44.657171];;FRFR1EGPAN1;ZYXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.222372;43.237316;;;; +;;;;;;;;FRFR1PXVWJDFBNAT;UYBDVS;Berrias-Et-Casteljau, Place Andrée Rouveyrol;;Avenue des Grottes 74500 Evians-Les-Bains;;[4.215867, 44.463088];;FRFR1EGBFL2;AGEY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.50678;43.300398;;;; +;;;;;;;;FRFR1PBVSTOGZT0R;ZBTMTF;Davezieux, Place de la Poste;;Parking des Romains 74000 Annecy;;[4.568563, 44.301353];;FRFR1EGPAN2;ZYWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.072607;43.590682;;;; +;;;;;;;;FRFR1PNDHQTP;ZAO4L8TSGT;Champis, Fringuet;;Rue Des Contamines 74310 Argonay;;[4.643774, 44.371477];;FRFR1EBTMM1;DWYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.85204;43.408111;;;; +;;;;;;;;FRFR1PYPNGGQLI7H;ZVO21H4TWD;Guilherand-Granges, Avenue Georges Clemenceau;;Route de Meurba 74390 Châtel;;[4.534159, 44.366203];;FRFR1EBQER1;DWYQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.150075;43.404268;;;; +;;;;;;;;FRFR1PYSZ671LQHR;ORK5FI3ZMM;Vals-Les-Bains, Place Galimard;;Parking de la CCP de la Fillière 74570 Thorens Glieres/Filliere;;[4.64776, 44.8977];;FRFR1EDYPW2;UFQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.30944049;43.197869;;;; +;;;;;;;;FRFR1PA46LM1G17J;AP4KK13HNF;Vocance, Place de l'Eglise;;Route de la Ramaz 74440 Taninges (Praz De Lys);;[4.829734, 44.856094];;FRFR1EBQER2;UFQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.771902;43.427744;;;; +;;;;;;;;FRFR1PWQLJIEOSPD;IC3VKFYDUZ;Antraigues-Sur-Volane, Les Allevards;;Place de la Mandallaz 74000 Annecy;;[4.781453, 44.799609];;FRFR1EEDVF1;RWAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.069992;43.710943;;;; +;;;;;;;;FRFR1PCPW4BJOEDV;EHWYSYEPGP;Cornas, Avenue du Colonel Rousset;;Parking Cimetière 74290 Menthon-Saint-Bernard;;[4.638471, 45.188983];;FRFR1EDYPW1;RWAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.450228;43.150988;;;; +;;;;;;;;FRFR1PLYNNVONFVX;IZWGVKKKLW;Sampzon, Place de la Mairie;;Place de la Gare 74740 Sixt-Fer-à-Cheval;;[4.12942, 44.5878];;FRFR1EBMZK1;ATXX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.039215;43.105236;;;; +;;;;;;;;FRFR1PMCN2TV5DLV;EVXVDF;Labeaume, Les Fraysses;;Route Vielle verde 74420 Habère-Poche;;[3.89792, 44.7303];;FRFR1EBMZK2;ATXX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.556539;43.524758;;;; +;;;;;;;;FRFR1PTQFRQ15WCK;LWBQSZ;Rochemaure, Place des Brassieres;;Rue de la Fraternité 74000 Annecy;;[4.267563, 44.681074];;FRFR1EYMTZ2;LJPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.891595;43.23924335;;;; +;;;;;;;;FRFR1PDYII1VYXNM;LK9N6FGDHT;Saint-Etienne-De-Lugdarès, Le Village;;Poste 74540 Gruffy;;[4.2218, 44.6758];;FRFR1EYMTZ1;LJPN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.278045;43.176461;;;; +;;;;;;;;FRFR1PSJWL0JJWCZ;UJNXRL;Sainte-Eulalie, Place du Marché;;Bonlieu 74000 Annecy;;[4.20786, 44.711];;FRFR1EAPRV1;PQXB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.40560759;43.096204;;;; +;;;;;;;;FRFR1PZSAZHIGU1P;VPMUW1NPUD;Colombier-Le-Vieux, Place du Marché;;Faubourg Des Balmettes 74000 Annecy;;[4.097078, 45.990188];;FRFR1EMWWV1;NWTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.510674;43.597875;;;; +;;;;;;;;FRFR1PQUXPFGFXNE;QPPN534ID0;Saint-Felicien, Place du Martouret;;Place Joseph Sérand 74210 Faverges;;[6.073676, 46.142809];;FRFR1ETNVH1;LUCQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.197639;43.39442;;;; +;;;;;;;;FRFR1PTQ4MET9QHH;XOOHDY43SH;Saint-Agrève, Place de Chantoisel;;boulevard Fiers 74000 Annecy;;[4.057257, 46.0384893];;FRFR1EWHFF2;NGSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.498394;44.790737;;;; +;;;;;;;;FRFR1PQQHZ79XAXR;F5GG4XPJNB;Le Teil, Place du Cimetière;;RIE 74940 Annecy-le-Vieux;;[5.981366, 43.139698];;FRFR1EWFTJ2;NGSM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.826448;44.688716;;;; +;;;;;;;;FRFR1PXWE4EWS3MA;SRX4IK756Y;Le Teil, Place René Montérémal;;Route De Vignieres 74000 Annecy;;[6.01814, 43.108139];;FRFR1EWFTJ1;MXMZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.856609;44.543139;;;; +;;;;;;;;FRFR1PIYOKNX7TZR;CZTFGE;Saint-Martial, Village Nord;;Rue Baron Pierre De Coubertin 74000 Annecy;;[5.910646, 43.142256];;FRFR1EWGPT2;UMMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.490031;45.0356367;;;; +;;;;;;;;FRFR1PVRCUMHLPYR;HF7UWCT3XU;Alba-La-Romaine, Parking le clos - Le clos;;Place Des Romains 74000 Annecy;;[5.842399, 43.093511];;FRFR1ENTCZ1;AVUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.204541;44.97595;;;; +;;;;;;;;FRFR1PPOYTUZYBZT;UVUSPH;Saint-Alban-Auriolles, Place Aristide Briand;;Chemin de la Bruyère Vieugy 74600 Annecy Seynod;;[6.113377, 43.120276];;FRFR1EMMCD1;FRXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.169101;44.565323;;;; +;;;;;;;;FRFR1PXOPBHY1L2B;GB7J68Q0BE;Meysse, Rue Chevrière;;Corniche de la Néphaz 74150 Rumilly;;[6.131286, 43.038647];;FRFR1EUAWN1;JWEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.231873;44.824989;;;; +;;;;;;;;FRFR1POJHMGCHDSF;DDUFKV;Vernosc-Lès-Annonay, Rue du Centre;;Avenue Général Doyen 74290 Veyrier-Du-Lac;;[6.148806, 43.047876];;FRFR1EXFPM1;JWGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.499543;44.313627;;;; +;;;;;;;;FRFR1PKA6HPW7M1J;REJFYYSDM4;Mauves, Chemin de Halage;;Mairie 74600 Talloires-Montmin;;[5.914784, 43.130261];;FRFR1EQMAV2;JWGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.22918;44.231125;;;; +;;;;;;;;FRFR1PEZSSVQ;JZXFBNTFY9;Andance, Place Maxime Chantier;;Avenue de la gare 74800 La Roche-Sur-Foron;;[6.083604, 43.088313];;FRFR1EQMAV1;JWEP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.326756;44.844086;;;; +;;;;;;;;FRFR1PVXFWFN;QYJLX8F4UH;Saint-Jean-De-Muzols, Rue Centrale;;Parking Pontet 74800 La Roche-Sur-Foron;;[6.22004267, 43.6266837];;FRFR1ENPZG1;DMME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.498638;44.62348;;;; +;;;;;;;;FRFR1PAR9PTVOSJU;DIMB9HNUST;Peaugres, Route de l'Egalité;;Les Jourdies 74800 Saint-Pierre-En-Faucigny;;[6.077222, 43.094876];;FRFR1ENPZG2;DMME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5574;44.64284;;;; +;;;;;;;;FRFR1PET9YQKHSFE;XZTXRU;Sarras, Place Jean Moulin;;Chemin de la Tournette 74320 Sevrier;;[6.109689, 43.12475];;FRFR1EAXTM1;WFHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.928601;44.668239;;;; +;;;;;;;;FRFR1PW0RMJ2P85R;SJXUZ7WVZF;Champagne, Le Village;;Bar A Thym 74270 Minzier;;[6.153966, 43.030095];;FRFR1EZZDF1;JGXR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.277534;44.564163;;;; +;;;;;;;;FRFR1PYFBVDEVTCQ;NTGMS3IKER;Saint-Pierreville, Place du Clos;;Le Buet 74660 Vallorcine;;[6.025026, 43.092978];;FRFR1EQXJM2;NHUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.632719;44.4649;;;; +;;;;;;;;FRFR1PHKLD3MTZJB;ZACDZS;Cruas, Place René Cassin;;Flaine 2 74300 ARÂCHES-LA-FRASSE;;[5.855232, 43.107958];;FRFR1EQXJM1;KWWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.580031;44.695058;;;; +;;;;;;;;FRFR1PBOHVRKIAYW;BHNVCQ;Lablachère, La Jaujon;;Route du Bout du Lac 74210 Lathuile;;[6.175952, 43.348508];;FRFR1EAXTM2;XPES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.718155;44.562874;;;; +;;;;;;;;FRFR1PPL7JHFSCKK;VPTVQQ;Saint-Martin-D'Ardèche, Chemin du Grand Clos;;Parking du bossonet 74220 La Clusaz;;[6.036826, 43.191242];;FRFR1EZZDF2;KFKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.694359;44.4952;;;; +;;;;;;;;FRFR1PWUW4LZ9TPI;VHJVGW;Bourg-Saint-Andeol, Place du Champs de Mars;;Presbytère 74410 Saint-Jorioz;;[5.867203, 43.124073];;FRFR1EWGPT1;CSBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.65137;44.675988;;;; +;;;;;;;;FRFR1PDNX2FL4ZPW;YDYHNZJJKE;Bidon, Le Village;;Parking de la Mairie 74330 Poisy;;[6.125505, 43.10854];;FRFR1EWGFN2;FGBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.865808;44.547316;;;; +;;;;;;;;FRFR1PZUMX4SSUME;Q95UGK3FNX;Vernoux-En-Vivarais, Avenue Vincent D Indy -;;Rumilly, Parking des Anciennes Casernes 74150 Rumilly;;[5.982913, 43.128743];;FRFR1EWGFN1;TUVP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.58674;44.622584;;;; +;;;;;;;;FRFR1PYKVA6WUBXU;TFDWRB;Saint-Georges-Les-Bains, Le Blod;;Place des Arcades 74800 Saint-Pierre-En-Faucigny;;[6.543831, 43.766333];;FRFR1EHZYX1;TUVP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.84759393;44.750171;;;; +;;;;;;;;FRFR1PN3JWK6WYPH;aqualudique;La Voulte-Sur-Rhône, Quai Anatole France;;Allée Jean Mermoz 74960 Annecy Cran-Gevrier;;[6.140912, 43.118344];;FRS90EGAWY1;YFRV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.812786;44.428729;;;; +;;;;;;;;FRFR1PFWEIOZ4CNV;ERZCZN;Saint-Alban-D'Ay, Font Benite;;Cimetiere 74450 Le Grand-Bornand;;[6.175739, 43.106];;FRFR1EWUPD1;YFTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.649073;44.312791;;;; +;;;;;;;;FRFR1PJDCFCTPI49;RNFAUC;Valgorge, Le Village;;Parking CTM 74460 Marnaz;;[6.000823, 43.134444];;FRFR1EGKQJ2;PNFA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.824664;44.657303;;;; +;;;;;;;;FRFR1PETJO1NSOE0;KVYTWM;Lesperon, Le Village;;50 Rue du Bourno 74420 Boëge;;[5.806694, 43.080991];;FRFR1EGULQ1;PNFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.89593426;44.699294;;;; +;;;;;;;;FRFR1PCQ2K0BBPT6;WVAJPP;Meyras, Place du Champ de Mars;;Mairie 74430 Saint-Jean-D'Aulps;;[6.208756, 43.77316];;FRFR1EASEA1;UMMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.481829;44.933873;;;; +;;;;;;;;FRFR1PPWVZRTY6Z8;MDFRBN;Thueyts, Place du Champ de Mars;;Mairie 74460 Marnaz;;[5.936084, 43.115201];;FRFR1EPCJD1;APVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.492683;44.71980038;;;; +;;;;;;;;FRFR1PY6VC4OKUHC;SJWERJ;Montpezat-Sous-Bauzon, Place de la Poste - Boulevard de la Prairie;;Place des Allinges 74500 Evian-Les-Bains;;[6.28863, 43.3194];;FRFR1EDZRD1;MXMZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.471063;44.272603;;;; +;;;;;;;;FRFR1PZU4GWOCMMU;YQUVUC;Parigny, Parking de la mairie;;Parking Relais 74500 Saint-Paul-En-Chablais;;[6.018776, 43.084552];;FRFR1ENVBT2;PHRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.689987;44.661324;;;; +;;;;;;;;FRFR1PUJRBFAQ6K8;ODTKP8CH6Y;Saint Julien En Genevois, Rue Jacques Duboin;;Avenue De La Gare 74500 Evian-Les-Bains;;[6.13862, 43.286628];;FRFR1ENVBT1;URUM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.613159;44.315547;;;; +;;;;;;;;FRFR1PRXZDFS3J0N;ORQZ0JAUKA;Roanne, Victor Hugo Mulsant;;Clos Saint François 74490 Saint-Jeoire;;[5.800506, 43.07487];;FRFR1EGKQJ3;URUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.193801;44.29475516;;;; +;;;;;;;;FRFR1PSO1ITMVT8N;varennesmairie;La Valette Du Var, Parking Collège Daudet;;Quai Chevallay 74500 Saint-Gingolph;;[6.078095, 43.120548];;FRFR1EGKQJ4;URUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.027689;44.551008;;;; +;;;;;;;;FRFR1PGXEHLA3ZLD;cussetgilbert;Le Pradet, Parking LAVIGERIE;;Parking de la Bézière 74300 Magland;;[5.92812, 43.16388];;FRFR1EGKQJ1;GMYQ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.075528;44.562232;;;; +;;;;;;;;FRFR1PRJRTM1TGUD;590305c6aad59;Toulon, Parking Museum Départemental;;Route de Grandes Alpes 74260 Les Gets;;[5.88241, 43.103103];;FRFR1EEQDM1;GMYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.077297;44.389375;;;; +;;;;;;;;FRFR1PJE9YSXAOIJ;lemontet;Six-Fours-Les-Plages, Parking ESPACE MALRAUX;;Route de Taninges 74300 Châtillon-Sur-Cluses;;[6.137923, 43.111634];;FRFR1EVDTH1;GMYQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.680047;44.594376;;;; +;;;;;;;;FRFR1PVGP2D1IL1W;lurcylevis;Hyères, Avenue Maréchal Leclerc;;Parking Gymnase du Rosay 74700 Sallanches;;[6.149858, 43.064793];;FRFR1EFVCJ1;AQQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.580566;44.415394;;;; +;;;;;;;;FRFR1PKSPUBKEN0J;montlucongi;Hyeres, Place du Belvédère;;Parking de la Mairie 74890 Bons-En-Chablais;;[5.97218364, 43.12926791];;FRFR1ENAYG1;AFNU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.624609;44.81712;;;; +;;;;;;;;FRFR1PY3QEBNRC6N;montmaraulth;Hyères, Parking Avenue de la Bergerie;;Stade 74570 Groisy;;[5.9238871, 43.13027018];;FRFR1EAVBU1;AWTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.721293;44.780812;;;; +;;;;;;;;FRFR1PHC303G1OWT;moulinsroche;Toulon, Place Parmentier;;Rue De La Gare 74520 Valleiry;;[5.94080194, 43.1194873];;FRFR1EDLES1;AMQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.672902;44.683441;;;; +;;;;;;;;FRFR1PX8N8GBP7Y5;montluconpi;Carqueiranne, Parking Beaurivage;;Chemin de la Chapelle 74560 Monnetier-Mornex;;[6.070709, 43.147958];;FRFR1EBDCR1;AKBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.752325;44.682134;;;; +;;;;;;;;FRFR1PQQYRC2FCMZ;bourbon;Aups, Parking de la colle;;Route du Fayet - Sur parcelle B1469 74700 Sallanches;;[5.945638, 43.107935];;FRFR1EAXQJ1;ABSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.72954;44.571774;;;; +;;;;;;;;FRFR1PYE8TVC3QFK;bessay;Carqueiranne, Parking Cimetière;;Parking du Fresnay 74310 Les Houches;;[5.8125, 43.099783];;FRFR1EAMMJ1;ATZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.701949;44.649808;;;; +;;;;;;;;FRFR1PU3BIAJ1J75;broutvernet;Hyères, Avenue des Monocotyledones;;Parking Le Criou 74340 Samoëns;;[6.075492, 43.147169];;FRFR1EEQDM2;ASMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.325711;44.670518;;;; +;;;;;;;;FRFR1PICW8FUK8MQ;cerilly;Hyères, Parking Tour Fondue;;Parking Centre Village 74700 Cordon;;[5.927102, 43.126733];;FRFR1ECTSM1;ARXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.403827;44.868338;;;; +;;;;;;;;FRFR1PQOTMBBSOOH;lemayet;Le pradet, Place Lluch;;Proximité centre commercial des Brochets 74250 Viuz-En-Sallaz;;[6.316517, 43.3927];;FRFR1ERMMH2;AASV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.361567;44.914662;;;; +;;;;;;;;FRFR1PJSQOWLLCAR;VUW4OJTP6F;LA SEYNE SUR MER , Rue de Lisbonne;;Espace Louis Simon 74240 Gaillard;;[6.044463, 43.330293];;FRFR1EVDYE1;AVPP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.60619239;44.521057;;;; +;;;;;;;;FRFR1PXYEYOSNA3V;WQUYNQ;Parking des Tennis, Besse Sur Issole;;Rue de Moellesulaz 74240 Gaillard;;[6.497017, 43.571181];;FRFR1EWAYZ1;ADPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.496613;44.488113;;;; +;;;;;;;;FRFR1PCCMOAYZWCU;vichy1;SOLLIES-PONT, Parking BELTRAME;;35 rue Desjoyaux 42000 ST ETIENNE;;[6.075095, 43.23772];;FRFR1EWLMV1;SHMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5529;44.619558;;;; +;;;;;;;;FRFR1PVJBXXF;ZSZXKD;Ollioules, Adeto Technopole;;101 cours Fauriel 42100 ST ETIENNE;;[6.073719, 43.236609];;FRFR1EWHZH1;ETWR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.987543;44.684191;;;; +;;;;;;;;FRFR1PPA2YDVV83M;yzeurelib;Hyères, Gare SNCF;;3 rue Edmond Charpentier 42000 ST ETIENNE;;[6.696857, 43.624273];;FRFR1EWYKG1;EWPJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.952856;44.527699;;;; +;;;;;;;;FRFR1PMYXF37NMTW;HXBSAH;Toulon, Parking Ange SICCARDI;;Rue Léonard de Vinci 42530 ST GENEST LERPT;;[6.24135, 43.51516];;FRFR1EWGQV1;SAEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.92022;44.575991;;;; +;;;;;;;;FRFR1PSCDGJJ;JPWBTH;Brenon, PLACE communale des Henry;;4 Cours Jovin Bouchard 42000 ST ETIENNE;;[6.361105, 43.490803];;FRFR1EWGQV2;FNJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.836931;44.5461648;;;; +;;;;;;;;FRFR1PNWWABU;VICHY3;Hyeres, Quartier La Blocarde;;3 Boulevard Dalgabio 42000 ST ETIENNE;;[6.46939, 43.317779];;FRFR1EWVKT1;PHBP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.732183;44.567371;;;; +;;;;;;;;FRFR1PJPMAOIPEVR;yzeure1;Hyeres, Place des Aigrettes;;38 Rue Pascal Tavernier 42000 ST ETIENNE;;[6.463953, 43.208338];;FRFR1EWVKT2;PGRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.926017;44.4852;;;; +;;;;;;;;FRFR1PLG2QVY6WC6;CVWVXPR8FU;La Valette Du Var, Parking Ecoquartier ENTREVERT;;4 Cours Fauriel 42100 ST ETIENNE;;[6.357913, 43.314384];;FRFR1EFCQT1;FGWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.48477;43.128168;;;; +;;;;;;;;FRFR1PENGENCILAOS;E1O6R0CI23;Six-Fours-Les-Plages, Parking du Cros;;Place du Champ de Mars 42700 FIRMINY;;[6.23577, 43.135207];;FRFR1EAPRF2;PLWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.27106;43.123039;;;; +;;;;;;;;FRFR1PENGENGUILL;MRQEES;Les Salles-sur-Verdon, Place Gleb Sivirine;;rue Claude Odde 42000 ST ETIENNE;;[6.425536, 43.152094];;FRFR1EEJNF1;FNLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.01944;43.12855;;;; +;;;;;;;;FRFR1PENGENCAFRES;vichy5;Toulon, Parking De La Carte Postale;;3 Boulevard Jules Janin 42000 ST ETIENNE;;[6.293704, 43.323544];;FRFR1EGKMF1;FLHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.02653;43.130271;;;; +;;;;;;;;FRFR1PENGENSTPIER;BUXIERE;Gonfaron, Place de la Victoire;;14 chemin de sous marquant 42700 FIRMINY;;[6.236833, 43.139693];;FRFR1EGRWW1;FLRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.71816;43.091682;;;; +;;;;;;;;FRFR1PENGENLAGON;WQFNAU;Le Pradet, Parking Des Oursinières;;18 Rue Jean Claude Tissot 42000 ST ETIENNE;;[6.369696, 43.137889];;FRFR1EZVVA1;KAGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.902172;44.933961;;;; +;;;;;;;;FRFR1PENGENSTEMARI;RVJNYU;Puget-Ville, Rue de la planque;;38 rue Emile Zola 42500 LE CHAMBON FEUGEROLLES;;[6.010334, 43.120467];;FRFR1ECTSM2;PLZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0766;43.123831;;;; +;;;;;;;;FRFR1PENGENSTBEN;vichy4;Six-Fours-les-Plages, Quai St Pierre;;Esplanade de l'Hotel Dieu 42420 ST CHAMOND;;[6.137679, 43.288093];;FRFR1EAPRF1;PMBS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.031743;44.5474;;;; +;;;;;;;;FRFR1PRR8JDRWME6;vichy2;La Crau, Parking Boulodrome;;102 Avenue Albert Raimond 42270 ST PRIEST EN JAREZ;;[6.182072, 43.475585];;FRFR1EDZAF2;FTKH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.534731;44.5466;;;; +;;;;;;;;FRFR1PVORHPZSFUA;vichy6;Le Revest-les-Eaux, Hameau des Dardennes, Chemin du Beal;;Allée des artilleurs 42000 ST ETIENNE;;[6.229499, 43.301314];;FRFR1EDZAF1;FPCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.010815;44.7749;;;; +;;;;;;;;FRFR1PGHOQAEUSKQ;vichy7;La Seyne Sur Mer, quai de la marine;;Rue Saint Simon 42000 ST ETIENNE;;[5.736809, 43.50392];;FRFR1EAJQL1;FTAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.8226;44.4429;;;; +;;;;;;;;FRFR1PLQAKGFHXPA;montluconat;Hyeres, Parking Piscine Municipale;;1 cours Gambetta 42800 RIVE DE GIER;;[5.784954, 43.471881];;FRFR1EAZZE1;FFAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.03355;44.4287;;;; +;;;;;;;;FRFR1PDCAR0JL1LK;moulinsvi;Hyeres, Parking De La Capte;;rue du Chazeau 42700 FIRMINY;;[6.021739, 43.107612];;FRFR1EAFBQ1;RRJL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8223;43.12679;;;; +;;;;;;;;FRFR1PVWBTJN8VI5;ntjbdngwvua;Toulon, Parking Font Pre Borne 1;;Aire pays du Gier 42420 ST CHAMOND;;[6.024325, 43.106136];;FRFR1ELRMC1;RVQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.827471;43.087644;;;; +;;;;;;;;FRFR1PO2JITRMIMN;source;Toulon, Parking Font Pre Borne 2;;7 Place Anatole France 42000 ST ETIENNE;;[6.029939, 43.553296];;FRFR1ESVWU1;PWCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.729531;43.141124;;;; +;;;;;;;;FRFR1PGWXQ3IKEQL;moulinspr;Toulon, Rue Antoine Bonnet;;Impasse Saint Exupéry 42160 ANDREZIEUX BOUTHEON;;[6.143279, 43.228023];;FRFR1EMUUY1;RTNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.738928;43.49274;;;; +;;;;;;;;FRFR1PLAMORX8BZO;neuillylereal;Toulon, Rue Henri Poincaré;;1 boulevard Pasteur 42160 ANDREZIEUX BOUTHEON;;[5.847451, 43.137181];;FRFR1EKBDA1;PYCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.869095;43.12151;;;; +;;;;;;;;FRFR1PVK0TQGFDSG;mairie;La Crau, Parking Gressler;;26 rue des Bullieux 42160 ANDREZIEUX BOUTHEON;;[6.144734, 43.226478];;FRFR1EREGW1;RQFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.30074;43.100631;;;; +;;;;;;;;FRFR1PDAWXONRZ2Q;abrest;Toulon, Plage du Mourillon Entrée Ouest 2;;3 rue Ambroise Paré 42000 ST ETIENNE;;[6.610836, 43.2172196];;FRFR1EFFMQ1;RYPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.56418479;44.4554;;;; +;;;;;;;;FRFR1PZU2CHSGYDT;noyantmarche;Six-Fours-Les-Plages, Parking de la Coudoulière, Avenue du Cap Nègre;;Rue Augustin Dupré 42000 ST ETIENNE;;[6.813964, 43.525115];;FRFR1EYSHF1;PSAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.6159;44.7616;;;; +;;;;;;;;FRFR1PC3JINN4OUP;moulinsjm;La Crau, Parking Bonnaud;;2 Avenue Albert Raimond 42270 ST PRIEST EN JAREZ;;[5.75708, 43.608633];;FRFR1EYGHE1;QDGJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.072981;44.535099;;;; +;;;;;;;;FRFR1PLLIKBWHPL24330;R13ICZC6D5;Toulon, Rue Chalucet;;6 Cours du 11 novembre 42800 RIVE DE GIER;;[6.382547, 43.605991];;FRFR1EHAGV1;PQFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.55886;44.93391;;;; +;;;;;;;;FRFR1PEQRCK1OHOC;saintgerfos;Le Luc, Parking Rond point de l'Europe;;32 avenue Rochetaillée 42000 ST ETIENNE;;[6.243153, 43.774849];;FRFR1EWWEL1;TKAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.82656289;44.767371;;;; +;;;;;;;;FRFR1PZCT8UV6EN8;saintgerandlp;Gareoult, Parking Jean Monnet;;2 Rue Constant Milleret 42000 ST ETIENNE;;[5.752095, 43.606096];;FRFR1EAMBQ1;TJDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.225247;44.781915;;;; +;;;;;;;;FRFR1PAVGUJC2YHB;lapalisseve;Figanieres, 4 Avenue des Marthes;;70 Boulevard Alexandre de Fraissinette 42000 ST ETIENNE;;[6.685957, 43.45612];;FRFR1EWMLG1;TGWR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3387671;45.0443;;;; +;;;;;;;;FRFR1PRITQEFPOJM;saintpourcain;Cuers, Chemin De La Guinguette;;Rue Mathieu de Bourbon 42160 ANDREZIEUX BOUTHEON;;[6.683481, 43.453692];;FRFR1ELKBF1;TLQY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.344754;44.94441185;;;; +;;;;;;;;FRFR1PJAQ9DIPMFU;centreroutier;Cuers, Avenue Mal De Lattre De Tassigny;;51 cours Fauriel 42100 ST ETIENNE;;[6.074581, 43.148347];;FRFR1EUQTG1;QDYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.000198;44.6747;;;; +;;;;;;;;FRFR1PDOAFWLQLHH;saintvictorla;Fayence, Avenue Rene Cassin;;9 rue Claudius Cottier 42270 ST PRIEST EN JAREZ;;[6.342794, 43.390503];;FRFR1EZYTF1;QAVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.805145;44.674562;;;; +;;;;;;;;FRFR1PDKIVXKZFGA;MFMJGR;Entrecasteaux, Parking Le Collet;;23 rue Docteur Remy Annino 42000 ST ETIENNE;;[6.150598, 43.083425];;FRFR1EZMFB1;RLJZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.86157;44.7927;;;; +;;;;;;;;FRFR1PLYZYQRLMOW;PING60TSNE;Lorgues, 10 Rue Du 8 Mai 1945;;Place bellevue 42100 ST ETIENNE;;[6.082015, 43.336062];;FRFR1EZVDK1;RKZD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.862383;44.31360432;;;; +;;;;;;;;FRFR1PBRUTSG;BKPTAV;La Garde-Freinet, Rue De La Mairie;;Rue Basses des Rives 42000 ST ETIENNE;;[5.841899, 43.117565];;FRFR1EZPYT1;RKUT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.811745;43.626467;;;; +;;;;;;;;FRFR1PTVIF7DKLUF;moulinsre;La Mole, Parking Rue Du Four;;Rue Jules serret 42000 ST ETIENNE;;[5.840185, 43.111404];;FRFR1EZMRY1;RPLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.03984;43.143838;;;; +;;;;;;;;FRFR1PWRTQ7PSGYO;gannat;Les Mayons, Avenue Pierre Gaudin;;Place Chipier 42800 RIVE DE GIER;;[5.84677031, 43.11675785];;FRFR1ETGMH1;RPKQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.040289;43.150558;;;; +;;;;;;;;FRFR1PGQOVRUFGXB;chantelle;La Londe-Les-Maures, Place Victor Hugo;;6 rue de la Plagne 42000 ST ETIENNE;;[6.090382, 43.303283];;FRFR1EKTGC1;RLQF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.426889;43.246609;;;; +;;;;;;;;FRFR1PTY2KJ0CUTI;donjon;Le Lavandou, Boulevard Des Acacias;;79 rue de la Sablière 42000 ST ETIENNE;;[5.813819, 43.109906];;FRFR1EKSSD1;GRUS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.027701;43.075105;;;; +;;;;;;;;FRFR1PQHFGR3GEVG;creuzierlev;Gonfaron, Pont de Maurice;;55 rue Royet de la Bastie 42420 ST CHAMOND;;[5.848177, 43.116827];;FRFR1EKTFQ1;QAMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.925816;43.288929;;;; +;;;;;;;;FRFR1PFQ7UX0N0KS;jaligny;La Londe-Les-Maures, Rue Des Poilus;;1 Place Pasteur 42800 RIVE DE GIER;;[6.125679, 43.119765];;FRFR1ELQDT1;QAQA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.304044;43.29057;;;; +;;;;;;;;FRFR1PDBUNVRBU3K;ebreuil;Le Lavandou, Boulevard De Lattre Tassigny;;13 rue Antoine roche 42000 ST ETIENNE;;[6.074425, 43.092958];;FRFR1ELETV1;TPKX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.938863;43.112475;;;; +;;;;;;;;FRFR1PKHNTCSOFD9;chevagnes;La Garde, Parking Gymnase J.Troin;;Place Jean Plotton 42000 ST ETIENNE;;[6.302705, 43.237316];;FRFR1ELAMY1;TMYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.910463;43.191311;;;; +;;;;;;;;FRFR1PR8SVAECJXV;lapalissepa;Puget-Ville, 1-6 Rue des Cantons;;2 Place Jean Moulin 42000 ST ETIENNE;;[6.185457, 43.300398];;FRFR1ELPKL1;GRJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.006072;43.191434;;;; +;;;;;;;;FRFR1PE6UKE8TVSU;cussetcent;Carces, Parking de la Respelide;;Place Fourneyron 42000 ST ETIENNE;;[6.535475, 43.590682];;FRFR1EGXVH2;PUMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.89433;43.453845;;;; +;;;;;;;;FRFR1PRPDMF5LYE0;cognatlyonne;Pignans, Avenue De La Mairie;;13 Boulevard du 8 Mai 1945 42000 ST ETIENNE;;[6.073943, 43.408111];;FRFR1ELNHZ1;PHBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.884482;43.207992;;;; +;;;;;;;;FRFR1PWOJ0SHUXRA;souvignymou;Pourrieres, Impasse Des Romarins;;Rue Emile Zola 42650 ST JEAN BONNEFONDS;;[6.064265, 43.404268];;FRFR1EGXVH1;PSHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.801015;43.12512;;;; +;;;;;;;;FRFR1PSCG80SXBHI;saintyorbv;Pourcieux, Rue Gustave Aubert;;10 rue Grenette 42000 ST ETIENNE;;[5.754467, 43.197869];;FRFR1EKZUW3;FDNJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.806379;43.450901;;;; +;;;;;;;;FRFR1PZISHTQLCPD;vallonullym;Le Pradet, Place de l’Armée d’Afrique;;42 rue des aciéries 42000 ST ETIENNE;;[6.222372, 43.427744];;FRFR1ELFHV1;PZAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.811991;43.126242;;;; +;;;;;;;;FRFR1PQWFFJSO2PP;avermes;Le Pradet, Rue Paulin David;;5 Boulevard Waldeck Rousseau 42400 ST CHAMOND;;[6.50678, 43.710943];;FRFR1ELWZQ1;PVMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.644595;43.128749;;;; +;;;;;;;;FRFR1PMLRG4EJHTC;UJHUNV;Ponteves, Chemin de Brignoles;;8 rue de l'artisanat 42390 VILLARS;;[6.072607, 43.150988];;FRFR1ELMFK1;SAVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.708931;43.196785;;;; +;;;;;;;;FRFR1PO2O5X8CIOC;FRY0Q66XR9;Pierrefeu-Du-Var, 2 Avenue Léon Blum;;Esplanade Paul et Guy Vantajol 42000 ST ETIENNE;;[5.85204, 43.105236];;FRFR1ELVML1;VLAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.960407;43.080577;;;; +;;;;;;;;FRFR1POURCDLLPBN;L4NKVCKURV;Ollioules, Place Lemoyne;;26 rue de la Presse 42000 ST ETIENNE;;[6.150075, 43.524758];;FRFR1EKZUW1;VLAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.03717;43.101577;;;; +;;;;;;;;FRFR1PBK6QUX36OK;WVFSVWVVI6;Pierrefeu-Du-Var, 2 Rue Dr Edmond Mercier;;3 rue de l'artisanat et du concept 42000 ST ETIENNE;;[6.30944049, 43.23924335];;FRFR1EKZUW2;KAQS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.927429;43.120048;;;; +;;;;;;;;FRFR1PFHPCMFYE1W;CSC0TUMVZJ;Ramatuelle, Boulevard Du Huit Mai 1945;;Rue Bossuet 42000 ST ETIENNE;;[5.771902, 43.176461];;FRFR1ELCQD1;KAQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.907343;43.117049;;;; +;;;;;;;;FRFR1PIEBNZSOUQ4;PVQEXFHYMO;Les Adrets-De-L'Esterel, Place de la Mairie;;Esplanade Melchior Mitte de Chevrières 42400 ST CHAMOND;;[6.069992, 43.096204];;FRFR1EKTED1;JWKN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.935913;43.09991;;;; +;;;;;;;;FRFR1PGW64CPZFD3;PPSSYUNFPG;Rians, Avenue Franklin Roosevelt;;32 Boulevard Aristide Briand 42650 STJEAN BONNEFONDS;;[6.450228, 43.597875];;FRFR1EHHHH1;JVTB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9177624;43.501255;;;; +;;;;;;;;FRFR1PWSKBVB1WJM;EDRVAH0JV8;Ampus, 8 Boulevard Georges Clemenceau;;12 rue Gerentet 42000 ST ETIENNE;;[6.039215, 43.39442];;FRFR1EAPBP1;JUXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.889052;43.181444;;;; +;;;;;;;;FRFR1PBLHRLNQFGY;L4TPSNGBZU;Aiguines, Place De La Mairie;;4 Place Loui Comte 42400 ST CHAMOND;;[6.556539, 44.790737];;FRFR1EAPBP2;JWTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.442335;43.597668;;;; +;;;;;;;;FRFR1PUTHD3KC8DN;C68QZRW5IK;Rians, Rue du Lavoir Neuf;;11 rue Lamartine 42000 ST ETIENNE;;[5.891595, 44.688716];;FRFR1ELFXA1;JUYK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.691177;43.142403;;;; +;;;;;;;;FRFR1PPFK6JNKO3Z;OYTKDNTXGM;Puget-Sur-Argens, Rue Jubert;;37 Place Massenet 42000 ST ETIENNE;;[6.278045, 44.543139];;FRFR1ERCWT3;JUYK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.636401;43.075068;;;; +;;;;;;;;FRFR1PXO3MVEDDXB;KKT7GPURKL;Puget-Sur-Argens, Rue Gabriel Peri;;1 Rue Simone de Beauvoir 42270 ST PRIEST EN JAREZ;;[6.40560759, 45.0356367];;FRFR1EBMQB1;JVTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.851185;43.071083;;;; +;;;;;;;;FRFR1PLLID3GFDC93UL5;QNZBOX38KS;La Crau, 01-03 Boulevard de la République;;Parc Métrotech 42650 ST JEAN BONNEFONDS;;[6.510674, 44.97595];;FRFR1ENQZV1;JXAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.125282;43.636472;;;; +;;;;;;;;FRFR1PV9N0HA5IKV;GFHM4A7HUU;Le Cannet-Des-Maures, 48 Avenue du 8 mai 1945;;Avenue Mendes France 42270 ST PRIEST EN JAREZ;;[6.197639, 44.565323];;FRFR1EBMQB2;KAHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.627985;43.4124305;;;; +;;;;;;;;FRFR1PHDIXLRAADA;UVZMY6BLLA;Hyères, Parking ARROMANCHES;;23 Rue Michelet 42000 ST ETIENNE;;[6.498394, 44.824989];;FRFR1EYNTC2;LABX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.976662;43.128623;;;; +;;;;;;;;FRFR1PQVUXSYMJAL;FHJTIMLKOG;Forcalqueiret, Parking La Farandole;;8 rue Eugene Joly 42000 ST ETIENNE;;[5.826448, 44.313627];;FRFR1EYNTC1;JXTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.704812;43.760432;;;; +;;;;;;;;FRFR1PX9PLF6UY7Y;ELNZBQTZOX;SIX-FOURS-LES-PLAGES, Rue du Revest;;43 Rue Maurice Bonnevialle 42420 ST CHAMOND;;[5.856609, 44.231125];;FRFR1ERCWT2;JYQN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.634532;43.342474;;;; +;;;;;;;;FRFR1PXFZEEO1KRT;QQ4AFDK4RT;Six-Fours-les-Plages, Rue de Saint Mandrier;;67 rue de Terrenoire 42000 ST ETIENNE;;[6.490031, 44.844086];;FRFR1ERCWT4;JYQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.694532;43.444287;;;; +;;;;;;;;FRFR1PUJGVB4DZD2;RH3HDEMXJD;Hyères, ZAC Le Palywestre;;rue de la Montat 42000 ST ETIENNE;;[6.204541, 44.62348];;FRFR1ERCWT1;KAHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.233225;43.393343;;;; +;;;;;;;;FRFR1PEIC8ALLHQN;EAWOEQP1NJ;Rocbaron, Parking Jean Moulin;;4 rue de l’Université 42000 ST ETIENNE;;[6.169101, 44.64284];;FRFR1EYAUT1;JXAQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.932443;43.340772;;;; +;;;;;;;;FRFR1PGUOMXU8IF3;RBTJQRBXH5;Six-Fours-Les-Plages, Parking Square des Bains;;rue dela Talaudiere 42000 ST ETIENNE;;[6.231873, 44.668239];;FRFR1ERPCV1;JVFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.93622;43.723321;;;; +;;;;;;;;FRFR1PVKXMXT;YFU3HJXG3L;Six-Fours-Les-Plages, Avenue de l'Europe;;2979 ROUTE DE VALINCHES 42560 MAROLS;;[6.499543, 44.564163];;FRFR1EHDWX1;JVFD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.932108;43.33822;;;; +;;;;;;;;FRFR1PBTDFPZ;FA9HZSEBKE;Hyères, Place Gabriel Péri;;2 Rue Antoine Lavoisier 17440 AYTRE;;[6.22918, 44.4649];;FRFR1EFFTG1;JWKN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.858855;43.185573;;;; +;;;;;;;;FRFR1PWYRLXZ;GRUGMK6YCJ;Carqueiranne, Rue De La Liberation;;Rue de l'industrie 74100 ETREMBIERES;;[6.326756, 44.695058];;FRFR1ERUXY1;KBEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.013545;43.442627;;;; +;;;;;;;;FRFR1PLLIJWV6HQ25LEY;BBB8GR3JG1;Collobrières, Notre Dame;;12 Route des Setques 62219 WISQUES;;[6.498638, 44.562874];;FRFR1ESFHH1;LAEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.785255;43.166973;;;; +;;;;;;;;FRFR1PM1POXHVSQW;HQJOCGGRNM;Carnoules, Avenue Colonel Fabien;;15 avenue de la Fontaine Saint-Martin 94460 VALENTON;;[6.5574, 44.4952];;FRFR1EWRUE1;JYRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.566681;43.562878;;;; +;;;;;;;;FRFR1PLLIIL4KRO26MRR;NQ6WNF6GJD;Callas, Chemin Des Frayeres;;14 Allée du lac de Tignes 73290 LA MOTTE SERVOLEX;;[5.928601, 44.675988];;FRFR1ERZAX1;PUMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.012054;43.130591;;;; +;;;;;;;;FRFR1PXLQAADPOMW;COEZJEA3UI;Brignoles, 3 Rue Bruneck Brunico;;Rue Louis-Joseph Gay-Lussac 76150 LA VAUPALIERE;;[6.277534, 44.547316];;FRFR1ERJRQ1;RXYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.121209;43.127107;;;; +;;;;;;;;FRFR1POIMFWKQU3A;LCSCVQIEWU;Brignoles, 7 Cours de la Liberte;;1 Avenue Robert Schuman 77700 COUPVRAY;;[6.632719, 44.622584];;FRFR1ERKGV1;RUKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.765235;43.11232;;;; +;;;;;;;;FRFR1PLBVPKUWE5C;ZH6GCTOHJB;La Cadiere-D'Azur, 105-142 Avenue Henri Jansoulin;;Route de Saint Galmier 42140 CHAZELLES SUR LYON;;[6.580031, 44.750171];;FRFR1ENQZV2;RULW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.21490165;43.452337;;;; +;;;;;;;;FRFR1PVBMK6MTPKS;KAKUUL;Cabasse, 21-22 Rue Jules Ferry;;Chemin du Rocher St Jean 83400 HYERES;;[5.718155, 44.428729];;FRFR1EQFBR1;RVRK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9435;43.308971;;;; +;;;;;;;;FRFR1POEGY4OXRSX;SY0KHPYENM;Comps-Sur-Artuby, Avenue De La Fontenouille;;258 route de Caderousse 84100 ORANGE;;[5.694359, 44.312791];;FRFR1EQFBR2;RWPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.78992;43.371555;;;; +;;;;;;;;FRFR1PECQW9RJZ8K;YMML6GJU6C;La Crau, 02 Place du Maréchal De Lattre Tassigny;;28 Rue de Bretagne 35133 Beauce;;[6.65137, 44.657303];;FRFR1EWGRL2;JUNW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.929132;43.470632;;;; +;;;;;;;;FRFR1PMQXVLYFBDW;FUHOEZSQEV;La-Seyne-Sur-Mer, Avenue de Rome;;ZI Les Varennes 03450 Ébreuil;;[6.865808, 44.699294];;FRFR1EVCDY1;KAQX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.14181;43.311571;;;; +;;;;;;;;FRFR1PMP0UEPI09O;ZHXKZIMNZM;Cotignac, 621 rue Ferraillon;;17 Rue Alouettes Sénia 94320 Thiais;;[6.58674, 44.933873];;FRFR1EQQMG1;KAQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.751882;43.473247;;;; +;;;;;;;;FRFR1PG9SVXXKLU9;HM8S9VMJ8N;Collobrières, Chemin De Sainte Croix;;32 rue Edouard Aubert 91700 Fleury Merogis;;[6.84759393, 44.71980038];;FRFR1ELCEV1;JYRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12474;43.617906;;;; +;;;;;;;;FRFR1PVNW0SO2WZX;CXQHLM;Le Castellet, 3054 Route des Sources;;33 Route de Saint-Etienne 42110 Feurs;;[5.812786, 44.272603];;FRFR1EZKUY1;JWTH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.900207;44.08017094;;;; +;;;;;;;;FRFR1PR7NWGYM2SZ;GHRMESD8H2;Carqueiranne, Avenue Jean Jaures;;7 Rue des Ronzières 69530 BRIGNAIS;;[6.649073, 44.661324];;FRFR1EYZVK1;KBEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9321824;44.195232;;;; +;;;;;;;;FRFR1PIOCMBEAY1L;YOTTUNSLP2;Chateaudouble, Saint-Eloi;;ZA Le Pêcher 42120 MONISTROL SUR LOIRE;;[5.824664, 44.315547];;FRFR1EFKDK1;JWAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.616385;46.23258;;;; +;;;;;;;;FRFR1PZDNIEIV5PZ;IGOBQMLJPP;La Celle, Rue De La Republique;;1 Rue Prudent Harry RD841 45120 CORQUILLEROY;;[5.89593426, 44.29475516];;FRFR1ENKXF2;LABX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.333852;43.120398;;;; +;;;;;;;;FRFR1PHGWIUU7WVJ;UELO0XXIY8;L'Argentière-La-Bessee, Place de la Gare;;5 Avenue de la Libération 45700 VILLEMANDEUR;;[6.481829, 44.551008];;FRFR1ENKXF1;LAEN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.417705;43.103655;;;; +;;;;;;;;FRFR1PXHQSUJ0P53;O3TC1Q6PSG;Devoluy, La Joue du Loup;;25 RD2007 45200 SOLTERRE;;[6.492683, 44.562232];;FRFR1EWVSM1;JWAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.153919;43.133481;;;; +;;;;;;;;FRFR1PGM3IKXS9DT;BD2JDOGVLL;Chorges, Parking des Ecoles;;120 Rue de l'Eglise 45200 PAUCOURT;;[5.471063, 44.389375];;FRFR1EWNHW1;JUNW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0650575;45.91174;;;; +;;;;;;;;FRFR1PGWQCTT01WA;NEKQQUXFMO;Le Monêtier-Les-Bains, Hôtel Les Glaciers;;286 Rue Marcel Donette 45700 PANNES;;[6.689987, 44.594376];;FRFR1EWKDT1;JUVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.948059;43.091725;;;; +;;;;;;;;FRFR1PUGJRF0YHEZ;TGGQTZ;Le Monêtier-Les-Bains, Route de Grenoble;;2 Route d'Oussoy 45700 LOMBREUIL;;[5.613159, 44.415394];;FRFR1EWYDC1;JUVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0729027;46.10196059;;;; +;;;;;;;;FRFR1POFXXVP8UFL;AVVJGL;La Batie-Neuve, Place de la Mairie;;283 rue de la Mairie 45120 CONFLANS SUR LOING;;[6.193801, 44.81712];;FRFR1EWEJM1;JUXE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.907031;45.857483;;;; +;;;;;;;;FRFR1PZKPBHRQOWL;WLQ1UX3WUN;Puy-Saint-Vincent, Le Laux;;40 Grande Rue 45700 CHEVILLON SUR HUILLARD;;[6.027689, 44.780812];;FRFR1EWZZJ1;QFHU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.877614;46.316175;;;; +;;;;;;;;FRFR1PUATPZ39SAM;YPCKYR;Laragne-Monteglin, Parking Veragne;;13 Avenue du Château 45120 CEPOY;;[6.075528, 44.683441];;FRFR1EDHSJ2;QGAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.934264;45.340454;;;; +;;;;;;;;FRFR1PVM0SB9N68T;SAURCW;Ribiers, Place de la Fontaine;;271 Rue du Gros Moulin 45200 AMILLY;;[6.077297, 44.682134];;FRFR1EDHSJ1;RKPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.975751;43.079788;;;; +;;;;;;;;FRFR1PGDQJEBUTWF;UIM5AFHJMR;Vallouise, Pelvoux;;102 Rue des Ponts 45200 AMILLY;;[6.680047, 44.571774];;FRFR1EWGRL1;NRKQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.811146;45.60489804;;;; +;;;;;;;;FRFR1POTTLB5IUZU;RKLKJ18RNS;Ancelle, Place du Groupe Scolaire;;Route de l'Aéroport 59810 LESQUIN;;[6.580566, 44.649808];;FRFR1ERSCT1;NANQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.17285285;43.125866;;;; +;;;;;;;;FRFR1PV3RPWWAZKE;MSHPUS;Chabottes, Parking Haute Plaine;;26 Place du Cas Rouge 45700 VIMORY;;[6.624609, 44.670518];;FRFR1ERNGL1;MZRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.74897911;46.03897;;;; +;;;;;;;;FRFR1PKZMOD3XW3U;AWVBDU;Saint-Jean-Saint-Nicolas, Parking de la Poste;;606 Boulevard du Mercantour 06200 NICE;;[6.721293, 44.868338];;FRFR1ELFXA2;MXTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.88973581;43.137815;;;; +;;;;;;;;FRFR1PD2IOI9VPRG;MRKKQCRF0B;Embrun, Stade - Champs de Mars;;82 Rue Francis Laur 42210 MONTROND LES BAINS;;[6.672902, 44.914662];;FRFR1ELMFM1;NCSP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.13972955;43.117208;;;; +;;;;;;;;FRFR1PFTHFZJ44NR;L2PVKCY1TX;Espinasses, Place Amédée Turel;;118 Route de Villedieu 50400 YQUELON;;[5.752325, 44.521057];;FRFR1ELLNQ1;NEKG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.385347;43.112478;;;; +;;;;;;;;FRFR1PKDEIJGQQJG;BPQKMWBSOI;Orcières, Merlette - Casse Blanche;;1 rue de Quimperlé 29340 RIEC SUR BELON;;[5.72954, 44.488113];;FRFR1ELPBQ1;NDKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.879068;43.12525;;;; +;;;;;;;;FRFR1PH7UOMYFMJX;BWIXDHWDKU;Embrun, Espace de la Roche;;195 Route de Retournac 43200 YSSINGEAUX;;[5.701949, 44.619558];;FRFR1ELGVM1;NDEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.904066;43.091278;;;; +;;;;;;;;FRFR1PC6TP29MAZB;HMCSUP77H7;Les Orres, Parking Horizon;;2 Rue Ferrer 42000 ST ETIENNE;;[6.325711, 44.684191];;FRFR1ENJSS2;MWYK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.231455;45.29281583;;;; +;;;;;;;;FRFR1PBSTWKUXLHX;ED9WZC9LMX;Devoluy, Superdevoluy - Parking Lilas;;Place de Verdun 17000 LA ROCHELLE;;[6.403827, 44.527699];;FRFR1ELDUB1;NHAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.222468;44.55730613;;;; +;;;;;;;;FRFR1PYTUL8DKYPE;AJT1WFBIB4;Chorges, Place du Grand Logis;;Rue de l'arsenal 17000 LA ROCHELLE;;[6.361567, 44.575991];;FRFR1ELHSZ1;MVZZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.911434;44.92944338;;;; +;;;;;;;;FRFR1PULRXO0HBQH;PXZORUFFWG;Risoul, Office de Tourisme;;Place du Maréchal FOCH 17000 LA ROCHELLE;;[6.60619239, 44.5461648];;FRFR1ELCVP1;MXLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.035542;44.35821959;;;; +;;;;;;;;FRFR1PFMDPPQ40YA;MQK82BCMDT;La Roche-De-Rame, Voie Communale 2;;3 Rue Chasseloup-Laubat 17000 LA ROCHELLE;;[6.496613, 44.567371];;FRFR1ELGKD1;MXSY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.31861937;45.290997;;;; +;;;;;;;;FRFR1PB6QDXR7OOU;MHLFDHWBOA;Serres, Rue Marius Meyer;;2 Rue Jules Audry 45570 DAMPIERRE EN BURLY;;[6.5529, 44.4852];;FRFR1ESFLB1;MXSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.357859;45.046877;;;; +;;;;;;;;FRZTLE22AC64859;SKIDXQPPDJ;Orpierre, Parking UCPA;;Rue de la Croix-Rouge 85280 LA FERRIERE;;[5.987543, 43.128168];;FRFR1ERVSE1;MXRT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.23269785;45.672011;;;; +;;;;;;;;FRZTLE22AC64860;EMWSK7UUY4;Guillestre, Rue de la Fontloube;;9 Avenue de la Padrouze 66300 THUIR;;[5.952856, 43.123039];;FRFR1ERAPM1;XAEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0676798;44.091577;;;; +;;;;;;;;FRZTLE22AC64862;WRN07GJM7H;Saint-Veran, Parking Beauregard;;4 rue Jean Servanton 42000 ST ETIENNE;;[5.88738, 43.12855];;FRFR1EVMWD1;PEEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.27552;43.846039;;;; +;;;;;;;;FRZTLE22AC64861;GB6G3PUH3V;Saint-Chaffrey, Le Coolidge;;Place de la mairie 63380 OLLIERGUES;;[5.92022, 43.130271];;FRFR1EVAZS1;PEFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.278273;45.689927;;;; +;;;;;;;;FRZTLE22AC61828;BV4HG5JPFC;Molines-En-Queyras, Clot la Chalpe;;Lieu dit DORE 63480 VERTOLAYE;;[5.836931, 43.091682];;FRS89ELXEH2;WYUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.631899;45.985625;;;; +;;;;;;;;FRZTLE22AC61827;ZDR9Q4PKYJ;Val Buech-Meouge, Parking Mairie- Château neuf de chabre;;Montée du crêt 73100 MOUXY;;[6.732183, 44.933961];;FRFR1EWWRZ1;SMUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.233294;45.15396959;;;; +;;;;;;;;FRZTLE22AC61826;QNMZFMYOCR;Guillestre, Champ de Foire;;Rue du Perray 45210 Ferrières-en-Gâtinais;;[5.926017, 43.123831];;FRFR1ENCNN1;QFDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.993895;45.852431;;;; +;;;;;;;;FRZTLE22AC61825;MTR64UDKFK;Laragne-Monteglin, Place des Lavandes;;18 Rue nationale 45190 BEAUGENCY;;[6.48477, 44.5474];;FRFR1EUSBZ1;WUML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.176766;45.62297234;;;; +;;;;;;;;FRZTLE22AC66816;GXLFC4JZQM;Le Poët, Place de la Bascule;;Impasse Jules Lemaître 45190 BEAUGENCY;;[6.27106, 44.5466];;FRFR1EJSBT1;MVQW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.625908;45.0914135;;;; +;;;;;;;;FRZTLE22AC66815;N0APSWIASX;Embrun, Chemin du Plan d Eau;;59 Avenue de Vendôme 45190 BEAUGENCY;;[6.01944, 44.7749];;FRFR1ENJSS1;TFKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.803608;45.588987;;;; +;;;;;;;;FRZTLE22AC66814;JDWQT9CAE8;Embrun, Esplanade de la Resistance;;8 Allée de la Charpinière 42330 SAINT GALMIER;;[6.02653, 44.4429];;FRFR1ELWMV1;GSRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.806335;45.584676;;;; +;;;;;;;;FRZTLE22AC66813;GJ3MKVO5IB;Rosans, Camping Municipal;;6 Rue Louis Leprince Ringuet 38500 VOIRON;;[5.71816, 44.4287];;FRFR1ELYQC1;MUDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.699922;45.598443;;;; +;;;;;;;;FRZTLE24DC70175;MYQBUNOQVJ;Vars, Office de Tourisme;;5 Rue Claude Odde 42000 ST ETIENNE;;[5.902172, 43.12679];;FRFR1EVCPS1;EXAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.798958;43.562956;;;; +;;;;;;;;FRLUMEBRETTE11;YEA0UXRKNY;L'Epine, Place du 19 Mars 1962;;20 Boulevard de l'industrie 42170 ST JUST ST RAMBERT;;[6.0766, 43.087644];;FRFR1EVUKK1;NVBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.698561;43.131758;;;; +;;;;;;;;FRLUMEBANKABLE1ROQUEALRIC1;A6GGB1AQMP;La Chapelle-En-Valgaudemar, Immeuble Les Glaciers;;Zone artisanale de Chailas 63650 La Monnerie-le-Montel;;[6.031743, 43.141124];;FRFR1EPWLA1;XKHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.571085;43.732476;;;; +;;;;;;;;FRLUMEVVFRECHASTEL11;WRWQNR;Saint-Firmin, Parking sous la poste;;159 Rue du Lieutenant-Colonel de Montbrison 92500 RUEIL-MALMAISON (92);;[6.534731, 43.49274];;FRFR1EABRG2;NTBE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.753034;43.738191;;;; +;;;;;;;;FRLUMEVVFAZURNEIGE11;GWLPHY;Saint-Bonnet-En-Champsaur, Gendarmerie;;1 Avenue de Bois Préau 92500 RUEIL-MALMAISON (92);;[6.010815, 43.12151];;FRFR1EABRG1;XMGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.066481;43.196687;;;; +;;;;;;;;FRLUMEVVFLOURIOUCLAR11;DVX2BDOT0V;Saint-Bonnet-En-Champsaur, Place Waldems;;3 Avenue Paul Doumer 92500 RUEIL-MALMAISON (92);;[5.8226, 43.100631];;FRFR1ETTZL1;SFAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.062531;43.195169;;;; +;;;;;;;;FRZKAE24DC90066;LHNDJZAIFZ;Vars, Les Claux;;13 Rue des Frères Lumière 92500 RUEIL-MALMAISON (92);;[6.03355, 44.4554];;FRFR1EJTMT1;XMUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.061688;43.536283;;;; +;;;;;;;;FRZKAE22AC90067;R3FECEWLZD;Saint-Clement-Sur-Durance, Maison du Tourisme;;21 Rue Charles Drot 92500 RUEIL-MALMAISON (92);;[6.8223, 44.7616];;FRFR1EJBZF1;SCRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.058906;43.195848;;;; +;;;;;;;;FRZMAE22AC60380;LRP071S55P;Mont-Dauphin, Le Fort;;17 Avenue de Colmar 92500 RUEIL-MALMAISON (92);;[5.827471, 44.535099];;FRFR1EJCVS1;SMLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.518632;43.536849;;;; +;;;;;;;;FRZMAE22AC57150;G03APSS9V1;Cervières, Route du Col d'Izoard;;4 Rue Auguste Perret 92500 RUEIL-MALMAISON (92);;[6.729531, 44.93391];;FRFR1EJCVS2;MTYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3619;43.729968;;;; +;;;;;;;;FRZMAE22AC96887;UDPQ78VIEG;Val-Des-Pres, Parking l Enclare;;11 Rue du Lieutenant Colonel Driant 92500 RUEIL-MALMAISON (92);;[6.738928, 44.767371];;FRFR1EJBZF2;MRVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.898863;43.134693;;;; +;;;;;;;;FRZSUE22AC36279;UEVBPQ8MI8;Aspres-Sur-Buëch, Office de Tourisme;;84-86 Rue du Lieutenant Colonel de Montbrison 92500 RUEIL-MALMAISON (92);;[6.869095, 44.781915];;FRFR1EVFBU1;MSQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.072311;43.407623;;;; +;;;;;;;;FRZSUE22AC36280;EAMPVLYEPK;Aspremont, Parking Coccimarket;;63 Avenue du 18 juin 1940 92500 RUEIL-MALMAISON (92);;[6.30074, 45.0443];;FRFR1EVXAH1;MURY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0406;43.403983;;;; +;;;;;;;;FRZKAE22AC38835;BTR9WYDZA8;Saint-Julien-En-Beauchêne, Aire du Beauchêne;;174 route de l'Empereur 92500 RUEIL-MALMAISON (92);;[6.56418479, 44.94441185];;FRFR1EAAFH2;MVEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.016902;43.407248;;;; +;;;;;;;;FRZKAE24DC38834;UTZ2KU4Z0Y;Orcières, Parking de la Poste;;2 Bis Place du 8 mai 1945 92500 RUEIL-MALMAISON (92);;[6.6159, 44.6747];;FRFR1EVCQB1;MUWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.482466;43.406661;;;; +;;;;;;;;FRZMAE22AC61743;AQKP45UGO1;Savines-Le-Lac, Rue du Stade;;98 Avenue Albert 1er 92500 RUEIL-MALMAISON (92);;[6.072981, 44.674562];;FRFR1EAAFH1;MUUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1298;43.782955;;;; +;;;;;;;;FRBHM66666666;CHQCBVH6YS;Reallon, La Station;;2 Avenue Albert 1er 92500 RUEIL-MALMAISON (92);;[6.55886, 44.7927];;FRFR1EAAFH3;TECZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0778;43.12415;;;; +;;;;;;;;FRBHM777777;YMTDSVDIJN;Crevoux, Pra Vesqua;;8 Avenue Édouard Belin 92500 RUEIL-MALMAISON (92);;[5.82656289, 44.31360432];;FRFR1EVXAH2;TCND1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.133562;43.078878;;;; +;;;;;;;;FRZMAE22AC60506;CTXCZNNDNM;Embrun, Route de Chalvet;;50 boulevard de la Saussaye 92200 NEUILLY-SUR-SEINE (92);;[6.225247, 43.626467];;FRFR1EAAMS2;TCFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.983741;43.439098;;;; +;;;;;;;;FRZMAE22AC60498;B0LKPLIYGT;Les Orres, Parking Bois Means;;60 Boulevard Maillot 92200 NEUILLY-SUR-SEINE (92);;[6.3387671, 43.143838];;FRFR1ERMMH1;TFAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.827597;43.1488;;;; +;;;;;;;;FRZTLE22AC63418;R4UYHEAYOG;La-Valette-du-Var, Rue Marcel Pagnol;;62 Boulevard Maurice Barres 92200 NEUILLY-SUR-SEINE (92);;[6.344754, 43.150558];;FRS90EGAWY2;NQUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.943407;43.124845;;;; +;;;;;;;;FRZTLE22AC63419;KBJBS33OUJ;Toulon, Place du 4 septembre;;175 Avenue du 18 Juin 1940 92500 RUEIL-MALMAISON (92);;[6.000198, 43.246609];;FRS90ENPRP1;NRKX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.97480134;43.610596;;;; +;;;;;;;;FRZTLE22AC55366;MQRRNQ3NVI;Toulon, Pkg co-voiturage Escaillon, Route de Marseille;;52 Rue des Bons Raisins 92500 RUEIL-MALMAISON (92);;[5.805145, 43.075105];;FRS90EMFFF1;TLUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.952178;43.1062;;;; +;;;;;;;;FRZTLE22AC55371;PR9GFHI1ZR;Toulon, Place Sadi Carnot, Avenue de Valbourdin;;3 Place Richelieu 92500 RUEIL-MALMAISON (92);;[5.86157, 43.288929];;FRS90ENQMN2;HWAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.895401;43.1476;;;; +;;;;;;;;FRZTLE22AC55370;EYZ3RALMSG;Six-Fours, Parking Bouillibaye;;63 Rue Michel Ange 93600 AULNAY SOUS BOIS (93);;[5.862383, 43.29057];;FRS90ENRPU1;GKQG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.926085;43.116603;;;; +;;;;;;;;FRZTLE22AC55367;TE9XLMEDEJ;Montgenèvre, Le Peychier;;60 Rue Edouard Vaillant 93170 BAGNOLET (93);;[5.811745, 43.112475];;FRS90ENRPU2;GMND1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.238485;43.137653;;;; +;;;;;;;;FRZKAE22AC88393;K59SHDHWTV;Toulon, passage de la Corderie;;1 Avenue Albert Einstein 93150 LE BLANC-MESNIL (93);;[6.03984, 43.191311];;FRS90ENRPC1;GMPV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.06957006;43.109013;;;; +;;;;;;;;FRZKAE24DC88392;GMGOBJACDW;Baratier, Rond-Point des Orres;;1 Rue Claude Terrasse 93150 LE BLANC-MESNIL (93);;[6.040289, 43.191434];;FRS90ENRPC2;EMQQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.08065;43.1085;;;; +;;;;;;;;FRZIME22AC50490;BDBS1JFEDO;Chorges, La Gare;;215 Rue Sadi Carnot 93170 BAGNOLET (93);;[6.426889, 43.453845];;FRS90ENQMN1;KAGL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.028701;43.12893153;;;; +;;;;;;;;FRZIME22AC50491;CCH5F8VIHB;Saint-Firmin, ZA sous la Roche;;314 Avenue Napoléon Bonaparte 92500 RUEIL-MALMAISON (92);;[6.027701, 43.207992];;FRS90ENSHF2;GHBC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9324;43.107303;;;; +;;;;;;;;FRZPEE22AC28236;BBW5E0H7F7;La Saulce, La Gandière;;140 Avenue Pasteur 93170 BAGNOLET (93);;[5.925816, 43.12512];;FRS90ENPRP2;WREM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.201184;43.143787;;;; +;;;;;;;;FRZPEE22AC28235;DXM6EBUDLM;Serres, Rue Marius Meyere;;14 rue Anizan Cavillon - Hôtel de Ville 93350 LE BOURGET (93);;[6.304044, 43.450901];;FRS90EMHFK2;TWNR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.86434221;43.177244;;;; +;;;;;;;;FR0NXPOOLNXWJ8;ECO0VKGSLD;Toulon, Pkg Bon Rencontre, Avenue Aristide Briand;;161 Boulevard Bineau 92200 NEUILLY-SUR-SEINE (92);;[5.938863, 43.126242];;FRS90ENRSP1;TWMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0387;43.13889;;;; +;;;;;;;;FR0NXPOOLHJEBL;UGOFN7UN37;Carqueiranne, Parking du Port, Avenue Elie Gautier;;Parking Raoul Larché 93470 COUBRON (93);;[5.910463, 43.128749];;FRS90ENRSP2;PZMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.725729527;43.12051391;;;; +;;;;;;;;FR0NXPOOL8T9XK;KGWFWAHGAN;La Garde, Rue des Frères Lumières;;Allée Romain Rolland 93390 CLICHY SOUS BOIS (93);;[6.006072, 43.196785];;FRS90ENSHF1;FTXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0547;43.48513;;;; +;;;;;;;;FR0NXPOOLE4XC3;RGOY0O3953;La Motte, Parking Boulevard André Bouis;;1 Place du 11 Novembre 1918 93390 CLICHY SOUS BOIS (93);;[5.89433, 43.080577];;FRS90ENPWA1;FVPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.31678503;43.107001;;;; +;;;;;;;;FR0NXPOOLJ44QH;P8F2SQ4CDB;La Garde, Pkg de la Poste, Avenue Jean Jaurès;;6 Avenue Élise Deroche 93350 LE BOURGET (93);;[5.884482, 43.101577];;FRS90ENPWA2;GCEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.06467;43.1306;;;; +;;;;;;;;FR0NXPOOLJ49KF;R3ZND15N5P;Six-Fours-Les-Plages, Parking du Stade Baptiste, Avenue de la Mer;;2 Rue Joseph Marie Jacquard 93600 AULNAY SOUS BOIS (93);;[5.801015, 43.120048];;FRS90ENQCE1;GDAP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.059;43.116488;;;; +;;;;;;;;FR0NXPOOLXTDNT;ZIQGK2O3XP;Tallard, Parking Aérodrome;;15 rue Gilbert Gatouillat 93600 AULNAY SOUS BOIS (93);;[5.806379, 43.117049];;FRS90EGLPR2;GDAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.346184;43.45548248;;;; +;;;;;;;;FR0NXPOOLTMC8P;IAYB6RCTET;Château-Ville-Vieille, Ville Vieille;;2 rue Henri Barbusse 93300 AUBERVILLIERS (93);;[5.811991, 43.09991];;FRS90ENQAU1;TVDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.071406;43.1469;;;; +;;;;;;;;FRZPEE22AC121730;OHIKRIFSOE;Veynes, Place Albert Pons;;80 rue de la Commune de Paris 93300 AUBERVILLIERS (93);;[6.644595, 43.501255];;FRS90EMHFK1;FWFU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.22777;44.93142339;;;; +;;;;;;;;FRZPEE22AC71494;HWZQNS;Montgenèvre, Parking de l'obelisque;;4 Rue Waldeck Rochet 93300 AUBERVILLIERS (93);;[5.708931, 43.181444];;FRS90EMHHR1;FZLR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.07645891;44.4604;;;; +;;;;;;;;FRZPEE22AC71514;GFZEQP;Arvieux, Parking de l'Eglise;;13 Rue du Docteur Pesqué 93300 AUBERVILLIERS (93);;[5.960407, 43.597668];;FRFR1EUSKR1;RQEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.21674;45.42282428;;;; +;;;;;;;;FRZMAE22AC96902;RL5NBTAUSM;Montgenevre, Le Peychier 2;;7 Rue Arthur Chevalier 93600 AULNAY SOUS BOIS (93);;[6.03717, 43.142403];;FRS90EMFYK2;QEPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.27747;46.04125;;;; +;;;;;;;;FRZMAE22AC56571;AT2IKRY1YG;Aiguilles, Parking Hôpital;;18 Rue de Sevran 93600 AULNAY SOUS BOIS (93);;[5.927429, 43.075068];;FRS90EMGNB2;TMJN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9147214;46.0325625;;;; +;;;;;;;;FRMAPE000013386096;ANJXNT;La Grave, Salle Polyvalente;;22 Boulevard Felix Faure 93600 AULNAY SOUS BOIS (93);;[5.907343, 43.071083];;FRS90EMGRD1;GEBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.930498;46.165401;;;; +;;;;;;;;FRMAPE000013448034;JNCQWIKSDA;La Salle-Les-Alpes, Parking entre les Eaux;;36 Avenue du General Leclerc 92340 BOURG LA REINE (92);;[5.935913, 43.636472];;FRS90EMGCA2;EKFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.083534;46.033345;;;; +;;;;;;;;FRMAPE000015796702;MGABJYHNMV;Eygliers, Parking de la Gare;;1 Avenue des Freres Montgolfier 92290 CHATENAY MALABRY (92);;[5.9177624, 43.4124305];;FRS90EMGCA1;GDST1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.867324;45.74238;;;; +;;;;;;;;FRMAPE000014796731;BKGPFE;Veynes, avenue du CDT Dumont;;61 Rue Jean Longuet 92290 CHATENAY MALABRY (92);;[5.889052, 43.128623];;FRS90EMFRD2;TBYK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.94768024;46.0379016;;;; +;;;;;;;;FRLMSE117293791;V8Z6ZGXG2M;La Fare-En-Champsaur, Esplanade Napoléon;;184 Avenue Roger Salengro 92290 CHATENAY MALABRY (92);;[6.442335, 43.760432];;FRS90EMFRD1;NGDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.13133;45.52367;;;; +;;;;;;;;FRLMSE11750373;M5CD2VVGLM;L'Argentière-La-Bessee, Rue Edward Whymper;;280 Avenue Jean Jaurès 92290 CHATENAY MALABRY (92);;[6.691177, 43.342474];;FRS90EMFFF2;PEXN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.639805;45.5613;;;; +;;;;;;;;FRLMSE11732115;XDQPVX;Laragne-Monteglin, Parking Veragne 2;;46 Rue Joseph Frantz 92130 ISSY LES MOULINEAUX (92);;[6.636401, 43.444287];;FRS90EMGNB1;PFET1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.619913;46.06752154;;;; +;;;;;;;;FRLMSE11736622;STY1D71XSX;Aups, Place Martin Bidaure;;33 Avenue Sully Prudhomme 92290 CHATENAY MALABRY (92);;[5.851185, 43.393343];;FRS90EMFYK1;SNZU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.406002;46.122926;;;; +;;;;;;;;FRLMSE11749592;Q1XKQPXDSW;Bormes-Les-Mimosas, 38 Rue Montagard;;9 Rue Ernest Renan 92130 ISSY LES MOULINEAUX (92);;[6.125282, 43.340772];;FRS90EMGRD2;SZLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.621296;45.918435;;;; +;;;;;;;;FRLMSE11750472;JXWL9CLYQP;Bormes-Les-Mimosas, Place Saint-Francois;;131 Quai du Président Roosevelt 92130 ISSY LES MOULINEAUX (92);;[6.627985, 43.723321];;FRS90EMHBA2;SZFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.369798;45.924709;;;; +;;;;;;;;FRZIME22AC128389;FRGYSKJMI9;Belgentier, Avenue Louis Arnaud;;50 Rue Guynemer 92130 ISSY LES MOULINEAUX (92);;[5.976662, 43.33822];;FRS90EMHBA1;SYTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.14202;45.86309439;;;; +;;;;;;;;FRZIME22AC128390;GCVCJP15M7;Six-Fours-Les-Plages, 157 Avenue du Mail;;16 Rue Guynemer 92130 ISSY LES MOULINEAUX (92);;[5.704812, 43.185573];;FRS90EMHHR2;TAMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0583;45.90478;;;; +;;;;;;;;FRZKAE22AC37831;THXUW7AKVF;Signes, Chemin De La Rode;;3 Rue André Theuriet 92340 BOURG LA REINE (92);;[6.634532, 43.442627];;FRS90EMESN1;TCBP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.943568;46.025563;;;; +;;;;;;;;FRZKAE24DC37830;VFVIHSTRMO;Signes, Rue Ferraillette;;14 Rue Velpeau 92160 ANTONY (92);;[5.694532, 43.166973];;FRS90EMEUS2;TAUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3342453;45.863904;;;; +;;;;;;;;FRZIME22AC77754;RCWJYG;Six-Fours-Les-Plages, Square Hippolyte Cesmat;;19 Avenue du Général de Gaulle 92160 ANTONY (92);;[6.233225, 43.562878];;FRS90EMEUS1;GGQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.18384;46.077103;;;; +;;;;;;;;FRZIME22AC77752;URUMP2J3YM;Sollies-Pont, Avenue de la Liberte;;Place des Combattants de l'Afrique du Nord 92160 ANTONY (92);;[5.932443, 43.130591];;FRS90EMEHY2;SQYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.263238;45.860103;;;; +;;;;;;;;FRZMAE22AC57006;ZB114AMUO7;Sollies Pont, Parking Rezzonico;;2 Rue de l'Eglise 91420 MORANGIS (91);;[5.93622, 43.127107];;FRS90EMEHY1;NLMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3217772;46.266546;;;; +;;;;;;;;FRZMAE22AC56657;ZNYOVG5Q1H;Taradeau, 23 rue l'Ormeau;;26 Avenue de la Cour de France 91260 JUVISY SUR ORGE (91);;[5.932108, 43.11232];;FRS90ENPVN2;SQDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2564165;45.91962;;;; +;;;;;;;;FRZMAE74AC96190;JHNMPLBVVS;Sollies-Toucas, Avenue Du Gapeau;;11 Place Gabriel Péri 93440 DUGNY (93);;[5.858855, 43.452337];;FRS90ENSPG1;SVUF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2630078;46.0247;;;; +;;;;;;;;FRZMAE74AC109624;B7F7XR3ZNB;Toulon, Parking Ancienne Prison De St Roch;;3 Rue Elie le Gallais 92340 BOURG LA REINE (92);;[6.013545, 43.308971];;FRS90ENSLL1;SWQK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2511196;46.189248;;;; +;;;;;;;;FRZMAE22AC49587;EBHUSN;Le Thoronet, 208 Boulevard du 17 Aout 1944;;40 Boulevard Carnot 92340 BOURG LA REINE (92);;[5.785255, 43.371555];;FRS90EMELS1;SWPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.09246;45.4473008;;;; +;;;;;;;;FRZMAE22AC49607;MRH2IYQPC5;Toulon, Avenue F.Lesseps;;6 Rue Alexis de Tocqueville 92160 ANTONY (92);;[6.566681, 43.470632];;FRS90EPAAX2;SWBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.896588;45.81856;;;; +;;;;;;;;FRAU1E0025011;WHEP9NLKD4;Toulon, Place Du Colonel Bonnier;;1 Rue René Jacques 92130 ISSY LES MOULINEAUX (92);;[6.012054, 43.311571];;FRS90EPBLV1;GEHR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.062721;45.396748;;;; +;;;;;;;;FRLUMEFALGOS11;EL284IFGMN;Sollies-Toucas, 1475 Route de Valaury;;36 Boulevard Victor Hugo 92200 NEUILLY-SUR-SEINE (92);;[6.121209, 43.473247];;FRS90EFMVA1;GFAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.042694;45.4331486;;;; +;;;;;;;;FRZIME22AC87473;PYBWJB;La Seyne Sur Mer, Parking Du Parc Braudel;;19 Rue Montrosier 92200 NEUILLY-SUR-SEINE (92);;[6.765235, 43.617906];;FRS90EPJAY2;VVCJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.123665;45.4467313;;;; +;;;;;;;;FRZIME22AC87472;QZWCVQ;La Seyne Sur Mer, Parking Parc Navale;;163 Avenue Achille Peretti 92200 NEUILLY-SUR-SEINE (92);;[6.21490165, 44.08017094];;FRS90EPJAY1;MWPZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.336845;45.5076733;;;; +;;;;;;;;FRZIME22AC47126;G9WTPPZMMX;Sanary-Sur-Mer, 121 Avenue General Rose;;5 Boulevard Vital Bouhot 92200 NEUILLY-SUR-SEINE (92);;[5.9435, 44.195232];;FRS90EPFTT1;MZXR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.1807817;45.4093142;;;; +;;;;;;;;FRZIME22AC47104;CTFQBS;Sanary-Sur-Mer, 71 Boulevard George Clemenceau;;1 rue du Général Cordonnier 92200 NEUILLY-SUR-SEINE (92);;[6.78992, 46.23258];;FRS90EMENB1;FATM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3225519;46.02658;;;; +;;;;;;;;FRZSUE22AC49419;K4HHCPMLJM;Six-Fours-Les-Plages, Corniche de la Coudouliere;;2 Avenue de Bretteville 92200 NEUILLY-SUR-SEINE (92);;[5.929132, 43.120398];;FRS90EPGFE2;KDAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.082572;46.102351;;;; +;;;;;;;;FRZSUE22AC26491;BVGPUCVDDT;Roquebrune-Sur-Argens, Allee Du 15 Aout 1944;;2 Rue Maurice Arnoux 92120 MONTROUGE (92);;[6.14181, 43.103655];;FRS90EMENB2;JUKH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.941872;46.086751;;;; +;;;;;;;;FRZSUE22AC26492;CVEVFLDAHI;Saint-Cyr-Sur-Mer, La Falquette 1;;24 Rue Barbes 92120 MONTROUGE (92);;[5.751882, 43.133481];;FRS90ENSLL2;YSXC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0607641;46.03628;;;; +;;;;;;;;FRZSUE22AC49420;I87DFGGXNC;Varages, Place De La Libération;;129 Rue Perronet 92200 NEUILLY-SUR-SEINE (92);;[6.12474, 45.91174];;FRS90EPGFE1;FYPB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.177878;46.037983;;;; +;;;;;;;;FREZDE28286;XJM25YBBQP;La Garde, Borne rapide PK ENTREE AFUZI;;48 Rue Pauline Borghese 92200 NEUILLY-SUR-SEINE (92);;[5.900207, 43.091725];;FRS90EMELS2;ZCQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2160722;45.444849;;;; +;;;;;;;;FREZDE63395;GJ3XL6XZTL;Saint-Mandrier-Sur-Mer, Chemin Des Aubépines;;4 Rue Berteaux Dumas 92200 NEUILLY-SUR-SEINE (92);;[5.9321824, 46.10196059];;FRS90EPFTT2;EHDS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.376203;45.4033238;;;; +;;;;;;;;FREVAP25368B;JYRCFTINHR;Saint-Mandrier-Sur-Mer, Boulevard Saint-Asile;;2 Boulevard Jean Mermoz 92200 NEUILLY-SUR-SEINE (92);;[6.616385, 45.857483];;FRS90ENQAU2;SRBA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3948511;45.4243932;;;; +;;;;;;;;FREVAP21111B;UYWWVLHDHN;Saint-Cyr-Sur-Mer, La Falquette 2;;48 Rue de Longchamp 92200 NEUILLY-SUR-SEINE (92);;[6.333852, 46.316175];;FRS90ENUAK2;APTW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.1677001;45.607143;;;; +;;;;;;;;FREVAP21298A;CXZL1VHZBY;La Verdiere, Route De Varage;;25b Rue du Chateau 92200 NEUILLY-SUR-SEINE (92);;[4.417705, 45.340454];;FRS90ENUAK1;MEBC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.1742548;45.389256;;;; +;;;;;;;;FREVAP21111A;U20PVEFMDS;Tourves, Avenue de la Libération;;1 boulevard de la Saussaye 92200 NEUILLY-SUR-SEINE (92);;[6.153919, 43.079788];;FRS90EPGVJ2;TCAX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3721251;45.6073765;;;; +;;;;;;;;FREVAP25368A;P9AXQ55PSR;Toulon, Parking Escaillon;;9 Avenue de Madrid 92200 NEUILLY-SUR-SEINE (92);;[4.0650575, 45.60489804];;FRS90EPGVJ1;BYSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0714987;45.887058;;;; +;;;;;;;;FREVAP11188A;WV16QKJAOY;Trigance, D90;;73 Rue Jacques Dulud 92200 NEUILLY-SUR-SEINE (92);;[5.948059, 43.125866];;FRS90ENWUD1;ASML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.316785035;45.989587;;;; +;;;;;;;;FREVAP06012A;S0BKBAHJZ9;Roquebrune-Sur-Argens, Boulevard Des Murènes;;Place du Duc d'Orleans 92200 NEUILLY-SUR-SEINE (92);;[4.0729027, 46.03897];;FRS90EPBLV2;BYSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.337093;45.35628;;;; +;;;;;;;;FREVAP01195A;DBGJDBSHVN;Roquebrune-Sur-Argens, Boulevard Jean Jaures;;41 Rue Chauveau 92200 NEUILLY-SUR-SEINE (92);;[5.907031, 43.137815];;FRS90EPGXS1;NBMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4946901;45.2825753;;;; +;;;;;;;;FREVAP13015A;I7JXCEB90K;Rougiers, Rue de la Rousse;;14 Rue de Rouvray 92200 NEUILLY-SUR-SEINE (92);;[5.877614, 43.117208];;FRS90EPHBQ1;LFSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2404883;45.4980481;;;; +;;;;;;;;FREVAP37099A;YP50UQ5XFT;Sainte-Anastasie-Sur-Issole, 11 les Ferrages;;Rue Sylvine Candas 92120 MONTROUGE (92);;[5.934264, 43.112478];;FRS90ENQCE2;KUQJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.424995;46.1581686;;;; +;;;;;;;;FREVAP77384A;XKCZXBQX77;La Roque-Esclapon, Quartier Notre Dame;;57 Rue de l'Égalité 92130 ISSY LES MOULINEAUX (92);;[5.975751, 43.12525];;FRS90EGLWP2;BWBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.619782;45.4856699;;;; +;;;;;;;;FREVAP34095A;FOP0RMBHQO;La Roquebrussanne, Place Gueit;;59 Boulevard Gallieni 92130 ISSY LES MOULINEAUX (92);;[5.811146, 43.091278];;FRS90EGLPR1;MXQQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09082;45.596007;;;; +;;;;;;;;FREVAP88440A;X9ACD664IX;Saint-Cyr-Sur-Mer, Avenue Aime Carbonnel;;18 Boulevard Garibaldi 92130 ISSY LES MOULINEAUX (92);;[4.17285285, 45.29281583];;FRS90EMESN2;FZXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.8643;45.4352175;;;; +;;;;;;;;FREVAP31161A;DR8DDD8O45;Roquebrune-Sur-Argens, Boulevard Ferdinand Clavel;;28 Rue Bara 92130 ISSY LES MOULINEAUX (92);;[4.74897911, 44.55730613];;FRS90EPGMW1;FJFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.190705;45.2692689;;;; +;;;;;;;;FREVAP33502A;U309RLZWQ4;Saint-Cyr-Sur-Mer, Parking La Madrague;;9 rue Molière 92120 MONTROUGE (92);;[4.88973581, 44.92944338];;FRS90EPGMW2;ASML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.22051;45.5004988;;;; +;;;;;;;;FRLUMEHOTELALIZES11;XYQVQRLNOV;Salernes, Place Clemenceau;;Rue Roger Salengro 92120 MONTROUGE (92);;[5.13972955, 44.35821959];;FRS90EGLGE2;NBMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12351;45.906059;;;; +;;;;;;;;FRLUMEMALIJAI1011;RAV5DFEAEQ;Toulon, Pkg. du parc Des Lices 3;;27 Place Jules Ferry 92120 MONTROUGE (92);;[3.385347, 45.290997];;FRS90EGLGE1;PJPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.164;45.863918;;;; +;;;;;;;;FR000012616553;SXRR7LO13E;Toulon, Pkg. du parc Des Lices 2;;13 Rue Etienne Fajon 93430 VILLETANEUSE (93);;[3.879068, 45.046877];;FRS90ENYQD1;YSSU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1387291;45.9141;;;; +;;;;;;;;FR000011062174;YHQFQ5KDAE;Toulon, parking DGA;;32 Bis Route de Villeneuve 93480 ABLON-SUR-SEINE (94);;[5.904066, 45.672011];;FRS90EFPWE1;VGJG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.202025;46.0609;;;; +;;;;;;;;FR000012308585;UDLITAUEPN;Saint-Maximin-La-Ste-Baume, Chemin de Réal Vieux;;88 Avenue de la Division Leclerc 93430 VILLETANEUSE (93);;[6.231455, 44.091577];;FRS90EFMQQ1;LFSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.54229116;45.950926;;;; +;;;;;;;;FR000012292701;PZ5XASX8DE;Neoules, 93 Chemin de la Fontaine du Midi;;Place de l'Hôtel de Ville 93420 VILLEPINTE (93);;[6.222468, 43.846039];;FRS90ENYQD2;MEBC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.646246;45.7762;;;; +;;;;;;;;FRMAPP000000006808;CKNLCKILQC;Nans-Les-Pins, Avenue Julien Jourdan;;Rue Norbert Segard 93420 VILLEPINTE (93);;[5.911434, 45.689927];;FRS90EDGAX1;CGZA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3533415;45.9356;;;; +;;;;;;;;FRZMAE22AC50719;CZTN3RDEN3;Le Muy, Parking Le Roucas;;Avenue du Rêve 93420 VILLEPINTE (93);;[4.035542, 45.985625];;FRS90ENWUD2;VBWZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.10387;45.97767;;;; +;;;;;;;;FRZMAE22AC50711;NFH22CALUW;Neoules, 7 Avenue de Fontaine Marcellin;;226 Boulevard Pasteur 94360 BRY-SUR-MARNE (94);;[5.31861937, 45.15396959];;FRS90EPAAX1;KDAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.87171266;45.9450798;;;; +;;;;;;;;FRZPEE74AC89771;PXQQOQYXV2;Montfort-Sur-Argens, Rue De La Rougiere;;15 Avenue de l'Aérodrome 94310 ORLY (94);;[4.357859, 45.852431];;FRS90EPGXS2;FATM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1334;45.827454;;;; +;;;;;;;;FRZPEE74AC89772;JYICHSALWP;Montauroux, Place Du Clos;;34 Boulevard de Stalingrad 94600 CHOISY-LE-ROI (94);;[5.23269785, 45.62297234];;FRS90EPHBQ2;TCAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.106581;46.08405685;;;; +;;;;;;;;FRLUMEHOTELPEUPLIERS11;GTTHOQUJRW;Digne-Les-Bains, Plan d'eau;;63 Avenue d'Alfortville 94600 CHOISY-LE-ROI (94);;[6.0676798, 45.0914135];;FRS90EGLWP1;APTW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16885;45.93089;;;; +;;;;;;;;FRZTLE22AC128615;JN2BNPZTJH;Sisteron, Allée De Verdun;;14 Avenue Louis Luc 94600 CHOISY-LE-ROI (94);;[5.27552, 45.588987];;FRS90ENPVN1;BQJV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12208;46.1632497;;;; +;;;;;;;;FRZTLE22AC128616;VCBKGKDJE4;Châtel, Pré-la-joux;;4 Grand Rue Charles de Gaulle 94360 BRY-SUR-MARNE (94);;[5.278273, 45.584676];;FRS90EJAKL2;MAXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.14695;45.9076;;;; +;;;;;;;;FRZTLE22AC56428;IWC3A33G30;TOULON, Avenue de la République - Préfecture maritime;;35 Rue Louis Blanc 93400 ST OUEN SUR SEINE (93);;[5.631899, 45.598443];;FRFR1ECXDL2;DQMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.31168;45.91714084;;;; +;;;;;;;;FRZTLE22AC56427;BGYAN4GZ5U;Hyères, ZAC Saint Martin;;Face au 22 Avenue Dumont d'Urville 93270 SEVRAN (93);;[6.233294, 43.562956];;FRFR1ELRJK2;XGQZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.091;45.9036;;;; +;;;;;;;;FRZPEE22AC129868;AEJY2YM4XC;Bandol, parking de la Cale;;12 Avenue de Livry 93270 SEVRAN (93);;[5.993895, 43.131758];;FRFR1ELRJK1;VUVW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.10162;45.907333;;;; +;;;;;;;;FRZPEE22AC129846;EXSLDWIYGA;Annecy, Rue Max Bruchet;;13 Rue Paul Lafargue 93400 ST OUEN SUR SEINE (93);;[6.176766, 43.732476];;FRFR1EGSYR1;ZKJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.48578;45.9328;;;; +;;;;;;;;FRZPEE74AC71708;LKPXJJN0R7;La Seyne sur Mer, Parking Tamaris;;1 Rue de la Clef des Champs 93400 ST OUEN SUR SEINE (93);;[6.625908, 43.738191];;FRFR1EFXHM1;RHEN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.84055;45.8991;;;; +;;;;;;;;FRZPEE74AC71707;UTIMKUAQVQ;Vulbens, Chemin de la fruitière;;Rue Roger le Maner 93270 SEVRAN (93);;[5.803608, 43.196687];;FRFR1EGMWX1;MPDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.26369449;45.905;;;; +;;;;;;;;FRZPEE22AC129732;KHJBBVINUJ;Megève, Rue Poste;;Avenue Outrebon 93250 VILLEMOMBLE (93);;[5.806335, 43.195169];;FRFR1EGLSH1;FUTP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.27012;46.0665;;;; +;;;;;;;;FRZIME22AC61148;W7NM5NBTSY;Massongy, Parking Mairie;;131 Grande Rue 93250 VILLEMOMBLE (93);;[6.699922, 43.536283];;FRFR1EGEEF1;PJPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2688;45.9208;;;; +;;;;;;;;FRZIME22AC61147;EJWEGJHZDG;Saint-Genest-Malifaux, Rue du bois ternay;;40 rue du Bois Moussay 93240 STAINS (93);;[5.798958, 43.195848];;FRFR1EFXHM2;NLBK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.03918;45.888;;;; +;;;;;;;;FRZMAE22AC50670;GRL0MUCLX8;Hyères, Parking Hippodrome;;9 Place Marcel Pointet 93240 STAINS (93);;[6.698561, 43.536849];;FRFR1ECXDL1;CEUQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09711;46.0536;;;; +;;;;;;;;FRZMAE22AC50704;ANLPJGMNN8;Montbrison, Boulevard Lachèze;;Boulevard de Bishop's Stortford 94350 VILLIERS SUR MARNE (94);;[6.571085, 43.729968];;FRFR1EKWXM1;AMMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.03261;46.25796;;;; +;;;;;;;;FRFR1EATXX1;TBCQ7Z5SIN;Toulon, Boulevard Desaix;;48 Rue Diderot 94300 VINCENNES (94);;[5.753034, 43.134693];;FRFR1ENXUV1;AVRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1362;46.117427;;;; +;;;;;;;;FRZTLE22AC62871;JRIJGWQ7GS;Roanne, Parking Salengro;;8 Avenue Pierre Brossolette 94300 VINCENNES (94);;[6.066481, 43.407623];;FRFR1ENXUV2;BWBW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5491808;46.13779;;;; +;;;;;;;;FRZTLE22AC62872;N2JNLUXZTS;Toulon, Place Marius Champagne;;43 Avenue Gabriel Péri 94300 VINCENNES (94);;[6.062531, 43.403983];;FRFR1EFHWN1;MATH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.50848;46.13461;;;; +;;;;;;;;FRZTLE22AC60013;COBGZQF7KR;La Seyne Sur Mer, Parking Gare SNCF;;123 Avenue de la République 94300 VINCENNES (94);;[6.061688, 43.407248];;FRFR1EFXFJ2;CEUQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09085;45.9612;;;; +;;;;;;;;FRZTLE22AC60012;ODJ3J2PXMV;Toulon, Parking Fosse à Bois;;21 Avenue du Petit Parc 94300 VINCENNES (94);;[6.058906, 43.406661];;FRFR1EFHWN2;TSKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.10531;45.88625;;;; +;;;;;;;;FRLUMELODGING11;Y4OFET8FDN;Toulon, Allée Rouvière Sainte Musse;;29 Rue Massue 94300 VINCENNES (94);;[6.518632, 43.782955];;FRFR1EFXFJ1;HBHB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.50392;45.9713;;;; +;;;;;;;;FRZIME22AC47222;NT6A1CNH1A;Six-Fours-Les-Plages, Résidence Le Rayolet;;17-19 Avenue Henri Dunant 94350 VILLIERS SUR MARNE (94);;[6.3619, 43.12415];;FRFR1EJMZK1;QCGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.54797;45.8924;;;; +;;;;;;;;FRZTLE24DC55361;YV38XHFQKK;Monistrol sur Loire, Place du 19 Mars 1962;;16 Rue Claude Trottin 94350 VILLIERS SUR MARNE (94);;[5.898863, 43.078878];;FRFR1EJMZK2;XTVG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1013174;46.0568649;;;; +;;;;;;;;FRZTLE22AC54738;YIOODBQSFH;Montelimar, Place Emile Loubet;;2 Rue Lejemptel 94300 VINCENNES (94);;[6.072311, 43.439098];;FRFR1EXJTX1;QDHZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.57371;46.08869;;;; +;;;;;;;;FRMAPP000000006798;POFMPGHIET;Valence, Place championnet;;118 Rue Diderot 94300 VINCENNES (94);;[6.0406, 43.1488];;FRFR1EATEN1;KCWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.234739;45.9378;;;; +;;;;;;;;FRZTLE22AC61047;IMXRRATUPO;Nyons, Promenade de la Digue Ouest;;2 Avenue des Murs du Parc 94300 VINCENNES (94);;[6.016902, 43.124845];;FRFR1EATEN2;WMGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.048321;45.9397;;;; +;;;;;;;;FRZTLE22AC61057;WLVMFDV1MU;Brioude, Place Champanne;;44 Rue de Fontenay 94300 VINCENNES (94);;[6.482466, 43.610596];;FRFR1ELQZT2;GUZT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.076384;46.09152;;;; +;;;;;;;;FRZTLE22AC61056;IXWH7RUKR0;Puy-En-Velay (Le), Boulevard Carnot;;194 Rue de Fontenay 94300 VINCENNES (94);;[6.1298, 43.1062];;FRFR1EBGEZ2;HBHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.079701;46.0643;;;; +;;;;;;;;FRZTLE22AC61046;I0SJOBBFTP;Aix les bains, Hippodrome;;6 Avenue du Général de Gaulle 94300 VINCENNES (94);;[6.0778, 43.1476];;FRFR1EAAMS1;WMGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.87573188;46.0946733;;;; +;;;;;;;;FRZMAE22AC95344;BFO8FWAXWY;Digne les bains, Parking du Tampinet;;216 Rue Diderot 94300 VINCENNES (94);;[6.133562, 43.116603];;FRFR1EUSKR2;GUZT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.925942;46.39752;;;; +;;;;;;;;FRZIME22AC95349;CEJHEYUHTK;Moustiers-Sainte-Marie, Chemin Marcel Provence;;Avenue des Murs du Parc 94300 VINCENNES (94);;[5.983741, 43.137653];;FRFR1EBGEZ1;TSKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.072804;46.032035;;;; +;;;;;;;;FRZIME22AC19518;FU4PDVWWQ4;Aix les bains, Victoria;;Rue du Réveillon 94440 VILLECRESNES (94);;[5.827597, 43.109013];;FRFR1EBFHL1;GGJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.931463;46.070421;;;; +;;;;;;;;FRZIME22AC78037;GEUQ9S0IWD;Villerest, Plage de Villerest;;Parking André Bollier 94100 ST MAUR DES FOSSES (94);;[5.943407, 43.1085];;FRFR1EBDED1;BJAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0964775;46.045465;;;; +;;;;;;;;FRZIME22AC78036;WV50SNUOZH;Saint-Marcellin, Avenue de la santé;;Place d'Adamville Kennedy 94100 ST MAUR DES FOSSES (94);;[5.97480134, 43.12893153];;FRFR1EZMXY1;XTVG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.085646;46.036818;;;; +;;;;;;;;FRLUMELACLAPE11;PT7FIXFEYY;Violay, Rue Célestin Linder;;4 Avenue du Mesnil 94100 ST MAUR DES FOSSES (94);;[5.952178, 43.107303];;FRFR1EZNNV1;QTFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.9309;46.17604575;;;; +;;;;;;;;FRLUMEVALSERINE1;SGQBB9ZVMN;L’Isle-D’Abeau, Place du 8 Mai 1945;;Avenue du Maréchal Mortier 94510 LA QUEUE-EN-BRIE (94);;[5.895401, 43.143787];;FRFR1EZZTJ1;MZME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.069028;46.051708;;;; +;;;;;;;;FRZMAE22AC49701;SEODRBQGWL;Huez, Parking Des Jeux;;Avenue Wladimir d'Ormesson 94490 ORMESSON SUR MARNE (94);;[5.926085, 43.177244];;FRFR1EZXRR1;RLAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.22096;46.036429;;;; +;;;;;;;;FRFR1EDWYQ1;ANUKTTYTG0;Bourgoin Jallieu, Parking St Michel Sud, 43 Bd St Michel;;1-3 Rue des Hautes Bornes 94310 ORLY (94);;[6.238485, 43.13889];;FRFR1EZBVE1;QDHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.39409;46.031274;;;; +;;;;;;;;FRLUMEHOTELLAC749201;TZ5AN63MMZ;Bourgoin Jallieu, Parking Medicis. 23 Avenue d'Italie;;Avenue des Erables 94440 SANTENY (94);;[6.06957006, 43.12051391];;FRFR1EWTHE1;QCLF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.446987;46.0296215;;;; +;;;;;;;;FRZIME22AC76647;FOR8KTMTNA;Saint Genix les Villages, Parking Salle Jean Bouchard;;Face au 10 Rue Jean Renoir 94410 ST MAURICE (94);;[6.08065, 43.48513];;FRFR1EWTHE2;KSBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3640911;46.029813;;;; +;;;;;;;;FRZIME22AC76648;JDC6F1GITF;Salernes, Place Clémenceau;;16 bis Avenue de Verdun 94410 ST MAURICE (94);;[6.028701, 43.107001];;FRFR1EEYLQ2;QCLF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3666899;46.052042;;;; +;;;;;;;;FRLUMEHOTELCEDRES11;LNFOF1DSWU;Le Val, Parking Collège Bosco Chemin du Buchet;;34 Rue Pierre Brossolette 93100 MONTREUIL (93);;[5.9324, 43.1306];;FRFR1EXJTX2;VXAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0045021;46.047472;;;; +;;;;;;;;FRZTLE22AC57334;NSZLO1DE4B;Bauduen, Rue des Jardins;;79 rue de la République 93100 MONTREUIL (93);;[6.201184, 43.116488];;FRFR1EEYLQ1;VXAF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.5162605;45.7446;;;; +;;;;;;;;FRZTLE22AC57335;THCWDAWXKR;La Bastide, Rue Des Bailes;;15 Place du Général de Gaulle 93100 MONTREUIL (93);;[5.86434221, 43.45548248];;FRFR1ELQZT1;GGJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4370403;45.6384;;;; +;;;;;;;;FRZTLE22AC57333;LEYJ79ZALK;Le Beausset, 4 Rue de la Fontaine Neuve;;1 rue Yélimané 93100 MONTREUIL (93);;[6.0387, 43.1469];;FRFR1EMJNM1;MGCB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.56981;45.4098072;;;; +;;;;;;;;FRZTLE22AC57332;CRK2IWO5NY;Le Beausset, Rue Antoine Simoni;;Place de la République 93360 NEUILLY PLAISANCE (93);;[6.725729527, 44.93142339];;FRFR1EAWHJ1;FZXW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.58146;45.4050209;;;; +;;;;;;;;FRZTLE22AC131517;AZ12ROASTI;Bagnols-En-Foret, 133 Boulevard du Rayol;;9 Avenue Paul Signac 93100 MONTREUIL (93);;[6.0547, 44.4604];;FRS90EJAKL3;FRSC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.43933;45.402132;;;; +;;;;;;;;FRZTLE22AC131516;F0HLVDBZUM;Le Beausset, 3 Rue Du Stade;;27 Rue du Sergent Godefroy 93100 MONTREUIL (93);;[4.31678503, 45.42282428];;FRFR1EXETZ1;FJFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.052708;45.7456111;;;; +;;;;;;;;FRZTLE22AC131524;PLT8JLOXFE;Bagnols-En-Foret, 4 Montée de derrière le Château;;3 Avenue Léo Lagrange 93100 MONTREUIL (93);;[4.06467, 46.04125];;FRFR1ERRHD1;MXQQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.082342;45.4165342;;;; +;;;;;;;;FRZTLE22AC131525;UOGJK0ALBQ;Bargeme, Parking Du Château;;5 Rue de la Republique 93100 MONTREUIL (93);;[4.059, 46.0325625];;FRFR1EBEPQ2;KUQJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.002576;45.4878958;;;; +;;;;;;;;FRZTLE22AC55087;IVXGZYQXI3;Bandol, 3 Allée Alfred Vivien;;30 rue Franklin 93100 MONTREUIL (93);;[4.346184, 46.165401];;FRFR1ERRFL1;YSSU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0350391;45.5055;;;; +;;;;;;;;FRZTLE22AC55086;HCWWXBM9FJ;Brignoles, 09 Avenue Maréchal Foch;;11 rue de Vincennes 93100 MONTREUIL (93);;[4.071406, 46.033345];;FRFR1ERRHD2;WJGD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.03728;45.5135;;;; +;;;;;;;;FRZTLE24DC61319;SP7TYXQZVE;Brignoles, 01 Rue du portail Neuf;;11 rue Désiré Préaux 93100 MONTREUIL (93);;[4.22777, 45.74238];;FRFR1ERRFL2;BJAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0535;45.5482;;;; +;;;;;;;;FRZTLE24DC61318;TFC7M4PURW;Brignoles, 15 Rue Petit Paradis;;54 Boulevard Foch 93800 EPINAY SUR SEINE (93);;[4.07645891, 46.0379016];;FRFR1EPRXV2;EBRV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0503929;46.046313;;;; +;;;;;;;;FRZTLE24DC63446;ZC6L4PI3AM;Brignoles, 29 Rue de la République;;1 Rue de l'Avenir 93800 EPINAY SUR SEINE (93);;[4.21674, 45.52367];;FRFR1EPRXV1;SHFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0408092;46.042776;;;; +;;;;;;;;FRZTLE22AC60301;CNVK97OWH1;Le Bourguet, D252;;28 Route d'Argenteuil 93800 EPINAY SUR SEINE (93);;[4.27747, 45.5613];;FRFR1EBEPQ1;KSBT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.08037845;46.051967;;;; +;;;;;;;;FRZTLE22AC57830;MGSHTS9WRC;Bormes-Les-Mimosas, Sentier des Pêcheurs;;64 Rue Fitzelin 93800 EPINAY SUR SEINE (93);;[3.9147214, 46.06752154];;FRFR1EXETZ2;ADJN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.067559;46.0434068;;;; +;;;;;;;;FRZTLE22AC60302;HJBBCTOFEI;Six-Fours, Parking St elme Rue Georges Lahaye;;1 Rue des Près de Noisy 93460 GOURNAY-SUR-MARNE (93);;[3.930498, 46.122926];;FRFR1EZZUN1;QGXZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.086384;45.996498;;;; +;;;;;;;;FRZTLE22AC57831;FGFFNEVI2C;Le Val, Pkg. de la Mairie Place de la Libération;;18 rue Franklin 93100 MONTREUIL (93);;[6.083534, 45.918435];;FRS90EEKAC2;QCGL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.060917;46.034167;;;; +;;;;;;;;FRZPEE22AC57510;BB50GHGEOM;Afuzy-La Garde, Rue Marcelin Berthelot;;42 Boulevard Robert Schuman 93190 LIVRY GARGAN (93);;[6.867324, 45.924709];;FRS90EEKAC3;YQEF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.034507;46.0302958;;;; +;;;;;;;;FRZPEE24DC57509;GIQRFGC9J6;La Garde, Parking des Bleuets Avenue Jules Ferry;;2 Place de la Libération 93450 L'ILE-SAINT-DENIS (93);;[5.94768024, 45.86309439];;FRS90EJVEB1;YQEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.273447;46.0282332;;;; +;;;;;;;;FRZIME22AC77768;RJYQTZVSYG;Montferrat, Pkg. du Stade rte de Draguignan;;46 Rue de Chanzy 93360 NEUILLY PLAISANCE (93);;[6.13133, 45.90478];;FRS90EJVCF2;VTFS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4499632;46.05971964;;;; +;;;;;;;;FRZIME22AC77767;GAMO0PZWOK;Hyères, Parking espace 3000;;8 Avenue Georges Sand 93200 SAINT-DENIS (93);;[6.639805, 46.025563];;FRS90EJVEB2;VTFS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4352;46.036543;;;; +;;;;;;;;FRZIME22AC70163;PHPFZI11NQ;La Crau, Parking du Collége Rue Louis Meric;;28 Boulevard Felix Faure 93200 SAINT-DENIS (93);;[6.619913, 45.863904];;FRS90EJVCF1;SHFH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.208527;46.080367;;;; +;;;;;;;;FRZIME22AC70164;X64XQRUOP2;Hyères, Parking Versin;;16 Rue Jesse Owens 93200 SAINT-DENIS (93);;[6.406002, 46.077103];;FRS90EJAKL1;MAXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.2812527;45.999397;;;; +;;;;;;;;FRZTLE24DC53268;N0JCAPMP2S;La Valette, Mairie;;45 Rue de la Commune de Paris 93230 ROMAINVILLE (93);;[6.621296, 45.860103];;FRS90EEKAC1;EHDS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.4257236;44.458795;;;; +;;;;;;;;FRZTLE22AC66598;R1VOSOO7GO;Salernes, Pkg des Playes Rue Président Kennedy;;32 Rue des Cheminots 93200 SAINT-DENIS (93);;[6.369798, 46.266546];;FRFR1ERFFG1;MPDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3367866;45.759568;;;; +;;;;;;;;FRZTLE22AC66599;FQSYJSG0TH;Toulon, Plages Du Mourillon Entrée Ouest 1-1;;9 Avenue Paul Vaillant Couturier 93230 ROMAINVILLE (93);;[6.14202, 45.91962];;FRFR1ERFFG2;AEHZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.064615;45.4877239;;;; +;;;;;;;;FRZPEE74AC127538;UEZAJDDHKC;Toulon, Complexe Sportif Léo Lagrange;;Promenade de la Basilique 93200 SAINT-DENIS (93);;[4.0583, 46.0247];;FRFR1ERVUB2;AEHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.5414507;45.48154;;;; +;;;;;;;;FRZIME22AC59778;ZQRMJ7J2UI;Toulon, Plages Du Mourillon 4Ème Anse 1;;3 Rue Dulcie September 93400 ST OUEN SUR SEINE (93);;[3.943568, 46.189248];;FRFR1ERVUB1;EGLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3141025;45.9483507;;;; +;;;;;;;;FRZIME22AC59777;DXBHRKZYBD;Toulon, Piscine Du Pin D'Alep;;2 Rue des Entrepôts 93400 ST OUEN SUR SEINE (93);;[4.3342453, 45.4473008];;FRFR1EZYBP1;ZTGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.266084;45.3958253;;;; +;;;;;;;;FRZPEE22AC128521;W1WQZAA03D;La Valette Du Var, Pkg. Centre, place Jean Moulin;;(Face au) 48 Rue du 19 Mars 1962 93200 SAINT-DENIS (93);;[4.18384, 45.81856];;FRFR1EZUSJ1;TAPJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3524202;45.4753254;;;; +;;;;;;;;FRLUMEDOMAINEDESPEYRE11;PK3XN6HDHL;La Londe-Les-Maures, Parking Chateauvert, 1;;1 Rue de la Cokerie 93200 SAINT-DENIS (93);;[4.263238, 45.396748];;FRFR1EZBVU1;VPYP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.353032;45.7928662;;;; +;;;;;;;;FRZIME22AC118370;MDNBIGKUXC;La Londe-Les-Maures, Parking Chateauvert, 2;;Place de Stalingrad 93360 NEUILLY PLAISANCE (93);;[4.3217772, 45.4331486];;FRFR1EZQVQ1;WKHN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.184682;45.424436;;;; +;;;;;;;;FRZIME22AC118367;OOG3SU0SRF;La Crau, Parking Place Maréchal Leclerc;;Place François Mitterrand 93330 NEUILLY SUR MARNE (93);;[4.2564165, 45.4467313];;FRFR1EZMUA1;AHMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.64742;45.5229189;;;; +;;;;;;;;FRZIME22AC71607;D9FNLZRTGS;Correns, La Condamine;;Rue Paul Cézanne 93360 NEUILLY PLAISANCE (93);;[4.2630078, 45.5076733];;FRFR1EZNGJ1;VERU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.5695;45.5019921;;;; +;;;;;;;;FRZIME22AC71572;WQRUVP5GZT;Le Pradet, Parking Espace Des Arts;;Boulevard Aristide Briand 93330 NEUILLY SUR MARNE (93);;[4.2511196, 45.4093142];;FRFR1EZWFF1;PDRZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.31657;45.389132;;;; +;;;;;;;;FRE000014786885;IRNE7AOJCY;Toulon, Parking Des Lices 1;;26 rue Gueroux - Parking Espace Salvador Allende 93380 PIERREFITTE SUR SEINE (93);;[4.09246, 46.02658];;FRFR1EZQAP1;GPBF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.53528;45.466474;;;; +;;;;;;;;FRZIME22AC126136;NUTXBIS2GQ;Hyères, Place des Pêcheurs, les salins;;12 rue Marcel Ethis 93230 ROMAINVILLE (93);;[3.896588, 46.102351];;FRFR1EZCJV1;YQGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.57513;45.467506;;;; +;;;;;;;;FRZIME22AC81447;CPRBTI1JCS;Saint-Maximin-La-Sainte-Baume, Ch. de la Glacière;;120 Boulevard Général de Gaulle - Parking 93380 PIERREFITTE SUR SEINE (93);;[4.062721, 46.086751];;FRFR1EWWFA1;JBMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.54026293;45.538959;;;; +;;;;;;;;FRZMAE22AC50643;HKHTSQZA2H;La Garde, Afuzi Pôle D'Activités De Toulon -Est, Rue Lambot;;2 Avenue Gabriel Péri 93380 PIERREFITTE SUR SEINE (93);;[4.042694, 46.03628];;FRFR1EZXQN1;VERU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.25891;45.4794;;;; +;;;;;;;;FRZMAE22AC50651;SZIFDMFRBK;Montgenèvre, Office de Tourisme;;1157 Rue du Dr Henri Vanuxeem 59850 Nieppe;;[4.123665, 46.037983];;FRFR1EZVZJ2;EGLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.37529;45.50397;;;; +;;;;;;;;FRZPEE22AC31929;B5WUOR3QQJ;Tallard, Rue du Château - Village;;2525 Avenur des Vallées;;[4.336845, 45.444849];;FRFR1EZVZJ1;WKHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.58589;45.5921;;;; +;;;;;;;;FRMAPP000000006391;EULNXGGME8;Roche-La-Moliere, Parking stade Beaulieu;;MAIRIE NORD ROCADE - AVIGNON;;[4.1807817, 45.4033238];;FRFR1ERLWP1;VPYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.58422;45.5561;;;; +;;;;;;;;FRZIME22AC129087;OTIJNYI4G7;Roanne, Square Mozart;;RUE BUZENVAL - GARCHES;;[4.3225519, 45.4243932];;FRFR1EBNZV1;BGED1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.5950883;45.4842;;;; +;;;;;;;;FRZIME22AC129086;ZOZRCQYIPI;Roanne, Parking Nauticum;;PARKING PONT DES DEUX EAUX - AVIGNON;;[4.082572, 45.607143];;FRFR1ERLWP2;BGED2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.48614;45.48570475;;;; +;;;;;;;;FRZMAE22AC50776;P0A4HH2T9K;Belmont De La Loire, Place de l'église;;MONCLAR - AVIGNON;;[3.941872, 45.389256];;FRFR1EWWFA2;UMLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8690192;45.6466;;;; +;;;;;;;;FRZPEE22AC89152;DAT3HIUUJM;Roanne, Parking de La Berge;;MONTFAVET ETOILE - AVIGNON;;[4.0607641, 45.6073765];;FRS89EDRJU2;UMLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.70555;45.5323;;;; +;;;;;;;;FRZMAE22AC49605;EK3YFXDJPI;Feurs, Faubourg St antoine;;FOLIE BOCACE - AVIGNON;;[4.177878, 45.887058];;FRS89EEEAA2;FXNU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.56682;45.5341;;;; +;;;;;;;;FRAU1E0031011;HQNBNX4FTU;Roanne, Parking des Halles;;AVENUE EISENHOWER - AVIGNON;;[4.2160722, 45.989587];;FRS89EHDWH2;WDQY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.417302;45.5495;;;; +;;;;;;;;FRAU1E0030011;IMNKKM8CKN;Bonson, Place François mitterand;;PARKING SAINT RUF - AVIGNON;;[4.376203, 45.35628];;FRFR1EWVME1;ASAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.32796;45.5447567;;;; +;;;;;;;;FRZMAE22AC49544;L1ZVU3VTKA;Veauche, Veauche;;RUE SADI CARNOT - DRANCY;;[4.3948511, 45.2825753];;FRFR1EWYUX1;MAGD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3746593;45.5451;;;; +;;;;;;;;FRZMAE22AC49575;XVHD82BG9X;Saint-Haon-Le-Châtel, Haut du bourg;;RUE DES FILLES - AVIGNON;;[4.1677001, 45.4980481];;FRFR1EWHCA1;JBMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.39608;45.9239269;;;; +;;;;;;;;FRZMAE22AC49847;MMNYV6SKZ1;Saint-Forgeux-Lespinasse, Place de Verdun;;BOULEVARD MARCEL COMBES - AVIGNON;;[4.1742548, 46.1581686];;FRFR1EWVAH1;MAGD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.25827;46.18337;;;; +;;;;;;;;FRS56PBTK4GPLMA5;DJZ3SGBTQ4;Poisy, Route d'Annecy;;LABANDE FERRY - AVIGNON;;[4.3721251, 45.4856699];;FRFR1EWVMH1;GGJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1047065;45.83576;;;; +;;;;;;;;FRS56PVEYPEA;WGGW16XY2X;Chamonix, Parking Saint Michel;;BOULEVARD RAYMOND POINCARE - GARCHES;;[4.0714987, 45.596007];;FRFR1EWLDM1;CZWL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0813288;46.0782491;;;; +;;;;;;;;FRS56PRYVAMD;ZJOOX1CSEU;Rumilly, Parking de la Gare;;AVENUE WAGNER - VELIZY-VILLACOUBLAY;;[4.316785035, 45.42282428];;FRFR1EWAJX1;NWRQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.7128251;46.298313;;;; +;;;;;;;;FRS56PFOSGTWNEUZ;LBOH42YD32;Annecy, Rue de la Paix;;AVENUE CABRIERES OLIVADES - AVIGNON;;[4.337093, 45.4352175];;FRFR1EWDWP1;LMUD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0797251;46.3324048;;;; +;;;;;;;;FRS56PWUANHC;TGYAPJC0IY;Arâches-La-Frasse, Route des Moulins;;BOULEVARD DE LA REINE - VERSAILLES;;[4.4946901, 45.2692689];;FRFR1EWSJV1;PKZS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.61474;46.00143;;;; +;;;;;;;;FRZMAE22AC49683;GLYX8EKDXS;Megève, Parking du Jaillet;;AVENUE DE PARIS VERSAILLES;;[4.2404883, 45.5004988];;FRFR1EWKMX1;PDRZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1377729;46.26919;;;; +;;;;;;;;FRLUMELIBERATION11;ZZAOSWZCD5;Bonneville, Quai du Parquet;;PLACE MOZART - JOINVILLE;;[6.424995, 45.906059];;FRFR1EWKXG1;BPFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.70249;46.1204422;;;; +;;;;;;;;FRZMAE22AC60127;GDURFISRRH;Megève, RD1212;;PLACE VERDUN - JOINVILLE;;[6.619782, 45.863918];;FRFR1ELZXF2;GGJV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.720604;46.1446775;;;; +;;;;;;;;FRZMAE22AC135128;KYMNEXEV9U;Bons-en-Chablais, Avenue Louis Armand;;PLACE FERRARI - CLAMART;;[6.09082, 45.9141];;FRFR1ELZRM1;LMUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.727681;45.8878674;;;; +;;;;;;;;FRZMAE22AC49597;M3TYYDTBPB;Annecy-le-Vieux, Rue Antoine de Saint-Exupéry;;COOLWORK - VILLENEUVE-LOUBET;;[5.8643, 46.0609];;FRFR1ELZXF1;RHXE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.62106;46.1411537;;;; +;;;;;;;;FRZMAE22AC49521;CWDDIHOIZF;Roanne, Boulevard Thiers;;RUE MARTIN LUTHER KING - AVIGNON;;[6.190705, 45.950926];;FRFR1ELZRM2;ASAU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.425;45.85996;;;; +;;;;;;;;FRZMAE22AC49590;OZQAXE8API;Vivans, Parking de la mairie;;SEMARD ROTONDE - AVIGNON;;[6.22051, 45.7762];;FRFR1EZNAS1;PTYR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.49167;46.1421246;;;; +;;;;;;;;FRZMAE22AC49577;AVPMF7FPWF;Saint-Genest-Lerpt, Parking rue Louis Richard;;OFFICE DU TOURISME - GASSIN;;[6.12351, 45.9356];;FRFR1EZNAS2;BWSE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.42785;46.18177;;;; +;;;;;;;;FRZMAE22AC49591;RH93NMVN5Q;Balbigny, Place de Verdun;;CAP SUD - AVIGNON;;[6.164, 45.97767];;FRFR1EXFDZ1;AHMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.46464;45.9279808;;;; +;;;;;;;;FRZSUE74AC16987;T00CHAS1VP;Unieux, Parking rue Marechal Leclerc;;MOURRE-SOLIDARITE - AVIGNON;;[6.1387291, 45.9450798];;FRFR1EEYUX1;QLMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.52257;45.820233;;;; +;;;;;;;;FRZSUE74AC16986;W5UAOHAP6F;Roche-La-Moliere, Parking Mairie;;AVENUE TARASCON - AVIGNON;;[6.202025, 45.827454];;FRFR1EZZMK1;JYNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.22112;45.85997;;;; +;;;;;;;;FRZSUE74AC16993;FFCIXLY2AX;Saint-Victor-Sur-Loire, Parking rue de la plage;;HOPITAL BECLERE - AVENUE DE GAULLE - CLAMART;;[6.54229116, 46.08405685];;FRFR1EZUKL1;YQGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3705;45.9061111;;;; +;;;;;;;;FRZSUE74AC16992;BPVCF4NFWS;Saint-Just-Saint-Rambert, Parking Médiathèque;;BP - Garigliano;;[6.646246, 45.93089];;FRFR1ESMJK1;VXFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3031717;46.06668;;;; +;;;;;;;;FRZKAE22AC36717;DRJCSRLME5;Unieux, Parking le Pertuiset;;BP - LONGEVILLE;;[6.3533415, 46.1632497];;FRFR1EWLYS1;RRKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.26788;46.35486;;;; +;;;;;;;;FRZKAE24DC36716;R0FHUDC6EV;Le Coteau, Parking de la glacière;;MAIRIE SUD ROCADE - AVIGNON;;[6.10387, 45.9076];;FRFR1EWDTT1;BWSE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.32492;46.33661;;;; +;;;;;;;;FRZIME22AC19826;LMYDZA6WOH;Ambierle, D52;;BOULEVARD DENIS SOULIER- AVIGNON;;[6.87171266, 45.91714084];;FRFR1EYFQH1;VXFV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3581754;46.33715;;;; +;;;;;;;;FRZIME22AC19827;BVSE9OOBFL;Mably, Parking Salle des Sports;;AVENUE JEAN MONNET - MORIERE;;[6.1334, 45.9036];;FRFR1EWCXM1;YSXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09858;45.90633;;;; +;;;;;;;;FRZMAE22AC56424;EOEVKW231A;Riorges, Parc Beaulieu;;BP MANISSIEUX - SAINT-PRIEST;;[6.106581, 45.907333];;FRFR1EYFRV1;WDQY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.31765;45.8595;;;; +;;;;;;;;FRZMAE22AC56423;DCO2FHPJTD;Perreux, Rue des écoles;;BP FRAZE - MANOIR DU PERCHE - DAMPIERRE-SOUS-BROU;;[6.16885, 45.9328];;FRFR1EYFTL2;VUBY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.7054898;46.3072182;;;; +;;;;;;;;FRZIME22AC70278;CSEKWHVUFM;Saint-Genest-Lerpt, Parking médiathèque;;BP - SAINT-SYLVAIN-D'ANJOU;;[6.12208, 45.8991];;FRFR1EUFRD1;JUKH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2501381;46.32539;;;; +;;;;;;;;FRZIME22AC70279;HD9NVGOEYE;Saint-Maurice-En-Gourgois, Parking supérette;;BP - SAINT-PRIEST;;[6.14695, 45.905];;FRFR1EUCGE1;AMMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2418001;46.36786;;;; +;;;;;;;;FRZIME22AC89539;UIV8WSGZS3;Roche-La-Moliere, Parking rue de la Briqueterie;;BP CHAMPAGNE SUD - LES PETITES-LOGES;;[6.31168, 46.0665];;FRFR1EPECZ1;SRBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.32021;46.3459998;;;; +;;;;;;;;FRZIME22AC89540;MF3IZD0TYS;Savigneux, Rue Bayard;;BP CHAMPAGNE NORD - LES PETITES-LOGES;;[6.091, 45.9208];;FRFR1EAMUH1;AVRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.139655;45.904;;;; +;;;;;;;;FRMAPP000000006623;XWOZOZWQ4X;Usson-En-Forez, Parking place du souvenir;;PARKING - SOSPEL;;[6.10162, 45.888];;FRFR1EAMUH2;MGCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.10641;46.19112;;;; +;;;;;;;;FRZMAE22AC50782;C3RYGMDUOZ;Montbrison, Place Bouvier;;PARKING PASTORELLI - SAINTE MAXIME;;[6.48578, 46.0536];;FRFR1EAMTJ1;NLBK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.720684;45.9084331;;;; +;;;;;;;;FRLUMEVALMOUREZE11;EBFZ5AXIPG;Neulise, Les Jacquins;;RUE VAUBAN - VERSAILLES;;[6.84055, 46.25796];;FRFR1EAMTJ2;MATH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2911397;46.1957504;;;; +;;;;;;;;FRLUMEHOTELPARCAVIGNON11;PFSNGXZAQM;Regny, Parking place Jacques Fougerat;;RUE BONNE AVENTURE - VERSAILLES;;[6.26369449, 46.117427];;FRFR1EAMUH3;VGJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8750103;46.1872704;;;; +;;;;;;;;FRFR1EWRWA1;LWVJGTCWAV;Saint-Romain-Les-Atheux, Saint Romain les Atheux;;RUE DES CHANTIERS - VERSAILLES;;[6.27012, 46.13779];;FRFR1EWMAY1;DQMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.867244;46.16807;;;; +;;;;;;;;FRMAPP000000006666;UHJOVHVZUL;Marlhes, Marlhes;;PARKING GARE - LA CROIX VALMER;;[6.2688, 46.13461];;FRFR1EWACB1;FRSC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8723734;45.940159;;;; +;;;;;;;;FRFR1EFGBG1;HQX9SNP7JC;Saint-Marcellin-En-Forez, Parking rue du 8 mai 1945;;PLACE DU MARCHE - SAUVETERRE;;[6.03918, 45.9612];;FRFR1EWAPP1;FYPB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2431239;46.03216;;;; +;;;;;;;;FRFR1EMWPZ1;WS9GEQKX4X;Charlieu, Parking place de la bouverie;;PARKING PLAGE DU GIGARO - LA CROIX VALMER;;[6.09711, 45.88625];;FRFR1EWKFF1;RHEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2500572;46.28074;;;; +;;;;;;;;FREVMPNVG0B46001;TOIG5O9FBL;L'Etrat, Parking rue de Verdun;;PARKING BOSQUET - SAINTE MAXIME;;[6.03261, 45.9713];;FRFR1EWBVC1;ZKJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5414348;46.1845626;;;; +;;;;;;;;FRZPEE175319;P4KF4WCINB;Montbrison, Parking avenue thermale;;PARKING GAUMONT - SAINTE MAXIME;;[6.1362, 45.8924];;FRFR1EWMEC1;FUTP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.63658;45.9258487;;;; +;;;;;;;;FRZPEE175320;WJ8Z1KJHM8;Roche-La-Moliere, Parking rue Joseph Sanguedolce;;PLACE MERMOZ - SAINTE MAXIME;;[6.5491808, 46.0568649];;FRFR1EWFFL1;VBWZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5813048;45.9169475;;;; +;;;;;;;;FRZTLE161583;RZUDP5ZC6L;Saint-Sauveur-En-Rue, Parking espace Jean Roux;;PARKING JAURES - PLAN DE LA TOUR;;[6.50848, 46.08869];;FRFR1EWHMX1;CGZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5621063;45.9217431;;;; +;;;;;;;;FRZTLE161582;FUSMB1T2DL;Saint-Just-Saint-Rambert, Parking place Jean Monnet;;PARKING TRIDENT - GASSIN;;[6.09085, 45.9378];;FRFR1EWUCV1;BQJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.234031;46.1977983;;;; +;;;;;;;;FRZTLE22AC128771;JZZFBPHZN0;La Clusaz, Parking Cimetière;;PARKING LAUTIER - SIVERGUES;;[6.10531, 45.9397];;FRFR1EWGWV1;ZCQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.68976;46.2012424;;;; +;;;;;;;;FRZTLE22AC128704;YRHKYUWSPC;Annecy Meythet, Rue François Vernex;;PLACE AVENUE GENERAL DE GAULLE -COGOLIN;;[6.50392, 46.09152];;FRFR1EWZRG1;VUVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0103;46.076664;;;; +;;;;;;;;FRZTLE22AC128713;G7IIRTHTVV;Chêne-En-Semine, ZA de la Croisée;;PLACE VICTOR HUGO - COGOLIN;;[6.54797, 46.0643];;FRFR1EABAS2;XGQZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.607755;46.03355;;;; +;;;;;;;;FRZTLE22AC128712;X1WVLS09JB;Villaz, Mairie;;PARKING AIRE DE ST PONS - GRIMAUD;;[6.1013174, 46.0946733];;FRFR1EABAS1;EWQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0564;46.0610345;;;; +;;;;;;;;FRZTLE22AC128770;O6NF58E9RW;Doussard, Parking Maison des Associations;;BP - AIRE DU GRANIER - MYANS;;[6.57371, 46.39752];;FRFR1EABLE1;HHMR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.400384;46.0691081;;;; +;;;;;;;;FRZTLE22AC128703;D321K1JB15;Annecy Pringy, Route du Pont du Brogny;;PARKING MEDIATHEQUE - CAVALAIRE SUR MER;;[4.234739, 46.032035];;FRFR1EABLE2;ATDQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.94401;46.1917492;;;; +;;;;;;;;FRZTLE22AC128758;SASKL5PCVO;Charvonnex, RD 1203;;PARKING PORT - SAINT TROPEZ;;[4.048321, 46.070421];;FRFR1ETGNV2;MJRX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.13118;46.00658;;;; +;;;;;;;;FRZTLE22AC128787;LUID3LXHYD;Argonay, Pace Arthur Lavy;;ZONE COMMERCIAL - PUGET SUR ARGENS;;[4.076384, 46.045465];;FRFR1ETGFW2;PTYR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.22944;44.5359;;;; +;;;;;;;;FRZTLE22AC128711;QQSNCTNJVW;Duingt, Place de l'église;;PARKING MAIRIE - GRIMAUD;;[4.079701, 46.036818];;FRFR1ETFWZ2;QLMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.11126;45.019741;;;; +;;;;;;;;FRZTLE22AC128789;WWTYSYKPGE;Thyez, Rue de la Mairie;;PARKING PORT - GRIMAUD;;[3.87573188, 46.17604575];;FRFR1EXYNR1;WMEN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.86026;44.4629;;;; +;;;;;;;;FRZTLE22AC128790;FKGQLSRA16;Sallanches, Parking du Centre Aquatique;;PARKING RN7 - GRIMAUD;;[3.925942, 46.051708];;FRFR1EXYNR2;DMDT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.323481;44.524718;;;; +;;;;;;;;FRZTLE22AC128757;CTXZPJCMCY;Fillinges, Parking Pont de Fillinges;;CHEMIN DES CANISSONS - CAVALAIRE SUR MER;;[4.072804, 46.036429];;FRFR1EXFZA1;XCDT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.69832;46.0163;;;; +;;;;;;;;FRZTLE22AC128788;TKYLXPMQQR;Annecy Cran-Gevrier, Les Passerelles;;PARKING ESPACE DES LICES - SAINT TROPEZ;;[3.931463, 46.031274];;FRFR1ESCAF1;TAPJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.0055;45.89654;;;; +;;;;;;;;FRZTLE22AC128773;XUHTK332PH;Chamonix - Parking Grepon;;PARKING D943 - LOURMARIN;;[4.0964775, 46.0296215];;FRFR1EEXUQ1;JYNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.31337;46.1801;;;; +;;;;;;;;FRZTLE22AC128752;XFOSNUYPUI;Annecy, Rue Dupanloup;;PARKING - SAINT ZACHARIE;;[4.085646, 46.029813];;FRFR1EFBWS1;ZTGW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3274777;45.8969;;;; +;;;;;;;;FRZTLE22AC128774;RJ5MVDIEP8;Annecy Cran-Gevrier, Parking Comedie;;PARKING CLUB 55 - RAMATUELLE;;[3.9309, 46.052042];;FRFR1EHWAM2;FFSG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.403103;45.9015;;;; +;;;;;;;;FRZTLE22AC128710;MJ8NETPBNZ;Annecy-le-Vieux, NRO;;PLACE DU 8 MAI 1945 - JOINVILLE;;[4.069028, 46.047472];;FRFR1ESBRA1;QZGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.27037;45.883111;;;; +;;;;;;;;FRZTLE22AC128765;WUNGLWZ1YC;Annecy, Rue de la Gare;;1 RUE BERTHELOT DRANCY;;[4.22096, 45.7446];;FRFR1EXENE1;TNMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.59052;45.9169;;;; +;;;;;;;;FRZTLE22AC128751;OMDPXMBHFV;Annecy-le-Vieux, Albigny;;PARKING DES ITALIENS - AVIGNON;;[4.39409, 45.6384];;FRFR1ESQTP1;RRKL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.6859975;45.8148;;;; +;;;;;;;;FRZTLE22AC128766;S7OZUOKYDE;La Roche-Sur-Foron, Parking Clavel;;FELIBRIGE - JONQUERETTE;;[4.446987, 45.4098072];;FRFR1EXAPX1;XMTD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.59334;46.2263;;;; +;;;;;;;;FRCPIE67123751;KCS9CBB3AU;Annecy Meythet, Parking Fruitières;;PARKING DE L'OULLE - AVIGNON;;[4.3640911, 45.4050209];;FRFR1ESBVS1;QLYL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.52835;45.88239121;;;; +;;;;;;;;FRETIP59368A;EUPMCU29Y2;Annecy Seynod, Le Polyèdre;;DAUTIER - VELIZY-VILLACOUBLAY;;[4.3666899, 45.402132];;FRFR1EEPYB1;TNMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.59628696;46.207255;;;; +;;;;;;;;FRZIME22AC172817;OTB2ORHCSB;Mont-Saxonnex, 89 route de Cluses - Chemin du Bugnon;;RUE DEWOITINE - VELIZY-VILLACOUBLAY;;[4.0045021, 45.7456111];;FRFR1EETRL1;HHMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12164055;45.7562;;;; +;;;;;;;;FRZIME22AC172819;O3D66ZVWF8;Châtel, Lac de Vonne;;ALLIEE LATECOERE - DASSAULT - VELIZY-VILLACOUBLAY;;[4.5162605, 45.4165342];;FRFR1ENQRZ1;ATDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1557;46.1058;;;; +;;;;;;;;FRZIME22AC164421;LEI5CBWBVF;Pers-Jussy, Route De Reignier;;BOULEVARD DU GENERAL DE GAULLE - GARCHES;;[4.4370403, 45.4878958];;FRFR1EXQSA1;QLYL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.840009;45.9230095;;;; +;;;;;;;;FRZIME22AC164418;AXODXBUCIG;Reignier-Esery, Grande Rue;;AVENUE DU GENERAL DE GAULE - VERSAILLES;;[4.56981, 45.5055];;FRFR1EETVB1;EWQT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.25063;46.0498;;;; +;;;;;;;;FRLUMELOUCASTELETAPPARTHOTEL11;IQFRXFB9FK;Reignier-Esery, Rue du Môle;;AVENUE DU GENERAL DE GAULE - LES ANGLES;;[4.58146, 45.5135];;FRFR1ESKKA1;VUBY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.591829;46.3958;;;; +;;;;;;;;FRFR1KPPH1;TUNFILFNT4;La Balme-De-Sillingy, Supermarché;;PARKING ELEPHANT BLEU - LES ANGLES;;[4.43933, 45.5482];;FRFR1ETFYA1;KCWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.115;46.40028687;;;; +;;;;;;;;FRZPEE175425;HWGH4CNZPB;Annecy (Seynod), Centre Nautique - Rue Jean Clerc;;PARKING PRIADES - LES ANGLES;;[4.052708, 46.046313];;FRFR1ETGNV1;WFEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.19782;45.90815666;;;; +;;;;;;;;FRZPEE172798;XEESI7SAZY;La Balme-De-Sillingy, Lac;;27 BOULEVARD GALLIENI - ISSY-LES-MOULINEAUX;;[4.082342, 46.042776];;FRFR1ETFWZ1;MZXR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.774007;45.9451;;;; +;;;;;;;;FRLUMESANTAGIULIAPALACE11;E1RHXEXDBN;Annecy, Parking des Marquisats;;21 BOULEVARD DES ILES - ISSY LES MOULINEAUX;;[4.002576, 46.051967];;FRFR1EGSNP2;EMRN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.473147;46.267741;;;; +;;;;;;;;FRLUMESALETTA11;MQM28MJSWG;Scionzier, Place du 18 Août;;PLACE DE LA GARE - GARCHES;;[4.0350391, 46.0434068];;FRFR1ENHRB1;UTCC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1293;45.99859;;;; +;;;;;;;;FRZPEE22AC166279;Z0LIYARX3I;Marignier, Parking De La Gare;;AVENUE DE LA LIBERATION - LE PLESSIS-ROBINSON;;[4.03728, 45.996498];;FRFR1EABMS2;HSCR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.05437;46.144208;;;; +;;;;;;;;FRZPEE22AC166278;N85SEO7ECP;Epagny Metz-Tessy, Rue de la Liberté;;GRANDE RUE - GARCHES;;[4.0535, 46.034167];;FRFR1EABMS1;TQRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12962;45.8996;;;; +;;;;;;;;FRS86PSOREB082;JJAKCW9HAW;Epagny Metz-Tessy, Parking Du Clocher;;AVENUE EDOUARD HERRIOT - LE PLESSIS-ROBINSON;;[4.0503929, 46.0302958];;FRFR1EQYFZ1;SMUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12307;45.8616;;;; +;;;;;;;;FRS86PSOREB086;KYGXBCOEUN;Marignier, Parking De la passerelle;;1 Route de la Mairie 13100 Saint-Marc-Jaumegarde;;[4.0408092, 46.0282332];;FRFR1EABFX2;GUKC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.29294;46.053531;;;; +;;;;;;;;FRS86PSOREB085;NPD3JQ3SQ3;Scionzier, Parking Malvoisin;;RUE DU 19 JANVIER - GARCHES;;[4.08037845, 46.05971964];;FRFR1EABFX1;YVTS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.11669;46.24829;;;; +;;;;;;;;FRS86PSOREB084;C8ZGQHEU5W;Beaumont, Grande Rue;;BARTHELASSE - AVIGNON;;[4.067559, 46.036543];;FRFR1EWSVP1;HJHZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16349;45.9124;;;; +;;;;;;;;FRS86PSOREB083;WLHJJJF5Z0;Evian-les-Bains, Route de Bissingues;;AVENUE LEON BLUM - LE PLESSIS-ROBINSON;;[4.086384, 46.080367];;FRFR1EYKAL1;HMAG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.13666;45.7866;;;; +;;;;;;;;FRS86PSOREB078;QIJDB1KGQD;Montagny, Impasse des sports;;LES SELLETTES - RAMATUELLE;;[4.060917, 45.999397];;FRFR1EMEFZ2;PAHX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1202;45.9026;;;; +;;;;;;;;FRS86PSOREB079;Y7IPA7UM6O;Mably, rue de Paris;;RUE DU DOCTEUR DEBAT - GARCHES;;[6.034507, 44.458795];;FRFR1EMEFZ1;HMXN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.12163;45.8956;;;; +;;;;;;;;FRS86PSOREB080;DB729VJMID;Roanne, Parking gymnase boulevard de belgique;;PARKING LAFONT - LE BOUSCAT;;[4.273447, 45.759568];;FRFR1ETFYA2;FAAF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.08326;45.91755;;;; +;;;;;;;;FRS86PSOREB081;ZKDZF8SDVA;Roanne, Parking Technopole Diderot;;RUE DE SURESNES - GARCHES;;[4.4499632, 45.4877239];;FRFR1EGSNP1;ARSW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.94101;45.9263;;;; +;;;;;;;;FRS86PSOREB077;HIMXOVAKJ0;La Pacaudiere, Parking gymnase;;PLACE DEVOS - GARCHES;;[4.4352, 45.48154];;FRFR1EYKAL2;WZEX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.17526;45.9078;;;; +;;;;;;;;FRS86PSOREB087;LDEIEAYDSL;Renaison, Parking place du 11 novembre;;RUE PASTEUR - GARCHES;;[4.208527, 45.9483507];;FRFR1EFYHD2;HKRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.21571;45.9157;;;; +;;;;;;;;FRS86PSOREB015;DMH0PBAXCF;Roanne, Rue Alphonse Coste;;PLACE DU CIMETIERE - GARCHES;;[4.2812527, 45.3958253];;FRFR1EYZLG2;AYSQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.30372;45.908;;;; +;;;;;;;;FRS86PSOREB020;Y2MRQRX4PV;Saint-Andre-D'Apchon, Parking place de la mairie;;PARKING DU 19 JANVIER - GARCHES;;[4.4257236, 45.4753254];;FRFR1EYZLG1;AKAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.30504;45.8626;;;; +;;;;;;;;FRS86PSOREB019;EKWN2NN56Z;Perreux, Parking super U;;RUE DES SUISSES - GARCHES;;[4.3367866, 45.7928662];;FRFR1EAXAL1;RCDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.37743;45.8664;;;; +;;;;;;;;FRS86PSOREB018;RRK1AVPNIS;Le Coteau, Parking capitaine Aucey;;PLACE DU PETIT PONT - VEDENE;;[4.064615, 45.424436];;FRFR1EFYHD1;ARPS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.14032;45.8808;;;; +;;;;;;;;FRS86PSOREB017;NRPAT4JCYN;Renaison, Parking rue Robert Barathon;;AVENUE DE L'EGUILLE - VEDENE;;[4.5414507, 45.5229189];;FRFR1EAXAL2;RQFG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.98003;46.0682;;;; +;;;;;;;;FRS86PSOREB016;IMRPTILWO0;Roanne, Avenue de Paris;;PARKING CANADELIA - RAYOL;;[4.3141025, 45.5019921];;FRFR1ETGFW1;RQFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.91994;46.0719;;;; +;;;;;;;;FRS86PSOREB014;FYHUB1BIZF;Feurs, Parking rue de l'hotel de ville;;48 Rue du Général Exelmans 78140 Vélizy-Villacoublay;;[4.266084, 45.389132];;FRFR1EYFSD2;VHHX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.690794;46.0731;;;; +;;;;;;;;FRS86PSOREB009;LTG8ORIAX4;Chazelles-Sur-Lyon, Parking musée du chapeau;;8 Avenue Charles de Gaulle 92350 Le Plessis-Robinson;;[4.3524202, 45.466474];;FRFR1EYFSD1;CBUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.21297;45.8646;;;; +;;;;;;;;FRS86PSOREB013;UQL1ORKDTH;Saint Etienne Rochetaillee, Parking Rue des Echeneaux;;1 Route du Fier 17880 Les Portes-en-Ré;;[4.353032, 45.467506];;FRS89EYKQH2;MZMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.431687;46.0461;;;; +;;;;;;;;FRS86PSOREB012;MR9BSJWNMJ;La Ricamarie, Parking Avenue Maurice Thorez;;1 Avenue Victor Basch 84300 Cavaillon;;[4.184682, 45.538959];;FRFR1ENUAL1;YUMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16202;46.01908;;;; +;;;;;;;;FRS86PSOREB011;V7ICDQ3LVR;La Ricamarie, Parking Boulevard Victor Hugo;;1 Chemin des Canissons 83240 Cavalaire-sur-Mer;;[4.64742, 45.4794];;FRFR1ECTFV2;HAYV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.06426;46.00793;;;; +;;;;;;;;FRS86PSOREB010;DKBK3IZL5E;Boen-Sur-Lignon, Boën-sur-Lignon;;1 Rue Auguste Blanchi 06380 Sospel;;[4.5695, 45.50397];;FRFR1EJYNH1;EMRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.94833;45.791;;;; +;;;;;;;;FRS86PSOREB114;XXGOJ7R8NU;La Valla-En-Gier, Parking place de la cure;;1 Route des Salins 83990 Saint-Tropez;;[4.31657, 45.5921];;FRFR1ECTFV1;CBUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.37506;45.905947;;;; +;;;;;;;;FRS86PSOREB107;HBB3TYFJFW;Sorbiers, Parking rue des roseaux;;62 Place Louvois 78140 Vélizy-Villacoublay;;[4.53528, 45.5561];;FRFR1EQNMJ2;UTCC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.09222;45.8321;;;; +;;;;;;;;FRS86PSOREB102;Y8NFJOVNCO;La Grand-Croix, Place du Général de Gaule;;1 Le Mail 78140 Vélizy-Villacoublay;;[4.57513, 45.4842];;FRFR1EQNMJ1;HSCR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.4282;45.9217;;;; +;;;;;;;;FRS86PSOREB103;GL4ERZHDOT;Lorette, Parking rue Saint Joseph;;1 Avenue de Savoie 78140 Vélizy-Villacoublay;;[4.54026293, 45.48570475];;FRFR1ERLGH1;KZHC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5311;45.8606;;;; +;;;;;;;;FRS86PSOREB104;GM4SFCKU5P;Fontanes, Parking rue Fontanesium;;1 Avenue de la mer 83310 Grimaud;;[4.25891, 45.6466];;FRFR1EXHAZ2;CDDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.4056;46.0577;;;; +;;;;;;;;FRS86PSOREB105;L2KTMFZATR;Riorges, Parking gallieni;;1 A10 17800 Saint-Léger;;[4.37529, 45.5323];;FRFR1EJYJM2;GUKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.6562248;45.9064;;;; +;;;;;;;;FRS86PSOREB106;HWPPNAD8K0;Roanne, Boulevard Jean Baptiste Clément;;1 A 75 - échangeur 32 - Aire de la Lozere - La Garde 48200 ALBARET-SAINTE-MARIE;;[4.58589, 45.5341];;FRFR1EJYJM1;YVTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.52646;45.9415;;;; +;;;;;;;;FRS86PSOREB108;TXLNRF6IDO;Saint-Leger-Sur-Roanne, Parking aéroport;;47 Avenue Aristide Briand 92350 Le Plessis-Robinson;;[4.58422, 45.5495];;FRFR1EVJAG1;HJHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.58711;46.05942;;;; +;;;;;;;;FRS86PSOREB088;NVJ5E3O6YT;Riorges, Parking Place Jean Cocteau;;1 Chaussée de l'Étang 92350 Le Plessis-Robinson;;[4.5950883, 45.5447567];;FRFR1EXHAZ1;HMAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.62745;46.2085;;;; +;;;;;;;;FRS86PSOREB109;TMRZGC2FOR;Villerest, Parking mairie de Villerest;;21 Rue Robert Auzelle 78140 Vélizy-Villacoublay;;[4.48614, 45.5451];;FRFR1EVJAG2;PAHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.57812;46.2319364;;;; +;;;;;;;;FRS86PSOREB110;F2310LROW6;Roanne, Clinique du Renaison;;0 Avenue Pierre de Coubertin 84000 Avignon;;[6.8690192, 45.9239269];;FRFR1EAGUA1;HMXN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.45734;46.06035;;;; +;;;;;;;;FRS86PSOREB111;KLMBE6LVV9;Roanne, Parking halle Vacheresse;;PLACE ANDRE GRANGIER - PUYVERT;;[6.70555, 46.18337];;FRFR1EAGUA2;FAAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.80141;46.40099;;;; +;;;;;;;;FRS86PSOREB112;NX7Q0NZIA4;Riorges, Parking Scarabée;;PLATEAU - VENTABREN;;[6.56682, 45.83576];;FRFR1EMQLA2;ARSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.6210576;46.37938;;;; +;;;;;;;;FRS86PSOREB113;CQMQZFLODZ;Roanne, Numériparc;;MONTFAVET PAROISSIENS - AVIGNON;;[6.417302, 46.0782491];;FRFR1EAMKA2;WZEX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.670556;46.39822;;;; +;;;;;;;;FRS86PSOREB101;F2WBIZMGSY;Roanne, rue Alsace Lorraine;;DOMAINE TORPEZ - RAMATUELLE;;[6.32796, 46.298313];;FRFR1EAMKA1;HKRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.58349;46.1382;;;; +;;;;;;;;FRS86PSOREB100;DFTEM0U8ZB;Mably, Bonvert;;LE VILLAGE - VELLERON;;[6.3746593, 46.3324048];;FRFR1EMQLA1;AYSQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.628513;46.39387;;;; +;;;;;;;;FRS86PSOREB089;JBGVKCN6U7;Commelle-Vernay, Parking allée du Parc;;BP - SAINT-RAMBERT-D'ALBON;;[6.39608, 46.00143];;FRFR1ELUCQ1;AKAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3712542;46.0200208;;;; +;;;;;;;;FRS86PSOREB090;XQHA8RY3C0;Tallard, Parking Intermarché;;RENAULT DEALER - BAIN DE BRETAGNE;;[6.25827, 46.26919];;FRFR1EKHQP2;RCDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16856;46.16;;;; +;;;;;;;;FRS86PSOREB091;VCES3C1APO;Salvizinet, Salvizinet;;AVENUE DE LA DIVISION LECLERC - FONTENAY-AUX-ROSES;;[6.1047065, 46.1204422];;FRFR1EKHQP1;ARPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.96791;46.08865;;;; +;;;;;;;;FRS86PSOREB092;S1UPSAI2WA;Sorbiers, Parking rue Claudius Remilleux;;BP - CHAUONT SUR THARONNE;;[6.0813288, 46.1446775];;FRFR1EJYNH2;XDRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.22815;45.943044;;;; +;;;;;;;;FRS86PSOREB093;X2OY3JOEPQ;La Talaudiere, Parking place Jean Moulin;;BP - BRUMATH - 67170;;[6.7128251, 45.8878674];;FRFR1EHSMD1;HQUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.633486;46.2652955;;;; +;;;;;;;;FRS86PSOREB094;NGQP8ETIBP;Saint-Symphorien-De-Lay, Parking COPLER;;CAPITAINE TARRON - VELIZY-VILLACOUBLAY;;[6.0797251, 46.1411537];;FRFR1EYFQH2;RSXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.7979927;46.00947;;;; +;;;;;;;;FRS86PSOREB095;OCMVHL5UIN;Unieux, Parking rue Jean Jaures;;AVENUE JEAN JAURES - CLAMART;;[6.61474, 45.85996];;FRFR1EHSMD2;RSXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.72854;46.10947;;;; +;;;;;;;;FRS86PSOREB096;YPBFYEH6AZ;La Talaudiere, Parking rue Salvador Allende;;RENAULT DEALER - FOUGERES;;[6.1377729, 46.1421246];;FRFR1EMWPZ1;HQUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.6110727;46.16281;;;; +;;;;;;;;FRS86PSOREB097;BJDBRGOTJA;Panissieres, Parking route de cottance;;VICTOR HUGO - CLAMART;;[6.70249, 46.18177];;FRFR1EDTYR1;HSTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.4040479;45.9321314;;;; +;;;;;;;;FRS86PSOREB098;YJEH1BQMHQ;Saint-Bonnet-Le-Chateau, Avenue du général Gouraud;;ECOLE - VENTABREN;;[6.720604, 45.9279808];;FRFR1EVVCJ1;HGPM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2115413;45.8889078;;;; +;;;;;;;;FRS86PSOREB099;QGDY5JC7JJ;Cellieu, Parking place Verdun;;POMPIDOU - CLAMART;;[6.727681, 45.820233];;FRFR1EDTYR2;HGPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2097281;46.08306;;;; +;;;;;;;;FRS86PSOREB021;K0VTCHYACN;La Fouillouse, Parking rue centrale;;PRAIRIE DE LA MER GRIMAUD;;[6.62106, 45.85997];;FRFR1ERVXC2;HVYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.392732;45.9213467;;;; +;;;;;;;;FRS86PSOREB057;FUTIVJGR3W;Fraisses, Parking place Jean Rist;;PRAIRIE DE LA MER ENTREE GRIMAUD;;[6.425, 45.9061111];;FRFR1ERVXC1;HVYX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.409465;46.1421419;;;; +;;;;;;;;FRS86PSOREB063;MSA4LEJVKS;Villars, Parking rue de l'arsenal;;BP - AIRE DE L'ABIS - SAINT-JEOIRE-PRIEURE - 73190;;[6.49167, 46.06668];;FRFR1EZYXJ1;HVZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.383611;46.1889469;;;; +;;;;;;;;FRS86PSOREB062;FJYNYUSSSJ;Villars, Parking rue de l'hôtel de ville;;BP - AIRE DE L'ABIS SAINT-JEOIRE-PRIEURE;;[6.42785, 46.35486];;FRFR1EAGEY1;HVZG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.339118;46.1913894;;;; +;;;;;;;;FRS86PSOREB060;ZYL6ZBTURA;Sury-Le-Comtal, Boulevard M Orelu;;19 RUE DE LA RESISTANCE - SAINT TROPEZ;;[6.46464, 46.33661];;FRFR1EZYWV1;QXMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.388649;45.446148;;;; +;;;;;;;;FRS86PSOREB059;LJK2HESSRK;Sainte-Croix-En-Jarez, Parking aux portes;;CAMPING DES MURES PRESTIGE - GRIMAUD;;[6.52257, 46.33715];;FRFR1EDWYQ1;PJEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.399325;45.422654;;;; +;;;;;;;;FRS86PSOREB058;EJFSUCSX8H;La Grand-Croix, Parking médiathèque;;CAMPING DES MURES PLAGE - GRIMAUD;;[6.22112, 45.90633];;FRFR1EDWYQ2;PJEC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3907915488403;45.450606;;;; +;;;;;;;;FRS86PSOREB056;LW8YIBIVNR;Saint-Galmier, Boulevard Gabriel Cousin;;NIKKI BEACH - RAMATUELLE;;[6.3705, 45.8595];;FRFR1EUFQM2;PBET2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.395133;45.44058;;;; +;;;;;;;;FRS86PSOREB022;Z2GMZTGMKG;Saint-Romain-En-Jarez, Rue Suel Picat;;PRAIRIE DE LA MER PARKING CLIENTS - GRIMAUD;;[6.3031717, 46.3072182];;FRFR1EUFQM1;QXMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.285769;45.432013;;;; +;;;;;;;;FRS86PSOREB055;GUF6TXRR70;Saint-Paul, Rue des anciens combattants;;BP - AIRE DE MEILLAC;;[6.26788, 46.32539];;FRFR1ERWAM1;PBET1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.384222;45.440783;;;; +;;;;;;;;FRS86PSOREB053;JYGTRRTRSD;L'Horme, Parking route des côtes;;RUE DU FOUR - LA MOLE;;[6.32492, 46.36786];;FRFR1ERWAM2;WWBX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3867507;45.44346056306;;;; +;;;;;;;;FRS86PSOREB052;BTEM7L8NXD;Saint-Andre-Le-Puy, Parking rue Victor Hugo;;AVENUE PAUL LANGEVIN - FONTENAY-AUX-ROSES;;[6.3581754, 46.3459998];;FRFR1EATXX2;ELRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.286092;45.431483;;;; +;;;;;;;;FRS86PSOREB051;YEEBQJBWE2;Saint-Heand, Parking collège Joseph Collard;;PLACE EMMANUEL VITRIA - MORIERE;;[6.09858, 45.904];;FRFR1EATXX1;ELRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.394564;45.391243;;;; +;;;;;;;;FRS86PSOREB050;R7WVTFXTZQ;Genilac, Parking allée des bourdonnes;;RUE JEAN JAURES - FONTENAY-AUX-ROSES;;[6.31765, 46.19112];;FRFR1ELJPN1;WRWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.323678;45.459475;;;; +;;;;;;;;FRS86PSOREB064;YO5QCAKPXE;Saint-Martin-La-Plaine, Parking zoo;;AVENUE LOMBART - FONTENAY-AUX-ROSES;;[6.7054898, 45.9084331];;FRFR1ELJPN2;WRWA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.5158208;45.4476017;;;; +;;;;;;;;FRS86PSOREB065;JBWSNH5CN2;Saint-Martin-La-Plaine, Route de la Tour;;CAPITAINERIE - SAINT TROPEZ;;[6.2501381, 46.1957504];;FRFR1EPQXB1;WWBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.364239;45.384258;;;; +;;;;;;;;FRS86PSOREB076;E13WCUMQM3;Saint-Christo-En-Jarez, Place de la liberté;;6 AVENUE DE PARIS -VERSAILLES;;[6.2418001, 46.1872704];;FRFR1ENWTV1;CAMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.378651;45.433997;;;; +;;;;;;;;FRS86PSOREB075;TJPZS8BPH4;Chamonix-Mont-Blanc, Parking Mairie;;300 Route de Tahiti 83350 - Ramatuelle;;[6.32021, 46.16807];;FRFR1ELUCQ2;CAMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.368072;45.397069;;;; +;;;;;;;;FRS86PSOREB074;K2DBFDWT9W;Morzine, Route Du Palais Des Sports;;GARE - ENTRAIGUES SUR LA SORGUE;;[6.139655, 45.940159];;FRFR1ENGSM1;HSTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.620006;45.4782379;;;; +;;;;;;;;FRS86PSOREB073;EZSU5AL3I5;Praz-Sur-Arly, Plan Meuret;;Avenue De L'Europe - Parking Origne Hall 85500 LES HERBIERS (85);;[6.10641, 46.03216];;FRFR1ENGSM2;HWZJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.276472;45.479263;;;; +;;;;;;;;FRS86PSOREB072;IHTEVI4L40;Bonneville, Avenue de la gare;;Parking des Pinsonnieres 85680 LA GUERINIERE (85);;[6.720684, 46.28074];;FRFR1EMXMZ2;HWZJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.526069;45.463571;;;; +;;;;;;;;FRS86PSOREB071;RDX2AWT3HH;Ballaison, Ecole;;Square du Grand Pont - Place de la Mairie 85710 LA GARNACHE (85);;[6.2911397, 46.1845626];;FRFR1EUMMS2;TMZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.390567;45.454275;;;; +;;;;;;;;FRS86PSOREB070;YADWXN16SX;Sciez, Parking face à la mairie;;Pôle d'hange Multi Usage - Rue Gérard Guérin 85200 FONTENAY-LE-COMTE (85);;[6.8750103, 45.9258487];;FRFR1EAVUX1;RPKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.292167;45.529152;;;; +;;;;;;;;FRS86PSOREB069;HSL9TJXH2X;Le Petit-Bornand-Les-Glières, Parking de la Médiathèque;;Place des Droits de L'Homme 85500 LES HERBIERS (85);;[6.867244, 45.9169475];;FRFR1EFRXV1;RRYV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.257074;45.379078;;;; +;;;;;;;;FRS86PSOREB068;LLI8VB03EYSCL2;Veigy-Foncenex, Parking Champ Faviol;;Place Thivercay - Rue Georges Clémenceau 85200 FONTENAY-LE-COMTE (85);;[6.8723734, 45.9217431];;FRFR1EJWEP1;RRYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.272165;45.494844;;;; +;;;;;;;;FRS86PSOREB067;IBSXDFRIST;Neydens, Parking Chef-Lieu;;Boulevard du Chail - Place de Verdun 85200 FONTENAY-LE-COMTE (85);;[6.2431239, 46.1977983];;FRFR1EJWGC2;VHHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.389903;45.430944;;;; +;;;;;;;;FRS86PSOREB066;N9XQ3KEFL9;Saint-Julien-En-Genevois, Parking de la Mairie;;Aménagement Rouchefoucault 85200 FONTENAY-LE-COMTE (85);;[6.2500572, 46.2012424];;FRFR1EJWGC1;RSMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.37989;45.523472;;;; +;;;;;;;;FRS86PSOREB049;BR33QVBXDK;Saint-Gervais-Les-Bains, Parking Patinoire;;Place du Marché 85280 LA FERRIERE (85);;[6.5414348, 46.076664];;FRFR1EJWEP2;RSZN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.377888;45.525924;;;; +;;;;;;;;FRS86PSOREB048;LLIIIO2L613NJN;Saint-Julien-En-Genevois, Grand Rue;;Place de la Mairie 85140 LES ESSARTS (85);;[6.63658, 46.03355];;FRFR1EDMME1;RSZN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.613454;45.529554;;;; +;;;;;;;;FRS86PSOREB034;ER0AUMJDGU;Megève, Parking Molettaz;;Place de L'lise 85140 LES ESSARTS (85);;[6.5813048, 46.0610345];;FRFR1EDMME2;RSMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.399995;45.411421;;;; +;;;;;;;;FRS86PSOREB033;KRAXKE7RE5;Collonges-Sous-Salève, Rd 1206;;Rue de Margerie - Parking Péri-Scolaire 85170 DOMPIERRE-SUR-YON (85);;[6.5621063, 46.0691081];;FRFR1EWFHK1;USSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.400734;45.437243;;;; +;;;;;;;;FRS86PSOREB032;LLJED8Y6Z1Z0BZ;Morzine, Taille Du Grand Mas;;Place du Docteur Brechoteau 85220 COEX (85);;[6.234031, 46.1917492];;FRFR1EJGXR1;ZDCA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.419098;45.467731;;;; +;;;;;;;;FRS86PSOREB031;XFCI1JOWWR;Passy, Place Berger;;Rue du Moulin Rougets - Place des Anciens abattoirs 85400 LUÇON (85);;[6.68976, 46.00658];;FRFR1ENHUN1;ERKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.264967;45.527692;;;; +;;;;;;;;FRS86PSOREB030;PYIAZJVBWS;Les Contamines-Montjoie, Parking du Solaret;;Place du Champ de Foire 85500 LES HERBIERS (85);;[6.0103, 44.5359];;FRFR1EKWWW1;SMZB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.403326;45.41816;;;; +;;;;;;;;FRS86PSOREB029;LLJE3WUMOV8L8F;Megève, Jardin Public RD1212;;Place des Halles - Ilôt Marillet 85320 MAREUIL-SUR-LAY-DISSAIS (85);;[6.607755, 45.019741];;FRFR1EXPES1;SMZB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3801704;45.442934;;;; +;;;;;;;;FRS86PSOREB028;FU2UCSPHOH;La Clusaz, 39 Rue du cimetière;;Place de l'Hotel de Ville 85150 LA MOTHE-ACHARD (85);;[6.0564, 44.4629];;FRFR1EKFKC1;TMZX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.387767;45.418845;;;; +;;;;;;;;FRS86PSOREB027;YZ10HKDMQ8;Vougy, Place Des Anciens Combattants;;Parking de Tanchet 85180 CHATEAU-D'OLONNE (85);;[6.400384, 44.524718];;FRFR1ECSBV1;ZDCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.39425;45.543839;;;; +;;;;;;;;FRS86PSOREB026;VEVO6DOUKL;Anthy-Sur-Leman, Parking Salle des Fêtes;;Place de la Roseraie - Rue de la Fontaine 85290 MORTAGNE-SUR-SEVRE (85);;[5.94401, 46.0163];;FRFR1EFGBW1;MEAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.395436;45.426995;;;; +;;;;;;;;FRS86PSOREB025;NLEDVFEXF7;Allinges, Parking de l'Église;;Avenue de la Gare 85290 MORTAGNE-SUR-SEVRE (85);;[6.13118, 45.89654];;FRFR1ETUVP2;RPKL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.379868;45.4731837;;;; +;;;;;;;;FRS86PSOREB024;G0F2IUTCE8;Lyaud, Eglise;;Place du Pont de l'Issoire 85260 MORMAISON (85);;[6.22944, 46.1801];;FRFR1ETUVP1;USSV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.62708;45.453219;;;; +;;;;;;;;FRS86PSOREB023;FYDLG22UGH;Dingy-Saint-Clair, Cimetière;;Place du Pont Jarley 85600 MONTAIGU (85);;[6.11126, 45.8969];;FRFR1EYFRV2;MEAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.403437;45.415889;;;; +;;;;;;;;FRS86PSOREB035;ZI3F7Q3G9Y;Manigod, Chef Lieu;;Place Leclerc 85400 LUÇON (85);;[6.86026, 45.9015];;FRFR1EYFTL1;BUFX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.38351;45.423999;;;; +;;;;;;;;FRS86PSOREB047;ORFDPC1FUM;Douvaine, Avenue du Bas Chablais;;Place Clémenceau 85560 LONGEVILLE-SUR-MER (85);;[6.323481, 45.883111];;FRFR1EPNFA2;MZMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.505162;45.43433;;;; +;;;;;;;;FRS86PSOREB046;K9AZWC5W94;Chens-Sur-Leman, Ancienne Mairie;;Rue Biaille de Langibaudière 85520 JARD-SUR-MER (85);;[6.69832, 45.9169];;FRFR1EPNFA1;HAYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.623377;45.532354;;;; +;;;;;;;;FRS86PSOREB045;ZG0YWPL16J;Yvoire, Parking Pré Ponce;;Parking Heliport Ile d'Yeu 85350 L'ILE-D'YEU (85);;[6.0055, 45.8148];;FRFR1EUMMS1;TAAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.373289;45.439087;;;; +;;;;;;;;FRS86PSOREB044;GLCUE976K9;Excenevex, Avenue de la Plage;;Parking Embarquadère Ile d'Yeu - Quai de la Mairie 85350 L'ILE-D'YEU (85);;[6.31337, 46.2263];;FRFR1EAPVL1;UVHD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.38404;45.43067;;;; +;;;;;;;;FRS86PSOREB043;GUJSPIPZNZ;Annecy Cran-Gevrier, Avenue Beauregard;;Rue Pierre de Coubertin 85500 LES HERBIERS (85);;[6.3274777, 45.88239121];;FRFR1EMXMZ1;XTNN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.391937;45.467122;;;; +;;;;;;;;FRS86PSOREB042;OUTJB3CMSJ;Lucinges, Place de la Vignule;;Place Raoul Pelote 85230 BOUIN (85);;[6.403103, 46.207255];;FRFR1EPHRG1;XTNN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.396479;45.53135;;;; +;;;;;;;;FRS86PSOREB040;O38JYKRTRO;Passy, Parking Mattel;;Parking Millet 85180 CHATEAU-D'OLONNE (85);;[6.27037, 45.7562];;FRFR1EURUM3;YEHC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.401687;45.444678;;;; +;;;;;;;;FRS86PSOREB039;KT2CJWMHHT;Annemasse, Rue de la Bruyère;;Rue du Fléchet 85600 BOUFFERE (85);;[6.59052, 46.1058];;FRFR1EURUM2;NZNN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.422419;45.439909;;;; +;;;;;;;;FRS86PSOREB038;G3IUATQPKH;Annemasse, Rue du Sentier;;Place du Champ de Foire - Rue de la Gare 85490 BENET (85);;[6.6859975, 45.9230095];;FRFR1EURUM1;CBDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.386229;45.438013;;;; +;;;;;;;;FRS86PSOREB037;PNZOLN3KQH;Bonne, RD907;;Rue Charles Gallet 85230 BEAUVOIR-SUR-MER (85);;[6.59334, 46.0498];;FRFR1EGMYQ3;LCWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.391303;45.439454;;;; +;;;;;;;;FRS86PSOREB036;GJ9LI4EFUY;Argonay, Quartier Rigoles;;Rue Georges Clémenceau 85390 BAZOGES-EN-PAREDS (85);;[6.52835, 46.3958];;FRFR1EGMYQ1;XAMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.50956;45.45052;;;; +;;;;;;;;FRS86PSOREB007;GTJYVLLJFU;Cruseilles, Grande Rue;;Chemin du Querruy 85550 LA BARRE-DE-MONTS (85);;[6.59628696, 46.40028687];;FRFR1EGMYQ2;QWKQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.368069;45.444738;;;; +;;;;;;;;FRS86PSOREB115;H3MZXPKIZJ;Abondance, Parking De La Mairie;;Rue de Saint-Jean-de-Monts 85550 LA BARRE-DE-MONTS (85);;[6.12164055, 45.90815666];;FRFR1EAQQE1;RGKX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.437393;45.435811;;;; +;;;;;;;;FRS86PSOREB157;W5R7IXTOXN;Cranves-Sales, Route de Borly;;Rue De La Barre Raguideau 85630 BARBATRE (85);;[6.1557, 45.9451];;FRFR1EAFNU1;KTVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3976364;45.454669;;;; +;;;;;;;;FRS86PSOREB155;VFR4L4ZIYV;Chamonix-Mont-Blanc, Parking du Corzelet;;Allée Verte - Rue Louis Pasteur 85430 AUBIGNY (85);;[6.840009, 46.267741];;FRFR1EAWTA1;YLHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.392778;45.477746;;;; +;;;;;;;;FRS86PSOREB154;LVC3YKSO2H;Chamonix-Mont-Blanc, Parking Courmayeur;;Route de Moricq 85750 ANGLES (85);;[6.25063, 45.99859];;FRFR1EAMQN1;YLHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.386948;45.468686;;;; +;;;;;;;;FRS86PSOREB153;SBGEQE8DZY;Chamonix-Mont-Blanc, Parking Allobroges;;Place de la Mutualité 85190 AIZENAY (85);;[6.591829, 46.144208];;FRFR1EAKBT1;YEHC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.505508;45.436396;;;; +;;;;;;;;FRS86PSOREB150;ULSFSOW4Z1;Ville-La-Grand, Rue des Tournelles;;Espace Villeneuve 85190 AIZENAY (85);;[6.115, 45.8996];;FRFR1EABSD1;GCFU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.444597;45.4572274;;;; +;;;;;;;;FRS86PSOREB149;IMX5QJAPON;Ville-La-Grand, Place Porte-Bonheur;;Rue des Oiseaux 85000 MOUILLERON-LE-CAPTIF (85);;[6.19782, 45.8616];;FRFR1EATZA1;BMYZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.387578;45.457303;;;; +;;;;;;;;FRS86PSOREB148;VHUBJ7QBC6;Thyez, Rue des Sorbiers;;Place des Papillons 85480 BOURNEZEAU (85);;[6.774007, 46.053531];;FRFR1EASMW1;BMYZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.5039778;45.409886;;;; +;;;;;;;;FRS86PSOREB147;Y4UAJNWN4K;Arâches-La-Frasse, D106 Route de la Barliette;;Route de Nantes 85300 CHALLANS (85);;[6.473147, 46.24829];;FRFR1EARXJ1;GCFU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.38127;45.477173;;;; +;;;;;;;;FRS86PSOREB146;VAJMYZYNQ8;Cluses, Rue Pré Benevix - Cœur de ville;;Place de la République 85120 LA CHATAIGNERAIE (85);;[6.1293, 45.9124];;FRFR1EAASV1;GSAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.378769;45.448767;;;; +;;;;;;;;FRS86PSOREB145;PS4X9OLB4Z;Cluses, Sardagne;;Rue des Terriers - Parking Super U 85120 LA CHATAIGNERAIE (85);;[6.05437, 45.7866];;FRFR1EAVPP1;WFEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.382443;45.440594;;;; +;;;;;;;;FRS86PSOREB144;NX8FKWS8GN;Annemasse, Rue Fernand David;;Place de la Gare 85110 CHANTONNAY (85);;[6.12962, 45.9026];;FRFR1EADPR1;VRQJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.458179;45.4577757;;;; +;;;;;;;;FRS86PSOREB143;HXKNZ664DA;Arâches-La-Frasse, Flaine;;Place Jeanne d'Arc 85110 CHANTONNAY (85);;[6.12307, 45.8956];;FRFR1ESHMG1;GASS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.354466;45.44757;;;; +;;;;;;;;FRS86PSOREB142;AFJ2JVZ4L1;La Freissinouse, Parking de la Mairie;;Parking Rue Traversière 85300 CHALLANS (85);;[6.29294, 45.7483];;FRFR1EETWR1;RGKX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.38966;45.466526;;;; +;;;;;;;;FRS86PSOREB141;XAIFX7NXUY;Nevache, Office de Tourisme;;Place de l'Europe 85300 CHALLANS (85);;[6.11669, 45.91755];;FRFR1EEWPJ1;QWKQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.413217;45.477253;;;; +;;;;;;;;FRS86PSOREB140;SEEISRFNFD;Tallard, Place du General de Gaulle;;Place du Foirail 85300 CHALLANS (85);;[6.16349, 45.9263];;FRFR1ESAEW1;QTFD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.508525;45.457039;;;; +;;;;;;;;FRS86PSOREB139;C4DAJBRGSS;Savines-Le-Lac, Avenue du Faubourg;;Place du Marché 85310 LA CHAIZE-LE-VICOMTE (85);;[6.13666, 45.9078];;FRFR1EFNJW1;HGQJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.417438;45.479853;;;; +;;;;;;;;FRS86PSOREB151;R4CFXQWYOD;Musièges, Za Des Bonnets;;Parking Rue du 8 Mai 85450 CHAILLE-LES-MARAIS (85);;[6.1202, 45.9157];;FRFR1EPHBP1;UVHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.40185;45.43496;;;; +;;;;;;;;FRS86PSOREB006;PBVWLY88ID;Annecy, Parging Trésum;;Parking des Halles 85470 BRETIGNOLLES-SUR-MER (85);;[6.12163, 45.908];;FRFR1EPGRV1;GSAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.424937;45.420522;;;; +;;;;;;;;FRS86PSOREB005;QP7TLLYXNL;Etrembières, Parking RD1206;;Place Raymond Dronneau 85600 SAINT-GEORGES-DE-MONTAIGU (85);;[6.08326, 45.8626];;FRFR1EFGWM1;GASS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.412619;45.471086;;;; +;;;;;;;;FRS86PSOREB004;QUIK8EU3EI;Annecy Cran-Gevrier, Rue Du Rond-Point;;Les Quatres Chemins 85400 SAINTE-GEMME-LA-PLAINE (85);;[5.94101, 45.8664];;FRFR1EPLWT1;HSXX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.057328868811743;45.434308;;;; +;;;;;;;;FRS86PSOREB003;FBD13FK4ZJ;Chamonix-Mont-Blanc, Tunnel du Mont-Blanc;;Place de la Mairie 85250 SAINT-FULGENT (85);;[6.17526, 45.8808];;FRFR1EFNLU1;VRQJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0949882021896373;45.4405;;;; +;;;;;;;;FRS86PSOREB002;CKECHE1YMR;Thônes, Parking Clos;;Rue Jules Verne - Parking de la Communauté de Communes 85250 SAINT-FULGENT (85);;[6.21571, 45.8393];;FRFR1EFLHV1;QGXZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.2324345613741965;45.42304;;;; +;;;;;;;;FRS86PSOREB001;G9AWPT4DAO;Passy, Stade - Piscine;;Les 4 Chemins de l'Oie 85140 SAINTE-FLORENCE (85);;[6.30372, 46.0682];;FRFR1EFLRG1;ADJN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1936678661598776;45.455738;;;; +;;;;;;;;FRS86PSOREB000;LQAM9T3B0V;Alby-Sur-Cheran, Parking P+R;;Rue de la Mairie 85260 SAINT-ANDRE-TREIZE-VOIES (85);;[6.30504, 46.0719];;FRFR1EKAGL1;WJGD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.47297326742572;45.45730543705983;;;; +;;;;;;;;FRS86PSOREB008;PT6DOEVM5R;Saint-Cergues, Parking Pizzaiola;;Route Nationale 160 85100 LES SABLES-D'OLONNE (85);;[6.37743, 46.0731];;FRFR1EPLZP1;EBRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.87179340147923;46.13314849171384;;;; +;;;;;;;;FRS86PSOREB152;ICPTZYI5F3;Boëge, Rue de la Vallée verte;;Parking de la salle Audubon 85100 LES SABLES-D'OLONNE (85);;[6.14032, 45.8646];;FRFR1EPMBS1;FDNS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.013775;46.18080358900933;;;; +;;;;;;;;FRS86PSOREB138;COWVZWVFO0;Faverges, Aire De Repos;;Cours Dupont 85100 LES SABLES-D'OLONNE (85);;[5.98003, 46.0461];;FRFR1EFTKH1;MZME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.796642;50.72310631627842;;;; +;;;;;;;;FRS86PSOREB126;D9SCVVZETK;Taninges, Parking Salle des Fêtes;;Quai Albert Prouteau 85100 LES SABLES-D'OLONNE (85);;[6.91994, 46.01908];;FRFR1EFPCD1;ANDH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.379127;48.73450821899008;;;; +;;;;;;;;FRS86PSOREB125;QMYSD12SXN;Passy, Parking Pfullingen;;Quai des Boucaniers - Place Maraud 85100 LES SABLES-D'OLONNE (85);;[6.690794, 46.00793];;FRFR1EFTAQ1;AWJE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.108962;45.6379472717099;;;; +;;;;;;;;FRS86PSOREB124;RXIEJHAHQH;Cluses, Autoport;;Place de la Cour Rouge 85800 SAINT-GILLES-CROIX-DE-VIE (85);;[6.21297, 45.791];;FRFR1EFFAQ1;AWJE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.78804;49.481695;;;; +;;;;;;;;FRS86PSOREB123;ISMVMVMPVP;Publier, Cité De L'Eau;;Rue Nicot 85100 LES SABLES-D'OLONNE (85);;[6.431687, 45.905947];;FRFR1ERRJL1;KTVZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.1729627219668368;48.872293;;;; +;;;;;;;;FRS86PSOREB116;IWGHRPVBV0;Chamonix, Parking Grépon;;Place Saint Hermand - Aire Covoiturage 85210 SAINTE-HERMINE (85);;[6.16202, 45.8321];;FRFR1ERVQX1;XAMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.09371;45.63536;;;; +;;;;;;;;FRS86PSOREB117;BNAVO3VFDJ;Evians-Les-Bains, Avenue des Grottes;;Avenue Georges Clémenceau 85540 MOUTIERS-LES-MAUXFAITS (85);;[6.06426, 45.9217];;FRFR1EPWCD1;LCWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.384715;43.1150004;;;; +;;;;;;;;FRS86PSOREB118;TPZYRFBBHS;Annecy, Parking des Romains;;Parking de la Mairie 85460 LA FAUTE-SUR-MER (85);;[5.94833, 45.8606];;FRFR1ERTNQ1;CBDN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.371912;44.13691;;;; +;;;;;;;;FRS86PSOREB119;QXCNNGKKJJ;Argonay, Rue Des Contamines;;Parking Maison de la Culture 85190 VENANSAULT (85);;[6.37506, 46.0577];;FRFR1EPYCQ1;NZNN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.22544312;48.34361336413087;;;; +;;;;;;;;FRS86PSOREB120;PSEA6GJAN3;Châtel, Route de Meurba;;Rue du Perthuis Breton 85360 LA TRANCHE-SUR-MER (85);;[6.09222, 45.9064];;FRFR1ERQFM1;RLAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.755409;46.118865;;;; +;;;;;;;;FRS86PSOREB121;I94BQIRYL6;Thorens Glieres/Filliere, Parking de la CCP de la Fillière;;Parking du Payre 85440 TALMONT-SAINT-HILAIRE (85);;[6.4282, 45.9415];;FRFR1ERYPN1;HSXX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.161233;48.754223;;;; +;;;;;;;;FRS86PSOREB122;IF1PCDZCRZ;Taninges (Praz De Lys), Route de la Ramaz;;Parking Communal 85310 LE TABLIER (85);;[6.5311, 46.05942];;FRFR1EPSAA1;HGQJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.697979;48.622446;;;; +;;;;;;;;FRS86PSOREB137;URKGXP7KLK;Annecy, Place de la Mandallaz;;Rue du Champ Prieur 85470 BREM-SUR-MER (85);;[6.4056, 46.2085];;FRFR1EQDGJ1;HTJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.709345;45.72749023;;;; +;;;;;;;;FRS86PSOREB131;GBTTMB;Menthon-Saint-Bernard, Parking Cimetière;;Place Koh Chang 85160 SAINT-JEAN-DE-MONTS (85);;[6.6562248, 46.2319364];;FRFR1EPQFY1;FDNS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.736521;45.667861;;;; +;;;;;;;;FRS86PSOREB136;YJUCBYQK33;Sixt-Fer-à-Cheval, Place de la Gare;;Place du 11 Novembre 1918 85160 SAINT-JEAN-DE-MONTS (85);;[6.52646, 46.06035];;FRFR1ETKAT1;CDDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.792905;45.287634;;;; +;;;;;;;;FRS86PSOREB135;JY0TJDEVXN;Habère-Poche, Route Vielle verde;;Rue des Pins 85270 SAINT-HILAIRE-DE-RIEZ (85);;[6.58711, 46.40099];;FRFR1ETJDP1;AVWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.672043;48.045049;;;; +;;;;;;;;FRS86PSOREB134;Y9EHBF4TKH;Annecy, Rue de la Fraternité;;Avenue de l'Isle de Riez 85270 SAINT-HILAIRE-DE-RIEZ (85);;[6.62745, 46.37938];;FRFR1ETGWR1;GLHD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.63116;47.990865;;;; +;;;;;;;;FRS86PSOREB133;FB0EBACBBU;Gruffy, Poste;;Rue Lucien Collinet 85270 SAINT-HILAIRE-DE-RIEZ (85);;[6.57812, 46.39822];;FRFR1ETLQY1;XAFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.786343;47.918207;;;; +;;;;;;;;FRS86PSOREB132;SAYQDHUGKA;Annecy, Bonlieu;;Rue l'Abbe Rene Giraudet 85600 SAINT-HILAIRE-DE-LOULAY (85);;[6.45734, 46.1382];;FRFR1EQDYX1;ANGU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.626097;48.035;;;; +;;;;;;;;FRS86PSOREB130;NHJ0BBAIUH;Annecy, Faubourg Des Balmettes;;Place de Lattre de Tassigny 85700 POUZAUGES (85);;[6.80141, 46.39387];;FRFR1EQAVY1;YRTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.740798;48.01739;;;; +;;;;;;;;FRS86PSOREB129;QG1JJTOKPN;Faverges, Place Joseph Sérand;;Rue Joachim Rouault 85700 POUZAUGES (85);;[6.6210576, 46.0200208];;FRFR1ERLJZ1;AXKH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.774467;47.940856;;;; +;;;;;;;;FRS86PSOREB128;B23XI8EXVR;Annecy, Parc des sports;;Rue de la Chapelle 85170 LE POIRE-SUR-VIE (85);;[6.670556, 46.16];;FRFR1ERKZD1;ZZQZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.772783;47.952598;;;; +;;;;;;;;FRS86PSOREB127;V4BCPZSKGF;Annecy-le-Vieux, RIE;;Parking de la Brachetiere 85170 LE POIRE-SUR-VIE (85);;[6.58349, 46.08865];;FRFR1ERKUT1;XDRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1058477614826088;47.962275;;;; +;;;;;;;;FRWBCERCG0C210D9;WCBMBTLQJ7;Annecy, Route De Vignieres;;Rue du Général de Gaulle 85300 LE PERRIER (85);;[6.628513, 45.943044];;FRFR1ERPLV1;PQAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.686008;48.043359;;;; +;;;;;;;;FRFR1EGYTZ;K6RA94IPIY;Annecy, Rue Baron Pierre De Coubertin;;Parking du Havre d'Olonne - Rue des Bosquets 85340 OLONNE-SUR-MER (85);;[6.3712542, 46.2652955];;FRFR1ERPKQ1;ZHQD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.188537;47.96808;;;; +;;;;;;;;FRZMSE175027;ZFNYXIEBSQ;Annecy, Place Des Romains;;Parking Leclerc 85340 OLONNE-SUR-MER (85);;[6.16856, 46.00947];;FRFR1ERLQF1;MMEJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.237656;47.96827;;;; +;;;;;;;;FRZMSE175028;NYCFYH0OAI;Annecy Seynod, Chemin de la Bruyère Vieugy;;Rue des Sables - Office De Tourisme 85340 OLONNE-SUR-MER (85);;[5.96791, 46.10947];;FRFR1EGRUS1;DNPX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5596131075866615;50.57202836954545;;;; +;;;;;;;;FRS77P77100A;VMYGOPNGKC;Rumilly, Corniche de la Néphaz;;Olonnespace - Allée des Cèdres 85340 OLONNE-SUR-MER (85);;[6.22815, 46.16281];;FRFR1EQAMB1;QBSX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.687658;47.945956;;;; +;;;;;;;;FRS77P77054A;YIDXSFUUSI;Veyrier-Du-Lac, Avenue Général Doyen;;Rue de l'lise 85690 NOTRE-DAME-DE-MONTS (85);;[6.633486, 45.9321314];;FRFR1EQAQA1;PXTK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.1161033;43.729626;;;; +;;;;;;;;FRS77P77182A;UDZL8RTBFG;Talloires-Montmin, Mairie;;Place de la Prée aux Ducs 85330 NOIRMOUTIER-EN-L'ILE (85);;[6.7979927, 45.8889078];;FRFR1ETPKX1;TQRG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.420417;45.638173;;;; +;;;;;;;;FRS77P77165A;DGMDE60VKP;La Roche-Sur-Foron, Avenue de la Gare;;Place de l'Eglise 85310 NESMY (85);;[6.72854, 46.08306];;FRFR1ETMYX1;SMUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.154298;48.83673315761998;;;; +;;;;;;;;FRS77P77244A;P1JCQZGYPW;La Roche-Sur-Foron, Parking Pontet;;Parking Michelin 85000 LA ROCHE-SUR-YON (85);;[6.6110727, 45.9213467];;FRFR1EGRJD1;DKPW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.14858;47.845833;;;; +;;;;;;;;FRS77P77100B;BKUKVCUG0Q;Saint-Pierre-En-Faucigny, Les Jourdies;;Giratoire Palissy - Impasse Bécquerel 85000 LA ROCHE-SUR-YON (85);;[6.4040479, 46.1421419];;FRFR1EPUMA1;JPJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.15676;45.1437823;;;; +;;;;;;;;FRS77P77389A;WUFELBWHT7;Sevrier, Chemin de la Tournette;;Rue Anatole France 85000 LA ROCHE-SUR-YON (85);;[6.2115413, 46.1889469];;FRFR1EPHBW1;MKWQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.151072;45.44609;;;; +;;;;;;;;FRS77P77285A;QOX8DO7S4R;Minzier, Bar A Thym;;Rue Newton - Parking des Oudairies 85000 LA ROCHE-SUR-YON (85);;[6.2097281, 46.1913894];;FRFR1EPSHY1;VEZD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5214733456906524;46.162964;;;; +;;;;;;;;FRS77P77291A;XBYO74ENAK;Vallorcine, Le Buet;;Rue du Grand Moulin 85620 ROCHESERVIERE (85);;[4.392732, 45.446148];;FRFR1EFDNJ1;JPJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.3277;46.1598;;;; +;;;;;;;;FRS77P77365A;GW5Q7UNATT;Arâches-La-Frasse, Flaine 2;;Maison de Quartier - Saint André d'Ornay 85000 LA ROCHE-SUR-YON (85);;[4.409465, 45.422654];;FRFR1EPZAN1;VEZD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.758303;46.15701;;;; +;;;;;;;;FRS77P77229A;RD0UYEY3MU;Lathuile, Route du Bout du Lac;;Place du Genet 85000 LA ROCHE-SUR-YON (85);;[4.383611, 45.450606];;FRFR1EPVMK1;MKWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.396822;46.16634;;;; +;;;;;;;;FRS77P77233A;Z4Q0ZTBFD9;La Clusaz, Parking du bossonet;;Place de Coubertin - Boulevard Réaumur 85000 LA ROCHE-SUR-YON (85);;[4.339118, 45.44058];;FRFR1ESAVB1;ZZQZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.63659823824593;47.76058808735231;;;; +;;;;;;;;FRS77P77219A;NSEE0ZJGLH;Saint-Jorioz, Presbytère;;Boulevard de Sully 85000 LA ROCHE-SUR-YON (85);;[4.388649, 45.432013];;FRFR1EVLAD2;YUMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.704651;46.7179;;;; +;;;;;;;;FRS77P77226A;MCBGYNNUEB;Poisy, Parking de la Mairie;;Place de la Mutualité 85000 LA ROCHE-SUR-YON (85);;[4.399325, 45.440783];;FRFR1EVLAD1;ANDH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.935323;42.641425;;;; +;;;;;;;;FRS77P77227A;U4AQ0K8DKR;Rumilly, Parking des Anciennes Casernes;;Rue La Fayette 85000 LA ROCHE-SUR-YON (85);;[4.3907915488403, 45.44346056306];;FRFR1EKAQS2;AVWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.786;45.452227;;;; +;;;;;;;;FRS77P77232A;ZVYQDEGDC3;Saint-Pierre-En-Faucigny, Place des Arcades;;Place de la Vendée 85000 LA ROCHE-SUR-YON (85);;[4.395133, 45.431483];;FRFR1EKAQS1;GLHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6301873;45.67568495884853;;;; +;;;;;;;;FRS77P77089A;OGZVDJ7RLD;Annecy Cran-Gevrier, Allée Jean Mermoz;;Boulevard des ats Unis 85000 LA ROCHE-SUR-YON (85);;[4.285769, 45.391243];;FRFR1EJWKN2;XAFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6296;45.64493;;;; +;;;;;;;;FRS77P77235A;H88YLRP16P;Le Grand-Bornand, Cimetiere;;Parking centre social 14480 CREULLY;;[4.384222, 45.459475];;FRFR1EJVTB2;ANGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6206933;45.683113;;;; +;;;;;;;;FRS77P77238A;LZFEFO7KSR;Marnaz, Parking CTM;;Rue Saint-Martin 14110 CONDE SUR NOIREAU;;[4.3867507, 45.4476017];;FRFR1EJUXE1;YRTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.309668;48.092;;;; +;;;;;;;;FRS77P77088A;SHKDVBCA4O;Boëge, 50 Rue du Bourno;;Avenue Victor Hugo 14000 CAEN;;[4.286092, 45.384258];;FRFR1EJWTH1;AXKH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.578157;47.7802058;;;; +;;;;;;;;FRS77P77266A;HTIYLP7TN0;Saint-Jean-D'Aulps, Mairie;;Boulevard EINDHOVEN 14400 Bayeux;;[4.394564, 45.433997];;FRFR1EJUYK1;PQAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.383562;47.7751976;;;; +;;;;;;;;FRS77P77300A;JOLS2OGPGU;Marnaz, Mairie;;Route de Saint-Lys 31470 Fontenilles;;[4.323678, 45.397069];;FRFR1EJUYK2;KZHC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.262156;47.780758;;;; +;;;;;;;;FRS77P77302A;YLSVBYAJM1;Evian-Les-Bains, Place des Allinges;;D632 31470 Fonsorbes;;[4.5158208, 45.4782379];;FRFR1EJVTB1;KDJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.6265527585509747;45.588589;;;; +;;;;;;;;FRS77P77303A;KODGS1EZY2;Saint-Paul-En-Chablais, Parking Relais;;Avenue de Montauban 31620 Castelnau-d'Estrétefonds;;[4.364239, 45.479263];;FRFR1EJXAQ1;ZHQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.193527;45.38413;;;; +;;;;;;;;FRS77P77308A;ICY3X7IVQQ;Evian-Les-Bains, Avenue De La Gare;;Chemin des Restes 31450 Fourquevaux;;[4.378651, 45.463571];;FRFR1EKAHM1;MMEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.173461;45.459929;;;; +;;;;;;;;FRS77P77309A;HFWXM4PJLA;Saint-Jeoire, Clos Saint François;;5 avenue de la Mairie 31750 Escalquens;;[4.368072, 45.454275];;FRFR1ELABX2;DKPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.191375;45.518189;;;; +;;;;;;;;FRS77P77310A;ATU4HTPHF1;Saint-Gingolph, Quai Chevallay;;7 D33A 31510 Frontignan-de-Comminges;;[4.620006, 45.529152];;FRFR1EJXTA2;HTJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.171649;45.87688686929552;;;; +;;;;;;;;FRS77P77311A;DBT65NAW0K;Magland, Parking de la Bézière;;Rue de la République 31550 Cintegabelle;;[4.276472, 45.379078];;FRFR1EJYQN2;QBSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.187721;48.857699;;;; +;;;;;;;;FRS77P77317A;QOFKA776QB;Les Gets, Parking Pic;;19 Escarreres 31160 Encausse-les-Thermes;;[4.526069, 45.494844];;FRFR1EJYQN1;PXTK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.181274;48.877092;;;; +;;;;;;;;FRS77P77318A;WCGRDIRD61;Châtillon-Sur-Cluses, Route de Taninges;;Avenue de la Mairie 31600 Eaunes;;[4.390567, 45.430944];;FRFR1EKAHM2;DNPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.16798566;48.883647;;;; +;;;;;;;;FRS77P77322A;GCKM4BEY1K;Sallanches, Parking Gymnase du Rosay;;55 avenue de la Gare 31440 Cierp-Gaud;;[4.292167, 45.523472];;FRFR1EJXAQ2;TAAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.200918;48.883328;;;; +;;;;;;;;FRS77P77326A;UFGBSW;Bons-En-Chablais, Parking de la Mairie;;33 Le Village 31480 Caubiac;;[4.257074, 45.525924];;FRFR1EJVFD1;KDJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.197047;48.876249;;;; +;;;;;;;;FRS77P77336A;JYATAX;Groisy, Stade;;Espace de Marcorelle 31620 Fronton;;[4.272165, 45.529554];;FRFR1EJVFD2;JXTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1924;48.887186;;;; +;;;;;;;;FRS77P77338A;YWRSAWNEVT;Valleiry, Rue De La Gare;;8 rue de l'Autan 31670 Labège;;[4.389903, 45.411421];;FRFR1EJWKN1;KANG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.181756;48.88946877;;;; +;;;;;;;;FRS77P77339A;NLZTSF;Monnetier-Mornex, Chemin de la Chapelle;;Place de l'Hôtel de Ville 31270 Frouzins;;[4.37989, 45.437243];;FRFR1EKBEE1;KANG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.202896;48.876649;;;; +;;;;;;;;FRS77P77341A;QMLUTQ;Sallanches, Route du Fayet - Sur parcelle B1469;;Route de Caraman 31570 Lanta;;[4.377888, 45.467731];;FRFR1ELAEN1;JEUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.172349;48.863147;;;; +;;;;;;;;FRS77P77345A;BH9RGRYWWL;Les Houches, Parking du Fresnay;;Route de Lapeyrouse 31180 Castelmaurou;;[4.613454, 45.527692];;FRFR1EJYRU2;CTAN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.180334;48.868154;;;; +;;;;;;;;FRS77P77301A;R8PQPHRS5Y;Samoëns, Parking Le Criou;;5 rue des Puits 31870 Lagardelle-sur-Lèze;;[4.399995, 45.41816];;FRFR1EPUMH1;CUND1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.169361;48.86333;;;; +;;;;;;;;FRS77P77249A;MX2GSCSOQH;Cordon, Parking Centre Village;;Rue de la Chapelle 31390 Lafitte-Vigordane;;[4.400734, 45.442934];;FRFR1ERXYG1;CUND2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2666712;48.871499;;;; +;;;;;;;;FRS77P77299A;DHK0LKAJ25;Viuz-En-Sallaz, Proximité centre commercial des Brochets;;19 Rue Armand Ribet 31510 Labroquère;;[4.419098, 45.418845];;FRFR1ERUKD1;CTAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.271036;48.885331;;;; +;;;;;;;;FRS77P77252A;RPQUB69LKZ;Gaillard, Espace Louis Simon;;Place François Fournil 31860 Labarthe-sur-Lèze;;[4.264967, 45.543839];;FRFR1ERULW1;LNJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.270181;48.880227;;;; +;;;;;;;;FRS77P77253A;DHQUXFGSJ0;Gaillard, Rue de Moellesulaz;;4 rue de la Bastide 31490 Léguevin;;[4.403326, 45.426995];;FRFR1ERVRK1;CJGJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.20551;48.887705;;;; +;;;;;;;;FRS77P77255A;ANTREV;SEMOB Desjoyaux;;Rond-Point François-Mitterrand 31880 La Salvetat-Saint-Gilles;;[4.3801704, 45.4731837];;FRFR1ERWPZ1;JGVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.195013;48.891262;;;; +;;;;;;;;FRS77P77257A;DGXASAH8ZE;SEMOB Ecole des Mines;;Rue Chaupy 31330 Grenade;;[4.387767, 45.453219];;FRFR1EJUNW2;JMRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.182311;48.87881;;;; +;;;;;;;;FRS77P77260A;FRGFEE;SEMOB Edmond Charpentier;;École 31430 Gratens;;[4.39425, 45.415889];;FRFR1EKAQX2;MYTK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.484809;48.878919;;;; +;;;;;;;;FRS77P77269A;TDVAAV;SEMOB DE VINCI;;Rue de la République 31290 Gardouch;;[4.395436, 45.423999];;FRFR1EKAQX1;MYTK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.415652;48.865019;;;; +;;;;;;;;FRS77P77270A;PVHEQY;SEMOB Jovin Bouchard;;Parking des commerces 31360 Beauchalot;;[4.379868, 45.43433];;FRFR1EJYRU1;MYUS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.466539;48.872781;;;; +;;;;;;;;FRS77P77272A;SXTKJJ;SEMOB Dalgabio - Grüner;;Allée du Viognier 31320 Auzeville-Tolosane;;[4.62708, 45.532354];;FRFR1EJWTH2;MYUS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.462518;48.87334;;;; +;;;;;;;;FRS77P77273A;NQTNQA;SEMOB Cret de Roc;;7 chemin de la Briquetterie 31450 Belberaud;;[4.403437, 45.439087];;FRFR1EKBEE2;MYQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.42693;48.953583;;;; +;;;;;;;;FRS77P77276A;JUNKKQX4CA;SEMOB Conservatoire;;59 avenue de Pradaoux 31510 Barbazan;;[4.38351, 45.43067];;FRFR1EJWAM2;MYQD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1607189;48.857735;;;; +;;;;;;;;FRS77P77279A;HFWNFZ;SEMOB Firminy - Gare;;Rue Lamartine 31110 Bagnères-de-Luchon;;[4.505162, 45.467122];;FRFR1ELABX1;KDHQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.418981;48.948493;;;; +;;;;;;;;FRS77P77278A;LVCNJY;SEMOB Claude Odde;;Place de la République 31290 Avignonet-Lauragais;;[4.623377, 45.53135];;FRFR1ELAEN2;BJPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.424428;48.937787;;;; +;;;;;;;;FRS77P77282A;SWI9PR0KMU;SEMOB Janin Carnot;;Rue Proudhon 31190 Auterive;;[4.373289, 45.444678];;FRFR1EJWAM1;KDHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.269933;48.877739;;;; +;;;;;;;;FRS77P77191A;ISP5MCPLRA;SEMOB FIRMINY CENTRE;;5 rue des Ormes 31320 Castanet-Tolosan;;[4.38404, 45.439909];;FRFR1EJUNW1;BJPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.579557;48.8715031;;;; +;;;;;;;;FRS77P77116A;GYLUWGEFDI;SEMOB Chavanelle;;Rue du Foirail 31420 Aurignac;;[4.391937, 45.438013];;FRFR1EJUVK2;PUQW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.550023;48.876052;;;; +;;;;;;;;FRS77P77142B;JDZRSUX6PK;SEMOB Jean Jaures;;51 Le Moulin 31190 Auribail;;[4.396479, 45.439454];;FRFR1EJUVK1;BUNS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.54646;48.934799;;;; +;;;;;;;;FRS77P77140A;R4SOF6UFOS;SEMOB Hotel Dieu St Chamond;;Rue Armand Latour 31160 Aspet;;[4.401687, 45.45052];;FRFR1EJUXE2;NGVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.426986;48.891087;;;; +;;;;;;;;FRS77P77135A;AWWZZB;SEMOB Hôpital Nord;;Parking Mairie 31510 Antichan-de-Frontignes;;[4.422419, 45.444738];;FRFR1EQFHU1;JXLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.48856985;48.91443;;;; +;;;;;;;;FRS77P77131B;OPXMALLCMW;SEMOB GROUCHY;;Parking RD41 31480 Laréole;;[4.386229, 45.435811];;FRFR1EQGAL1;TDXF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.49520158;48.904666;;;; +;;;;;;;;FRS77P77131A;LLBHRC;SEMOB Golf;;Avenue du pons 31660 Bessières;;[4.391303, 45.454669];;FRFR1ERKPF1;XMFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.387797;48.910391;;;; +;;;;;;;;FRS77P77126A;SYQDJU;SEMOB Gambetta;;Parking Abribus 31580 Boudrac;;[4.50956, 45.477746];;FRFR1ENRKQ1;GDEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.378693;48.932195;;;; +;;;;;;;;FRS77P77118A;B92IX0BMR1;SEMOB Firminy Chazeau;;Place de la République 31390 Carbonne;;[4.368069, 45.468686];;FRFR1ENANQ1;UMEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.378192;48.94913362;;;; +;;;;;;;;FRS77P77142A;YRUUXFJYTW;SEMOB Aire pays du Gier;;28 avenue de Toulouse 31460 Caraman;;[4.437393, 45.436396];;FRFR1EMZRB1;UGRZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.383063;48.93015608;;;; +;;;;;;;;FRS77P77109A;PHVETX;SEMOB Anatole France;;ZAC de Serres 31410 Capens;;[4.3976364, 45.4572274];;FRFR1EMXTF1;UETB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5058873;48.901705;;;; +;;;;;;;;FRS77P77107A;FGJRNL;SEMOB Andrézieux-Z.Commerce;;Rue René Vidal 31560 Calmont;;[4.392778, 45.457303];;FRFR1ENCSP1;HPJC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.49895672;48.909141;;;; +;;;;;;;;FRS77P77106A;SMNREJQJRD;SEMOB Andrézieux Pasteur;;Avenue Raymond Sommer 31480 Cadours;;[4.386948, 45.409886];;FRFR1ENEKG1;HPJC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.49967389;48.914588;;;; +;;;;;;;;FRS77P77335A;DHSSXX0WPX;SEMOB Andrézieux Palais des Sports;;7 rue des Écoles 31660 Buzet-sur-Tarn;;[4.505508, 45.477173];;FRFR1ENDKD1;MFGU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.317304;48.913211;;;; +;;;;;;;;FRS77P77103A;GM910S6PBS;SEMOB Ambroise Paré;;32 Clauses de la Filouse 31530 Bretx;;[4.444597, 45.448767];;FRFR1ENDEL1;MYEM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.250672;48.93053723;;;; +;;;;;;;;FRS77P77102A;HWS0KPAQIE;SEMOB Augustin Dupré;;4 avenue du Pré Commun 31360 Boussens;;[4.387578, 45.440594];;FRFR1EMWYK1;MFGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.279994;48.94121732;;;; +;;;;;;;;FRS77P77101A;TUTD30X35M;SEMOB Albert Raimond;;Chemin de la Gardette 31350 Boulogne-sur-Gesse;;[4.5039778, 45.4577757];;FRFR1ENHAR1;MYEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.27218497;48.93369727;;;; +;;;;;;;;FRS77P77144A;FGWMD2UBVQ;SEMOB 11 novembre Rive de Gier;;1 place de la République 31620 Bouloc;;[4.38127, 45.44757];;FRFR1EMVZZ1;VTMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.255503;48.784697;;;; +;;;;;;;;FRS77P77348A;QFSWJ7JX52;SEMOB Avenue Rochetaillée;;Allée du Foirail 31330 Launac;;[4.378769, 45.466526];;FRFR1EMXLS1;VTMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26644659;48.768565;;;; +;;;;;;;;FRS77P77184A;RVQSHO7N5L;SEMOB Châteaucreux;;Grand Place 31600 Saint-Clar-de-Rivière;;[4.382443, 45.477253];;FRFR1EMXSY1;FRAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2904931;48.768197;;;; +;;;;;;;;FRS77P77194A;PXOA6DYBFU;SEMOB Boulevard Fraissinette;;Parking Gendarmerie 31410 Saint-Sulpice-sur-Lèze;;[4.458179, 45.457039];;FRFR1EMXSB1;GCKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.28357617;48.76457362;;;; +;;;;;;;;FRS77P77196A;GZW7760W41;SEMOB Chateau Bouthéon;;3 Rue du Presbytère 31470 Saint-Lys;;[4.354466, 45.479853];;FRFR1EMXRT1;FRTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26103455;48.767361;;;; +;;;;;;;;FRS77P77208A;ZANUNBEQ2X;SEMOB Centre des Congrès;;Place de la Libération 31800 Saint-Gaudens;;[4.38966, 45.43496];;FRFR1EXAEJ1;XVHW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.27441884;48.8312661;;;; +;;;;;;;;FRS77P77212A;PYFXTRHNOV;SEMOB Centenaire St Priest;;Terrain de tennis 31430 Saint-Elix-le-Château;;[4.413217, 45.420522];;FRFR1EPEEE1;XVHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.27849366;48.76595607;;;; +;;;;;;;;FRS77P77214A;AU1YWRKLWE;SEMOB BHT;;Avenue Victor Molinier 31570 Sainte-Foy-d'Aigrefeuille;;[4.508525, 45.471086];;FRFR1EPEFK1;MCYH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.311957;48.82950414;;;; +;;;;;;;;FRS77P77188A;SA4FXRNXKE;SEMOB Bellevue - Hôpital;;Rue du 8 mai 1945 31470 Saiguède;;[4.417438, 45.434308];;FRFR1EWYUN1;EEGQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.30132922;48.82914716;;;; +;;;;;;;;FRS77P77187A;MPFTAS9LHS;SEMOB Basses des Rives;;Mairie 31430 Pouy-de-Touges;;[4.40185, 45.4405];;FRFR1ESMUD1;MCYH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3067;48.82816072;;;; +;;;;;;;;FRS77P77179A;BMT481UC66;SEMOB Jules Serret;;5 allée des Platanes 31180 Rouffiac-Tolosan;;[4.424937, 45.42304];;FRFR1EQFDA1;EEGQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3007512;48.83087258;;;; +;;;;;;;;FRS77P77178A;WZBCXJ;SEMOB Place Chipier;;Impasse de Montségur 31120 Roquettes;;[4.412619, 45.455738];;FRFR1EWUML1;GDEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.335556;48.779158;;;; +;;;;;;;;FRS77P77164A;HTQZMT;SEMOB Saint François;;Promenade du Préau 31310 Rieux-Volvestre;;[4.057328868811743, 45.45730543705983];;FRFR1EMVQW1;NGVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.370823;48.75483829;;;; +;;;;;;;;FRS77P77159A;W26C6ONSBL;SEMOB Sablière;;Place de la patte d'oie 31370 Rieumes;;[-1.0949882021896373, 46.13314849171384];;FRFR1ETFKK1;BBHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.416538;48.76306;;;; +;;;;;;;;FRS77P77153A;RMGF2XIQG6;SEMOB Royet de la Bastie;;Allée Georges Pompidou 31520 Ramonville-Saint-Agne;;[6.2324345613741965, 46.18080358900933];;FRFR1EGSRA1;BBHX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.316886;48.7503152;;;; +;;;;;;;;FRS77P77152A;GFBM3TN5RY;SEMOB Rive de Gier Pasteur;;6 allée des Tilleuls 31470 Sante-Foy-de-Peyrolières;;[2.1936678661598776, 50.72310631627842];;FRFR1EMUDQ1;VCHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.322502;48.705551;;;; +;;;;;;;;FRS77P77148A;WLQXF6NKY2;SEMOB Puits de la Loire;;RD1 31160 Sengouagnet;;[2.47297326742572, 48.73450821899008];;FRFR1EEXAQ1;ZSLZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.31383;48.690763;;;; +;;;;;;;;FRS77P77099A;O54IWFIUPP;SEMOB Place Jean Plotton;;Rue de la République 31340 Villemur-sur-Tarn;;[5.87179340147923, 45.6379472717099];;FRFR1ENVBX1;ZSLZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26183571;48.954492;;;; +;;;;;;;;FRS77P77096A;ISUMHUQAQG;SEMOB Place Jean Moulin;;Avenue de la Fontasse 31290 Villefranche-de-Lauragais;;[1.013775, 49.481695];;FRFR1EXKHJ1;ZQZE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.278957;48.78436;;;; +;;;;;;;;FRS77P77025A;BRUPTZ;SEMOB Place Fourneyron;;5 chemin de l'Ariège 31320 Vieille-Toulouse;;[2.796642, 48.872293];;FRFR1ENTBE1;GZWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.279206;48.777139;;;; +;;;;;;;;FRS77P77040A;NTEXHV;SEMOB Soleil;;1 place François Mitterrand 31590 Verfeil;;[4.379127, 45.63536];;FRFR1EXMGL1;ZQZE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.265676;48.73274;;;; +;;;;;;;;FRS77P77039A;VLJGRE;SEMOB STEEL;;Avenue du Mont Frouzy 31810 Venerque;;[6.108962, 43.1150004];;FRFR1ESFAY1;SYTX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.266284;48.82380279;;;; +;;;;;;;;FRS77P77036A;YZD20EWHZI;SEMOB Ursules;;Avenue de la Baracane 31800 Valentine;;[4.78804, 44.13691];;FRFR1EXMUB1;SYTX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.274689;48.887095;;;; +;;;;;;;;FRS77P77033A;FJCDHNVFJV;SEMOB Zenith;;47 Le Village 31510 Valcabrère;;[-1.1729627219668368, 48.34361336413087];;FRFR1ESCRD1;SCKV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.255578;48.880952;;;; +;;;;;;;;FRS77P77032A;NLVCDQEOPZ;SEMOB Waldeck Rousseau;;5 Village 31260 Urau;;[3.09371, 46.118865];;FRFR1ESMLU1;SCKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.31451738;48.885127;;;; +;;;;;;;;FRS77P77031A;YU5FX9XNFJ;SEMOB Villars;;A Sudre 31570 Tarabel;;[2.384715, 48.754223];;FRFR1EMTYA1;NDTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.32785348;48.895496;;;; +;;;;;;;;FRS77P77030A;RQVKOP24BA;SEMOB Terrenoire;;13 route de Fonsorbes 31600 Seysses;;[2.371912, 48.622446];;FRFR1EMRVT1;NDWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.266735;48.883412;;;; +;;;;;;;;FRS77P77027A;FSMDLX2G3U;SEMOB Technopole - Presse;;2 chemin des Escarrères 31230 L'Isle-en-Dodon;;[4.22544312, 45.72749023];;FRFR1EMSQM1;NDWQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.274565;48.875794;;;; +;;;;;;;;FRS77P77022A;YMXK9OQBKU;SEMOB Technopole - artisanat;;Rue de Verdun 31800 Miramont-de-Comminges;;[4.755409, 45.667861];;FRFR1EMURY1;NDTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.274626;48.82207878;;;; +;;;;;;;;FRS77P77019A;KUPUVRMJH2;SEMOB Louis Courrier;;Chemin des Alouettes 31330 Merville;;[4.161233, 45.287634];;FRFR1EMVEL1;NDFR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.272622;48.81722451;;;; +;;;;;;;;FRS77P77016A;NA1INBYCYV;SEMOB Melchior Mitte;;20 Au Château 31310 Massabrac;;[2.697979, 48.045049];;FRFR1EMUWW1;NDFR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.255114;48.888927;;;; +;;;;;;;;FRS77P77008A;HZVBOQT3RZ;SEMOB Mairie Saint Jean Bonnefond;;Boulevard de Magdeleine 31220 Martres-Tolosane;;[2.709345, 47.990865];;FRFR1EMUUN1;RSQU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.262574;48.886673;;;; +;;;;;;;;FRS77P77005A;HOQDKHZSAT;SEMOB Mairie Saint Etienne;;Route de Saint-Avit 31410 Longages;;[2.736521, 47.918207];;FRFR1ETECZ1;RSQU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26164776;48.880962;;;; +;;;;;;;;FRS77P77003A;ZKXXATFPZL;SEMOB Louis Comte St Chamond;;Avenue de Gascogne 31600 Lherm;;[2.792905, 48.035];;FRFR1ETCND1;RSZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.260021;48.884055;;;; +;;;;;;;;FRS77P77001A;YPBNINMYNO;SEMOB Lamartine Place Girodet;;3 impasse de la Save 31530 Montaigut-sur-Save;;[2.672043, 48.01739];;FRFR1ETCFP1;RSZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.265738;48.882007;;;; +;;;;;;;;FRS77P77040B;ROOMZVXRSO;SEMOB La Terrasse;;Place du 11 Novembre 31430 Le Fousseret;;[2.63116, 47.940856];;FRFR1ETFAT1;NQHP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.276458;48.886966;;;; +;;;;;;;;FRS77P77042A;OAUEVKIP5N;SEMOB La Bargette St Priest en Jarez;;Place Cazalères 31410 Le Fauga;;[2.786343, 47.952598];;FRFR1ENQUX1;NSMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.272288;48.88806409;;;; +;;;;;;;;FRS77P77095A;JR9TTMXTJ7;SEMOB Parc Métrotech;;5 Place de la Mairie 31410 Lavernose-Lacasse;;[2.626097, 47.962275];;FRFR1ENRKX1;GZWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.281346;48.883513;;;; +;;;;;;;;FRS77P77076A;TCHFTRZXQR;SEMOB Mendes France;;Place de la Mairie 31220 Lavelanet-de-Comminges;;[2.740798, 48.043359];;FRFR1ETLUA1;RRTG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3179907;48.880995;;;; +;;;;;;;;FRS77P77073A;SBLMXOFNGQ;SEMOB Michelet;;49 avenue Montaigne 31830 Plaisance-du-Touch;;[2.774467, 47.96808];;FRFR1EHWAM1;RRTG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26063816;48.889513;;;; +;;;;;;;;FRS77P77072A;OL7HMZRXTP;SEMOB Parc de l'Europe;;Avenue du Mur de Ronde 31380 Montastruc-la-Conseillère;;[2.772783, 47.96827];;FRFR1EGKQG1;XVWZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26791608;48.891649;;;; +;;;;;;;;FRS77P77070A;MHD5MKUFAK;SEMOB Novacieries;;4 rue de la Fountasso 31560 Nailloux;;[3.1058477614826088, 50.57202836954545];;FRFR1EGMND1;VCHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26128899;48.888233;;;; +;;;;;;;;FRS77P77069A;VXH5EOTKP9;SEMOB Montplaisir;;22 chemin de la Croisette 31860 Pins-Justaret;;[2.686008, 47.945956];;FRFR1EGMPV1;KXWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26817216;48.8173946;;;; +;;;;;;;;FRS77P77067A;RVMNOOPOGM;SEMOB Montat;;1 rue du Ruisseau 31120 Pinsaguel;;[7.188537, 43.729626];;FRFR1EEMQQ1;KXWE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.315961;48.81681135;;;; +;;;;;;;;FRS77P77066A;LDBAM0UVXS;SEMOB Métare Université;;41 Courrège 31390 Peyssies;;[4.237656, 45.638173];;FRFR1EKAGL2;KYFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.30739515;48.82499159;;;; +;;;;;;;;FRS77P77057A;QHL8YCFSIR;SEMOB Meons;;Rue du 8 ai 1945 31140 Pechbonnieu;;[-1.5596131075866615, 48.83673315761998];;FRFR1EGHBC1;KZPY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.32361378;48.82162691;;;; +;;;;;;;;FRS77P77051A;OYO5JSDPCS;DOMAINE DE VALINCHES;;Rue Sainte-Marie 31410 Noé;;[-3.687658, 47.845833];;FRFR1EWREM1;KYFN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3438;48.83272786;;;; +;;;;;;;;FRS77P77047A;RZTN1YKWP7;ETOTEM Aytré;;31 rue du Parc 31210 Montréjeau;;[4.1161033, 45.1437823];;FRFR1ETWNR1;KZPY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.432962;48.81079;;;; +;;;;;;;;FRS77P77046A;KWASMIIC7L;Eurocommercial Etrembières;;141 route de Toulouse 31380 Montjoire;;[4.420417, 45.44609];;FRFR1ETWMM1;XVLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.344242;48.81253099;;;; +;;;;;;;;FRS77P77045A;AAVBTG;DOMAINE DE LA SAPINIERE;;19 Esplanade Nord 31310 Montesquieu-Volvestre;;[-1.154298, 46.162964];;FRFR1EPZMY1;XVLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.534704;48.81256199;;;; +;;;;;;;;FRS77P77043A;EC5TK1JROM;Cimetière intercommunal de Valenton;;Rue René Landes 31140 Montberon;;[-1.14858, 46.1598];;FRFR1EFTXT1;XVWZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.539899;48.960564;;;; +;;;;;;;;FRS77P77475A;UDCPRA;CYTHELIA ENERGY;;10 Avenue du Trayas 06590 Théoule-sur-Mer;;[-1.15676, 46.15701];;FRFR1EFVPF1;RERV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.562364;48.725386;;;; +;;;;;;;;FRS77P77493A;HJJFHK;CLOS DE LA VAUPALIERE;;193 Avenue Francis Tonner 06150 Cannes;;[-1.151072, 46.16634];;FRFR1EGCEA1;HHRJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.529157;48.955912;;;; +;;;;;;;;FRS77P77490A;MWSKGX;CERTAS Eurodisney;;Avenue Léon Montier 06590 Théoule-sur-Mer;;[2.5214733456906524, 47.76058808735231];;FRFR1EGDAP1;HDQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.399966;48.963427;;;; +;;;;;;;;FRS77P77486A;QLRDN5VITJ;GARAGE DU CENTRE;;Rue Louis Braille 06400 Cannes;;[-1.3277, 46.7179];;FRFR1EGDAU1;HJQG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.402018;48.956136;;;; +;;;;;;;;FRS77P77482A;GMFXMF;CENTRE COMMERCIAL CENTR'AZUR;;134 Avenue du Moulin de la Croix 06250 Mougins;;[2.758303, 42.641425];;FRFR1ETVDU1;HPDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.413793;48.95325;;;; +;;;;;;;;FRS77P77480A;HRSSFZ;Hôtel Mercure Orange Centre;;344 Allée des Ormes 06250 Mougins;;[4.396822, 45.452227];;FRFR1EFWFU1;HKTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.413922;48.832844;;;; +;;;;;;;;FRS77P77477A;EYECWW;Hôtel Ibis Style Fougères;;25 Rue du Cherche Midi 06250 Mougins;;[3.63659823824593, 45.67568495884853];;FRFR1EFZLR1;HJJR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.520342;48.742641;;;; +;;;;;;;;FRS77P77410A;CKVEGB;Garage Quantin;;2269 Avenue Marechal Juin 06250 Mougins;;[3.704651, 45.64493];;FRFR1ERQEG1;HLHL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33154888;48.769975;;;; +;;;;;;;;FRS77P77469A;XVKVTT;Garage de la Senia;;701 Route du Lac 06750 Andon;;[5.935323, 45.683113];;FRFR1EQEPC1;CAJB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.522605;48.771796;;;; +;;;;;;;;FRS77P77437A;QQTZQG;Garage de la Marinière;;8 Rue Paul Négrin 06150 Cannes;;[2.786, 48.092];;FRFR1ETMJN1;RERV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.535163;48.761755;;;; +;;;;;;;;FRS77P77435A;ZVTXA1HEAM;Garage Cheminal - Volkswagen;;1 Rue du Ribas 06620 Gréolières;;[1.6301873, 47.7802058];;FRFR1EGEBU1;UEUU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.333029;48.835744;;;; +;;;;;;;;FRS77P77432A;HSN542X2AO;GAMMVERT - BRIGNAIS;;2 Rue Saint-Roch 06510 Bouyon;;[1.6296, 47.7751976];;FRFR1EEKFA1;UGXP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.33084;48.90712198;;;; +;;;;;;;;FRS77P77428A;JPJU8RHNGW;GAMM VERT - MONISTROL SUR LOIRE;;2 Place de la Tour 06620 Le Bar-sur-Loup;;[1.6206933, 47.780758];;FRFR1EGDST1;UDTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.528189;48.946546;;;; +;;;;;;;;FRS77P77426A;QH0TXLZWSV;AGGLOMERATION MONTARGOISE - CORQUILLEROY;;Rue des Ecuries 06750 Caille;;[4.309668, 45.588589];;FRFR1ETBYK1;JPEK3;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.511343;48.934277;;;; +;;;;;;;;FRS77P77501A;RZHD8TNRZR;AGGLOMERATION MONTARGOISE - VILLEMANDEUR;;Montée du Village 06620 Gourdon;;[5.578157, 45.38413];;FRFR1ENGDL1;UGKE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.523168;48.9122;;;; +;;;;;;;;FRS77P77508A;MFG307V2NS;AGGLOMERATION MONTARGOISE - SOLTERRE;;11 Chemin du Cabanon 06740 Châteauneuf-Grasse;;[4.383562, 45.459929];;FRFR1EPEXN1;RKFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.367743;48.91506;;;; +;;;;;;;;FRS77P77352A;PFMAS0BOXW;AGGLOMERATION MONTARGOISE - PAUCOURT;;1 Place de la Mairie 06650 Le Rouret;;[4.262156, 45.518189];;FRFR1EPFET1;TSQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.381677;48.939106;;;; +;;;;;;;;FRS77P77534A;ELVWIEUKPA;AGGLOMERATION MONTARGOISE - PANNES;;109 Avenue Pierre Sémard 06130 Grasse;;[3.6265527585509747, 45.87688686929552];;FRFR1ESNZU1;TSQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.53491;48.88911;;;; +;;;;;;;;FRS77P77531A;DRK2TIBPMV;AGGLOMERATION MONTARGOISE - LOMBREUIL;;241 Avenue des Mimosas Golfe Juan 06220 Vallauris;;[2.193527, 48.857699];;FRFR1ESZLA1;NMLL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.44084594;48.881865;;;; +;;;;;;;;FRS77P77528A;CWBZ2DL8DD;AGGLOMERATION MONTARGOISE - CONFLANS SUR LOING;;56 Rue Alexandre Louce 06220 Vallauris;;[2.173461, 48.877092];;FRFR1ESZFA1;NMLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.44135361;48.955523;;;; +;;;;;;;;FRS77P77527A;BAVXN00NQZ;AGGLOMERATION MONTARGOISE - CHEVILLON SUR HUILLARD;;340 Route de Valbonne 06330 Roquefort-les-Pins;;[2.191375, 48.883647];;FRFR1ESYTM1;KHVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.447183;48.952051;;;; +;;;;;;;;FRS77P77524A;TYMBBVGUX0;AGGLOMERATION MONTARGOISE - CEPOY;;4448 Route de Grasse 06330 Roquefort-les-Pins;;[2.171649, 48.883328];;FRFR1ETAMH1;APBT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4368853;48.832005;;;; +;;;;;;;;FRS77P77522A;F0XWONZVIN;AGGLOMERATION MONTARGOISE - AMILLY 2;;2 Route du Plan 06130 Grasse;;[2.187721, 48.876249];;FRFR1ETCBP1;APBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.42866225;48.85071082;;;; +;;;;;;;;FRS77P77519A;GA7MONBEKP;AGGLOMERATION MONTARGOISE - AMILLY 1;;4 Route d’Auribeau 06130 Grasse;;[2.181274, 48.887186];;FRFR1ETAUN1;ZCZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.424445;48.84684538;;;; +;;;;;;;;FRS77P77518A;EGAHT5NLC0;Aéroport de Lille-Lesquin;;52 Route de Pégomas 06130 Grasse;;[2.16798566, 48.88946877];;FRFR1EGGQR1;RYEU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.53511;48.846896;;;; +;;;;;;;;FRS77P77517A;LFIWEBSSVC;AGGLOMERATION MONTARGOISE - VIMORY;;182 Allée des Ecoles 06370 Mouans-Sartoux;;[2.200918, 48.876649];;FRFR1ESQYS1;FNMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.544022;48.8514798;;;; +;;;;;;;;FRS77P77516A;EJXYMI6XHO;Carrefour Nice Lingostière;;451 Place de la Madeleine 06140 Tourrettes-sur-Loup;;[2.197047, 48.863147];;FRFR1ENLMW1;ZCZA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.43712014;48.8438568;;;; +;;;;;;;;FRS77P77512A;FQSBKCRGOP;CASINO DE MONTROND;;269a Allee Rene Cassin 06270 Villeneuve-Loubet;;[2.1924, 48.868154];;FRFR1ESQDP1;FNMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.44706335;48.847891;;;; +;;;;;;;;FRS77P77377A;GXDZ8OG6HC;Biocoop Granville;;370 Boulevard Eric Tabarly 06270 Villeneuve-Loubet;;[2.181756, 48.86333];;FRFR1ESVUF1;APNE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.452451;48.823691;;;; +;;;;;;;;FRS77P77433A;YENI22PAXC;Carrefour Market Belondis;;2 Place Charles de Gaulle 06270 Villeneuve-Loubet;;[2.202896, 48.871499];;FRFR1ESWQK1;RYEU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.443435;48.827653;;;; +;;;;;;;;FRS77P77398A;PFIHFF2BIG;Intermarché Yssingeaux;;12 Avenue de l’Hopital 06220 Vallauris;;[2.172349, 48.885331];;FRFR1ESWPR1;APNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.433171;48.84624221;;;; +;;;;;;;;FRS77P77386A;ABQ4SHJDQX;STEEL Parkings;;15 Avenue des Freres Roustan 06220 Vallauris;;[2.180334, 48.880227];;FRFR1ESWBV1;GQYA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.434339;48.85030215;;;; +;;;;;;;;FRS77P77385B;SBBFTCPVCD;VILLE DE LA ROCHELLE - PLACE VERDUN;;200 Avenue Roumanille 06410 Biot;;[2.169361, 48.887705];;FRFR1EGEHR1;GQYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.45519471;48.846774;;;; +;;;;;;;;FRS77P77385A;VWTMPYFVOZ;VILLE DE LA ROCHELLE - PLACE JB MARCET;;2 Place Joseph Rebuffel 06750 Séranon;;[2.2666712, 48.891262];;FRFR1EGFAG1;GQYA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.45605117;48.847775;;;; +;;;;;;;;FRS77P77384A;CPJSS61PNE;VILLE DE LA ROCHELLE - PARKING PREFECTURE;;118 Route de Pégomas 06130 Grasse;;[2.271036, 48.87881];;FRFR1EVVCJ2;UZKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.535109;48.848592;;;; +;;;;;;;;FRS77P77439A;EFUC1KB7A5;VILLE DE LA ROCHELLE - PARKING CHASSELOUP LAUBAT;;6 Rue Brougham 06400 Cannes;;[2.270181, 48.878919];;FRFR1EMWPZ2;AXJZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4753937;48.844408;;;; +;;;;;;;;FRS77P77368A;DAWE5R7RWO;VILLE DE DAMPIERRE;;16 Rue Saint-Dizier 06400 Cannes;;[2.20551, 48.865019];;FRFR1EMZXR1;AXJZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.487477;48.84968646;;;; +;;;;;;;;FRS77P77361A;WKHYWYQLE4;UAB;;10 Avenue de Verdun 06600 Antibes;;[2.195013, 48.872781];;FRS21EFATM2;UGKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.513764;48.84609748;;;; +;;;;;;;;FRS77P77360A;NZUZDQ7AS5;Super U Thuir;;50 Rue Emile Hugues 06600 Antibes;;[2.182311, 48.87334];;FRS21EKDAK2;FSZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.574213;48.721889;;;; +;;;;;;;;FRS77P77405A;MPHPDX;Meritor;;190 Route de Cannes 06130 Grasse;;[2.484809, 48.953583];;FRS21EJUKH2;YZNW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.540299;48.8037405;;;; +;;;;;;;;FRS77P77359A;PIDK70DETG;MAIRIE OLLIERGUES;;1 Avenue Alphonse Daudet 06130 Grasse;;[2.415652, 48.857735];;FRS21EYSXC2;CQYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.40733;48.793445;;;; +;;;;;;;;FRS77P77357A;BOHPZMIGRR;Mairie de Vertolaye;;67 Avenue de Provence 06130 Grasse;;[2.466539, 48.948493];;FRS21EFYPB2;URYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.566491;48.794114;;;; +;;;;;;;;FRS77P77455A;SFUJIVKVOR;MAIRIE DE MOUXY;;14 Avenue de Guy Maupassant 06600 Antibes;;[2.462518, 48.937787];;FRS21EZCQP2;YZQF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4596527;48.789679;;;; +;;;;;;;;FRS77P77403A;JT2OHSXSCS;Mairie de Ferrières-en-Gatinais;;25 Avenue Saint-Louis 06400 Cannes;;[2.42693, 48.877739];;FRS21EEHDS2;EGWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.42205713;48.786073;;;; +;;;;;;;;FRS77P77459A;WO2U9NU6WH;Mairie de Beaugency - PARKING RUE NATIONALE;;7 Place Général de Gaulle 06600 Antibes;;[2.1607189, 48.8715031];;FRS21ESRBA2;QUJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.479014;48.749487;;;; +;;;;;;;;FRS77P77458A;O21GQVZ2FZ;Mairie de Beaugency - PARKING GRAND MAIL;;1 Place Joseph Parchois 06580 Pégomas;;[2.418981, 48.876052];;FRS21EAPTW2;GSAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.41590762;48.718446;;;; +;;;;;;;;FRS77P77457A;JV1D6ZX6CS;Mairie de Beaugency - PARKING AGORA;;1ter Route de Cannes 06650 Opio;;[2.424428, 48.934799];;FRS21EMEBC2;QUJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.433322;48.8142151;;;; +;;;;;;;;FRS77P77443A;VHGFCGFP0Q;La Charpinière;;1 Avenue du Stade 06220 Vallauris;;[2.269933, 48.891087];;FRS21ETCAX2;GSAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.458188;48.82215245;;;; +;;;;;;;;FRS77P77456A;DQETGFDKRS;King Jouet Voiron;;26 Avenue des Broussailles 06400 Cannes;;[2.579557, 48.91443];;FRS21EBYSA2;FCQU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.50413376;48.864371;;;; +;;;;;;;;FRS77P77447A;EWBWX8MWV7;RENAULT THIVOLLE ST ETIENNE;;13 Rue Latour-Maubourg 06400 Cannes;;[2.550023, 48.904666];;FRS21EASML1;RQMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.452196;48.85222209;;;; +;;;;;;;;FRS77P77453A;V03V6B3GVC;RENAULT AGENCE LOSANGE;;12 Impasse Ernest Daver 06530 Spéracèdes;;[2.54646, 48.910391];;FRS21EBYSA1;KMFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.431765;48.868266;;;; +;;;;;;;;FRS77P77445A;JDZUASRU2S;Salaison Fournet-Fayard;;137 Avenue Marcel Pagnol 06210 Mandelieu-la-Napoule;;[2.426986, 48.932195];;FRS21ENBMY1;UXYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.455554;48.85997;;;; +;;;;;;;;FRS77P77451A;DR9TBERC11;Metropolis - Proximité - Rueil-Malmaison - Montbrison (159);;1240 Avenue de la Mer 06210 Mandelieu-la-Napoule;;[2.48856985, 48.94913362];;FRS21ELFSA1;UXYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.42329625;48.86155006;;;; +;;;;;;;;FRLMSE1000135809;ZUDHFC7WPK;Metropolis - Proximité - Rueil-Malmaison - Bois Préau;;150 Chemin de la Colette 06460 Escragnolles;;[2.49520158, 48.93015608];;FRS21EKUQJ1;SNPQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.443663;48.868409;;;; +;;;;;;;;FRLMSE1000135808;RJVJ8NDBBF;Metropolis - Proximité - Rueil-Malmaison - Paul Doumer;;23 Traverse Robert Solomas 06910 Le Mas;;[2.387797, 48.901705];;FRS21EBWBW1;HAFZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.437502;48.85407;;;; +;;;;;;;;FRLMSE1000135807;PIPMPI1GSK;Metropolis - Citadine - Rueil-Malmaison - Frères Lumière;;1093 Avenue du 11 Novembre 06850 Saint-Auban;;[2.378693, 48.909141];;FRS21EMXQQ1;HAFZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.431605;48.876462;;;; +;;;;;;;;FRLMSE1000135806;PLHDMFICPU;Metropolis - Proximité - Rueil-Malmaison - Charles Drot;;340 Avenue de l’Hotel de Ville 06530 Le Tignet;;[2.378192, 48.914588];;FRS21EFZXW1;SNPQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.32986937;48.85316398;;;; +;;;;;;;;FRLMSE1000135805;HHXSOERCYL;Metropolis - Citadine - Rueil-Malmaison - Colmar;;895 Avenue de la Republique 06550 La Roquette-sur-Siagne;;[2.383063, 48.913211];;FRS21EFJFM1;DJML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.32608577;48.861683;;;; +;;;;;;;;FRLMSE1000135804;GTJY9D5ZAF;Metropolis - Express - Rueil-Malmaison - Auguste Perret;;21 Avenue Docteur Raymond Picaud 06400 Cannes;;[2.5058873, 48.93053723];;FRS21EASML2;DJML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.29162062;48.857057;;;; +;;;;;;;;FRLMSE1000135803;CAU4LIXEUR;Metropolis - Proximité - Rueil-Malmaison - Driant;;39 Rue Jean Giono 06810 Auribeau-sur-Siagne;;[2.49895672, 48.94121732];;FRS21ENBMY2;UZKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.30625586;48.85819;;;; +;;;;;;;;FRLMSE1000135802;CVTZIA5YAA;Metropolis - Proximité - Rueil-Malmaison - Montbrison (84-86);;6 Allée des Bains 06130 Grasse;;[2.49967389, 48.93369727];;FRS21EPJPA2;HSZD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.575541;48.94929234;;;; +;;;;;;;;FRLMSE1000135810;EYJPJJQYRV;Metropolis - Proximité - Rueil-Malmaison - 18 juin 1940 (63);;2 Avenue Louis Cauvin 06130 Grasse;;[2.317304, 48.784697];;FRFR1EYSSU1;NXZU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.443715;48.95828488;;;; +;;;;;;;;FRLMSE1000135811;GS486H2R3J;Metropolis - Proximité - Rueil-Malmaison - Empereur;;3 Chemin des Capucins 06130 Grasse;;[2.250672, 48.768565];;FRS21EVGJG2;HSZD3;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.548643;48.95992322;;;; +;;;;;;;;FRLMSE1000135814;KYWI522MXW;Metropolis - Proximité - Rueil-Malmaison - 8 mai 1945;;7 Parc d’Activite de l’Argile 06370 Mouans-Sartoux;;[2.279994, 48.768197];;FRS21ELFSA2;UYJP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.338949;48.96022052;;;; +;;;;;;;;FRLMSE1000135821;WOVHVSVADV;Metropolis - Citadine - Rueil-Malmaison - Albert 1er (98);;4 Boulevard de Lorraine 06400 Cannes;;[2.27218497, 48.76457362];;FRS21EMEBC1;JPAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.51122517;48.862919;;;; +;;;;;;;;FRLMSE1000135820;TSAVE2OGXW;Metropolis - Citadine - Rueil-Malmaison - Albert 1er (2);;25 Boulevard Général Vautrin 06400 Cannes;;[2.255503, 48.767361];;FRS21ECGZA2;JPAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.364529;48.86173;;;; +;;;;;;;;FRLMSE1000135819;OWMMX48HPN;Metropolis - Citadine - Rueil-Malmaison - Édouard Belin;;27 Avenue de Lérins 06400 Cannes;;[2.26644659, 48.8312661];;FRS21EVBWZ2;SABL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.361115;48.927719;;;; +;;;;;;;;FRLMSE1000135818;AJCWTT;Metropolis - ePremium - Neuilly-sur-Seine - Saussaye (50);;150 Rue du Chantier Naval 06210 Mandelieu-la-Napoule;;[2.2904931, 48.76595607];;FRS21EKDAK1;SABL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.364454;48.937207;;;; +;;;;;;;;FRLMSE1000135817;PTHUPUSXPM;Metropolis - Express - Neuilly-sur-Seine - Maillot;;34 Boulevard Jacques Soustelle 06210 Mandelieu-la-Napoule;;[2.28357617, 48.82950414];;FRS21EFATM1;UNYC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4324466;48.85580614;;;; +;;;;;;;;FRLMSE1000135816;YQIQWQ8UZY;Metropolis - Proximité - Neuilly-sur-Seine - Maurice Barrès;;4 Chemin de la Table d’Orientation 06590 Théoule-sur-Mer;;[2.26103455, 48.82914716];;FRS21ETCAX1;UNYC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.352423;48.907347;;;; +;;;;;;;;FRLMSE1000135815;MHBJLZGXHM;Metropolis - Citadine - Rueil-Malmaison - 18 Juin 1940 (175);;449 Route des Cretes 06560 Valbonne;;[2.27441884, 48.82816072];;FRS21EAPTW1;LHEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.383218;48.93883;;;; +;;;;;;;;FRLMSE1000135813;WYDNKDUR6N;Metropolis - Citadine - Rueil-Malmaison - Bons Raisins;;9bis Place Saint-Donat 06130 Grasse;;[2.27849366, 48.83087258];;FRS21EBQJV2;GDEW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.32102156;48.925114;;;; +;;;;;;;;FRLMSE1000135812;H0ZSKAREWB;Metropolis - Citadine - Rueil-Malmaison - Richelieu;;1 Avenue Jean Mermoz 06210 Mandelieu-la-Napoule;;[2.311957, 48.779158];;FRS21EMAXA2;LHEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34675284;48.8944378;;;; +;;;;;;;;FRLMSE1000135831;KSXIXLLCSP;Metropolis - Express - Aulnay-sous-Bois - Michel Ange;;2369 Route Départementale 6007 06270 Villeneuve-Loubet;;[2.30132922, 48.75483829];;FRS21EDQMY2;GDEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35408;48.917798;;;; +;;;;;;;;FRLMSE1000135830;VHTXXUOXPG;Metropolis - Proximité - Bagnolet - Edouard Vaillant;;11 Avenue des Ecoles 06110 Le Cannet;;[2.3067, 48.76306];;FRS21EXGQZ2;AHPD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.362287;48.942317;;;; +;;;;;;;;FRLMSE1000135829;WVOTTGZPHU;Metropolis - Express - Le Blanc-Mesnil - Albert Einstein;;3a Chemin des Bachettes 06410 Biot;;[2.3007512, 48.7503152];;FRS21EVUVW2;AHPD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.51108902;48.90586201;;;; +;;;;;;;;FRLMSE1000135828;DQYFSLZJSI;Metropolis - Citadine - Le Blanc-Mesnil - Claude Terrasse;;28 Avenue des Martyrs de la Résistance 06600 Antibes;;[2.335556, 48.705551];;FRS21EZKJQ2;KKKG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.529547;48.9032182;;;; +;;;;;;;;FRLMSE1000135827;RYHFTY2PT7;Metropolis - Proximité - Bagnolet - Sadi Carnot;;210 Avenue Jules Grec 06600 Antibes;;[2.370823, 48.690763];;FRS21ERHEN2;EDFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.51480745;48.947939;;;; +;;;;;;;;FRLMSE1000135826;SNOMOK8MEQ;Metropolis - Express - Rueil-Malmaison - Napoléon Bonaparte;;9 Rue des Orangers 06110 Le Cannet;;[2.416538, 48.954492];;FRS21EMPDB2;EDFP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.520487;48.921283;;;; +;;;;;;;;FRLMSE1000135825;V1G6TQKEFF;Metropolis - Citadine - Bagnolet - Pasteur;;14 Boulevard Carnot 06130 Grasse;;[2.316886, 48.78436];;FRS21EFUTP2;KKKG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.361983;48.87290298;;;; +;;;;;;;;FRLMSE1000135824;MCO5MCQGLW;Metropolis - Citadine - Le Bourget - Hôtel de Ville;;33 Avenue Maurice Chevalier 06150 Cannes;;[2.322502, 48.777139];;FRS21EPJPA1;WQFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.44475;48.856893;;;; +;;;;;;;;FRLMSE1000135823;XBYM6MYKUM;Metropolis - Proximité - Neuilly-sur-Seine - Bineau;;72 Chemin Notre Dame 06570 Saint-Paul-de-Vence;;[2.31383, 48.73274];;FRS21ENLBK2;NEYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.371155;48.85208486;;;; +;;;;;;;;FRLMSE1000135822;NPPCXP;Metropolis - Citadine - Coubron - Raoul Larché;;108 Avenue de Grasse 06370 Mouans-Sartoux;;[2.26183571, 48.82380279];;FRS21ECEUQ2;NYHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.35897;48.854488;;;; +;;;;;;;;FRLMSE1000135835;Z1ILFORWGY;Metropolis - Citadine - Clichy-sous-Bois - Romain Rolland;;Promenade Pierre Merli 06600 Antibes;;[2.278957, 48.887095];;FRS21EAMMS2;NVXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.827864;48.963039;;;; +;;;;;;;;FRLMSE1000135833;Q5DM2CCSDZ;Metropolis - Proximité - Clichy-sous-Bois - Place 11 Novembre 1918;;5 Avenue Sidi Brahim 06130 Grasse;;[2.279206, 48.880952];;FRS21EAVRM2;UYJP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.523605738717589;48.878112;;;; +;;;;;;;;FRLMSE1000135832;LNG7XIKQU2;Metropolis - Proximité - Le Bourget - Elise Deroche;;9 Rue Stéphen Liégeard 06400 Cannes;;[2.265676, 48.885127];;FRS21EBWBW2;MCLG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.82072;48.964743;;;; +;;;;;;;;FRLMSE1000135834;YGKQEX;Metropolis - Citadine - Aulnay-sous-Bois - Jacquard;;1855 Route des Dolines 06560 Valbonne;;[2.266284, 48.895496];;FRS21EMATH2;MCSB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.204549;48.963355;;;; +;;;;;;;;FRLMSE1000135837;HRCEDY;Metropolis - Citadine - Aulnay-sous-Bois - Dumont;;55bis Route de Grasse 06560 Valbonne;;[2.274689, 48.883412];;FRS21ECEUQ1;EUKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.843686;50.696382;;;; +;;;;;;;;FRLMSE1000135836;GULDWSUOJM;Metropolis - Express - Aubervilliers - Henri Barbusse;;690 Place Joseph Bermond 06560 Valbonne;;[2.255578, 48.875794];;FRFR1ETSKM2;UZKA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.805081;46.086405764520606;;;; +;;;;;;;;FRLMSE1000135839;BKO8NQUJ3G;Metropolis - Citadine - Aubervilliers - Commune de Paris;;10 Avenue Saint Roch 06560 Valbonne;;[2.31451738, 48.82207878];;FRFR1EHBHB2;HSZD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.876349;43.935617;;;; +;;;;;;;;FRLMSE1000135841;QNFNVB;Metropolis - Citadine - Aubervilliers - Waldeck Rochet;;1 Montée du Chateau 06530 Cabris;;[2.32785348, 48.81722451];;FRFR1EQCGL1;HXHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.828155;48.85204;;;; +;;;;;;;;FRLMSE1000135840;MXJSYM;Metropolis - Citadine - Aubervilliers - Docteur Pesqué;;2bis Place du Chateau 06910 Collongues;;[2.266735, 48.888927];;FRFR1EXTVG2;HXHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.799193;43.946211;;;; +;;;;;;;;FRLMSE1000135838;DTJZZQ;Metropolis - Proximité - Aulnay-sous-Bois - Arthur Chevalier;;16 Place du Logis 06580 Pégomas;;[2.274565, 48.886673];;FRFR1EQDHZ2;HXHV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.809693;43.936094;;;; +;;;;;;;;FRLMSE1000135844;TTWQMV;Metropolis - Citadine - Aulnay-sous-Bois - Rue de Sevran;;2 Chemin du Suye 06530 Peymeinade;;[2.274626, 48.880962];;FRFR1EKCWN2;JPEK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.44046;43.940161;;;; +;;;;;;;;FRLMSE1000135843;MMDHJY;Metropolis - Citadine - Aulnay-sous-Bois - Hôtel de Ville;;69 Rue Marechal Foch 06480 La Colle-sur-Loup;;[2.272622, 48.884055];;FRFR1EWMGT2;JPEK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.876649;43.947206;;;; +;;;;;;;;FRLMSE1000135842;W3UFAZDOEH;Metropolis - Express - Bourg-la-Reine - Général Leclerc;;4 Chemin de la Siagne 06460 Saint-Vallier-de-Thiey;;[2.255114, 48.882007];;FRFR1EGUZT2;RCNJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.833258;43.929592;;;; +;;;;;;;;FRCARP74282A;JKHUKN;Metropolis - Express - Châtenay-Malabry - Bergerac;;28 Avenue du Parc 06370 Mouans-Sartoux;;[2.262574, 48.886966];;FRFR1EHBHB1;RCNJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.798628;43.936482;;;; +;;;;;;;;FRCARP35288A;BMGNQC;Metropolis - Citadine - Châtenay-Malabry - Jean Longuet;;1 Chemin des Frères Garbero 06600 Antibes;;[2.26164776, 48.88806409];;FRFR1EWMGT1;EUKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.170362;48.92568;;;; +;;;;;;;;FRCARP62652A;BGWGWV;Metropolis - Proximité - Châtenay-Malabry - Roger Salengro;;20 Boulevard Maréchal Foch 06600 Antibes;;[2.260021, 48.883513];;FRFR1EGUZT1;MCSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.177635;43.925813;;;; +;;;;;;;;FRCARP17274A;YYJMCQ;Metropolis - Proximité - Châtenay-Malabry - Jean Jaurès;;9bis Chemin Neuf 06410 Biot;;[2.265738, 48.880995];;FRFR1ETSKM1;FVAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.813005;43.952128;;;; +;;;;;;;;FRCARP79048A;XGFJVH;Metropolis - Citadine - Issy-les-Moulineaux - Joseph Frantz;;175 Rue du Vallon 06560 Valbonne;;[2.276458, 48.889513];;FRFR1EGGJQ1;FVAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.12096;43.937354;;;; +;;;;;;;;FRCARP45025A;KUMQMM;Metropolis - Citadine - Châtenay-Malabry - Sully Prudhomme;;914 Boulevard Honoré Teisseire 06480 La Colle-sur-Loup;;[2.272288, 48.891649];;FRFR1EBJAK1;VNNV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.130358;48.83852;;;; +;;;;;;;;FRZPEE175100;GUDSGH;Metropolis - Proximité - Issy-les-Moulineaux - Ernest Renan;;5 Chemin du Stade 06530 Peymeinade;;[2.281346, 48.888233];;FRFR1EXTVG1;NCEQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.475489;48.784153;;;; +;;;;;;;;FRZPEE175099;DWYWZS;Metropolis - Proximité - Issy-les-Moulineaux - Roosevelt;;2 Boulevard Courmes 06530 Saint-Cézaire-sur-Siagne;;[2.3179907, 48.8173946];;FRFR1EQTFD1;NCEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.262841;43.928623;;;; +;;;;;;;;FRZIME147592;Z77EKJ57Z0;Metropolis - Express - Issy-les-Moulineaux - Guynemer (50);;5 Chemin de Saint Cassien 06210 Mandelieu-la-Napoule;;[2.26063816, 48.81681135];;FRFR1EMZME1;VNNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.130067;48.809898;;;; +;;;;;;;;FRZIME147593;HUTGNTAFVM;Metropolis - Proximité - Issy-les-Moulineaux - Guynemer (16);;100 Chemin de la Tourache 06130 Grasse;;[2.26791608, 48.82499159];;FRFR1ERLAD1;MCLG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.796952;48.801996;;;; +;;;;;;;;FRLUMECAMPINGMONTANA11;NWHQAZN2YT;Metropolis - Citadine - Bourg-la-Reine - André Theuriet;;2 Boulevard des 5 Communes 06530 Peymeinade;;[2.26128899, 48.82162691];;FRFR1EQDHZ1;SHCD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.821433;48.824539;;;; +;;;;;;;;FRLUMEHOTELLESDOMES11;FCUKKE;Metropolis - Citadine - Antony - Velpeau;;604 Avenue Georges Pompidou 06110 Le Cannet;;[2.26817216, 48.83272786];;FRFR1EQCLF1;SHCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.585713;48.798985;;;; +;;;;;;;;FRFR1EBHZV1;WGEEMN;Metropolis - Express - Antony - Général de Gaulle;;170 Rue Buffon 06110 Le Cannet;;[2.315961, 48.81079];;FRFR1EKSBT1;NSMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.838556;43.641297;;;; +;;;;;;;;FRLUMECAPITOULHAMEAU11;CWQDYD6WZ2;Metropolis - Citadine - Antony - Combattants;;4 Avenue du Mont Joli 06110 Le Cannet;;[2.30739515, 48.81253099];;FRFR1EQCLF2;NRRJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.825062;43.943149;;;; +;;;;;;;;FRLUMECAPITOULCHATEAU11;X5JIHAHDBL;Metropolis - Express - Morangis - Eglise;;34 Rue des Moulieres 06110 Le Cannet;;[2.32361378, 48.81256199];;FRFR1EVXAF1;YZNW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.809387;43.939104;;;; +;;;;;;;;FRMAPE000024556962;PBNDNA;Metropolis - Express - Juvisy-sur-Orge - Cour de France;;1 Rue Grignan 06110 Le Cannet;;[2.3438, 48.960564];;FRFR1EVXAF2;PJCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.255335;43.230239;;;; +;;;;;;;;FRLMSP1000125124;BMFWAN6U8Y;Metropolis - Citadine - Dugny - Gabriel Péri;;2 Rue des Lentisques 06110 Le Cannet;;[2.432962, 48.725386];;FRFR1EGGJQ2;LEDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.277903;43.927832;;;; +;;;;;;;;FRLMSP1000124923;FUJCLK;Metropolis - Citadine - Bourg-la-Reine - Elie le Gallais;;27 Chemin de Garibondy 06110 Le Cannet;;[2.344242, 48.955912];;FRS21EMGCB2;AWEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.660772;43.942905;;;; +;;;;;;;;FRLMSP1000124925;BDZXDF;Metropolis - Proximité - Bourg-la-Reine - Carnot;;17 Rue Jean - Jacques Sardou 06110 Le Cannet;;[2.534704, 48.963427];;FRS21EFZXW2;ZMGD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.821979;43.930192;;;; +;;;;;;;;FRLMSP1000131844;XANHLH;Metropolis - Proximité - Antony - De Tocqueville;;Aire de Gueux -A4 - 51390 Gueux;;[2.539899, 48.956136];;FRS21EFRSC2;QMQG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.816939;48.786899;;;; +;;;;;;;;FRLMSP1000125123;X0NHNPY2ZZ;Metropolis - Citadine - Issy-les-Moulineaux - René Jacques;;Aire du Jura,A39-39140 Arlay;;[2.562364, 48.95325];;FRS21EFJFM2;JKFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.899412;48.83624;;;; +;;;;;;;;FRLMSP1000131840;LZJLZN;Metropolis - ePremium - Neuilly-sur-Seine - Victor Hugo;;Aire du Jardin des Arbres - A77 - 45290 Varennes-Changy;;[2.529157, 48.832844];;FRS21EMXQQ2;YUCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.977306;49.132656;;;; +;;;;;;;;FRLMSP1000125120;HBM95RMP7A;Metropolis - ePremium - Neuilly-sur-Seine - Montrosier;;Aire de l'Ile Rose, A48, 38340 Voreppe;;[2.399966, 48.742641];;FRS21EKUQJ2;RLSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.0833;43.929502;;;; +;;;;;;;;FRLMSP1000124922;FEEL9LIPEP;Metropolis - ePremium - Neuilly-sur-Seine - Achille Peretti;;Aire de Haut Koenigsbourg, A35- 67600 Orschwiller;;[2.402018, 48.769975];;FRFR1EYSSU2;KTAX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.490811;43.942256;;;; +;;;;;;;;FRLMSP1000125122;YAJEY50I1R;Metropolis - ePremium - Neuilly-sur-Seine - Vital Bouhot;;Centre E.Leclerc, A31, 57280 Maiziéres-lés-Metz;;[2.413793, 48.771796];;FRFR1EWJGD2;MEMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.974066;43.940189;;;; +;;;;;;;;FRLMSP1000123864;ODXLXEZKBM;Metropolis - ePremium - Neuilly-sur-Seine - Cordonnier;;Aire de Giberville Nord (Sens Paris > Caen) A13 Km 219 , 14730 Giberville;;[2.413922, 48.761755];;FRFR1EBJAK2;EDJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.242799;45.698458;;;; +;;;;;;;;FRLMSP1000123865;AG3CUDNG6G;Metropolis - ePremium - Neuilly-sur-Seine - Bretteville;;Aire de Glanon, A36 - 21250 Glanon;;[2.520342, 48.835744];;FRFR1EEBRV2;ACUK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.242644;48.240665;;;; +;;;;;;;;FRLMSP1000145899;XTOLYUEL6R;Metropolis - Express - Montrouge - Maurice Arnoux;;Autoroute de la Maurienne, A43 - Autoport Du Frejus - 73500 Freney;;[2.33154888, 48.90712198];;FRFR1ESHFH1;MYHL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.448297;47.500239;;;; +;;;;;;;;FRLMSP1000124924;ZSXXLQQOA8;Metropolis - Express - Montrouge - Barbes;;Aire de Gevrey-Chambertin A31 - 21220 Gevrey-Chambertin;;[2.522605, 48.946546];;FRFR1EKSBT2;KGWQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.6342;45.698131;;;; +;;;;;;;;FRLMSP1000124927;H2TVD8QWSA;Metropolis - ePremium - Neuilly-sur-Seine - Perronet;;Aire De Garonne, A64 - 31410 Capens;;[2.535163, 48.934277];;FRFR1EADJN2;MXEQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.153577;49.120583;;;; +;;;;;;;;FRLMSP1000124926;YRJ3UX21SF;Metropolis - ePremium - Neuilly-sur-Seine - Borghèse;;Aire de Fontanelles, Allée des Fontanelles, A41 - 4600 Seynod;;[2.333029, 48.9122];;FRFR1EQGXZ2;WPGG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.151875;49.120556;;;; +;;;;;;;;FRLMSP1000125121;RSYEDPHZVE;Metropolis - ePremium - Neuilly-sur-Seine - Dumas;;Aire de la Ferté Bernard - A11, 72400 Villaines-la-Gonais;;[2.33084, 48.91506];;FRFR1EQCGL2;BSME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.136693;43.878408;;;; +;;;;;;;;FRLMSP1000131841;NF37UCDDPC;Metropolis - ePremium - Neuilly-sur-Seine - Jean Mermoz;;Zone artisanal de Kergoet, station services ESSO, 22350 ST JOUAN DE l'ISLE;;[2.528189, 48.939106];;FRFR1EYQEF2;NGKZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.568722;43.314926;;;; +;;;;;;;;FRMAPP000000006994;LAAMCG1RZX;Metropolis - ePremium - Neuilly-sur-Seine - Longchamp;;Aire du Larzac A75 Allée famille Gineste, 12230 L'Hospitalet-du-Larzac;;[2.511343, 48.88911];;FRFR1EYQEF1;XJXD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.793617;48.799674;;;; +;;;;;;;;FRS70P07017741;UGTSBKUGBT;Metropolis - ePremium - Neuilly-sur-Seine - Château;;Aire de Lagarde A75 48200 ALBARET-SAINTE-MARIE;;[2.523168, 48.881865];;FRFR1EVTFS2;WPAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.599485;48.806742;;;; +;;;;;;;;FRS70P07042840;J8S4ZSJCGS;Metropolis - ePremium - Neuilly-sur-Seine - Saussaye (1);;Aire de La Reserve, A6 -89116 Précy-sur-Vrin;;[2.367743, 48.955523];;FRFR1EVTFS1;UYFT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.616837;48.79661;;;; +;;;;;;;;FRS70P07031348;P5NRXSSCMV;Metropolis - ePremium - Neuilly-sur-Seine - Madrid;;Aire de Labenne Est - A63- 40530 Labenne;;[2.381677, 48.952051];;FRFR1ESHFH2;HJFJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.624927;43.207298;;;; +;;;;;;;;FRS70P07020647;N4XGHTVSZH;Metropolis - ePremium - Neuilly-sur-Seine - Jacques Dulud;;Aire de Labenne Ouest -A11- 21 Rue de Toulet, 40530 Labenne;;[2.53491, 48.832005];;FRS21EMAXA1;AYHR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.634794;44.024338;;;; +;;;;;;;;FRS70P07055046;WNCHD87MLT;Metropolis - ePremium - Neuilly-sur-Seine - Duc d Orléans;;Aire de Lacq Sud AUDEJOS A64-64170 Lacq;;[2.44084594, 48.85071082];;FRS21EEHDS1;NSNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.546778;43.184096;;;; +;;;;;;;;FRS70P07044745;YPWSTXXUWB;Metropolis - ePremium - Neuilly-sur-Seine - Chauveau;;Aire de Langres Noidant, A31 - 52160 PERROGNEY LES FONTAINES;;[2.44135361, 48.84684538];;FRS21EMPDB1;NRRJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.586437;43.329318;;;; +;;;;;;;;FRS70P07012843;CWYOE0KVEJ;Metropolis - ePremium - Neuilly-sur-Seine - Rouvray;;Aire de Langres Perrogney - A31, 52160 Perrogney-les-Fontaines,;;[2.447183, 48.846896];;FRS89EAEHZ2;GCLF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.403812;43.325788;;;; +;;;;;;;;FRS70P07016542;KDBQHXLRTS;Metropolis - Citadine - Montrouge - Sylvine Candas;;Aire de l'Isle-d'Abeau Sud - A43 - 38080 L'Isle-d'Abeau;;[2.4368853, 48.8514798];;FRS89EAEHZ1;EEAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.533698;43.310428;;;; +;;;;;;;;FRS70P07026144;JJZ5BFGYRF;Metropolis - Express - Issy-les-Moulineaux - Egalité;;Aire des Lochéres, A6/E15/E60 - 21320 Eguilly;;[2.42866225, 48.8438568];;FRS89EEGLW2;KTAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.534659;43.337839;;;; +;;;;;;;;FRMAPE000022830530;UUKLIN1F3L;Metropolis - Proximité - Issy-les-Moulineaux - Gallieni;;AIRE DE LA LOIRE - A89 - 42510 Neronde;;[2.424445, 48.847891];;FRS89EZTGW1;HPZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.577631;43.262611;;;; +;;;;;;;;FRMAPE000022182905;BAQ6RWB5LG;Metropolis - Proximité - Issy-les-Moulineaux - Garibaldi;;Comfort Hôtel Dijon, 5 Rue de Beauregard, 21600 Longvic;;[2.53511, 48.823691];;FRS89ETAPJ1;RLSM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9732;43.82887;;;; +;;;;;;;;FRMAPE000028595263;CX2VTC22TK;Metropolis - Express - Issy-les-Moulineaux - Bara;;Aire de Longué-La Couaille,A85-49160 Longué-Jumelles;;[2.544022, 48.827653];;FRS89EVPYP2;PKUU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.534893;43.251851;;;; +;;;;;;;;FRMAPP000000006816;IMKLPMKKZY;Metropolis - Citadine - Montrouge - Molière;;Aire de Fontaine Colette, A10 - 37800 Saint-épain;;[2.43712014, 48.84624221];;FRS89EWKHN2;SAVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.635375;43.250675;;;; +;;;;;;;;FRMAPP000000007777;FRESEP42218BG;Metropolis - Citadine - Montrouge - Roger Salengro;;Aire de Bois Guillerot - A36 - 21250 Glanon;;[2.44706335, 48.85030215];;FRS89EAHMU1;BMTE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.706553;43.279636;;;; +;;;;;;;;FRBHMEPOSTENANGIS3;FRESEP42218AC;Metropolis - Citadine - Montrouge - Jules Ferry;;Aire de Darvault, A6 - 77140 Darvault;;[2.452451, 48.846774];;FRS89EVERU2;PKUU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.522957;45.52667;;;; +;;;;;;;;FRBHMEPOSTENANGIS2;FRESEP42218BI;Metropolis - Citadine - Villetaneuse - Etienne Fajon;;Aire De Corbieres Sud, A61, 11700 Capendu;;[2.443435, 48.847775];;FRS89EPDRZ1;EBLP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.57743;43.170946;;;; +;;;;;;;;FRBHMEHOTELDEVILLENANGIS4;FRESEP42223AA;Metropolis - Citadine - Ablon-sur-Seine - Villeneuve;;PARC MULTIMODAL - 78730 Longvilliers;;[2.433171, 48.848592];;FRS89EGPBF1;BNLK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.521344;43.27044;;;; +;;;;;;;;FRBHMEHOTELDEVILLENANGIS3;FRESEP42218BD;Metropolis - Citadine - Villetaneuse - Division Leclerc;;ZA du, Impasse de Beauregard, 47520 Le Passage, France;;[2.434339, 48.844408];;FRS89EYQGV2;LADP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.519044;43.443935;;;; +;;;;;;;;FRBHMEHOTELDEVILLENANGIS2;FRESEP42218AK;Metropolis - Citadine - Villepinte - Hôtel de Ville;;A43 L'aire de L'Arclusaz, 73390 Chateauneuf, France;;[2.45519471, 48.84968646];;FRS89EJBMU1;SYKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.640612;43.274431;;;; +;;;;;;;;FRBHMEHOTELDEVILLENANGIS1;FRESEP42218BB;Metropolis - Citadine - Villepinte - Norbert Segard;;Aire de Baie de Somme - A16 - 80970 Sailly Flibeaucourt;;[2.45605117, 48.84609748];;FRS89EVERU1;TFLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.36349;43.274761;;;; +;;;;;;;;FRBHMEPOSTENANGIS4;FRESEP42218AH;Metropolis - Express - Villepinte - Rêve;;Aire de Baralle - A26 - 62860 Rumaucourt;;[2.535109, 48.721889];;FRS89EEGLW1;RNBX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.706148;43.272782;;;; +;;;;;;;;FRBHMEPOSTENANGIS1;FRESEP42095AA;Metropolis - Citadine - Bry-sur-Marne - Pasteur;;Aire de Blois Ménars - A10 - 41000 VILLERBON;;[2.4753937, 48.8037405];;FRS89EWKHN1;HSYW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.661056;43.172029;;;; +;;;;;;;;FRLMSP1000135879;FRESEP42218AV;Metropolis - Citadine - Orly - Aérodrome;;Aire de Blois Villerbon - A10 - 41000 VILLERBON;;[2.487477, 48.793445];;FRS89EVPYP1;UMEU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.466818;43.269507;;;; +;;;;;;;;FRLMSP1000135878;FRESEP42218BK;Metropolis - Express - Choisy-le-Roi - Stalingrad;;Aire de Boismandé Est, A20 - 87160 Saint-Sulpice-les-Feuilles;;[2.513764, 48.794114];;FRS89EBGED1;HSYW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.445813;43.765756;;;; +;;;;;;;;FRLMSP1000139374;FRESEP42095AC;Metropolis - Citadine - Choisy-le-Roi - Av. d´Alfortville;;Aire de Boismandé Ouest, A20 - 87160 Saint-Sulpice-les-Feuilles;;[2.574213, 48.789679];;FRS89EBGED2;ABDK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.823253;43.384124;;;; +;;;;;;;;FRLMSP1000139370;FRESEP42218AJ;Metropolis - Citadine - Choisy-le-Roi - Louis Luc;;Aire de services de Bolleville Est, A29, 76210 Bolleville;;[2.540299, 48.786073];;FRS89EUMLT2;MYUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.936124;43.227475;;;; +;;;;;;;;FRLMSP1000139371;FRESEP42044AA;Metropolis - Citadine - Bry-sur-Marne - Charles de Gaulle;;Aire de services de Bolleville Ouest, A29, 76210 Bolleville;;[2.40733, 48.749487];;FRS89EUMLT1;KPZS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.800516;48.816785;;;; +;;;;;;;;FRLMSP1000139372;FRESEP42207AD;Metropolis - Proximité - Saint-Ouen-sur-Seine - Louis Blanc;;Aire de Bonneville, A40 - 74130 Bonneville;;[2.566491, 48.718446];;FRS89EFXNU1;LXQZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.210091;48.921675;;;; +;;;;;;;;FRLMSP1000139373;FRESEP42275AA;Metropolis - Citadine - Sevran - Dumont d`Urville;;Aire de Toulon sur Allier A79, 03400 Yzeure;;[2.4596527, 48.8142151];;FRS89EWDQY1;RGDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.215456;43.953885;;;; +;;;;;;;;FRLMSP1000137276;FRESEP42218AU;Metropolis - Citadine - Sevran - Avenue de Livry;;Aire de Bourges Sainte Thorette,  A71, 18500 Marmagne;;[2.42205713, 48.82215245];;FRS89EASAU1;FLQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.211931;43.948985;;;; +;;;;;;;;FRLMSP1000117019;FRESEP42218AR;Metropolis - Citadine - Saint-Ouen-sur-Seine - Lafargue;;Aire De Bréguieres Nord,A8 - 06250 Mougins;;[2.479014, 48.864371];;FRS89EMAGD2;PTNV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.18696;43.949101;;;; +;;;;;;;;FRLMSP1000117021;FRESEP42186AB;Metropolis - Citadine - Saint-Ouen-sur-Seine - Clef des Champs;;Aire de Cambarette Nord, A8 - 83170 Brignoles;;[2.41590762, 48.85222209];;FRS89EJBMU2;MEMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.129056;48.780621;;;; +;;;;;;;;FRLMSP1000117020;FRESEP42095AB;Metropolis - Express - Sevran - Roger le Maner;;AIRE DE CEIGNES HAUT BUGEY - A40 - 01403 CEIGNES;;[2.433322, 48.868266];;FRS89EMAGD1;VKBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.764347;48.782833;;;; +;;;;;;;;FRLMSP1000117018;FRESEPS42207AC;Metropolis - Citadine - Villemomble - Outrebon;;Aire du Centre de la France A71 18200 Farges-Allichamps, France;;[2.458188, 48.85997];;FRS89EGGJV1;YSRF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.768425;48.785437;;;; +;;;;;;;;FRLMSP1000117017;FRESEP42218AO;Metropolis - Citadine - Villemomble - Grande Rue;;E.Leclerc CHAMPFLEURY, 51 Route nationale, 51500 Champfleury;;[2.50413376, 48.86155006];;FRS89ECZWL2;YKQH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.752516;48.838587;;;; +;;;;;;;;FRLMSP1000139046;FRESEP42005AA;Metropolis - Citadine - Stains - Bois Moussay;;Aire De Chartres Bois,A11 - 28300 Gasville-Oiséme;;[2.452196, 48.868409];;FRS89ENWRQ2;PTNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.26765;48.800833;;;; +;;;;;;;;FRLMSP1000139047;FRESEP42005AC;Metropolis - Citadine - Stains - Marcel Pointet;;Aire de Chartres-Gasville, A11 - 28300 Gasville-Oiséme;;[2.431765, 48.85407];;FRS89ELMUD2;RGDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.249932;43.958037;;;; +;;;;;;;;FRLODP;FRESEP42005AB;Metropolis - Express - Villiers-sur-Marne - Bishop`s Stortford;;1 avenue Gustave Eiffel, 36130 Déols;;[2.455554, 48.876462];;FRS89EPKZS1;PBKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.186172;43.958425;;;; +;;;;;;;;FREVMPUVG0D07005;FRESEP42218AY;Metropolis - ePremium - Vincennes - Diderot (48);;Aire du Coeur d'aquitaine, A65, 33840, Captieux;;[2.42329625, 48.85316398];;FRS89EPDRZ2;PGYC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.256413;43.962289;;;; +;;;;;;;;FRMAPP000000007825;FRESEP42218BQ;Metropolis - ePremium - Vincennes - Brossolette;;Holiday Inn, 2099 Avenue Charles de Gaulle, 62231 Coquelles;;[2.443663, 48.861683];;FRS89EBPFN1;LADP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.198811;48.827423;;;; +;;;;;;;;FRS90P090012;FRESEP42275AE;Metropolis - ePremium - Vincennes - Péri;;Aire des Corbières Nord - A61, 11700 Capendu;;[2.437502, 48.857057];;FRS89EGGJV2;UYFT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.254679;48.822635;;;; +;;;;;;;;FRSLFESAPMOUGINS222;FRESEP42186AC;Metropolis - ePremium - Vincennes - République;;Aire de Longue les Cossonieres, A85 -49160 Longué-Jumelles;;[2.431605, 48.85819];;FRS89ELMUD1;JGKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.5217;48.838071;;;; +;;;;;;;;FRSLFESAPMOUGINS221;FRESEP42218AZ;Metropolis - ePremium - Vincennes - Petit Parc;;Aire de Giberville Sud, Km 220, A13, 14730 Giberville;;[2.32986937, 48.94929234];;FRS89ERHXE2;SYKE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.18412;48.776574;;;; +;;;;;;;;FRSLFESAPMOUGINS212;FRESEP42218BS;Metropolis - ePremium - Vincennes - Massue;;Aire de Lyon Dagneux,A42-01120 Dagneux;;[2.32608577, 48.95828488];;FRS89EASAU2;ENHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.342482;48.842788;;;; +;;;;;;;;FRSLFESAPMOUGINS211;FRESEP42218BL;Metropolis - Citadine - Villiers-sur-Marne - Dunant;;PARC DES SAULES, Rle du Coin des Saules, 27100 Val-de-Reuil;;[2.29162062, 48.95992322];;FRS89EPTYR1;MYHL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.796913;48.782032;;;; +;;;;;;;;FRSLFESAPMOUGINS172;FRESEP42005AD;Metropolis - Citadine - Villiers-sur-Marne - Trottin;;Aire de Vrigny,A4-51390 Vrigny;;[2.30625586, 48.96022052];;FRS89EBWSE1;SAVC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.255673;43.5468;;;; +;;;;;;;;FRSLFESAPMOUGINS202;FRESEP42218AD;Metropolis - ePremium - Vincennes - Lejemptel;;Aire de Parce Ouest,A11-72300 Parcé-sur-Sarthe;;[2.575541, 48.862919];;FRS89EAHMU2;EBLP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.64588;48.84965;;;; +;;;;;;;;FRSLFESAPCAEN061;FRESEP42275AC;Metropolis - ePremium - Vincennes - Diderot (118);;Aire De Parce Est,A11, 72300 Parcé-sur-Sarthe;;[2.443715, 48.86173];;FRS89EQLMM1;SVMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1973;43.758861;;;; +;;;;;;;;FRSLFESAPMOUGINS201;FRESEP42218AA;Metropolis - Express - Vincennes - Murs du parc;;Aire de SAUGON, A10, 33920 SAUGON;;[2.548643, 48.927719];;FRS89EJYNA1;MJHX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.597037;43.952673;;;; +;;;;;;;;FRSLFESAPMOUGINS171;FRESEP42218AI;Metropolis - Proximité - Vincennes - Rue de Fontenay (44);;Leclerc Seclin,350 avenue de L'Epinette, 59113 Seclin;;[2.338949, 48.937207];;FRS89EYQGV1;XJXD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.197545;48.775787;;;; +;;;;;;;;FRSLFESAPMOUGINS16CP1;FRESEP42218BN;Metropolis - Citadine - Vincennes - Rue de Fontenay (194);;50 All. des Genêts BP 200, 04200 Sisteron;;[2.51122517, 48.85580614];;FRS89EVXFV1;YSAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.186539;43.221173;;;; +;;;;;;;;FRSLFESAPMOUGINS162;FRESEP42218BP;Metropolis - Proximité - Vincennes - Général de Gaulle;;72 Av. du Président Kennedy, 02200 Soissons;;[2.364529, 48.907347];;FRS89ERRKL1;TFLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.181516;48.85195;;;; +;;;;;;;;FRSLFESAPMOUGINS152;FRESEP42186AA;Metropolis - ePremium - Vincennes - Diderot (216);;Aire de Sorgues, A7, Sorgues 84700;;[2.361115, 48.93883];;FRS89EBWSE2;BSME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.193663;44.86645;;;; +;;;;;;;;FRSLFESAPMOUGINS151;FRESEP42218AM;Metropolis - ePremium - Vincennes - Mur du Parc;;Aire de Taponas,A6-69220 Dracé;;[2.364454, 48.925114];;FRS89EVXFV2;VNPN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.200763;48.847349;;;; +;;;;;;;;FRSLFESAPMOUGINS14CP1;FRESEP42218BM;Metropolis - Citadine - Villecresnes - Réveillon;;Aire de Tavel Nord - A9 -30126 Tavel;;[2.4324466, 48.8944378];;FRS21EYSXC1;YMHQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.19756;48.844752;;;; +;;;;;;;;FRSLFESAPMOUGINS13ABBCP1;FRESEP42207AE;Metropolis - Citadine - Saint-Maur-des-Fossés - Parking Bollier;;Aire de Tavel Sud, A9, 30126 Tavel;;[2.352423, 48.917798];;FRS89EWDQY2;PGYC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.907248;48.840924;;;; +;;;;;;;;FRSLFESAPMOUGINS082;FRESEP42186AD;Metropolis - Citadine - Saint-Maur-des-Fossés - Adamville;;Tours la Longue Vue,A10-37380 Monnaie;;[2.383218, 48.942317];;FRS89EVUBY1;JKFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.896984;48.846928;;;; +;;;;;;;;FRSLFESAPCAEN072;FRESEP42218AX;Metropolis - Proximité - Saint-Maur-des-Fossés - Mesnil;;Aire du Val Gelon,A43-73390 Chateauneuf;;[2.32102156, 48.90586201];;FRS21EJUKH1;PBKL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.464987;48.849002;;;; +;;;;;;;;FRSLFESAPCAEN071;FRESEP42218BE;Metropolis - Citadine - La Queue-en-Brie - Maréchal Mortier;;Aire de Saint-Rambert d'Albon-Est, 26140 Saint-Rambert-d'Albon;;[2.34675284, 48.9032182];;FRS21EAMMS1;PJCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.201517;48.85446;;;; +;;;;;;;;FRSLFESAPCAEN062;FRESEP42218BC;Metropolis - Citadine - Ormesson-sur-Marne - Mairie;;Aire de la Vendée- A83- 85210 Sainte-Hermine;;[2.35408, 48.947939];;FRS21ESRBA1;AWEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.263835;43.979318;;;; +;;;;;;;;FRSLFESAPMOUGINS081;FRESEP42218BJ;Metropolis - Citadine - Orly - Hautes Bornes;;Aire de Verdun Saint Nicolas Nord - 55160 Haudiomont;;[2.362287, 48.921283];;FRS21EAVRM1;NSNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.48649;43.986445;;;; +;;;;;;;;FRSLFESAPCAEN052;FRESEP42218AE;Metropolis - Express - Santeny - Erables;;Aire de Verdun Saint Nicolas Sud - 55160 Haudiomont;;[2.51108902, 48.87290298];;FRS21EMGCB1;AYHR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.042062;43.160329;;;; +;;;;;;;;FRSLFESAPCAEN031;FRESEP42237AB;Metropolis - Citadine - Saint-Maurice - Jean Renoir;;Aire des vérités, TECHNOPOLE DE LA LOUE SORTIE 37, 03410 Saint-Victor;;[2.529547, 48.856893];;FRS21ENLBK1;LEDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.690518;48.781246;;;; +;;;;;;;;FRSLFESAPMOUGINS19B1;FRESEP42218AW;Metropolis - Proximité - Saint-Maurice - Verdun;;Aire de Veyre, A75 - 63960 Veyre Monton;;[2.51480745, 48.85208486];;FRS21EMATH1;ZMGD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.196945;48.781822;;;; +;;;;;;;;FRSLFESAPCAEN051;FRESEP42218AG;Metropolis - Citadine - Montreuil - Brossolette;;Aire de Vidauban Sud,A8-83550 Vidauban;;[2.520487, 48.854488];;FRS21EVGJG1;AHKV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.181862;46.24693;;;; +;;;;;;;;FRSLFESAPCAEN01LEGCP2;FRESEP42207AG;Metropolis - Express - Montreuil - République;;Aire du Village Catalan Est (Spain>France), A9, 66300 Banyuls-dels-Aspres;;[2.361983, 48.963039];;FRS21EDQMY1;YUCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.170855;43.836565;;;; +;;;;;;;;FRSLFESAPCAEN021;FRESEP42330AA;Metropolis - Citadine - Montreuil - Général de Gaulle;;Aire du Village Catalan Ouest (France>Espagne), A9, 66300 Banyuls-dels-Aspres;;[2.44475, 48.878112];;FRS21EFRSC1;VKBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.603186;43.256472;;;; +;;;;;;;;FRSLFESAPCAEN022;FRESEP42218AT;Metropolis - Citadine - Montreuil - Yélimané;;Aire de Villaines la Gonais A11-72400 Villaines-la-Gonais;;[2.371155, 48.964743];;FRS21EFYPB1;RPWB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.24865;48.781122;;;; +;;;;;;;;FRSLFESAPCAEN01LEGCP1;FRESEP42218BA;Metropolis - Citadine - Neuilly-Plaisance - République;;Aire Narbonne Vinassan Nord, A9, 11110;;[2.35897, 48.963355];;FRS21ERHEN1;EFAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.25948;48.784202;;;; +;;;;;;;;FRSLFESAPMOUGINS19A1;FRESEP42218AF;Metropolis - Proximité - Montreuil - Signac;;Aire de Capens-Volvestre,A64-31410 Capens;;[2.827864, 50.696382];;FRS21EZKJQ1;ZSNE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.271471;48.783949;;;; +;;;;;;;;FRSLFESAPCAEN032;FRESEP42218AP;Metropolis - Proximité - Montreuil - Godefroy;;Aire de Saint-Rambert-d'Albon Ouest - A7 - 26140 - Saint Rambert d'Albon;;[6.523605738717589, 46.086405764520606];;FRS21EFUTP1;RPWB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.195605;45.612292;;;; +;;;;;;;;FRSLFESAPCAEN041;FRESEP42207AF;Metropolis - Proximité - Montreuil - Léo Lagrange;;Route de Survilliers - Novotel Roissy Saint Witz, 95470 Saint-Witz;;[4.82072, 43.935617];;FRS21EVBWZ1;FLQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.84218;44.871477;;;; +;;;;;;;;FRSLFESAPCAEN042;FRESEPS42237AA;Metropolis - Proximité - Montreuil - République (5);;Aire de Saint Leger Est , A10, 17800 Saint Léger;;[2.204549, 48.85204];;FRS21ECGZA1;BNLK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.294772;48.78001;;;; +;;;;;;;;FR026PYZERON;FRESEP42218AQ;Metropolis - Express - Montreuil - Franklin (30);;Aire de Maison Dieu, A6, 89420 Guillon-Terre-Plaine, FRANCE;;[4.843686, 43.946211];;FRS21EBQJV1;ZSNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.871245;48.783674;;;; +;;;;;;;;FRSEOPAB28009A;FRESEP42207AH;Metropolis - Citadine - Montreuil - Rue de Vincennes;;Aire de mas d'agenais, 47430 Le Mas-d'Agenais;;[4.805081, 43.936094];;FRS21EZCQP1;YSRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.635613;48.781261;;;; +;;;;;;;;FRSEOPAB79270P0005A;FRESEP42218BO;Metropolis - Proximité - Montreuil - Désiré Préaux;;Aire de la Mayenne, A81 - 53960 Bonchamp-lés-Laval, France;;[4.876349, 43.940161];;FRS21EVUVW1;VNPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.027168;43.93032;;;; +;;;;;;;;FRSEOPAB25010A;FRESEP42218AB;Metropolis - Citadine - Epinay-sur-Seine - Foch;;Aire De Mionnay Chatanay, A46, 01390 Mionnay;;[4.828155, 43.947206];;FRS21EXGQZ1;HPZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.82889;43.535968;;;; +;;;;;;;;FRSEOPAB18008A;FRESEP42275AD;Metropolis - Proximité - Epinay-sur-Seine - Avenir;;Aire de Mionnay St Galmier-A46-01390 Mionnay;;[4.799193, 43.929592];;FRS89EEWQT1;FNNC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.683721;43.934998;;;; +;;;;;;;;FRSEOPAB41018A;FRESEP42237AC;Metropolis - Proximité - Epinay-sur-Seine - Route d'Argenteuil;;Montbartier Station Avia - 260 Route Nationale 20 - 82370 Labastide-Saint-Pierre;;[4.809693, 43.936482];;FRS89EHHMR2;LXQZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.274352;43.256121;;;; +;;;;;;;;FRSEOPAB13017A;FRESEP42275AB;Metropolis - Proximité - Epinay-sur-Seine - Fitzelin;;A7, Aire de Montélimar Est - 26780 Allan;;[2.44046, 48.92568];;FRS89EATDQ2;NGKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.926161;43.955152;;;; +;;;;;;;;FRSEOPAB13017B;FRESEP42218BR;Metropolis - Citadine - Gournay-sur-Marne - Près de Noisy;;A7 Aire de Montelimar Ouest - 26780 Allan;;[4.876649, 43.925813];;FRS89EMJRX2;VMEP4;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.691184;45.275643;;;; +;;;;;;;;FRSEOPAB53156A;FRESEP42218AL;Metropolis - Citadine - Montreuil - Franklin (18);;Retail Park 34130 Saint-Aunès;;[4.833258, 43.952128];;FRS89EPTYR2;EZBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.190194;47.862233;;;; +;;;;;;;;FRSEOPAB79191P0207A;FRESEP42207AA;Metropolis - Express - Livry-Gargan - Robert Schuman;;Aire de Moriéres Ouest - Autoroute A7 - 84310 Moriéres-lés-Avignon;;[4.798628, 43.937354];;FRS89EQLMM2;NWRQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.267834;48.795044;;;; +;;;;;;;;FRSEOPAB79191P0079A;FRESEP42218AN;Metropolis - Citadine - L'Ile-Saint-Denis - Libération;;Aire de Mornas les Adrets, A7, 84550 Mornas;;[2.170362, 48.83852];;FRS89EWMEN2;PKZS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.181023;47.665194;;;; +;;;;;;;;FRSEOPAB79191P0229A;FRESEP42218BF;Metropolis - Proximité - Neuilly-Plaisance - Chanzy;;Aire de Saint Laurent, A25, 59114 Steenvoorde;;[2.177635, 48.784153];;FRS89EDMDT2;BPFN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.267296;48.724352;;;; +;;;;;;;;FRSEOPAB79191P0229B;FRESEP42218BH;Metropolis - Express - Saint-Denis - Georges Sand;;Aire de Mouxy 73420 Drumettaz-Clarafond;;[4.813005, 43.928623];;FRS89EXCDT2;FXNU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.302399;48.782472;;;; +;;;;;;;;FRSEOPAB79191P0265A;FRESEP42218AS;Metropolis - Citadine - Saint-Denis - Félix Faure;;Aire de Mornas Village , A7, 84550 Mornas;;[2.12096, 48.809898];;FRS89ETAPJ2;XCDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.23637;48.808019;;;; +;;;;;;;;FRSEOPAB79191P0265B;FRG10P42140A;Metropolis - Citadine - Saint-Denis - Jesse Owens;;Parking covoiturage Vinci Orléans nord, 39 Rue Henri Becquerel, 45770 Saran;;[2.130358, 48.801996];;FRS89EJYNA2;AALD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.58115;48.348536;;;; +;;;;;;;;FRSEOPAB73067A;FRG10P17028A;Metropolis - Citadine - Romainville - Commune de Paris;;Aire de Poitou-Charentes, A10, 79180 Vouillé;;[2.475489, 48.824539];;FRS89EZTGW2;AALD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.581173;48.804229;;;; +;;;;;;;;FRSEOPAB73023A;FRG10P74118A;Metropolis - Citadine - Saint-Denis - Cheminots;;Centre commercial des Balquières, 12850 Onet le Château;;[2.262841, 48.798985];;FRS89EFFSG2;QAKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.976272;43.538529;;;; +;;;;;;;;FRSEOPAB53083A;FRG10P62898A;Metropolis - Citadine - Romainville - Paul Vaillant Couturier;;Aire de Rely Ouest, A26, 62120 Rely;;[7.130067, 43.641297];;FRS89EQZGT1;QAKU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.643206;48.784747;;;; +;;;;;;;;FRSEOPAB57009A;FRG10P94074A;Metropolis - Citadine - Saint-Denis - Promenade Basilique;;Aire des Porte d'Angers Sud,A11, 49480 Saint-Sylvain d'Anjou;;[4.796952, 43.943149];;FRS89ETNMY2;VMEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.585656;43.280687;;;; +;;;;;;;;FRSEOPAB79202P0043A;FRG10P73179A;Metropolis - Citadine - Saint-Ouen-sur-Seine - Dulcie September;;Aire de Poitiers Jaunay Clan,A10, 86130 Jaunay-Clan;;[4.821433, 43.939104];;FRS89ERRKL2;VNNH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.592279;43.276785;;;; +;;;;;;;;FRSEOPAB79202P0095A;FRG10P76150A;Metropolis - Proximité - Saint-Ouen-sur-Seine - Entrepôts;;Aire de Poitiers Chincé, A10, 86130 Jaunay-Clan;;[6.585713, 43.230239];;FRS89EXMTD2;VRFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.659943;45.526596;;;; +;;;;;;;;FRSEOPAB22002A;FRG10P77132A;Metropolis - Citadine - Saint-Denis - 19 mars 1962;;Centre Commercial N21, 24660 Sanilhac;;[4.838556, 43.927832];;FRS89EQLYL1;XZKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.58432;43.268741;;;; +;;;;;;;;FRSEOPAB22026A;FRG10P42059A;Metropolis - Express - Saint-Denis - Cokerie;;Aire de Pech Montat, A20, 46600 Cressensac;;[4.825062, 43.942905];;FRS89ETNMY1;XFUE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.431965;43.284265;;;; +;;;;;;;;FRSEOPAB24056A;FRG10P83069A;Metropolis - Proximité - Neuilly-Plaisance - Stalingrad;;13 Avenue Max Maurey 06160 Antibes;;[4.809387, 43.930192];;FRS89EHHMR1;TGMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.465199;43.283508;;;; +;;;;;;;;FRSEOPAB54092A;FRG10P84087A;Metropolis - Citadine - Neuilly-sur-Marne - François Mitterrand;;Pont Les Brie 80200 Villers Carbonnel;;[2.255335, 48.786899];;FRS89EATDQ1;WASS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.283107;43.220607;;;; +;;;;;;;;FRSEOPAB02002A;FRG10P35021A;Metropolis - Citadine - Neuilly-Plaisance - Cézanne;;Place Aristide Briand Pont de l'Arche;;[2.277903, 48.83624];;FRS89EQLYL2;SHYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.90471;43.28033;;;; +;;;;;;;;FRSEOPAB33001A;FRG10P03107A;Metropolis - Express - Neuilly-sur-Marne - Aristide Briand;;Boulevard de Gaulle St Marcel;;[6.660772, 49.132656];;FRS89EEWQT2;VMEP3;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.287036;44.97493;;;; +;;;;;;;;FRSEOPAB40085A;FRG10P94073A;Metropolis - Citadine - Pierrefitte-sur-Seine - Salvador Allende;;Intermarché- médiathèque St Phibert sur Risle;;[4.821979, 43.929502];;FRS89EVUBY2;SHYE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.292852;43.207435;;;; +;;;;;;;;FRSEOPAB13031A;FRG10P91235A;Metropolis - Proximité - Romainville - Marcel Ethis;;Parking gare SNCF Verneuil sur Avre;;[4.816939, 43.942256];;FRFR1EKCWN1;VRFW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.636581;48.783485;;;; +;;;;;;;;FRSEOPAB31019A;FRG10P42094A;Metropolis - Citadine - Pierrefitte-sur-Seine - Général de Gaulle;;Espace Ph Auguste - rue Riquier Vernon;;[4.899412, 43.940189];;FRFR1EWFEE1;XMTD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.657337;43.942662;;;; +;;;;;;;;FRSEOPAB06050A;FRG10P69027A;Metropolis - Express - Pierrefitte-sur-Seine - Gabriel Péri;;Parking touristique 2eme Giverny;;[4.977306, 45.698458];;FRFR1EMZXR2;WMEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.92151;48.790756;;;; +;;;;;;;;FRSEOPAB31001A;FRG10P43137A;Sertitude;;Parking touristique Giverny;;[1.0833, 48.240665];;FRFR1EEMRN2;DMDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.022143;48.789219;;;; +;;;;;;;;FRSEOPAB55070A;FRG10P45104A;Intermarché Thyez;;Parc des Saules Val de Reuil;;[0.490811, 47.500239];;FRFR1EUTCC2;ZVGY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.235;43.272524;;;; +;;;;;;;;FRSEOPAB62089A;FRG10P45338A;MAIRIE NORD ROCADE - AVIGNON;;ZA des Freni-Freneaux Pitres;;[4.974066, 45.698131];;FRFR1EHSCR2;NQHP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.83061;43.250875;;;; +;;;;;;;;FRSEOPAB21036A;FRG10P45312A;RUE BUZENVAL - GARCHES;;Place de l'école Lieurey;;[4.242799, 49.120583];;FRFR1ETQRG1;AFNF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.80859;44.005089;;;; +;;;;;;;;FRSEOPAB16007A;FRG10P45249A;PARKING PONT DES DEUX EAUX - AVIGNON;;Place de la République Fleury sur Andelle;;[4.242644, 49.120556];;FRFR1ESMUW1;AFNF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.00948;46.877453;;;; +;;;;;;;;FRSEOPAB34119A;FRG10P45247A;MONCLAR - AVIGNON;;Place de la Liberté Rugles;;[7.448297, 43.878408];;FRFR1EGUKC2;AFXK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.80692;46.96945;;;; +;;;;;;;;FRSEOPAB16169A;FRG10P45185A;MONTFAVET ETOILE - AVIGNON;;Place de la Mairie St Georges du Vievre;;[6.6342, 43.314926];;FRFR1EYVTS2;AHQY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.80221;46.89101;;;; +;;;;;;;;FRSEOPAB29037A;FRG10P45102A;FOLIE BOCACE - AVIGNON;;Place Lafitte Breteuil;;[2.153577, 48.799674];;FRFR1EHJHZ2;AFXK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.80378;46.462;;;; +;;;;;;;;FRSEOPAB79174P141A;FRG10P45092A;AVENUE EISENHOWER - AVIGNON;;Place Barette Vernon;;[2.151875, 48.806742];;FRFR1EHMAG2;AHPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.31272;46.871399;;;; +;;;;;;;;FRSEOPAB79174P0013A;FRG10P45061A;PARKING SAINT RUF - AVIGNON;;CAPE 12 rue de la Mare à Jouy Douains;;[2.136693, 48.79661];;FRFR1EPAHX2;AHPZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.23013;46.46651;;;; +;;;;;;;;FRSEOPAB79174P0017A;FRG10P45004B;RUE SADI CARNOT - DRANCY;;Parking de la gare Pont Audemer;;[6.568722, 43.207298];;FRFR1EHMXN2;AHQY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.22665;46.462318;;;; +;;;;;;;;FRSEOPAB79174P0032A;FRG10P45004A;RUE DES FILLES - AVIGNON;;Carrefour Malbrouck Carsix;;[4.793617, 44.024338];;FRFR1EFAAF2;ZUXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.38599;46.468151;;;; +;;;;;;;;FRSEOPAB79174P0029A;FRG10P59343A;BOULEVARD MARCEL COMBES - AVIGNON;;Rue de la Mairie Saint Ouen du Tilleul;;[6.599485, 43.184096];;FRFR1EARSW2;FFSG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.76012;46.714;;;; +;;;;;;;;FRSEOPAB79270P0024A;FRG10P445345A;LABANDE FERRY - AVIGNON;;Centre bourg Serquigny;;[6.616837, 43.329318];;FRFR1EWZEX2;ZUXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.15782;46.774151;;;; +;;;;;;;;FRSEOPAB84138A;FRG10P06088A;BOULEVARD RAYMOND POINCARE - GARCHES;;Parking de Papavoine Le Vaudreuil;;[6.624927, 43.325788];;FRFR1EHKRU2;ZVGY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.01449;46.77294;;;; +;;;;;;;;FRSEOPAB31300A;FRG10P42149A;AVENUE WAGNER - VELIZY-VILLACOUBLAY;;Parking Intermarché Gisors;;[6.634794, 43.310428];;FRFR1EAYSQ2;ZXQN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.22376;46.73901;;;; +;;;;;;;;FRSEOPAB50103A;FRG10P50647A;AVENUE CABRIERES OLIVADES - AVIGNON;;Place Gustave Héon - tribunal Bernay;;[6.546778, 43.337839];;FRFR1EAKAV2;EZBT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.65902;46.69736;;;; +;;;;;;;;FRSEOPAB79083P0020A;FRG10P29236A;BOULEVARD DE LA REINE - VERSAILLES;;Rue des Ecoles St André de l'Eure;;[6.586437, 43.262611];;FRFR1ERCDM2;LXEH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.7591;46.45393;;;; +;;;;;;;;FRSEOPAB79083P0021A;FRG10P43268A;AVENUE DE PARIS VERSAILLES;;Aire de covoiturage Saint Aubin sur Gaillon;;[5.403812, 43.82887];;FRFR1EARPS2;CZWL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.95255;46.871368;;;; +;;;;;;;;FRSEOPAB12228A;FRG10P42218AA;PLACE MOZART - JOINVILLE;;Aire de co voiturage 2 Gaillon;;[6.533698, 43.251851];;FRFR1ERQFG2;GPBF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.94492;46.53632;;;; +;;;;;;;;FRSEOPAB12228B;FRG10P17300A;PLACE VERDUN - JOINVILLE;;Boulevard de la Gare Ivry la Bataille;;[6.534659, 43.250675];;FRFR1ERQFG1;MJRX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.45214;46.6177;;;; +;;;;;;;;FRSEOPAB40018A;FRG10P17300B;PLACE FERRARI - CLAMART;;Boulevard Gambetta Evreux;;[6.577631, 43.279636];;FRFR1EVHHX2;QZGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.31215;46.481231;;;; +;;;;;;;;FRSEOPAB79048P0004A;FRG10P17300D;COOLWORK - VILLENEUVE-LOUBET;;Rue Saint Louis Evreux;;[5.9732, 45.52667];;FRFR1ECBUM2;VNNH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.16827;46.99136;;;; +;;;;;;;;FRSEOPAB79101P0012A;FRG10P17300C;RUE MARTIN LUTHER KING - AVIGNON;;salle des sports Ecos;;[6.534893, 43.170946];;FRFR1EMZMY2;HNMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.49111;46.995129;;;; +;;;;;;;;FRSEOPAB07005A;FRG10P45122A;SEMARD ROTONDE - AVIGNON;;Place de République Vernon;;[6.635375, 43.27044];;FRFR1EYUMW1;YMHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.57682;46.90633;;;; +;;;;;;;;FRSEOPAB47069A;FRG10P85089A;OFFICE DU TOURISME - GASSIN;;Parking de Covoiturage Douains;;[6.706553, 43.443935];;FRFR1EHAYV2;USZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.35018;46.974091;;;; +;;;;;;;;FRSEOPAB12008A;FRG10P66210A;CAP SUD - AVIGNON;;Salle des Fetes Gasny;;[6.522957, 43.274431];;FRFR1EEMRN1;RNBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.34753;46.454491;;;; +;;;;;;;;FRSEOPAB12002A;FRG10P42218AB;MOURRE-SOLIDARITE - AVIGNON;;Centre du village Fleury la Forêt;;[6.57743, 43.274761];;FRFR1ECBUM1;ABDK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.01728;46.425529;;;; +;;;;;;;;FRSEOPAB79048P0012A;FRG10P63258B;AVENUE TARASCON - AVIGNON;;Stade Jessis Owens Val de Reuil;;[6.521344, 43.272782];;FRFR1EUTCC1;GCLF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.99678;46.41642;;;; +;;;;;;;;FRSEOPAB79174P0017B;FRG10P63454A;HOPITAL BECLERE - AVENUE DE GAULLE - CLAMART;;Parking de la Gare Brionne;;[6.519044, 43.172029];;FRFR1EHSCR1;QMQG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.73754;46.727699;;;; +;;;;;;;;FRSEOPAB45042A;FRG10P73182A;BP - Garigliano - 75015;;Parking de la gare Vascoeuil;;[6.640612, 43.269507];;FRFR1EKZHC2;KPZS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.351041;46.724319;;;; +;;;;;;;;FRSEOPAB12073A;FRG10P45145A;BP - LONGEVILLE - 57740;;Rue Delaquaize - annexe hopital Pont Audemer;;[5.36349, 43.765756];;FRFR1ECDDA2;BMTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.59512;46.861481;;;; +;;;;;;;;FRSEOPAB79049P008A;FRG10P45028C;MAIRIE SUD ROCADE - AVIGNON;;Carrefour Market Bernay;;[5.706148, 43.384124];;FRFR1EGUKC1;WPAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.040817;46.97329;;;; +;;;;;;;;FRSEOPAB79049P0021A;FRG10P45028D;BOULEVARD DENIS SOULIER- AVIGNON;;Ecoparc satellite ZA1 Heudebouville;;[6.661056, 43.227475];;FRFR1EYVTS1;ACUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.91576;46.504768;;;; +;;;;;;;;FRSEOPAB09287A;FRG10P45028B;AVENUE JEAN MONNET - MORIERE;;Rue de la Seule - médiathèque Pont Audemer;;[2.466818, 48.816785];;FRFR1EHJHZ1;AHKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.11937;46.957664;;;; +;;;;;;;;FRSEOPAB12124A;FRG10P42222A;BP MANISSIEUX - SAINT-PRIEST - 69800;;Carrefour Market Thiberville;;[2.445813, 48.921675];;FRFR1EHMAG1;HJFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.119488;46.36944;;;; +;;;;;;;;FRSEOPAB08004A;FRG10P38563A;BP FRAZE - MANOIR DU PERCHE - DAMPIERRE-SOUS-BROU - 28160;;Place des Ecoles Thiberville;;[4.823253, 43.953885];;FRFR1EPAHX1;UMEU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.176674;46.914974;;;; +;;;;;;;;FRSEOPAB37093A;FRG10P42218AC;BP - SAINT-SYLVAIN-D'ANJOU - 49480;;Carrefour Market Damville;;[4.936124, 43.948985];;FRFR1EHMXN1;MELH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4523;46.657139;;;; +;;;;;;;;FRSEOPAB45122A;FRG10P42279A;BP - SAINT-PRIEST - 69800;;Salle des fêtes Brionne;;[4.800516, 43.949101];;FRFR1EFAAF1;JGKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.390747;46.88493;;;; +;;;;;;;;FRSEOPAB79174P0017C;FRG10P63231A;BP CHAMPAGNE SUD - LES PETITES-LOGES - 69800;;Rue R.Roche Gaillon;;[2.210091, 48.780621];;FRFR1EARSW1;HDWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.60784;46.88022;;;; +;;;;;;;;FRSEOPAB52160A;01F855VN9PNYHVV4G2PVR0JSGV;BP CHAMPAGNE NORD - LES PETITES-LOGES - 69800;;Place du Gal de Gaulle Cormeilles;;[2.215456, 48.782833];;FRFR1EWZEX1;ENHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.61386;46.941901;;;; +;;;;;;;;FRSEOPAB64023A;FR*55C*P84000*AVG*MA1R1EN0RD;PARKING - SOSPEL;;Place de la mairie Condé /Iton;;[2.211931, 48.785437];;FRFR1EHKRU1;YSAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.45963;46.596981;;;; +;;;;;;;;FRSEOPAB10078A;FR*55C*P92280*GAR*BUZENVAL;PARKING PASTORELLI - SAINTE MAXIME;;Rue Augustin Hébert - théatre Pont Audemer;;[2.18696, 48.838587];;FRFR1EAYSQ1;EDJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.17294;46.40573;;;; +;;;;;;;;FRSEOPAB01060A;FR*55C*P84000*AVG*P0NT;RUE VAUBAN - VERSAILLES;;Place Houdouard Breteuil;;[2.129056, 48.800833];;FRFR1EAKAV1;MJHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.864479;46.74025;;;; +;;;;;;;;FRSEOPAB79005P0008A;FR*55C*P84000*AVG*MONCLAR;RUE BONNE AVENTURE - VERSAILLES;;La gare / boulevard Dubus Bernay;;[4.764347, 43.958037];;FRFR1ERCDM1;SVMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.74243;46.74352;;;; +;;;;;;;;FRSEOPAB79005P0027A;FR*55C*P84000*AVG*MONTFAVET;RUE DES CHANTIERS - VERSAILLES;;Cours du marché aux chevaux place du velodrome Vernon;;[4.768425, 43.958425];;FRFR1EARPS1;DRJU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.746495;46.72031;;;; +;;;;;;;;FRSEOPAB42054A;FR*55C*P84000*AVG*FOLIE;PARKING GARE - LA CROIX VALMER;;Rue du four à chaux Lyons la Forêt;;[4.752516, 43.962289];;FRFR1EXDRA2;KGWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.05423;46.63612;;;; +;;;;;;;;FRSEOPAB79049P0020A;FR*55C*P84000*AVG*E1SENH0WER;PLACE DU MARCHE - SAUVETERRE;;Eglise La Haye Malherbe;;[2.26765, 48.827423];;FRFR1EHQUN1;MYUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.05157;46.861111;;;; +;;;;;;;;FRSEOPAB12016A;FR*55C*P84000*AVG*STRUF;PARKING PLAGE DU GIGARO - LA CROIX VALMER;;Ecoparc satellite ZA2 Heudebouville;;[2.249932, 48.822635];;FRFR1ERSXM2;MXEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.879576;46.647221;;;; +;;;;;;;;FRSEOPAB58084A;FR*55C*P93700*DRY*PM;PARKING BOSQUET - SAINTE MAXIME;;Place Centre Ville La Neuve Lyre;;[2.186172, 48.838071];;FRFR1ERSXM1;WPGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.88028;46.646595;;;; +;;;;;;;;FRSEOPAB35114A;FR*55C*P84000*AVG*RUEDEF1LLES;PARKING GAUMONT - SAINTE MAXIME;;Rue du Coq Beuzeville;;[2.256413, 48.776574];;FRFR1EHQUN2;TGMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.871946;46.689838;;;; +;;;;;;;;FRSEOPAB07067A;FR*55C*P84000*AVG*BDC0MBES;PLACE MERMOZ - SAINTE MAXIME;;Place du Prebytere Conteville;;[2.198811, 48.842788];;FRFR1EHSTM1;EMDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.29272;46.686314;;;; +;;;;;;;;FRSEOPAB49067B;FR*55C*P84000*AVG*FERRY;PARKING JAURES - PLAN DE LA TOUR;;Place Dérou - la poste avenue Jean de la Varende Bernay;;[2.254679, 48.782032];;FRFR1EHGPM2;AKLP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.02199;46.84815;;;; +;;;;;;;;FRSEOPAB49067C;FR*55C*P92380*GAR*RAYPOINCARE;PARKING TRIDENT - GASSIN;;Parking Intermarché Romilly sur Andelle;;[5.5217, 43.5468];;FRFR1EHGPM1;VMEP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.8556;46.84565;;;; +;;;;;;;;FRSEOPAB38069A;FR*55C*P78140*VLZ*WAGNER;PARKING LAUTIER - SIVERGUES;;Rue de Paris Igoville;;[2.18412, 48.84965];;FRFR1EHVYX1;HNMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.29718;46.848647;;;; +;;;;;;;;FRSEOPAB79191P0185A;FR*55C*P84000*AVG*0LIVADES;PLACE AVENUE GENERAL DE GAULLE -COGOLIN;;Place de la Mairie Ezy sur Eure;;[5.342482, 43.758861];;FRFR1EHVYX2;USZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.10895;46.672119;;;; +;;;;;;;;FRSEOPAB79191P0045A;FR*55C*P78000*VER*BDREINE;PLACE VICTOR HUGO - COGOLIN;;Place Duboc Epaignes;;[4.796913, 43.952673];;FRFR1EHVZG1;EMDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.17687;46.39301;;;; +;;;;;;;;FRSEOPAB79191P0031A;FR*55C*P78000*VER*AVPARIS;PARKING AIRE DE ST PONS - GRIMAUD;;Parking place de la République Louviers;;[2.255673, 48.775787];;FRFR1EHVZG2;AKLP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.17026;46.626759;;;; +;;;;;;;;FRSEOPAB49018A;FR*55C*P94340*JVL*MOZART;BP - AIRE DU GRANIER - MYANS - 73800;;Place du champ de ville Louviers;;[6.64588, 43.221173];;FRFR1EQXMY1;HKUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.13728;46.947361;;;; +;;;;;;;;FRSEOPAB13082A;FR*55C*P94340*JVL*VERDUN;PARKING MEDIATHEQUE - CAVALAIRE SUR MER;;la halle face culture velo / PARKING OFFICE DE TOURISME Louviers;;[2.1973, 48.85195];;FRFR1EPJEC1;WASS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.41197;46.4669;;;; +;;;;;;;;FRSEOPAB20087A;FR*55C*P92140*CLM*BECLERE;PARKING PORT - SAINT TROPEZ;;Parking service public Damville;;[-0.597037, 44.86645];;FRFR1EPJEC2;XFUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.7537332;46.85087;;;; +;;;;;;;;FRSEOPAB12201A;FR*55C*P06270*VNL*COOLWORK;ZONE COMMERCIAL - PUGET SUR ARGENS;;Parking ComCom Market Etrépagny;;[2.197545, 48.847349];;FRFR1EPBET2;QARL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.772598;46.85125;;;; +;;;;;;;;FRSEOPAB33137A;FR*55C*P84000*AVG*MLK;PARKING MAIRIE - GRIMAUD;;Place Jacques Ibert Les Andelys;;[2.186539, 48.844752];;FRFR1EQXMY2;XZKR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.78187;46.811699;;;; +;;;;;;;;FRSEOPAB63086A;FR*55C*P84000*AVG*R0T0NDE;PARKING PORT - GRIMAUD;;Parking Mairie Tillières/Avre;;[2.181516, 48.840924];;FRFR1EPBET1;HXMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.79613;46.93412;;;; +;;;;;;;;FRSEOPAB79329P0015A;FR*55C*P83580*GAS*TOURISME;PARKING RN7 - GRIMAUD;;Office du tourisme Verneuil sur Avre;;[2.193663, 48.846928];;FRFR1EWWBX2;QARL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.79573;46.5169739;;;; +;;;;;;;;FRSEOPAB18117A;FR*55C*P84000*AVG*CAPSUD;CHEMIN DES CANISSONS - CAVALAIRE SUR MER;;Avenue Foch Verneuil sur Avre;;[2.200763, 48.849002];;FRFR1EELRR2;GCBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.92586;46.494529;;;; +;;;;;;;;FRSEOPAB18024A;FR*55C*P84000*AVG*SOLIDARITE;PARKING ESPACE DES LICES - SAINT TROPEZ;;Salle des Fêtes Passage Soeur Brard Bourth;;[2.19756, 48.85446];;FRFR1EELRR1;HXMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.78418;46.497181;;;; +;;;;;;;;FRSEOPAB18212A;FR*55C*P84000*AVG*TARASC0N;PARKING D943 - LOURMARIN;;Parking mairie Gisors;;[4.907248, 43.979318];;FRFR1EWRWA1;EZRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.06227;46.50195;;;; +;;;;;;;;FRSEOPAB17024A;FR*55C*P92140*CLM*FERRAR1;PARKING - SAINT ZACHARIE;;Les Andelys Piscine;;[4.896984, 43.986445];;FRFR1EWRWA2;DWDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4251;46.494049;;;; +;;;;;;;;FRSEOPAB79329P0036A;FR*55C*PBP*75015*PAR1S;PARKING CLUB 55 - RAMATUELLE;;Centre parking com com Tourny;;[6.464987, 43.160329];;FRFR1EWWBX1;UMUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.321756;46.697781;;;; +;;;;;;;;FRSEOPAB34023A;FR*55C*PBP*57740*LONGEV1LLE;PLACE DU 8 MAI 1945 - JOINVILLE;;Gare SNCF Val de Reuil;;[2.201517, 48.781246];;FRFR1ECAMM1;HKUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.51163;46.49939;;;; +;;;;;;;;FRSEOPAB83036A;FR*55C*P84000*AVG*MA1R1ESUD;1 RUE BERTHELOT DRANCY;;Parking hotel le Cygne Conches;;[2.263835, 48.781822];;FRFR1ECAMM2;GQHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.43012;46.555099;;;; +;;;;;;;;FRSEOPAB60044A;FR*55C*P84000*AVG*SOUL1ER;PARKING DES ITALIENS - AVIGNON;;Place Général de Gaulle Conches en Ouche;;[-1.48649, 46.24693];;FRFR1EHSTM2;GQHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.61797;46.492908;;;; +;;;;;;;;FRSEOPAB01041A;FR*55C*P84310*AVG*M0R1ERE;FELIBRIGE - JONQUERETTE;;Place Paul Doumer Conches;;[5.042062, 43.836565];;FRFR1EHWZJ2;SFLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.342638;46.330966;;;; +;;;;;;;;FRSEOPAB79329P0055A;FR*55C*PBP*69800*PR1EST;PARKING DE L'OULLE - AVIGNON;;Centre Bourg Lery;;[6.690518, 43.256472];;FRFR1EHWZJ1;QPUQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.83562;46.684349;;;; +;;;;;;;;FRSEOPAB79307P0010A;FR*55C*PBP*28160*DAMP1ERRE;DAUTIER - VELIZY-VILLACOUBLAY;;Place Lorraine La Bonneville/Iton;;[2.196945, 48.781122];;FRFR1ETMZX1;HQUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.06061;46.34767;;;; +;;;;;;;;FRSEOPAB16001A;FR*55C*PBP*49480*ANJOU;RUE DEWOITINE - VELIZY-VILLACOUBLAY;;Rue Voltaire Evreux;;[2.181862, 48.784202];;FRFR1ERPKL1;HEBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.06249;46.46485;;;; +;;;;;;;;FRSEOPAB47092A;FR*55C*PBP*69800*PR1EST2;ALLIEE LATECOERE - DASSAULT - VELIZY-VILLACOUBLAY;;Parking Intermarché St Pierre des Fleurs;;[2.170855, 48.783949];;FRFR1ERRYV2;HFQA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.94701;46.573218;;;; +;;;;;;;;FRSEOPAB58042A;FR*55C*PBP*51400*CHAMPAGNES;BOULEVARD DU GENERAL DE GAULLE - GARCHES;;centre Ste Colombe la Commanderie;;[-0.603186, 45.612292];;FRFR1ERRYV1;HSAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.96324;46.6063;;;; +;;;;;;;;FRSEOPAB26031A;FR*55C*PBP*51400*CHAMPAGNEN;AVENUE DU GENERAL DE GAULE - VERSAILLES;;Avenue du Gén. de Gaulle (Salle de Fêtes), Andelys;;[3.24865, 44.871477];;FRFR1EVHHX1;KEMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.9781;46.79002;;;; +;;;;;;;;FRSEOPAB28028A;FR*55C*P06380*SOS*PARKING;AVENUE DU GENERAL DE GAULE - LES ANGLES;;Plce Carnot Beaumont le Roger;;[2.25948, 48.78001];;FRFR1ERSMF1;HFVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.33125;46.79406;;;; +;;;;;;;;FRSEOPAB32103A;FR*55C*P83120*STM*PASTORELLI;PARKING ELEPHANT BLEU - LES ANGLES;;College Jean Jaures Evreux;;[2.271471, 48.783674];;FRFR1ERSZN2;HFDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.83792;46.720921;;;; +;;;;;;;;FRSEOPAB79329P0063A;FR*55C*P78000*VER*VAUBAN;PARKING PRIADES - LES ANGLES;;Parking Franprix Nonancourt;;[2.195605, 48.781261];;FRFR1ERSZN1;HFDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.8416;46.711208;;;; +;;;;;;;;FRSEOPAB79329P0063B;FR*55C*P78000*VER*MONTREUIL;27 BOULEVARD GALLIENI - ISSY-LES-MOULINEAUX;;Gare Conches en Ouches;;[4.84218, 43.93032];;FRFR1ERSMF2;HFQA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.50769;46.712811;;;; +;;;;;;;;FRSEOPAB79329P0077A;FR*55C*P78000*VER*CHANTIERS;21 BOULEVARD DES ILES - ISSY LES MOULINEAUX;;Aire de co voiturage Gaillon;;[5.294772, 43.535968];;FRFR1EUSSV1;HFVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.50551;47.00351;;;; +;;;;;;;;FRLUMEHOTELNIDCIGOGNES11;FR*55C*P83420*CRV*GARE;PLACE DE LA GARE - GARCHES;;Office du tourisme Le Neubourg;;[4.871245, 43.934998];;FRFR1EZDCA2;QPUQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.98991;46.781986;;;; +;;;;;;;;FRLUMEHOTELAMERIQUEPALAVAS11;FR*55C*P30150*SAU*PLACE;PARKING LA HALLE - LE PLESSIS-ROBINSON;;Future station service- face CC Broglie;;[6.635613, 43.256121];;FRFR1EERKM1;HYLG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.7726;46.778221;;;; +;;;;;;;;FRBHMECAMPINGCLERIGOERVELINA1;FR*55C*P420*CRV*GIGARO;GRANDE RUE - GARCHES;;Maison médicale Montreuil l'Argillé;;[5.027168, 43.955152];;FRFR1ESMZB1;QPUQ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.778495;46.767872;;;; +;;;;;;;;FRBHMECAMPINGCLERIGOERVELINB1;FR*55C*P83120*STM*BOSQUET;AVENUE HERRIOT - LE PLESSIS-ROBINSON;;Gare SNCF Bueil;;[4.82889, 45.275643];;FRFR1ESMZB2;HFUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.77327;46.766079;;;; +;;;;;;;;FRZMAE22AC50785;FR*55C*P83120*STM*GAUMONT;PLACE DE LA MAIRIE - SAINT-MARC-JAUMEGARDE;;Place Bertrand du Pouget Evreux;;[1.683721, 47.862233];;FRFR1ETMZX2;HFUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.77019;46.819931;;;; +;;;;;;;;FR000028067822;FR*55C*P83120*STM*MERMOZ;CRECHE ROSE DES 4 VENTS - GARCHES;;Parking Aquaval Gaillon;;[2.274352, 48.795044];;FRFR1EZDCA1;KMVT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.131729;46.541851;;;; +;;;;;;;;FREVMENVG0B46012;FR*55C*P83120*PLT*PARKING;PLACE ANDRE GRANGIER - PUYVERT;;Parking Paul Doumer Gaillon;;[1.926161, 47.665194];;FRFR1EMEAS1;KMVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.24947;46.514553;;;; +;;;;;;;;FREVMENVG0B46002;FR*55C*P83580*GAS*TRIDENT;BARTHELASSE - AVIGNON;;Place du monument aux Morts La Barre en Ouche;;[7.691184, 48.724352];;FRFR1ERPKL2;KLMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.40227;46.53415;;;; +;;;;;;;;FRFR1EVLH1;FR*55C*P84400*SVG*PARKING;AVENUE LEON BLUM - LE PLESSIS-ROBINSON;;Rue Gambetta Nonancourt;;[2.190194, 48.782472];;FRFR1EUSSV2;KLZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.428843;46.506409;;;; +;;;;;;;;FRLUMEVILLAPOGGIOLI11;FR*55C*P83310*COG*PLACEGD;LES SELLETTES - RAMATUELLE;;Parking des Ecoles La Madeleine de Nonancourt;;[2.267834, 48.808019];;FRFR1EMEAS2;KLZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4291;46.831223;;;; +;;;;;;;;FRZPEE170549;FR*55C*P83310*COG*PLACEVH;RUE DU DOCTEUR DEBAT - GARCHES;;Zone des Sablons Alizay;;[1.181023, 48.348536];;FRFR1EBUFX1;KPCT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4282;47.000671;;;; +;;;;;;;;FRLIBP329104;FR*55C*P83310*GRI*STPONS;PARKING LAFONT - LE BOUSCAT;;Rue de la Rochette Evreux;;[2.267296, 48.804229];;FRFR1EMZMY1;HSAR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.40609;46.5927;;;; +;;;;;;;;FRRMAP6481841C9C07BE00DED7039D;FR*55C*PBP*73800*GRAN1ER;RUE DE SURESNES - GARCHES;;Aubevoye Gare SNCF;;[5.302399, 43.538529];;FRFR1EHAYV1;HYLG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.50997;46.702999;;;; +;;;;;;;;FRRMAP6460E7E38A20F02768A74212;FR*55C*P83240*CAV*MEDIATHEQUE;PLACE DEVOS - GARCHES;;Parking Mairie Gravigny;;[2.23637, 48.784747];;FRFR1ETAAL2;FSJB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.45374;46.6909;;;; +;;;;;;;;FRRMAP6486B47A9C07BE00DED73694;FR*55C*P83990*STR*PORT;RUE PASTEUR - GARCHES;;Place de la République Evreux;;[6.58115, 43.280687];;FRFR1EUVHD2;HDAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4383;46.671021;;;; +;;;;;;;;FRRMAP6492BF327AFD87059FF1B834;FR*55C*P83480*PUG*COMMERCIAL;PLACE DU CIMETIERE - GARCHES;;Rue des Pipots Evreux;;[6.581173, 43.276785];;FRFR1EXTNN1;HJZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.44083;46.670441;;;; +;;;;;;;;FRRMAP6475957AEF82E9F9494A574A;FR*55C*P83310*GRI*MAIRIE;PARKING DU 19 JANVIER - GARCHES;;Rue des Violettes Evreux;;[5.976272, 45.526596];;FRFR1EXTNN2;FGQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.43236;46.940701;;;; +;;;;;;;;FRRMAP6460E6968A20F02768A741FF;FR*55C*P83310*GRI*PORT;RUE DES SUISSES - GARCHES;;Rue de la Barre Ajou;;[6.643206, 43.268741];;FRFR1EYEHC2;WRLX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.40277;46.66589;;;; +;;;;;;;;FRRMAP64A523703D8A3B5A632CBF19;FR*55C*P83310*GRI*RN7;PLACE DU PETIT PONT - VEDENE;;RD840 Les Mares Le Chesne;;[6.585656, 43.284265];;FRFR1ENZNN1;XYXU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.429953;46.650558;;;; +;;;;;;;;FRRMAP64807C519C07BE00DED6EA17;FR*55C*P83240*CAV*CANISSONS;AVENUE DE L'EGUILLE - VEDENE;;Place de la mairie Beaumesnil;;[6.592279, 43.283508];;FRFR1ECBDN1;JMPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.431739;46.66913;;;; +;;;;;;;;FRRMAP64807C069C07BE00DED6EA12;FR*55C*P83990*STR*LICES;PARKING CANADELIA - RAYOL;;Eglise Saint Germain la Campagne;;[6.659943, 43.220607];;FRFR1ELCWU1;VKKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.42502;46.682899;;;; +;;;;;;;;FRRMAP6460E2EB8A20F02768A741D4;FR*55C*P84160*LOU*D943;RUE DU GENERAL EXELMANS - VELIZY;;Place Dufay Pacy sur Eure;;[6.58432, 43.28033];;FRFR1EXAMJ1;FARP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.538061;46.66093;;;; +;;;;;;;;FRRMAP64807C309C07BE00DED6EA14;FR*55C*P83640*SZA*PARKING;AVENUE DE GAULLE - LE PLESSIS-ROBINSON;;Parking de Derly Rue du Relais Thilliers en Vexin/Authevernes;;[0.431965, 44.97493];;FRFR1EQWKQ1;EYVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.554104;46.669237;;;; +;;;;;;;;FRRMAP6486B0E79C07BE00DED73672;FR*55C*P83350*RAM*CLUB55;LE PHARE - ILE DE RE;;Pharmaparc Place Edouard Labelle Le Vaudreuil;;[6.465199, 43.207435];;FRFR1ERGKX1;FFEK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.612158;46.669009;;;; +;;;;;;;;FRALIBE328386;FR*55C*P94340*JVL*PLACE;PARKING PAUL GAUTHIER - CAVAILLON;;ZAC Parking co voiturage Le Thuit Anger;;[2.283107, 48.783485];;FRFR1EKTVZ1;BHBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.346506;46.6642;;;; +;;;;;;;;FRALIB328386;FR*55C*P93700*DRY*BERTHELOT;CHEMIN DES CANISSONS CAVALAIRE SUR MER;;Route de Rouen Boisemont;;[4.90471, 43.942662];;FRFR1EYLHA1;AVPD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.493794;49.286358;;;; +;;;;;;;;FRZPEE175271;FR*55C*P84000*AVG*ITALIENS;RUE BLANCHI SOSPEL;;Parking Superette Le Thuit Signol;;[2.287036, 48.790756];;FRFR1EYLHA2;TREN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.18917;48.844807;;;; +;;;;;;;;FRZPEE175270;FR*55C*P84450*JQT*FELIBRIGE;PLAGE DES SALINS - SAINT-TROPEZ;;Parking covoiturage Saint Aubin sur Gaillon;;[2.292852, 48.789219];;FRFR1EYEHC1;RTHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.2259;49.177962;;;; +;;;;;;;;FRBHMECASAB1;FR*55C*P84000*AVG*OULLE;PLACE LOUVOIS - VELIZY;;Parking de covoiturage Bourneville;;[6.636581, 43.272524];;FRFR1EGCFU2;SMAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.35641;49.183704;;;; +;;;;;;;;FRBHMECASA1;FR*55C*P78140*VLZ*DAUTIER;LE MAIL - VELIZY;;Parking de la Mairie Bourg Achard;;[6.657337, 43.250875];;FRFR1EBMYZ1;ZGZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.61735;49.077198;;;; +;;;;;;;;FRBHMESAINTQUENTIN1941;FR*55C*P78140*VLZ*DEWOITINE;MOZART - VELIZY;;Rue Jean Moulin Hondouville;;[4.92151, 44.005089];;FRFR1EBMYZ2;AFCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.55905;43.5408;;;; +;;;;;;;;FRBHMESAINTQUENTIN181;FR*55C*P78140*VLZ*DASSAULT;PARKING PORT GRIMAUD;;Centre Bourg Saint Pierre de Vauvray;;[-1.022143, 46.877453];;FRFR1EGCFU1;RXVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.658565;43.533;;;; +;;;;;;;;FRBHMESAINTQUENTIN161;FR*55C*P92380*GAR*GAULLE;BP ST LEGER OUEST;;Place des Quatre Saisons Val de Reuil;;[-2.235, 46.96945];;FRFR1EGSAH2;RXVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53181;43.7845;;;; +;;;;;;;;FRBHMESAINTQUENTIN151;FR*55C*P78000*VER*MAIRIE;BP AIRE DE LA LOZERE - ALBARET-SAINTE-MARIE;;Centre Le Bec Hellouin;;[-1.83061, 46.89101];;FRFR1EWFEE2;NFTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.74656;43.5075;;;; +;;;;;;;;FRBHMESAINTQUENTIN141;FR*55C*P30133*LAS*ELEPHANT;ARISTIDE BRIAND - LE PLESSIS-ROBINSON;;Place de la Mairie Bourtheroulde;;[-0.80859, 46.462];;FRFR1EVRQJ2;FGFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.35633;43.5178;;;; +;;;;;;;;FRBHMESAINTQUENTIN111;FR*55C*P30133*LAS*GAULLE;CHAUSSEE DE L'ETANG - LE PLESSIS-ROBINSON;;Centre Le Bosc Roger en Roumois;;[-1.00948, 46.871399];;FRFR1EGASS2;HDAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.64527;42.9708;;;; +;;;;;;;;FRBHMESAINTQUENTIN101;FR*55C*P30133*LAS*PRIADES;RABOURDIN - VELIZY;;Rue Jean Bouin Evreux;;[-0.80692, 46.46651];;FRFR1ERGKX2;KLMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.08348;43.3139;;;; +;;;;;;;;FRBHMESAINTQUENTIN91;FR*55C*P92130*ISS*GALLIENI;PARKING SAINT-CHAMAND - AVIGNON;;Parking Mairie St Sébastien;;[-0.80221, 46.462318];;FRFR1EQWKQ2;KPCT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.38989;43.0484;;;; +;;;;;;;;FRBHMESAINTQUENTIN81;FR*55C*P92130*ISS*ILES;PLATEAU - VENTABREN;;Parking Com Com Quilleboeuf;;[-0.80378, 46.468151];;FRFR1EQTFD2;KNJP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53437;43.424;;;; +;;;;;;;;FRBHMESAINTQUENTIN71;FR*55C*P92380*GAR*PLGARE;MONTFAVET PAROISSIENS;;Place de la mairie Routot;;[-1.31272, 46.714];;FRFR1EHGQJ1;KNJP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.32192;42.9147;;;; +;;;;;;;;FRBHMESAINTQUENTIN51;FR*55C*P92350*LPR*PKHALLE;DOMAINE TORPEZ - RAMATUELLE;;PLACE FERRY;;[-1.23013, 46.774151];;FRFR1EUVHD1;EKLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.65462;43.7146;;;; +;;;;;;;;FRBHMESAINTQUENTIN31;FR*55C*P92380*GAR*GRANDERUE;LE VILLAGE - VELLERON;;AVENUE DE BOURGOGNE;;[-1.22665, 46.77294];;FRFR1EGSAH1;EKLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53124;43.8399;;;; +;;;;;;;;FRBHMESAINTQUENTIN21;FR*55C*P92350*LPR*HERR10T;SAINT-RAMBERT-D'ALBON;;RUE DE NORVÈGE;;[-1.38599, 46.73901];;FRFR1EGASS1;ETSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.38962;43.5306;;;; +;;;;;;;;FRBHMESAINTQUENTIN171;FR*55C*P13100*SMJ*MA1R1E;RENAULT DEALER - BAIN DE BRETAGNE;;RUE GUSTAVE LEMAIRE;;[-1.76012, 46.69736];;FRFR1EHSXX1;KGSS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.16776;43.5146;;;; +;;;;;;;;FRZPEE174559;FR*55C*P92380*GAR*4VENTS;AVENUE DE LA DIVISION LECLERC - FONTENAY-AUX-ROSES;;RUE DES TRÉZELOTS;;[-1.15782, 46.45393];;FRFR1EVRQJ1;KHKC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.587374;43.5613;;;; +;;;;;;;;FRZPEE153280;FR*55C*P84160*PUY*GRANG1ER;CHAUONT SUR THARONNE;;RUE MAZAGRAN;;[-1.01449, 46.871368];;FRFR1EQGXZ1;KHKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.39608;43.6786;;;; +;;;;;;;;FRZPEE153279;FR*55C*P84000*AVG*BARTHELASSE;BP - BRUMATH - 67170;;RUE CLEMENCEAU;;[-1.22376, 46.53632];;FRFR1EADJN1;KHNJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.2355;43.4141;;;; +;;;;;;;;FRZPEE174558;FR*55C*P92350*LPR*BLUM;CAPITAINE TARRON - VELIZY-VILLACOUBLAY;;ROUTE NATIONNALE;;[-1.65902, 46.6177];;FRFR1EWJGD1;KKMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.27251;43.302;;;; +;;;;;;;;FRRMAP64763927EF82E9F9494A5E0E;FR*55C*P83350*RAM*SELLETTES;AVENUE JEAN JAURES - CLAMART;;RUE DU 22 AOUT 1914;;[-1.7591, 46.481231];;FRFR1EEBRV1;KGSS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.29456;43.0393;;;; +;;;;;;;;FRG10S45092A1;FR*55C*P92380*GAR*DEBAT;RENAULT DEALER - FOUGERES;;RUE PIERRE MENDÈS FRANCE;;[-0.95255, 46.99136];;FRFR1EFDNS1;KHNJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.11114;43.4528;;;; +;;;;;;;;FRG10S45249A1;FR*55C*P33110*BCT*LAF0NT;VICTOR HUGO - CLAMART;;ROUTE DE BRIEY;;[-0.94492, 46.995129];;FRFR1EMZME2;KGNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6839;43.5993;;;; +;;;;;;;;FRG10S45004A1;FR*55C*P92380*GAR*SURESNES;ECOLE - VENTABREN;;PLACE PIERRE SEMARD;;[-1.45214, 46.90633];;FRFR1EANDH1;KGFC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.86942;43.5777;;;; +;;;;;;;;FRG10S45312A1;FR*55C*P92380*GAR*DEV0S;POMPIDOU - CLAMART;;PLACE DES CARMES;;[-1.31215, 46.974091];;FRFR1EAWJE1;KKMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.49132;3.7682;;;; +;;;;;;;;FRG10S45102A1;FR*55C*P92380*GAR*PASTEUR;PRAIRIE DE LA MER GRIMAUD;;PLACE RICHEZ CLOSE;;[-1.16827, 46.454491];;FRFR1EAWJE2;KGFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.56636;43.3222;;;; +;;;;;;;;FRG10S45004B1;FR*55C*P92380*GAR*C1MET1ERE;PRAIRIE DE LA MER ENTREE GRIMAUD;;PLACE DU GUÉ;;[-1.49111, 46.425529];;FRFR1EKTVZ2;KGNY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.62402;43.3901;;;; +;;;;;;;;FRG10S45338A1;FR*55C*P92380*GAR*JAUNE;BP - AIRE DE L'ABIS - SAINT-JEOIRE-PRIEURE - 73190;;RUE DU COLONEL CLARENTHAL;;[-1.57682, 46.41642];;FRFR1EXAMJ2;BTGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.591993;43.1077;;;; +;;;;;;;;FRG10S45185A1;FR*55C*P92380*GAR*SU1SSES;BP - AIRE DE L'ABIS SAINT-JEOIRE-PRIEURE - 73190;;AVENUE DE LATTRE DE TASSIGNY;;[-2.35018, 46.727699];;FRFR1ELCWU2;BTGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.78432;43.5318;;;; +;;;;;;;;FRG10S45345A1;FR*55C*P84270*VDN*P0NT;19 RUE DE LA RESISTANCE - SAINT TROPEZ;;PLACE DU REMPART;;[-2.34753, 46.724319];;FRFR1ECBDN2;FCFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.47748;43.5063;;;; +;;;;;;;;FRG10S45104A1;FR*55C*P84270*VDN*EGU1LLES;CAMPING DES MURES PRESTIGE - GRIMAUD;;JACQUES LHUILLIER;;[-1.01728, 46.861481];;FRFR1ENZNN2;FCFK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.49984;43.0342;;;; +;;;;;;;;FRG10S45061A1;FR*55C*P83820*RCM*CANADEL1A;CAMPING DES MURES PLAGE - GRIMAUD;;16 RUE PIERRE EUGÈNE MARIN;;[-1.99678, 46.97329];;FRFR1ERLAD2;FJMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.882365;42.7894;;;; +;;;;;;;;FRG10S45247A1;FR*55C*P78140*VLZ*EXELMANS;NIKKI BEACH - RAMATUELLE;;PLACE DES VOSGES;;[-1.73754, 46.504768];;FRFR1EHSXX2;FSJB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.38218;43.3666;;;; +;;;;;;;;FR3R3P89363752;FR*55C*P92350*LPR*GAULLE;PRAIRIE DE LA MER PARKING CLIENTS - GRIMAUD;;PLACE CARRIÈRE;;[-1.351041, 46.957664];;FRFR1EHGQJ2;ETSV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.8006;43.3508;;;; +;;;;;;;;FR3R3P89258302;FR*55C*P17880*PER*PHARE;BP - AIRE DE MEILLAC - 33240;;RUE MAURICE BARRES;;[-0.59512, 46.36944];;FRFR1EHTJA2;XWWC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.667604;43.2166;;;; +;;;;;;;;FR3R3P89363751;FR*55C*P84300*CVL*GAUTH1ER;RUE DU FOUR - LA MOLE;;D521;;[-2.040817, 46.914974];;FRFR1EFDNS2;XWWC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.02102;43.3521;;;; +;;;;;;;;FR3R3P89363753;FR*55C*P83990*STR*SALINS;AVENUE PAUL LANGEVIN - FONTENAY-AUX-ROSES;;RUE SAINT LÉON;;[-0.91576, 46.657139];;FRFR1ECDDA1;KXKP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.60842;43.0147;;;; +;;;;;;;;FR3R3P89363750;FR*55C*P78140*VLZ*L0UV01S;PLACE EMMANUEL VITRIA - MORIERE;;BOULEVARD JOFFRE;;[-2.11937, 46.88493];;FRFR1EAVWM2;JPYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.52673;42.9738;;;; +;;;;;;;;FR3R3P89333939;FR*55C*P78140*VLZ*MA1L;RUE JEAN JAURES - FONTENAY-AUX-ROSES;;PLACE LÉNINE;;[-2.119488, 46.88022];;FRFR1EGLHD2;KEMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.22489;43.7379;;;; +;;;;;;;;FR3R3P89258268;FR*55C*P78140*VLZ*MOZART;AVENUE LOMBART - FONTENAY-AUX-ROSES;;RUE ANDRÉ SCHOCK;;[-2.176674, 46.941901];;FRFR1EXAFM2;HEBH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.75551;43.8004;;;; +;;;;;;;;FR3R3P89283515;FR*55C*PBP*17800*LEGER0UEST;CAPITAINERIE - SAINT TROPEZ;;PROMENADE ÉMILIE DU CHÂTELET;;[-1.4523, 46.596981];;FRFR1EANGU2;HQUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.25396;43.1917;;;; +;;;;;;;;FR3R3P89283510;FR*55C*PBP*48200*L0ZERE;6 AVENUE DE PARIS -VERSAILLES;;RUE MÉRE THÉRESA;;[-1.390747, 46.40573];;FRFR1EYRTA2;KQRX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.63377;43.2959;;;; +;;;;;;;;FR3R3P89251522;FR*55C*P92350*LPR*BR1AND;300 Route de Tahiti 83350 - Ramatuelle;;D952;;[-1.60784, 46.74025];;FRFR1EAXKH2;KQRV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.05059;43.5312;;;; +;;;;;;;;FR3R3P89363744;FR*55C*P92350*LPR*ETANG;GARE - ENTRAIGUES SUR LA SORGUE;;SQUARE DES TILLEULS;;[-1.61386, 46.74352];;FRFR1EZZQZ2;KQRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.63193;43.3436;;;; +;;;;;;;;FR3R3P89333935;FR*55C*P78140*VLZ*RAB0URD1N;OuestCharge - Quick Charger Evtronic - Les Herbiers - Europe;;RUE SAINT GUÉRIN;;[-1.45963, 46.72031];;FRFR1EXDRA1;KQRX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.19896;43.2839;;;; +;;;;;;;;FR3R3P89283501;FR*55C*P84000*AVG*CHAMAND;OuestCharge - E-Twin - La Gueriniere - Pinsonnieres;;RUE MORTAGNE CCAL LA CASCADE;;[-1.17294, 46.63612];;FRFR1EPQAC2;JPYT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.97132;43.7286;;;; +;;;;;;;;FR3R3P89333944;FR*55C*P13122*VTB*PLATEAU;OuestCharge - Diva Sp - La Garnache - Mairie;;RUE JACQUES VILLERMAUX;;[-1.864479, 46.861111];;FRFR1EZHQD2;KXKP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.648923;43.7791;;;; +;;;;;;;;FR3R3P89258309;FR*55C*P84140*AVG*PAR01SS1ENS;OuestCharge - Diva Sp - Fontenay-Le-Comte - Guerin;;AVENUE PINCHARD;;[-0.74243, 46.647221];;FRFR1EMMEJ2;SCEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.40547;43.7052;;;; +;;;;;;;;FR3R3P89283499;FR*55C*P83350*RAM*T0RPEZ;OuestCharge - E-Twin - Les Herbiers - Droits de l'Homme;;8, ROUTE DE ART-SUR-MEURTHE;;[-0.746495, 46.646595];;FRFR1EDNPX2;MXAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.18005;43.1764;;;; +;;;;;;;;FR3R3P89258297;FR*55C*P84740*VLR*V1LLAGE;OuestCharge - E-Twin - Fontenay-Le-Comte - Thivercay;;AVENUE LEONARD DE VINCI;;[-1.05423, 46.689838];;FRFR1EQBSX2;MXAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.21608;43.2898;;;; +;;;;;;;;FR3R3P89283514;FR*55C*PBP*26140*RAMBERT;OuestCharge - Quick Charger - Fontenay-Le-Comte - Chail;;RUE DES TREZELOTS;;[-1.05157, 46.686314];;FRFR1EPXTK2;XXJY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.31795;43.7795;;;; +;;;;;;;;FR3R3P89283516;FR*55C*PRNO*35470*BA1N;OuestCharge - E-Twin - Fontenay-Le-Comte - Rouchefoucault;;26 GRANDE RUE;;[-1.879576, 46.84815];;FRFR1ETQRG2;XXJY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.17848;43.7425;;;; +;;;;;;;;FR3R3P89283504;FR*55C*P92320*FAR*LECLERC;OuestCharge - Diva Sp - La Ferriere - Marche;;57 GRANDE RUE;;[-1.88028, 46.84565];;FRFR1ESMUW2;XYHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.728788;43.4666;;;; +;;;;;;;;FR3R3P89363711;FR*55C*PBP*41600*CHAUM0NT;OuestCharge - Diva Sp - Les Essarts - Mairie;;3 RUE DE FLACOURT;;[-1.871946, 46.848647];;FRFR1EDKPW2;XYHW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.13566;43.3307;;;; +;;;;;;;;FR3R3P89363747;FR*55C*PBP*67170*BRUMATH;OuestCharge - E-Twin - Les Essarts - Eglise;;28 GRANDE RUE;;[-1.29272, 46.672119];;FRFR1EJPJF2;HAFD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.61002;43.1101;;;; +;;;;;;;;FR3R3P89363743;FR*55C*P78140*VLZ*TARRON;OuestCharge - Diva Sp - Dompierre-Sur-Yon - Margerie;;8 RUE PRINCIPALE;;[-1.02199, 46.39301];;FRFR1EMKWQ2;SCEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.14543;43.2799;;;; +;;;;;;;;FR3R3P89363725;FR*55C*P92140*CLM*JAURES;OuestCharge - Diva Sp - Coex - Brechoteau;;RUE DES HALLES;;[-1.8556, 46.626759];;FRFR1EVEZD2;HAFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.03756;43.5423;;;; +;;;;;;;;FR3R3P89363730;FR*55C*PRNO*35300*F0UGERES;OuestCharge - Diva Sp - Luçon - Abattoirs;;3 GRANDE RUE;;[-1.29718, 46.947361];;FRFR1EJPJF1;WTNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.52423;43.5284;;;; +;;;;;;;;FR3R3P89363739;FR*55C*P92140*CLM*HUG0;OuestCharge - Diva Sp - Les Herbiers - Foire;;3 PLACE CHARLES DE GAULLE;;[-1.10895, 46.4669];;FRFR1EVEZD1;GKUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.36462;43.3429;;;; +;;;;;;;;FR3R3P89363737;FR*55C*P13122*VTB*EC0LE;OuestCharge - Diva Sp - Mareuil-sur-Lay-Dissais - Halles;;10 GRANDE RUE;;[-1.17687, 46.85087];;FRFR1EMKWQ1;RBFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.1961;43.6649;;;; +;;;;;;;;FR3R3P89363741;FR*55C*P92140*CLM*P0MP1D0U;OuestCharge - Diva Sp - La Mothe-Achard - Hotel;;4 RUE DE LA MAIRIE;;[-1.17026, 46.85125];;FRFR1EZZQZ1;KLNW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.11693;43.5001;;;; +;;;;;;;;FR3R3P89363736;FR*55C*P83310*GRI*PRAIRIE;OuestCharge - E-Twin - Chateau-d'Olonne - Tanchet;;4 RUE DE GRIFFONGE;;[-1.13728, 46.811699];;FRFR1EYUMW2;NMEM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.47782;43.257;;;; +;;;;;;;;FR3R3P89363745;FR*55C*P83310*GRI*PRAIRIEGRI;OuestCharge - Diva Sp - Mortagne-sur-Sevre - Roseraie;;47 RUE DU GÉNÉRAL LECLERC;;[-1.41197, 46.93412];;FRFR1EANDH2;SFLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.14609;43.4119;;;; +;;;;;;;;FR3R3P89333942;FR*55C*PBP*73190*AB1S;OuestCharge - Diva Sp - Mortagne-sur-Sevre - Gare;;12 RUE DALSACE;;[-1.7537332, 46.5169739];;FRFR1EAVWM1;CKBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.7886;43.5484;;;; +;;;;;;;;FR3R3P89363738;FR*55C*P83990*STR*F0CH;OuestCharge - Diva Sp - Mormaison - Issoire;;AIRE DE COVOITURAGE - PLACE DE LA GARE;;[-1.772598, 46.494529];;FRFR1EGLHD1;PHYT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.50365;43.4918;;;; +;;;;;;;;FR3R3P89363714;FR*55C*P83310*GRI*MURESPRE;OuestCharge - Diva Sp - Montaigu - Jarley;;4 PLACE DU 18 SEPTEMBRE1944;;[-1.78187, 46.497181];;FRFR1EXAFM1;PHYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.71702;42.9847;;;; +;;;;;;;;FR3R3P89363742;FR*55C*P83310*GRI*MURESPLA;OuestCharge - E-Twin - Luçon - Leclerc;;PARKING DE LA GARE DE BAYON-VIRECOURT;;[-1.79613, 46.50195];;FRFR1EANGU1;DETQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.4444;43.8649;;;; +;;;;;;;;FR3R3P89363715;FR*55C*P83350*RAM*N1KK1;OuestCharge - E-Twin - Longeville-sur-Mer - Clemenceau;;RUE DES 4 ÉLÉMENTS;;[-1.79573, 46.494049];;FRFR1EYRTA1;DETQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.66252;43.3975;;;; +;;;;;;;;FR3R3P89363710;FR*55C*P83310*GRI*PRAIRIEVIS;OuestCharge - Diva Sp - Jard-sur-Mer - Langibaudiere;;RLE MATHIEU DE DOMBASLE;;[-1.92586, 46.697781];;FRFR1EAXKH1;DEKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.4464;43.5259;;;; +;;;;;;;;FR3R3P89363721;FR*55C*PBP*33240*ME1LLAC;OuestCharge - Diva Sp - L'Ile-d'Yeu - Heliport;;RUE RAOUL CEZARD;;[-1.78418, 46.49939];;FRFR1EPQAC1;DKPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.70622;43.6578;;;; +;;;;;;;;FR3R3P89363718;FR*55C*P83310*M0L*MA1R1E;OuestCharge - Diva Sp - L'Ile-d'Yeu - Mairie;;RUE JEAN SCHUMACHER;;[-1.06227, 46.555099];;FRFR1EKZHC1;TVEJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.58466;43.4331;;;; +;;;;;;;;FR3R3P89363723;FR*55C*P92260*FAR*LANGEV1N;OuestCharge - Diva Sp - Les Herbiers - Coubertin;;RUE DE FROUARD;;[-1.4251, 46.492908];;FRFR1EKDJQ1;TVEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.95573;43.0962;;;; +;;;;;;;;FR3R3P89616641;FR*55C*P84310*MOR*VITRIA;OuestCharge - E-Twin - Bouin - Pelote;;AIRE DE COVOITURAGE - D40;;[-1.321756, 46.330966];;FRFR1EZHQD1;MPAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.67391;43.0291;;;; +;;;;;;;;FR3R3P89629589;FR*55C*P92260*FAR*JAURES;OuestCharge - Diva Sp - Chateau-d'Olonne - Millet;;AIRE DE COVOITURAGE - D974;;[-1.51163, 46.684349];;FRFR1EMMEJ1;ZXAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.31135;43.0164;;;; +;;;;;;;;FR3R3P89363732;FR*55C*P92260*FAR*L0MBART;OuestCharge - 50 Compact - Bouffere - Flechet;;AIRE DE COVOITURAGE - D960;;[-1.43012, 46.34767];;FRFR1EDKPW1;MPAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.83871;43.5116;;;; +;;;;;;;;FR3R3P89363728;FR*55C*P83990*STR*CAP;OuestCharge - Diva Sp - Benet - Foire;;AIRE DE COVOITURAGE - D910;;[-1.61797, 46.46485];;FRFR1EHTJA1;ZXAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.74389;43.4989;;;; +;;;;;;;;FR515600001;FR*55C*P83350*RAM*GARB1NE;OuestCharge - Diva Sp - Beauvoir-Sur-Mer - Gallet;;1 RUE DHINZELIN;;[-1.342638, 46.573218];;FRFR1EQBSX1;ZTBC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.29722;43.3809;;;; +;;;;;;;;FRALLPCAS010;FR*55C*P84320*ENT*GARE;OuestCharge - Diva Sp - Bazoges-En-Pareds - Clemenceau;;10BIS RUE DE LABBÉ SCHLIENGER;;[-1.83562, 46.6063];;FRFR1EPXTK1;DSVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.37474;43.0935;;;; +;;;;;;;;FRALLPCAS012;BCNP9TW96E;OuestCharge - Diva Sp - La Barre-De-Monts - Querruy;;2 PLACE DE LA RIVIÈRE;;[-2.06061, 46.79002];;FRFR1EDNPX1;ZTBC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.0118;43.723;;;; +;;;;;;;;FRALLPCAS013;YEVQXYXMMI;OuestCharge - Quick Charger Evtronic - La Barre-de-Monts - Saint-Jean-de-Monts;;11 ROUTE DES VOSGES / PARKING MAIRIE;;[-2.06249, 46.79406];;FRFR1ETAAL1;DSVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.24848;43.2247;;;; +;;;;;;;;FRALLPCAS006;EYSLWKWYZR;OuestCharge - Diva Sp - Barbatre - Raguideau;;2 RUE DE LEGLISE;;[-1.94701, 46.720921];;FRFR1EKDJQ2;QATG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.22182;43.2001;;;; +;;;;;;;;FRALLPCAS011;Fontenilles;OuestCharge - Diva Sp - Aubigny - Pasteur;;6 RUE DE LEGLISE;;[-1.96324, 46.711208];;FRFR1EJXTA1;QATG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.22946;43.3581;;;; +;;;;;;;;FRALLPCAS014;UXRGDF;OuestCharge - Quick Charger Evtronic - Angles - Moricq;;23TER GRANDE RUE;;[-1.9781, 46.712811];;FRFR1EKANG2;NLKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.06589;43.4301;;;; +;;;;;;;;FRALLPTIS016;VVKNSB;OuestCharge - E-Twin - Aizenay - Mutualite;;2 RUE DE LA FONTAINE;;[-1.33125, 47.00351];;FRFR1EKANG1;QQLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.29477;43.6919;;;; +;;;;;;;;FRALLPTIS017;CHTQTA;OuestCharge - Diva Sp - Aizenay - Villeneuve;;PLACE DE LA FONTAINE;;[-0.83792, 46.781986];;FRFR1EJEUM1;QQLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.26232;43.2811;;;; +;;;;;;;;FRALLPTIS015;WQFNLH;OuestCharge - Diva Sp - Mouilleron-le-Captif - Oiseaux;;PLACE CHEVENDRIER;;[-0.8416, 46.778221];;FRFR1ECTAN2;FNYD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.11904;43.398;;;; +;;;;;;;;FRALLPCAS009;KYHUKN;OuestCharge - Diva Sp - Bournezeau - Papillons;;PLACE DE LORRAINE;;[-1.50769, 46.767872];;FRFR1ECUND1;NLGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.30224;43.3967;;;; +;;;;;;;;FRALLPCAS002;UBBRPV;OuestCharge - Quick Charger - Challans - Nantes;;29 RD 400 / SALLE POLYVALENTE;;[-1.50551, 46.766079];;FRFR1ECUND2;NLCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.59226;43.2552;;;; +;;;;;;;;FRALLPCAS003;GSXHEQ;OuestCharge - Diva Sp - La Chataigneraie - Republique;;39BIS RUE DE LA DIVISION LECLERC;;[-1.98991, 46.819931];;FRFR1ECTAN1;FQEK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.62286;43.5628;;;; +;;;;;;;;FRALLPCAS005;BSZNXE;OuestCharge - Quick Charger Evtronic - La Chataigneraie - Terriers;;22 GRANDE RUE;;[-1.7726, 46.541851];;FRFR1ELNJD1;NMLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.38719;43.717;;;; +;;;;;;;;FRALLPCAS004;CFCFDE;OuestCharge - Diva Sp - Chantonnay - Gare;;6 PLACE DU CAPITAINE GAUDET;;[-1.778495, 46.514553];;FRFR1ECJGJ1;NLCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.39033;43.3577;;;; +;;;;;;;;FRALLPCAS007;NRYGLD;OuestCharge - Diva Sp - Chantonnay - Jeanne d'Arc;;10 RUE DU PAVILLON;;[-1.77327, 46.53415];;FRFR1EJGVA1;NMEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.17716;43.4798;;;; +;;;;;;;;FRALLPCAS008;UKUUQS;OuestCharge - TMC - Challans - Traversiere;;10 RUE DE LEGLISE;;[-1.77019, 46.506409];;FRFR1EJMRR1;NLKR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.46728;43.5069;;;; +;;;;;;;;FRALLPCAS001;Labegeautan;OuestCharge - E-Twin - Challans - Europe;;1 RUE DE LA MAIRIE;;[-2.131729, 46.831223];;FRFR1EMYTK1;NLKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.27554;43.3211;;;; +;;;;;;;;FRALLPASF021;WCKYQX;OuestCharge - Diva Sp - Challans - Foirail;;46 RUE ERNEST BICHAT;;[-2.24947, 47.000671];;FRFR1EMYTK2;NMLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.57109;43.7054;;;; +;;;;;;;;FRALLPASF022;HKTRMU;OuestCharge - Diva Sp - La Chaize-Le-Vicomte - Marche;;92BIS RUE DE LA LIBÉRATION;;[-1.40227, 46.5927];;FRFR1EMYUS2;MULB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53011;43.0849;;;; +;;;;;;;;FRALLPASF020;HKTWHF;OuestCharge - Diva Sp - Chaille-Les-Marais - 8 Mai;;1 RUE DE LA FOURASSE;;[-1.428843, 46.702999];;FRFR1EMYUS1;FNYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.23037;43.7671;;;; +;;;;;;;;FRALLPASF023;EJLYVF;OuestCharge - Diva Sp - Bretignolles-sur-Mer - Halles;;11 RUE DE MONTIGNY;;[-1.4291, 46.6909];;FRFR1EMYQD1;MULB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.48099;43.2099;;;; +;;;;;;;;FRALLPTIS018;SFQDKY;OuestCharge - Diva Sp - Saint-Georges-de-Montaigu - Dronneau;;36 RUE DES GÉNÉRAUX MANGIN;;[-1.4282, 46.671021];;FRFR1EMYQD2;FQEK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.959449;43.7151;;;; +;;;;;;;;FRALLPBER019;BDSPXY;OuestCharge - 50 Compact - Sainte-Gemme-La-Plaine - Chemins;;7 RUE DE LA RÉPUBLIQUE;;[-1.40609, 46.670441];;FRFR1EKDHQ2;MTAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.94775;43.552794;;;; +;;;;;;;;FRISEEINOUIDALLOUIS;VDUUDE;OuestCharge - Diva Sp - Saint-Fulgent - Mairie;;14 ZI des Piboules 84300 Cavaillon;;[-1.50997, 46.940701];;FRFR1EBJPT2;LPEU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.274148;43.550339;;;; +;;;;;;;;FRALLPBER025;HWUTQJ;OuestCharge - Diva Sp - Saint-Fulgent - Verne;;93 Avenue des Banquets 84300 Cavaillon;;[-1.45374, 46.66589];;FRFR1EKDHQ1;MTAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.245204;49.167886;;;; +;;;;;;;;FRALLPTIS024;PSBNGZ;OuestCharge - 50 Compact - Sainte-Florence - Oie;;25 rue du Pont 62128 CROISILLES;;[-1.4383, 46.650558];;FRFR1EBJPT1;NLGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.103061;43.334659;;;; +;;;;;;;;FRAU10032;QRKBCC;OuestCharge - Diva Sp - Saint-Andre-Treize-Voies - Mairie;;55 rue Uranus 74650 CHAVANOD;;[-1.44083, 46.66913];;FRFR1EPUQW1;LPEU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.623271;48.908862;;;; +;;;;;;;;FRS68E93317;NPGJDV;OuestCharge - Ultra 150 - Les Sables-d'Olonne - Nationale 160;;30bis rue du général leclerc 59960 NEUVILLE EN FERRAIN;;[-1.43236, 46.682899];;FRFR1EBUNS1;CKBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.225917;45.276249;;;; +;;;;;;;;FREMIPLECLERCMILLAU;AMFDJR;OuestCharge - E-Twin - Les Sables-D'Olonne - Audubon;;rue d'Esquerchin 62490 QUIERY-LA-MOTTE;;[-1.40277, 46.66093];;FRFR1ENGVJ2;NLKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.045602;45.850722;;;; +;;;;;;;;FRLUMEVITISAT11;JGVGCS;OuestCharge - Diva Sp - Les Sables-d'Olonne - Dupont;;9 RUE DU BEAL, 38400, ST MARTIN D'HERES, FRANCE;;[-1.429953, 46.669237];;FRFR1EJXLL1;TPFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.631368;47.27199;;;; +;;;;;;;;FRCPIE66386351;TXSCTU;OuestCharge - E-Twin - Les Sables-d'Olonne - Prouteau;;1176 route d'argent;;[-1.431739, 46.669009];;FRFR1ETDXF1;FQMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.721676;47.166119;;;; +;;;;;;;;FRCPIE66430152;GLTPXT;OuestCharge - Diva Sp - Les Sables-d'Olonne - Boucaniers;;3 rue de bitschhoffen (La Walck) 67350 Val-de-Moder;;[-1.42502, 46.6642];;FRFR1EXMFM1;RJYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.542194;48.264407;;;; +;;;;;;;;FRCPIE66546854;FVTRXZ;OuestCharge - Diva Sp - Saint-Gilles-Croix-de-Vie - Cour Rouge;;3 rue de Bitschhoffen (La Walck) 67350 Val-de-Moder;;[-0.538061, 49.286358];;FRFR1EGDEE1;FQMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.755607;43.176909;;;; +;;;;;;;;FRCPIE66430252;PBFCNZ;OuestCharge - Diva Sp - Les Sables-d'Olonne - Nicot;;3 Rue de Bitschhoffen (La Walck) 67350 Val-de-Moder;;[-0.554104, 48.844807];;FRFR1EUMEG1;CEGK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.06931;50.167331;;;; +;;;;;;;;FRCPIE66545854;EFDJJV;OuestCharge - E-Twin - Sainte-Hermine - Hermand;;1 rue Tulla 678;;[-0.612158, 49.177962];;FRFR1EUGRZ1;WQRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.362753;50.225516;;;; +;;;;;;;;FRCPIE66544154;ATMKAN;OuestCharge - E-Twin - Moutiers-les-Mauxfaits - Clemenceau;;875 rue jules valles 50;;[-0.346506, 49.183704];;FRFR1EUETB1;EYJX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.240714;46.497639;;;; +;;;;;;;;FRCPIE66546754;GHPTEX;OuestCharge - E-Twin - La Faute-Sur-Mer - Mairie;;38 impasse galilée;;[-0.493794, 49.077198];;FRFR1EHPJC2;EPKS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.0365;47.094675;;;; +;;;;;;;;FRZKAE24DC88249;SNAMKZ;OuestCharge - E-Twin - Venansault - Culture;;184 route de Voiteur 39210 Le Vernois;;[1.18917,43.5408];;FRFR1EHPJC1;QMVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.4908417;43.592;;;; +;;;;;;;;FRZKAE22AC88250;Auribcime;OuestCharge - Diva Sp - La Tranche-sur-Mer - Breton;;1 place Amaury de la Grange 59190 Morbecque;;[1.2259,43.5330];;FRFR1EMFGU2;VUBK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.012515;46.116638;;;; +;;;;;;;;FRAREP;aspect;OuestCharge - E-Twin - Talmont-Saint-Hilaire - Payre;;1 place du Général de Gaulle 59122 Hondschoote;;[1.35641,43.7845];;FRFR1EMYEM2;FATP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.70479;49.204151;;;; +;;;;;;;;FRLUMEMIGNOT11;AQCTJP;OuestCharge - Diva Sp - Le Tablier - Parking;;4 rue de Cassel 59122 Hondschoote;;[1.61735,43.5075];;FRFR1EMFGU1;ENVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.229353;46.850652;;;; +;;;;;;;;FRLUMEAUSTERLITZ11;XNZPHC;OuestCharge - Diva Sp - Brem-sur-Mer - Prieur;;10 route d’Arnèke 59470 Ledringhem;;[1.55905,43.5178];;FRFR1EMYEM1;LURC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.7988237;44.286522;;;; +;;;;;;;;FRLUMEGERARDROBERT11;TSMEXT;OuestCharge - E-Twin - Saint-Jean-de-Monts - Chang;;26 Chemin Haut 59270 Saint-Jans-Cappel;;[0.658565, 42.9708];;FRFR1EVTMM1;KLEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.543044;50.926644;;;; +;;;;;;;;FRLUMESCIDUSOLEIL11;JSYUTY;OuestCharge - E-Twin - Saint-Jean-de-Monts - Novembre 1918;;2 rue Heerstraete 59190 Morbecque;;[1.53181,43.3139];;FRFR1EVTMM2;BXMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.134694;43.178103;;;; +;;;;;;;;FRZPEE22AC128990;UWQHJA;OuestCharge - Diva Sp - Saint-Hilaire-de-Riez - Pins;;241 place du Génaral De Gaulle 59850 Nieppe;;[0.74656,43.0484];;FRFR1EFRAS1;UGTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.277238;47.41925;;;; +;;;;;;;;FRZPEE22AC128991;VZFZTP;OuestCharge - Diva Sp - Saint-Hilaire-de-Riez - Riez;;39 chemin latéral 59173 Renescure;;[1.35633,43.424];;FRFR1EGCKU1;BZPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.987548;49.166932;;;; +;;;;;;;;FRISEEINOUIDCREQUI;QJMSEM;OuestCharge - Diva Sp - Saint-Hilaire-de-Riez - Collinet;;4 rue de West-Cappel 59122 Rexpoede;;[0.64527,42.9147];;FRFR1EFRTF1;HFDH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.186773;48.566391;;;; +;;;;;;;;FRZPEE22AC122021;TSZVVB;OuestCharge - E-Twin - Saint-Hilaire-de-Loulay - Giraudet;;80 contour de l’Eglise 59670 Hardifort;;[1.08348,43.7146];;FRFR1EXVHW2;NLHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5485168;49.247541;;;; +;;;;;;;;FRMAPP000000006943;cadours;OuestCharge - Diva Sp - Pouzauges - Tassigny;;8 rue de l’Eglise 59143 Holque;;[1.38989,43.8399];;FRFR1EXVHW1;KKQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.053255;49.089259;;;; +;;;;;;;;FRMAPP000000006998;ZJFBFZ;OuestCharge - Diva Sp - Pouzauges - Rouault;;47 rue de l’Eglise 59470 Bollezeele;;[1.53437,43.5306];;FRFR1EMCYH1;LUDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.912861;50.54921;;;; +;;;;;;;;FRQWTP86027A;XUVKYK;OuestCharge - E-Twin - Le Poire-sur-Vie - Chapelle;;21 place du Générale Vandamme 59670 Cassel;;[1.32192,43.5146];;FRFR1EEEGQ1;HLRL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.307799;44.236045;;;; +;;;;;;;;FRQWTP86027B;Boussensecol;OuestCharge - Diva Sp - Le Poire-sur-Vie - Brachetiere;;2658 route de Bourbourg 59630 Cappelle Brouck;;[1.65462,43.5613];;FRFR1EMCYH2;GBZT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.889573;49.366191;;;; +;;;;;;;;FRLUMERENAISSANCE11;GUXVRY;OuestCharge - Diva Sp - Le Perrier - Gaulle;;252 la Place 59285 Buysscheure;;[1.53124,43.6786];;FRFR1EEEGQ2;KKXU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7669235;44.024304;;;; +;;;;;;;;FRZTLE22AC60014;AJUWUG;OuestCharge - Diva Sp - Olonne-Sur-Mer - Bosquets;;11 place de l’Eglise 59630 Brouckerque;;[1.38962,43.4141];;FRFR1EGDEE2;RMWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.700191;46.134233;;;; +;;;;;;;;FRZTLE22AC60015;PWJRPS;OuestCharge - 50 Compact - Olonne-sur-Mer - Leclerc;;3 rue de la Chapelle 59189 Boeseghem;;[1.16776,43.302];;FRFR1ENGVJ1;HHWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.776985;43.999633;;;; +;;;;;;;;FRBHMP68021001;ZJVBJM;OuestCharge - E-Twin - Olonne-sur-Mer - Sables;;7 rue de la Mairie 59189 Boeseghem;;[0.587374,43.0393];;FRFR1EBBHX1;HHWW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0977824;47.475422;;;; +;;;;;;;;FRA88P0242120002;EBSQJH;OuestCharge - Diva Sp - Olonne-sur-Mer - Cedres;;Rue Pierre Dhedin 59173 Blaringhem;;[1.39608,43.4528];;FRFR1EBBHX2;HSGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.827989;48.225594;;;; +;;;;;;;;FRA54P002024212;DFNPAD;OuestCharge - Diva Sp - Notre-Dame-de-Monts - Eglise;;3 place Jean Ruyssen 59189 Steenbecque;;[1.2355,43.5993];;FRFR1EVCHA2;UDYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.156463;45.276404;;;; +;;;;;;;;FRA54P00394222;VTFJDY;OuestCharge - Diva Sp - Noirmoutier-en-l'Ile - Pree Aux Ducs;;4 rue du Collège 59270 Bailleul;;[1.27251,43.5777];;FRFR1EZSLZ1;RSVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.961812;45.547641;;;; +;;;;;;;;FRAU1E0034011;JJBMJP;OuestCharge - E-Twin - Nesmy - Eglise;;154 avenue de la Libération 59270 Bailleul;;[1.29456,3.7682];;FRFR1EZSLZ2;RSVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.508419;46.09619;;;; +;;;;;;;;FRRM1PRCCCAN01DCPKGCLIENT;UNUUZP;OuestCharge - Supercharger - La Roche-Sur-Yon - Michelin;;12 rue de la mairie 59285 Arnèke;;[1.11114,43.3222];;FRFR1EZQZE2;KBDH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.50902;49.119802;;;; +;;;;;;;;FRRM1PRCCNICE01DCPKGCLIENT;XPUVZU;OuestCharge - Quick Charger - La Roche-sur-Yon - Palissy;;32 Place de l’Eglise 59114 Saint-Sylvestre-Cappel;;[1.6839,43.3901];;FRFR1EGZWH1;KBDH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5866803;49.118201;;;; +;;;;;;;;FRRM1PRCCCAN03DCPKGCLIENTSAV;HBDQVG;OuestCharge - E-Twin - La Roche-sur-Yon - Anatole France;;1 La Place 59380 Bierne;;[0.86942,43.1077];;FRFR1EZQZE1;EPLD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.153525;46.378027;;;; +;;;;;;;;FRZTLE22AC143108;SPHLUS;OuestCharge - Diva Sp - La Roche-sur-Yon - Oudairies;;6 rue de Godewaersvelde 59114 Steenvoorde;;[1.49132,43.5318];;FRFR1ESYTX1;EMSC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.089269;45.660128;;;; +;;;;;;;;FRZTLE22AC143107;HCREGP;OuestCharge - Diva Sp - Rocheserviere - Moulin;;Place Jean Jaurès 59190 Hazebrouck;;[1.56636,43.5063];;FRFR1ESYTX2;NWKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.245628;43.21589;;;; +;;;;;;;;FRECHPNN4XSWH5DX;ZFDBZE;OuestCharge - E-Twin - La Roche-sur-Yon - Ornay;;14 rue de Nieppe 59181 Steenwerck;;[0.62402,43.0342];;FRFR1ESCKV2;AGDS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.585323;43.337933;;;; +;;;;;;;;FRECHPEKGLSXWYLC;YURPYW;OuestCharge - Quick Charger - La Roche-sur-Yon - Genet;;Rue Principale 59143 Wulverdinghe;;[0.591993,42.7894];;FRFR1ESCKV1;MWUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.865081;50.826461;;;; +;;;;;;;;FRECHPUVA1GK3BEZ;BJUMFP;OuestCharge - Diva Sp - La Roche-sur-Yon - Reaumur;;Rue de la Gare 59189 Thiennes;;[1.78432,43.3666];;FRFR1ENDTV2;BXLK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.186759;46.421048;;;; +;;;;;;;;FRECHPSQAXHVYUL0;MYVFWU;OuestCharge - E-Twin - La Roche-sur-Yon - Sully;;Rue de la Forge 59670 Oudezeele;;[1.47748,43.3508];;FRFR1ENDWQ1;HSGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.037132;44.404918;;;; +;;;;;;;;FRECHPGYS7KX8RYW;SJTZZY;OuestCharge - Diva Sp - La Roche-sur-Yon - Mutualite;;Rue Charles Capelle 59940 Neuf-Berquin;;[1.49984,43.5146];;FRFR1ENDWQ2;SVVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.894515;47.504384;;;; +;;;;;;;;FRECHPJQ63UNHXMO;UDMJKD;OuestCharge - CityCharge - La Roche-sur-Yon - Fayette;;Rue André Biebuyck 59190 Hazebrouck;;[0.882365,43.2166];;FRFR1ENDTV1;RYMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.78134;45.88437;;;; +;;;;;;;;FRECHPEH4SWQBAHY;KWFNTQ;OuestCharge - Diva Sp - La Roche-sur-Yon - Vendee;;Rue Warein 59190 Hazebrouck;;[1.38218,43.3521];;FRFR1ENDFR2;RKMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.983572;44.513898;;;; +;;;;;;;;FRECHPOH8U5KZYGR;vieilletoul;OuestCharge - E-Twin - La Roche-sur-Yon - Etats-Unis;;Rue du Milieu 59190 Hazebrouck;;[0.8006,43.0147];;FRFR1ENDFR1;RZTW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.78082;43.65096;;;; +;;;;;;;;FRECHPHTBGD246VP;WNMVMD;Creully sur Seulles, Route de Tierceville;;Rue François Dominique Depoorter 59190 Hazebrouck;;[0.667604,42.9738];;FRFR1ERSQU1;VHVP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.63404;44.515143;;;; +;;;;;;;;FRECHPSSHO5RSRMZ;BSNARD;Condé-en-Normandie, Rue Saint-Martin;;Rue Notre Dame 59190 Hazebrouck;;[1.02102,43.7379];;FRFR1ERSQU2;FACB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.91204;48.992862;;;; +;;;;;;;;FRECHPPD9O4ON1F6;SDKRWE;Tilly-sur-Seules, rue de la Varende;;Rue du Queux Saint Hilaire 59190 Hazebrouck;;[1.60842,43.8004];;FRFR1ERSZH1;EQEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.586605;43.922931;;;; +;;;;;;;;FRECHPMLWOEU75YT;XEBJZZ;Caen, Avenue Pierre Berthelot;;Rue d’Aire 59190 Hazebrouck;;[0.52673,43.1917];;FRFR1ERSZH2;TEVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.491055;44.369754;;;; +;;;;;;;;FRECHPIMSALVK01H;DBWUFY;Caen, Rue Gemare;;Rue du Pont 59190 Hazebrouck;;[1.22489,43.2959];;FRFR1ENQHP1;YGNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.641624;47.500299;;;; +;;;;;;;;FRECHPY3VAL8QRMQ;UCRLEP;Bayeux, Complexe EIDHOVEN;;Rue du Maréchal Foch 59190 Hazebrouck;;[1.75551,43.5312];;FRFR1ENSMA1;FJMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.070508;43.074958;;;; +;;;;;;;;FRECHPB4QYBOUPMM;Seyssesegl;Fontenilles, Saint-Lys;;Rue de la Plaine 59190 Hazebrouck;;[1.25396,43.3436];;FRFR1EGZWH2;LVEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.378714;45.843868;;;; +;;;;;;;;FRECHPSPNW8OHGXT;EVEHSU;Fonsorbes, Intermarché;;Rue de Godewaersvelde 59114 Eecke;;[1.63377,43.2839];;FRFR1ERRTG2;AWWF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.701054;46.296171;;;; +;;;;;;;;FRECHPIGJVLDRJPL;NXQUHM;Castelnau-d'Estrétefonds;;Grande Place 59299 Boeschepe;;[1.05059,43.7286];;FRFR1ERRTG1;YRUV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.859723;45.13792;;;; +;;;;;;;;FRECHPFQD6TNYY1N;Mervillealou;Fourquevaux;;1bis Rue De La Gare 59670 Bavinchove;;[1.63193,43.7791];;FRFR1EXVWZ1;AZYU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.287592;47.948583;;;; +;;;;;;;;FRECHPFJZP5RGIWR;Massabrac;Escalquens, Tennis;;92 Place De Gaulle 59470 Wormhout;;[1.19896,43.7052];;FRFR1EVCHA1;MUFS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9187218809509474;48.862725;;;; +;;;;;;;;FRECHPKR0Q8THZQY;HQDVPR;Frontignan-de-Comminges, Mairie;;6 rue de l’Eglise 59470 Wormhout;;[0.97132,43.1764];;FRFR1EKXWE1;MUFS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.0100812;49.875167008880716;;;; +;;;;;;;;FRECHPM676DRCSZV;JMECMY;Cintegabelle;;10 rue Saint Antoine 59143 Watten;;[0.648923,43.2898];;FRFR1EKXWE2;WXLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.15578;43.6087505;;;; +;;;;;;;;FRECHPMCGNQKQFJH;VXNBPK;Encausse les Thermes;;15 Place du Rivage 59143 Watten;;[1.40547,43.7795];;FRFR1EKYFN1;WTEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.452088;49.30327;;;; +;;;;;;;;FRECHPB8VYNNI4EK;WTLBXS;Eaunes, Mairie;;11 Rue du Pont V 76600 Le Havre;;[1.18005,43.7425];;FRFR1EKZPY1;YETV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.659175;49.101689;;;; +;;;;;;;;FRECHPUTCAFKUEJR;TWTEDH;Cierp-Gaud;;Place Mendès France;;[1.21608,43.4666];;FRFR1EKYFN2;YWGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.929488;49.293963;;;; +;;;;;;;;FRECHPAAOHVNYG1P;Lefaugafete;Caubiac, Village;;Médiathèque Avenue Clémenceau;;[1.31795,43.3307];;FRFR1EKZPY2;TKJH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.483316;48.74251;;;; +;;;;;;;;FRECHPDCQ0LAWQZE;lavernosemair;Fronton, Marcorelle;;Place Dr Emile Parrain;;[1.17848,43.5144];;FRFR1EXVLW2;TSGD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.530081;49.09347;;;; +;;;;;;;;FRECHPUWBEJENZM4;VUSGRP;Labège, Autan;;Place Serge Cléret;;[0.728788,43.1101];;FRFR1EXVLW1;NNQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.53010287;49.074712;;;; +;;;;;;;;FRECHPBNKAZ43L8B;SCPPWG;Frouzins, Mairie;;Place du Champ de Foire;;[1.13566,43.2799];;FRFR1EXVWZ2;CDNW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.530102;49.0747562;;;; +;;;;;;;;FRECHPADPWEZEQNB;FHPGXB;Lanta;;Place de Villers;;[1.61002,43.5423];;FRFR1ERERV1;MVRS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.187305;49.248609;;;; +;;;;;;;;FRECHPNIWYNHGWZQ;WUKNSS;Castelmaurou;;Place du Foirail;;[1.14543,43.5284];;FRFR1EHHRJ1;MVRS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.219454;49.230692;;;; +;;;;;;;;FRECHPHRHSOKTQFF;GTTUTH;Lagardelle-sur-Lèze, Puits;;IMPASSE DE L ANCIENNE GENDARMERIE;;[1.03756,43.3429];;FRFR1EHDQD1;HBHU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.49855;49.35987;;;; +;;;;;;;;FRECHPCBGWRNLZUG;BMJCXM;Lafitte-Vigordane, Chapelle;;Rue des fusillés - Parking champ de Foire;;[1.52423,43.6649];;FRFR1EHJQG1;HBHU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.356333;48.824326;;;; +;;;;;;;;FRECHPAHACHJV7QW;YKUDXS;Labroquère, Rue Armand Ribet;;11 Avenue Pierre Mendes France;;[1.36462,43.5001];;FRFR1EHPDQ1;FQEH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.71108;49.243902;;;; +;;;;;;;;FRECHPLRLCQP4NJM;SSDAJP;Labarthe-sur-Lèze, Place François Fournil;;Place Bonnyaud;;[1.1961,43.257];;FRFR1EHKTQ1;FQEH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.584992;48.835912;;;; +;;;;;;;;FRECHPX1GL3ADTTI;TDZVPU;Léguevin, rue de la Bastide;;Parking entrée bourg Crozant;;[1.11693,43.4119];;FRFR1EHJJR1;EBEK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.913432;49.092874;;;; +;;;;;;;;FRECHPKPFDX4FTAA;EFRPWM;La Salvetat-Saint-Gilles, F. Mitterrand;;Espace André Lejeune;;[1.47782,43.5484];;FRFR1EHLHL1;EBEK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.485049;49.062843;;;; +;;;;;;;;FRECHPQM8YJBAKS4;CLHEGY;Grenade;;Plan d'Eau Courtille;;[1.14609,43.4918];;FRFR1ECAJB1;SQDJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.419905;49.351758;;;; +;;;;;;;;FRECHPYSDEHHGQGH;montesquespla;Gratens;;Aire des Monts de Guéret;;[0.7886,42.9847];;FRFR1ERERV2;SQDJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.513936;49.153238;;;; +;;;;;;;;FRECHPLTETLMWDSZ;MBUWWA;Gardouch, République;;Parc animalier des Monts de Guéret;;[1.50365,43.8649];;FRFR1EUEUU1;AKPV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.673576;49.293602;;;; +;;;;;;;;FRECHPVTBYUSAA5F;FR*SOD*S*WIIZ*130*1*_*_;Beauchalot;;Etang des Landes;;[1.71702,43.3975];;FRFR1EUGXP1;YRUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.951704;49.108212;;;; +;;;;;;;;FRECHPMBBTCSNJTK;FR*SOD*S*WIIZ*130*2*_*_;Auzeville-Tolosane, Viognier;;Rue des Fossés des Canards;;[1.4444,43.5259];;FRFR1EUDTM1;RVZB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.709275;49.25644;;;; +;;;;;;;;FRECHPENOYQDXIZO;FR*SOD*S*WIIZ*130*3*_*_;Belberaud, Chemin de la Briquetterie;;Place du champ de foire;;[1.66252,43.6578];;FRFR1EJPEK3;FUGX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.20844;49.276345;;;; +;;;;;;;;FRECHPDLA46WPGDU;FR*SOD*S*WIIZ*130*4*_*_;Barbazan, Pradaou;;Place des Maçons de la Creuse;;[1.4464,43.4331];;FRFR1EUGKE2;HKVC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.761226;49.089329;;;; +;;;;;;;;FRECHPI89XUJ039I;FRIONE402600;Bagnères-de-Luchon, Lamartine;;Route de Banize;;[0.70622,43.0962];;FRFR1ERKFD1;LGRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.597432;48.906015;;;; +;;;;;;;;FRECHPZDHWTXVFAL;FRIONE408300;Avignonet-Lauragais, République;;Parking rue Barraud;;[0.58466,43.0291];;FRFR1ETSQM1;HKVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.273518;49.139582;;;; +;;;;;;;;FRECHPJSNTKCLBH0;FRIONE415600;Auterive, Proudhon;;Rue du Limousin;;[0.95573,43.0164];;FRFR1ETSQM2;NFSQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.317617;49.157966;;;; +;;;;;;;;FRECHPIVMKSI9TBL;FRIONE431500;Castanet-Tolosan;;Parking rue des Abattoirs;;[1.67391,43.5116];;FRFR1ENMLL2;NFSQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.34918;49.019161;;;; +;;;;;;;;FRECHPXA1GQIFFQO;FRIONE413800;Aurignac;;Route de la cascade;;[1.31135,43.4989];;FRFR1ENMLL1;NTHH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.150262;49.026011;;;; +;;;;;;;;FRECHPOMGNS1LCLU;FRIONE432400;Auribail, Cimetière;;6 place de la gare;;[0.83871,43.3809];;FRFR1EKHVV1;NTHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.153063;49.158001;;;; +;;;;;;;;FRZTLE22AC67139;FRIONE414900;Aspet, Armand Latour;;Faubourg Saint Bonnet parking salle culturelle;;[0.74389,43.0935];;FRFR1EAPBT2;VDSC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.605735;49.09016;;;; +;;;;;;;;FRZTLE22AC67140;FRIONE412400;Antichan-de-Frontignes;;Place du Treix;;[1.29722,43.723];;FRFR1EAPBT1;VDSC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.485499;49.060499;;;; +;;;;;;;;FRLUMELAMONTAGNEPO1;FRIONE403700;Laréole;;Rue de l'étang;;[1.37474,43.2247];;FRFR1EZCZA1;SFQW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.420738;49.093379;;;; +;;;;;;;;FRZTLE22AC59965;FRIONE410200;Bessières;;Place des arbres;;[1.0118,43.2001];;FRFR1ERYEU2;RAHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.605988;49.419466;;;; +;;;;;;;;FRZTLE22AC59964;FRIONE401800;Boudrac;;Route de la Châtre;;[1.24848,43.3581];;FRFR1EFNMA2;DXKP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.556744;49.271924;;;; +;;;;;;;;FRZTLE22AC59954;FRIONE409000;Carbonne;;70 Rue Ampère 69730;;[1.22182,43.4301];;FRFR1EZCZA2;WURH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.197021;49.196627;;;; +;;;;;;;;FRZTLE22AC59953;FRIONE404200;Caraman, Cimetière;;Avenue du Maréchal Juin 16000 L'Isle-d'Espagnac;;[1.22946,43.6919];;FRFR1EFNMA1;WURH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.712047;49.444076;;;; +;;;;;;;;FRE10P35310GROUPAMAMORDELLES;FRIONE436000;Capens, ZAC Serres;;53 Avenue de la République 87260 Pierre Buffière;;[1.06589,43.2811];;FRFR1EAPNE2;JBAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.382145;49.35304;;;; +;;;;;;;;FRBHMECOMTELIGIERBELAIR;FRIONE432500;Calmont, René Vidal;;24 Avenue de la République 87260 Pierre Buffière;;[1.29477,43.398];;FRFR1ERYEU1;UMEH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.514153;49.090911;;;; +;;;;;;;;FRS56E56053AB1G;FRIONE432600;Cadours, Raymond Sommer;;35 Rte des Bessons 17770 Migron;;[1.26232,43.3967];;FRFR1EAPNE1;UMEH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.601421;49.197647;;;; +;;;;;;;;FRLMSP1000118138;FRIONE412600;Buzet-sur-Tarn, Rue des Écoles;;7 Place de l'Hôtel de ville 17770 Burie;;[1.11904,43.2552];;FRFR1EGQYA3;JBAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.221452;49.35841;;;; +;;;;;;;;FRLMSP1000118117;FRIONE402900;Bretx, Clauses de la Filouse;;16 Rue des Ecoles 17120 Meursac;;[1.30224,43.5628];;FRFR1EGQYA1;RYGZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.515229;49.141649;;;; +;;;;;;;;FRLMSP1000118139;FRIONE405200;Boussens, Ecole;;2 Rue des Vieux Moulins 17170 Cranchaban;;[1.59226,43.717];;FRFR1EGQYA2;RJAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.45836;49.135919;;;; +;;;;;;;;FRLMSP1000118137;FRIONE402700;Boulogne-sur-Gesse;;46 Avenue de Saintonge 17460 Tesson;;[1.62286,43.3577];;FRFR1EUZKA2;FFHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.457547;48.86549;;;; +;;;;;;;;FRLMSP1000118132;FRIONE402800;Bouloc, République;;10 Avenue de l'Estuaire 17460 Tesson;;[1.38719,43.4798];;FRFR1EAXJZ2;XWVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.070287;49.19387;;;; +;;;;;;;;FRLMSP1000118129;FRIONE409100;Launac;;18 Boulevard Guillet Maillet - 17100 Saintes;;[1.39033,43.5069];;FRFR1EAXJZ1;XWVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.721077;49.164969;;;; +;;;;;;;;FRLMSP1000118122;FRIONE409200;Saint-Clar-de-Rivière, Grand Place;;18 Rue de la République 17770 Ecoyeux;;[1.17716,43.3211];;FRFR1EUGKE1;RRRT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.341375;49.24707;;;; +;;;;;;;;FRLMSP1000118112;FRIONE412500;Saint-Sulpice-sur-Lèze, Gendarmerie;;Chemin des Cossardes;;[1.46728,43.7054];;FRFR1EFSZX1;RRRT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.376949;48.83254;;;; +;;;;;;;;FRLMSP1000123177;FRIONE410300;Saint-Lys, Rue du Presbytère;;526 Chemin de l'équitation - 17550 Dolus d'Oléron;;[1.27554,43.3581];;FRFR1EYZNW2;JJLD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.96432;49.35578;;;; +;;;;;;;;FRLMSP1000123179;FRIONE421600;Saint-Gaudens;;301 Chemin de l'équitation - 17550 Dolus d'Oléron;;[0.57109,43.0849];;FRFR1ECQYG1;JJLD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.518561;48.836177;;;; +;;;;;;;;FRLMSP1000118125;FRIONE453800;Saint-Elix-le-Château;;10 Rue Hector Berlioz - 17100 Les Gonds;;[1.53011,43.7671];;FRFR1EURYG1;FYMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.918076;49.087252;;;; +;;;;;;;;FRLMSP1000122549;FRIONE402200;Sainte-Foy-d'Aigrefeuille;;Rue du Renclos de la Perroche;;[1.23037,43.2099];;FRFR1EYZQF1;FYMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.596704;49.092359;;;; +;;;;;;;;FRLMSP1000122550;FRIONE101300;Saiguède, 8 mai 1945;;Rue Grand Rue;;[1.48099,43.7151];;FRFR1EEGWT1;KVAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.489306;49.399683;;;; +;;;;;;;;FRLMSP1000122551;FRIONE412300;Pouy-de-Touges, Mairie;;24 Rue du Chagnaud;;[6.959449, 43.552794];;FRFR1EQUJF2;KVAR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.479175;49.223315;;;; +;;;;;;;;FRLMSP1000118109;FRIONE408100;Rouffiac-Tolosan, Mairie;;8 Rue de la Gîte;;[6.94775, 43.550339];;FRFR1EGSAA2;STDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.06483;49.195263;;;; +;;;;;;;;FRLMSP1000123176;FRIONE414700;Roquettes, Montségur;;23 Chemin d'Arcins, Parc d'activité Tanesse 33360 Latresne;;[3.923522, 49.244400];;FRFR1EQUJF1;QFNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.224898;48.907764;;;; +;;;;;;;;FRLMSP1000118115;FRIONE437800;Rieux-Volvestre;;526 Chemin Dorio 84300 Cavaillon;;[7.402639, 48.231920];;FRFR1EGSAA1;JCHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.747974;49.34592;;;; +;;;;;;;;FRLMSP1000118113;FRIONE432700;Rieumes;;377 chemin des combes 84220 Cabrière d'Avignon;;[-0.274148, 49.167886];;FRFR1EFCQU1;QHXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.344569;49.417993;;;; +;;;;;;;;FRLMSP1000118114;FRIONE409900;Ramonville-Saint-Agne, Georges Pompidou;;485 Route des Alpes;;[1.245204, 43.334659];;FRFR1ERQMH1;VAFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.397276;49.088719;;;; +;;;;;;;;FRLMSP1000118121;FRIONE407900;Sainte-Foy-de-Peyrolières, Tilleuls;;rue des Troenes 33210 Mazères;;[-1.103061, 48.908862];;FRFR1EKMFC1;TYYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.592528;49.335297;;;; +;;;;;;;;FRLMSP1000118111;FRIONE440000;Sengouagnet;;52 avenue de Bordeaux, 40200 Mimizan;;[-0.598593, 43.421850];;FRFR1EUXYM1;TYYE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.266925;49.319537;;;; +;;;;;;;;FRLMSP1000118140;FRIONE432300;Villemur-sur-Tarn;;67 Allée des Genêts, 40210 Labouheyre;;[5.224540, 47.813445];;FRFR1EUXYM2;VAFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.156333;48.86551;;;; +;;;;;;;;FRLMSP1000122116;FRIONE407800;Villefranche-de-Lauragais;;1 centre commercial Moléon;;[5.623271, 45.276249];;FRFR1ESNPQ1;MXQK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.41963;49.27973;;;; +;;;;;;;;FRLMSP1000118123;FRIONE408000;Vieille-Toulouse, Ecole;;66 avenue de la République;;[4.225917, 45.850722];;FRFR1EHAFZ2;MXQK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.43984;49.213922;;;; +;;;;;;;;FRLMSP1000123185;FRIONE402400;Verfeil, Poste;;1 rue Jean-Marie Pelt;;[5.045602, 47.271990];;FRFR1EHAFZ1;DMJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.167038;49.21079;;;; +;;;;;;;;FRLMSP1000118136;FRIONE402000;Venerque, Mont Frouzy;;RUE JOLIOT CURIE, 33185 Le Haillan;;[4.501811, 47.309680];;FRFR1ESNPQ2;RSPS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.16539;49.211;;;; +;;;;;;;;FRLMSP1000123181;FRIONE402300;Valentine, Baracane;;11 Rue de l'Orme Brisé 77310 Pringy;;[0.631368, 47.166119];;FRFR1EDJML2;RSPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.17084;48.871683;;;; +;;;;;;;;FRLMSP1000123182;FRIONE431900;Valcabrère, Basilique;;2 Avenue Méquillet;;[ 5.107450, 47.030768];;FRFR1EDJML1;YZQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.080285;49.303396;;;; +;;;;;;;;FRLMSP1000123183;FRIONE412700;Urau, Mairie;;5 Place des Charpentiers 68340 RIQUEWIHR;;[2.721676, 48.264407];;FRFR1EUZKA1;YZQC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.612974;49.245858;;;; +;;;;;;;;FRLMSP1000118152;FRIONE438700;Tarabel, Ecole;;516 Avenue de Geneve 74130;;[2.542194, 43.176909];;FRFR1EHSZD2;MYWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.41371;48.758803;;;; +;;;;;;;;FRLMSP1000123184;FRIONE416100;Seysses, Eglise;;94, Chemin de l'étringa;;[-0.131556, 47.418500];;FRFR1ENXZU1;ZATP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.057957;48.738663;;;; +;;;;;;;;FRLMSP1000123175;FRIONE403200;L'Isle en Dodon;;58 rue de Grosbliederstroff 57200 SARREGUEMINES;;[0.609660, 44.171306];;FRFR1EHSZD3;ZATP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.929944;48.74003;;;; +;;;;;;;;FRLMSP1000123186;FRIONE404500;Miramont-de-Comminges, Verdun;;53 RUE DU DRONCKAERT;;[1.755607, 50.167331];;FRFR1EUYJP2;VKRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.929616;48.740485;;;; +;;;;;;;;FRLMSP1000123187;FRIONE431200;Merville;;4001 Rue de la Belle Épine 35132 Vezin-le-Coquet;;[3.069310, 50.225516];;FRFR1EJPAZ1;TYSD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.928988;48.7707;;;; +;;;;;;;;FRLMSP1000118150;FRIONE410100;Massabrac, Mairie;;lieu dit le coin, 97221 Le Carbet;;[ 1.387757, 47.665885];;FRFR1EJPAZ2;TYSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.807758;49.278682;;;; +;;;;;;;;FRLMSP1000123172;FRIONE431800;Martres-Tolosane;;Oasis Bois Rouge, 97224 Ducos;;[3.362753, 46.497639];;FRFR1ESABL2;HVFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.777517;49.23773;;;; +;;;;;;;;FRLMSP1000123173;FRIONE438500;Longages;;49 Rue EMMANUEL COURANT, 97232 Le Lamentin;;[2.240714, 47.094675];;FRFR1ESABL1;ZFPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.401083;49.185342;;;; +;;;;;;;;FRLMSP1000123174;FRIONE126500;Lherm;;Boulevard Allègre 97200 Fort-de-France;;[7.036500, 43.592000];;FRFR1EUNYC2;ZFPK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.546146;49.275684;;;; +;;;;;;;;FRLMSP1000118116;FRIONE126400;Montaigut-sur-Save, Impasse de la Save;;1505 rue du pavé 97200 Fort-de-France;;[5.4908417, 46.116638];;FRFR1EUNYC1;DZTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.224221;48.964562;;;; +;;;;;;;;FRLMSP1000118146;FRIONE448900;Le Fousseret, Place du 11 Novembre;;25 Allée du Roche 97223 Le Diamant;;[4.012515, 49.204151];;FRFR1ELHEA1;DZTS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.941327;48.960693;;;; +;;;;;;;;FRLMSP1000118154;FRIONE414000;Le Fauga, Salle des Fêtes;;Rue PRINCIPALE 97225 Le Marigot;;[1.70479, 46.850652];;FRFR1EGDEW2;HVFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.941474;48.959934;;;; +;;;;;;;;FRLMSP1000127600;FRIONE439700;Lavernose-Lacasse, Mairie;;850 route d'Avignon 84110 Vaison-la-Romaine;;[-0.229353, 44.286522];;FRFR1ELHEA2;VKRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.942348;49.285445;;;; +;;;;;;;;FRLMSP1000127599;FRIONE414800;Lavelanet-de-Comminges, Mairie;;67 allée des Griottes 84220 Beaumettes;;[1.7988237, 50.926644];;FRFR1EGDEW1;QRMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.206554;48.992145;;;; +;;;;;;;;FRLMSP1000127598;FRIONE402100;Plaisance-du-Touch, Avenue Montaigne;;9 Rue de Madrid 80200 PERONNE;;[2.543044, 43.178103];;FRFR1EAHPD2;MYWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.03789;49.009109;;;; +;;;;;;;;FRLMSP1000127597;FRIONE417100;Montastruc-la-Conseillère;;30 Avenue du Bassin d'Arcachon 33680 LE PORGE;;[-0.134694, 47.419250];;FRFR1EAHPD1;FGLE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.157537;49.248376;;;; +;;;;;;;;FRLMSP1000118153;FRIONE408400;Nailloux;;210 Av. d'Avignon;;[-0.277238, 49.166932];;FRFR1EKKKG1;KAFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.962192;49.103352;;;; +;;;;;;;;FRLMSP1000118147;FRIONE437700;Pins-Justaret, Croisette;;5 Rue Clément Ader 34430 Saint-Jean-de-Védas;;[1.987548, 48.566391];;FRFR1EEDFP1;KAFD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.934779;49.246692;;;; +;;;;;;;;FRLMSP1000117668;FRIONE401700;Pinsaguel, Mairie;;5 Rue Celement Ader 34430;;[ 1.186773, 49.247541];;FRFR1EEDFP2;FTKJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.420204;49.080689;;;; +;;;;;;;;FRLMSP1000118142;FRIONE448300;Peyssies, Mairie;;2842 route nationale 30200;;[2.5485168, 49.089259];;FRFR1EKKKG2;KCYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.775525;49.024055;;;; +;;;;;;;;FRLMSP1000118124;FRIONE409800;Pechbonnieu, 8 Mai 1945;;N7 - ZA Notre Dame, 84430 Mondragon;;[-0.168090, 47.803507];;FRFR1EWQFB1;WLKQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.160346;48.770538;;;; +;;;;;;;;FRLMSP1000118145;FRIONE440100;Noé, Sainte-Marie;;5, route de basse gondeau;;[3.053255, 50.549210];;FRFR1ENEYE1;QHMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.199589;48.962291;;;; +;;;;;;;;FRLMSP1000118144;FRIONE449000;Montréjeau, Cinéma;;ZI les mangles, 97232 Le Lamentin;;[5.912861, 44.236045];;FRFR1ENYHW1;DKQC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.937233;48.962303;;;; +;;;;;;;;FRLMSP1000118143;FRIONE402500;Montjoire, Toulouse;;Rue Cadastre - Zac Étang Z'Abricots, 97200 Fort-de-France;;[3.307799, 49.366191];;FRFR1ENVXV1;DKQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.937161;49.150593;;;; +;;;;;;;;FRLMSP1000118133;FRIONE405300;Montesquieu-Volvestre, Esplanade Nord;;Groupe SEEN ZI la Lezarde, 97232 Le Lamentin;;[4.889573, 44.024304];;FRFR1EUYJP1;LGRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.91013;49.008319;;;; +;;;;;;;;FRLMSP1000127603;FRIONE101200;Montberon;;ZI Les mangles acajou 97232;;[4.7669235, 46.134233];;FRFR1EMCLG1;YZTU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.531146;48.938426;;;; +;;;;;;;;FRLMSP1000127607;FRIONE423400;ROQUEFORT PARKING CENTRE VILLAGE;;ZI PLACE D'ARMES, 97232 Le Lamentin;;[4.700191, 43.999633];;FRFR1EMCSB2;YZTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.480734;48.9256673;;;; +;;;;;;;;FRLMSP1000118120;FRIONE410000;ROQUEFORT PARKING INTERMARCHE;;350 Av. Antoine Vitez, Fort-de-France 97200;;[0.776985, 47.475422];;FRFR1EEUKF2;AWMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.4435619;49.017093;;;; +;;;;;;;;FRLMSP1000118127;FRIONE412900;TOURETTES SUR LOUP PARKING DE LA MADELEINE;;ZONE DE GROS LA JAMBETTE 97232 LE LAMENTIN;;[4.0977824, 48.225594];;FRFR1EUZKA3;WEHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.123976;49.163115;;;; +;;;;;;;;FRLMSP1000118131;FRIONE410400;VILLENEUVE LOUBET PARKING MEDIATHEQUE;;Le Bourg 97250;;[4.827989, 45.276404];;FRFR1EHSZD1;HEJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.34989;48.946159;;;; +;;;;;;;;FRLMSP1000123123;FRIONE409700;VILLENEUVE LOUBET PARKING FIGHIERES;;Rue Marcel Bouquety;;[6.156463, 45.547641];;FRFR1EHXHV2;KVSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.66299;48.7702458;;;; +;;;;;;;;FRLMSP1000123124;FRIONE413700;VILLENEUVE LOUBET PARKING GENERAL DE GAULLE;;Lotissement Acajou Californie;;[5.961812, 46.096190];;FRFR1EHXHV1;ULCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.1993813;48.778359;;;; +;;;;;;;;FRLMSP1000123125;FRIONE417600;MANDELIEU PARKING BEGUIER;;5 Zone d'activite de bois carre, 97232 Le Lamentin;;[5.508419, 49.119802];;FRFR1EHXHV3;DQAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.19461;49.320468;;;; +;;;;;;;;FRLMSP1000122554;FRIONE438600;MANDELIEU PARKING ROBINSON THEATRE DE VERDURE;;ZAC Etang Zabricot, 97234 Fort-de-France;;[5.509020, 49.118201];;FRFR1EJPEK2;YFNX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.179005;49.174165;;;; +;;;;;;;;FRLMSP1000122552;FRIONE416900;MANDELIEU-LA-NAPOULE PARKING CHANTIER NAVAL;;La Plaine Petit Manoir, Le Lamentin 97232, Martinique;;[2.5866803, 46.378027];;FRFR1EJPEK1;QFQG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.123975;49.047854;;;; +;;;;;;;;FRLMSP1000122553;FRIONE409600;MANDELIEU-LA-NAPOULE PARKING BALCONS DAZUR;;Résidence Les Cycas, Sainte Catherine (CLUNY), 97200 Fort de France;;[3.153525, 45.660128];;FRFR1ERCNJ2;KRXT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.352788;49.026481;;;; +;;;;;;;;FRLMSP1000118126;FRIONE413100;SOPHIA ANTIPOLIS - CASA GENETS - PUBLIC;;RN5 Petit Pérou Les Abymes, 97139, Guadeloupe;;[3.089269, 43.215890];;FRFR1ERCNJ1;WTFS3;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.162429;49.030257;;;; +;;;;;;;;FRLMSP1000127609;FRIONE413200;PARKING MERMOZ 1;;Parc d'activité de La Lézarde;;[1.245628, 43.337933];;FRFR1EEUKF1;KRXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.157598;49.025102;;;; +;;;;;;;;FRLMSP1000127608;FRIONE404100;VILLENEUVE LOUBET PARKING GARE;;29 Rue Ricardo Mazza;;[2.585323, 50.826461];;FRFR1EMCSB1;WTFS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.136316;48.97842;;;; +;;;;;;;;FRLMSP1000118118;FRIONE438900;LA COLLE SUR LOUP PARKING STRAPUTICARI;;Route de Saint Martin de Crau 13520 Maussane-les-Alpilles;;[4.865081, 46.421048];;FRFR1EFVAV2;WTFS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.17346;48.890669;;;; +;;;;;;;;FRLMSP1000118135;FRIONE401900;ST VALLIER DE THIEY PARKING ESPACE DU THIEY;;32 BOULEVARD DE L'EUROPE;;[ 0.186759, 44.404918];;FRFR1EFVAV1;CWAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.781506;49.011757;;;; +;;;;;;;;FRLMSP1000118130;FRIONE431700;LA COLLE SUR LOUP STADE DE FOOTBALL;;1500 ROUTE DE BEAUDINARD;;[4.037132, 47.504384];;FRFR1EVNNV2;KSCY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.931972;49.048847;;;; +;;;;;;;;FRLMSP1000118110;FRIONE408600;ST CEZAIRE SUR SIAGNE PARKING CHEMIN DE LA CHAUX;;2767 ROUTE DE POURRIERES;;[-0.693474, 48.095180];;FRFR1ENCEQ2;CWAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.704694;49.013925;;;; +;;;;;;;;FRLMSP1000118134;FRIONE438800;MANDELIEU ROND-POINT DE LA CANARDIERE;;1 Route de la Brèze 48150 MEYRUEIS;;[ 4.894038, 45.889900];;FRFR1ENCEQ1;CWAM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.40543;49.23479;;;; +;;;;;;;;FRLMSP1000118119;FRIONE440700;IONITY Gueux;;Boulevard Winston Churchill 14400 BAYEUX;;[4.894515, 45.884370];;FRFR1EVNNV1;KSCY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.382675;49.25786;;;; +;;;;;;;;FRE10E11128;FRIONE416800;IONITY Jura;;BOULEVARD JEAN CHARLES CONTEL 14100 GLOS;;[ 4.781340, 44.513898];;FRFR1EMCLG2;KZPP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.612249;49.260914;;;; +;;;;;;;;FRLMSP1000138144;FRIONE404400;IONITY Jardin des arbres;;ALLEE FENELON;;[3.983572, 43.650960];;FRFR1ESHCD2;KZPP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.208506;49.29076;;;; +;;;;;;;;FRLMSP1000134507;FRIONE404000;IONITY Ile Rose;;35 Chemin de Comtesse 33370 Tresses;;[4.780820, 44.515143];;FRFR1ESHCD1;AWMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.975642;49.266036;;;; +;;;;;;;;FRLMSP1000134508;FRIONE421500;IONITY Haut Koenigsbourg;;RUE DE L'UNIVERSITE;;[4.723115, 44.216560];;FRFR1ENSMA2;MBJY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.478814;49.1394202;;;; +;;;;;;;;FRLMSP1000134509;FRIONE403500;IONITY Hauconcourt;;12 CHEMIN DES JONCS;;[1.63404, 48.992862];;FRFR1ENRRJ1;WGAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.939257;49.390881;;;; +;;;;;;;;FRLMSP1000134506;FRIONE403600;IONITY Giberville Nord;;9 avenue Lionel Terray;;[4.912040, 43.922931];;FRFR1EYZNW1;WGAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.3175225;49.35421;;;; +;;;;;;;;FRLMSP1000123099;FRIONE435900;IONITY Glanon;;210 rue garibaldi;;[2.586605, 44.369754];;FRS89EPJCW1;QJCU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.622742;49.140422;;;; +;;;;;;;;FRLMSP1000123098;FRIONE408500;IONITY Freney;;4 RUE DE LA CENSE;;[-0.491055, 47.500299];;FRS89ELEDD1;AWAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.817924;49.231282;;;; +;;;;;;;;FRLMSP1000123097;FRIONE440400;IONITY Gevrey-Chambertin Est;;100 AVENUE DE LA REPUBLIQUE;;[1.641624, 43.074958];;FRS89EAWEA1;YWQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.120187;49.27201;;;; +;;;;;;;;FRLMSP1000123100;FRIONE440200;IONITY Garonne;;222 RUE DE MONTELS EGLISE;;[5.070508, 45.843868];;FRS89EZMGD1;LVEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.22331;49.233117;;;; +;;;;;;;;FRLMSP1000123101;FRIONE409300;IONITY Fontanelles;;2842 RN 30200 Saint-Nazaire;;[-0.378714, 46.296171];;FRS89EQMQG1;EWMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.217491;49.299502;;;; +;;;;;;;;FRLMSP1000123102;FRIONE440300;IONITY La Ferté-Bernard;;11 AVENUE DE CHEVENE;;[0.701054, 45.137920];;FRS89EJKFF1;YWQC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.719094;49.290671;;;; +;;;;;;;;FRLMSP1000123103;FRIONE433500;IONITY Kergoët;;10 RUE SEBASTIEN LAI;;[1.859723, 47.948583];;FRS89EYUCW1;RVZB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.874672;49.021025;;;; +;;;;;;;;FRLMSP1000118141;FRIONE124800;IONITY Larzac;;CHEMIN DES GLIERES;;[2.287592, 48.862725];;FRS89ERLSM1;EWMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.922083;49.006973;;;; +;;;;;;;;FRLMSP1000123111;FRIONE437900;IONITY La Garde;;9 AVENUE SAINT PIERRE;;[2.9187218809509474, 49.875167008880716];;FRS89EKTAX2;KAFY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.128076;49.467521;;;; +;;;;;;;;FRLMSP1000120550;FRIONE459400;IONITY La Réserve;;1112 BOULEVARD FERNAND DARCHICOURT;;[7.0100812, 43.6087505];;FRS89EMEMV1;KAFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.087785;49.378795;;;; +;;;;;;;;FRLMSP1000118108;FRIONE408900;IONITY Labenne Est;;4b Rue de l’Ancien Hopital 57200 Sarreguemines;;[1.15578, 49.30327];;FRS89EEDJQ1;AWAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.525036;48.622033;;;; +;;;;;;;;FRLMSP1000120546;FRIONE446600;IONITY Labenne Ouest;;292 CHEMIN DU BOIS ROND 84190;;[1.452088, 49.101689];;FRS89EACUK2;AWWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.731554;48.649043;;;; +;;;;;;;;FRLMSP1000122957;FRIONE403800;IONITY Lacq Audéjos Nord;;7 LA COMBETTE 13210;;[0.659175, 49.293963];;FRS89EMYHL1;QJCU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.16177;48.649816;;;; +;;;;;;;;FRLMSP1000122958;FRIONE101400;IONITY Lacq Audéjos Sud;;70 RUE HELENE BOUCHER 34430 SAINT-JEAN-DE-VEDAS;;[0.929488, 48.74251];;FRS89EKGWQ2;AWWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.145994;49.289143;;;; +;;;;;;;;FRLMSP1000122960;FRIONE409400;IONITY Langres Noidant;;RUE DE CHAMPAGNE 60880 JAUX;;[1.483316, 49.09347];;FRS89EMXEQ2;DNYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.194121;48.689914;;;; +;;;;;;;;FRLMSP1000122961;FRIONE404300;IONITY Langres Perrogney;;91 AV DES ROSES 94440 SANTENY;;[1.530081, 49.074712];;FRS89EWPGG2;DNYS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.77921;49.311222;;;; +;;;;;;;;FRLMSP1000122962;FRIONE439100;IONITY l'Isle-d'Abeau;;KYRIAD ANGERS OUEST BEAUCOUZE, 8 AV ALIENOR D'AQUITAINE 49070 BEAUCOUZE;;[1.53010287, 49.0747562];;FRS89EBSME2;UWPF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.175381;49.388744;;;; +;;;;;;;;FRLMSP1000122963;FRIONE433400;IONITY Lochères;;CHEMIN DES MALETTES SORTIE 5 A42 01700 SAINT-MAURICE-DE-BEYNOST;;[1.530102, 49.0747562];;FRS89ENGKZ2;RSSX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.900021;49.321175;;;; +;;;;;;;;FRLMSP1000120545;FRIONE408700;IONITY Loire;;Boulevard du Marquisat de houel;;[1.187305, 49.248609];;FRS89EXJXD1;NUBE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.75571;48.618467;;;; +;;;;;;;;FRLMSP1000123194;01F52RT5T5C8MK3VG25J93RKKE;IONITY Dijon Sud;;82 - 86 RUE LOUIS PRADEL 69960 CORBAS;;[1.219454, 49.324463];;FRS89EWPAY2;UWPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.804458;49.366657;;;; +;;;;;;;;FRLMSP1000118095;EVB-P20151643;IONITY Longué la Couaille;;ZI Degrad des Cannes;;[0.49855, 49.230692];;FRS89EUYFT1;NUBE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.092196;48.588446;;;; +;;;;;;;;FRLMSP1000123200;EVB-P20151604;IONITY Fontaine Colette;;3 impasse du moulin 67;;[1.356333, 49.35987];;FRS89EHJFJ2;RSSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.905749;48.614155;;;; +;;;;;;;;FRLMSP1000118091;EVB-P20151599;IONITY Bois Guillerot;;28 Avenue du président roosvel;;[0.71108, 48.824326];;FRS89EAYHR1;MBJY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.497805;48.598501;;;; +;;;;;;;;FRLMSP1000118093;FR*SLF*ESAP*MOUGINS*16*3;IONITY Darvault;;139 CHEMIN DE LA PETITE GROSNE 71850 CHARNAY LES MACON;;[0.584992, 49.243902];;FRS89ENSNM1;MEYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.099536;48.487852;;;; +;;;;;;;;FRLMSP1000118097;FR*SOD*S*CUGN*37*1*_*_;IONITY Corbières Sud;;302 chemin départemental 67610 La Wantzenau;;[0.913432, 48.835912];;FRFR1ENRRJ2;QTEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.489047;49.415974;;;; +;;;;;;;;FRLMSP1000123199;FR*SOD*S*CUGN*36*2*_*_;IONITY Longvilliers;;365 AVENUE THEODORE BRAUN 69400 VILLEFRANCHE SUR SAONE;;[1.485049, 49.092874];;FRS89EGCLF2;AJRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.694515;48.591825;;;; +;;;;;;;;FRLMSP1000118099;FR*SOD*S*CUGN*36*1*_*_;IONITY Agen;;ROUTE DE LA BOUVE;;[1.419905, 49.062843];;FRS89EEEAA1;EMVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.902419;48.59336;;;; +;;;;;;;;FRLMSP1000118100;FR*SOD*S*CUGN*38*1*_*_;IONITY Arclusaz;;1 RDFGHJKL;;[0.513936, 49.351758];;FRS89EKTAX1;MYKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.500003;48.591508;;;; +;;;;;;;;FRLMSP1000118102;FR*SOD*S*CUGN*39*1*_*_;IONITY Baie de Somme;;ZONE DU SIALA ROUTE DE MAZAMET 81100 CASTRES;;[0.673576, 49.153238];;FRS89EHPZM2;RUYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.503267;48.592458;;;; +;;;;;;;;FRLMSP1000123193;FR*SOD*S*CUGN*40*1*_*_;IONITY Baralle;;PARC ACTIVITES VALLEE ESCAUT;;[0.951704, 49.293602];;FRS89ERLSM2;WMLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.489549;48.562346;;;; +;;;;;;;;FRLMSP1000120543;FR*SOD*S*CUGN*32*1*_*_;IONITY Bedenac Est;;406 Rue d’Abbeville 80000 Amiens;;[0.709275, 49.108212];;FRS89EPKUU2;WMLY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.495991;48.684557;;;; +;;;;;;;;FRLMSP10001180102;FR*SOD*S*CUGN*35*1*_*_;IONITY Blois Ménars;;1 Moulin de Laboirie 33430 SAINT-COME;;[1.20844, 49.25644];;FRS89ESAVC1;RJMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.468064;48.695024;;;; +;;;;;;;;FRLMSP1000123195;FR*SOD*S*CUGN*34*1*_*_;IONITY Blois Villerbon;;Route de Rémire;;[1.761226, 49.276345];;FRS89EBMTE2;TMNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.188514;48.692368;;;; +;;;;;;;;FRLMSP1000123196;FR*SOD*S*CUGN*31*1*_*_;IONITY Boismandé Est;;Chemin de la Chaumière;;[0.597432, 49.089329];;FRS89EPKUU1;TMNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.183827;49.429157;;;; +;;;;;;;;FRLMSP1000123198;FR*SOD*S*CUGN*30*1*_*_;IONITY Boismandé Ouest;;Route de Matoury;;[1.273518, 48.906015];;FRS89EEBLP1;MYKD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.185137;48.689762;;;; +;;;;;;;;FRLMSP1000123197;FR*SOD*S*CUGN*29*1*_*_;IONITY Bolleville Est;;Hôpital Privé St Adrien 97300 Cayenne;;[1.317617, 49.139582];;FRS89EBNLK1;RUYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.930792;48.687977;;;; +;;;;;;;;FRLMSP1000118107;FR*SOD*S*CUGN*41*1*_*_;IONITY Bolleville Ouest;;21 bis rue du 18 et 22 juin 1962, 97300 Cayenne;;[1.34918, 49.157966];;FRS89ELADP1;RJMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.173022;48.690281;;;; +;;;;;;;;FRLMSP1000118103;FR*SOD*S*CUGN*28*1*_*_;IONITY Bonneville;;IMP Mariéma, 97354 Remire Montjoly;;[1.150262, 49.019161];;FRS89ESYKE1;FFTD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.177347;49.293346;;;; +;;;;;;;;FRLMSP1000118106;FR*SOD*S*CUGN*48*1*_*_;IONITY Bourbonnais;;Rue du 1er décembre 67230 HUTTENHEIM;;[1.153063, 49.026011];;FRS89ETFLT1;FFTD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.175165;48.686047;;;; +;;;;;;;;FRLMSP1000123113;FR*SOD*S*CUGN*42*1*_*_;IONITY Bourges St Thorettes;;39 rue de Fruges 62560 Fauque;;[1.605735, 49.158001];;FRS89ERNBX2;CCUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.741943;48.443202;;;; +;;;;;;;;FRLMSP1000118098;FR*SOD*S*CUGN*49*1*_*_;IONITY Bréguières Nord;;1 Rue du Muret 62179 Wissant;;[1.485499, 49.09016];;FRS89EHSYW2;CCUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.17407;48.694878;;;; +;;;;;;;;FRLMSP1000118101;FR*SOD*S*CUGN*54*1*_*_;IONITY Cambarette Nord;;Pilotage Maritime chemin des dunes 62730;;[1.420738, 49.060499];;FRS89EUMEU2;QQBP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.739727;48.702408;;;; +;;;;;;;;FRLMSP1000120541;FR*SOD*S*CUGN*26*1*_*_;IONITY Ceignes Haut Bugey;;Allée des Rastoubles 13127;;[1.605988, 49.093379];;FRS89EHSYW1;ZRKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.196215;49.327763;;;; +;;;;;;;;FRLMSP1000123112;FR*SOD*S*CUGN*53*1*_*_;IONITY Centre de la France;;1 Rue Marie Curie 78310 Maurepas;;[1.556744, 49.419466];;FRS89EABDK2;NXBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.225206;49.324322;;;; +;;;;;;;;FRLMSP1000123114;FR*SOD*S*CUGN*52*1*_*_;IONITY Centre de la France Sud;;17/19 RUE GUSTAVE DELORY 42000 SAINT ETIENNE;;[1.197021, 49.271924];;FRS89EMYUA2;MLBZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.834023;48.883568;;;; +;;;;;;;;FRLMSP1000118079;FR*SOD*S*CUGN*51*1*_*_;IONITY Champfleury;;Avenue Michel Adam;;[0.712047, 49.196627];;FRS89EKPZS2;WGST1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.930843;48.842911;;;; +;;;;;;;;FRLMSP1000118071;FR*SOD*S*CUGN*50*1*_*_;IONITY Chartres Bois Paris;;53 Rue Amiral Courbet;;[1.382145, 49.444076];;FRS89ELXQZ2;JXDY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.052047;48.699406;;;; +;;;;;;;;FRLMSP1000118073;FR*SOD*S*CUGN*47*1*_*_;IONITY Chartres Gasville;;Rue du Général Mangin - Bléville;;[0.514153, 49.35304];;FRS89ERGDB2;EMVY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.068884;48.69315;;;; +;;;;;;;;FRLMSP1000118076;FR*SOD*S*CUGN*46*2*_*_;IONITY Chateauroux;;11 Rue de Mondeville;;[0.601421, 49.090911];;FRS89EFLQP2;CJJH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.133857;48.698059;;;; +;;;;;;;;FRLMSP1000118078;FR*SOD*S*CUGN*46*1*_*_;IONITY Cœur D'Aquitaine;;Place Raymond Poincare;;[1.221452, 49.197647];;FRS89EPTNV2;CJJH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.199602;48.658569;;;; +;;;;;;;;FRLMSP1000118094;FR*SOD*S*CUGN*44*1*_*_;IONITY Coquelles;;Place Léon Carlier - 23 Boulevard Amiral Mouchez;;[0.515229, 49.35841];;FRS89EMEMV2;PATK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.142407;48.702171;;;; +;;;;;;;;FRLMSP1000118092;FR*SOD*S*CUGN*43*1*_*_;IONITY Corbières Nord;;2 Rue Philippe Lebon;;[0.45836, 49.141649];;FRS89EVKBM2;MEYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.22903;48.707504;;;; +;;;;;;;;FRLMSP1000118081;FR*SOD*S*CUGN*43*2*_*_;IONITY Longué-les-Cossonnières;;Lycee Auguste Perret - Rue Boris Vian;;[0.457547, 49.135919];;FRS89EYSRF2;RVGG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.250865;48.645809;;;; +;;;;;;;;FRLMSP1000118083;FR*SOD*S*CUGN*27*1*_*_;IONITY Giberville Sud;;Gymnase du Mont-Gaillard - 41 Avenue du Mont-Gaillard;;[1.070287, 48.86549];;FRS89EYKQH1;RVGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.252662;48.694763;;;; +;;;;;;;;FRLMSP1000118084;FR*SOD*S*CUGN*4*1*_*_;IONITY Lyon-Dagneux Sud;;QUARTIER BATELIERE RUE DES ALIZES;;[0.721077, 49.19387];;FRS89EPTNV1;UHTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.180104;48.531142;;;; +;;;;;;;;FRLMSP1000118086;FR*SOD*S*CUGN*2*1*_*_;IONITY Val De Reuil;;Rue Schoelcher, 97270 Saint-Esprit;;[1.341375, 49.164969];;FRS89ERGDB1;JAHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.209852;48.506082;;;; +;;;;;;;;FRLMSP1000118089;FR*SOD*S*CUGN*3*2*_*_;IONITY Vrigny;;Marché de rivière Pilote -;;[0.376949, 49.24707];;FRS89EPBKL1;JAHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.607995;48.611865;;;; +;;;;;;;;FRLMSP1000118090;FR*SOD*S*CUGN*3*1*_*_;IONITY Sarthe Nord;;Rue Schoëlcher 97212 Saint-Joseph;;[0.96432, 48.83254];;FRS89EPGYC1;JADS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.62415;48.481303;;;; +;;;;;;;;FRLMSP1000120540;FR*SOD*S*CUGN*3*4*_*_;IONITY Sarthe Sud;;Rond Point de l’Europe 50000 SAINT-LO;;[0.518561, 49.35578];;FRS89ELADP2;JADS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.651412;48.473567;;;; +;;;;;;;;FRLMSP1000118096;FR*SOD*S*CUGN*3*3*_*_;IONITY Saugon Ouest;;3690 Rte de Baziege la Lauragaise 31670 LABEGE;;[0.918076, 48.836177];;FRS89EUYFT2;UHTU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.732776;48.52959;;;; +;;;;;;;;FRLMSP1000123117;FR*SOD*S*CUGN*2*3*_*_;IONITY Seclin;;1 Rue Jacques Monod 81000 ALBI;;[0.596704, 49.087252];;FRS89EJGKF2;PATK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.691154;48.444032;;;; +;;;;;;;;FRLMSP1000118087;FR*SOD*S*CUGN*2*2*_*_;IONITY Sisteron;;ZAC LA VALLEE, RUE ANTOINE PARMENTIER 02100 SAINT QUENTIN;;[1.489306, 49.092359];;FRS89ESYKE2;EUYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.44907;48.528566;;;; +;;;;;;;;FRLMSP1000118088;FR*SOD*S*CUGN*2*4*_*_;IONITY Soissons Ouest;;LES HERMASSES 265;;[1.479175, 49.399683];;FRS89EENHA2;MKKK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.735212;48.596794;;;; +;;;;;;;;FRLMSP1000123115;FR*SOD*S*CUGN*25*1*_*_;IONITY Sorgues;;ROUTE DE CAEN 14150 OUISTREHAM;;[1.06483, 49.223315];;FRS89EMYHL2;MKNV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.741191;48.528022;;;; +;;;;;;;;FRLMSP1000123116;FR*SOD*S*CUGN*2*5*_*_;IONITY Taponas;;RUE GENERAL DE GAULLE 14160 DIVES SUR MER;;[1.224898, 49.195263];;FRS89ESAVC2;MKRP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.529493;48.517423;;;; +;;;;;;;;FRLMSP1000120547;FR*SOD*S*CUGN*1*2*_*_;IONITY Tavel Nord;;41 AV WINSTON CHURCHILL 27400 LOUVIERS;;[0.747974, 48.907764];;FRS89EEBLP2;MKKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.897909;48.515558;;;; +;;;;;;;;FRLMSP1000123118;FR*SOD*S*CUGN*1*1*_*_;IONITY Tavel Sud;;8 ROUTE DE ROUEN 27200 SAINT MARCEL;;[0.344569, 49.34592];;FRS89ESVMK2;MKNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.729624;48.509037;;;; +;;;;;;;;FRLMSP1000123134;FR*SOD*S*CUGN*1*3*_*_;IONITY Tours La Longue Vue;;BD COMMANDANT SERGE BICHOT 76190 YVETOT;;[0.397276, 49.417993];;FRS89EMJHX2;MKRP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.753659;48.497579;;;; +;;;;;;;;FRLMSP1000118104;FR*SOD*S*CUGN*56*1*_*_;IONITY Troyes Sud;;10 ROUTE DE LA HAYE MARIAISE 14000 CAEN;;[0.592528, 49.088719];;FRS89EXJXD2;ADAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.766798;48.429512;;;; +;;;;;;;;FRLMSP1000118105;FR*SOD*S*CUGN*5*1*_*_;IONITY Val Gelon;;CHEMIN NOIR 27140 GISORS;;[1.266925, 49.335297];;FRS89EYSAV2;AYFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.749424;48.412013;;;; +;;;;;;;;FRLMSP1000118082;FR*SOD*S*CUGN*6*1*_*_;IONITY Saint-Rambert Est;;ROUTE D'ESQUAY SUR SEULLES CHEMIN D'AIX LE PAYENNET 14400 SAINT VIGOR LE GRAND;;[1.156333, 49.319537];;FRS89ETFLT2;SAVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.792528;49.366949;;;; +;;;;;;;;FRLMSP1000118085;FR*SOD*S*CUGN*24*1*_*_;IONITY Vallée De La Vire Gouvets;;RUE DU BIEF RUELLE DES PRES 14170 ST PIERRE EN AUGE;;[1.41963, 48.86551];;FRS89EBSME1;FGWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.810074;48.497517;;;; +;;;;;;;;FRLMSP1000118072;FR*SOD*S*CUGN*23*1*_*_;IONITY Valleiry Sud;;23 RUE PIERRE ET MARIE CURIE 76360 BARENTIN;;[0.43984, 49.27973];;FRS89EVNPN2;LYKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.891198;48.468331;;;; +;;;;;;;;FRLMSP1000118074;FR*SOD*S*CUGN*22*1*_*_;IONITY Vendée;;AVENUE GEORGES DUVAL 14100 LISIEUX;;[1.167038, 49.213922];;FRS89EYMHQ2;FVVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.655137;48.771853;;;; +;;;;;;;;FRLMSP1000118075;FR*SOD*S*CUGN*21*1*_*_;IONITY Verdun Nord;;ROUTE DE DUCLAIR 76380 CANTELEU;;[1.16539, 49.21079];;FRS89EPGYC2;XAKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.322902;48.651288;;;; +;;;;;;;;FRLMSP1000118077;FR*SOD*S*CUGN*19*1*_*_;IONITY Verdun Sud;;RUE DE L'ABBAYE 76210 GRUCHET LE VALASSE;;[1.17084, 49.211];;FRS89EJKFF2;KFEB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.132647;48.589796;;;; +;;;;;;;;FRLMSP1000118080;FR*SOD*S*CUGN*17*1*_*_;IONITY Vérités;;RUE PAUL VAILLANT COUTURIER 76120 GRAND QUEVILLY;;[1.080285, 48.871683];;FRS89EPBKL2;YGHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.235897;48.603982;;;; +;;;;;;;;FRLMSP1000120538;FR*SOD*S*CUGN*16*1*_*_;IONITY Veyre;;ROUTE D'ORLEANS 27000 EVREUX;;[1.612974, 49.303396];;FRS89EPJCW2;PYJH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.601472;48.735001;;;; +;;;;;;;;FRLMSP1000123211;FR*SOD*S*CUGN*14*1*_*_;IONITY Vidauban Sud;;RN60 61300 SANT SULPICE SUR RISLE;;[1.41371, 49.245858];;FRS89EAWEA2;EANC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.500923;48.779856;;;; +;;;;;;;;FRLMSP1000120539;FR*SOD*S*CUGN*13*1*_*_;IONITY Village Catalan Est;;ROUTE DE REVIERS 14470 COURSEULLES SUR MER;;[1.057957, 48.758803];;FRS89ENSNM2;JGPV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.167017;48.545392;;;; +;;;;;;;;FRLMSP1000120542;FR*SOD*S*CUGN*10*1*_*_;IONITY Village Catalan Ouest;;RUE ANTOINE DE SAINT EXUPERY 27310 BOURG ACHARD;;[0.929944, 48.738663];;FRS89EAYHR2;KJTX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.145511;48.651079;;;; +;;;;;;;;FRLMSP1000123082;FR*SOD*S*CUGN*9*1*_*_;IONITY Villaines la Gonais;;27 RUE DES CANADIENS 76550 SAINT AUBIN SUR SCIE;;[0.929616, 48.74003];;FRS89ELEDD2;SPRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.908144;48.937585;;;; +;;;;;;;;FRLMSP1000120535;FR*SOD*S*CUGN*8*2*_*_;IONITY Vinassan Nord;;12 RUE FRIEDRICH ENGELS 76700 HARFLEUR;;[0.928988, 48.740485];;FRS89EZMGD2;DTQH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.871263;48.466942;;;; +;;;;;;;;FRLMSP1000123109;FR*SOD*S*CUGN*57*1*_*_;IONITY Volvestre;;120 AVENUE DE BONPORT 76320 SAINT PIERRE LES ELBEUF;;[0.807758, 48.7707];;FRS89EAHKV2;JAUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.113954;48.419586;;;; +;;;;;;;;FRLMSP1000123108;FR*SOD*S*CUGN*95*1*_*_;IONITY Saint-Rambert Ouest;;RUE DU BOCAGE 14460 COLOMBELLES;;[1.777517, 49.278682];;FRS89EYUCW2;QBAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.813043;48.463424;;;; +;;;;;;;;FRLMSP1000123085;FR*SOD*S*CUGN*101*1*_*_;IONITY Saint-Witz;;AVENUE DE LATTRE DE TASSIGNY 88150 ELOYES;;[1.401083, 49.23773];;FRS89EVKBM1;RGKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.79138;48.519024;;;; +;;;;;;;;FRLMSP1000123084;FR*SOD*S*CUGN*100*1*_*_;IONITY Saint Léger Est;;58 Avenue du Président Kennedy 25;;[1.546146, 48.758803];;FRS89ERPWB1;MQTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.550392;48.529466;;;; +;;;;;;;;FRLMSP1000123083;FR*SOD*S*CUGN*99*1*_*_;IONITY Nemours;;58 Avenue du Président Kennedy 27;;[1.546146, 49.185342];;FRS89EEFAW1;CECN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.632634;48.58364;;;; +;;;;;;;;FRLMSP1000124077;FR*SOD*S*CUGN*98*1*_*_;IONITY Maison Dieu;;58 Avenue du Président Kennedy 26;;[1.224221, 49.275684];;FRS89EZSNE2;DLFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.541528;48.567491;;;; +;;;;;;;;FRLMSP1000124103;FR*SOD*S*CUGN*97*1*_*_;IONITY Mas d'Agenais;;58 Avenue du Président Kennedy 28;;[0.941327, 48.964562];;FRS89ERPWB2;AKPE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.650546;48.600135;;;; +;;;;;;;;FRLMSP1000124071;FR*SOD*S*CUGN*96*1*_*_;IONITY Mayenne;;1H Rue Richer, 85330 Noirmoutier-en-l'Île;;[0.941474, 48.960693];;FRS89EFLQP1;AWDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.499564;48.4952;;;; +;;;;;;;;FRLMSP1000124076;FR*SOD*S*CUGN*94*1*_*_;IONITY Mionnay Chatanay;;10, rue de montangue 22240 Plurien;;[0.942348, 48.959934];;FRS89EBNLK2;VMDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.439919;48.6548;;;; +;;;;;;;;FRLMSP1000124078;FR*SOD*S*CUGN*102*1*_*_;IONITY Mionnay Saint-Galmier;;30 Rue Georges Boissaye du Bocage - Sainte-Adresse;;[1.206554, 49.285445];;FRS89EZSNE1;TKJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.5098;48.5571;;;; +;;;;;;;;FRLMSP1000123210;FR*SOD*S*CUGN*93*1*_*_;IONITY Montbartier;;Rue de Chemin de Fer - Epouville;;[1.03789, 48.992145];;FRS89EYSRF1;MNNH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.4859;48.5813;;;; +;;;;;;;;FRLMSP1000117556;FR*SOD*S*CUGN*92*1*_*_;IONITY Montélimar Est;;55 Rue du 329ème -le Havre;;[1.157537, 49.009109];;FRS89EVNPN1;SXMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3871;48.5553;;;; +;;;;;;;;FRLMSP1000098825;FR*SOD*S*CUGN*91*1*_*_;IONITY Montélimar Ouest;;55 Rue du 329ème - le Havre;;[0.962192, 49.248376];;FRS89EHPZM1;SXMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.946;48.5895;;;; +;;;;;;;;FRLMSP1000085383;FR*SOD*S*CUGN*90*1*_*_;IONITY Montpellier Saint Aunès;;77 Rue du 329ème - le Havre;;[0.934779, 49.103352];;FRS89EFNNC1;YEQX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.4086;48.4972;;;; +;;;;;;;;FRLMSP1000098824;FR*SOD*S*CUGN*89*1*_*_;IONITY Morières;;Rue Noir Pel - Sainte-Adresse;;[1.420204,49.246692];;FRS89ELXQZ1;YEEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8437;48.447748;;;; +;;;;;;;;FRLMSP1000098823;FR*SOD*S*CUGN*88*1*_*_;IONITY Mornas Les Adrets;;16 rue du le petit trecelin 22240 plevenon;;[0.775525, 49.080689];;FRS89ENGKZ1;SYMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8961;48.578039;;;; +;;;;;;;;FRLMSP1000098822;FR*SOD*S*CUGN*103*1*_*_;IONITY Saint Laurent;;la matz, 22490 Plouer-sur-rance;;[1.160346,49.024055];;FRS89EVMEP4;WKGF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.739262;48.45428;;;; +;;;;;;;;FRLMSP1000098821;FR*SOD*S*CUGN*87*1*_*_;IONITY Mouxy;;18 Impasse de l’Ambre 13210 Saint-Rémy-de-Provence;;[1.199589,48.770538];;FRS89EEZBT1;VSWL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.622318;48.444874;;;; +;;;;;;;;FRLMSP1000081540;FR*SOD*S*CUGN*111*2*_*_;IONITY Mornas Village;;450 Rte de Nîmes, 34920 Le Crès;;[0.937233,48.962291];;FRS89ENWRQ1;VSWL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.66004;48.483286;;;; +;;;;;;;;FRLMSP1000118148;FR*SOD*S*CUGN*119*1*_*_;IONITY Orléans Nord;;Rue Roque Segui, 34420 Villeneuve-lès-Béziers;;[0.937161,48.962303];;FRS89EPKZS2;WKGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.566207;48.499449;;;; +;;;;;;;;FRLMSP1000118149;FR*SOD*S*CUGN*118*1*_*_;IONITY Poitou Charentes;;ZAC du Mas de Grille, All. Pierre Lazareff, 34430 Saint-Jean-de-Védas;;[0.91013, 49.150593];;FRS89EBPFN2;YPBF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.569545;48.500395;;;; +;;;;;;;;FRLMSP1000118128;FR*SOD*S*CUGN*116*1*_*_;IONITY Rosny Nord;;89 RUE MALIFAUD;;[0.531146, 49.008319];;FRS89EFXNU2;LJGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.50141;48.480022;;;; +;;;;;;;;FRLMSP1000130105;FR*SOD*S*CUGN*114*2*_*_;IONITY Rodez;;RUE DE LA COUTURE;;[0.480734, 48.938426];;FRS89EXCDT1;FYVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.451822;48.584835;;;; +;;;;;;;;FRLMSP1000130104;FR*SOD*S*CUGN*113*2*_*_;IONITY Rely;;1 place du soldat inconnu 62100 Calais;;[1.4435619, 48.9256673];;FRS89EAALD2;NMXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.815633;48.569703;;;; +;;;;;;;;FRLMSP1000130103;FR*SOD*S*CUGN*112*1*_*_;IONITY Pamiers;;19 bis Chaussée Brunehaut 62120 Rely;;[1.123976, 49.017093];;FRS89EAALD1;NMXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.50647;48.574109;;;; +;;;;;;;;FRLMSP1000130113;FR*SOD*S*CUGN*111*1*_*_;IONITY Mâcon Saint-Albain;;920 Avenue Pierre de Coubertin 62100 Calais;;[1.34989, 49.163115];;FRS89EQAKU1;HARG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.673311;48.480564;;;; +;;;;;;;;FRLMSP1000130112;FR*SOD*S*CUGN*109*1*_*_;IONITY Portes d'Angers Sud;;Place Danton;;[0.66299, 48.946159];;FRS89EQAKU2;AKPE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.529611;48.533034;;;; +;;;;;;;;FRLMSP1000130111;FR*SOD*S*CUGN*108*1*_*_;IONITY Poitiers Jaunay-Clan;;Stade Océane - Le Havre;;[1.1993813, 48.7702458];;FRS89EVMEP1;SWLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.774703;48.539439;;;; +;;;;;;;;FRLMSP1000118151;FR*SOD*S*CUGN*106*1*_*_;IONITY Poitiers Chincé;;Les Régates - Rue du Beau Panorama;;[1.19461, 48.778359];;FRS89EVNNH1;REFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.461325;43.829884;;;; +;;;;;;;;FRLARESERVEDERILHAT;FR*SOD*S*CUGN*105*1*_*_;IONITY Perigueux Sud;;Foch;;[1.179005, 49.320468];;FRS89EVRFW1;MVGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.604733;43.815137;;;; +;;;;;;;;FRLUMERHONEAVACQUEYRAS11;FR*SOD*S*CUGN*104*1*_*_;IONITY Pech Montat Ouest;;Rue Paul Doumer (Gare Fleurville);;[1.123975, 49.017093];;FRS89EXZKR1;FMDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.052629;50.1989359;;;; +;;;;;;;;FRLUMEAUBERGEESCARGOTDOR11;FR*SOD*S*CUGN*73*1*_*_;IONITY Pech Montat Est;;Route d'Oudalle Parking covoiturage;;[1.352788, 49.174165];;FRS89EXFUE2;VQKG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.041201;45.89067;;;; +;;;;;;;;FRLUMEPERSEDES11;FR*SOD*S*CUGN*72*1*_*_;La jabotte;;Parc des Courtines;;[1.162429, 49.047854];;FRS89ETGMD1;VQKG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.88342;50.7530166;;;; +;;;;;;;;FRLUMEMALIJAI571;FR*SOD*S*CUGN*71*1*_*_;Parking Overchem;;Grand Hameau;;[1.157598, 49.026481];;FRS89EWASS1;JXLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.07568;50.3681097;;;; +;;;;;;;;FRLMSP1000115803;FR*SOD*S*CUGN*70*1*_*_;SAP LABS FRANCE;;Parc relais Schuman;;[1.136316, 49.030257];;FRS89ESHYE1;SVUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1443631;45.16;;;; +;;;;;;;;FRLMSP1000109295;FR*SOD*S*CUGN*69*1*_*_;900034;;Place Abbé Pierre;;[1.17346, 49.025102];;FRS89EVMEP3;ABAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9801575;45.67;;;; +;;;;;;;;FRLMSP1000115806;FR*SOD*S*CUGN*68*1*_*_;900051;;Avenue Président René Coty (Gare Beaulieu);;[0.781506, 48.97842];;FRS89ESHYE2;ABAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.76;48.85;;;; +;;;;;;;;FRLMSP1000120838;FR*SOD*S*CUGN*67*1*_*_;900050;;Stade Oc�ane - Le Havre;;[0.931972, 48.890669];;FRS89EVRFW2;QZDV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.49;48.68;;;; +;;;;;;;;FRLMSP1000109303;FR*SOD*S*CUGN*66*1*_*_;900049;;Les R�gates - Rue du Beau Panorama;;[0.704694, 49.011757];;FRS89EXMTD1;PRMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.61;49.09977;;;; +;;;;;;;;FRLMSP1000115801;FR*SOD*S*CUGN*65*1*_*_;900048;;Place Abb� Pierre;;[0.40543, 49.048847];;FRS89EWMEN1;PZKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.84;48.80759678252247;;;; +;;;;;;;;FRLMSP1000109302;FR*SOD*S*CUGN*64*1*_*_;900047;;Avenue Pr�sident Ren� Coty (Gare Beaulieu);;[1.382675, 49.013925];;FRS89EDMDT1;QZDV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.5397406236702427;46.74;;;; +;;;;;;;;FRLMSP1000109298;FR*SOD*S*CUGN*63*1*_*_;900046;;Georges Brassens - Gonfreville L'Orcher;;[1.612249, 49.23479];;FRFR1EZVGY1;FPEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.56;50.683307;;;; +;;;;;;;;FRLMSP1000109297;FR*SOD*S*CUGN*62*1*_*_;900045;;Gare LER Montivilliers - Pierre Rousseau - Montivilliers;;[1.208506, 49.25786];;FRFR1ENQHP2;VSTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.57223;50.98144;;;; +;;;;;;;;FRLMSP1000115802;FR*SOD*S*CUGN*61*1*_*_;900044;;Pl. Goerges Vavasseur - Le Havre;;[0.975642, 49.260914];;FRFR1EAFNF1;PUFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.58696;50.978392;;;; +;;;;;;;;FRLMSP1000120809;FR*SOD*S*CUGN*60*1*_*_;900043;;5 Rue Henri Matisse - Montivilliers;;[1.478814, 49.29076];;FRFR1EAFNF2;VHGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.579956;50.854477;;;; +;;;;;;;;FRLMSP1000109300;FR*SOD*S*CUGN*59*1*_*_;900042;;Rue du Chemin de Fer - Épouville;;[0.939257, 49.266036];;FRFR1EAFXK1;WFKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.439028;50.763358;;;; +;;;;;;;;FRLMSP1000120836;FR*SOD*S*CUGN*58*1*_*_;900040;;2 Rue Henri Servain Saint-Brieuc;;[1.3175225, 49.1394202];;FRFR1EAHQY2;ADAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.719626;50.6950541;;;; +;;;;;;;;FRLMSP1000120843;FR*SOD*S*CUGN*80*1*_*_;900039;;26 Avenue Chardonnet Rennes;;[0.622742, 49.390881];;FRFR1EAFXK2;RNPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5112803;50.7047;;;; +;;;;;;;;FRLMSP1000109301;FR*SOD*S*CUGN*86*1*_*_;900038;;2 Rue de la Liberté Kintzheim;;[0.817924, 49.35421];;FRFR1EAHPZ1;WGLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.838199;50.731996;;;; +;;;;;;;;FRLMSP1000115800;FR*SOD*S*CUGN*85*1*_*_;900037;;Rue de a légion Kintzheim;;[1.120187, 49.140422];;FRFR1EAHPZ2;MVGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.371528;50.937502;;;; +;;;;;;;;FRLMSP1000115805;FR*SOD*S*CUGN*84*1*_*_;900036;;14 Rue des Chênes Langouet;;[1.22331, 49.231282];;FRFR1EAHQY1;KNBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.535747;50.821335;;;; +;;;;;;;;FRLMSP1000109304;FR*SOD*S*CUGN*83*1*_*_;900035;;16 Allée des Tanneurs Nantes;;[1.217491, 49.27201];;FRFR1EZUXV1;QAQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.485827;50.85458;;;; +;;;;;;;;FRLMSP1000115804;FR*SOD*S*CUGN*82*1*_*_;900067;;Place du Colombier Rennes;;[0.719094, 49.233117];;FRS89EFFSG1;ULDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2037;50.865679;;;; +;;;;;;;;FRLMSP1000120572;FR*SOD*S*CUGN*74*1*_*_;900066;;1 rue de Marengo Cholet;;[0.874672, 49.299502];;FRFR1EZUXV2;CHUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.327481;50.802375;;;; +;;;;;;;;FRLMSP1000120840;FR*SOD*S*CUGN*81*1*_*_;900065;;26 Av. Chardonnet Rennes;;[0.922083, 49.290671];;FRFR1EZVGY2;CHUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.482586;50.906956;;;; +;;;;;;;;FRLMSP1000109296;FR*SOD*S*CUGN*79*1*_*_;900064;;335 Chem. de la Guiramande Aix-en-Provence;;[1.128076, 49.021025];;FRFR1EZXQN2;WGLN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.218332;50.803349;;;; +;;;;;;;;FRLMSP1000120841;FR*SOD*S*CUGN*76*1*_*_;900063;;100 avenue Gérard Rouvière Castelnaudary;;[1.087785, 49.006973];;FRS89EEZBT2;DWVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3338;50.953773;;;; +;;;;;;;;FRLMSP1000120574;FR*SOD*S*CUGN*75*1*_*_;900062;;244, chemin Rivière de la Cour;;[0.525036, 49.467521];;FRS89ELXEH1;EHMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.292657;50.662418;;;; +;;;;;;;;FRFR1EHYAP;FR*SOD*S*CUGN*77*1*_*_;900061;;Parc de la Baie;;[0.731554, 49.378795];;FRS89ECZWL1;EFNB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.438116;50.662605;;;; +;;;;;;;;FRLODPCANDAS80150;FR*SOD*S*CUGN*78*1*_*_;900060;;25 rue du May;;[6.16177, 48.622033];;FRS89EGPBF2;FEZX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.435338;50.692044196;;;; +;;;;;;;;FRLUMEHOTELGRANDVINS11;01F5DSBVJZZC31QQFGBD9V703S;900059;;67 RUE DE LILLE;;[6.145994, 48.649043];;FRS89EMJRX1;FEZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.403771613;50.673799;;;; +;;;;;;;;FRLUMERHONEARASTEAU11;01F53GETJK68P92WZKVHQB410M;900058;;Rd 810 40230 Saint vincent de tyrosse;;[6.194121, 48.649816];;FRS89EQZGT2;DMNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.485248;50.74009832050729;;;; +;;;;;;;;FRLUMESERJAC11;01F8YH73V8G9RJTD3QKSPN7EHH;900057;;Le nouveau port la Capitainerie;;[5.77921, 49.289143];;FRS89EVNNH2;SMPD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.732645211404826;50.729624;;;; +;;;;;;;;FRLUMESERJAC51;01F8WSV27RK8ZG8QTW59R62GXJ;900056;;92, rue du Port 93300;;[6.175381, 48.689914];;FRS89EHNMA2;YETN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.735218;50.8310526;;;; +;;;;;;;;FRE10E14296;01F8T2FRWRBSCX49CB10H85MSR;900055;;PALAGACCIO 20200 VILLE-DI-PIETRABUGNO;;[5.900021, 49.311222];;FRS89EYMHQ1;YEUF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.411181453;50.776769;;;; +;;;;;;;;FRLUMEMAISONCONSULS11;01F859RCGP1001KQFE2HT52P08;900054;;ROUTE DE SAINT-CYPRIEN 66200 LATOUR-BAS-ELNE;;[5.75571, 49.388744];;FRS89EUSZM1;YEUF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.554092;50.964838;;;; +;;;;;;;;FRLUMEHOTELPROMOTEL11;01F9VBZH9QQ087R6AHJGRZCS32;900053;;Route de Bordeaux 33740 Arès;;[5.804458, 49.321175];;FRS89ERNBX1;QQQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.410667;50.808909;;;; +;;;;;;;;FRLUMEBRITHOTELLODGEGOLF11;01FA86M5NKT9P6C71SQE853AXK;900052;;La Tourterelle 17700 Saint Georges du Bois;;[6.092196, 48.618467];;FRS89EABDK1;GMHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.588377;50.71188;;;; +;;;;;;;;FRAU1E0033021;01FGHJ43ZN752K332T9ZQ06WE7;900017;;1026 avenue de Chalon;;[5.905749, 49.366657];;FRS89EGCLF1;GMHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.544553;50.700998;;;; +;;;;;;;;FRZPEE22AC139321;01FADS2AAVMMH12VRNGNNYWZP2;900033;;6 Place Ravezies 33075 BORDEAUX;;[6.497805, 48.588446];;FRS89EQMQG2;GFMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.780455;50.83198;;;; +;;;;;;;;FRZPEE22AC139319;01FNH8RBENK0CX64NN9C35KG0C;900008;;ZA du Clos des Mares;;[6.099536, 48.614155];;FRS89EKPZS1;GFMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.255397;50.651226;;;; +;;;;;;;;FRZPEE22AC139322;87e0fb5a-e591-11eb-ba80-0242ac130004;900015;;8 bis rue andré Marie Am;;[6.489047, 48.598501];;FRS89EBMTE1;GLNR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.466566;50.838903;;;; +;;;;;;;;FRZPEE22AC139320;01F8FTNQGRJP9Q0HNT5NS7X46E;900014;;31 impasse Leon Foucaut;;[6.694515, 48.487852];;FRS89EWPAY1;HXNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.51196;50.659622;;;; +;;;;;;;;FRE386700021;I2b54Cy8vKqo9WEj;900013;;42 chemin de la Pinede 13220 Bouc Bel Air;;[5.902419, 49.415974];;FRS89EACUK1;HXNY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.671506;50.723262;;;; +;;;;;;;;FRE743300021;4CCKnFCY8U2uylb5;900012;;3 E Chemin des Granettes 13700 Marignane;;[6.500003, 48.591825];;FRS89EAHKV1;HYPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.538045;50.724579;;;; +;;;;;;;;FRE743300031;UwSoXsOi5pgnBv6v;900011;;468 RUE RENE CAILLOUX 13730 SAINT-VICTORET;;[6.503267, 48.59336];;FRS89EHJFJ1;HXJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.53162;50.717873;;;; +;;;;;;;;FRE748000011;fi7vdCwDjFxo33hy;900010;;23 RUE DU CHEMIN DES DAMES 02860 CHAMOUILLE;;[6.489549, 48.591508];;FRS89EUMEU1;QSMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.543917;50.720173;;;; +;;;;;;;;FRE743300041;xGfWIPAZlN7u8UJo;900009;;1 Rue de l'Industrie 69530 BRIGNAIS (69);;[6.495991, 48.592458];;FRS89EMELH2;HXJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.534213;50.72863;;;; +;;;;;;;;FRE743300051;0DVclECBKGtnYiS6;900007;;1037 Route du Lac 40160 PARENTIS-EN-BORN (40);;[6.468064, 48.562346];;FRS89EJGKF1;QMPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.54217;50.722557;;;; +;;;;;;;;FRE386700011;XyY44xK0AHa1J7UY;900006;;1333 route de julienas 71570 la chapelle de guinchay;;[6.188514, 48.684557];;FRS89EHDWH1;QMPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.533966;50.714951;;;; +;;;;;;;;FRE743300011;17ZCKMgZhiYo711M;900005;;Avenue Raoul Briquet 62300 Lens;;[6.183827, 48.695024];;FRS89EENHA1;QMBD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.532066;50.732689;;;; +;;;;;;;;FRE783700011;vJFchjZUzBsZL49F;900004;;RUE PLACIDE MONCHY;;[6.185137, 48.692368];;FRS89EYSAV1;HYPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.539142;50.73027;;;; +;;;;;;;;FRE7496000244;5qLx81vZcVOGEK2t;900003;;168 Route De Cannes 06130 Grasse;;[5.930792, 49.429157];;FRS89EEDJQ2;GLNR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.530926;50.778912;;;; +;;;;;;;;FRE749600061;VAgkznsuvjrdxV0O;900002;;110 RUE JEAN JAURES;;[6.173022, 48.689762];;FRS89EMJHX1;GFFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.552611;50.79972162723;;;; +;;;;;;;;FRE749600051;6mZpoAbF5sDDkgX3;900001;;7 rue Guillaume Schoettke 57200 Sarreguemines;;[6.177347, 48.687977];;FRS89ESVMK1;XSSV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.596091;50.78763;;;; +;;;;;;;;FRE749600031;SH5hm2ErazrPtOSE;900068;;1500 route de Saint Gilles 30000 NIMES;;[6.175165, 48.690281];;FRS89EDRJU1;UWVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.69124819564;50.880845;;;; +;;;;;;;;FRE783700021;cy4MFwyC09BkgYyU;900016;;PARKING PÔLE MÉDICAL;;[5.741943, 49.293346];;FRS89EKGWQ1;QWXK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.460441;50.883458;;;; +;;;;;;;;FRE386700032;lsMbBg9W69bdLlqE;900018;;BVD CARNOT;;[6.17407, 48.686047];;FRS89EMYUA1;UWVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.46799;50.833367;;;; +;;;;;;;;FRE748000021;8c0GQLN1K6qkMWE1;900032;;PLACE DU CENTRE;;[6.739727, 48.443202];;FRS89EMXEQ1;QWKJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.467585;50.831585;;;; +;;;;;;;;FRE748000031;pfm6SBqsE3WmWTx8;900031;;PARKING RUE DE LHÔPITAL;;[6.196215, 48.694878];;FRS89EWPGG1;RMBJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.212967;49.483216;;;; +;;;;;;;;FRE749600011;fBNB5cBnAGB5nFxY;900030;;RUE DE BEL AIR;;[6.225206, 48.702408];;FRS89ETGMD2;QWKJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.20967;49.48322;;;; +;;;;;;;;FRE010000011;EbH6KCYFHUQJyn6U;900029;;PARKING COUR DU VERGER;;[5.834023, 49.327763];;FRS89EEMDA2;QYYP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.15306;45.839515;;;; +;;;;;;;;FRE010000021;4N63AAlnrEhcABRu;900028;;PARKING SALLE ESTRAN;;[5.930843, 49.324322];;FRS89EAKLP2;QYYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.153293;46.188104;;;; +;;;;;;;;FRLUMECABRIESGOLF11;01F8CNY449635PQP70P14WCRVE;900027;;RUE DU BEL ORIENT;;[6.052047, 48.883568];;FRS89EVMEP2;QSMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.153177;46.238674;;;; +;;;;;;;;FRLUMELEPROVENCE11;EVB-P1929472;900026;;PLACE DU GÉNÉRAL DE GAULLE;;[6.068884, 48.842911];;FRS89EHNMA1;QYAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.911452;46.174744;;;; +;;;;;;;;FRLUMEFASTHOTELPERPIGNANSUD11;EVB-P2020524;900025;;PLACE JULIEN TANGUY;;[6.133857, 48.699406];;FRS89EUSZM2;QYAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.427356;46.3057547;;;; +;;;;;;;;FRLUMERHONEAVISAN11;EVB-P1950568;900024;;PARKING SALLE DE TENNIS;;[6.199602, 48.69315];;FRS89EEMDA1;VHQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.483527;46.11916513058057;;;; +;;;;;;;;FRE000022846774;01F6P97EN7T7KCMJ44GDQMYTN9;900023;;LE PORT;;[6.142407, 48.698059];;FRS89EAKLP1;GFFY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.485976;46.325814;;;; +;;;;;;;;FRA68P68021009;01F6P8C71C4B2XV55S4T3C552Z;900022;;ROUTE DE PAIMPOL;;[6.22903, 48.658569];;FRS89EHKUN2;GFGK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.67012069;46.204309;;;; +;;;;;;;;FRA42P1200020003;01F7QQZ82AF36GR8935SM9H2SQ;900021;;PORT PLACE DU PILOTE FROMONT;;[6.250865, 48.702171];;FRS89EWASS2;GFGK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6307987051364758;45.95685385044865;;;; +;;;;;;;;FRLUMERHONEABEAUMESVENISE11;01FHWQ8RECFE028717E5Y5123P;900020;;RUE DES ETANGS;;[6.252662, 48.707504];;FRS89EXFUE1;QQQC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.908169;46.1613543;;;; +;;;;;;;;FRLUMECHAUMIERE11;FR*EZD*E20883, FR*EZD*E20884;900019;;PARKING RTE DE ST-BRIEUC;;[6.180104, 48.645809];;FRS89EQARL2;QLWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.7562378;46.168328;;;; +;;;;;;;;FRZMAE22AC50637;FR*EZD*E95818, FR*EZD*E95819;900110;;PLACE DES ANCIENS COMBATTANTS;;[6.209852, 48.694763];;FRS89EXZKR2;YETN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.1752391966838003;46.38979827128929;;;; +;;;;;;;;FRZMAE22AC50650;FR*EZD*E20881, FR*EZD*E20882;900117;;RUE MONTANGUE;;[6.607995, 48.531142];;FRS89EHXMS2;QJSE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8728709;45.954984;;;; +;;;;;;;;FRS50P50416001;FR*EZD*E28314, FR*EZD*E28315;900116;;RUE BEAULIEU;;[6.62415, 48.506082];;FRS89EQARL1;PZPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.872105;46.18066;;;; +;;;;;;;;FRS50P50440001;FR*EZD*E28312, FR*EZD*E28313;900115;;PLACE RIOUST DES VILLES AUDRAIN;;[6.651412, 48.611865];;FRS89EGCBX1;PWMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.621857810756655;46.16619;;;; +;;;;;;;;FRS50P50410002;FR*EZD*E20771, FR*EZD*E20772;900114;;RUE CHATEAUBRIAND;;[6.732776, 48.481303];;FRS89EHXMS1;PZBX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.757261;46.13929;;;; +;;;;;;;;FRS50P50190001;FR*EZD*E66784, FR*EZD*E66785;900113;;PARKING CITÉ PARK NEVEZ;;[6.691154, 48.473567];;FRS89EEZRV1;PZPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.87458;46.182498;;;; +;;;;;;;;FRS50P50360001;EVB-P1950759;900112;;PARKING RUE DE LA GARE;;[6.44907, 48.52959];;FRS89EDWDP1;PZBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.852937;46.127182;;;; +;;;;;;;;FRS50P54429001;4b05a334-d486-4efa-8d17-53cc7bf6c802;900111;;PARKING MAISON DES ASSOCIATIONS;;[6.735212, 48.444032];;FRS89EUMUR1;SMVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.915143;46.18043243312804;;;; +;;;;;;;;FRS50P50407001;EVB-DC439800001-B;900118;;PLACE DARMES;;[6.741191, 48.528566];;FRS89EHKUN1;PXJL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.84716;46.23622541263118;;;; +;;;;;;;;FRS50P50880001;EVB-DC439800001;900109;;PARKING DERRIÈRE LA POSTE;;[6.529493, 48.596794];;FRFR1EGQHM1;PWVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.889585;46.16018464709621;;;; +;;;;;;;;FRS50P504101;EVB-P21011574;900108;;RUE DU MOULIN;;[5.897909, 48.528022];;FRFR1EGQHM2;PWVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3282017747338646;45.99788844986339;;;; +;;;;;;;;FRS50P50170001;FR*EZD*E63395, FR*EZD*E63396;900107;;PLACE DE L EGLISE;;[6.729624, 48.517423];;FRFR1ESFLA2;SMVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.4864876938733127;45.906877456491365;;;; +;;;;;;;;FRS50P505651;ef41eefd-d7cd-49b0-95e2-e42df95067c2;900106;;PLACE HOTEL DE VILLE;;[6.753659, 48.515558];;FRFR1EQPUQ1;PXJL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6472792580972633;46.02618636026654;;;; +;;;;;;;;FRS50P50580001;269ecab2-053a-4ddc-8014-4fe697de6575;900105;;PARKING PLACE DE LA PAIX;;[6.766798, 48.509037];;FRFR1EHQUA2;YEEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.849796138345705;46.349311090103754;;;; +;;;;;;;;FRS50P50416002;6decf4b8-3df0-462d-a1d6-efd5f0205801;900104;;PLACE ROGER MADIGOU;;[6.749424, 48.497579];;FRFR1EHEBH1;YEQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0335378347450135;46.180882164981234;;;; +;;;;;;;;FRS50P50630001;20ea95e8-34da-49b6-8b26-6d3014bcdf77;900103;;RUE ST GONERY;;[6.792528, 48.429512];;FRFR1EHFQA2;QBMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.500372319177679;45.94935937360538;;;; +;;;;;;;;FRS50P50660001;0c8de5ae-6f74-4e5c-be01-a973eec643f3;900119;;PARKING BARZIC;;[6.810074, 48.412013];;FRFR1EHSAR1;SYMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2148780297956265;46.17376;;;; +;;;;;;;;FRS50P50760001;FR*EZD*E38638,FR*EZD*E38639;900102;;PLACE ANGELE DUVAL;;[5.891198, 49.366949];;FRFR1EKEMV2;QAWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0860594190967117;46.19073258470734;;;; +;;;;;;;;FRS50P50410001;FR*EZD*E63049,FR*EZD*E63050,FR*EZD*E63057,FR*EZD*E63058;900128;;PARKING ROUTE DARVOR;;[6.655137, 48.497517];;FRFR1EHFVR1;PWMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.7558725880278507;46.17599486200176;;;; +;;;;;;;;FRS50P50600001;FR*EZD*E63047,FR*EZD*E63048,FR*EZD*E93917,FR*EZD*E93918,FR*EZD*E63053,FR*EZD*E63054;Z19Z1003;;CENTRE COMMERCIAL LES CHARDONS;;[6.322902, 48.468331];;FRFR1EHFDM1;QBMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.878921;45.98220366857867;;;; +;;;;;;;;FRS50P50600002;FR*EZD*E45697,FR*EZD*E45709;900069;;RUE MAURICE DENIS;;[6.132647, 48.771853];;FRFR1EHFDM2;FNRY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.239653001754647;45.954558314194834;;;; +;;;;;;;;FRS50P50359001;FR*EZD*E20869,FR*EZD*E20870;900131;;PLACE F.MITTERAND;;[6.235897, 48.651288];;FRFR1EHFQA1;QJSE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.4832416152564285;45.86830223684359;;;; +;;;;;;;;FRS50P50590002;FR*EZD*E63031, FR*EZD*E63032, FR*EZD*E112993, FR*EZD*E112994;900130;;PARKING DES FONTAINES;;[6.601472, 48.589796];;FRFR1EHFVR2;QLFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.297630254367735;45.884709957957774;;;; +;;;;;;;;FRS50P50341001;FR*EZD*E45695;801004;;PARKING PLACE DU PEILLET;;[6.500923, 48.603982];;FRFR1EQPUQ2;QLWW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.756224684351945;46.14672358923505;;;; +;;;;;;;;FRS50P50294001;FR*EZD*E38632,FR*EZD*E38633;801003;;RUE BERTRAND DU GUESGLIN;;[6.167017, 48.735001];;FRFR1EHYLG2;QHYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3670760395894566;46.35557415488703;;;; +;;;;;;;;FRS50P50292001;FR*EZD*E28306,FR*EZD*E28307;4000xx;;RUE DES ORMELETS;;[6.145511, 48.779856];;FRFR1EQPUQ3;QDPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.171941051048165;45.891181;;;; +;;;;;;;;FRS50P502921;FR*EZD*E28298,FR*EZD*E28299;900129;;SAINTE ANNE;;[5.908144, 48.545392];;FRFR1EHFUM2;QHYQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.5128909982581737;45.66573707254592;;;; +;;;;;;;;FRS50P50267001;FR*EZD*E26669, FR*EZD*E26670;900127;;PARKING PHARMACIE;;[5.871263, 48.651079];;FRFR1EHFUM1;QDPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9928695454171546;45.69499463422594;;;; +;;;;;;;;FRS50P50430001;FR*EZD*E20775,FR*EZD*E20776;900126;;PLACE - RUE DAVAUGOUR;;[6.113954, 48.937585];;FRFR1EKMVT2;QAWE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8223994;45.695593468232566;;;; +;;;;;;;;FRS50P50340002;FR*EZD*E20873, FR*EZD*E20874,fr*ezd*e45685;900125;;RUE CLÉMENCEAU;;[6.813043, 48.466942];;FRFR1EKMVT1;FPUG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.1783557363561291;45.81890347412459;;;; +;;;;;;;;FRS50P50340004;FR*EZD*E63135,FR*EZD*E63136;900123;;PLACE SALLE MUNICIPALE;;[6.79138, 48.419586];;FRFR1EKLMU2;QMBD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.3599166241627683;45.77393371624896;;;; +;;;;;;;;FRS50P50640001;FR*EZD*E139858;900122;;RUE DE KER ILIZ;;[6.550392, 48.463424];;FRFR1EKLZM2;XQEX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.3599526215855915;45.649438783139665;;;; +;;;;;;;;FRS50P50570001;VRT_NB_1290;900121;;PLACE JEAN HEURTEL;;[6.632634, 48.519024];;FRFR1EKLZM1;FPUG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.3987681673214218;46.215996601383644;;;; +;;;;;;;;FRS50P50320002;FR*EZD*E38642, FR*EZD*E38643;900120;;PARKING NORD DE LATELIER;;[6.541528, 48.529466];;FRFR1EKPCT1;FNRY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4212213179604373;45.63648835730188;;;; +;;;;;;;;FRS50P50250001;88d84b13-12ae-459d-be60-d0c8be6977f3;900101;;PARKING GRANDE RUE;;[6.650546, 48.58364];;FRFR1EHSAR2;QLFW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.8102565057215653;45.630872003921496;;;; +;;;;;;;;FRS50P505431;8d950c44-4813-44df-bbf8-ecb35ffc2859;900077;;RUE DES PROMENADES;;[6.499564, 48.567491];;FRFR1EHYLG1;VHGW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7065045195933709;45.747334026242;;;; +;;;;;;;;FRS50P50530001;30de7846-e85b-419c-b0cf-66ac32882c76;900084;;LA GARE;;[6.439919, 48.600135];;FRFR1EFSJB1;TJVP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6519199081168063;45.82190628951172;;;; +;;;;;;;;FRS50P50720001;e8f85317-d544-4bff-b9ab-04bb6c6cbc13;900083;;D712;;[6.5098, 48.4952];;FRFR1EHDAY1;MZCA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.65387764005573;45.911275008898585;;;; +;;;;;;;;FRS50P50800002;11056a14-b43f-4cd2-9122-069014db6366;900082;;RUE DE LAPOTHICAIRE;;[6.4859, 48.6548];;FRFR1EHJZM1;JUAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.62630408112066;45.74751971845;;;; +;;;;;;;;FRS50P505621;83577307-cd5a-45aa-8ca4-733c20281019;900081;;PARKING DU PÈRE ÉTERNEL;;[6.3871, 48.5571];;FRFR1EFGQR1;JMMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5041785690753205;45.747376507523;;;; +;;;;;;;;FRS50P50420001;FRFR1ETSEA1;900080;;LOT COMMERCIAL;;[6.946, 48.5813];;FRFR1EWRLX1;AXVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.275995989093295;45.913211767345;;;; +;;;;;;;;FRS50P50602001;FRFR1EDDVK1;900079;;RUE DE BROONS;;[6.4086, 48.5553];;FRFR1EXYXU1;VKTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.62630694441728;45.914137353729;;;; +;;;;;;;;FRS50P50602002;a4d3dd36-f16b-4b9c-98ed-f94a4167ee0d;900078;;BOULEVARD DU HARAS;;[6.8437, 48.5895];;FRFR1EJMPM1;VNLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.62625527113986;45.71501882195449;;;; +;;;;;;;;FRS50P50602003;EVB-P2011356;900076;;RUE DU LÉGUÉ;;[6.8961, 48.4972];;FRFR1EVKKA1;VQRT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2790864928722;45.821925401611395;;;; +;;;;;;;;FRS50P50602004;bd7e3b48-e320-4bcf-bc15-fe4445eb4c79;900085;;PARKING RUE DEROYER;;[6.739262, 48.447748];;FRFR1EFARP1;VYFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.2774393191812;45.90195661936574;;;; +;;;;;;;;FRS50P50800003;8e2b8b94-f7e1-448c-a59d-b4892291f841;900075;;RUE COURTELINE;;[6.622318, 48.578039];;FRFR1EEYVE1;VAVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6153411820000854;45.766535193830144;;;; +;;;;;;;;FRS50P50150001;c7496279-027a-404b-807e-cf5f96df4241;900074;;RUE DE TOURNEBRIDE;;[6.66004, 48.45428];;FRFR1EFFEK1;VUEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5041850689776732;45.63849905619226;;;; +;;;;;;;;FRS50P50001001;3e298fae-ca66-4a7c-90ea-17ad42757373;900073;;PARKING DES URSULINES;;[6.566207, 48.444874];;FRFR1EBHBX1;VVMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.300627496124425;45.64778425286908;;;; +;;;;;;;;FRS50P50180002;1323dcbe-58b8-4150-877f-8df9576fc5d8;900072;;PARKING DE LAÉROPORT;;[6.569545, 48.483286];;FRFR1EAVPD1;VDPE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7085456582039972;44.80124139894823;;;; +;;;;;;;;FRS50P50180001;c5dde61a-ba15-42a5-bd7d-938dcbe2efe8;900071;;PÔLE PHOÉNIX;;[6.50141, 48.499449];;FRFR1ETREN1;UETC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6868473485416821;43.8355022;;;; +;;;;;;;;FRS50P50003001;b2c99b0d-0ca6-4ff0-a555-1d977e0db35c;900070;;RUE LOUIS PRIGENT;;[6.451822, 48.500395];;FRFR1ERTHK1;UETC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5025035630102878;43.88528;;;; +;;;;;;;;FRS50P50025001;56c3a7fd-0f7d-4345-951a-e5641db4a5f0;900093;;ZONE DU TRISKELL;;[6.815633, 48.480022];;FRFR1ESMAQ1;VUFX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5108443014957409;44.517525;;;; +;;;;;;;;FRS50P50025002;3ac50120-44a2-43b4-9bf8-1827e87ae861;900100;;RUE SAINT YVES;;[6.50647, 48.584835];;FRFR1EZGZX1;WFNL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.0655256;44.205605;;;; +;;;;;;;;FRS50P50550001;49fb63ee-2b4d-4c15-ad8a-fd1bcac19c31;900086;;RUE DES MARTYRES;;[6.673311, 48.569703];;FRFR1EAFCF1;WFNL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.14269;44.20274;;;; +;;;;;;;;FRS50P50390001;5d111086-0f3f-4e2c-97fc-a1d839c1fbda;900099;;PLACE DE LÉCOLE;;[6.529611, 48.574109];;FRFR1ERXVA2;JMMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.238577;44.54156;;;; +;;;;;;;;FRS50P50840001;aa2be99e-e896-49b0-9948-4dca327dcc72;900098;;RUE JOSEPH DUPRÉ;;[6.774703, 48.480564];;FRFR1ERXVA1;JUAQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.220807;44.924358;;;; +;;;;;;;;FRS50P50532001;4634c2ea-9655-4f07-81b7-9a0c99b1aef5;900097;;PARKING RUE DU MÉNÉ;;[6.461325, 48.533034];;FRFR1ENFTC1;QCEH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.926388;44.618314;;;; +;;;;;;;;FRS50P505022;bfccb924-10de-414b-90e9-20208967ee22;900096;;PLACE DUGUESCLIN;;[6.604733, 48.539439];;FRFR1EFGFM1;KQLV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.254093;44.87476787;;;; +;;;;;;;;FRS50P505021;71dbeab0-2dff-4a52-bdc6-fc3a114fa3de;900095;;PLACE DU BOURG;;[5.052629, 43.829884];;FRFR1EHDAY2;QFMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.843358;48.52013390000001;;;; +;;;;;;;;FRS50P505023;e5981b93-4ae8-4595-9b8c-f7582b59c5fe;900094;;ROUTE DE PONTIVY;;[5.041201, 43.815137];;FRFR1EKLMU1;QCHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.918739;48.165438;;;; +;;;;;;;;FRS50P505024;559912;900089;;RUE MARCELIN BERTHELOT;;[2.88342, 50.1989359];;FRFR1EKPCT2;QCHX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.67021924;48.167334;;;; +;;;;;;;;FRS50P505027;555724;900092;;RUE DE LA TRAMONTANE;;[6.07568, 45.89067];;FRFR1EKNJP2;QGQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.567508599999986;46.08350074095008;;;; +;;;;;;;;FRS50P505025;333055;900087;;PLACE DU MATRAY;;[3.1443631, 50.7530166];;FRFR1EKNJP1;QHQT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.299371;46.26399717713806;;;; +;;;;;;;;FRS50P505026;562957;900088;;RUE DU TREGOR;;[2.9801575, 50.3681097];;FRFR1EEKLS1;QDPB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.294091;50.7396999;;;; +;;;;;;;;FRS50P50620001;FRECN0148;900090;;BOULEVARD DE LA GARE;;[5.76,45.16];;FRFR1EEKLS2;SQHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.403327536228296;48.125067030488154;;;; +;;;;;;;;FRS50P50240001;FRECN0147;900091;;PARKING PLACE KENNEDY;;[5.49,45.67];;FRFR1EETSV1;SQHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.8401120000162585;14.697624;;;; +;;;;;;;;FRS50P50484001;FR*EZD*E26743, FR*EZD*E8102;MGN - PARKING MAIRIE LUDRES;;PARKING CANTINE SCOLAIRE;;[7.61,48.85];;FRFR1EKGSS1;BBKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1315408;14.601781;;;; +;;;;;;;;FRS50P504731;FR*EZD*E28286, FR*EZD*E28287;MGN - PARKING RELAIS CHU;;RUE DU QUAI;;[7.84,48.68];;FRFR1EKHKC2;BBKZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.7548354193520386;14.607184;;;; +;;;;;;;;FRS50P504581;FRECN0154;MGN - PISCINE MICHEL BERTRAND;;FOYER RURAL;;[-1.07595, 49.09977];;FRFR1EKHKC1;NLZR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.18036;14.60317;;;; +;;;;;;;;FRS50P50680001;FRECN0153;MGN - PARKING MAISON DU TEMPS LIBRE;;PARKING KERMARIA;;[1.5397406236702427, 48.80759678252247];;FRFR1EKHNJ2;NLZR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-60.972756;14.608331;;;; +;;;;;;;;FRS50P50203002;FR*EZD*E20791,FR*EZD*E20792;MGN_CT PULNOY 2;;PLACE PILOTE FROMONT;;[5.56,46.74];;FRFR1EKKMW2;FVPU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.00386;14.472874;;;; +;;;;;;;;FRS50P50203001;58a46859-0222-4f9f-836c-288e576ebe96;COEUR DU PAYS HAUT - VILLE DE JOUDREVILLE;;PLACE DU BOURG COZ;;[2.57223, 50.683307];;FRFR1EKGSS2;WYYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.07342;14.813607;;;; +;;;;;;;;FRS50P50800001;530096e5-2e8c-4396-af14-c2ed1b384914;MGN - PARKING THIERS TAXI 2;;PLACE DU MARÉCHAL FOCH;;[2.58696, 50.98144];;FRFR1EKHNJ1;KQLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.06751;44.24;;;; +;;;;;;;;FRS50P501297;FRECN0158;MGN - PARKING THIERS TAXI 1;;PARKING DEVANT LÉGLISE;;[2.579956, 50.978392];;FRFR1EKGNY1;SLYB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.04232;43.86;;;; +;;;;;;;;FRS50P50860001;FRECN0157;COEUR DU PAYS HAUT - VILLE DE TRUCQUENIEUX;;RUE HENT MEUR;;[2.439028, 50.854477];;FRFR1EKGFC2;SLYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.02208;49.939609399999995;;;; +;;;;;;;;FRS50P50099001;022f219d-9d94-466f-bf6c-bdf122d5ac17;COEUR DU PAYS HAUT - VILLE DE MERCY;;QUAY-ARMEZ;;[2.719626, 50.763358];;FRFR1EKKMW1;VAXK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2;44.868051799999996;;;; +;;;;;;;;FRS50P50099002;FRECN0155;COEUR DU PAYS HAUT - VILLE DE LANDRES;;PARKING RUE DES BRUYÈRES;;[2.5112803, 50.6950541];;FRFR1EKGFC1;VAXK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.9294755000000183;16.0;;;; +;;;;;;;;FRS50P50103001;FRECN0156;COMCOM MOSELLE ET MADON LAFILATURE PARKING NORD;;CHATEAU DE LA ROCHE JAGU;;[2.838199, 50.7047];;FRFR1EKGNY2;PKGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0903127000000001;43.49;;;; +;;;;;;;;FRS50P50290002;ac79fb7e-9741-4cb8-a72c-a7e514190a20;COEUR DU PAYS HAUT - VILLE DE AUDUN LE ROMAN;;RUE DU CAP;;[2.371528, 50.731996];;FRFR1EBTGT1;PKGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.72;44.26;;;; +;;;;;;;;FRS50P50210001;FRFR1EVFWM1;CCTLB LUNEVILLE - PARKING SEMARD;;RUE DU MITAN;;[2.535747, 50.937502];;FRFR1EBTGT2;GTEK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.84;14.62847996;;;; +;;;;;;;;FRS50P501299;FRFR1EVGKF1;COMCOM MOSELLE ET MADON - CENTRE AQUATIQUE NEUVES MAISONS;;RUE DE LA CHESNAY;;[2.485827, 50.821335];;FRFR1EFCFK1;GTEK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.53;14.615813;;;; +;;;;;;;;FRS50P502601;1ba7ddde-5acd-49ce-9d80-826777190bcf;CCTLB LUNEVILLE - PARKING CARMES;;PARKING LA CREPIOU;;[2.2037, 50.85458];;FRFR1EFCFK2;YCNR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.71;14.59493306;;;; +;;;;;;;;FRS50P501294;EVB-DC440500001B;CCTLB AZERAILLES - PARKING RICHEZ;;PARKING RUE DE RENNES;;[2.327481, 50.865679];;FRFR1EFJMJ2;YCNR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.0255406;14.604876;;;; +;;;;;;;;FRS50P5012910;EVB-DC440500001;COEUR DU PAYS HAUT - VILLE DE ERROUVILLE;;RUE DU PARC;;[2.482586, 50.802375];;FRFR1EFSJB2;VDXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.027682;14.616381;;;; +;;;;;;;;FRS50P501298;EVB-P21211892;CCTLB LUNEVILLE - MEDIATHEQUE;;PORT;;[2.218332, 50.906956];;FRFR1EETSV2;VDXE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.04633536;14.612948;;;; +;;;;;;;;FRS50P501291;FR*EZD*E20887,FR*EZD*E20888;CCTLB LUNEVILLE - PISCINE;;RUE DE CHÂTEAUBRIANT;;[2.3338, 50.803349];;FRFR1EXWWC1;KUVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.00997;14.608132;;;; +;;;;;;;;FRS50P501292;FR*EZD*E45643;CCTLB LUNEVILLE - PARKING REMPART;;SQUARE BLANCHET;;[2.292657, 50.953773];;FRFR1EXWWC2;KSVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.0238;14.614933;;;; +;;;;;;;;FRS50P501296;FR*EZD*E45632;CCTLB LUNEVILLE - PARKING LHUILLIER;;ZOOPOLE;;[2.438116, 50.662418];;FRFR1EKXKP1;YDRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-60.99128;14.8023925;;;; +;;;;;;;;FRS50P500871;FR*EZD*E26679,FR*EZD*E26680;CCTLB REHAINVILLIER;;RUE DES PONTS NEUFS;;[2.435338, 50.662605];;FRFR1EJPYT1;YDRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.04941;14.772175;;;; +;;;;;;;;FRS50P50260002;FR*EZD*E45629;MGN - PARKING PICHON;;PLACE DU GOELO;;[2.403771613, 50.692044196];;FRFR1EKEMV1;PSVN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.03312;14.61776;;;; +;;;;;;;;FRS50P50260001;FR*EZD*E65528, FR*EZD*E65529;MGN - PARKING VAUDEMONT;;PLACE DE LA CARRIERE;;[2.485248, 50.673799];;FRFR1EHEBH2;PSVN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.2253515;14.631557;;;; +;;;;;;;;FRS50P50290001;f8fd8ac0-e00a-49ff-be60-0f8e71aa039a;MGN - PARKING STANISLAS;;PARKING GRUS MOLLET;;[2.732645211404826, 50.74009832050729];;FRFR1EHQUA1;VEMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.13439;14.603169;;;; +;;;;;;;;FRS50P50370001;662f53b3-4e71-4281-8b5b-979a06521abc;COEUR DU PAYS HAUT - VILLE DE CRUSNES;;ZAC DE KERGOET;;[2.735218, 50.729624];;FRFR1EKQRX2;TFUP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.02603;14.609692;;;; +;;;;;;;;FRS50P50340001;WABD1;MGN - PARKING ST LEON;;ZA DE GOASNEL;;[2.411181453, 50.8310526];;FRFR1EKQRV2;TFUP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-60.99089;14.615527;;;; +;;;;;;;;FRS50P50270002;5897d2b1-12d6-4d32-aaaf-5bcaa294fd40;MGN - PARKING REPUBLIQUE;;ZA DE LA HERONNIERE;;[2.554092, 50.776769];;FRFR1EKQRV1;TFVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.04474;16.26;;;; +;;;;;;;;FRS50P50031001;35840;MGN - PARKING THIERS;;RUE SAINT-ERNEL;;[2.410667, 50.964838];;FRFR1EKQRX1;ZAHP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-60.99684;16.2;;;; +;;;;;;;;FRS50P50270001;45135;COEUR DU PAYS HAUT - VILLE DE BOULIGNY;;RUE LA TOUR DAUVERGNE;;[2.588377, 50.808909];;FRFR1EJPYT2;PDLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.08122;43.39;;;; +;;;;;;;;FRS50P50025003;45134;MGN - PARKING KENNEDY;;MOULINS AUX PRÊTRES;;[2.544553, 50.71188];;FRFR1EKXKP2;GMLB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.52;43.71;;;; +;;;;;;;;FRS50P501293;45107;CCTLB BACCARAT - MEDIATHEQUE;;RUE DE LA FONTAINE BLANCHE;;[2.780455, 50.700998];;FRFR1ESCEE1;ZEHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.61;43.4359393;;;; +;;;;;;;;FRS50P501295;45106;MGN - PARKING DEUX RIVES;;QUAI DE LÉON;;[2.255397, 50.83198];;FRFR1EMXAC2;ZEHZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.43;43.307852;;;; +;;;;;;;;FRS50P50890001;49430;MGN_PARKING RELAIS MOUZIMPRE;;PLACE LYAUTEY;;[2.466566, 50.651226];;FRFR1EMXAC1;ZEPP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2414326;43.4805;;;; +;;;;;;;;FRS50P50450001;60973;COEUR DU PAYS HAUT - VILLE DE MONT BONVILLERS;;ANSE DE SAINT-GILDAS;;[2.51196, 50.838903];;FRFR1EXXJY2;ZEPP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.5835336;44.1805000305;;;; +;;;;;;;;FRS50P50610001;VRT_NB_935, VRT_NB_936;COEUR DU PAYS HAUT - VILLE DE TRIEUX;;VENELLE DU FOUR À PAIN;;[2.671506, 50.659622];;FRFR1EXXJY1;ZAHP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.70058;29.29117;;;; +;;;;;;;;FRS50P50540001;VRT_NB_1392;VILLE DE BLENOD LES PONT A MOUSSON;;PARKING PEN HUELLA GUER;;[2.538045, 50.723262];;FRFR1EXYHW1;TFVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.42928004265;49.1296;;;; +;;;;;;;;FRS50P50540002;VRT_NB_243_2;VILLE DE DIEULOUARD;;RÉSIDENCE PENN AR REUN;;[2.53162, 50.724579];;FRFR1EXYHW2;VKJB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.14164;44.840481;;;; +;;;;;;;;FRS50P502391;VRT_NB_933;MGN - CC CASCADES LAXOU;;ROUTE DE LARMORIQUE;;[2.543917, 50.717873];;FRFR1EHAFD2;VKJB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.2549;44.84385340000002;;;; +;;;;;;;;FRS50P50590001;FRFR1EAGUA1;MGN - PARKING MAIL DE LHORLOGE;;HENT SANT FIEK;;[2.534213, 50.720173];;FRFR1ESCEE2;NDGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4929901;50.5160463;;;; +;;;;;;;;FRS50P50450002;FRFR1ETHZL1;MGN - PISCINE GENTILLY;;RUE DE PLOUGUERNEAU;;[2.54217, 50.72863];;FRFR1EHAFD1;NDGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.48177649999999295;45.8100136;;;; +;;;;;;;;FRS50P502242;FRFR1EZNAS1;MGN - PISCINE LANEUVEVILLE;;RUE DES GOËMONIERS;;[2.533966, 50.722557];;FRFR1EWTNM1;KBFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.6594419;45.7707093;;;; +;;;;;;;;FRS50P502241;FRFR1EAMKA1;MGN - VILLE DE PULNOY;;ROUTE DE DAOULAS;;[2.532066, 50.714951];;FRFR1EGKUM1;KBFK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7644623;45.7582275;;;; +;;;;;;;;FRS50P50400002;627644eb-6bb8-4745-a77f-f7ae247ea5ef;MGN_CT PULNOY 1;;RUE DE LA CÔTÉ DES LÉGENDES;;[2.539142, 50.720173];;FRFR1ERBFH1;QFMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.0276404;50.6526966;;;; +;;;;;;;;FRS50P50400001;adcda78d-e497-4203-b3fb-2523c6c1a318;MGN - PARKING GARE DE HOUDEMONT;;ROUTE DE PLABENNEC;;[2.530926, 50.732689];;FRFR1EKLNW1;QDPB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8523063;50.5461921;;;; +;;;;;;;;FRS50P502182;c30424e7-d903-4ac3-911d-591e97f68a90;MGN - PARKING ASNL MARCEL PICOT;;RUE DE LA CROIX DE MISSION;;[2.552611, 50.73027];;FRFR1ENMEM2;QGUG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1279332;43.5818178;;;; +;;;;;;;;FRS50P502181;3a5df8b8-d48d-4b91-916a-83b756aa1a71;CCTLB ST CLEMENT;;PLACE DE YEALMPTON;;[2.596091, 50.778912];;FRFR1ESFLA1;DRMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0458372;44.21;;;; +;;;;;;;;FRS50P50560001;2c1af022-bfea-4873-95b1-d5b165dc1e3c;CCTLB VATHIMENIL;;PLACE DES GRANDS CHÊNES;;[2.69124819564, 50.79972162723];;FRFR1ECKBM2;VYLC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8840257;45.9008173;;;; +;;;;;;;;FRS50P50560002;b409deba-3e91-4894-9a79-36f781fafd82;CCTLB LANEUVEVILLE AUX BOIS;;AIRE DE COVOITURAGE DE KERAMPAOU;;[2.460441, 50.78763];;FRFR1EPHYT2;AFCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.63;43.321751;;;; +;;;;;;;;FRS50P50320001;f5df4001-c9b8-4e62-908d-ba944e3e0668;CCTLB GELACOURT;;AIRE DE COVOITURAGE DE COAT CONVAL;;[2.46799, 50.880845];;FRFR1EPHYT1;GQFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.1177565;45.5725536;;;; +;;;;;;;;FRS50P50890002;cc4f55cf-8fe3-4362-b680-c3b56f4debba;CCTLB GLONVILLE;;ROUTE DE QUIMPERLÉ;;[2.467585, 50.883458];;FRFR1EDETQ2;MYFT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.3784608;50.6796641;;;; +;;;;;;;;FRS50P50185001;b054404e-eafd-4c89-b189-da392f1483ed;CCTLB LAMATH;;PÔLE DACT KERVIDANOU 3;;[2.212967, 50.833367];;FRFR1EDETQ1;FGHR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.9517688;50.420087;;;; +;;;;;;;;FRS50P50340003;b06856d0-0348-452d-a5d7-69125802d0fe;CCTLB DENEUVRE;;RUE DES PLAGES;;[2.20967, 50.831585];;FRFR1EDEKC1;TCWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0502595;49.105209;;;; +;;;;;;;;FRS50P50173004;3c0a462e-e7db-4207-b678-d0b1a79f41c6;CCTLB PETTONVILLE;;RUE JEAN YVES GUILLARD;;[0.15306, 49.483216];;FRFR1EDKPA1;YJBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.94728;43.7872;;;; +;;;;;;;;FRS50P50173003;d490d47e-bb30-4796-bc2a-42adc1a6eb2a;CCTLB CHANTEHEUX;;PLACE DU POULIET;;[0.153293, 49.48322];;FRFR1ETVEJ2;KFWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.061562;43.5616514180901;;;; +;;;;;;;;FRS50P50173002;f9fe386d-6bd1-4f19-ad8d-4bbe24ba78c8;COMCOM DU PCST - VILLE DE COLOMBEY LES BELLES;;RUE ALBERT LE GRAND;;[0.153177, 49.48322];;FRFR1ETVEJ1;BYEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.06;49.40885526410706;;;; +;;;;;;;;FRS50P50173001;db4771df-c298-4707-a5ae-83008a975d01;CCTLB HABLAINVILLE;;RUE DE PORT MANECH;;[1.911452, 45.839515];;FRFR1EMPAE1;LULB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.8283;48.71728225183364;;;; +;;;;;;;;FRS50P50220001;80229f2d-90d8-4262-864f-e9ee72f0a93f;CCTLB VAXAINVILLE;;RUE DU SCORFF;;[2.427356, 46.188104];;FRFR1EZXAC2;MHGQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.849093334457226;47.46216679205851;;;; +;;;;;;;;FRS50P50350001;bf42daa1-eeb1-42ee-9f3a-e5fe2dad37f1;CCTLB REHERREY;;ROUTE DE DIRINON;;[1.483527, 46.238674];;FRFR1EMPAE2;LCVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.77370505338358;45.819755;;;; +;;;;;;;;FRS50P50710001;d265d636-6dea-4a89-9dda-fdae0a6e4862;CCTLB BROUVILLE;;ROUTE DARGENTON;;[2.485976, 46.174744];;FRFR1EZXAC1;JGCG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.5663550980706784;16.24;;;; +;;;;;;;;FRS50P50690001;14ec007e-3ebd-4ded-8691-b92b88f1e503;CCTLB BERTRICHAMPS;;PLACE DE BREST;;[1.67012069, 46.3057547];;FRFR1EZTBC1;AXNP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.617293760965289;16.03;;;; +;;;;;;;;FRS50P50200003;2ff50929-ecb2-4e08-a1f3-2373421a9f22;CCTLB THIAVILLE;;ROUTE DE RUMENGOL;;[1.6307987051364758, 46.11916513058057];;FRFR1EDSVA1;AYAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.988044;45.67761;;;; +;;;;;;;;FRS50P50200002;7ac8a35d-00d7-4f67-a747-77259dfcb4b8;CD54 - VILLE DAUDUN LE ROMAN;;RUE DU VERGER;;[1.908169, 46.325814];;FRFR1EZTBC2;PWFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.56;4.8580774;;;; +;;;;;;;;FRS50P50147001;58b09294-5a64-456d-bbda-1839deb8184e;CCTLB FLIN;;RUE LOUIS TYMEN;;[1.7562378, 46.204309];;FRFR1EDSVA2;ZZVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.69;48.64;;;; +;;;;;;;;FRS50P50200001;a720801f-b0e6-4b2e-a1ea-c596dcc79a1a;PETR - VILLE DE BAYON;;RUE VALY GOZ;;[2.1752391966838003, 45.95685385044865];;FRFR1EQATG2;JXXB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.918116;45.07;;;; +;;;;;;;;FRS50P50480001;47097357-e25b-46c3-92a3-37fb7e88d7e6;CCBP - RUE DES 4 ELEMENTS;;RUE DU PRIEURÉ;;[1.8728709, 46.1613543];;FRFR1EQATG1;PNLE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-52.27712;46.285911;;;; +;;;;;;;;FRS50P50720002;63f5c84e96fb7db5ae3b40d7;MGN - RUELLE MATHIEU DE DOMBASLE;;RUE DE BEG AR ROZ;;[1.872105, 46.168328];;FRFR1ENLKB2;QCEH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.8;48.67;;;; +;;;;;;;;FRS50P50160001;TACW2244221S3384;MGN - PARKING DU CIMETIERE;;RUE DU LOCH;;[1.621857810756655, 46.38979827128929];;FRFR1EQQLS2;PBLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.781441;45.98117;;;; +;;;;;;;;FRS50P50400005;TACW2241521S0178;CCTLB MARAINVILLER;;ROUTE DE GOUESNOU;;[1.757261, 45.954984];;FRFR1EQQLS1;QKXF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.74075;50.3709132;;;; +;;;;;;;;FRS50P50340005;TACW2244221S3391;CCTLB JOLIVET;;RUE MICHEL-ARMAND DE CORNOUAILLE;;[1.87458, 46.18066];;FRFR1EFNYD2;SFPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.66;49.91161768;;;; +;;;;;;;;FRS50P50810001;45fa4771-7ea9-4254-bb98-b5137ab884ff;COMCOM BASSIN POMPEY;;RUE DE NAOT HIR;;[1.852937, 46.16619];;FRFR1ENLGV2;UTHL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3188;44.42495892041201;;;; +;;;;;;;;FRS50P50770001;598bad4e-2dd4-4b70-be44-6ba9574186d4;CD54 - VILLE DE CUSTINES;;RUE DES CONSERVERIES;;[1.915143, 46.13929];;FRFR1ENLCX1;UTHL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.6153612;4.909545;;;; +;;;;;;;;FRC2P002401;aa6b4650-2d0b-4828-9b77-802073fa2ae9;CD54 - VILLE DALLAIN;;RUE DUQUESNE;;[1.84716, 46.182498];;FRFR1EFQEK2;PNLE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.25850958;4.8792952;;;; +;;;;;;;;FRC2P001601;923eba3c-7e81-496b-8a4c-79857a9566f8;CD54 - VILLE DE TOUL;;RUE GÉNÉRAL JACQUES DE LA BOLLARDIÈRE;;[1.889585, 46.127182];;FRFR1ENMLT1;DTBG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.17653676640929428;4.846775;;;; +;;;;;;;;FRC2P001602;3cb2f22b-7514-4d79-b8ab-327dad07489e;CD54 - VILLE DE LESMENILS;;RUE DE LA PLAINE;;[2.3282017747338646, 46.18043243312804];;FRFR1ENLCX2;XHCH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-52.272843;4.938339;;;; +;;;;;;;;FRC2P002201;8142b174-ad7a-42a1-891b-74ba8427f498;CD54 - VILLE DE LESMENILS 2;;D88;;[1.4864876938733127, 46.23622541263118];;FRFR1ENMEM1;XHCH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-52.36621;4.9351181;;;; +;;;;;;;;FRC2P002801;01FPGEN0J55GJS4KRGQHZCXJCE;CCTLB VENEY;;IMPASSE DE LA GARE;;[1.6472792580972633, 46.16018464709621];;FRFR1ENLKR2;PSVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-52.33534;4.9046378;;;; +;;;;;;;;FRC2P001201;01FPCSPWFH7EW2RD2GQRR3ESW4;CCTLB LACHAPELLE;;RUE DE PLOUESCAT;;[1.849796138345705, 45.99788844986339];;FRFR1ENLKR1;SDHX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-52.305634;48.36;;;; +;;;;;;;;FRC2P000101;01FP88MRJPE0EQGPCENVQPGF7P;CCTLB VALLOIS;;RUE DE DOELAN;;[2.0335378347450135, 45.906877456491365];;FRFR1ENMLT2;DTBG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-52.32731;50.59735822646129;;;; +;;;;;;;;FRC2P001101;FROTHESENT113;CCTLB CHENEVIERES;;RUE SAINT-MICHEL;;[2.500372319177679, 46.02618636026654];;FRFR1EMULB1;SDHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-52.27651;50.885564840335476;;;; +;;;;;;;;FRC2P000501;FRFR1EEZUX FRFR1EFKMT FRFR1ELWTM;CCTLB FRAIMBOIS;;RUE LAMARTINE;;[2.2148780297956265, 46.349311090103754];;FRFR1EFNYD1;DRMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.57;50.986317;;;; +;;;;;;;;FRC2P000301;FRFR1EBYBZ FRFR1ECSZW FRFR1EFSVZ FRFR1EPCKC FRFR1EPRKX FRFR1EQCGT FRFR1ESCMD FRFR1ETUQM FRFR1EFYGB FRFR1EEBEA FRFR1EATVB FRFR1EBNMJ;CCTLB MANONVILLER;;PLACE YVES TANGUY;;[2.0860594190967117, 46.180882164981234];;FRFR1EMULB2;DEVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0980716683751455;43.4227369;;;; +;;;;;;;;FRC2P003201;01FR391256KFGBJ9W05VEPKKGD;CCTLB HERIMENIL;;IMPASSE SAINT-ELOI;;[1.7558725880278507, 45.94935937360538];;FRFR1EFQEK1;QGQD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.6673639438636192;48.7580017;;;; +;;;;;;;;FRC2P003402;FRFR1EBMYP;CCTLB VITRIMONT;;CORNICHE DE LA PLAGE;;[1.878921, 46.17376];;FRFR1EMTAE2;JCRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.96475;45.4626965;;;; +;;;;;;;;FRC2P003902;FROTHEOTHR228;PETR GERBEVILLER;;AVENUE DE LODET;;[2.239653001754647, 46.19073258470734];;FRFR1ELPEU1;ADVG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2877885;49.55734;;;; +;;;;;;;;FRC2P003901;EVB-P21251821;PETR EINVILLE;;PLACE CHARLES ET MARIE CHAPALAIN;;[2.4832416152564285, 46.17599486200176];;FRFR1EMTAE1;ADVG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.9288851;49.48786;;;; +;;;;;;;;FRC2P004001;01FNDTK7FW5XH86EAJYX4N0JGH;PETR DAMELEVIERES;;RUE DE LA RIVE;;[2.297630254367735, 45.98220366857867];;FRFR1ENLGV1;YLAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3993781;49.518016;;;; +;;;;;;;;FRC2P003802;EVB-P2011075;PETR CIREY SUR VEZOUZE;;PLACE FRANÇOIS-MARIE COATALEM;;[1.756224684351945, 45.954558314194834];;FRFR1ELPEU2;QABW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.11858;49.642302;;;; +;;;;;;;;FRC2P003801;01FPHGWNSBY5R2WDMKCZGZ7DKN;PETR BLAINVILLE;;QUAI FRANÇOIS BONIZEC;;[2.3670760395894566, 45.86830223684359];;FRFR1ECKBM1;XMWF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.134239;49.505414;;;; +;;;;;;;;FRC2P003702;01FPWFYAQ4YXZHYKY5V5MV053Y;PETR BLAMONT;;RUE BERTHELOT;;[2.171941051048165, 45.884709957957774];;FRFR1ENLKB1;XMWF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.096062;49.484192;;;; +;;;;;;;;FRC2P003701;d536b72d-7329-4ad7-8702-c600af302627;PETR BADONVILLER;;PLACE PAUL STEPHAN;;[1.5128909982581737, 46.14672358923505];;FRFR1ETPFL1;AGVD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.261804;49.495645;;;; +;;;;;;;;FRC2P003403;f67a4223-e24c-4cab-b49d-70e256e44c44;PETR BACCARAT - MARCHE;;RUE DE LA LIBÉRATION;;[1.9928695454171546, 46.35557415488703];;FRFR1EFQMB1;GUCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.102609;49.515081;;;; +;;;;;;;;FRC2P004002;01FPYKKPMQ0CWRZBX3A707M325;CCTLB THIEBAUMENIL;;ROUTE DE CROAS SPERN;;[4.8223994, 45.891181];;FRFR1ERJYB1;GUCA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.131123;49.525553;;;; +;;;;;;;;FRC2P003401;bd947ca4-5e7c-11ec-bf63-0242ac130002;CCTLB FONTENOY;;RUE DES ÎLES;;[0.1783557363561291, 45.66573707254592];;FRFR1EFQMB2;QGMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.127461;14.607158013009274;;;; +;;;;;;;;FRC2P003501;FR*FR1*EQTGP*1;CCTLB MAGNIERES;;RUE DES SPORTS;;[1.3599166241627683, 45.69499463422594];;FRFR1ECEGK1;QGAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.160302;14.560713873777255;;;; +;;;;;;;;FRC2P003001;FR*FR1*EGMAM*1;CCTLB MOYEN;;ROUTE DE BÉNODET;;[1.3599526215855915, 45.695593468232566];;FRFR1EWQRF1;QGAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.115706;14.486405978847023;;;; +;;;;;;;;FRC2P002901;01FMVR49DJC50TG0T85G94Y3VT;CCTLB HAUDONVILLE;;HENT TOULL KERZERS;;[-0.3987681673214218, 45.81890347412459];;FRFR1EEYJX1;QGMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.09407341836829;14.670001347489613;;;; +;;;;;;;;FRC2P003202;058f5056-4884-11ec-81d3-0242ac130003;CCTLB FRANCONVILLE;;RUE DE LATLANTIQUE;;[-0.4212213179604373, 45.77393371624896];;FRFR1EEPKS1;QGUG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-60.93685837866524;49.0997673;;;; +;;;;;;;;FRC2P003502;NLEVBE3WLPUMM4CDNBGWMIRQ3PKPE6JU;CCTLB VACQUEVILLE;;PLACE GRAFENHAUSER;;[-0.8102565057215653, 45.649438783139665];;FRFR1EQMVF1;QHQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-60.902208073487955;43.5282203;;;; +;;;;;;;;FRC2P003601;FR*SOD*S*SDE2*57*1*_*_;CCTLB LUNEVILLE - PARKING BICHAT;;QUAI DAIGUILLON;;[-0.7065045195933709, 46.215996601383644];;FRFR1EVUBK1;YLAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-61.0396036414057;43.9295849;;;; +;;;;;;;;FRC2P003602;FR*SOD*S*SDE2*62*1*_*_;CCTLB BENAMENIL;;RUE DE LA FORGE;;[-0.6519199081168063, 45.63648835730188];;FRFR1EFATP1;LXSE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0810055;49.851386;;;; +;;;;;;;;FRC2P005101;FR*SOD*S*SDE2*58*1*_*_;CCTLB MONCEL;;RUE LERAY;;[-0.65387764005573, 45.630872003921496];;FRFR1EENVW1;LXSE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.537796;49.2692571;;;; +;;;;;;;;FRC2P004601;FR*SOD*S*SDE2*59*1*_*_;CCTLB MERVILLER;;RUE CLAUDE DEBUSSY;;[-0.62630408112066, 45.747334026242];;FRFR1ELURC1;NUMZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.175945;49.2859075;;;; +;;;;;;;;FRC2P004701;FR*SOD*S*SDE2*61*1*_*_;CCTLB XERMAMENIL;;RUE DE PORS CLOS;;[-0.5041785690753205, 45.82190628951172];;FRFR1EKLEA1;JTVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2631235;49.2254847;;;; +;;;;;;;;FRC2P004702;FR*SOD*S*SDE2*45*1*_*_;CCTLB LARONXE;;ROUTE DE CHÂTEAULIN;;[-1.275995989093295, 45.911275008898585];;FRFR1EBXMC1;AMFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.25;47.6644493;;;; +;;;;;;;;FRC2P004901;FR*SOD*S*SDE2*63*1*_*_;Parking PHA;;RUE DE LA MARNE;;[-0.62630694441728, 45.74751971845];;FRFR1EUGTU1;JCRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.2589209;49.5355585;;;; +;;;;;;;;FRC2P004801;FR*SOD*S*SDE2*67*1*_*_;PARKING GAMBUS;;QUAI DU FRET;;[-0.62625527113986, 45.747376507523];;FRFR1EBZPL1;AMFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.1096503;49.182863;;;; +;;;;;;;;FRC2P005201;FR*SOD*S*SDE2*90*1*_*_;GARAGE ZAWIEJA;;ALEZ AN EOSTIGED;;[-1.2790864928722, 45.913211767345];;FRFR1EHFDH1;VHDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.1676349;49.2764924;;;; +;;;;;;;;FRC2P004502;FR*SOD*S*SDE2*68*1*_*_;Avomarks;;PLACE DU BARZAZ BREIZH;;[-1.2774393191812, 45.914137353729];;FRFR1ENLHD1;VHDG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.0071297;49.2746651;;;; +;;;;;;;;FRC2P005501;FR*SOD*S*SDE2*69*1*_*_;ETANCHEITE PARTICULIERS ET INDUSTRIES;;PLACE WINSTON CHURCHILL;;[-0.6153411820000854, 45.71501882195449];;FRFR1EKKQC1;NUMZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.9605582;49.020012;;;; +;;;;;;;;FRC2P005301;FR*SOD*S*SDE2*56*1*_*_;LA FERME DE LA MOTTE;;RUE DE LA PAIX;;[-0.5041850689776732, 45.821925401611395];;FRFR1ELUDN1;YMMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.370679;49.145128;;;; +;;;;;;;;FRC2P005801;FR*SOD*S*SDE2*48*1*_*_;BORNE 1 SATORIZ GRENOBLE ROCADE;;RUE CÉLESTIN SEITE;;[-1.300627496124425, 45.90195661936574];;FRFR1EHLRL1;LWER2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.7638707;49.4474373;;;; +;;;;;;;;FRC2P005802;FR*SOD*S*SDE2*50*1*_*_;aqua loisirs;;QUAI DAUXERRE;;[-0.7085456582039972, 45.766535193830144];;FRFR1EGBZT1;LWER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6863119;49.549938;;;; +;;;;;;;;FRC2P005601;FR*SOD*S*SDE2*46*1*_*_;ISPO France;;RUE LOUIS PASTEUR;;[-0.6868473485416821, 45.63849905619226];;FRFR1EKKXU1;DQSG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.0373753;49.4153984;;;; +;;;;;;;;FRC2P005602;FR*SOD*S*SDE2*47*1*_*_;ADAM CHAUFFAGE;;RUE DE LA LIBERTÉ;;[-0.5025035630102878, 45.64778425286908];;FRFR1ERMWM1;DQSG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.271643;48.9978196;;;; +;;;;;;;;FRC2P004501;FR*SOD*S*SDE2*70*1*_*_;St. Lo;;MÉNEZ ROUZ;;[-0.5108443014957409, 44.80124139894823];;FRFR1EHHWW1;TMDC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.026733;48.7624117;;;; +;;;;;;;;FRC2P004401;FR*SOD*S*SDE2*49*1*_*_;Daltoner Granville;;RUE TEILHARD DE CHARDIN;;[5.0655256, 43.8355022];;FRFR1EHHWW2;TMDC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.491859;49.3210887;;;; +;;;;;;;;FRC2P004301;FR*SOD*S*SDE2*55*1*_*_;le relais;;ROUTE DE KERAMPAPE;;[5.14269, 43.88528];;FRFR1EHSGT2;UXLZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.0646759;49.3586376;;;; +;;;;;;;;FRC2P005901;FR*SOD*S*SDE2*51*1*_*_;Morbecque - La motte aux bois;;PARK POULIC;;[-0.238577, 44.517525];;FRFR1EUDYQ1;VEFK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.1550216;49.5149;;;; +;;;;;;;;FRC2P006001;FR*SOD*S*SDE2*53*1*_*_;Hondschoote - Place du Général de Gaulle;;BOULEVARD DU FINISTÈRE;;[-1.220807, 44.205605];;FRFR1ERSVR2;VEFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.6610584;49.2760261;;;; +;;;;;;;;FRC2P006101;FR*SOD*S*SDE2*54*1*_*_;Hondschoote - Rue de Cassel;;ROUTE DE TY NAY;;[-0.926388, 44.20274];;FRFR1ERSVR1;UGLM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.455859;49.1910497;;;; +;;;;;;;;FRC2P006501;FR*SOD*S*SDE2*79*1*_*_;Ledringhem - Parking du souvenir;;RUE ROUGET DE LISLE;;[-0.254093, 44.54156];;FRFR1EKBDH2;SSHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.815166;48.077638;;;; +;;;;;;;;FRC2P006502;FR*SOD*S*SDE2*86*1*_*_;Saint-Jans-Cappel - Zone de loisir;;PLACE DE LA TOURBIE;;[1.843358, 44.924358];;FRFR1EKBDH1;JFPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.19538;47.3517596;;;; +;;;;;;;;FRC2P006301;FR*SOD*S*SDE2*82*1*_*_;Morbecque - Rue Heerstraete;;PLACE DE LA RÉSISTANCE ET DU GÉNÉRAL DE GAULLE;;[-0.918739, 44.618314];;FRFR1EEPLD1;GURT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.0317198;47.001784;;;; +;;;;;;;;FRC2P006302;FR*SOD*S*SDE2*83*1*_*_;Nieppe - Mairie;;AVENUE DU BRADEN;;[-0.67021924, 44.87476787];;FRFR1EEMSC1;GUAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.3017575;48.63538775462057;;;; +;;;;;;;;FRC2P006601;FR*SOD*S*SDE2*84*1*_*_;Renescure -Pôle Gare;;RUE DE SAINT-ALOR;;[2.567508599999986, 48.52013390000001];;FRFR1ENWKV1;GURT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.604637;49.510417;;;; +;;;;;;;;FRC2P006401;FR*SOD*S*SDE2*85*1*_*_;Rexpoede - Eglise;;PLACE KREIZ KER;;[7.299371, 48.165438];;FRFR1EAGDS1;DZVC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3491347;49.564167;;;; +;;;;;;;;FRC2P006707;FR*SOD*S*SDE2*71*1*_*_;Hardifort - Parking Mairie;;RUE DE QUERRIEN;;[7.294091, 48.167334];;FRFR1EMWUK1;RBAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.247222;49.503611;;;; +;;;;;;;;FRC2P006706;FR*SOD*S*SDE2*87*1*_*_;Holque - Route de l'église;;PLACE DE MESCREN;;[6.403327536228296, 46.08350074095008];;FRFR1EBXLK1;DZVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.4083504069540536;49.505944;;;; +;;;;;;;;FRC2P006705;FR*SOD*S*SDE2*88*1*_*_;Bollezeele -Rue de l'Eglise;;RUE DU PONT;;[6.8401120000162585, 46.26399717713806];;FRFR1EHSGT1;RJCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.073833;48.63340097926608;;;; +;;;;;;;;FRC2P006704;FR*SOD*S*SDE2*89*1*_*_;Cassel -Place du Général Vandamme;;RUE DU FAOUËT;;[3.1315408, 50.7396999];;FRFR1ESVVV1;KWBN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.223944;48.50192886577205;;;; +;;;;;;;;FRC2P006703;FR*SOD*S*SDE2*81*1*_*_;Cappelle-Brouck -Médiathèque;;AIRE DE COVOITURAGE RD15;;[-1.7548354193520386, 48.125067030488154];;FRFR1ERYMU1;RJCV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.123139;43.795898154156454;;;; +;;;;;;;;FRC2P006702;FR*SOD*S*SDE2*80*1*_*_;Buysscheure -Eglise;;RUE DU MORBIC;;[-61.18036, 14.697624];;FRFR1ERKMV1;DQGL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.085389;43.63943483453543;;;; +;;;;;;;;FRC2P006701;FR*SOD*S*SDE2*72*1*_*_;Brouckerque -Eglise;;BOULEVARD DE LOCÉAN PORT D ARGENTON;;[-60.972756, 14.601781];;FRFR1ERZTW1;NXRX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.325158187997181;43.33412185286013;;;; +;;;;;;;;FRC2P006801;FR*SOD*S*SDE2*73*1*_*_;Boeseghem - Rue De La Chapelle;;PLAINE DES SPORTS;;[-61.00386, 14.607184];;FRFR1EVHVP1;NXRX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.9851546747886144;43.57430316069223;;;; +;;;;;;;;FRC2P006901;FR*SOD*S*SDE2*74*1*_*_;Boeseghem - Mairie;;PEM GARE ROSPORDEN;;[-61.07342, 14.60317];;FRFR1EFACB1;PTWR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.78275924122744;45.1810981;;;; +;;;;;;;;FRC2P007001;FR*SOD*S*SDE2*76*1*_*_;Blaringhem - Rue Pierre Dhedin;;PLACE DU 19 MARS1962;;[-61.06751, 14.608331];;FRFR1EEQEC1;UGLM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.936256705171751;50.6535398;;;; +;;;;;;;;FRAU1000801;FR*SOD*S*SDE2*77*1*_*_;Steenbecque - Place Jean Ruyssen;;RUE YOUENN GWERNIG;;[-61.04232, 14.472874];;FRFR1ETEVQ1;GUAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2798983323309523;50.9522222;;;; +;;;;;;;;FRE10E26563;FR*SOD*S*SDE2*78*1*_*_;Bailleul - Rue du collège;;RUE PEN AR PONT;;[-61.02208, 14.813607];;FRFR1EYGNV1;CDZN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.8515752990825822;50.57;;;; +;;;;;;;;FRE10E40169;FR*SOD*S*SDE2*6*1*_*_;Bailleul - Gare;;RUE LÉON CHEMINANT;;[5.04,44.24];;FRFR1EFJMJ1;UGQB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.7257621;50.9519444;;;; +;;;;;;;;FRE10E44257;FR*SOD*S*SDE2*17*1*_*_;Arneke - Rue de la mairie;;RUE DE PONT DE BUIS;;[5.20,43.86];;FRFR1ELVEG2;HKZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1176181;49.494916;;;; +;;;;;;;;FRE10E40165;FR*SOD*S*SDE2*14*1*_*_;Saint-Sylvestre-Cappel -Place du Village;;AVENUE DE PARK AN ILIZ;;[2.9294755000000183, 49.939609399999995];;FRFR1EAWWF1;FMVU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8547222;49.499466;;;; +;;;;;;;;FRE10E40164;FR*SOD*S*SDE2*15*1*_*_;Bierne - Place du Village;;PLACE GEORGES BEAUJEAN;;[-1.0903127000000001, 44.868051799999996];;FRFR1EYRUV2;FMVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3533333;49.504056;;;; +;;;;;;;;FRE10E40167;FR*SOD*S*SDE2*16*1*_*_;Steenvoorde - Parking Stade;;RUE DES PINS;;[-61.72, 16.0];;FRFR1EAZYU1;HKZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8369444;49.493591;;;; +;;;;;;;;FRE10E40166;FR*SOD*S*SDE2*18*1*_*_;Hazebrouck - Place Jean Jaurès;;PLACE VICTOR HUGO;;[5.02,43.85];;FRFR1EMUFS1;UGQB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.122687;49.513438;;;; +;;;;;;;;FRE10E44113;FR*SOD*S*SDE2*13*1*_*_;Steenwerck - Rue de Nieppe;;AVENUE DU PORT;;[3.84,43.57];;FRFR1EMUFS2;GVZD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.172373;49.502917;;;; +;;;;;;;;FRE10E37515;FR*SOD*S*SDE2*19*1*_*_;Wulverdinghe - Rue principale;;D764;;[5.53,43.49];;FRFR1EWXLN1;GXRQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.080807;49.504122;;;; +;;;;;;;;FRE10E37514;FR*SOD*S*SDE2*20*1*_*_;Thiennes - Gare;;ALLÉE DU STADE;;[4.71,44.26];;FRFR1EWTEM1;JFPF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.106136;49.530122;;;; +;;;;;;;;FRE10E37519;FR*SOD*S*SDE2*21*1*_*_;Oudezeele - Rue de la Forge;;RUE STRÉAT LANNOC;;[-61.0255406, 14.62847996];;FRFR1EYETV1;GVZD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.197971;49.513496;;;; +;;;;;;;;FRE10E37518;FR*SOD*S*SDE2*12*1*_*_;Neuf-Berquin - Rue Charles Capelle;;RUE AUGUSTE CAROFF;;[-61.027682, 14.615813];;FRFR1EYWGM1;GXRQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.210925;49.544211;;;; +;;;;;;;;FRE10E37517;FR*SOD*S*SDE2*22*1*_*_;Hazebrouck - Rue André Biebuyck;;RUE DE MON REPOS;;[-61.04633536, 14.59493306];;FRFR1ETKJH1;SSHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.197275;49.506711;;;; +;;;;;;;;FRE10E37516;FR*SOD*S*SDE2*91*1*_*_;Hazebrouck - Rue Warein;;AIRE DE COVOITURAGE CD 29;;[-61.00997, 14.604876];;FRFR1ETSGD1;HBZK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.105017;49.511389;;;; +;;;;;;;;FRE10E44232;FR*SOD*S*SDE2*1*1*_*_;Hazebrouck - Rue du Milieu;;ALLÉE DES TILLEULS;;[-61.0238, 14.616381];;FRFR1ENNQE1;SRZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.163932;49.543417;;;; +;;;;;;;;FRE10E44233;FR*SOD*S*SDE2*3*1*_*_;Hazebrouck - Rue François Dominique Depoorter;;RUE DES 4 CHEMINS;;[-60.99128, 14.612948];;FRFR1ECDNW1;SRZG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.193942;49.509889;;;; +;;;;;;;;FRE10E37513;FR*SOD*S*SDE2*4*1*_*_;Hazebrouck - Rue Notre Dame;;VENELLE DE DINAOU;;[-61.04941, 14.608132];;FRFR1EMVRS2;HKSH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.191899;49.551389;;;; +;;;;;;;;FRE10E37512;FR*SOD*S*SDE2*7*1*_*_;Hazebrouck - Rue du Queux Saint Hilaire;;BALIZAN;;[-61.03312, 14.614933];;FRFR1EMVRS1;DQGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.229806;48.5139;;;; +;;;;;;;;FRE10E43977;FR*SOD*S*SDE2*9*1*_*_;Hazebrouck - Rue d’Aire;;VENELLE DU MECHOU;;[-61.2253515, 14.8023925];;FRFR1EHBHU1;DPQS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.189389;48.2576;;;; +;;;;;;;;FRE10E43978;FR*SOD*S*SDE2*10*1*_*_;Hazebrouck - Rue du Pont;;RUE DES MARTYRS;;[-61.13439, 14.772175];;FRFR1EHBHU2;DPQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.110167;48.253;;;; +;;;;;;;;FRE10EAC35480;FR*SOD*S*SDE2*11*1*_*_;Hazebrouck - Rue du Maréchal Foch;;RUE DE LA MONTAGNE;;[-61.02603, 14.61776];;FRFR1EFQEH2;AVFE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.173417;48.2502;;;; +;;;;;;;;FRE10EAC35479;FR*SOD*S*SDE2*23*1*_*_;Hazebrouck - Rue de la Plaine;;AVENUE DE WALTENHOFEN;;[-60.99089, 14.631557];;FRFR1EFQEH1;FVYT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.76385;47.2201;;;; +;;;;;;;;FRE10E30333;FR*SOD*S*SDE2*44*1*_*_;Eecke - Rue de Godewaersvelde;;LE BOURG ROUTE DE QUIMPER;;[-61.04474, 14.603169];;FRFR1EEBEK1;FVYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.39705;48.1044;;;; +;;;;;;;;FRE10E20924;FR*SOD*S*SDE2*38*1*_*_;Boeschepe - Grand Place;;RUE DE PONT L ABBÉ;;[-60.99684, 14.609692];;FRFR1EEBEK2;DMLP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.39882;47.0429;;;; +;;;;;;;;FRE10E20923;FR*SOD*S*SDE2*34*1*_*_;Bavinchove - Gare;;RUE DE BRISCOUL;;[-61.08122, 14.615527];;FRFR1ESQDJ1;FVVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.82319;48.1093;;;; +;;;;;;;;FRE10P20922;FR*SOD*S*SDE2*35*1*_*_;Wormhout -Place de Gaulle;;RUE DES PEUPLIERS;;[-61.52, 16.26];;FRFR1ESQDJ2;FVVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.55734;43.2928;;;; +;;;;;;;;FRE10P20921;FR*SOD*S*SDE2*36*1*_*_;Wormhout - Eglise;;ALLÉE DU 19 MARS 1962;;[-61.61, 16.2];;FRFR1EAKPV1;UENU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.67833;45.9221544;;;; +;;;;;;;;FRE10E33899;FR*SOD*S*SDE2*37*1*_*_;Watten -Maison Médicale;;RUE DE LA PLAGE;;[3.43,43.39];;FRFR1EYRUV1;RBAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.895146;48.663549;;;; +;;;;;;;;FRE10EAC35497;FR*SOD*S*SDE2*33*1*_*_;Watten - Place du Rivage;;CHEMIN DE KERVEUR;;[4.80,43.71];;FRFR1ERVZB1;CTZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.63448;46.69;;;; +;;;;;;;;FRE10E40168;FR*SOD*S*SDE2*39*1*_*_;D2007;;RUE RENÉ LE BERRE;;[5.2414326, 43.4359393];;FRFR1EFUGX1;UENU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.44753;50.5445143;;;; +;;;;;;;;FRE10E58476;FR*SOD*S*SDE2*41*1*_*_;D2006;;RUE DE CORNOUAILLE;;[5.5835336, 43.307852];;FRFR1EHKVC2;RARF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.95241;43.6368;;;; +;;;;;;;;FRE10E40170;FR*SOD*S*SDE2*43*1*_*_;D2008;;RUE DES ABBÈS TANGUY;;[5.70058,43.48050];;FRFR1ELGRU1;FVQK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.5801292;43.1076;;;; +;;;;;;;;FRE10E40171;FR*SOD*S*SDE2*32*1*_*_;ROYERE DE VASSIVIERE;;RUE DU DOCTEUR NEIS;;[3.42928004265,44.1805000305];;FRFR1EHKVC1;CTZX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.374363;48.919807;;;; +;;;;;;;;FRE10E58475;FR*SOD*S*SDE2*27*1*_*_;CHAMBON SUR VOUEIZE;;D35;;[0.14164,29.29117];;FRFR1ENFSQ1;WYUP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.67;42.72;;;; +;;;;;;;;FRE10E40161;FR*SOD*S*SDE2*24*1*_*_;LA SOUTERRAINE;;RUE CONSTANTINE;;[0.2549, 49.1296];;FRFR1ENFSQ2;QWNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0873262;42.60646;;;; +;;;;;;;;FRE10E40160;FR*SOD*S*SDE2*25*1*_*_;EVAUX LES BAINS;;IMPASSE GEORGES MONOT;;[-0.4929901, 44.840481];;FRFR1ENTHH2;WUVD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.3577;44.7920565;;;; +;;;;;;;;FRE10E58366;FR*SOD*S*SDE2*26*1*_*_;DUN LE PALESTEL;;D785;;[-0.48177649999999295, 44.84385340000002];;FRFR1ENTHH1;RARF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0865;46.135216299999996;;;; +;;;;;;;;FRE10E58365;FR*SOD*S*SDE2*28*1*_*_;BENEVENT L'ABBAYE;;RUE DE LEUROPE;;[2.6594419, 50.5160463];;FRFR1EVDSC2;FVQK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.372946;46.675892;;;; +;;;;;;;;FRE10E58466;FR*SOD*S*SDE2*29*1*_*_;BONNAT;;RUE LAENNEC;;[4.7644623, 45.8100136];;FRFR1EVDSC1;FWTB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.46;44.866026700000006;;;; +;;;;;;;;FRE10E58465;FR*SOD*S*SDE2*30*1*_*_;SAINT VAURY - MAIRIE;;RUE DU 9 AOÛT;;[5.0276404, 45.7707093];;FRFR1ESFQW1;ERUK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.00201;48.904942;;;; +;;;;;;;;FRE10E58356;FR*SOD*S*SDE2*31*1*_*_;AUBUSSON;;RUE BEL AIR;;[4.8523063, 45.7582275];;FRFR1ERAHB1;BZRH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5008902;43.51;;;; +;;;;;;;;FRE10E58355;FR*SOD*S*SDE2*117*1*_*_;GUERET - SDEC23;;ROUTE DE KERVENNI;;[3.1279332, 50.6526966];;FRFR1EDXKP1;BUHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7584632000000058;43.44;;;; +;;;;;;;;FRE10E58222;FR*SOD*S*SDE2*92*1*_*_;GUERET - BONNYAUD;;RUE PAOTR TREOURE;;[3.0458372, 50.5461921];;FRFR1EWURH1;BUHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.495418;43.4;;;; +;;;;;;;;FRE10E58221;FR*SOD*S*SDE2*155*1*_*_;CROZANT;;PLACE JEAN MOULIN;;[3.8840257, 43.5818178];;FRFR1EWURH2;BZRH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5745869999999909;43.42;;;; +;;;;;;;;FRE10E58348;FR*SOD*S*SDE2*150*1*_*_;BOURGANEUF;;PLACE AN TI KÉAR;;[4.63,44.21];;FRFR1EJBAA2;AVFE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.506315;49.47;;;; +;;;;;;;;FRE10E58347;FR*SOD*S*SDE2*152*1*_*_;GUERET - ESPACE ANDRE LEJEUNE;;RUE GUILLAUME LEZACH;;[6.1177565, 45.9008173];;FRFR1EUMEH2;KUUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.23;45.67892728;;;; +;;;;;;;;FRE10E58346;FR*SOD*S*SDE2*153*1*_*_;GUERET;;3 Impasse de Florence 44470 Carquefou;;[5.3784608, 43.321751];;FRFR1EUMEH1;ERUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.24;44.3457871;;;; +;;;;;;;;FRE10E58345;FR*SOD*S*SDE2*154*1*_*_;SAINTE FEYRE - MAIRIE;;D1001-Aérodrome d'Abbeville 80132 Buigny-Saint-Maclou;;[5.9517688, 45.5725536];;FRFR1EJBAA1;DMLP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.4;46.3641578;;;; +;;;;;;;;FRE10E58364;FR*SOD*S*SDE2*149*1*_*_;SAINT SULPICE LE GUERETOIS;;280, Rue du Rhone 74800;;[3.0502595, 50.6796641];;FRFR1ERYGZ1;KSGB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.67;50.39143;;;; +;;;;;;;;FRE10E58363;FR*SOD*S*SDE2*156*1*_*_;SAINTE FEYRE - PARC ANIMALIER;;Cours de Dion bouton 30900 NIMES;;[2.94728, 50.420087];;FRFR1ERJAC1;KUUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.77616501;50.3822;;;; +;;;;;;;;FRE10E58472;FR*SOD*S*SDE2*157*1*_*_;LUSSAT;;35 RUE DE ROUBAIX;;[7.061562, 49.105209];;FRFR1EFFHE1;KWBN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0925522;43.53867520000001;;;; +;;;;;;;;FRE10E58471;FR*SOD*S*SDE2*158*1*_*_;LE GRAND BOURG;;2000 ROCADE NORD;;[5.06,44.12];;FRFR1EXWVV1;KSGB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7573375;43.6344804;;;; +;;;;;;;;FRE10E58470;FR*SOD*S*SDE2*159*1*_*_;PONTARION;;2210 route de Montpellier 30900 NIMES;;[4.8283,43.7872];;FRFR1EXWVV2;PTWR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.77247;50.6733928;;;; +;;;;;;;;FRE10E58469;FR*SOD*S*SDE2*160*1*_*_;VALLIERE;;293 AVENUE MAURICE THOREZ;;[3.849093334457226, 43.5616514180901];;FRFR1ERRRT1;FWTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.91136;49.108611;;;; +;;;;;;;;FRE10E44355;FR*SOD*S*SDE2*143*1*_*_;AUZANCES;;9 Rue des Alpes;;[2.77370505338358, 49.40885526410706];;FRFR1ERRRT2;HRFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.943865577251607;43.483111;;;; +;;;;;;;;FRE10E58474;FR*SOD*S*SDE2*138*1*_*_;BOUSSAC;;7 rue de Chalon, 71;;[2.5663550980706784, 48.71728225183364];;FRFR1EJJLD1;HKTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.949769135;48.569214;;;; +;;;;;;;;FRE10E58473;FR*SOD*S*SDE2*139*1*_*_;JARNAGES;;565 ALLEE DE CASSA;;[-0.617293760965289, 47.46216679205851];;FRFR1EJJLD2;HRFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8323045;48.526901;;;; +;;;;;;;;FRE10E40163;FR*SOD*S*SDE2*141*1*_*_;BOURGANEUF - WALLBOX;;132 RUE HENRY HAMY;;[4.988044, 45.819755];;FRFR1EFYMG2;RDPY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.109555;48.554886;;;; +;;;;;;;;FRE10E40162;FR*SOD*S*SDE2*142*1*_*_;GUERET - GARE;;ZA CHAMPS SAINTE MARIE;;[-61.56, 16.24];;FRFR1EFYMG1;CKKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3719483;48.813103;;;; +;;;;;;;;FRE10E26562;FR*SOD*S*SDE2*147*1*_*_;GOUZON;;Le manoir de l'isle 22300 PLOUMILLIOU;;[-61.69, 16.03];;FRFR1EKVAR1;RZXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.817927;48.777443;;;; +;;;;;;;;FRLMSE1000117224;FR*SOD*S*SDE2*144*1*_*_;BELLEGARDE EN MARCHE;;2 RUE JACQUES PREVERT;;[4.918116, 45.67761];;FRFR1EKVAR2;UVGZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.004982;48.198631;;;; +;;;;;;;;FRLMSE1000034866;FR*SOD*S*SDE2*145*1*_*_;BOURGANEUF - RUE DE L'ETANG;;1 RUE DES PAQUERETTES;;[-52.27712, 4.8580774];;FRFR1ESTDN1;RXXP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.857123;48.506653;;;; +;;;;;;;;FRLMSE10000986352;FR*SOD*S*SDE2*146*1*_*_;CROCQ;;ZONE FUTURA;;[7.80,48.64];;FRFR1EQFNZ1;JPGG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.295882;48.222214;;;; +;;;;;;;;FRLMSE10000986351;FR*SOD*S*SDE2*137*1*_*_;FELLETIN;;ZAE Créavallée Sud Avenue de Borie Marty 24660 Notre Dame de Sanilhac;;[4.85,45.07];;FRFR1EJCHN1;JRRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.305036;48.842079;;;; +;;;;;;;;FRLMSE10000837041;FR*SOD*S*SDE2*183*1*_*_;FURSAC;;ZI NORD de Chalon-sur-Saône, rue de l’argentique, 71530 FRAGNES;;[4.781441, 46.285911];;FRFR1EQHXE1;JPGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.53545;48.7452;;;; +;;;;;;;;FRLMSE10000882701;FR*SOD*S*SDE2*174*1*_*_;GENOUILLAC;;7 Rue Denis Papin, 17200 Royan;;[7.80,48.67];;FRFR1EVAFQ1;JMHP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.768753;48.276394;;;; +;;;;;;;;FRLMSE10000882641;FR*SOD*S*SDE2*176*1*_*_;Electriox Groupe Genay;;33 route de lyon;;[4.74075, 45.98117];;FRFR1ETYYE1;JRRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.397579;48.5108;;;; +;;;;;;;;FRLMSE10000882631;FR*SOD*S*SDE2*178*1*_*_;Manuchar 2;;21 chemin du haut du trou martin;;[6.66,43.47];;FRFR1ETYYE2;JMHP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.138881;48.601341;;;; +;;;;;;;;FREVBENFCRERPIRG7IBRQHTCR2APUVCM;FR*SOD*S*SDE2*179*1*_*_;Gîtes Dupuytren - 53 Av République;;29 Rue De La Gare - Truchtersheim, 67370 - France;;[2.3188, 43.6363];;FRFR1EVAFQ2;GEYQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.26137;48.51302;;;; +;;;;;;;;FREVBEQCN3UWD4RH74NPNCRZO5RDGUEQ;FR*SOD*S*SDE2*180*1*_*_;Auberge Dupuytren - République;;15 rue de l'Ermitage 91410;;[3.6153612, 50.3709132];;FRFR1EMXQK1;GEYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.617642;48.408218;;;; +;;;;;;;;FRLMSE10000348671;FR*SOD*S*SDE2*181*1*_*_;Domaine Tesseron;;6 Avenue André Dulin 17300;;[2.25850958, 49.91161768];;FRFR1EMXQK2;VTVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.951;48.446144;;;; +;;;;;;;;FRLMSE1000043430;FR*SOD*S*SDE2*182*1*_*_;Burie - Place de la Mairie;;Agropole, Chem. du Saylat 47310 Estillac;;[-0.17653676640929428, 44.42495892041201];;FRFR1EDMJF1;QFMZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.829592;48.442223;;;; +;;;;;;;;FRLMSE10000986341;FR*SOD*S*SDE2*173*1*_*_;Meursac Salle Multi-activités;;Rue de Vernon 78270 Blaru;;[-52.272843, 4.909545];;FRFR1ERSPS2;GFEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.66815;48.56057;;;; +;;;;;;;;FRLMSE1000034868;FR*SOD*S*SDE2*184*1*_*_;La Chabanaise;;CHATEAU DE MEMANAT;;[-52.36621, 4.8792952];;FRFR1ERSPS1;CKKY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.81773;48.486935;;;; +;;;;;;;;FREVBEMVTUEDQDQTRYSNM6KDSEQSFTK4;FR*SOD*S*SDE2*185*1*_*_;Manuchar 1;;8 Rue François Arago 17200;;[-52.33534, 4.846775];;FRFR1EYZQC1;RZXE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.744903;48.807404;;;; +;;;;;;;;FREVBEZPB3PYRQMSIKMOE4CEJCOZNG7I;FR*SOD*S*SDE2*189*1*_*_;Auberge Dupuytren;;Pôle Habitat 48 Rue du Vivarais 26320 Saint-Marcel-Les-Valence;;[-52.305634, 4.938339];;FRFR1EYZQC2;DQKJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.042515;48.745758;;;; +;;;;;;;;FREVBEZLZQ7VD34M2MZZUH4NBEA55XLA;FR*SOD*S*SDE2*172*1*_*_;Maison de Santé;;24 Rue du Baron de Niv;;[-52.32731, 4.9351181];;FRFR1EMYWH1;RXWX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.148005;48.102253;;;; +;;;;;;;;FREVBEEFI7QTSJZTUHGMEVEXMVBQIJ7A;FR*SOD*S*SDE2*161*1*_*_;La Poste Tesson;;Ganche 72400 Avezé;;[-52.27651, 4.9046378];;FRFR1EZATP1;NQBV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.982655;48.334202;;;; +;;;;;;;;FREVBEEDQS6FVAC2LYL6FAFW6IPNALMU;FR*SOD*S*SDE2*165*1*_*_;Crédit Agricole Borne 1;;20 rue de l'industrie hoerdt;;[7.57,48.36];;FRFR1EZATP2;NQCQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.441761;48.751244;;;; +;;;;;;;;FREVBE7U4KNFB4LM7CM2ZIUQRFO3BK44;FR*SOD*S*SDE2*162*1*_*_;Mairie Ecoyeux;;[12] [avenue Claude Antonetti] [13713] [La Penne sur Huveaune];;[2.0980716683751455, 50.59735822646129];;FRFR1EVKRU2;MZCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.07167;48.747627;;;; +;;;;;;;;FRLMSE1000025054;FR*SOD*S*SDE2*163*1*_*_;Camping le Héron - Dolus d'Oleron (17);;32 Grande Rue 08430;;[1.6673639438636192, 50.885564840335476];;FRFR1ETYSD2;MYZJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.583354;48.797573;;;; +;;;;;;;;FRLMSE10000986353;FR*SOD*S*SDE2*164*1*_*_;Crédit Agricole Borne 2;;Route de Domessin 73330 DOMESSIN;;[1.96475, 50.986317];;FRFR1ETYSD1;RXWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.2244;48.624866;;;; +;;;;;;;;FRLMSE10000882691;FR*SOD*S*SDE2*171*1*_*_;Crédit Agricole Borne Intérieur Vélo;;7 rue Robert Kaskoreff 14000 CAEN;;[5.2877885, 43.4227369];;FRFR1EHVFQ2;TGMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.279891;48.630089;;;; +;;;;;;;;FRLMSE10000986342;FR*SOD*S*SDE2*166*1*_*_;Camping Les Floralies;;avenue de la Laurence 33370 FARGUES ST HILAIRE;;[1.9288851, 48.7580017];;FRFR1EZFPK1;DQKJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.984804;48.34719;;;; +;;;;;;;;FRLMSE10001142021;FR*SOD*S*SDE2*167*1*_*_;Camping les Luisettes;;ZI de la Sumène 07270 LAMASTRE;;[4.3993781, 45.4626965];;FRFR1EZFPK2;UVGZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.238562;48.794518;;;; +;;;;;;;;FRLMSE10000882591;FR*SOD*S*SDE2*168*1*_*_;Les Gonds - Eglise - Borne 1;;rue des Calquières 34190 GANGES;;[0.11858, 49.55734];;FRFR1EDZTS1;TGMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.408021;48.5971;;;; +;;;;;;;;FRLMSE10000882601;FR*SOD*S*SDE2*169*1*_*_;Les Gonds - Eglise - Borne 2;;2 Le Grand Guéret 42380 LA TOURETTE;;[0.134239, 49.48786];;FRFR1EDZTS2;TLMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.300457;48.52145;;;; +;;;;;;;;FRLMSE10000986343;FR*SOD*S*SDE2*108*1*_*_;Mairie d'Ecoyeux;;Rue de la Roche 85190 AIZENAY;;[0.096062, 49.518016];;FRFR1EHVFQ1;TLMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.75524;48.705162;;;; +;;;;;;;;FRLMSE10000882621;FR*SOD*S*SDE2*103*1*_*_;Camping Les Flots Atlantique;;27 route de l'Isac 44130 BLAIN;;[0.261804, 49.642302];;FRFR1EVKRU1;URNZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.413295;48.800983;;;; +;;;;;;;;FRLMSE10000882711;FR*SOD*S*SDE2*104*1*_*_;St Georges des Coteaux Rue Grand Rue;;rue de Lyon 42600 SAVIGNEUX;;[0.102609, 49.505414];;FRFR1EQRMA1;URNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.29119;48.73119;;;; +;;;;;;;;FRLMSE10000882721;FR*SOD*S*SDE2*107*1*_*_;Gîte Grande Champagne - 17460 Rioux;;Avenue Clément Pineau 79500 ST LEGER DE LA MARTINIERE;;[0.131123, 49.484192];;FRFR1EMYWH2;RXXP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.24004;48.275558;;;; +;;;;;;;;FRLMSE10000882661;FR*SOD*S*SDE2*109*1*_*_;Montils - La poste;;Route de Quié 09400 TARASCON SUR ARIEGE;;[0.127461, 49.495645];;FRFR1EFGLE1;QFMZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.447615;48.653999;;;; +;;;;;;;;FRLMSE10000882651;FR*SOD*S*SDE2*102*1*_*_;270 AGENCY;;ZI LA PALISSE 07160 LE CHEYLARD;;[0.160302, 49.515081];;FRFR1EKAFD1;RBDL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.030685;48.347656;;;; +;;;;;;;;FRLMSE10001142022;FR*SOD*S*SDE2*110*1*_*_;PARKING ALU GRANON;;ZI RUE DE L'UNGERSBERG 67220 NEUVE EGLISE;;[0.115706, 49.525553];;FRFR1EKAFD2;HKSH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.243134;48.545696;;;; +;;;;;;;;FRLMSE10000882611;FR*SOD*S*SDE2*111*1*_*_;Parking le temps des secrets;;17 Rue des Portes Rouges 86370 VIVONNE;;[-61.09407341836829, 14.607158013009274];;FRFR1EFTKJ1;RBDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.513678;48.541393;;;; +;;;;;;;;FRLMSE10001142032;FR*SOD*S*SDE2*112*1*_*_;Parking SAS PERRUT;;200 Route de Lyon 69390 Vernaison;;[-60.93685837866524, 14.560713873777255];;FRFR1EKCYS1;YNBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.837421;48.22707;;;; +;;;;;;;;FRLMSE10000348683;FR*SOD*S*SDE2*101*1*_*_;BBJ Mazères;;Lieu dit Les Renauds 71220 SAINT BONNET DE JOUX;;[-60.902208073487955, 14.486405978847023];;FRFR1EWLKQ1;GZMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.175645;48.536179;;;; +;;;;;;;;FRLMSE10000348682;FR*SOD*S*SDE2*113*1*_*_;Leclerc Mimizan;;Rue des Châteaux;;[-61.0396036414057, 14.670001347489613];;FRFR1EQHMM1;GZGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.396323;48.394058;;;; +;;;;;;;;FRLMSE10001142031;FR*SOD*S*SDE2*96*1*_*_;Leclerc Express Labouheyre;;1 Impasse de Recouvrance 17100 SAINTES;;[-1.0810055, 49.0997673];;FRFR1EDKQC2;HKQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.968046;48.59726;;;; +;;;;;;;;FRLMSE10000348673;FR*SOD*S*SDE2*136*1*_*_;Centre Auto Leclerc Langon;;65 route de Nancy 57200 SARREGUEMINES;;[1.537796, 43.5282203];;FRFR1EDKQC1;GZMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.180457;48.815392;;;; +;;;;;;;;FRLMSE10000348672;FR*SOD*S*SDE2*93*1*_*_;Leclerc Biars;;32 Rue Trivalle, 11000 Carcassonne;;[2.175945, 43.9295849];;FRFR1ELGRU2;HAQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.000515;48.674393;;;; +;;;;;;;;FRLMSE10000348663;FR*SOD*S*SDE2*94*1*_*_;Leclerc Mios;;86 Allée Jean Jaurès 31000 Toulouse, Haute-Garonne;;[3.2631235, 49.851386];;FRFR1EYZTU2;HAQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.295955;48.566673;;;; +;;;;;;;;FRLMSE10000348662;FR*SOD*S*SDE2*95*1*_*_;SA FOOTBALL CLUB DES GIRONDINS DE BORDEAUX;;Lieu dit Taverna, 20218 Piedigriggio;;[5.25,44.40];;FRFR1EYZTU1;REKU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.269847;48.842125;;;; +;;;;;;;;FRSGAP1D2009;FR*SOD*S*SDE2*97*1*_*_;Parking Tente;;ZA LES MARLIERES;;[-0.2589209,49.2692571];;FRFR1EAWMP1;EPEM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.444974;48.679855;;;; +;;;;;;;;FRAEVBP2011078;FR*SOD*S*SDE2*98*1*_*_;Avenue Méquillet;;Zac de Chanteloup Avenue Isaac Newton;;[-0.1096503,49.2859075];;FRFR1EWEHM1;EPEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.191425;48.509109;;;; +;;;;;;;;FRAEVBP2022531;FR*SOD*S*SDE2*99*1*_*_;Place des Charpentiers;;377 Route de Bournac;;[1.1676349,49.2254847];;FRFR1EHEJA1;REKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.340143;48.607483;;;; +;;;;;;;;FRISEEINOUIDQUINCY;FR*SOD*S*SDE2*100*1*_*_;Intermarché Bonneville;;330 route de Chagny 71520 SAINT-POINT;;[-3.0071297,47.6644493];;FRFR1EKVSD1;RDPY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.228862;48.683102;;;; +;;;;;;;;FRAU10007;FR*SOD*S*SDE2*115*1*_*_;Hôtel MACCHI;;2933 CHEMIN DE L'ANCIENNE VOIE FERREE;;[0.9605582,49.5355585];;FRFR1EULCF1;GZGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.523392;48.771851;;;; +;;;;;;;;FRSYSELMSSAR;FR*SOD*S*SDE2*132*1*_*_;Hotel Saint Walfrid;;RUE CURIE 77177;;[-0.370679,49.182863];;FRFR1EDQAX1;HKTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.914907;48.556736;;;; +;;;;;;;;FRSYSELMSSGDB;FR*SOD*S*SDE2*127*1*_*_;DACIA RONCQ;;36 rue Denis Papin 77290 Mitry;;[1.7638707,49.2764924];;FRFR1EYFNX1;HBZK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.449318;48.672264;;;; +;;;;;;;;FRSYSELMSBOI;FR*SOD*S*SDE2*128*1*_*_;Petibonum;;10 RUE DU DOCTEUR FRANCOISE DOLTO 01500 AMBERIEU EN BUGEY;;[-0.6863119,49.2746651];;FRFR1EQFQG1;UEMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.567519;48.76889;;;; +;;;;;;;;FRSYSELMSPAT;FR*SOD*S*SDE2*129*1*_*_;Digicel-Publique;;500 boulvard charles cros;;[-0.0373753,49.020012];;FRFR1EKRXT2;TVMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.517125;48.556637;;;; +;;;;;;;;FRSYSELMSFON;FR*SOD*S*SDE2*130*1*_*_;Colibri;;Avenue General de Gaulle 53500 ERNEE (53);;[0.271643,49.145128];;FRFR1EWTFS3;UEMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.947672;48.6227;;;; +;;;;;;;;FRSYSEETIK;FR*SOD*S*SDE2*131*1*_*_;Socanparc - Pointe Simon;;Place de la Gare 53600 EVRON (53);;[1.026733,49.4474373];;FRFR1EKRXT1;BUDX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.347963;48.493778;;;; +;;;;;;;;FRSE1PSE60BVTA;FR*SOD*S*SDE2*133*1*_*_;Socanparc - Lafcadio;;Place de la Basilique 53600 EVRON (53);;[0.491859,49.549938];;FRFR1EWTFS1;VTVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.342592;48.631336;;;; +;;;;;;;;FRSE1PSE62HAXA;FR*SOD*S*SDE2*126*1*_*_;Le chill;;Place de l'Hôtel de Ville 53500 ERNEE (53);;[1.0646759,49.4153984];;FRFR1EWTFS2;VTZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.184587;48.771084;;;; +;;;;;;;;FRSE1PSE62AHCA;FR*SOD*S*SDE2*134*1*_*_;Koud'pouss;;Place du Mûrier 53400 CRAON (53);;[1.1550216,48.9978196];;FRFR1ECWAM2;VTZP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.20627;48.274349;;;; +;;;;;;;;FRSE1PSE62AHGA;FR*SOD*S*SDE2*135*1*_*_;Hôtel la Bastide de Vaison;;Place du Rassemblement du 28 Juillet 1944 53190 FOUGEROLLES-DU-PLESSIS (53);;[0.6610584,48.7624117];;FRFR1EKSCY2;GFEV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.716298;48.580271;;;; +;;;;;;;;FRSE1PSE62BEGA;FR*SOD*S*SDE2*120*1*_*_;Cabinet Dentaire du Calavon - Beaumettes;;Place du Champ de Foire 53230 COSSE-LE-VIVIEN (53);;[-0.455859,49.3210887];;FRFR1ECWAM1;TVAN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.982932;48.433086;;;; +;;;;;;;;FRSE1PSE62BEMA;FR*SOD*S*SDE2*116*1*_*_;Parking TECHOFFICE;;Rue René Perreault 53200 CHATEAU-GONTIER (53);;[0.815166,49.3586376];;FRFR1ECWAM3;BUDX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.577855;48.531796;;;; +;;;;;;;;FRSE1PSE62HSXA;FR*SOD*S*SDE2*125*1*_*_;Parking HOTEL DU PORGE;;Place de l'lise 53940 LE GENEST-SAINT-ISLE (53);;[0.19538,49.5149];;FRFR1EKSCY1;HKQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.34587;48.807682;;;; +;;;;;;;;FRSE1PSE62HBXA;FR*SOD*S*SDE2*118*1*_*_;La Halle des Producteurs 84300 Cavaillon;;Promenade de Mahier 53200 CHATEAU-GONTIER (53);;[1.0317198,49.2760261];;FRFR1EKZPP2;KDZF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.144788;48.484627;;;; +;;;;;;;;FRSE1PSE31RVTA;FR*SOD*S*SDE2*119*1*_*_;Borne de recharge Green diffusion;;Place de la Mairie 53120 GORRON (53);;[-0.3017575,49.1910497];;FRFR1EKZPP1;YNBV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.218302;48.696449;;;; +;;;;;;;;FRSE1PSE62HGXA;FR*SOD*S*SDE2*121*1*_*_;Borne de recharge SCI noki;;Place de la Mairie 53290 GREZ-EN-BOUERE (53);;[6.604637, 48.077638];;FRFR1EAWMP2;TVAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.056249;48.473217;;;; +;;;;;;;;FRSE1PSE60BVQA;FR*SOD*S*SDE2*122*1*_*_;Borne Charriere Meyrueil;;Place de la Mairie 53250 JAVRON-LES-CHAPELLES (53);;[6.3491347,47.3517596];;FRFR1EMBJY2;GFEZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.386452;48.347222;;;; +;;;;;;;;FRSE1PSE62MACA;FR*SOD*S*SDE2*124*1*_*_;Borne wallbox Atelier provence loisirs,Mondragon;;Parking du Musée 53160 JUBLAINS (53);;[-2.247222, 47.001784];;FRFR1EWGAC2;KDZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.678333;48.283971;;;; +;;;;;;;;FRSE1PSE62MAPA;FR*SOD*S*SDE2*123*1*_*_;Antilles Téléphone;;Place de la Mairie 53380 JUVIGNE (53);;[-2.4083504069540536, 48.63538775462057];;FRFR1EWGAC1;TVMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.00721;48.405834;;;; +;;;;;;;;FRSE1PSE55BYBA;FR*SOD*S*SD29*68*1*_*_;BUT Acajou;;Allée du Haut Perrin 53110 LASSAY-LES-CHATEAUX (53);;[0.073833, 49.510417];;FRFR1EQJCU2;GFEZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.186402;48.588692;;;; +;;;;;;;;FRSE1PSE52DYZA;FR*SOD*S*SD29*70*1*_*_;Hôtel B&B;;Place de la Mairie 53810 CHANGE (53);;[0.223944, 49.564167];;FRFR1EAWAV1;QWNZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.214817;48.522652;;;; +;;;;;;;;FRSE1PSE62MBBA;FR*SOD*S*SD29*71*1*_*_;SEEN La Lézarde;;Rue de Linière 53340 BALLEE (53);;[0.123139, 49.503611];;FRFR1EYWQC1;NUTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.423825;48.812908;;;; +;;;;;;;;FRSE1PSE35NSP3;FR*SOD*S*SD29*71*2*_*_;Norauto - Le Lamentin - 972 - 22kW;;Rue de Concise 53940 AHUILLE (53);;[0.085389, 49.505944];;FRFR1ELVEG1;PCRE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.084445;48.630241;;;; +;;;;;;;;FRSE1PSE45NSBA;FR*SOD*S*SD29*69*1*_*_;Centre Auto;;Place du Cheau 53300 AMBRIERES-LES-VALLEES (53);;[2.325158187997181, 48.63340097926608];;FRFR1EEWMK2;UMLE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.552271;48.62648;;;; +;;;;;;;;FRSE1PSE45NSBB;FR*SOD*S*SD29*67*1*_*_;Diet Vert Dillon;;Chemin des Marzelles 53210 ARGENTRE (53);;[-1.9851546747886144, 48.50192886577205];;FRFR1EYWQC2;UQNP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.851859;48.408466;;;; +;;;;;;;;FRSE1PSE54LYVA;FR*SOD*S*SD29*72*1*_*_;Jambette;;Rue de Terre Rouge 53200 AZE (53);;[4.78275924122744,43.795898154156454];;FRFR1ERVZB2;UMWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.358388;48.512863;;;; +;;;;;;;;FRSE1PSE60BVMA;FR*SOD*S*SD29*75*1*_*_;Mairie du Prêcheur;;Rue de Saint-Aventin 53200 AZE (53);;[3.936256705171751, 43.63943483453543];;FRFR1EEWMK1;VRWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.467628;48.455833;;;; +;;;;;;;;FRSE1PSE54PYXA;FR*SOD*S*SD29*73*1*_*_;Carrefour Market Morne Rouge;;Salle Multi-Sports - la Garelière 53240 LA BACONNIERE (53);;[3.2798983323309523, 43.33412185286013];;FRFR1EKAFY2;UTLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.833905;48.224899;;;; +;;;;;;;;FRSE1PSE60BVJA;FR*SOD*S*SD29*74*1*_*_;Sodiva - Parking client Citroen - 972 - 22kW;;Avenue Auguste Janvier 53160 BAIS (53);;[3.8515752990825822, 43.57430316069223];;FRFR1EKAFY1;UTLN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.324368;48.613342;;;; +;;;;;;;;FRSE1PSE77CVAA;FR*SOD*S*SD29*76*1*_*_;Orange OGC;;Rue Albert Einstein - Parking Palindrome 53000 LAVAL (53);;[5.7257621, 45.1810981];;FRFR1EAWAV2;YMYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.126689;48.776299;;;; +;;;;;;;;FRSE1PSE62MBCA;FR*SOD*S*SD29*77*1*_*_;Orange Pointe de Grives;;Rue de la Closeraie 53350 BALLOTS (53);;[3.1176181, 50.6535398];;FRFR1EAWWH1;YMYX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.028889;48.514561;;;; +;;;;;;;;FRSE1PSE88SYBA;FR*SOD*S*SD29*66*1*_*_;Mr Bricolage Petit Manoir;;Impasse de la Tannerie 53170 BAZOUGERS (53);;[1.8547222,50.9522222];;FRFR1EQJCU1;UKRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.096286;48.32917;;;; +;;;;;;;;FRSE1PSE91BMPA;FR*SOD*S*SD29*78*1*_*_;Simar Les Cycas;;Rue du Maine - Parking les Angenoises 53960 BONCHAMP-LES-LAVAL (53);;[2.3533333,50.5700000];;FRFR1EAWWH2;UMCQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.47037;48.445023;;;; +;;;;;;;;FRSE1PSE91BSCA;FR*SOD*S*SD29*58*1*_*_;Bebe 9 Abymes;;Rue de Sablé - Parking de la Mairie 53290 BOUESSAY (53);;[1.8369444,50.9519444];;FRFR1EDNYS1;YKFE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.048475;48.315941;;;; +;;;;;;;;FRSE1PSE91BSPA;FR*SOD*S*SD29*65*1*_*_;ETS POMMEZ;;Rue Louis de Broglie - Parking Te53 53810 CHANGE (53);;[0.122687, 49.494916];;FRFR1EDNYS2;YKFE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.757097;48.55727;;;; +;;;;;;;;FRSE1PSE91DBCA;FR*SOD*S*SD29*54*1*_*_;H alu Saint Tibéry;;Le Bourg 53220 PONTMAIN (53);;[0.172373, 49.499466];;FRFR1EUWPF2;YKAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.486411;48.381901;;;; +;;;;;;;;FRSE1PSE91DBGA;FR*SOD*S*SD29*79*1*_*_;Lounapiou, Maussane-les-alpilles;;Place Henri IV 53290 SAINT-DENIS-D'ANJOU (53);;[0.080807, 49.504056];;FRFR1ERSSX2;ULAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.854698;48.832668;;;; +;;;;;;;;FRSE1PSE91DBPA;FR*SOD*S*SD29*55*1*_*_;DLM VITROLLES;;Place de l'Europe 53800 RENAZE (53);;[0.106136, 49.493591];;FRFR1ENUBE2;ULAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.057214;48.239723;;;; +;;;;;;;;FRSE1PSE91DBQA;FR*SOD*S*SD29*56*1*_*_;BEAUDINARD AUBAGNE;;Rue des Troenes 53140 PRE-EN-PAIL (53);;[0.197971, 49.513438];;FRFR1EUWPF1;UMCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.44691;48.252918;;;; +;;;;;;;;FRSE1PSE91DCAA;FR*SOD*S*SD29*57*1*_*_;PEPINIERES TRETS;;Rue de Saint-Céneré 53150 MONTSURS (53);;[0.210925, 49.502917];;FRFR1ENUBE1;UQNP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.9816;48.60416;;;; +;;;;;;;;FRSE1PSE91DSUA;FR*SOD*S*SD29*59*1*_*_;jardin des cevennes;;Rue Volney 53100 MAYENNE (53);;[0.197275, 49.504122];;FRFR1ERSSX1;UTAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.513626;48.389;;;; +;;;;;;;;FRSE1PSE91DSUB;FR*SOD*S*SD29*60*1*_*_;BAYEUX;;Place de la Mairie 53220 MONTAUDIN (53);;[0.105017, 49.530122];;FRFR1EMBJY1;UTAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.252257;48.359306;;;; +;;;;;;;;FRSE1PSE77CVKA;FR*SOD*S*SD29*61*1*_*_;HYUNDAI LISIEUX;;Place de la Poste 53170 MESLAY-DU-MAINE (53);;[0.163932, 49.513496];;FRFR1EMEYM1;USZY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.294399;48.352299;;;; +;;;;;;;;FRSE1PSE77MSRA;FR*SOD*S*SD29*62*1*_*_;HOTEL B&B;;Parking Léonard de Vinci 53100 MAYENNE (53);;[0.193942, 49.544211];;FRFR1EQTEJ1;UMWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.151064;48.280586;;;; +;;;;;;;;FRSE1PSE62MBDA;FR*SOD*S*SD29*63*1*_*_;Parking HAPOGYS;;Place des Tilleuls 53500 SAINT-DENIS-DE-GASTINES (53);;[0.191899, 49.506711];;FRFR1EAJRF1;UPVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.129;48.47099;;;; +;;;;;;;;FRSE1PSE68EGPV;FR*SOD*S*SD29*64*1*_*_;SCI PARAMEDICA;;Place de l'lise 53410 SAINT-OUEN-DES-TOITS (53);;[0.229806, 49.511389];;FRFR1EEMVY1;USZY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.523397;48.518089;;;; +;;;;;;;;FRSE1PSE76HBDA;FR*SOD*S*SD29*98*1*_*_;DLM DARDILLY;;Place de l'lise 53370 SAINT-PIERRE-DES-NIDS (53);;[0.189389, 49.543417];;FRFR1EMYKD1;VRWE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.045;48.4561;;;; +;;;;;;;;FRSE1PSE76HBDB;FR*SOD*S*SD29*93*1*_*_;DLM LYON EST;;Place des Charrieres 53270 SAINTE-SUZANNE (53);;[0.110167, 49.509889];;FRFR1ERUYM2;VRAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.838271;48.177609;;;; +;;;;;;;;FRSE1PSE77CVQA;FR*SOD*S*SD29*94*1*_*_;DLM LYON;;Rue des Grottes 53340 SAULGES (53);;[0.173417, 49.551389];;FRFR1EWMLY1;UUJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.51775;48.409;;;; +;;;;;;;;FRSE1PSE77CVZA;FR*SOD*S*SD29*95*1*_*_;DLM VILLENEUVE D'ASCQ;;Rue des Charmes 53480 VAIGES (53);;[-2.76385, 48.5139];;FRFR1EWMLY2;UUJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.765253;48.514324;;;; +;;;;;;;;FRSE1PSE77MCHA;FR*SOD*S*SD29*96*1*_*_;DLM SECLIN;;Boulevard de Gaulle 53700 VILLAINES-LA-JUHEL (53);;[0.0,0.0];;FRFR1ERJMY2;UVBQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.0562;48.663328;;;; +;;;;;;;;FRSE1PSE77CVXA;FR*SOD*S*SD29*97*1*_*_;DLM MONTPELLIER;;Place de l'lise 53170 VILLIERS-CHARLEMAGNE (53);;[7.39705, 48.2576];;FRFR1ETMNM1;VRAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.758196;48.238331;;;; +;;;;;;;;FRV75PPX1616;FR*SOD*S*SD29*99*1*_*_;WALLBOX, CD, SAINT-NAZAIRE;;Avenue Robert Buron 53000 LAVAL (53);;[7.39882, 48.253];;FRFR1ETMNM2;UVBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.0288;48.731562;;;; +;;;;;;;;FRV75PPX1618;FR*SOD*S*SD29*100*1*_*_;DLM ANNECY;;Parking CCAS 53000 LAVAL (53);;[-1.82319, 48.2502];;FRFR1EMYKD2;USGX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.779689;48.757046;;;; +;;;;;;;;FRV75PPX1617;FR*SOD*S*SD29*101*1*_*_;DLM MARSEILLE;;Avenue des Francais Libres - Parking de la Jaunaie 53000 LAVAL (53);;[-1.55734, 47.2201];;FRFR1ERUYM1;USGX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.873183;48.654836;;;; +;;;;;;;;FRV75PPX1614;FR*SOD*S*SD29*102*2*_*_;DLM CHAMBERY;;Avenue Paul Guyard 53100 MAYENNE (53);;[-1.67833, 48.1044];;FRFR1ERJMY1;VRMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.441176;48.784696;;;; +;;;;;;;;FRV75PPX1615;FR*SOD*S*SD29*102*1*_*_;DLM WAMBRECHIES;;Place de Hercé 53000 LAVAL (53);;[-0.895146, 47.0429];;FRFR1EFFTD2;VRMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.453745;48.611415;;;; +;;;;;;;;FRV75PPX1622;FR*SOD*S*SD29*102*3*_*_;ESCAPE MIND;;Rue du Vieux Saint-Louis 53000 LAVAL (53);;[-1.63448, 48.1093];;FRFR1EFFTD1;YKAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.470821;48.606523;;;; +;;;;;;;;FRV75PPX1613;FR*SOD*S*SD29*103*1*_*_;CAP EMPLOI;;Rue Madeleine Bres 53000 LAVAL (53);;[5.44753, 43.5069];;FRFR1ECCUH2;UMLE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.63257;48.180209;;;; +;;;;;;;;FRV75PPX1621;FR*SOD*S*SD29*53*1*_*_;MAS DE L'EVAJADE;;Rue Joséphine Baker 53000 LAVAL (53);;[1.95241, 43.2928];;FRFR1ECCUH1;ZVFT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.517615;48.632057;;;; +;;;;;;;;FRV75PPX1620;FR*SOD*S*SD29*92*1*_*_;PARKING ROUMANILLE SAINT REMY;;Rue du Docteur Ramé 53320 LOIRON (53);;[4.5801292, 45.9221544];;FRFR1EQQBP1;UKRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.473512;48.541696;;;; +;;;;;;;;FRV75PPX1619;FR*SOD*S*SD29*80*1*_*_;Fasthôtel Montpellier Ouest - 2 Bornes ALFEN 22kW + prise E/F ouvertes au public ( Identification via badge RFID );;Rue de la Fontaine Saint-Georges 53470 MARTIGNE-SUR-MAYENNE (53);;[-1.374363, 48.663549];;FRFR1EZRKR1;VYWF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.467023;48.521725;;;; +;;;;;;;;FRV75PPX1609;FR*SOD*S*SD29*81*1*_*_;Fasthôtel compiègne;;Rue Auguste Renoir 53950 LOUVERNE (53);;[4.67,46.69];;FRFR1ENXBM1;VYWF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.735503;48.422768;;;; +;;;;;;;;FRV75PPX1608;FR*SOD*S*SD29*82*1*_*_;EIFFAGE GENIE CIVIL - ROLAND;;Rue d'Anjou 53200 LOIGNE-SUR-MAYENNE (53);;[3.0873262, 50.5445143];;FRFR1EMLBZ1;DTPP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.986308;48.517834;;;; +;;;;;;;;FRV75PPX1607;FR*SOD*S*SD29*83*1*_*_;Hôtel Kyriad Angers Beaucouzé;;chemin théophile farnaud 04100 Manosque;;[-1.3577, 43.6368];;FRFR1EWGST1;DTPP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.972857;48.23396;;;; +;;;;;;;;FRV75PPX1606;FR*SOD*S*SD29*84*1*_*_;HOTEL LYON EST;;1 La Vicomterie;;[3.0865, 43.1076];;FRFR1EJXDY1;DNBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.229598;48.29814;;;; +;;;;;;;;FRV75PPX1605;FR*SOD*S*SD29*85*1*_*_;Fitness park Jarry;;Rue Docteur Charles Coignard 49300 CHOLET (49);;[2.372946, 48.919807];;FRFR1EEMVY2;EBFT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.445852;48.450901;;;; +;;;;;;;;FRV75PPX1612;FR*SOD*S*SD29*86*1*_*_;STATION LOUIS PRADEL;;Rue Aubance 49300 CHOLET (49);;[9.46,42.72];;FRFR1ECJJH1;EBFT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.1873;48.377785;;;; +;;;;;;;;FRV75PPX1611;FR*SOD*S*SD29*87*1*_*_;Argos;;Rue Bourg Baudry - Parking 49300 CHOLET (49);;[3.00201, 42.60646];;FRFR1ECJJH2;DNBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.73364;48.61179;;;; +;;;;;;;;FRV75PPX1610;FR*SOD*S*SD29*88*1*_*_;Parking Hotel Le Moulin;;Rue des Sabotiers 49300 CHOLET (49);;[-0.5008902, 44.7920565];;FRFR1EPATK1;UXZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.51702;48.598099;;;; +;;;;;;;;FRV75PPX1626;FR*SOD*S*SD29*89*1*_*_;ELEC eCONNECT Tain l'hermitage;;Rue de l'Hôtel de Ville 49300 CHOLET (49);;[-0.7584632000000058, 46.135216299999996];;FRFR1EMEYM2;UXZP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.0441;48.198135;;;; +;;;;;;;;FRV75PPX1704;FR*SOD*S*SD29*90*1*_*_;STATION PETITE GROSNE;;Place 77ème Régiment d'Infanterie 49300 CHOLET (49);;[5.495418,46.675892];;FRFR1ERVGG2;RKCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.247365;48.786499;;;; +;;;;;;;;FRV75PPX1703;FR*SOD*S*SD29*91*1*_*_;Parking duGolf;;Avenue de la Marne 49300 CHOLET (49);;[-0.5745869999999909, 44.866026700000006];;FRFR1ERVGG1;RKCD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.165161;48.4747;;;; +;;;;;;;;FRV75PPX1702;FR*SOD*S*SD29*15*1*_*_;STATION THEODORE BRAUN;;Boulevard Delhumeau Plessis 49300 CHOLET (49);;[-1.506315, 48.904942];;FRFR1EUHTU1;UXLZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.189;48.403732;;;; +;;;;;;;;FRV75PPX1701;FR*SOD*S*SD29*52*1*_*_;CAMPING OASIS VILLAGE;;Avenue Nantes 49300 CHOLET (49);;[5.23,43.51];;FRFR1EJAHY1;CDZN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.987586;48.389687;;;; +;;;;;;;;FRV75PPX1631;FR*SOD*S*SD29*13*1*_*_;SEDRFGHJKL;;Place du Commerce 49520 COMBREE (49);;[5.24,43.51];;FRFR1EJAHY2;QWXK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.223394;48.664848;;;; +;;;;;;;;FRV75PPX1708;FR*SOD*S*SD29*14*1*_*_;HYUNDAI CASTRES;;Place du Logis des Moines 49630 CORNE (49);;[5.40,43.44];;FRFR1EJADS2;VHTX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.04553;48.303225;;;; +;;;;;;;;FRV75PPX1707;FR*SOD*S*SD29*104*1*_*_;Joris Ide Onnaing;;Place Pont Pouillet 49350 CHENEHUTTE-TREVES-CUNAULT (49);;[5.24,43.40];;FRFR1EJADS1;RRFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.91299;48.542061;;;; +;;;;;;;;FRV75PPX1706;FR*SOD*S*SD29*16*1*_*_;Intermarché - Amiens - 22KW AC;;Rue Eole 49690 CORON (49);;[5.24,43.42];;FRFR1EUHTU2;XQEX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.869649;48.429111;;;; +;;;;;;;;FRV75PPX1705;FR*SOD*S*SD29*17*1*_*_;Parking MOULIN DE LABOIRIE;;Place des Piliers 49270 CHAMPTOCEAUX (49);;[3.67,49.47];;FRFR1EPATK2;RUAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.133419;48.586258;;;; +;;;;;;;;FRV75PPX1623;FR*SOD*S*SD29*18*1*_*_;Jo Froid;;Place des Perrocheres 49120 CHEMILLE (49);;[4.77616501, 45.67892728];;FRFR1EEUYX1;RUSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.009714;48.69836;;;; +;;;;;;;;FRV75PPX1627;FR*SOD*S*SD29*19*1*_*_;La Chaumière;;Parking Super U 49440 CANDE (49);;[-1.0925522, 44.3457871];;FRFR1EMKKK2;QQGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.727605;48.449814;;;; +;;;;;;;;FRV75PPX1625;FR*SOD*S*SD29*20*1*_*_;Hôtel La Marmotte;;Rue Nationale 49140 CORZE (49);;[4.7573375, 46.3641578];;FRFR1EMKNV2;RUKN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.914543;48.315102;;;; +;;;;;;;;FRV75PPX1624;FR*SOD*S*SD29*21*2*_*_;Saint Adrien;;Route d'Angers 49460 CANTENAY-EPINARD (49);;[2.77247, 50.39143];;FRFR1EMKRP2;RWVZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.13708;48.727578;;;; +;;;;;;;;FRV75PPX1630;FR*SOD*S*SD29*21*1*_*_;Agence 973;;Rue des Tonneliers 49290 CHALONNES-SUR-LOIRE (49);;[2.91136, 50.3822];;FRFR1EMKKK1;RUAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.159283;48.640558;;;; +;;;;;;;;FRV75PPX1629;FR*SOD*S*SD29*22*1*_*_;Maire de Remire-Montjoly;;Rue du Muguet 49330 CHAMPIGNE (49);;[6.943865577251607, 43.53867520000001];;FRFR1EMKNV1;RWVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.388829;48.234554;;;; +;;;;;;;;FRV75PPX1628;FR*SOD*S*SD29*23*1*_*_;Parking Sud Hotel;;Place de l'lise 49123 CHAMPTOCE-SUR-LOIRE (49);;[6.949769135, 43.6344804];;FRFR1EMKRP1;RUSX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.15994;48.675999;;;; +;;;;;;;;FRV75PPX1537;FR*SOD*S*SD29*24*1*_*_;Garage Renault Lefebvre;;20 Rue des Mauges 49270 OREE-D'ANJOU (49);;[1.8323045, 50.6733928];;FRFR1EADAB1;VHQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.456394;48.357742;;;; +;;;;;;;;FRV75PPX1519;FR*SOD*S*SD29*25*1*_*_;La Bouche Rit Wissant;;Rue Nationale 49600 LA CHAPELLE-DU-GENET (49);;[7.109555, 49.108611];;FRFR1EAYFV1;RUKN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.248423;48.70467;;;; +;;;;;;;;FRV75PPX1518;FR*SOD*S*SD29*12*1*_*_;Pilotage Maritime Marck;;Place Robert Lefort 49330 CHATEAUNEUF-SUR-SARTHE (49);;[4.37194830,43.483111];;FRFR1ESAVA1;QQGW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.316225;48.55711;;;; +;;;;;;;;FRV75PPX1517;FR*SOD*S*SD29*1*1*_*_;Ford - Vitrolles - 22kW AC;;Parking de la Mairie 49110 CHAUDRON-EN-MAUGES (49);;[-2.817927, 48.569214];;FRFR1EFGWH1;RRFD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.928985;48.490196;;;; +;;;;;;;;FRV75PPX1516;FR*SOD*S*SD29*2*1*_*_;Style and Design - Maurepas - 7.4kW AC;;Place Saint-Pierre 49120 CHEMILLE (49);;[-2.004982, 48.526901];;FRFR1ELYKA1;XSSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.125556;48.52273;;;; +;;;;;;;;FRV75PPX1515;FR*SOD*S*SD29*3*1*_*_;Mazda - Saint-Etienne - 22kW AC;;Rue de la Cure 49460 FENEU (49);;[-2.857123, 48.554886];;FRFR1EFVVE1;VHTX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.1057;48.381386;;;; +;;;;;;;;FRV75PPX1522;FR*SOD*S*SD29*4*1*_*_;Avenue Michel Adam;;2 Place de l'Abbé Humeau 49330 ETRICHE (49);;[-3.295882, 48.813103];;FRFR1EXAKE1;RMBJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.104479;48.42165;;;; +;;;;;;;;FRV75PPX1521;FR*SOD*S*SD29*5*1*_*_;Rue Amiral Courbet;;Rue de l'Evre - Parking lise 49600 LE FIEF-SAUVIN (49);;[-3.305036, 48.777443];;FRFR1EKFEB1;UPVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.736905;48.732681;;;; +;;;;;;;;FRV75PPX1520;FR*SOD*S*SD29*6*1*_*_;Rue du Général Mangin - Bléville;;Place du 8 Mai 1945 49590 FONTEVRAUD-L'ABBAYE (49);;[-2.53545, 48.198631];;FRFR1EYGHA1;WKHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.751509;48.655931;;;; +;;;;;;;;FRV75PPX1514;FR*SOD*S*SD29*7*1*_*_;Rue de Mondeville - Aquabowling;;Parking Huit A Huit 49270 LE FUILET (49);;[-2.768753, 48.506653];;FRFR1EPYJH1;WYUP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.0;48.482021;;;; +;;;;;;;;FRV75PPX1523;FR*SOD*S*SD29*8*1*_*_;Place Raymond Poincare;;Place du 19 Mars 49350 GENNES (49);;[-3.397579, 48.222214];;FRFR1EEANC1;LMYS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.657751;48.551281;;;; +;;;;;;;;FRV75PPX1510;FR*SOD*S*SD29*9*1*_*_;Place Léon Carlier - 23 Boulevard Amiral Mouchez;;Place des Peupliers 49600 GESTE (49);;[-3.138881, 48.842079];;FRFR1EJGPV1;YUEH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.155936;48.350601;;;; +;;;;;;;;FRV75PPX1509;FR*SOD*S*SD29*10*1*_*_;Conservatoire Arthur Honegger - Place des Expositions;;Rue de la Mairie 49670 VALANJOU (49);;[-3.26137, 48.7452];;FRFR1EKJTX1;LLTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.32811;48.176651;;;; +;;;;;;;;FRV75PPX1508;FR*SOD*S*SD29*11*1*_*_;Lycee Auguste Perret - Rue Boris Vian;;Rue du Lionnais 49220 GREZ NEUVILLE (49);;[-2.617642, 48.276394];;FRFR1ESPRN1;YLAJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.703044;48.629478;;;; +;;;;;;;;FRV75PPX1507;FR*SOD*S*SD29*26*1*_*_;Gymnase du Mont-Gaillard - 41 Avenue du Mont-Gaillard;;Parking de la Gare 49123 INGRANDES (49);;[-1.951, 48.5108];;FRFR1EDTQH1;ZFTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.147928;48.648033;;;; +;;;;;;;;FRV75PPX1506;FR*SOD*S*SD29*39*1*_*_;972 -CASINO BATELIERE PLAZZA;;Parking Rue Jean Gallart 49650 ALLONNES (49);;[-2.829592, 48.601341];;FRFR1EJAUV1;LLTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.0058;48.52913;;;; +;;;;;;;;FRV75PPX1505;FR*SOD*S*SD29*40*1*_*_;972 - SAINT ESPRIT;;Place des Combattants 49510 JALLAIS (49);;[-2.66815, 48.51302];;FRFR1EQBAM1;VNVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.591516;48.401482;;;; +;;;;;;;;FRV75PPX1709;FR*SOD*S*SD29*41*1*_*_;972 - RIVIERE PILOTE MARCHE;;Place Norbert d'Avignon 49140 JARZE (49);;[-2.81773, 48.408218];;FRFR1ERGKV1;ZKHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.869428;48.482624;;;; +;;;;;;;;FRV75PPX1513;FR*SOD*S*SD29*42*1*_*_;972 - SAINT JOSEPH;;Place Saint-Nicolas 49440 CANDE (49);;[-2.744903, 48.446144];;FRFR1EMQTS1;ZJTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.824075;48.788181;;;; +;;;;;;;;FRV75PPX1512;FR*SOD*S*SD29*43*1*_*_;BMW SAINT LO;;Rue des oles 49460 ECUILLE (49);;[-2.042515, 48.442223];;FRFR1ECECN1;ZCXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.26435;48.53167;;;; +;;;;;;;;FRV75PPX1511;FR*SOD*S*SD29*44*1*_*_;HYUNDAI LABEGE;;Rue Moulin de la Motte 49140 CORZE (49);;[-3.148005, 48.56057];;FRFR1EDLFF1;VNVB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.9103;48.778999;;;; +;;;;;;;;FRV75PPX1604;FR*SOD*S*SD29*45*1*_*_;FIRSTOP ALBI;;Parking Acacias 49800 LA DAGUENIERE (49);;[-1.982655, 48.486935];;FRFR1EAKPE1;PBFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.792394;48.359794;;;; +;;;;;;;;FRV75PPX1536;FR*SOD*S*SD29*46*1*_*_;BMW SAINT QUENTIN;;ZAC Champs Blanchard 49400 DISTRE (49);;[-3.441761, 48.807404];;FRFR1EAWDD1;LQZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.103162;48.488029;;;; +;;;;;;;;FRV75PPX1535;FR*SOD*S*SD29*47*1*_*_;CAMPING LES RAMIERES 26;;Rue Cholet 49700 DOUE-LA-FONTAINE (49);;[-3.07167, 48.745758];;FRFR1EVMDE1;LQZP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.57723;48.273865;;;; +;;;;;;;;FRV75PPX1534;FR*SOD*S*SD29*48*1*_*_;LIDL OUISTREHAM;;Place Champ de Foire 49700 DOUE-LA-FONTAINE (49);;[-2.583354, 48.102253];;FRFR1ETKJA1;YLAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.043485;48.242321;;;; +;;;;;;;;FRV75PPX1533;FR*SOD*S*SD29*49*1*_*_;LIDL DIVES SUR MER;;Place de Verdun 49700 DOUE-LA-FONTAINE (49);;[-2.2244, 48.334202];;FRFR1EMNNH1;RVJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.633645;48.18869;;;; +;;;;;;;;FRV75PPX1532;FR*SOD*S*SD29*50*1*_*_;LIDL LOUVIERS;;Salle des Sports 49530 DRAIN (49);;[-3.279891, 48.751244];;FRFR1ESXMU2;LKWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.792451;48.444599;;;; +;;;;;;;;FRV75PPX1603;FR*SOD*S*SD29*51*1*_*_;LIDL ST MARCEL;;Rue du Camping 49430 DURTAL (49);;[-2.984804, 48.747627];;FRFR1ESXMU1;WABL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.187334;48.509758;;;; +;;;;;;;;FRV75PPX1602;FR*SOD*S*SD29*38*1*_*_;LIDL YVETOT;;Parking Trivoli 49430 DURTAL (49);;[-3.238562, 48.797573];;FRFR1EYEQX2;LKWV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.313114;48.515488;;;; +;;;;;;;;FRV75PPX1601;FR*SOD*S*SD29*27*1*_*_;LIDL CAEN;;Rue Epervière 49000 ECOUFLANT (49);;[-2.408021, 48.624866];;FRFR1EYEEG2;PVHF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.4236;48.453716;;;; +;;;;;;;;FRV75PPX1527;FR*SOD*S*SD29*28*1*_*_;LIDL GISORS;;Promenade Vieille Maine 49000 ECOUFLANT (49);;[-3.300457, 48.630089];;FRFR1ESYMG1;PVHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.261381;48.449455;;;; +;;;;;;;;FRV75PPX1526;FR*SOD*S*SD29*29*1*_*_;LIDL ST VIGOR LE GRAND;;Place Ney - Place R. Toublanc 49000 ANGERS (49);;[-2.75524, 48.34719];;FRFR1EWKGF2;WUVD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.072221;48.511307;;;; +;;;;;;;;FRV75PPX1525;FR*SOD*S*SD29*30*1*_*_;LIDL ST PIERRE SUR DIVES;;2 Rue du Layon 49320 BRISSAC-LOIRE-AUBANCE (49);;[-3.413295, 48.794518];;FRFR1EVSWL2;PKMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.052872;48.474991;;;; +;;;;;;;;FRV75PPX1524;FR*SOD*S*SD29*31*1*_*_;LIDL BARENTIN;;Rue Boisnet 49000 ANGERS (49);;[-2.29119, 48.5971];;FRFR1EVSWL1;PMXN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.255886;48.091808;;;; +;;;;;;;;FRV75PPX1528;FR*SOD*S*SD29*32*1*_*_;LIDL LISIEUX;;Boulevard Mirault 49000 ANGERS (49);;[-2.24004, 48.52145];;FRFR1EWKGF1;PMXN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.251662;48.000721;;;; +;;;;;;;;FRV75PPX1531;FR*SOD*S*SD29*33*1*_*_;LIDL CANTELEU;;Place Jean Moulin 49000 ANGERS (49);;[-3.447615, 48.705162];;FRFR1EYPBF2;NUTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.068542;48.645733;;;; +;;;;;;;;FRV75PPX1530;FR*SOD*S*SD29*34*1*_*_;LIDL GRUCHET LE VALASSE;;Place Europe - Rue de l'riture 49000 ANGERS (49);;[-3.030685, 48.800983];;FRFR1ELJGU1;PCRE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.750491;48.301083;;;; +;;;;;;;;FRV75PPX1529;FR*SOD*S*SD29*35*1*_*_;LIDL GRAND QUEVILLY;;Impasse du Rocher 49610 JUIGNE-SUR-LOIRE (49);;[-3.243134, 48.73119];;FRFR1EFYVJ1;ZCEP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.057633;48.587631;;;; +;;;;;;;;FRHPCPNF062001;FR*SOD*S*SD29*36*1*_*_;LIDL EVREUX;;Rue Corne de Cerf 49000 ANGERS (49);;[-2.513678, 48.275558];;FRFR1ENMXJ1;PKMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.338243;48.570396;;;; +;;;;;;;;FRV75PPX1917;FR*SOD*S*SD29*37*1*_*_;LIDL ST SULPICE SUR RISLE;;Avenue 8 Mai 45 49000 ANGERS (49);;[-2.837421, 48.653999];;FRFR1ENMXJ2;MECJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.717236;48.362984;;;; +;;;;;;;;FRV75PPX1916;FR*SOD*S*SD29*139*1*_*_;LIDL COURSEULLES SUR MER;;Avenue Hôtel Dieu 49000 ANGERS (49);;[-2.175645, 48.347656];;FRFR1EHARG1;WABL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.89678;48.448708;;;; +;;;;;;;;FRV75PPX1915;FR*SOD*S*SD29*174*1*_*_;LIDL BOURG ACHARD;;Place Bichon 49000 ANGERS (49);;[-3.396323, 48.545696];;FRFR1EAKPE2;MECJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.574715;47.796131;;;; +;;;;;;;;FRV75PPX1914;FR*SOD*S*SD29*175*1*_*_;LIDL ST AUBIN SUR SCIE;;Place Lafayette 49000 ANGERS (49);;[-2.968046, 48.541393];;FRFR1ESWLY1;YUEH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.523272;48.467697;;;; +;;;;;;;;FRV75PPX1913;FR*SOD*S*SD29*176*1*_*_;LIDL HARFLEUR;;Rue Toussaint 49000 ANGERS (49);;[-3.180457, 48.22707];;FRFR1EREFF1;LMJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.750712;48.667439;;;; +;;;;;;;;FRV75PPX1912;FR*SOD*S*SD29*177*1*_*_;LIDL ST PIERRE LES ELBEUF;;Rue Louis Gain 49000 ANGERS (49);;[-3.000515, 48.536179];;FRFR1EMVGC2;RVJV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.763813;48.633446;;;; +;;;;;;;;FRV75PPX2003;FR*SOD*S*SD29*178*1*_*_;LIDL COLOMBELLES;;Boulevard Coubertin 49000 ANGERS (49);;[-3.295955, 48.394058];;FRFR1EFMDP1;LMYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.280342;48.328011;;;; +;;;;;;;;FRV75PPX2002;FR*SOD*S*SD29*179*1*_*_;MAUFFREY ACADEMY;;Boulevard Dumesnil 49000 ANGERS (49);;[-3.269847, 48.59726];;FRFR1EVQKG1;ZVFT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.640213;47.845467;;;; +;;;;;;;;FRV75PPX2001;FR*SOD*S*SD29*180*1*_*_;F3CBaume;;Quai Gambetta 49000 ANGERS (49);;[-3.444974, 48.815392];;FRFR1EVQKG2;YVBR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.709654;48.370193;;;; +;;;;;;;;FRV75PPX2004;FR*SOD*S*SD29*181*1*_*_;Parking Corner;;Rue Henri Poulain 49800 ANDARD (49);;[-3.191425, 48.674393];;FRFR1EJXLN1;ZCXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.411448;48.644726;;;; +;;;;;;;;FRV75PPX1908;FR*SOD*S*SD29*182*1*_*_;Hôtel le bon cap;;Place de la Mairie 49600 ANDREZE (49);;[-3.340143, 48.566673];;FRFR1ESVUK1;ZFTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.160853;48.471878;;;; +;;;;;;;;FRV75PPX1907;FR*SOD*S*SD29*183*1*_*_;30 Rue Georges Boissaye du Bocage - Sainte-Adresse;;Rue de Rennes 49000 ANGERS (49);;[-3.228862, 48.842125];;FRFR1EABAT2;ZKHW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.167864;48.427998;;;; +;;;;;;;;FRV75PPX1906;FR*SOD*S*SD29*184*1*_*_;Rue de Chemin de Fer - Epouville;;Place Fraternité 49000 ANGERS (49);;[-3.523392, 48.679855];;FRFR1EABAT1;VNWP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.214177;47.909428;;;; +;;;;;;;;FRV75PPX1905;FR*SOD*S*SD29*185*1*_*_;55 Rue du 329ème -le Havre;;Boulevard de la Marianne 49000 ANGERS (49);;[-2.914907, 48.509109];;FRFR1EQZDV1;PBFG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.367066;48.467354;;;; +;;;;;;;;FRV75PPX1904;FR*SOD*S*SD29*186*1*_*_;55 Rue du 329ème - le Havre;;Rue Max Richard 49000 ANGERS (49);;[-3.449318, 48.607483];;FRFR1EPRMX1;RRPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.374469;47.906761;;;; +;;;;;;;;FRV75PPX1911;FR*SOD*S*SD29*173*1*_*_;77 Rue du 329ème - le Havre;;Parking Chapeau de Gendarme 49000 ANGERS (49);;[-3.567519, 48.683102];;FRFR1EPZKM2;RSDS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.315567;47.889305;;;; +;;;;;;;;FRV75PPX1910;FR*SOD*S*SD29*187*1*_*_;Rue Noir Pel - Sainte-Adresse;;Rue Volney - Rue de la Chapelle 49000 ANGERS (49);;[-3.517125, 48.771851];;FRFR1EQZDV2;MECM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.977736;48.551712;;;; +;;;;;;;;FRV75PPX1909;FR*SOD*S*SD29*160*1*_*_;Hôtel;;Boulevard Arago 49000 ANGERS (49);;[-2.947672, 48.556736];;FRFR1EFPEQ1;YVBR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.565287;47.900269;;;; +;;;;;;;;FRV75PPX2017;FR*SOD*S*SD29*161*1*_*_;Les jardins de la matz;;Place Aquavita 49000 ANGERS (49);;[-3.347963, 48.672264];;FRFR1EVSTQ1;ZJTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.836316;47.868935;;;; +;;;;;;;;FRV75PPX2016;FR*SOD*S*SD29*164*1*_*_;La Conciergerie, Saint Rémy;;Place Imbach 49000 ANGERS (49);;[-3.342592, 48.76889];;FRFR1EPUFQ1;VMEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.80166;47.812168;;;; +;;;;;;;;FRV75PPX2015;FR*SOD*S*SD29*164*2*_*_;IXINA, Le Cres;;Avenue Notre Dame du Lac 49000 ANGERS (49);;[-3.184587, 48.556637];;FRFR1EVHGW1;RRPM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.878658;48.58287;;;; +;;;;;;;;FRV75PPX2014;FR*SOD*S*SD29*165*1*_*_;IXINA, Villeneuve-lès-Béziers;;Aire de covoiturage La promenade 49750 BEAULIEU SUR LAYON (49);;[-3.20627, 48.6227];;FRFR1EWFKA1;WQVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.582887;48.575111;;;; +;;;;;;;;FRV75PPX2013;FR*SOD*S*SD29*166*1*_*_;IXINA, Saint Jean de Védas;;La Loge Parking Bus 49600 BEAUPREAU (49);;[-2.716298, 48.493778];;FRFR1EADAT2;WKHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.584976;48.578419;;;; +;;;;;;;;FRV75PPX2012;FR*SOD*S*SD29*167*1*_*_;DLM GRENOBLE;;Rue de la Garenne 49600 BEAUPREAU (49);;[-2.982932, 48.631336];;FRFR1ERNPZ1;WQVB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.631332;47.818333;;;; +;;;;;;;;FRV75PPX2021;FR*SOD*S*SD29*168*1*_*_;DESENFANS;;2 Rue du Bocage 49110 BEAUPREAU (49);;[-3.577855, 48.771084];;FRFR1EWGLN1;ZAWZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.83211;47.93594;;;; +;;;;;;;;FRV75PPX2020;FR*SOD*S*SD29*169*1*_*_;Hôtel de ville de Calais;;Avenue des Tilleuls 49370 BECON-LES-GRANITS (49);;[-2.34587, 48.274349];;FRFR1EMVGC1;LMJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.817576;48.383247;;;; +;;;;;;;;FRV75PPX2019;FR*SOD*S*SD29*170*1*_*_;SPASAD Rely;;Rue l'Abbaye 49122 BEGROLLES-EN-MAUGES (49);;[-2.144788, 48.580271];;FRFR1EKNBX1;YULR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.833975;48.469227;;;; +;;;;;;;;FRV75PPX2018;FR*SOD*S*SD29*171*1*_*_;ZAC Coubertin à Calais;;Rue Chevriere 49080 BOUCHEMAINE (49);;[-2.218302, 48.433086];;FRFR1EQAQX1;YJVZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.791397;48.28619;;;; +;;;;;;;;FRV75PPX2008;FR*SOD*S*SD29*172*1*_*_;Anatole France Danton-Douanes;;Rue du Plessis 49080 BOUCHEMAINE (49);;[-2.056249, 48.531796];;FRFR1EULDE1;VMEQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.415043;48.13726;;;; +;;;;;;;;FRV75PPX2007;FR*SOD*S*SD29*159*1*_*_;Vallée Béreult Sud;;Place Champs de Foire 49650 BRAIN-SUR-ALLONNES (49);;[-3.386452, 48.807682];;FRFR1ECHUM1;ZAWZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.30713;48.360584;;;; +;;;;;;;;FRV75PPX2006;FR*SOD*S*SD29*201*1*_*_;Nice Havrais;;Rue Paul Cézanne 49125 BRIOLLAY (49);;[-2.678333, 48.484627];;FRFR1ECHUM2;RSDS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.64612;48.293953;;;; +;;;;;;;;FRV75PPX2005;FR*SOD*S*SD29*202*1*_*_;Centre Ville-Saint-Roch - Le Havre;;Place de Gaulle 49320 BRISSAC-QUINCE (49);;[-3.00721, 48.696449];;FRFR1EWGLN2;RURV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.461408;48.561989;;;; +;;;;;;;;FRV75PPX2011;FR*SOD*S*SD29*203*1*_*_;Beaulieu H.L.M. Harfleur;;Place de la République 49250 BEAUFORT-EN-VALLEE (49);;[-3.186402, 48.473217];;FRFR1EDWVU1;MECM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.836133;48.065521;;;; +;;;;;;;;FRV75PPX2010;FR*SOD*S*SD29*204*1*_*_;Mayville - Gonfreville-l'Orcher;;Parking des Equisseaux 49250 BEAUFORT-EN-VALLEE (49);;[-3.214817, 48.347222];;FRFR1EEHMM1;YJVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.770224;48.573498;;;; +;;;;;;;;FRV75PPX2009;FR*SOD*S*SD29*205*1*_*_;Centre H.L.M. Harfleur;;Parking Alphonse Loubat 49240 AVRILLE (49);;[-3.423825, 48.283971];;FRFR1EEFNB1;RVDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.176747;48.374123;;;; +;;;;;;;;FRV75PPX1723;FR*SOD*S*SD29*206*1*_*_;Octeville-sur-Mer;;Place Jean XXIII 49000 ANGERS (49);;[-2.084445, 48.405834];;FRFR1EFEZX2;VNWP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.335426;48.098244;;;; +;;;;;;;;FRV75PPX1722;FR*SOD*S*SD29*208*1*_*_;Caucriauville Lut - Le Havre;;Place de l'Académie 49000 ANGERS (49);;[-2.552271, 48.588692];;FRFR1EFEZX1;RVDU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.256995;47.832439;;;; +;;;;;;;;FRV75PPX1721;FR*SOD*S*SD29*209*1*_*_;Centre ville - Montivilliers;;Rue 19 Mars 1962 49540 AUBIGNE-SUR-LAYON (49);;[-2.851859, 48.522652];;FRFR1EDMNV1;LQQY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.320383;47.937088;;;; +;;;;;;;;FRV75PPX1720;FR*SOD*S*SD29*210*1*_*_;Beaulieu;;Aire Co D768 49240 AVRILLE (49);;[-3.358388, 48.812908];;FRFR1ESMPD1;RURV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.64312;48.275364;;;; +;;;;;;;;FRV75PPX1719;FR*SOD*S*SD29*211*2*_*_;Vallee Bereult Sud;;Parking Victor Hugo 49240 AVRILLE (49);;[-2.467628, 48.630241];;FRFR1EYETN2;LQQY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.211916;48.428299;;;; +;;;;;;;;FRV75PPX1802;FR*SOD*S*SD29*211*1*_*_;Piscine Gd'O-Georges Brassens - Gonfreville L'Orcher;;Parking Maison Médicale 49240 AVRILLE (49);;[-2.833905, 48.62648];;FRFR1EYEUF2;YULR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.174933;48.101925;;;; +;;;;;;;;FRV75PPX1801;FR*SOD*S*SD29*212*1*_*_;Pierre Rousseau - Montivilliers;;Place de l'Europe 49150 BAUGE (49);;[-2.324368, 48.408466];;FRFR1EYEUF1;ZCEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.478167;48.664791;;;; +;;;;;;;;FRV75PPX1725;FR*SOD*S*SD29*213*1*_*_;Pl. Goerges Vavasseur - Le Havre;;Place du Marché 49150 BAUGE (49);;[-2.126689, 48.512863];;FRFR1EQQQC1;VEMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.595497;47.817368;;;; +;;;;;;;;FRV75PPX1714;FR*SOD*S*SD29*200*1*_*_;5 Rue Henri Matisse - Montivilliers;;Parking Salle le Domino 49070 BEAUCOUZE (49);;[-2.028889, 48.455833];;FRFR1EGMHE1;WNHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.5986;48.667358;;;; +;;;;;;;;FRV75PPX1713;FR*SOD*S*SD29*188*1*_*_;Rue du Chemin de Fer - Épouville;;Parking Avenue de la Grange aux Belles 49070 BEAUCOUZE (49);;[-3.096286, 48.224899];;FRFR1EGMHE2;WNHB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.002561;48.275612;;;; +;;;;;;;;FRV75PPX1712;FR*SOD*S*SD29*189*1*_*_;Parking Mairie de Saint-Brieuc;;33 Rte de Bourg d'Iré 49440 LOIRE (49);;[-3.47037, 48.613342];;FRFR1EGFMW1;RYYS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.326797;48.277264;;;; +;;;;;;;;FRV75PPX1711;FR*SOD*S*SD29*190*1*_*_;Dropnplug;;Route de Saint-Sauveur 49270 LANDEMONT (49);;[-3.048475, 48.776299];;FRFR1EGFMW2;QPTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.375518;48.159222;;;; +;;;;;;;;FRV75PPX1710;FR*SOD*S*SD29*191*1*_*_;Parking de la liberté;;Avenue du Parc 49110 SAINT-PIERRE-MONTLIMART (49);;[-2.757097, 48.514561];;FRFR1EGLNR1;QRTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.91355;48.194569;;;; +;;;;;;;;FRV75PPX1718;FR*SOD*S*SD29*192*1*_*_;Parking de la batteuse;;Rue de la Veillere 49480 SAINT-SYLVAIN-D'ANJOU (49);;[-2.486411, 48.32917];;FRFR1EHXNY1;QRYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.539367;48.21619;;;; +;;;;;;;;FRV75PPX1717;FR*SOD*S*SD29*193*1*_*_;Parking Langouet;;Parking Mairie 49800 SARRIGNE (49);;[-2.854698, 48.445023];;FRFR1EHXNY2;QNJR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.576228;48.192974;;;; +;;;;;;;;FRV75PPX1716;FR*SOD*S*SD29*194*1*_*_;Parking Enedis Nantes;;Parking Place Europe 49400 SAUMUR (49);;[-3.057214, 48.315941];;FRFR1EHYPA1;RJJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.139651;48.663445;;;; +;;;;;;;;FRV75PPX1715;FR*SOD*S*SD29*195*1*_*_;Citedia Rennes Colombier;;Avenue Charles de Gaulle 49400 SAUMUR (49);;[-3.44691, 48.55727];;FRFR1EHXJF1;QMKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.093426;47.795624;;;; +;;;;;;;;FRV75PPX1803;FR*SOD*S*SD29*196*1*_*_;Parking Hopital de Cholet;;Rond Point du Carrousel 49400 SAUMUR (49);;[-1.9816, 48.381901];;FRFR1EQSMB1;QMSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.05061;47.89743;;;; +;;;;;;;;FRV75PPX1815;FR*SOD*S*SD29*197*1*_*_;Station de recharge mobile 2021;;Parking Rue Chumeau 49400 SAUMUR (49);;[-3.513626, 48.832668];;FRFR1EHXJF2;UZWX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.818973;48.302963;;;; +;;;;;;;;FRV75PPX1814;FR*SOD*S*SD29*198*1*_*_;CROUS Pauliane 1;;Rue des Moulins 49400 SAUMUR (49);;[-3.252257, 48.239723];;FRFR1EQMPL2;NQKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.104016;48.245838;;;; +;;;;;;;;FRV75PPX1813;FR*SOD*S*SD29*199*1*_*_;CROUS Pauliane 2;;Place du Mail 49170 SAVENNIERES (49);;[-2.294399, 48.252918];;FRFR1EQMPL1;NQAG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.586496;47.901684;;;; +;;;;;;;;FRV75PPX1812;FR*SOD*S*SD29*118*1*_*_;Parking ACCOR Castelnaudary;;Parking du Port 49500 SEGRE (49);;[-2.151064, 48.60416];;FRFR1EQMBD2;VENT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.064729;48.026707;;;; +;;;;;;;;FRV75PPX1816;FR*SOD*S*SD29*119*1*_*_;VAL d'OINGT;;Aire Co Promenade 49500 SEGRE (49);;[-2.129, 48.389];;FRFR1EHYPA2;VDCJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.955801;47.93338;;;; +;;;;;;;;FRV75PPX1903;FR*SOD*S*SD29*120*1*_*_;Daltoner Avranches;;Parking de Lauingen 49500 SEGRE (49);;[-2.523397, 48.359306];;FRFR1EGLNR2;UUHG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.317977;47.926643;;;; +;;;;;;;;FRV75PPX1902;FR*SOD*S*SD29*121*1*_*_;Borne, Domaine, Charton-Vachet;;Parking Rue de l'Industrie 49280 LA SEGUINIERE (49);;[-2.045, 48.352299];;FRFR1EGFFY1;UZQK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.440174;47.857525;;;; +;;;;;;;;FRV75PPX1901;FR*SOD*S*SD29*122*1*_*_;DOUBLET;;Aire Co Treillebois 49610 SAINT-MELAINE-SUR-AUBANCE (49);;[-2.838271, 48.280586];;FRFR1EXSSV2;UZWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.537401;47.871059;;;; +;;;;;;;;FRV75PPX1811;FR*SOD*S*SD29*123*1*_*_;SAINT VINCENT DE TYROSSE;;Parking Marcel Coudray 49140 SEICHES-SUR-LE-LOIR (49);;[-2.51775, 48.47099];;FRFR1EUWVJ2;RRXW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.700252;47.87693;;;; +;;;;;;;;FRV75PPX1807;FR*SOD*S*SD29*124*1*_*_;GRUISSAN;;Parking Salle Marie Lise 49750 SAINT-LAMBERT-DU-LATTAY (49);;[-2.765253, 48.518089];;FRFR1EQWXK1;SEKZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.706109;47.876938;;;; +;;;;;;;;FRV75PPX1806;FR*SOD*S*SD29*125*1*_*_;AUBERVILLIERS;;Rue de L'Aubriaie 49070 SAINT-LAMBERT-LA-POTHERIE (49);;[-2.0562, 48.4561];;FRFR1EUWVJ1;HRAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.605561;48.074905;;;; +;;;;;;;;FRV75PPX1805;FR*SOD*S*SD29*157*1*_*_;Hôtel l'Alivi;;Parking Rue des Mauges 49290 SAINT-LAURENT-DE-LA-PLAINE (49);;[-2.758196, 48.177609];;FRFR1EQWKJ2;SJDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.102162;48.49913;;;; +;;;;;;;;FRV75PPX1804;FR*SOD*S*SD29*126*1*_*_;LA TOUR BAS ELNE;;Rue du Maroni 49270 OREE-D'ANJOU (49);;[-2.0288, 48.409];;FRFR1ERMBJ1;QTAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.106747;47.996445;;;; +;;;;;;;;FRV75PPX1809;FR*SOD*S*SD29*127*1*_*_;ARES;;Rue des Ferrieres 49170 SAINT-LEGER-DES-BOIS (49);;[-2.779689, 48.514324];;FRFR1EQWKJ1;QTNH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.116132;48.361095;;;; +;;;;;;;;FRV75PPX1810;FR*SOD*S*SD29*128*1*_*_;Parking LA TOURTERELLE;;Parking 14 Décembre 1863 49280 SAINT-LEGER-SOUS-CHOLET (49);;[-2.873183, 48.663328];;FRFR1EQYYP2;RSTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.512228;48.219227;;;; +;;;;;;;;FRV75PPX1808;FR*SOD*S*SD29*129*1*_*_;LE BISTRO D'HUGO;;Place du Prieuré 49450 SEVREMOINE (49);;[-2.441176, 48.238331];;FRFR1EQYYP1;QTNH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.507157;48.397804;;;; +;;;;;;;;FRHPCPNF080343;FR*SOD*S*SD29*130*1*_*_;Parking GAZ DE BORDEAUX;;Rue du Commerce 49450 SEVREMOINE (49);;[-3.453745, 48.731562];;FRFR1EQSMB2;SJDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.890398;48.09568;;;; +;;;;;;;;FRHPCPNF080342;FR*SOD*S*SD29*117*1*_*_;mickael Auto;;Aire de covoiturage du Petit Lapin 49230 SEVREMOINE (49);;[-3.470821, 48.757046];;FRFR1EQYAA1;SLHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.262154;48.092033;;;; +;;;;;;;;FRHPCPNF080344;FR*SOD*S*SD29*131*1*_*_;SIPECC;;Parking Mairie 49170 SAINT-MARTIN-DU-FOUILLOUX (49);;[-3.63257, 48.654836];;FRFR1EQYAA2;SEKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.165494;48.086506;;;; +;;;;;;;;FRHPCPNF080345;FR*SOD*S*SD29*105*1*_*_;JAV investissement Velaux;;Place du 19 Mars 1962 49250 SAINT-MATHURIN-SUR-LOIRE (49);;[-3.517615, 48.784696];;FRFR1EVHQM1;RWXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.270626;48.104568;;;; +;;;;;;;;FRHPCPNF080339;FR*SOD*S*SD29*106*1*_*_;Borne de recharge HEXAOM;;Parking Armand Brousse 49610 SAINT-MELAINE-SUR-AUBANCE (49);;[-3.473512, 48.611415];;FRFR1EGFFY2;RXWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.341825;48.008377;;;; +;;;;;;;;FRHPCPNF080299;FR*SOD*S*SD29*107*1*_*_;VAHE EKNADISSIAN;;Rue Saint-Almand 49320 SAINT-JEAN-DES-MAUVRETS (49);;[-3.467023, 48.606523];;FRFR1EGFGK1;RYYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.330149;47.895412;;;; +;;;;;;;;FRHPCPNF080340;FR*SOD*S*SD29*108*1*_*_;FITP;;Rue de la Gare 49730 VARENNES-SUR-LOIRE (49);;[-2.735503, 48.180209];;FRFR1EGFGK2;RAXU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.32102;47.891369;;;; +;;;;;;;;FRHPCPNF080341;FR*SOD*S*SD29*109*1*_*_;HOTEL DU GOLF DE L'AILETTE;;7 Rue de la Mairie 49400 VARRAINS (49);;[-2.986308, 48.632057];;FRFR1EQQQC2;RWXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.975574;47.910778;;;; +;;;;;;;;FRHPCPNF080294;FR*SOD*S*SD29*110*1*_*_;Be Câblé - Raption 100 - Brignais - Industrie;;Parking lise 49320 VAUCHRETIEN (49);;[-2.972857, 48.541696];;FRFR1EQLWW1;QKKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.024456;48.055546;;;; +;;;;;;;;FRHPCPNF080356;FR*SOD*S*SD29*111*1*_*_;Be Câblé - INGETEAM - Parentis-en-Born - Camping;;249 Rue de la Mairie 49260 VAUDELNAY (49);;[-2.229598, 48.521725];;FRFR1EYETN1;RSTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.012943;48.515305;;;; +;;;;;;;;FRHPCPNF080354;FR*SOD*S*SD29*112*1*_*_;la chapelle de guinchay;;Place des Halles 49220 VERN-D'ANJOU (49);;[-2.445852, 48.422768];;FRFR1EQJSE1;RXWW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.011984;48.2258;;;; +;;;;;;;;FRHPCPNF080355;FR*SOD*S*SD29*113*1*_*_;GIVENCHY EN GOHELLE;;Place de la Mairie 49390 VERNANTES (49);;[-3.1873, 48.517834];;FRFR1EPZPR2;NNMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.115754;47.874435;;;; +;;;;;;;;FRHPCPNF080357;FR*SOD*S*SD29*114*1*_*_;BOIS BERNARD;;Place du Minage 49310 VIHIERS (49);;[-2.73364, 48.23396];;FRFR1EPWMC2;NDGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.5913;48.413948;;;; +;;;;;;;;FRHPCPNF080353;FR*SOD*S*SD29*115*1*_*_;Mandelieu-la-Napoule, Hotel Ilot du Golf;;Rue des Chevaliers de Malte 49450 VILLEDIEU-LA-BLOUERE (49);;[-2.51702, 48.29814];;FRFR1EPZBX2;NDBV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.583797;47.87339;;;; +;;;;;;;;FRHPCPNF080346;FR*SOD*S*SD29*116*1*_*_;Grasse, Centre Hippique;;Place Flandres - Dunkerque 49370 VILLEMOISAN (49);;[-2.0441, 48.450901];;FRFR1EPZPR1;NBLR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.506578;47.872265;;;; +;;;;;;;;FRHPCPNF080347;FR*SOD*S*SD29*145*1*_*_;TALK FUNDRAISING;;Parking Rue Saint-Pierre 49140 VILLEVEQUE (49);;[-2.247365, 48.377785];;FRFR1EPZBX1;PMEU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.123075;47.921692;;;; +;;;;;;;;FRHPCPNF080348;FR*SOD*S*SD29*146*1*_*_;CHAPITEAUX SERVICE;;Parking des Deux Soeurs 49680 VIVY (49);;[-3.165161, 48.61179];;FRFR1ESMVJ2;PKMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.956018;47.870399;;;; +;;;;;;;;FRHPCPNF080349;FR*SOD*S*SD29*147*1*_*_;STUDIO30;;Place Corbert 49360 YZERNAY (49);;[-2.189, 48.598099];;FRFR1EPXJL2;MZGZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.9177;47.877735;;;; +;;;;;;;;FRHPCPNF080350;FR*SOD*S*SD29*148*1*_*_;PORDIC-PLACE E. GUERET DEVANT LA POSTE;;Rue de Bretagne 49270 LA VARENNE (49);;[-2.987586, 48.198135];;FRFR1EPWVR2;WJCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.909739;48.060768;;;; +;;;;;;;;FRHPCPNF080352;FR*SOD*S*SD29*149*1*_*_;PLOUER SUR RANCE-RUE DE LA POSTE;;Chemin des Vignes 49140 SOUCELLES (49);;[-3.223394, 48.786499];;FRFR1EPWVR1;WPZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.901737;48.247986;;;; +;;;;;;;;FRHPCPNF080288;FR*SOD*S*SD29*150*1*_*_;TREMELOIR-RUE ST FIACRE PARKING MAIRIE;;Parking Salle Cortequisse 49610 SOULAINES-SUR-AUBANCE (49);;[-2.04553, 48.4747];;FRFR1ESMVJ1;WTMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.917199;48.248337;;;; +;;;;;;;;FRHPCPNF080072;FR*SOD*S*SD29*132*1*_*_;PENVENAN-RUE DE LA POSTE PARKING FOYER LOGEMENT;;Parking Ecole Route Angers 49460 SOULAIRE-ET-BOURG (49);;[-2.91299, 48.403732];;FRFR1EPXJL1;WFHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.924636;48.285328;;;; +;;;;;;;;FRHPCPNF080117;FR*SOD*S*SD29*151*1*_*_;CAMLEZ-PARKING DU 19 MARS 1962;;Place de la Poste 49280 LA TESSOUALLE (49);;[-2.869649, 48.389687];;FRFR1EYEEG1;MCWD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.832747;48.403175;;;; +;;;;;;;;FRHPCPNF080071;FR*SOD*S*SD29*152*1*_*_;LAURENAN-D16 - PARKING SALLE DES FETES;;Avenue des Trois Ponts 49380 THOUARCE (49);;[-3.133419, 48.664848];;FRFR1EYEQX1;MCQZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.418989;48.006672;;;; +;;;;;;;;FRHPCPNF080070;FR*SOD*S*SD29*153*1*_*_;SAINT BRIEUC-53 BOULEVARD CARNOT;;Rue Touraine 49125 TIERCE (49);;[-2.009714, 48.303225];;FRFR1EQBMN1;MAXF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.491614;47.871124;;;; +;;;;;;;;FRHPCPNF080123;FR*SOD*S*SD29*154*1*_*_;GLOMEL-PLACE DU CENTRE;;Parking Salle des Sports 49230 TILLIERES (49);;[-2.727605, 48.542061];;FRFR1ESYMG2;LAEZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.507885;47.874336;;;; +;;;;;;;;FRHPCPNF080138;FR*SOD*S*SD29*155*1*_*_;PLEUBIAN-PLACE DU CHATEAU;;Place Clémenceau 49660 TORFOU (49);;[-2.914543, 48.429111];;FRFR1EQAWE1;LMLF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.722911;47.868786;;;; +;;;;;;;;FRHPCPNF080155;FR*SOD*S*SD29*156*1*_*_;LA ROCHE DERRIEN-PLACE DU PILORI / PLACE DU MARTRAY PARKING DU BOULODROME;;Village Sainte Parking Perreyeux 49800 TRELAZE (49);;[-3.13708, 48.586258];;FRFR1EPWMC1;VENT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.095822;47.860291;;;; +;;;;;;;;FRHPCPNF080162;FR*SOD*S*SD29*144*1*_*_;PLESSALA-PLACE DU MARCHE PARKING EGLISE;;Giratoire Buisson 49800 TRELAZE (49);;[-3.159283, 48.69836];;FRFR1EQBMN2;VDCJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.552851;47.843136;;;; +;;;;;;;;FRHPCPNF080172;FR*SOD*S*SD29*138*1*_*_;PLEUDIHEN SUR RANCE-PARKING COUR DU VERGER;;Parking des Sports Goducière 49800 TRELAZE (49);;[-2.388829, 48.449814];;FRFR1EFNRY1;LMZY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.546339;48.724209;;;; +;;;;;;;;FRHPCPNF080056;FR*SOD*S*SD29*133*1*_*_;BINIC-AVENUE GENERAL DE GAULLE PARKING SALLE ESTRAN;;80 Rue de la Gare 49800 TRELAZE (49);;[-3.15994, 48.315102];;FRFR1EQJSE2;SRSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.552238;48.722633;;;; +;;;;;;;;FRHPCPNF080063;FR*SOD*S*SD29*134*1*_*_;HILLION-RUE DE BEL ORIENT PARKING MAIRIE;;Rue Maurice Ravel 49340 TREMENTINES (49);;[-3.456394, 48.727578];;FRFR1EQLFW1;PHPK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.461947;47.958473;;;; +;;;;;;;;FRHPCPNF080064;FR*SOD*S*SD29*135*1*_*_;PLAINTEL-PLACE DU GENERAL DE GAULLE;;Place Colonel Léon Faye 49250 LA MENITRE (49);;[-2.248423, 48.640558];;FRFR1EQLWW2;PARA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.691156;47.935459;;;; +;;;;;;;;FRHPCPNF080259;FR*SOD*S*SD29*136*1*_*_;PLEDRAN-PLACE J. TANGUY;;Place Saint-Maurice 49230 MONTFAUCON-MONTIGNE (49);;[-3.316225, 48.234554];;FRFR1EQHYQ1;TELV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.985369;48.153252;;;; +;;;;;;;;FRHPCPNF080261;FR*SOD*S*SD29*137*1*_*_;LEHON-LE BOURG;;Parking Cap Loire 49310 MONTJEAN-SUR-LOIRE (49);;[-2.928985, 48.675999];;FRFR1EQDPL2;NMEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.980556;48.575516;;;; +;;;;;;;;FRHPCPNF080198;FR*SOD*S*SD29*140*1*_*_;GUINGAMP-PARKING PLACE DE VERDUN;;Parking Mairie 49460 MONTREUIL-JUIGNE (49);;[-2.125556, 48.357742];;FRFR1EQHYQ2;VQMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.829561;48.567944;;;; +;;;;;;;;FRHPCPNF080232;FR*SOD*S*SD29*141*1*_*_;LA VICOMTE SUR RANCE-PARKING DE LA MAIRIE;;Parking Jean-Baptiste 49460 MONTREUIL-JUIGNE (49);;[-3.1057, 48.70467];;FRFR1EQDPL1;VUAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.02287;48.00309;;;; +;;;;;;;;FRHPCPNF080200;FR*SOD*S*SD29*142*1*_*_;PERROS GUIREC-RUE A. LE BRAZ PARKING DU PORT;;Place du Concorde 49260 MONTREUIL-BELLAY (49);;[-3.104479, 48.55711];;FRFR1EQAWE2;VUME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.799367;48.686703;;;; +;;;;;;;;FRHPCPNF080266;FR*SOD*S*SD29*143*1*_*_;PLOURIVO-LE BOURG;;Rue de la Croix Verte 49640 MORANNES (49);;[-2.736905, 48.490196];;FRFR1EFPUG2;NUGZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.843285;48.11594;;;; +;;;;;;;;FRHPCPNF080197;FR*SOD*S*OTHR*25*1*_*_;PLUMIEUX-PARKING PLACE 19 MARS 1962;;Place de Beaumont 49640 MORANNES (49);;[-2.751509, 48.52273];;FRFR1EQMBD1;USQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.61037;47.959827;;;; +;;;;;;;;FRHPCPNF080175;FR*SOD*S*OTHR*25*2*_*_;HENANBIHEN-ROUTE DHENANSAL;;Rue d'Anjou 49390 MOULIHERNE (49);;[-3.0, 48.381386];;FRFR1EXQEX2;TAUG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.093842;48.031239;;;; +;;;;;;;;FRHPCPNF080183;EVB-P21151738;LANGOAT-RUE DES ETANGS PARKING TERRAIN FOOT;;Place de l'lise 49610 MOZE-SUR-LOUET (49);;[-2.657751, 48.42165];;FRFR1EFPUG1;PEWP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.98622;47.986479;;;; +;;;;;;;;FRHPCPNF080179;NL*EVB*EA2AXUYIOTQ4GFABUPEAMAMGIEA;PLOUEZEC-ROUTE DE ST BRIEUC;;Mail de Grand Clos 49610 MURS-ERIGNE (49);;[-3.155936, 48.732681];;FRFR1EFNRY2;TXRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.119875;48.013607;;;; +;;;;;;;;FRHPCPNF080178;01FMQAER19NXCXX01V4RXNQ0GM;PLOUGUIEL-PLACE ANCIENS COMBATTANTS;;RD 766 Mairie 49490 NOYANT (49);;[-2.32811, 48.655931];;FRFR1EQLFW2;TGXN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.536914;48.010571;;;; +;;;;;;;;FRHPCPNF080173;NL*EVB*EP6XVKPHR4IIYT5W23IGVVCGOBQ;PLURIEN-RUE DE MONTANGUE DEVANT SALLE DES FETES;;27 Bd des Écoles 49490 NOYANT (49);;[-2.703044, 48.482021];;FRFR1EVHGW2;TMMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.083755;47.999485;;;; +;;;;;;;;FRHPCPNF080188;NL*EVB*EBP7OCKH3I4TGNGRKJ5VPBEHTKA;BEGARD-PLACE DU CENTRE;;Parking du Cimetière 49770 LA MEMBROLLE-SUR-LONGUENEE (49);;[-3.147928, 48.551281];;FRFR1ETJVP1;TSLZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.1279;47.999451;;;; +;;;;;;;;FRHPCPNF080191;NL*EVB*EDZYHHJBOU2V5KSR5P4S3LGEN24;PLOEUC L HERMITAGE-RUE DE BEAULIEU PARKING ARRIERE EGLISE;;Place Champ de Foire 49220 LE LION-D'ANGERS (49);;[-2.0058, 48.350601];;FRFR1EMZCA2;UTAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.093657;47.993977;;;; +;;;;;;;;FRHPCPNF080193;2f0a5d72-0b1b-46dd-9e06-023b889cc1c6;LOUANNEC-ROUTE DE PERROS PARKING MAIRIE;;Route Nationale 49070 SAINT-JEAN-DE-LINIERES (49);;[-2.591516, 48.176651];;FRFR1EJUAQ1;PFJR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.095428;47.984688;;;; +;;;;;;;;FRV75P901506;01FKFZCF7XA9CY23G6VN23R8DD;MATIGNON-PLACE RIOUST DES VILLES AUDRAINS;;Rue Haut Fief 49530 LIRE (49);;[-2.869428, 48.629478];;FRFR1EJMMH2;QTWR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.106417;47.9832;;;; +;;;;;;;;FRV75P900804;15ff2740-4afd-44de-9724-6731c01c34a2;PLANCOET-RUE DE LA MADELEINE PARKING COLLEGE;;Rue Eugene Bonnet 49710 LE LONGERON (49);;[-2.824075, 48.648033];;FRFR1EAXVW1;QTWR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.102052;48.080925;;;; +;;;;;;;;FRV75P901001;01FM50FFQNTVYYGG2XQ204QY9P;PLOUBEZRE-PLACE DE LA POSTE;;Parking de la République 49160 LONGUE-JUMELLES (49);;[-2.26435, 48.52913];;FRFR1EVKTS1;RRXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.104504;47.958649;;;; +;;;;;;;;FRV75P900901;01FM5610WAG9Q6AJNYMFE4M8MT;PLOUBAZLANEC-CITE PARK NEVEZ;;Place Champ de Foire 49160 LONGUE-JUMELLES (49);;[-2.9103, 48.401482];;FRFR1EVNLU1;CWTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.08335;48.689281;;;; +;;;;;;;;FRV75P900706;01FM50GFVBTBH0BZN9YWKN8QEM;POMMERIT JAUDY-RUE DE LA GARE PARKING BOULANGERIE;;Rue Noel Pinot 49370 LE LOUROUX-BECONNAIS (49);;[-2.792394, 48.482624];;FRFR1EVQRT1;DEUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.072012;48.702991;;;; +;;;;;;;;FRV75P900803;01FM9M4GTK9ASH1XE898YWDPHX;QUEVERT-RUE DU VAL PARKING MAISON DES ASSOCIATIONS;;Rue Joseph Cousin 49540 MARTIGNE-BRIAND (49);;[-3.103162, 48.788181];;FRFR1EVYFL1;BUSH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.414799;48.552601;;;; +;;;;;;;;FRV75P900802;01FMA7H8R6CNN0BVN1QN3KKJ8Y;SAINT QUAY PORTRIEUX-PLACE DARMES;;Rue Stofflet 49360 MAULEVRIER (49);;[-2.57723, 48.53167];;FRFR1EVAVL1;BTTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.623005;48.433521;;;; +;;;;;;;;FRV75P901002;01FMKXHPWSE1JVWBB6W02W3YMP;YVIGNAC LA TOUR-RUE DU 8 MAI 1945 PARKING DERRIERE LA POSTE;;Place de l'lise 49122 LE MAY-SUR-EVRE (49);;[-3.043485, 48.778999];;FRFR1EVUEE1;VSMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.078652;47.90242;;;; +;;;;;;;;FRV75P901101;EVB-P1942027;BELLE ISLE EN TERRE-PLACE DE LEGLISE;;Rue Paul Richou 49630 MAZE (49);;[-2.633645, 48.359794];;FRFR1EVVMK1;VSMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.02585;47.999352;;;; +;;;;;;;;FRV75P901102;ebb78fda-b81d-441a-a97f-c0931664110e;CHATELAUDREN-PLACE LA POSTE;;Parking Angers 49770 LA MEIGNANNE (49);;[-2.792451, 48.488029];;FRFR1EVDPE1;BBPB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.538179;48.472099;;;; +;;;;;;;;FRV75P901103;a913eed7-13a3-448e-b1d3-59a63f4791fc;GOUAREC-RUE DU MOULIN;;Place du Vélodrome 49520 NOYANT-LA-GRAVOYERE (49);;[-2.187334, 48.273865];;FRFR1EUETC2;AWDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.678202;48.521224;;;; +;;;;;;;;FRV75P901104;ccf6edd2-80ae-4131-9af8-cc81544f8a98;PLOUAGAT-PARKING DE LA GRANDE RUE;;Rue du Tabuteau 49370 SAINT-CLEMENT-DE-LA-PLACE (49);;[-3.313114, 48.242321];;FRFR1EUETC1;BMKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.52067;48.082424;;;; +;;;;;;;;FRV75P901201;FR*MAP*E000016296852;MAEL PESTIVIEN-LE BOURG;;Rue de Touraine 49740 LA ROMAGNE (49);;[-2.4236, 48.18869];;FRFR1EVUFX1;BFPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.051803;47.960244;;;; +;;;;;;;;FRV75P900601;48e9e0f4-b6bb-4d35-bb14-e17c5a8bc1cc;PEDERNEC-PLACE DE LEGLISE;;Rue du Mail 49350 LES ROSIERS-SUR-LOIRE (49);;[-4.261381, 48.444599];;FRFR1EWFNL2;BXNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.203651;48.048437;;;; +;;;;;;;;FRV75P900603;01FRNHTR2SJJCS1AB2ZGKB7D30;PERROS GUIREC-PLACE DE LHOTEL DE VILLE;;Rue Auguste Vincent 49450 SAINT-ANDRE-DE-LA-MARCHE (49);;[-4.072221, 48.509758];;FRFR1EWFNL1;DBMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.757681;47.854599;;;; +;;;;;;;;FRV75P900602;367e7452-927d-4bf1-9afb-5084ebd8f56e;PLOUEC DU TRIEUX-PLACE DE LA PAIX;;Place du Marché 49124 SAINT-BARTHELEMY-D'ANJOU (49);;[-4.052872, 48.515488];;FRFR1EJMMH1;DAAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.317882;48.678314;;;; +;;;;;;;;FRV75P900705;d67cd02c-2a23-4dc1-9b4d-7d90d795df3b;LOUARGAT-PASSAGE DE LA MAIRIE;;Rue de la Chapelle 49280 SAINT-CHRISTOPHE-DU-BOIS (49);;[-4.255886, 48.453716];;FRFR1EJUAQ2;DDCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.832769;48.433746;;;; +;;;;;;;;FRV75P900503;48752c4b-2ca2-40af-b488-b5aa3fd4355d;PLOUGRESCANT-RUE ST GONERY;;Parking la Chevalerie 49410 SAINT-FLORENT-LE-VIEIL (49);;[-4.251662, 48.449455];;FRFR1EQCEH2;DBWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.650071;48.241135;;;; +;;;;;;;;FRV75P900502;aceaf454-19e2-4da1-96dd-d7fdc44a72d1;PLOUMILLIAU-RUE ANATOLE LE BRAZ PARKING BARZIC;;Rue Nationale 49740 LA ROMAGNE (49);;[-4.068542, 48.511307];;FRFR1EKQLV2;CENR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.851396;48.521469;;;; +;;;;;;;;FRV75P900604;2e0e3191-363c-47b3-b3b4-975a51ad1fa9;PLOUVARA-RUE DE LA MAIRIE;;Place de la Mairie 49130 SAINTE-GEMMES-SUR-LOIRE (49);;[-4.750491, 48.474991];;FRFR1EQFMW2;EMCJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.988846;48.164818;;;; +;;;;;;;;FRV75P900701;69ad8ecf-ae87-4e0b-98f1-680d006ae013;LE VIEUX MARCHE-PLACE ANGELA DUVAL;;Place Monprofit 49170 SAINT-GEORGES-SUR-LOIRE (49);;[-4.057633, 48.091808];;FRFR1EQCHX1;ENHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.620963;47.855431;;;; +;;;;;;;;FRV75P900702;FRFR1ELKDM1;SAINT MICHEL EN GREVE-ROUTE D ARVOR;;Rue de la Loire 49170 SAINT-GERMAIN-DES-PRES (49);;[-4.338243, 48.000721];;FRFR1EQCHX2;EGHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.067573;47.966953;;;; +;;;;;;;;FRV75P900703;FRSUAP38315A;PLEUMEUR BODOU-LES CHARDONS PARKING CENTRE COMMERCIAL;;Parking Mairie 49400 SAINT-HILAIRE-SAINT-FLORENT (49);;[-3.717236, 48.645733];;FRFR1EQGQD1;DGYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.946151;48.231087;;;; +;;;;;;;;FRV75P900704;FRSUAP14201A;PLELO-RUE DES ECOLES PARKING EN FACE LA POSTE;;6 Pl. du Pilori 49190 ROCHEFORT-SUR-LOIRE (49);;[-3.89678, 48.301083];;FRFR1EQHQT2;AVNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.885427;48.025848;;;; +;;;;;;;;FRV75P901202;FRSUAP33165A;CAVAN-RUE MAURICE DENIS;;Place Maréchal Leclerc 49130 LES PONTS-DE-CE (49);;[-4.574715, 48.587631];;FRFR1EQDPB1;EAHG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.850635;47.79454;;;; +;;;;;;;;FRV75P900501;FRSUAP07129A;COATREVEN-RUE DE LEGLISE;;Impasse de la Chapelle 49112 PELLOUAILLES-LES-VIGNES (49);;[-4.523272, 48.570396];;FRFR1ESQHV2;JDTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.937679;48.405582;;;; +;;;;;;;;FRV75P901401;FRSUAP34111A;GRACES-PARKING DE LA MAIRIE;;Rue Saint-Gilles 49124 LE PLESSIS-GRAMMOIRE (49);;[-3.750712, 48.362984];;FRFR1ESQHV1;EDBF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.354569;48.106586;;;; +;;;;;;;;FRV75P901403;FRSUAP42312A;KERMOROCH-PLACE DE L EGLISE;;Rue du Bellay 49770 LE PLESSIS-MACE (49);;[-4.763813, 48.448708];;FRFR1EBBKZ1;EAJU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.702015;48.125313;;;; +;;;;;;;;FRV75P901402;FRSUAP85003A;LANGUEUX-PLACE MITTERRAND;;Place des Chais 49620 LA POMMERAYE (49);;[-4.280342, 47.796131];;FRFR1EBBKZ2;DKBE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.276989;48.432934;;;; +;;;;;;;;FRV75P901305;FRSUAP44015A;LANVOLLON-RUE DES FONTAINES;;Rue Président Vilette 49130 LES PONTS-DE-CE (49);;[-4.640213, 48.467697];;FRFR1ENLZR2;DWVP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.079161;48.542091;;;; +;;;;;;;;FRV75P901307;FRSUAP42299A;TREBEURDEN-PLACE DU PEILLET;;Rue Pierre de Coubertin 49130 LES PONTS-DE-CE (49);;[-3.709654, 48.667439];;FRFR1ENLZR1;EKEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.862684;48.557819;;;; +;;;;;;;;FRV75P901306;FRSUAP79264A;EREAC-RUE BERTRAND DU GUESGLIN;;9 Pl. du Champ de Foire 49420 OMBREE D'ANJOU (49);;[-4.411448, 48.633446];;FRFR1EFVPU1;DUUT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.221155;48.48246;;;; +;;;;;;;;FRV75P901404;FRSUAP09306A;BEAUSSAIS-SUR-MER;;Place de l'Union 49370 LA POUEZE (49);;[-4.160853, 48.328011];;FRFR1EWYYY1;EFME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.733003;48.538128;;;; +;;;;;;;;FRV75P901501;FRSUAP07064A;PLELAN LE PETIT-RUE DES ROUAIRIES PARKING MAIRIE;;Place Champ de Foire 49420 OMBREE D'ANJOU (49);;[-4.167864, 47.845467];;FRFR1EKQLV1;EXVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.658987;48.621498;;;; +;;;;;;;;FRV75P901502;FRSUAP67320A;PLESLIN TRIGAVOU-LE BOURG PARKING DERRIERE LA POSTE;;Place Mairie 49170 LA POSSONNIERE (49);;[-4.214177, 48.370193];;FRFR1ESLYB2;EWMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.699928;48.566917;;;; +;;;;;;;;FRV75P901503;FRSUAP86293A;TRELEVERN-PLACE DES AIGUILLES PARKING MAIRIE;;2 Place Beau Soleil 44115 HAUTE-GOULAINE (44);;[-4.367066, 48.644726];;FRFR1ESLYB1;EZUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.289413;48.043823;;;; +;;;;;;;;FRV75P901504;FRSUAP69260A;YFFINIAC-PLACE STE ANNE;;27 Rue de l'Océan 44810 HERIC (44);;[-4.374469, 48.471878];;FRFR1EVAXK1;EYTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.311651;48.631069;;;; +;;;;;;;;FRV75P901505;FRSUAP71394A;PLEHEDEL-RUE DU DR MAHE;;7 Rue de la Chaigneraie 44115 HAUTE-GOULAINE (44);;[-4.315567, 48.427998];;FRFR1EVAXK2;BZRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.675449;48.658459;;;; +;;;;;;;;FRV75P901205;4ab443d0-7c04-4397-b176-e7a78803f42a;BOURBRIAC-PARKING RUE DAVAUGOUR;;HB Bourg 44410 HERBIGNAC (44);;[-3.977736, 47.909428];;FRFR1EPKGC1;CFWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.605536;48.640057;;;; +;;;;;;;;FRV75P901207;EVB-DC422600001B;LANRIVAIN-PLACE DE LEGLISE;;37 Rue Pasteur 44410 HERBIGNAC (44);;[-4.565287, 48.467354];;FRFR1EPKGC2;RJJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.326583;48.696903;;;; +;;;;;;;;FRV75P901206;EVB-DC422600001;MAEL CARHAIX-RUE DE LEGLISE;;Avenue de l'Erette 44810 HERIC (44);;[-3.836316, 47.906761];;FRFR1EGTEK2;XUBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.989944;48.341545;;;; +;;;;;;;;FRV75P901204;71d69ca2-9eb4-11ec-b909-0242ac120002;LE HINGLE-PLACE DE LA POSTE;;2 Rue de la Gare 44520 ISSE (44);;[-3.80166, 47.889305];;FRFR1EGTEK1;TXRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.176036;48.253262;;;; +;;;;;;;;FRV75P901203;Securecharge-PONCAR-HBS-1;PLENEUF VAL ANDRE-RUE CLEMENCEAU;;2 Rue Saint-Jean 44810 HERIC (44);;[-3.878658, 48.551712];;FRFR1EYCNR1;USQR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.822053;48.520206;;;; +;;;;;;;;FRV75P901208;b902fcd2-647f-4e69-9afa-87704712effe;TREMUSON-RUE DU BOUCHON PARKING SALLE MUNICIPALE;;22 Place André Mazureau 44440 JOUE-SUR-ERDRE (44);;[-3.582887, 47.900269];;FRFR1EYCNR2;UZQK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.792689;48.497616;;;; +;;;;;;;;FRV75P901301;FRFR1ENDBC1;TREVOU TREGUIGNEC-RUE DE LA MAIRIE;;13 Rue des Moulins 44430 LE LANDREAU (44);;[-3.584976, 47.868935];;FRFR1EVDXE1;UUHG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.719758;47.906719;;;; +;;;;;;;;FRV75P901302;868b9791-607e-4ba5-be0a-612b37168a56;ERQUY-BOULEVARD DE LA MER;;Sainte-Marie 44650 LEGE (44);;[-3.631332, 47.812168];;FRFR1EVDXE2;UTAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.82614;48.225613;;;; +;;;;;;;;FRV75P901303;a609bf84-17a2-4583-80fe-2f09f0659215;ETABLES SUR MER-PLACE JEAN HEURTEL;;32 Rue de la chaussée 44650 LEGE (44);;[-3.83211, 48.58287];;FRFR1EKUVH1;TSLZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.712219;48.5084;;;; +;;;;;;;;FRV75P901304;22504292-faaf-4219-8d24-8f822f74830c;JUGON LES LACS-PLACE DE LA POSTE DERRIERE SALLE DES FETES;;5044 A Rue Grégoire Orain 44460 FEGREAC (44);;[-3.817576, 48.575111];;FRFR1EKSVJ1;PEWP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.430538;47.824329;;;; +;;;;;;;;FRHPCPNF080363;a572785d-70d9-4841-87bb-551cd644d1fc;LANGUENAN-PARKING DE LATELIER;;Rue de l'ang 44690 LA HAIE-FOUASSIERE (44);;[-3.833975, 48.578419];;FRFR1EYDRU2;PFJR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.045589;47.981709;;;; +;;;;;;;;FRHPCPNF080364;c817492c-df96-4302-ae12-7d05f0177858;LANVALLAY-PLACE DU 19 MARS 1962;;107 Rue des Lilas 44850 LIGNE (44);;[-3.791397, 47.818333];;FRFR1EYDRU1;PHPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.969462;48.07729;;;; +;;;;;;;;FRHPCPNF080362;FRECN0138;SAINT GELVEN-PARKING DE LA GRANDE RUE;;2 Rue du Capitaine Robert Martin 44320 FROSSAY (44);;[-3.415043, 47.93594];;FRFR1EPSVN2;PARA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.874457;47.935135;;;; +;;;;;;;;FRHPCPNF080371;FRECN0137;PLOUARET-RUE DU FOYER PARKING EHPAD MELCHONNEC;;4 bis Rue de l'ang 44130 LE GAVRE (44);;[-4.30713, 48.383247];;FRFR1EPSVN1;LGRF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.228642;47.841686;;;; +;;;;;;;;FRHPCPNF080372;28f4cde6-de43-434f-806c-4d09b2b930e3;PAIMPOL-PARKING DE LA GARE;;5 Rue du Pont Jean Vay 44190 GETIGNE (44);;[-4.64612, 48.469227];;FRFR1EVEMU2;LKXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.27096;48.180679;;;; +;;;;;;;;FRHPCPNF080373;01FS525YRDQ5SRXF0GHHFJ4YXE;SAINT BRIEUC-RUE DES PROMENADES;;3 Rue de la Roche 44190 GORGES (44);;[-4.461408, 48.28619];;FRFR1ETFUP1;LLFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.190454;48.016224;;;; +;;;;;;;;FRHPCPNF080358;78219588-3e13-4afd-9f82-4941dc515e80;LE GOURAY-LE BOURG LA GARE;;3 Rue de la Vertière 44119 GRANDCHAMPS-DES-FONTAINES (44);;[-3.836133, 48.13726];;FRFR1ETFUP2;SLHH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.153028;47.901947;;;; +;;;;;;;;FRHPCPNF080361;1b10ea6e-c5c9-46ca-81c0-4b6e16aa4098;PLAINE HAUTE-PLACE DE LA MAIRIE PARKING SALLE POLYVALENTE;;6 Rue Saint-Jean 44290 GUEMENE-PENFAO (44);;[-4.770224, 48.360584];;FRFR1ETFVR1;RAXU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.284916;48.578644;;;; +;;;;;;;;FRHPCPNF080359;FR*FR1*EUVMW;CORLAY-PLACE DU MARCHE;;12 Place de l'Eglise - Besle 44290 GUEMENE-PENFAO (44);;[-4.176747, 48.293953];;FRFR1EZAHP1;LCJN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.235011;48.605137;;;; +;;;;;;;;FRTCBP01789;FRLE2EDGSS1;PLOUNEVEZ-MOEDEC - SALLE DES FETES;;8 Rue de l'Abbé Verger 44530 GUENROUET (44);;[-4.335426, 48.561989];;FRFR1EPDLA1;LBMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.207378;47.985855;;;; +;;;;;;;;FRV75P900102;c47a96e0-8457-4f87-b3a5-69b8647c1ed1;EVRAN-RUE DE LAPOTHICAIRE;;8 Avenue Gustave Flaubert 44350 GUERANDE (44);;[-4.256995, 48.065521];;FRFR1EGMLB1;PKMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.280146;47.979057;;;; +;;;;;;;;FRV75P900101;LESLODGESDUREYNOU;TREGASTEL-BOULEVARD DU COZ PORS PARKING DU PERE ETERNEL;;8 Rue Jean-Baptiste Legeay 44350 GUERANDE (44);;[-4.320383, 48.573498];;FRFR1EZEHZ1;PWYW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.038069;47.856537;;;; +;;;;;;;;FRTCBP01788;EVB-P21211914;PLOUGUERNEVEL-LE BOURG - ROUTE DE ROSTRENEN;;6 Avenue Gustave Flaubert 44350 GUERANDE (44);;[-4.64312, 48.374123];;FRFR1EZEHZ2;PZXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.112415;48.041206;;;; +;;;;;;;;FRTCBP00954;EVB-P21211626;LANRELAS-PLACE ST FIACRE;;Rue du Prieuré 44520 MOISDON-LA-RIVIERE (44);;[-4.211916, 48.098244];;FRFR1EZEPP1;QALF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.424026;48.553905;;;; +;;;;;;;;FRTCBP01734;EVBP1942030;LANCIEUX-PARKING DE LA MAIRIE;;10 Place du Champ de Foire 44390 NORT-SUR-ERDRE (44);;[-4.174933, 47.832439];;FRFR1EZEPP2;TMMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.18113;48.042675;;;; +;;;;;;;;FRTCBP01489;c8ee7876-9261-497e-9f6b-856d3bf94e3f;BRUSVILLY-PARKING RUE DE BROONS;;210 Avenue de l'Ile-De-France 44550 MONTOIR-DE-BRETAGNE (44);;[-3.478167, 47.937088];;FRFR1EZAHP2;PZAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.752462;47.866322;;;; +;;;;;;;;FRV75P900201;Securecharge-GrHoMar-CC-1;SAINT GLEN-RUE DE LA FONTAINE PARKING MAIRIE;;1 bis Rue de la Source 44760 LES MOUTIERS-EN-RETZ (44);;[-4.595497, 48.275364];;FRFR1ETFVR2;PMEU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.486429;47.862942;;;; +;;;;;;;;FRV75P900202;651b5aa1-1762-4c01-82e4-6572c740945c;SAINT JUVAT-LE BOURG;;6 Rue du Bourg Drapé 44850 MOUZEIL (44);;[-4.5986, 48.428299];;FRFR1EVKJB2;PUCM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.085618;47.870659;;;; +;;;;;;;;FRV75P900203;f77e415b-bcf9-4b98-923e-c2d6202963f4;UZEL-CHAMP DE FOIRE;;1 Place de la Vendée 44330 MOUZILLON (44);;[-4.002561, 48.101925];;FRFR1EVKJB1;TGXN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.488049;47.88036;;;; +;;;;;;;;FRV75P900301;3b6d5b9c-4bc8-4daa-aeb8-ba09fdddb6d1;LAMBALLE-BOULEVARD DU HARAS;;14 Rue d'Ancenis 44390 NORT-SUR-ERDRE (44);;[-4.326797, 48.664791];;FRFR1ENDGV2;SRSZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.224181;48.51339;;;; +;;;;;;;;FRV75P900402;FRLE2EDWKL1;SAINT BRIEUC-RUE DU LEGUE;;32 Place de l'lise 44130 NOTRE-DAME-DES-LANDES (44);;[-4.375518, 47.817368];;FRFR1ENDGV1;QFUF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.224541;48.531193;;;; +;;;;;;;;FRTCBP00802;FRFR1EVSFB1;DINAN-PARKING RUE DESROYER;;2 Rue de la Bernuais 44550 MONTOIR-DE-BRETAGNE (44);;[-3.91355, 48.667358];;FRFR1EKBFK1;QGSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.224656;48.567532;;;; +;;;;;;;;FRHPCPNF080374;FRECN0134;LOUDEAC-PARKING DU CHAMP FOIRE;;TSN 44.2 44170 NOZAY (44);;[-3.539367, 48.275612];;FRFR1EKBFK2;SLHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.217891;48.606556;;;; +;;;;;;;;FRHPCPNF088576;FRECN0133;CALORGUEN-PARKING DE LA MAIRIE;;1 Impasse du Lavoir 44170 NOZAY (44);;[-3.576228, 48.277264];;FRFR1EQFMW1;SMEH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.764534;48.619442;;;; +;;;;;;;;FRHPCPNF080048;FRECN0136;SAINT BRIEUC-18 RUE COURTELINE;;95 Rue de la Loire 44521 OUDON (44);;[-4.139651, 48.159222];;FRFR1EQDPB2;TELV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.451106;48.525082;;;; +;;;;;;;;FRHPCPNF058969;FRECN0135;TREVENEUC-RUE DE TOURNEBRIDE;;11 Quai Sadi-Carnot 44560 PAIMBOEUF (44);;[-4.093426, 48.194569];;FRFR1EQGUG1;TAUG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.70173;48.014278;;;; +;;;;;;;;FRHPCPNF058968;01FHZ1QMY4JSFE6G7VES2794BC;SAINT VRAN-LE BOURG;;6 Rue Georges Sicard 44130 FAY-DE-BRETAGNE (44);;[-4.05061, 48.21619];;FRFR1EDRMA2;MAGW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.503862;48.608871;;;; +;;;;;;;;FRHPCPNF059010;FRECN0128;LANNION URSULINES;;39 Rue Félix Davy Desnaurois 44310 LA LIMOUZINIERE (44);;[-3.818973, 48.192974];;FRFR1EVYLC1;LVPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.555913;48.513668;;;; +;;;;;;;;FRHPCPNF058967;FRECN0127;LANNION AEROPORT;;Rue des Musiciens 44260 MALVILLE (44);;[-4.104016, 48.663445];;FRFR1EAFCQ1;LRGF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.602025;48.617405;;;; +;;;;;;;;FRHPCPNF058931;863355;PLESTIN LES GREVES - PLACE DU 19 MARS 1962;;Place Rosmadec 44430 LE LOROUX-BOTTEREAU (44);;[-3.586496, 47.795624];;FRFR1EGQFG1;MZGZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.486453;48.50914;;;; +;;;;;;;;FRHPCPNF058911;787236;PLEUMEUR BODOU - POLE PHOENIX;;6 Boulevard Gabriel Reliquet 44270 MACHECOUL (44);;[-4.064729, 47.89743];;FRFR1EMYFT1;LVPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.299168;48.534348;;;; +;;;;;;;;FRHPCPNF059190;767193;PLOUARET - RUE LOUIS PRIGENT;;3 Rue de la ville en Bois 44270 SAINT MEME LE TENU (44);;[-3.955801, 48.302963];;FRFR1EFGHR1;LRGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.211415;47.29969;;;; +;;;;;;;;FRHPCPNF059193;694028;PLOUARET - RUE DE LA GARE;;2 A Allée de Keelby 44690 MAISDON-SUR-SEVRE (44);;[-4.317977, 48.245838];;FRFR1ETCWQ1;LGRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.211429;50.13950991485836;;;; +;;;;;;;;FRHPCPNF059189;805269;LOUDEAC - RAPIDE;;Le Martrais 44170 MARSAC-SUR-DON (44);;[-3.440174, 47.901684];;FRFR1EYJBT1;MAGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.68705;46.073133287506614;;;; +;;;;;;;;FRHPCPNF059051;781569;LANVOLLON-RUE SAINT YVES;;2 Place du Lavoir 44140 MONTBERT (44);;[-4.537401, 48.026707];;FRFR1EKFWA1;LLFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.790468;4.858677;;;; +;;;;;;;;FRHPCPNF059042;805275;CHATELAUDREN-18 RUE PASTEUR;;77 Rue de la Bellangeraie 44522 MESANGER (44);;[-3.700252, 47.93338];;FRFR1EBYEW1;LKXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.498428;50.714811999999;;;; +;;;;;;;;FRHPCPNF042589;754344;PLANCOET-LA GARE;;Parking Camping Cars 44420 MESQUER (44);;[-3.706109, 47.926643];;FRFR1ELULB1;LMZY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8255189491394663;44.146517682124674;;;; +;;;;;;;;FRHPCPNF042236;805230;PLESTAN - RAPIDE;;23 Rue du Chemin de la Ville 44780 MISSILLAC (44);;[-3.605561, 47.857525];;FRFR1EMHGQ1;LMLF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.381371271658948;43.8136602;;;; +;;;;;;;;FRHPCPNF042331;694034;COADOUT-PLACE DE LA MAIRIE;;10 Rue de la Fontaine Saint-Jean 44780 MISSILLAC (44);;[-4.102162, 47.871059];;FRFR1ELCVX1;MCQZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;52.3406297;44.1386705;;;; +;;;;;;;;FRHPCPNF042677;706151;LA MOTTE-RUE JOSEPH DUPRE;;15 Rue du Cheau 44670 LA CHAPELLE-GLAIN (44);;[-4.106747, 47.87693];;FRFR1EJGCG1;QRTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1659997;45.117992;;;; +;;;;;;;;FRHPCPNF042595;789201;COLLINEE-RUE ANDRE GILLES PARKING STATION SERVICE DERRIERE CARREFOUR MARKET;;Parking Atlantia 44470 LA BAULE (44);;[-4.116132, 47.876938];;FRFR1EAXNP1;VZLN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.069912308187833;46.67;;;; +;;;;;;;;FRHPCPNF039295;805320;DINAN-PLACE DUGUESCLIN;;28 Rue de Penlys 44410 LA CHAPELLE-DES-MARAIS (44);;[-4.512228, 48.074905];;FRFR1EAYAD1;MCWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.3328996;50.840108099999;;;; +;;;;;;;;FRHPCPNF037072;789204;MEGRIT-RUE DES GRANITIERS PARKING STADE DE FOOT;;5 Rue Robert Schuman 44130 BLAIN (44);;[-4.507157, 48.49913];;FRFR1EPWFB1;QTAF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.0814445;50.885777;;;; +;;;;;;;;FRHPCPNF026412;781632;TREGONNEAU-LE BOURG;;19 Rue Pierre Waldeck Rousseau 44130 BLAIN (44);;[-3.890398, 47.996445];;FRFR1EZZVR1;MAXF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.536132;48.7;;;; +;;;;;;;;FRHPCPNF011512;735843;SAINT JACUT DE LA MER-RUE DU CHATELET;;21 Boulevard de la Résistance 44130 BLAIN (44);;[-4.262154, 48.361095];;FRFR1EJXXB1;QRYG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.87;50.6463447;;;; +;;;;;;;;FRHPCPNF010263;815388;MUR DE BRETAGNE-RUE DE PONTIVY;;Complexe sportif de la vigne 44580 BOURGNEUF-EN-RETZ (44);;[-4.165494, 48.219227];;FRFR1EPNLE1;MSRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.8366466;50.2659007;;;; +;;;;;;;;FRHPCPNF050214;805278;TREGUIER-LE PORT;;6 Rue Cathelineau 44190 BOUSSAY (44);;[-4.270626, 48.397804];;FRFR1EQCEH1;MVLR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.662474;50.5201558;;;; +;;;;;;;;FRHPCPNF058500;805305;TADEN-ZA DES ALLEUX;;31 Rue Louis Guihot 44130 BOUVRON (44);;[-4.341825, 48.09568];;FRFR1EPBLA1;MPCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.52;45.132872088016235;;;; +;;;;;;;;FRHPCPNF051046;805311;QUINTIN-PLACE DU MARTRAY;;18 Rue de Bretagne 44750 CAMPBON (44);;[-4.330149, 48.092033];;FRFR1EQKXF1;LBMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.132099;46.82488;;;; +;;;;;;;;FRHPCPNF058016;805308;SAINT BRANDAN-PLACE DE LEGLISE;;13 Rue de la Marquise de Sévigné 44470 CARQUEFOU (44);;[-4.32102, 48.086506];;FRFR1ESFPA1;KPVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.7997062;45.63;;;; +;;;;;;;;FRHPCPNF058543;805302;SAINT CLET-RUE DU TREGOR;;5 Place Montréal 44390 CASSON (44);;[-3.975574, 48.104568];;FRFR1EUTHL1;KSXC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.6550211;45.68;;;; +;;;;;;;;FRHPCPNF058742;789174;PLOUASNE-BOULEVARD DE LA GARE PARKING DE LEGLISE;;8A Place Saint-Méen 44850 LE CELLIER (44);;[-4.024456, 48.008377];;FRFR1EUTHL2;MMEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.6969556979136504;48.86;;;; +;;;;;;;;FRHPCPNF051024;805338;PLERIN-SAINT LAURENT;;Rue des Petites Noues 44450 DIVATTE-SUR-LOIRE (44);;[-4.012943, 47.895412];;FRFR1EPNLE2;MKNB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.85759376;48.66;;;; +;;;;;;;;FRHPCPNF050499;805341;LE FOEIL-PLACE DE LA MAIRIE;;2 Rue des Mésanges 44450 DIVATTE-SUR-LOIRE (44);;[-4.011984, 47.891369];;FRFR1EDTBG2;MNLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.99;45.955;;;; +;;;;;;;;FRHPCPNF050462;735840;PABU-RUE DE LEGLISE;;2 Les Jardins de la Touche 44140 LE BIGNON (44);;[-4.115754, 47.910778];;FRFR1EXHCH2;MMWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.13;44.16;;;; +;;;;;;;;FRHPCPNF059775;880128;PONTRIEUX-PARKING RUE DU QUAI;;4 Rue du Pont Neuf 44160 BESNE (44);;[-4.5913, 48.055546];;FRFR1EXHCH1;VZLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.02;45.95;;;; +;;;;;;;;FRHPCPNF059748;880131;PLEDELIAC-RUE DARMOR;;67 Boulevard du Docteur Moutel 44150 ANCENIS (44);;[-3.583797, 48.515305];;FRFR1EPSVX1;MSAP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.96;44.96;;;; +;;;;;;;;FRHPCPNF059743;880134;SAINT NICOLAS DU PELEM-PARKING RUE HENRI AVRIL;;11 Rue de la Mairie 44170 ABBARETZ (44);;[-4.506578, 48.2258];;FRFR1ESDHX2;MELY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.58;48.23;;;; +;;;;;;;;FRHPCPNF059736;735822;LANNION-BOULEVARD LOUIS GUILLOU PARKING KERMARIA;;Rue de la Filée 44140 AIGREFEUILLE-SUR-MAINE (44);;[-4.123075, 47.874435];;FRFR1EDTBG1;MDFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.47;43.28654;;;; +;;;;;;;;FRHPCPNF059983;735828;SAINT CAST LE GUILDO-LE PORT - PLACE DU PILOTE FROMONT;;36 Avenue de la Vendée 44140 AIGREFEUILLE-SUR-MAINE (44);;[-3.956018, 48.413948];;FRFR1ESDHX1;MXLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.93;49.644069;;;; +;;;;;;;;FRHPCPNF059916;735831;ROSTRENEN-PLACE BOURG KOHZ;;69 Boulevard Léon Séché 44150 ANCENIS (44);;[-3.9177, 47.87339];;FRFR1EDRMA1;MVVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0;45.52876535004003;;;; +;;;;;;;;FRHPCPNF059964;694037;PLOUHA-PLACE FOCH PARKING PRES DE LEGLISE;;5 Rue du Clos Gris 44320 CHAUMES-EN-RETZ (44);;[-3.909739, 47.872265];;FRFR1EDEVT1;MZFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.68;49.18274284714659;;;; +;;;;;;;;FRHPCPNF059779;735834;PLUMAUDAN-PLACE MARECHAL FOCH PARKING PRES DE LEGLISE;;2 Allée du Marchas 44320 CHAUMES-EN-RETZ (44);;[-3.901737, 47.921692];;FRFR1EQGQD2;MXMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.79;44.8254186;;;; +;;;;;;;;FRHPCPNF059994;789198;QUEMPER GUEZENNEC-RUE DE LEGLISE;;1 Rue de la Fontaine 44410 ASSERAC (44);;[-3.917199, 47.870399];;FRFR1EJCRA2;LCJN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.51344;44.975229;;;; +;;;;;;;;FRHPCPNF059903;880242;SAINT AGATHON-RUE HENT MEUR PARKING SALLE DES SPORTS;;11 Bis Rue de la Gare 44460 AVESSAC (44);;[-3.924636, 47.877735];;FRFR1EADVG1;HQRN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.6353802;43.929095;;;; +;;;;;;;;FRHPCPNF059902;805299;TREGUEUX - PLACE F. MITTERAND PARKING MAIRIE;;7 Rue de la Gare 44740 BATZ-SUR-MER (44);;[-3.832747, 48.060768];;FRFR1EADVG2;ZBGP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.690897555220402;45.43232;;;; +;;;;;;;;FRHPCPNF059797;781608;SAINT BRIEUC-QUAI ARMEZ;;20 Avenue de Noirmoutier 44760 LA BERNERIE-EN-RETZ (44);;[-4.418989, 48.247986];;FRFR1EYLAS1;HRAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4017290030274534;46.734241;;;; +;;;;;;;;FRHPCPNF059792;880140;SAINT GILLES PLIGEAUX-PARKING RUE DES BRUYERES;;1 Ruie ienne Sautejeau 44330 LE PALLET (44);;[-4.491614, 48.248337];;FRFR1EQABW1;QMSF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4451526;47.4716214490022;;;; +;;;;;;;;FRHPCPNF059786;814563;QUESSOY-PLACE DE LEGLISE PARKING MAIRIE;;Rue des Sports - Espace Culturel 44360 CORDEMAIS (44);;[-4.507885, 48.285328];;FRFR1EXMWF1;QMKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.559326;45.60781;;;; +;;;;;;;;FRHPCPNF059694;801516;PLOEZAL-CHATEAU ROCHE JAGU;;D 77 44560 CORSEPT (44);;[-4.722911, 48.403175];;FRFR1EXMWF2;NNMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.707232;46.22774;;;; +;;;;;;;;FRHPCPNF059599;842559;PLEVENON-PARKING DU BOURG ROUTE DU CAP - RD 34;;2 Rue de la Vallée du Havre 44521 COUFFE (44);;[-4.095822, 48.006672];;FRFR1EAGVD1;SGMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.07183;42.84540556623;;;; +;;;;;;;;FRHPCPNF059499;804474;TREGUEUX - LE PERRAY RAPIDE;;Parking de la Place du 8 Mai 44490 LE CROISIC (44);;[-3.552851, 47.871124];;FRFR1EGUCA1;SVVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.593537;44.911404;;;; +;;;;;;;;FRHPCPNF059511;814566;PLOUMAGOAR-LA CHESNAYE RAPIDE;;24 Rue Pierre Plaisance 44160 CROSSAC (44);;[-3.546339, 47.874336];;FRFR1EGUCA2;VCMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.7480292628930094;48.338735;;;; +;;;;;;;;FRHPCPNF059558;788925;LE QUIOU-PLACE DE LEGLISE;;Place de la Grée 44590 DERVAL (44);;[-3.552238, 47.868786];;FRFR1EQGMX1;RQUT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.09085;46.4304455;;;; +;;;;;;;;FRHPCPNF059600;814572;PLEMET-RUE DE RENNES PARKING PMU ET CMB;;3 Place de la Gare 44480 DONGES (44);;[-3.461947, 47.860291];;FRFR1EQGAS1;NWXZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.12869;45.649787;;;; +;;;;;;;;FRHPCPNF059472;788757;PLOURHAN-RUE DU PARC;;4 a Les Six Croix 44480 DONGES (44);;[-3.691156, 47.843136];;FRFR1EQGAS2;XRVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.59980393711;46.480609;;;; +;;;;;;;;FRHPCPNF059380;744225;SAINT QUAY PORTRIEUX-PARKING PORT DARMOR;;37 Grande Rue 44530 DREFFEAC (44);;[-3.985369, 48.724209];;FRFR1EQGMX2;GVNP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.442376;50.6565678;;;; +;;;;;;;;FRHPCPNF059672;767304;PLUDUNO-RUE CHATEAUBRIAND;;2 Rue de la Mouette 44110 ERBRAY (44);;[-3.980556, 48.722633];;FRFR1EQGUG2;HEMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.315905;45.749626602859486;;;; +;;;;;;;;FRHPCPNF059671;767316;QUINTIN-SQUARE BLANCHET;;46 Avenue du Maréchal Joffre 44500 LA BAULE-ESCOUBLAC (44);;[-3.829561, 47.958473];;FRFR1EQHQT1;DJYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.2623206;49.099573;;;; +;;;;;;;;FRHPCPNF059628;782313;PLOUFRAGAN-RUE CAMILLE GUERIN TECHNOPOLE;;42 Avenue du Maréchal Joffre 44500 LA BAULE-ESCOUBLAC (44);;[-4.02287, 47.935459];;FRFR1EYLAS2;MFYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.812625;43.20905731878834;;;; +;;;;;;;;FRHPCPNF059614;788760;LEZARDRIEUX-RUE DU PORT;;8 Avenue des Quatre Vents 44360 CORDEMAIS (44);;[-3.799367, 48.153252];;FRFR1ELXSE1;NDGQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.430385;43.61;;;; +;;;;;;;;FRHPCPNF059602;788763;PLANGUENOUAL-RUE DES PONTS NEUFS;;52 Rue de la Libération 44110 CHATEAUBRIANT (44);;[-3.843285, 48.575516];;FRFR1ELXSE2;LTQG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.1165963;42.45;;;; +;;;;;;;;FRHPCPNF010132;814569;PAIMPOL-PARKING PLACE DU GOELO;;14 Rue André Ripoche 44330 LA CHAPELLE-HEULIN (44);;[-4.61037, 48.567944];;FRFR1ENUMZ1;NDGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6595715141555814;50.5443626;;;; +;;;;;;;;FRHPCPNF078244;735825;MONCONTOUR-PLACE DE LA CARRIERE;;1 Place de l'lise 44260 LA CHAPELLE-LAUNAY (44);;[-4.093842, 48.00309];;FRFR1EJTVW1;NDBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.05901;48.9381;;;; +;;;;;;;;FRHPCPNF078333;706625;PLOUFRAGAN-RUE DU GRISMOLET / RUE DE LA MAIRIE;;75 Rue du Général Patton 44110 CHATEAUBRIANT (44);;[-3.98622, 48.686703];;FRFR1EAMFM2;NBLR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.3617357269911046;46.34;;;; +;;;;;;;;FRHPCPNF078243;787233;SAINT JOUAN DE L ISLE-ZA KERGOET;;Place de la Motte 44110 CHATEAUBRIANT (44);;[-4.119875, 48.11594];;FRFR1EJCRA1;HTZQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.45;44.2371439;;;; +;;;;;;;;FRHPCPNF078386;501567;ROSTRENEN-ZA DE GOASNEL;;1 Rue Duguesclin 44110 CHATEAUBRIANT (44);;[-3.536914, 47.959827];;FRFR1EAMFM1;QKKC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;9.2;45.982475;;;; +;;;;;;;;FRHPCPNF078387;789186;MERDRIGNAC-ZONE DE LA HERONNIERE;;1 Place Lemot 44190 CLISSON (44);;[-4.083755, 48.031239];;FRFR1EVHDG1;NQAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.0973151;49.1485;;;; +;;;;;;;;FRHPCPNF078531;789165;LANDERNEAU-RUE SAINT-ERNEL;;2 Rue du Prieuré 44690 CHATEAU-THEBAUD (44);;[-4.1279, 47.986479];;FRFR1EVHDG2;NQKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.494;48.29733;;;; +;;;;;;;;FRHPCPNF078546;706628;LANDIVISIAU-RUE LA TOUR DAUVERGNE;;La Petite Routière 44320 CHAUVE (44);;[-4.093657, 48.013607];;FRFR1ENUMZ2;NUGZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.86;48.155596;;;; +;;;;;;;;FRHPCPNF078075;789189;LANDIVISIAU-MOULINS AUX PRETRES;;13 Rue Alfred Lemaitre 44118 LA CHEVROLIERE (44);;[-4.095428, 48.010571];;FRFR1EYMMX1;PZXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.61;48.155813;;;; +;;;;;;;;FRHPCPNF078171;781599;LANDERNEAU-RUE DE LA FONTAINE BLANCHE;;48 Rue du Stade 44118 LA CHEVROLIERE (44);;[-4.106417, 47.999485];;FRFR1ELWER2;QFUF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.149723;48.296963;;;; +;;;;;;;;FRHPCPNF078118;735816;LANDERNEAU-QUAI DE LEON;;12 Rue Docteur Boutin 44190 CLISSON (44);;[-4.102052, 47.999451];;FRFR1ELWER1;SMEH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.63;47.848493;;;; +;;;;;;;;FRHPCPNF078069;882348;LANDIVISIAU-PLACE LYAUTEY;;28 Rue du Maréchal Foch 44210 PORNIC (44);;[-4.104504, 47.993977];;FRFR1EDQSG2;NMEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.350366;48.474519;;;; +;;;;;;;;FRHPCPNF078062;789183;LANILDUT-ANSE DE SAINT-GILDAS;;10 Rue de l'Ebergement 44270 PAULX (44);;[-4.08335, 47.984688];;FRFR1EDQSG1;QGSB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.3751;47.94467;;;; +;;;;;;;;FRHPCPNF078061;882351;LANDREVARZEC-VENELLE DU FOUR A PAIN;;4 Rue des Heurthauds 44450 SAINT JULIEN DE CONCELLES (44);;[-4.072012, 47.9832];;FRFR1ETMDC1;LAEZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.929144;47.834389;;;; +;;;;;;;;FRHPCPNF078183;882354;LANDUDEC-RUE DES ECOLES;;4 Rue de l'Auditoire 44680 SAINTE-PAZANNE (44);;[-4.414799, 48.080925];;FRFR1ETMDC2;QALF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.397318;48.097822;;;; +;;;;;;;;FRHPCPNF078218;882357;LANMEUR-PARKING PEN HUELLA GUER;;3 Rue du Verdelet 44680 SAINTE-PAZANNE (44);;[-3.623005, 47.958649];;FRFR1EUXLZ1;QPTT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.402955;47.826223;;;; +;;;;;;;;FRHPCPNF078230;800076;LANNEDERN-RESIDENCE PENN AR REUN;;39 Place du Marché 44320 SAINT-PERE-EN-RETZ (44);;[-4.078652, 48.689281];;FRFR1EVEFK2;QNJR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.93954;48.411734;;;; +;;;;;;;;FRHPCPNF078238;767202;LANDEDA-ROUTE DE LARMORIQUE;;16 Rue des Jardins 44310 SAINT-PHILBERT-DE-GRAND-LIEU (44);;[-4.02585, 48.702991];;FRFR1EVEFK1;HTDE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.947992;47.873144;;;; +;;;;;;;;FRHPCPNF078544;805224;LANNILIS-RUE DE LA FONTAINE;;7 Place de l'lise 44310 SAINT-PHILBERT-DE-GRAND-LIEU (44);;[-4.538179, 48.552601];;FRFR1EUGLM1;KMFJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.972928;48.417355;;;; +;;;;;;;;FRHPCPNF007502;756624;HUELGOAT-RUE DU GENERAL DE GAULLE;;6 Rue René Guy Cadou 44160 SAINTE-REINE-DE-BRETAGNE (44);;[-3.678202, 48.433521];;FRFR1ESSHY2;DBMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.912477;48.254747;;;; +;;;;;;;;FRHPCPNF078601;880137;LAMPAUL PLOUARZEL-RUE DE LA MAIRIE;;3 ter Rue du Parc des Sports 44320 SAINT-VIAUD (44);;[-3.52067, 47.90242];;FRFR1EJFPF1;MDFG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.717961;48.230821;;;; +;;;;;;;;FRHPCPNF080041;880143;GUILVINEC-PLACE DE LA POSTE;;24 Rue de la Libération 44590 SAINT-VINCENT-DES-LANDES (44);;[-4.051803, 47.999352];;FRFR1EGURT2;WTMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.886473;48.437096;;;; +;;;;;;;;FRHPCPNF078611;815418;LANRIVOARE-RUE DE BELLEVUE;;53 Rue de Bretagne 44880 SAUTRON (44);;[-4.203651, 48.472099];;FRFR1EGUAK2;VQMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.707706;48.09876;;;; +;;;;;;;;FRHPCPNF078569;815406;GUIMAEC-HENT SANT FIEK;;5524 La Justice 44260 SAVENAY (44);;[-4.757681, 48.521224];;FRFR1EGURT1;VXZW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.813204;47.934222;;;; +;;;;;;;;FRHPCPNF080042;747282;GUISSENY-RUE DE PLOUGUERNEAU;;29 Rue de Verdun 44260 SAVENAY (44);;[-4.317882, 48.082424];;FRFR1EDZVC2;JUWT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.522439;48.020721;;;; +;;;;;;;;FRHPCPNF080044;815403;HANVEC-PLACE DU MARCHE;;1 Rue Sainte-Thérèse 44530 SEVERAC (44);;[-3.832769, 47.960244];;FRFR1ERBAH2;JYZV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.336777;48.4030159;;;; +;;;;;;;;FRHPCPNF080045;747285;ILE TUDY-RUE DES GOEMONIERS;;2 Rue de Saint-Sulpice 44590 SION-LES-MINES (44);;[-4.650071, 48.048437];;FRFR1EDZVC1;JZGZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.498669;48.085018;;;; +;;;;;;;;FRHPCPNF080046;815409;IRVILLAC-ROUTE DE DAOULAS;;26 Rue d'Ahaut 44460 SAINT-NICOLAS-DE-REDON (44);;[-3.851396, 47.854599];;FRFR1ERJCV1;XRXZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.03395;47.829669;;;; +;;;;;;;;FRHPCPNF080047;787224;KERLOUAN-RUE DE LA COTE DES LEGENDES;;10 Rue des Chaponneries 44680 SAINT-MARS-DE-COUTAIS (44);;[-3.988846, 48.678314];;FRFR1EKWBN2;WYAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.497452;47.823095;;;; +;;;;;;;;FRHPCPNF078556;761370;KERSAINT PLABENNEC-ROUTE DE PLABENNEC;;1 Route du Lac 44450 SAINT JULIEN DE CONCELLES (44);;[-4.620963, 48.433746];;FRFR1ERJCV2;WXFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.78852;48.182806;;;; +;;;;;;;;FRHPCPNF078564;805239;LA FOREST LANDERNEAU-RUE DE LA CROIX DE MISSION;;8 Place du Général de Gaulle 44980 SAINTE-LUCE-SUR-LOIRE (44);;[-4.067573, 48.241135];;FRFR1EDQGL2;WUJK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.416529;48.2511046;;;; +;;;;;;;;FRHPCPNF078551;781578;LA FORET FOUESNANT-RUE CHARLES DE GAULLE;;14 Route du Vignoble 44190 SAINT-LUMINE-DE-CLISSON (44);;[-3.946151, 48.521469];;FRFR1ENXRX1;XLHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.868946;48.054082;;;; +;;;;;;;;FRHPCPNF078037;805233;MILIZAC-PLACE DE YEALMPTON;;5 Place Notre-Dame du Chatellier 44310 SAINT-LUMINE-DE-COUTAIS (44);;[-3.885427, 48.164818];;FRFR1ENXRX2;XRJL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6299366;47.895574;;;; +;;;;;;;;FRHPCPNF078016;815400;MELGVEN-PLACE DES GRANDS CHENES;;Salle Sainte-Anne 44410 SAINT-LYPHARD (44);;[-3.850635, 47.855431];;FRFR1EPTWR1;XPNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.643338;48.020476;;;; +;;;;;;;;FRHPCPNF062209;747279;MELGVEN-AIRE DE COVOITURAGE DE KERAMPAOU;;Salle Sainte-Anne 44550 SAINT-MALO-DE-GUERSAC (44);;[-3.937679, 47.966953];;FRFR1EUGLM2;XLWP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.684591;48.074663;;;; +;;;;;;;;FRHPCPNF062228;767184;SAINTE SEVE-AIRE DE COVOITURAGE DE COAT CONVAL;;Parking Gare Nord 44600 SAINT-NAZAIRE (44);;[-4.354569, 48.231087];;FRFR1EGUAK1;WPZP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.689528;47.87564;;;; +;;;;;;;;FRHPCPNF001019;756795;MELLAC-ROUTE DE QUIMPERLE;;22 Rue du 3 Août 1944 44850 SAINT-MARS-DU-DESERT (44);;[-3.702015, 48.025848];;FRFR1ECDZN1;WJCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.899746;48.090244;;;; +;;;;;;;;FRHPCPNF062085;805236;MELLAC-POLE DACT KERVIDANOU 3;;10 Rue Neuve 44540 SAINT-MARS-LA-JAILLE (44);;[-4.276989, 47.79454];;FRFR1EUGQB2;VUAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.3661645;48.437891;;;; +;;;;;;;;FRHPCPNF062704;828288;MOELAN SUR MER-RUE DES PLAGES;;22 A Rue du Chevecier 44730 SAINT-MICHEL-CHEF-CHEF (44);;[-4.079161, 48.405582];;FRFR1EHKZM1;VUME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.740993;47.791279;;;; +;;;;;;;;FRHPCPNF006369;805251;MORLAIX-RUE JEAN YVES GUILLARD;;Salle des sports 44350 SAINT-MOLF (44);;[-3.862684, 48.106586];;FRFR1EFMVU2;SLHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.048258;47.793557;;;; +;;;;;;;;FRHPCPNF007451;741657;MORLAIX-PLACE DU POULIET;;Rue du Presbytère 44110 SOUDAN (44);;[-4.221155, 48.125313];;FRFR1EFMVU1;MXLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.581051;48.460889;;;; +;;;;;;;;FRHPCPNF007357;805254;MORLAIX-RUE ALBERT LE GRAND;;21 Avenue du Val de Loire 44116 VIEILLEVIGNE (44);;[-4.733003, 48.432934];;FRFR1EHKZM2;MVLR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.69995;48.1350588;;;; +;;;;;;;;FRHPCPNF007060;828285;NEVEZ-RUE DE PORT MANECH;;24 Rue ile Gabory 44330 VALLET (44);;[-4.658987, 48.542091];;FRFR1EUGQB1;VXZW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.393857;48.297358;;;; +;;;;;;;;FRHPCPNF007052;815415;GUILLIGOMARC H-RUE DU SCORFF;;Boulevard Stéphane Pusterle 44330 VALLET (44);;[-4.699928, 48.557819];;FRFR1EGVZD2;VZKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.755338;48.385509;;;; +;;;;;;;;FRHPCPNF006467;828291;LOPERHET-ROUTE DE DIRINON;;96 Rue du Parc 44370 LOIREAUXENCE (44);;[-4.289413, 48.48246];;FRFR1EGXRQ1;MVVC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.058704;47.95096;;;; +;;;;;;;;FRHPCPNF067705;789168;LANRIVOARE-ROUTE DARGENTON;;35 Rue des Deux Provinces 44370 LOIREAUXENCE (44);;[-4.311651, 48.538128];;FRFR1EJFPF2;MZFK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.439627;48.300891;;;; +;;;;;;;;FRHPCPNF072380;805248;LANVEOC-RUE DE LA MAIRIE;;11 Route de Plesse 44170 VAY (44);;[-3.675449, 48.621498];;FRFR1EGVZD1;MXMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.055715;48.34244771;;;; +;;;;;;;;FRHPCPNF070668;828282;LAZ-PLACE DE LEGLISE;;Parking Rue Trévaly / D99 44420 LA TURBALLE (44);;[-3.605536, 48.566917];;FRFR1EGXRQ2;MSRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.198609;48.137358;;;; +;;;;;;;;FRHPCPNF070641;754329;LE CONQUET-PLACE DE BREST;;Le Pont de Pierre 44360 VIGNEUX-DE-BRETAGNE (44);;[-4.326583, 48.043823];;FRFR1ESSHY1;MNLY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.556975;48.399713;;;; +;;;;;;;;FRHPCPNF074566;805242;LE FAOU-ROUTE DE RUMENGOL;;5056 Le Bourg 44360 VIGNEUX-DE-BRETAGNE (44);;[-3.989944, 48.631069];;FRFR1EHBZK2;MMEP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.611277;48.098848;;;; +;;;;;;;;FRHPCPNF076523;815412;LE FOLGOET-RUE DU VERGER;;Complexe sportif 44360 VIGNEUX-DE-BRETAGNE (44);;[-4.176036, 48.658459];;FRFR1ESRZG1;MKNB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.989022;47.982498;;;; +;;;;;;;;FRHPCPNF077241;787227;LE JUCH-RUE LOUIS TYMEN;;2 Place de la Madeleine 44140 GENESTON (44);;[-3.822053, 48.640057];;FRFR1ESRZG2;MELY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.551923;48.039426;;;; +;;;;;;;;FRHPCPNF070002;805245;LESNEVEN-RUE VALY GOZ;;22 Route de l'Océan 44170 LA GRIGONNAIS (44);;[-3.792689, 48.696903];;FRFR1EHKSH1;MMWY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.622363;48.339712;;;; +;;;;;;;;FRHPCPNF069303;828279;LOCMARIA PLOUZANE-RUE DE LA FONTAINE;;1 Avenue du Pays Blanc 44420 LA TURBALLE (44);;[-4.719758, 48.341545];;FRFR1EDQGL1;MSAP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.8610071;47.922081;;;; +;;;;;;;;FRHPCPNF069703;880146;LOCRONAN-RUE DU PRIEURE;;211 Avenue de l'Europe 44240 SUCE-SUR-ERDRE (44);;[-3.82614, 48.253262];;FRFR1EDPQS2;MPCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.908136;48.0744727;;;; +;;;;;;;;FRHPCPNF070003;696500;LOCTUDY-PLACE DES ANCIENS COMBATTANTS;;10 Rue du Général Charette 44650 TOUVOIS (44);;[-3.712219, 48.520206];;FRFR1EDPQS1;WFHJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.0988;48.0774643;;;; +;;;;;;;;FRV75PPX1106;699635;LOCUNOLE-RUE DE BEG AR ROZ;;37 Place Aristide Briand 44240 SUCE-SUR-ERDRE (44);;[-4.430538, 48.497616];;FRFR1EAVFE2;PZAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.351483;48.05511;;;; +;;;;;;;;FRV75PPX1107;789195;CAMARET SUR MER-RUE DU LOCH;;24 Chemin des Romains 44440 TEILLE (44);;[-4.045589, 47.906719];;FRFR1EFVYT2;DAAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.40551;48.300496;;;; +;;;;;;;;FRV75PPX1105;781572;MILIZAC-ROUTE DE GOUESNOU;;10 Rue Louis Girard 44360 LE TEMPLE-DE-BRETAGNE (44);;[-3.969462, 48.225613];;FRFR1EFVYT1;PWYW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.475751;48.0655286;;;; +;;;;;;;;FRV75PPX1104;781575;BRIEC-RUE MICHEL-ARMAND DE CORNOUAILLE;;18 Place de la République 44470 THOUARE-SUR-LOIRE (44);;[-3.874457, 48.5084];;FRFR1EDMLP2;XZYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.280608;48.077605;;;; +;;;;;;;;FRV75PPX1108;815391;BRIGNOGAN PLAGE-RUE DE NAOT HIR;;1B Rue Saint-Mélaine 44390 LES TOUCHES (44);;[-4.228642, 47.824329];;FRFR1EFVVM1;XULG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.677286;48.0800885;;;; +;;;;;;;;FRV75PPX1109;815394;PENMARCH-RUE DES CONSERVERIES;;32 Rue de la Gouérie 44119 TREILLIERES (44);;[-4.27096, 47.981709];;FRFR1EFVVM2;YDWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7614552;48.0820463;;;; +;;;;;;;;FRV75PPX1110;880200;CARANTEC-RUE DUQUESNE;;68 Rue de la Mairie 44119 TREILLIERES (44);;[-4.190454, 48.07729];;FRFR1EUENU1;DEUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7857756;48.060102;;;; +;;;;;;;;FRV75PPX1103;880176;CARHAIX PLOUGUER-RUE GENERAL JACQUES DE LA BOLLARDIERE;;5 Rue de la Mairie 44119 TREILLIERES (44);;[-4.153028, 47.935135];;FRFR1ERBAH1;DGYP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.790317;48.194942;;;; +;;;;;;;;FRV75PPX1111;880149;CARHAIX PLOUGUER-RUE DE LEGLISE;;32 Rue Léo Lagrange 44570 TRIGNAC (44);;[-4.284916, 47.841686];;FRFR1ECTZX1;YEMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.612687;48.121773;;;; +;;;;;;;;FRV75PPX1014;880152;CAST-RUE DE LA FONTAINE;;17 Place de La Mairie 44570 TRIGNAC (44);;[-4.235011, 48.180679];;FRFR1EUENU2;ZFEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7716565;47.871029;;;; +;;;;;;;;FRV75PPX1101;880155;CHATEAULIN-RUE DE LA PLAINE;;41 Avenue Léon Gambetta 44380 PORNICHET (44);;[-4.207378, 48.016224];;FRFR1ERARF2;ZCSE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7710749;43.837642;;;; +;;;;;;;;FRV75PPX1013;880158;CHATEAULIN-D88;;4 Rue du Général de Gaulle 44210 PORNIC (44);;[-4.280146, 47.901947];;FRFR1EFVQK1;ZBUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7830825;48.89915;;;; +;;;;;;;;FRV75PPX1012;880161;CHATEAUNEUF DU FAOU-IMPASSE DE LA GARE;;346 La Potriais 44720 SAINT-JOACHIM (44);;[-4.038069, 48.578644];;FRFR1ECTZX2;ZJXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7898318;47.063467;;;; +;;;;;;;;FRV75PPX1102;880164;CLEDER-RUE DE PLOUESCAT;;Parking du 18 Juin 1940 44380 PORNICHET (44);;[-4.112415, 48.605137];;FRFR1EWYUP2;ZTZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.9359299;47.0787;;;; +;;;;;;;;FRV75PPX1011;880167;CLOHARS CARNOET-RUE DE DOELAN;;3 Place Aristide Briand 44380 PORNICHET (44);;[-4.424026, 47.985855];;FRFR1EQWNZ1;ZRGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.663407;47.060109;;;; +;;;;;;;;FRV75PPX1201;880170;CLOHARS FOUESNANT-PLACE DE LA MAIRIE;;2 Avenue des Violettes 44380 PORNICHET (44);;[-4.18113, 47.979057];;FRFR1EWUVD2;ZLTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.718523;47.048993;;;; +;;;;;;;;FRV75PPX1202;880173;BRASPARTS-RUE SAINT-MICHEL;;1 Rue du Traité de Lisbonne 44210 PORNIC (44);;[-3.752462, 47.856537];;FRFR1ERARF1;KBRS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.747181;47.058334;;;; +;;;;;;;;FRV75PPX1118;880179;ARGOL-PLACE DES ANCIENS COMBATTANTS;;5404 La Riviere 44710 PORT-SAINT-PERE (44);;[-4.486429, 48.041206];;FRFR1EFVQK2;CWTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.804942;47.065228;;;; +;;;;;;;;FRV75PPX1204;880182;ARZANO-PLACE DE LA MAIRIE;;22 Rue de Pornic 44710 PORT-SAINT-PERE (44);;[-4.085618, 48.553905];;FRFR1EFWTB2;YBLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.51225;47.051325;;;; +;;;;;;;;FRV75PPX1205;880185;AUDIERNE-RUE LAMARTINE;;6 Boulevard de la Libération 44510 LE POULIGUEN (44);;[-4.488049, 48.042675];;FRFR1EERUK2;DDCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.876677;47.05618;;;; +;;;;;;;;FRV75PPX1206;880188;BANNALEC-PLACE YVES TANGUY;;24 Boulevard de Civanam 44510 LE POULIGUEN (44);;[-4.224181, 47.866322];;FRFR1EBZRH2;YURR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.83442;47.0604;;;; +;;;;;;;;FRV75PPX1207;880191;BANNALEC-LA GARE;;24 Place du Marché 44770 PREFAILLES (44);;[-4.224541, 47.862942];;FRFR1EBUHM1;HVFJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.879119;47.711017;;;; +;;;;;;;;FRV75PPX1117;880194;BAYE-IMPASSE SAINT-ELOI;;26 Rue de Besné 44260 PRINQUIAU (44);;[-4.224656, 47.870659];;FRFR1EBUHM2;PUCM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.897106;47.471672;;;; +;;;;;;;;FRV75PPX1113;880197;BENODET-CORNICHE DE LA PLAGE;;6 Place du Lion d'Or 44630 PLESSE (44);;[-4.217891, 47.88036];;FRFR1EBZRH1;VZKK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.87928;47.308056;;;; +;;;;;;;;FRV75PPX1114;789192;BENODET-AVENUE DE LA MER;;Allée George Sand 44640 LE PELLERIN (44);;[-4.764534, 48.51339];;FRFR1EAVFE1;JFGD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.870702;47.128778;;;; +;;;;;;;;FRV75PPX1112;880203;BENODET-AVENUE DE LODET;;8 Allée des Ajoncs 44390 PETIT-MARS (44);;[-4.451106, 48.531193];;FRFR1EKUUN2;JFNZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.885521;47.337381;;;; +;;;;;;;;FRV75PPX1115;741648;BEUZEC CAP SIZUN-PLACE DE LA MAIRIE;;6482 Place Marcel Gringoire 44420 PIRIAC-SUR-MER (44);;[-3.70173, 48.567532];;FRFR1EERUK1;JNMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.8777;47.209754;;;; +;;;;;;;;FRV75PPX1116;805296;BOURG BLANC-PLACE CHARLES ET MARIE CHAPALAIN;;Rue Joseph Rousse 44770 LA PLAINE-SUR-MER (44);;[-4.503862, 48.606556];;FRFR1EDMLP1;JEFA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.897598;47.569042;;;; +;;;;;;;;FRV75PPX0817;805317;ELLIANT-PLACE DE LA MAIRIE;;46 Rue de Nantes 44140 LA PLANCHE (44);;[-4.555913, 48.619442];;FRFR1EKSGB1;JAAP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.98902199;47.57017;;;; +;;;;;;;;FRV75PPX0905;741645;DAOULAS-RUE DE LA RIVE;;6 Boulevard de Villeneuve 44160 PONTCHATEAU (44);;[-4.602025, 48.525082];;FRFR1EKUUN1;YXAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.350736;47.534362;;;; +;;;;;;;;FRV75PPX0906;805284;DINEAULT-PLACE DE LEGLISE;;2679 Chemin de Criboeuf 44160 PONTCHATEAU (44);;[-4.486453, 48.014278];;FRFR1EKWBN1;JAHQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.152529;47.348772;;;; +;;;;;;;;FRV75PPX0904;741651;DIRINON-PLACE FRANCOIS-MARIE COATALEM;;11 Rue de la Flamme Olympique 44860 PONT-SAINT-MARTIN (44);;[-4.299168, 48.608871];;FRFR1EKSGB2;YMDY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.636861;47.664759;;;; +;;;;;;;;FRV75PPX0903;741654;DOUARNENEZ-QUAI FRANCOIS BONIZEC;;Aire des loisirs 44860 PONT-SAINT-MARTIN (44);;[-4.211415, 48.513668];;FRFR1EPTWR2;YJTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.267346;47.412434;;;; +;;;;;;;;FRV75PPX0907;880239;DOUARNENEZ-RUE BERTHELOT;;3 Rue des Combes 44860 PONT-SAINT-MARTIN (44);;[-4.211429, 48.617405];;FRFR1EFWTB1;DBWT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.728161;47.286139;;;; +;;;;;;;;FRV75PPX0908;815397;DOUARNENEZ-PLACE PAUL STEPHAN;;Rue de la Chapelle 44330 LA REGRIPPIERE (44);;[-4.68705, 48.50914];;FRFR1EHRFM2;YPPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.031529;47.182679;;;; +;;;;;;;;FRV75PPX0909;805257;EDERN-RUE DE LA LIBERATION;;113 Rue des Mares 44150 SAINT-GEREON (44);;[-3.790468, 48.534348];;FRFR1EHKTM1;YYKH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.359873;47.68098;;;; +;;;;;;;;FRV75PPX0902;880206;ERGUE GABERIC-ROUTE DE CROAS SPERN;;21 Boulevard de l’Océan 44250 SAINT-BREVIN-LES-PINS (44);;[-1.498428, 47.29969];;FRFR1EHRFM1;HQRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.568992;47.288395;;;; +;;;;;;;;FRV75PPX0819;851874;FOUESNANT-RUE DES ILES;;65 Avenue du Général de Gaulle 44310 SAINT-COLOMBAN (44);;[1.8255189491394663, 50.13950991485836];;FRFR1ERDPY1;HPQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.760868;47.218516;;;; +;;;;;;;;FRV75PPX0820;805260;FOUESNANT-RUE DES SPORTS;;10 Rue du 8 Mai 44650 CORCOUE-SUR-LOGNE (44);;[6.381371271658948, 46.073133287506614];;FRFR1ECKKY1;YRMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.570046;47.572185;;;; +;;;;;;;;FRV75PPX0818;805263;GOUESNACH-ROUTE DE BENODET;;10 Rue de Nantes 44270 SAINT-ETIENNE-DE-MER-MORTE (44);;[52.3406297,4.858677];;FRFR1ERZXE1;ASQY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.864912;47.649611;;;; +;;;;;;;;FRV75PPX0821;805272;GOULIEN-LE BOURG;;Place Foch 44360 SAINT-ETIENNE-DE-MONTLUC (44);;[3.1659997, 50.714811999999];;FRFR1EUVGZ2;BXNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.189167;47.221793;;;; +;;;;;;;;FRV75PPX0901;805281;GUERLESQUIN-HENT TOULL KERZERS;;6506 Rue Amaury d'Acigné 44360 SAINT-ETIENNE-DE-MONTLUC (44);;[4.069912308187833, 44.146517682124674];;FRFR1ERXXP1;BUSH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.018614;47.18119;;;; +;;;;;;;;FRV75PPX1006;767313;CROZON-RUE DE LATLANTIQUE;;65 Boulevard de l'Océan 44250 SAINT-BREVIN-LES-PINS (44);;[4.3328996, 43.8136602];;FRFR1EJPGG2;CENR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.488031;47.280513;;;; +;;;;;;;;FRV75PPX1007;877215;COMBRIT-PLACE GRAFENHAUSER;;Le Clos du Four 44530 SAINT-GILDAS-DES-BOIS (44);;[4.0814445,44.1386705];;FRFR1EJRRM1;BZRN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.983533;47.341862;;;; +;;;;;;;;FRV75PPX1003;709409;COMMANA-PLACE DU CHAMP DE FOIRE;;1 Rue de l'Europe 44150 SAINT-HERBLON (44);;[4.536132,45.117992];;FRFR1EJPGG1;BTTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.72744;47.182113;;;; +;;;;;;;;FRV75PPX1005;674567;CONCARNEAU-QUAI DAIGUILLON;;1 Rue de Versailles 44150 SAINT-HERBLON (44);;[4.37,46.67];;FRFR1EJMHP1;BBPB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.594438;47.215222;;;; +;;;;;;;;FRV75PPX1008;613465;CONCARNEAU-RUE JULES FERRY;;Place oi Guitteny 44680 SAINT-HILAIRE-DE-CHALEONS (44);;[4.87,43.96];;FRFR1EJRRM2;AWDW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.443889;47.614389;;;; +;;;;;;;;FRV75PPX1009;746976;CONCARNEAU-RUE DE LA FORGE;;10 Espace Klettgau 44190 SAINT-HILAIRE-DE-CLISSON (44);;[1.8366466, 50.840108099999];;FRFR1EJMHP2;BMKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.040129;47.405856;;;; +;;;;;;;;FRV75PPX1010;590822;CONCARNEAU-RUE LERAY;;34 Rue Albert Chassagne 44250 SAINT-BREVIN-LES-PINS (44);;[1.662474, 50.885777];;FRFR1EGEYQ2;BFPN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.047154;47.291658;;;; +;;;;;;;;FRV75PPX0911;746979;CONCARNEAU-RUE CLAUDE DEBUSSY;;Place Milenia 44860 SAINT-AIGNAN-GRANDLIEU (44);;[-3.52,48.70];;FRFR1EGEYQ1;ZBGP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.116001;47.198261;;;; +;;;;;;;;FRV75PPX0912;679184;CORAY-RUE DE PORS CLOS;;Rue de la Bosselle 44140 REMOUILLE (44);;[3.132099, 50.6463447];;FRFR1EVTVM1;ZBUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.231524;47.553524;;;; +;;;;;;;;FRV75PPX0910;851190;CROZON-ROUTE DE CHATEAULIN;;28 Rue de l'heveau 44440 RIAILLE (44);;[2.7997062, 50.2659007];;FRFR1EQFMZ2;ADTS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.110091;47.561347;;;; +;;;;;;;;FRV75PPX1001;746973;CROZON-RUE DE LA MARNE;;4 Route de Sainte-Pazanne 44640 ROUANS (44);;[2.6550211, 50.5201558];;FRFR1EGFEV1;ADRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.600949;47.61527;;;; +;;;;;;;;FRV75PPX1002;709406;CROZON-QUAI DU FRET;;5 Rue du Vieux Rouge 44660 ROUGE (44);;[0.6969556979136504, 45.132872088016235];;FRFR1ECKKY2;ZCSE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.706472;47.559367;;;; +;;;;;;;;FRV75PPX1402;697538;PLOUMOGUER-RUE DU STADE;;7 rue de l'heveau 44390 SAFFRE (44);;[4.85759376,46.824880];;FRFR1ERZXE2;ZLTF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.921126;47.418908;;;; +;;;;;;;;FRV75PPX1403;697541;QUIMPER-ALEZ AN EOSTIGED;;3 Chemin du Fau 44110 SAINT-AUBIN-DES-CHATEAUX (44);;[-0.99,45.63];;FRFR1EDQKJ2;ALZR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.021022;47.231738;;;; +;;;;;;;;FRV75PPX1321;626654;QUIMPERLE-BOULEVARD DE LA GARE;;5 Impasse du Parvis 44117 SAINT-ANDRE-DES-EAUX (44);;[4.90,45.68];;FRFR1ERXWX2;AHYV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.868405;47.189978;;;; +;;;;;;;;FRV75PPX1401;753657;QUIMPERLE-PLACE DU BARZAZ BREIZH;;27 Avenue Raymond Poincaré 44250 SAINT-BREVIN-LES-PINS (44);;[2.13,48.86];;FRFR1ENQBV2;HQHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.232564;47.191899;;;; +;;;;;;;;FRV75PPX1404;701234;QUIMPERLE-PLACE WINSTON CHURCHILL;;1 Place de l'lise 44160 SAINTE-ANNE-SUR-BRIVET (44);;[7.61,48.66];;FRFR1ENQCQ2;AKAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.038546;47.193495;;;; +;;;;;;;;FRV75PPX1405;790125;REDENE-PLACE DE LEGLISE;;26 Rue des Marais 44117 SAINT-ANDRE-DES-EAUX (44);;[2.02,48.53];;FRFR1EMZCA1;AANK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.562288;47.339675;;;; +;;;;;;;;FRV75PPX1406;746982;RIEC SUR BELON-RUE DE LA PAIX;;60 Avenue Charles Cros;;[-0.960,45.955];;FRFR1EMYZJ1;AARS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.393216;47.671838;;;; +;;;;;;;;FRV75PPX1316;790128;ROSCOFF-RUE CELESTIN SEITE;;17 Boulevard Carnot 032;;[0.58,44.16];;FRFR1ERXWX1;ABUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.435457;47.672;;;; +;;;;;;;;FRV75PPX1317;674570;ROSCOFF-QUAI DAUXERRE;;11 avenue de l'Europe schil;;[1.47,49.06];;FRFR1ETGMP1;VJVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.119188;47.506721;;;; +;;;;;;;;FRV75PPX1315;740952;ROSPORDEN-RUE LOUIS PASTEUR;;17, RUE DU BAILLY;;[1.93,45.95];;FRFR1EDQKJ1;SFMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.301931;47.52875;;;; +;;;;;;;;FRV75PPX1318;779304;SAINT EVARZEC-RUE DE LA LIBERTE;;ZI Rue de la Plaine 02400 CHATEAU-THIERRY;;[-1.00,45.63];;FRFR1EUVGZ1;ABFN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.27582;47.480374;;;; +;;;;;;;;FRV75PPX1319;674573;SAINT GOAZEC-MENEZ ROUZ;;20 rue jacques monthulé;;[4.95,44.96];;FRFR1ETGMP2;PJUU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.273548;47.318639;;;; +;;;;;;;;FRV75PPX1320;674639;SAINT MARTIN DES CHAMPS-RUE DE LA MAIRIE;;Domaine du Reynou, 87110 Le Vigen;;[2.25,48.70];;FRFR1ETLMW1;PJUU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.204504;47.474517;;;; +;;;;;;;;FRV75PPX1407;626567;SAINT PABU-RUE DU BOURG;;14 Allée des Acacias 33700 Mérignac;;[0.68,48.23];;FRFR1ETLMW2;VJVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.240833;47.479224;;;; +;;;;;;;;FRV75PPX1501;683228;QUIMPER-MPT DE KERFEUNTEUN;;244 Rue de la Lys 59250 Halluin;;[7.79,48.68];;FRFR1EURNZ2;ZTZF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.244611;47.491494;;;; +;;;;;;;;FRV75PPX1502;683231;SAINT POL DE LEON-PLACE DU MARCHE;;14 rue du petit albi 95;;[5.51344, 43.28654];;FRFR1EURNZ1;AVBH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.508696;47.487154;;;; +;;;;;;;;FRV75PPX1413;674339;QUEMENEVEN-ROUTE DE KERAMPAPE;;89 RUE HENRI BARBUSSE;;[4.6353802, 49.644069];;FRFR1ERXXP2;AVBH3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.528013;47.404556;;;; +;;;;;;;;FRV75PPX1414;590672;QUERRIEN-PLACE DE LEGLISE;;1 route d’Allauch 13011 Marseille;;[5.690897555220402, 45.52876535004003];;FRFR1EQFMZ1;AVNY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.543489;47.474284;;;; +;;;;;;;;FRV75PPX1503;683225;QUIMPER-N165;;420 Avenue Rhin et Danube 06140;;[-0.4017290030274534, 49.18274284714659];;FRFR1ERBDL2;AVBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.408917;47.470084;;;; +;;;;;;;;FRV75PPX1504;593321;QUIMPER-BOULEVARD DE BRETAGNE;;880 ROUTE DES BLAQUIERES;;[-0.4451526, 44.8254186];;FRFR1EHKSH2;AVEW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.551959;47.479479;;;; +;;;;;;;;FRV75PPX1408;593324;QUIMPER-BOULEVARD DU FINISTERE;;3 AVENUE DE OUESSANT 91;;[4.559326, 44.975229];;FRFR1ERBDL1;ZRGR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.55714;47.478727;;;; +;;;;;;;;FRV75PPX1410;683234;QUIMPER-ROUTE DE TY NAY;;80 Av. Gabriel Péri 95870 BEZONS;;[3.707232, 43.929095];;FRFR1EYNBV1;ZFEC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.552912;47.462925;;;; +;;;;;;;;FRV75PPX1411;593318;QUIMPER-RUE ROUGET DE LISLE;;211 Av. Jules Brame 59100 Roubaix;;[4.07183, 45.43232];;FRFR1EGZMW1;ZJXC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.524759;47.469423;;;; +;;;;;;;;FRV75PPX1412;674633;QUIMPER-PLACE DE LA TOURBIE;;3 avenue irene joliot curie, 77700 Bailly-romainvilliers;;[-1.593537, 46.734241];;FRFR1EGZGM2;YMDY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.484532;47.469068;;;; +;;;;;;;;FRV75PPX1215;789690;QUIMPER-PLACE DE LA RESISTANCE ET DU GENERAL DE GAULLE;;1605, Route des Vendrans;;[-1.7480292628930094, 47.4716214490022];;FRFR1EHKQP1;FPNP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.562786;47.46096235;;;; +;;;;;;;;FRV75PPX1217;771717;QUIMPER-AVENUE DU BRADEN;;ZAC de la Grande TERRE 55000 bar;;[4.09085, 45.60781];;FRFR1EGZMW2;XRXZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.546506;47.473302;;;; +;;;;;;;;FRV75PPX1216;789687;QUIMPER-MPT D’ERGUE ARMEL;;102 boulevard Jean Alemane;;[-0.12869, 46.22774];;FRFR1EHAQM1;XRJL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.560626;47.474853;;;; +;;;;;;;;FRV75PPX1214;544793;POULLAN SUR MER-PLACE KREIZ KER;;8 ALLEE DES CHEVREUILS 69380 LISSIEU;;[1.59980393711, 42.84540556623];;FRFR1EHAQM2;FWCT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.564293;47.457271;;;; +;;;;;;;;FRV75PPX1218;837012;SAINT-THURIEN - RUE DE QUERRIEN;;61 RUE HENRI DEPAGNEUX 69400 LIMAS;;[4.442376, 44.911404];;FRFR1EREKU2;FGDK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.553069;47.171404;;;; +;;;;;;;;FRV75PPX1301;810081;SIBIRIL - RUE DU PORT;;2 Rue de Finlande, 69124 Colombier-Saugnieu;;[7.315905, 48.338735];;FRFR1EEPEM2;FGCS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.55655;47.477254;;;; +;;;;;;;;FRV75PPX1314;377772;SANTEC - PLACE DE MESCREN 1;;305 RUE GABRIEL VOISIN 69400 VILLEFRANCHE SUR SAONE;;[0.2623206, 46.4304455];;FRFR1EEPEM1;FNQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.539925;47.49153;;;; +;;;;;;;;FRV75PPX1210;377766;TREGLONOU - RUE DU PONT;;123 Route d'Espalion, Onet-le-Château 12850 France;;[4.812625, 45.649787];;FRFR1EREKU1;FMZA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.53269521;47.45235;;;; +;;;;;;;;FRV75PPX1211;697535;SCRIGNAC - PLACE DE LA MAIRIE;;60 Avenue Jean Mermoz, Lyon 69008 France;;[4.430385, 46.480609];;FRFR1ERDPY2;EAHG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.566538;47.466106;;;; +;;;;;;;;FRV75PPX1208;612874;TREMEVEN - RUE DU FAOUET;;585 Avenue du Parc des Expositions, La Teste-de-Buch 33260 France;;[3.1165963, 50.6565678];;FRFR1EGZGM1;JDTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.555071;47.450911;;;; +;;;;;;;;FRV75PPX1212;593345;ERGUE-GABERIC - ROUILLEN;;6 Rue Django Reinhardt, Saint-Ouen-l'Aumône 95310 France;;[-0.6595715141555814, 45.749626602859486];;FRFR1EHKTM2;EDBF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.395715;47.46024;;;; +;;;;;;;;FRV75PPX1213;674615;LA ROCHE MAURICE - RUE DU MORBIC;;1180 Rue de la Rivière, Cahors 46000 France;;[7.05901, 49.099573];;FRFR1EHBZK1;EAJU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.954205;47.475807;;;; +;;;;;;;;FRV75PPX1302;377811;LANDUNVEZ - BOULEVARD DE L OCEAN PORT D ARGENTON;;Avenue de la Méditerranée, Vendres 34350 France;;[2.3617357269911046,43.20905731878834];;FRFR1EUEMA2;DKBE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.549208;47.493526;;;; +;;;;;;;;FRV75PPX1310;674606;DOUARNENEZ - STADE AQUATIQUE;;Mas de Coulet, Brissac 34190 France;;[1.45,43.61];;FRFR1ETVMN1;XTFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.560842;47.474028;;;; +;;;;;;;;FRV75PPX1311;850842;ROSPORDEN - PEM GARE;;1 Route des Bruyères, Longuenesse 62219 France;;[9.20,42.45];;FRFR1EUEMA1;DWVP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.525074;47.4801;;;; +;;;;;;;;FRV75PPX1309;377745;SDE 29 - CLEDEN CAP SIZUN;;30 Place du Galion, Rivières 81600 France;;[3.0973151, 50.5443626];;FRFR1EBUDX1;FBJG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.557721;47.316361;;;; +;;;;;;;;FRV75PPX1312;811083;TREGUNC - RUE YOUENN GWERNIG;;14 Rue Alphonse Daudet, Draveil 91210 France;;[2.494, 48.9381];;FRFR1EVTVM2;XUBA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.555268;47.209947;;;; +;;;;;;;;FRV75PPX1313;811086;SAINT POL DE LEON-RUE PEN AR PONT;;2 Avenue de Provence, Brest 29200 France;;[2.86,43.96];;FRFR1EVTZP1;XTFG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.558719;47.202836;;;; +;;;;;;;;FRV75PPX1308;593339;SAINT RENAN-RUE LEON CHEMINANT;;1682 Rue de la Valsière, Grabels 34790 France;;[4.61,46.34];;FRFR1EVTZP2;YXAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.565617;47.251778;;;; +;;;;;;;;FRV75PPX1305;683240;SAINT SEGAL-RUE DE PONT DE BUIS;;88 Rue du Point du Jour, Saint-Denis-lès-Bourg 01000 France;;[5.149723,44.2371439];;FRFR1EGFEV2;YPPX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.548205;47.50232;;;; +;;;;;;;;FRV75PPX1303;597192;SAINT THEGONNEC-AVENUE DE PARK AN ILIZ;;100 Rue des Granges, La Tour-de-Salvagny 69890 France;;[2.63,48.89];;FRFR1ETVAN2;AHFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.5919;47.140204;;;; +;;;;;;;;FRV75PPX1304;593330;SAINT THOIS-RUE DU STADE;;489 Rue Eugène Joly, Fréjus 83600 France;;[2.63,48.98];;FRFR1EBUDX2;AHBR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.602694;47.424319;;;; +;;;;;;;;FRV75PPX1306;674621;TREGUNC - PLACE GEORGES BEAUJEAN;;Rue du Commerce, Cappelle-la-Grande 59180 France;;[5.350366, 45.982475];;FRFR1EHKQP2;YURR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.982642;47.409902;;;; +;;;;;;;;FRV75PPX1307;683237;SAINT-YVI - PLACE DE LA MAIRIE;;Impasse des Termes, Saint-Denis-lès-Martel 46600 France;;[-0.3751, 49.1485];;FRFR1EKDZF2;AFDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.992462;47.303128;;;; +;;;;;;;;FRV75P901607;674618;TELGRUC-SUR-MER - RUE DES PINS;;Avenue des Mûriers, Portiragnes 34420 France;;[-0.929144, 48.29733];;FRFR1EYNBV2;ADZK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.899778;47.564662;;;; +;;;;;;;;FRV75PPX0102;377778;SCAER - PLACE VICTOR HUGO;;17 Avenue Jean Moulin, Sévérac d'Aveyron 12150 France;;[-0.397318, 48.155596];;FRFR1ETVAN1;YYKH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.799876;47.357032;;;; +;;;;;;;;FRV75PPX0103;377796;TREFFIAGAT - AVENUE DU PORT;;8 Rond-Point Vincent Badie, Béziers 34500 France;;[-0.402955, 48.155813];;FRFR1EGFEZ1;XZYS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.936225;47.438176;;;; +;;;;;;;;FRV75PPX0104;593336;SIZUN - D764;;6-10 Place de Locronan, Quimper 29000 France;;[-0.93954, 48.296963];;FRFR1EKDZF1;PFCC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.609137;47.440085;;;; +;;;;;;;;FRV75PPX0105;612871;TREGOUREZ - RUE DE LA MAIRIE;;71 Avenue du Maréchal Juin, Frontignan 34110 France;;[-0.947992, 47.848493];;FRFR1ETVMN2;EXVE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.620562;47.505249;;;; +;;;;;;;;FRV75PPX0101;809718;PLONEVEZ PORZAY-ALLEE DU STADE;;Route des Mortins, Saumur 49400 France;;[-0.972928, 48.474519];;FRFR1EGFEZ2;EWMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.065252;47.449193;;;; +;;;;;;;;FRV75PHBSAGLOB;782655;PLOUARZEL-RUE STREAT LANNOC;;3863 Quai de New York, Le Havre 76600 France;;[-0.912477, 47.94467];;FRFR1EQWNZ2;EZUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.504181;47.468648;;;; +;;;;;;;;FRV75PHBSAEPDA;809715;PLOUDALMEZEAU-RUE AUGUSTE CAROFF;;81 Rue Robert Doisneau, Brest 29200 France;;[-0.717961, 47.834389];;FRFR1ENUTV1;EYTL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.447423;47.211582;;;; +;;;;;;;;FRV75PPX0513;809721;PLOUDALMEZEAU-RUE DE MON REPOS;;Rue René Dumont, Aixe-sur-Vienne 87700 France;;[-0.886473, 48.097822];;FRFR1EPCRE1;XULG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.214121;47.51396;;;; +;;;;;;;;FRV75PPX0206;811455;PLOUDANIEL-AIRE DE COVOITURAGE CD 29;;Moulin Neuf, Malansac 56220 France;;[-0.707706, 47.826223];;FRFR1EUMLE1;AAJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.237386;47.506252;;;; +;;;;;;;;FRV75PPX0205;678953;PLOUDANIEL-ALLEE DES TILLEULS;;Chemin de Rouairas, Nages 81320 France;;[-0.813204, 48.411734];;FRFR1EUQNP1;AHSB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.588673;47.499568;;;; +;;;;;;;;FRV75PPX0207;836985;PLOUEGAT GUERAND-PLACE DU BOURG;;1 Chemin du Portou, Pomérols 34810 France;;[-0.522439, 47.873144];;FRFR1EUMWH1;YFTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.56552;47.540358;;;; +;;;;;;;;FRV75PPX0203;613330;PLOUEGAT MOYSAN-RUN AR ROUE;;15 Quai du Docteur et Madame Calabet, Agen 47000 France;;[-0.336777, 48.417355];;FRFR1EVRWE1;FDUU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.559266;47.542556;;;; +;;;;;;;;FRV75PPX0106;836988;POULDERGAT-VENELLE DE DINAOU;;65 Rue de Neuve Église, Bailleul 59270 France;;[-0.498669, 48.254747];;FRFR1EUTLN1;LPAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.464037;47.4761;;;; +;;;;;;;;FRV75PPX0201;836994;PLOUENAN-BALIZAN;;Boulevard du Président Kennedy, Tarbes 65000 France;;[-1.03395, 48.230821];;FRFR1EUTLN2;SFXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.61754;47.474972;;;; +;;;;;;;;FRV75PPX0202;613333;PLOUESCAT-RUE CHARLES LE GOFFIC;;Rue Antoine Parmentier, Saint-Quentin 02100 France;;[-0.497452, 48.437096];;FRFR1EYMYX1;AERH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.590732;47.615778;;;; +;;;;;;;;FRV75P902005;782652;PLOUEZOC H-PLACE DU BOURG;;7 Le Garel, Poussan 34560 France;;[-0.78852, 48.09876];;FRFR1EYMYX2;JRZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.589951;47.265602;;;; +;;;;;;;;FRV75P901706;740955;PLOUGASNOU-RUE DES MARTYRS;;19 Chemin des Mariaudis, Forcalquier 04300 France;;[-0.416529, 47.934222];;FRFR1EUKRM2;JRZG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.101972;47.270356;;;; +;;;;;;;;FRV75P901704;707684;PLOUGONVELIN-PLACE GENERAL DE GAULLE;;Le Marais, Theix-Noyalo 56450 France;;[-0.868946, 48.020721];;FRFR1EUMCQ2;YQAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.106122;47.520083;;;; +;;;;;;;;FRV75P901705;588491;PLONEVEZ DU FAOU-PLACE DE LA RESISTANCE;;24 Chemin des Marais du Cens, Orvault 44700 France;;[-0.6299366, 48.4030159];;FRFR1EYKFE2;YQAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.640257;47.501832;;;; +;;;;;;;;FRV75P901703;674789;PLOUGONVEN-RUE DE LA MONTAGNE;;Les Ribes, Chamalières-sur-Loire 43800 France;;[-0.643338, 48.085018];;FRFR1EYKFE1;QUZV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.624794;47.257962;;;; +;;;;;;;;FRV75P901802;674792;PLABENNEC-AVENUE DE WALTENHOFEN;;Les Chaberts, La Chapelle-en-Vercors 26420 France;;[-0.684591, 47.829669];;FRFR1EYKAY2;QHAG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.978444;47.263713;;;; +;;;;;;;;FRV75P901803;701342;PLEUVEN-LE BOURG ROUTE DE QUIMPER;;D113, Tournans 25680 France;;[-0.689528, 47.823095];;FRFR1EULAW1;QUZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.24442;47.26641082;;;; +;;;;;;;;FRV75PPX0405;585578;PLEYBEN-PLACE CHARLES DE GAULLE;;7 Rue Simone Signoret, Brionne 27800 France;;[-0.899746, 48.182806];;FRFR1EULAW2;QHAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.02531;47.249435;;;; +;;;;;;;;FRV75P901804;767307;PLEYBER CHRIST-RUE JOLIOT CURIE;;189 Avenue de Fontainebleau, Saint-Fargeau-Ponthierry 77310 France;;[-0.3661645, 48.2511046];;FRFR1EUMCQ1;RRMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.470786;47.255545;;;; +;;;;;;;;FRV75P901609;767310;PLOBANNALEC LESCONIL-RUE DE PONT L ABBE;;25 Rue de Vannes, Sainte-Anne-d'Auray 56400 France;;[-0.740993, 48.054082];;FRFR1EUQNP2;RRMR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.383166;47.383595;;;; +;;;;;;;;FRV75P901608;799176;PLOGASTEL SAINT GERMAIN-RUE DE BRISCOUL;;38 Avenue de New York, Paris 75116 France;;[-1.048258, 47.895574];;FRFR1EUTAY1;FDUU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.081374;47.686106;;;; +;;;;;;;;FRV75P901701;881103;PLOGONNEC-RUE DES PEUPLIERS;;69 Rue du Breuil, Étupes 25460 France;;[-0.581051, 48.020476];;FRFR1EUTAY2;FHKT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.074092;47.69788;;;; +;;;;;;;;FRV75P901702;881100;PLOMELIN-ALLEE DU 19 MARS 1962;;2 Rue du Pont Romain, Saint-Nectaire 63710 France;;[-0.69995, 48.074663];;FRFR1EUSZY2;LNUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.09440862;47.686143;;;; +;;;;;;;;FRV75P902002;766611;PLOMEUR-PLACE DES ANCIENS COMBATTANTS;;27 Rue Elsa Triolet, Savigny-le-Temple 77176 France;;[-0.393857, 47.87564];;FRFR1EUMWH2;LNUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.090757;47.05595;;;; +;;;;;;;;FRV75P901906;613327;PLOMODIERN-RUE DE LA PLAGE;;Avenue Maurice Berteaux, Dunkerque 59430 France;;[-0.755338, 48.090244];;FRFR1EUPVK1;LPAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.071973;47.400515;;;; +;;;;;;;;FRV75P902001;590825;PLONEIS-CHEMIN DE KERVEUR;;71 Rue Ambroise Paré, Blendecques 62575 France;;[-1.058704, 48.437891];;FRFR1EUSZY1;FQRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.655311;47.5761667;;;; +;;;;;;;;FRV75P901905;753660;PLONEOUR LANVERN-RUE RENE LE BERRE;;95 Chemin d'Agde au Mont Saint-Loup, Agde 34300 France;;[-0.439627, 47.791279];;FRFR1EVRWE2;YRMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.866408;47.303931;;;; +;;;;;;;;FRV75P902003;735702;PLOUVORN-RUE CHARLES DE GAULLE;;45 Place Ernest Granier, Montpellier 34000 France;;[-1.055715, 47.793557];;FRFR1EVRAT1;FQYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.869483;47.483684;;;; +;;;;;;;;FRV75P902004;613273;PLOUZEVEDE-PLACE DU CHAMP DE FOIRE;;Rue du Cap de Bonne Espérance, Coquelles 62231 France;;[-0.198609, 48.460889];;FRFR1EUUJQ1;FPYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.872631;47.31498;;;; +;;;;;;;;FRV75P901805;613276;PLOZEVET-PLACE DU 8 MAI 1945;;12 Rue de Comboire, Échirolles 38130 France;;[-0.556975, 48.1350588];;FRFR1EUUJQ2;FPYY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.938152;47.287826;;;; +;;;;;;;;FRV75P901902;613279;PLUGUFFAN-RUE DE CORNOUAILLE;;31 Rue du Chemin de Fer, Lampertheim 67450 France;;[-0.611277, 48.297358];;FRFR1EUVBQ2;FQRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.514327;47.460763;;;; +;;;;;;;;FRV75P901901;678950;PONT AVEN-RUE DES ABBES TANGUY;;22 Cours Pierre Lassalle, Saint-Vivien-de-Médoc 33590 France;;[-0.989022, 48.385509];;FRFR1EVRAT2;FQRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.35941666;47.092248;;;; +;;;;;;;;FRV75P901903;811089;PONT CROIX-RUE DU DOCTEUR NEIS;;8 Avenue Aristide Briand, Fontaine 38600 France;;[-0.551923, 47.95096];;FRFR1EUVBQ1;FQRG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.627508;47.124825;;;; +;;;;;;;;FRV75P901904;746985;PLOUGOURVEST-D35;;Rue de Saint-Clément, Saint-Denis-lès-Sens 89100 France;;[-0.622363, 48.300891];;FRFR1EUSGX2;FQAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.678323;47.123098;;;; +;;;;;;;;FRV75PPX0208;613468;PONT CROIX-RUE CONSTANTINE;;5 Rue de la Pompadour, Boissy-Saint-Léger 94470 France;;[-0.8610071, 48.34244771];;FRFR1EUSGX1;FQYF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.805811;47.122111;;;; +;;;;;;;;FRV75PPX0505;746988;PONT L ABBE-PLACE DE LA REPUBLIQUE;;32 Avenue du Général Leclerc, Bar-sur-Aube 10200 France;;[-0.908136, 48.137358];;FRFR1EVRMH1;DFUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.188577;47.431488;;;; +;;;;;;;;FRV75PPX0506;613282;PONT L ABBE-IMPASSE GEORGES MONOT;;50 Avenue de Garlande, Bagneux 92220 France;;[-0.0988, 48.399713];;FRFR1EVRMH2;DFZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.710591;47.410707;;;; +;;;;;;;;FRV75PPX0507;613315;PONT L ABBE-RUE DE LA GARE;;460 Chemin de la Croix de Noves, Avignon 84000 France;;[-0.351483, 48.098848];;FRFR1EYKAY1;DFZL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.911004;47.370575;;;; +;;;;;;;;FRV75PPX0504;613306;PONT L ABBE-D785;;Rue du Pont Colbert, Jouy-en-Josas 78350 France;;[-0.40551, 47.982498];;FRFR1EUMLE2;DFUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.994913;47.401183;;;; +;;;;;;;;FRV75PPX0509;613309;PORSPODER-RUE DE LEUROPE;;29 Route du Mont-Agel, La Turbie 06320 France;;[-0.475751, 48.039426];;FRFR1EZVFT1;FQAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.994046;47.239712;;;; +;;;;;;;;FRV75PPX0510;613312;PLOUVIEN-RUE LAENNEC;;3865 Quai de New York, Le Havre 76600 France;;[-0.280608, 48.339712];;FRFR1EUKRM1;FHKT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.095972;47.222944;;;; +;;;;;;;;FRV75PPX0508;836976;PLOUIGNEAU-RUE DU 9 AOUT;;43 Rue Barthélémy Crusem, Saint-Avold 57500 France;;[-0.677286, 47.922081];;FRFR1EVYWF2;QZEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.703429;47.331369;;;; +;;;;;;;;FRV75PPX0407;613318;PLOUGUERNEAU-RUE BEL AIR;;36 Avenue du 8 Mai 1945, Sainte-Maxime 83120 France;;[-0.7614552, 48.0744727];;FRFR1EVYWF1;YFTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.32078;47.13925;;;; +;;;;;;;;FRV75PPX0408;613285;PLOUGUERNEAU-ROUTE DE KERVENNI;;41 Rue Léon Giraudeau, Bouffémont 95570 France;;[-0.7857756, 48.0774643];;FRFR1EDTPP2;UZVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.497006;47.60009;;;; +;;;;;;;;FRV75PPX0409;613321;PLOUGUIN-RUE PAOTR TREOURE;;215 Chemin du Jonquet, La Ciotat 13600 France;;[-0.790317, 48.05511];;FRFR1EDTPP1;ARKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.458562;47.393536;;;; +;;;;;;;;FRV75PPX0406;613324;PLOUHINEC-PLACE JEAN MOULIN;;28 Rue de la Chesnaie, Gasville-Oisème 28300 France;;[-0.612687, 48.300496];;FRFR1EDNBM1;ARKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.054743;47.144991;;;; +;;;;;;;;FRV75PPX0502;836982;PLOUIDER-PLACE GENERAL DE GAULLE;;485 Avenue Guillaume Apollinaire, Saint-Victoret 13730 France;;[-0.7716565, 48.0655286];;FRFR1EEBFT2;LVQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.066444;47.15339;;;; +;;;;;;;;FRV75PPX0503;836973;PLOUNEVENTER-PLACE DE LA LIBERTE;;26 Rue de la Biberonne, Claye-Souilly 77410 France;;[-0.7710749, 48.077605];;FRFR1EEBFT1;LVQD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.476858;47.462874;;;; +;;;;;;;;FRV75PPX0501;613303;PLOUNEVEZ LOCHRIST-PLACE DE LA MAIRIE;;13 Chemin de la Maladière, Beaune 21200 France;;[-0.7830825, 48.0800885];;FRFR1EDNBM2;ADDH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.208389;47.559531;;;; +;;;;;;;;FRV75PPX0511;816522;PLOURIN-PLACE AN TI KEAR;;Quai du Canal, Baume-les-Dames 25110 France;;[-0.7898318, 48.0820463];;FRFR1EUXZP1;ADMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.83459;47.325855;;;; +;;;;;;;;FRV75PPX0304;613288;PLOURIN LES MORLAIX-RUE GUILLAUME LEZACH;;138 Avenue du Général Leclerc, Bordeaux 33200 France;;[-0.9359299, 48.060102];;FRFR1EUXZP2;GBAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.053695;47.021955;;;; +;;;;;;;;FRV75PPX0303;613291;CARQUEFOU;;183 Rue du 14 Juillet, Margny-lès-Compiègne 60280 France;;[-0.663407, 48.194942];;FRFR1ERKCD1;ACMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.535805;47.313;;;; +;;;;;;;;FRV75PPX0306;613294;Parking L'Aérodrome de la Baie de Somme;;267 Route de la Roquette, Mougins 06250 France;;[-0.718523, 48.121773];;FRFR1ERKCD2;ABXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.057201;47.56992087;;;; +;;;;;;;;FRV75PPX0401;836970;Hotel Mont Blanc - Saint Pierre en Faucigny;;4 Impasse Bouju, Trizay 17250 France;;[-0.747181, 47.871029];;FRFR1EUXLZ2;SFMA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.891717;47.364289;;;; +;;;;;;;;FRV75PPX0209;678947;VOLKWAGEN;;Rue du Château des Rentiers, Paris 75013 France;;[5.804942, 43.837642];;FRFR1ECDZN2;YFTV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.423855;47.577466;;;; +;;;;;;;;FRV75PPX0301;613297;SCI 35 RUE DE ROUBAIX;;7 Rue Georges Nègrevergne, Mérignac 33700 France;;[-1.51225, 48.89915];;FRFR1EQWXK2;SFMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.055683;47.005484;;;; +;;;;;;;;FRV75PPX0302;613300;SKODA;;Chemin de la Seignière, Trets 13530 France;;[-0.876677, 47.063467];;FRFR1EVHTX2;VJVK3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.703431;47.265862;;;; +;;;;;;;;FRV75PPX0512;741660;SANYA MARKET;;Rue de Blaringhem, Pernes 62550 France;;[-0.83442, 47.0787];;FRFR1ERRFD1;PJUU3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.322585;47.615758;;;; +;;;;;;;;FRV75PPX0403;805335;Le relais du monarque;;14 Avenue du 11 Novembre, Saint-Péray 07130 France;;[-0.879119, 47.060109];;FRFR1EXQEX1;AAUK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.41920244;47.140958;;;; +;;;;;;;;FRV75PPX0402;747312;Rencontre-handi, Bureau;;101 Rue Jean Cocteau, Saint-Quentin 02100 France;;[-0.897106, 47.048993];;FRFR1ERUAS1;WHSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.524881;47.037548;;;; +;;;;;;;;FRV75PPX0404;544751;Chateau de Cassagne;;Allée du Château, Arsac 33460 France;;[-0.87928, 47.058334];;FRFR1ERUSX1;YLKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.55436;47.456582;;;; +;;;;;;;;FRV75P901606;706298;LA FERME DU GRAND AIR;;60 Boulevard Waldeck Rousseau, Saint-Chamond 42400 France;;[-0.870702, 47.065228];;FRFR1EQQGW1;YSQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.850349;47.441977;;;; +;;;;;;;;FRV75PPX0708;706295;BIG MAT;;17 Rue de la Croix Biche, Noisy-le-Grand 93160 France;;[-0.885521, 47.051325];;FRFR1ERUKN1;KYMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.505148;47.4474;;;; +;;;;;;;;FRV75PPX0712;706301;MANOIR DE L ISLE;;4 Rue Pierre Bachelet, Marly 59770 France;;[-0.8777, 47.05618];;FRFR1ERWVZ2;QZEW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.468069;47.452278;;;; +;;;;;;;;FRV75PPX0711;706304;SC FRANETTI;;19 Rue de Vichy, Vendat 03110 France;;[-0.897598, 47.0604];;FRFR1ERUAS2;FLFD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.1648;47.12269847;;;; +;;;;;;;;FRV75PPX0710;781623;DACIA BEAURAINS;;Avenue Jean-Paul Marat, Martigues 13500 France;;[-0.98902199, 47.711017];;FRFR1ERWVZ1;FLFD3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.114795;47.401709;;;; +;;;;;;;;FRV75PPX0709;577511;SCI CD;;Allée des Châtaigniers, Saint-Aubin-de-Médoc 33160 France;;[-0.350736, 47.471672];;FRFR1ERUSX2;FLFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.509598;47.096814;;;; +;;;;;;;;FRV75PPX0714;671597;Parking NOVABIO Sanilhac;;146 Avenue Michel Jourdan, Cannes 06150 France;;[-0.152529, 47.308056];;FRFR1EVHQM2;KYMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.482769;47.390083;;;; +;;;;;;;;FRV75PPX0716;690497;FRAGNES-CHALON;;300 Rue des Petits Moulins, Oye-Plage 62215 France;;[-0.636861, 47.128778];;FRFR1ERUKN2;KYMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.4999;47.529708;;;; +;;;;;;;;FRV75PPX0715;511331;2RS;;3ter Avenue Sainte-Barbe, Giraumont 54780 France;;[-1.267346, 47.337381];;FRFR1EQQGW2;KYMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.468639;47.541477;;;; +;;;;;;;;FRV75PPX0713;747309;Parking SMI;;1 Rue Pataut, Vendeuvre-sur-Barse 10140 France;;[-0.728161, 47.209754];;FRFR1ERRFD2;YSQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7893902;47.130526;;;; +;;;;;;;;FRV75PPX0704;880251;Absolut Bougival;;Route Départementale 943, Aire-sur-la-Lys 62120 France;;[-1.031529, 47.569042];;FRFR1EXSSV1;WXVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.270014;47.745053;;;; +;;;;;;;;FRV75PPX0703;690500;SUPER U TRUCHTERSHEIM;;6 Rue de la Redoute, Guyancourt 78280 France;;[-0.359873, 47.57017];;FRFR1EVHTX1;DXLX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.125468;47.699917;;;; +;;;;;;;;FRV75PPX0702;413753;SAP;;Route des Nations, Boissy-la-Rivière 91690 France;;[-0.568992, 47.534362];;FRFR1ERMBJ2;DXLX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.862944;47.465705;;;; +;;;;;;;;FRV75PPX0701;706307;Le Temps Des Cerises;;1 Avenue Charcot, Lamalou-les-Bains 34240 France;;[-0.760868, 47.348772];;FRFR1EUPVK2;WXVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.610083;47.356914;;;; +;;;;;;;;FRV75PPX0705;706310;Parking BSCM;;Omordiko Karrika, Sare 64310 France;;[-0.570046, 47.664759];;FRFR1EWKHE2;JTTP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.615875;47.396864;;;; +;;;;;;;;FRV75PPX0707;789177;CHATEAU DE MEMANAT;;6 Avenue Kattalin Aguirre, Urrugne 64122 France;;[-0.864912, 47.412434];;FRFR1EWYUP1;JTTP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.155132;47.512698;;;; +;;;;;;;;FRV75PPX0706;747315;SARL LES BAINS DE ROYAN;;Rue Docteur Coulet, Le Pradet 83220 France;;[-1.189167, 47.286139];;FRFR1ELMYS2;DUUT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.417993;47.510163;;;; +;;;;;;;;FRV75PPX0809;510419;TRYBA;;Lieu-dit Ventoulou, Thégra 46500 France;;[-1.018614, 47.182679];;FRFR1EYUEH1;EFME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.364194;47.560909;;;; +;;;;;;;;FRV75PPX0812;756801;Villebon sur yvette;;2 Mail Paul Gauguin, Saint-Parres-aux-Tertres 10410 France;;[-0.488031, 47.68098];;FRFR1ELLTM1;YEMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.014452;47.626205;;;; +;;;;;;;;FRV75PPX0811;756459;Jardinerie d'Aveze;;2 Route de Vernon, Bray-et-Lû 95710 France;;[-0.983533, 47.288395];;FRFR1EYLAJ2;FDYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.552589;47.457042;;;; +;;;;;;;;FRV75PPX0810;781629;Parking Ennesser;;1 Route de la Prée, Ars-en-Ré 17590 France;;[-0.72744, 47.218516];;FRFR1EZFTA2;HMVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.528586;47.341154;;;; +;;;;;;;;FRV75PPX0813;805344;BERANGER;;Le Château, Nedde 87120 France;;[-0.594438, 47.572185];;FRFR1ELLTM2;GPJL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.115145;47.017144;;;; +;;;;;;;;FRV75PPX0815;538382;Poix-Terron;;Allée du Clos Fleuri, Draveil 91210 France;;[-0.443889, 47.649611];;FRFR1EVNVB1;KVZV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.117367;47.380672;;;; +;;;;;;;;FRV75PPX0814;880248;HYPER U PONT DE BEAUVOISIN;;La Vignotte, Collonges-la-Rouge 19500 France;;[-1.040129, 47.221793];;FRFR1EZKHW1;DSMQ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.671603;47.375752;;;; +;;;;;;;;FRV75PPX0717;882363;SUPER U CAEN;;20 Rue de la Gare, Richemont 57270 France;;[0.047154, 47.18119];;FRFR1EZJTM2;DSMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.711688;47.522113;;;; +;;;;;;;;FRV75PPX0803;588713;SUPER U FARGUES ST HILAIRE;;Lieu-dit La Roche Tinard, Loire-Authion 49800 France;;[-1.116001, 47.280513];;FRFR1EZCXJ2;ACRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.661137;47.235004;;;; +;;;;;;;;FRV75PPX0802;880245;SUPER U LAMASTRE;;9 Rue de l'Église, Malbuisson 25160 France;;[-0.231524, 47.341862];;FRFR1EVNVB2;ACRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.167665;47.007271;;;; +;;;;;;;;FRV75PPX0801;613612;SUPER U GANGES;;La Bertholière, La Bussière 86310 France;;[-1.110091, 47.182113];;FRFR1EPBFG1;YJAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.061148;47.137219;;;; +;;;;;;;;FRV75PPX0805;577502;SUPER U LA TOURETTE;;Impasse des Libellules, Eygurande 19340 France;;[-0.600949, 47.215222];;FRFR1ELQZP1;YJAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.107774;47.45545;;;; +;;;;;;;;FRV75PPX0807;538379;HYPER U AIZENAY;;Avenue de la Forêt, Anglet 64600 France;;[-0.706472, 47.614389];;FRFR1ELQZP2;DSMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.111191;47.518528;;;; +;;;;;;;;FRV75PPX0808;706277;HYPER U BLAIN;;Rue Jean François Chambrelent, Moliets-et-Maa 40660 France;;[-0.921126, 47.405856];;FRFR1EYLAJ1;YJAZ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.88562;47.704641;;;; +;;;;;;;;FRV75PPX0806;590840;SUPER U SAVIGNEUX;;Rue des Tamaris, Sainte-Marie-de-Ré 17740 France;;[0.021022, 47.291658];;FRFR1ERVJV1;ZYVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.429762;47.525189;;;; +;;;;;;;;FRV75PPX0604;781620;SUPER U ST LEGER DE LA MARTINIERE;;73D Rue Général Mangin, Grenoble 38100 France;;[-0.868405, 47.198261];;FRFR1ELKWV1;GBAE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7447;47.059889;;;; +;;;;;;;;FRV75PPX0601;801984;SUPER U TARASCON SUR ARIEGE;;6 Place Dupont Perrot, Nangis 77370 France;;[-0.232564, 47.553524];;FRFR1EWABL2;TMGF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.891438;47.350746;;;; +;;;;;;;;FRV75PPX0602;805314;SUPER U LE CHEYLARD;;N21, Auch 32000 France;;[-1.038546, 47.561347];;FRFR1ELKWV2;KVZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.27214;47.101603;;;; +;;;;;;;;FRV75PPX0603;706280;SUPER U VILLE;;Rue Jean de la Fontaine, Mably 42300 France;;[-0.562288, 47.61527];;FRFR1EPVHF2;LLLE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.666759;47.468264;;;; +;;;;;;;;FRV75P901507;756807;SUPER U VIVONNE;;Rue René Cassin, Saint-Marcel 71380 France;;[-0.393216, 47.559367];;FRFR1EPVHF1;YCGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.956686;47.029359;;;; +;;;;;;;;FRV75PPX0611;706274;U EXPRESS VERNAISON;;Boulevard Paul Eluard, Martigues 13500 France;;[-0.435457, 47.418908];;FRFR1EWUVD1;ZWZU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.743992;47.355065;;;; +;;;;;;;;FRV75P901603;690494;SUPER U ST BONNET DE JOUX;;Rue de la Trémouillière, Saint-Égrève 38120 France;;[-0.119188, 47.231738];;FRFR1EPKMC1;MWEK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.010639;47.059998;;;; +;;;;;;;;FRV75P901605;520115;DLM MARCQ EN BAROEUL;;Avenue Itzehoe, La Couronne 16400 France;;[-0.301931, 47.189978];;FRFR1EPMXN1;AAAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.224408;47.422724;;;; +;;;;;;;;FRV75P901604;577493;Parking MAMBHOME;;66 Avenue de la Margeride, Aubière 63170 France;;[-0.27582, 47.191899];;FRFR1EPMXN2;GHER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.994333;47.4097886;;;; +;;;;;;;;FRV75P901602;413750;FOURNIER;;Cours Jean Monnet, Nîmes 30900 France;;[-0.273548, 47.193495];;FRFR1ENUTV2;GTJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.494282;47.4096558;;;; +;;;;;;;;FRV75P901601;577496;Securecharge Hôtel Pont Vieux;;Chemin des Canniers, Ollioules 83190 France;;[-1.204504, 47.339675];;FRFR1EPCRE2;GPJL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.942527;47.264232;;;; +;;;;;;;;FRV75PPX0609;706265;PULLMAN;;Rue de l'Étang, Limonest 69760 France;;[-0.240833, 47.671838];;FRFR1EZCEP2;MWEK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.014638;47.358167;;;; +;;;;;;;;FRV75PPX0610;747303;F.B Automobiles;;Rue du Commerce, Epagny Metz-Tessy 74330 France;;[-0.244611, 47.672];;FRFR1EPKMC2;YCGU3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.026729;47.424441;;;; +;;;;;;;;FRV75PPX0608;528131;FRANCE ENVIRONNEMENT;;Avenue de la Condamine, Saint-Jean-de-Védas 34430 France;;[-0.508696, 47.506721];;FRFR1EMECJ2;AKDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.55671;47.521476;;;; +;;;;;;;;FRV75PPX0605;851889;Aulnay sous Bois;;Rue Zenobe Gramme, Béziers 34500 France;;[-0.528013, 47.52875];;FRFR1EWABL1;ZWZU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.7583043;47.49691;;;; +;;;;;;;;FRV75PPX0606;544748;Saint-Affrique - Thibal Distribution - recharge gratuite;;2 Route de Romans, Valence 26000 France;;[-0.543489, 47.480374];;FRFR1EMECJ1;AKDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.8330849;47.542668;;;; +;;;;;;;;FRV75PPX0607;706268;gite danse des etoiles;;Allée des Savoies, Vénissieux 69200 France;;[-0.408917, 47.318639];;FRFR1EYUEH2;MWEK3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.100163;47.356033;;;; +;;;;;;;;FRTCBP01794;706271;CAMPING LES TROIS RIVIERES;;15 Chemin des Charbonnières, Balaruc-le-Vieux 34540 France;;[-0.551959, 47.474517];;FRFR1ELMJF1;AKDM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.655694;47.437306;;;; +;;;;;;;;FRTCBP01793;828303;BROU SUR CHANTEREINE;;Boulevard André Bouloche, Saint-Priest 69800 France;;[-0.55714, 47.479224];;FRFR1ERVJV2;YCGU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.525422;47.442282;;;; +;;;;;;;;FRSAEPSA;805329;Mitry Mory;;Rue Flandres-Dunkerque, Lescar 64230 France;;[-0.552912, 47.491494];;FRFR1ELMYS1;UAMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.436901;47.739167;;;; +;;;;;;;;FRSAEPMAD;805332;PRAGNAT NORD;;Rue de Chabanne, Villars 42390 France;;[-0.524759, 47.487154];;FRFR1EZVFT2;UAMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.430275;47.55254;;;; +;;;;;;;;FRTCBP01606;805326;Daltoner Caen;;Rue du Beaujolais, Crêches-sur-Saône 71680 France;;[-0.484532, 47.404556];;FRFR1EYVBR2;AHSB3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.676106;47.739155;;;; +;;;;;;;;FRIPKPMRO;516266;OuestCharge - Diva Sp - Ernee - Gaulle;;53B Rue de la Martinière, Bassens 73000 France;;[-0.562786, 47.474284];;FRFR1EZCXJ1;ZYVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.858696;47.373979;;;; +;;;;;;;;FRIPKPMHV;577508;OuestCharge - Diva Sp - Evron - Gare;;Route d'Orléans, Saint-Doulchard 18230 France;;[-0.546506, 47.470084];;FRFR1EZFTA1;GEKT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.527251;47.200016;;;; +;;;;;;;;FRIPKPMG5;703292;OuestCharge - Diva Sp - Evron - Basilique;;Rue d'Italie, Orange 84100 France;;[-0.560626, 47.479479];;FRFR1EZKHW2;TMGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.525211;47.414195;;;; +;;;;;;;;FRIPKPMBA;767208;OuestCharge - Quick Charger Evtronic - Ernee - Hôtel;;Avenue Paul Doumer, Roquebrune-Cap-Martin 06190 France;;[-0.564293, 47.478727];;FRFR1EVNWP1;AHFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.174833;47.19593;;;; +;;;;;;;;FRIPKPARC;706283;OuestCharge - Quick Charger Evtronic - Craon - Murier;;7 Avenue de la 1ère Division Française Libre, Sospel 06380 France;;[-0.553069, 47.462925];;FRFR1EPBFG2;JAHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.808266;47.448766;;;; +;;;;;;;;FRIPKPALH;706292;OuestCharge - Diva Sp - Fougerolles-Du-Plessis - Rassemblement;;Avenue Princesse Grace, Roquebrune-Cap-Martin 06190 France;;[-0.55655, 47.469423];;FRFR1ERRPM1;GRXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.174242;47.447462;;;; +;;;;;;;;FRIPKPNVR;815427;OuestCharge - Diva Sp - Cosse-Le-Vivien - Foire;;68 Chemin de Saint-Antonin, Castillon 06500 France;;[-0.539925, 47.469068];;FRFR1ERSDS1;GLXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.688459;47.380213;;;; +;;;;;;;;FRTCBP00968;743940;OuestCharge - Diva Sp - Chateau-Gontier - Perreault;;Avenue de Verdun, Beausoleil 06240 France;;[-0.53269521, 47.46096235];;FRFR1EMECM1;HBSQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.430135;47.623454;;;; +;;;;;;;;FRTCBP00803;706286;OuestCharge - Diva Sp - Le Genest-Saint-Isle - Eglise;;11 Boulevard Borriglione, Moulinet 06380 France;;[-0.566538, 47.473302];;FRFR1EYVBR1;HBLQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.653893;47.4118735;;;; +;;;;;;;;FRTCBP00701;706289;OuestCharge - Diva Sp - Chateau-Gontier - Mahier;;Rue Prato, Menton 06500 France;;[-0.555071, 47.474853];;FRFR1EZJTM1;GLHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.432675;47.495595;;;; +;;;;;;;;FRTCBP00700;815799;OuestCharge - Diva Sp - Gorron - Mairie;;40 Chemin de Peille, Gorbio 06500 France;;[-0.395715, 47.457271];;FRFR1EVMEQ1;CFWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.316809;47.205485;;;; +;;;;;;;;FRTCBP00814;815796;OuestCharge - Diva Sp - Grez-En-Bouere - Mairie;;95 Avenue du Dr Joseph Daveo, Saorge 06540 France;;[-0.954205, 47.171404];;FRFR1ERRPM2;GLVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.319294;46.891832;;;; +;;;;;;;;FRTCBP00935;840458;OuestCharge - Diva Sp - Javron-Les-Chapelles - Mairie;;Place Neuve, La Turbie 06320 France;;[-0.549208, 47.477254];;FRFR1EWQVB1;GLSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.644031;46.887125;;;; +;;;;;;;;FRTCBP00805;840460;OuestCharge - Diva Sp - Jublains - Musée;;37 Boulevard Rouvier, Breil-sur-Roya 06540 France;;[-0.560842, 47.49153];;FRFR1EWKHE1;HHLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.452347;47.585254;;;; +;;;;;;;;FRSAEPLAG;840456;OuestCharge - Diva Sp - Juvigne - Mairie;;Avenue du 16 Septembre 1947, Tende 06430 France;;[-0.525074, 47.45235];;FRFR1EWQVB2;HTZQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.6517673;47.155328;;;; +;;;;;;;;FRSAEPJBO;840454;OuestCharge - Diva Sp - Lassay-Les-Chateaux - Perrin;;Rue du Rail, Eygliers 05600 France;;[-0.557721, 47.466106];;FRFR1EZAWZ1;HTDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.419992;47.411751;;;; +;;;;;;;;FRS61P61497A;840466;OuestCharge - Diva Sp - Change - Mairie;;12 Avenue Draio de la Mar, Carry-le-Rouet 13620 France;;[-0.555268, 47.450911];;FRFR1ELMJF2;JAAP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.307135;47.244624;;;; +;;;;;;;;FRIPKNGTH;840464;OuestCharge - Diva Sp - Ballee - Liniere;;4 Avenue Pierre de Coubertin, Argelès-Gazost 65400 France;;[-0.538226, 47.46024];;FRFR1EYULR2;HVFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.601608;47.519053;;;; +;;;;;;;;FRIPKPHDV;708929;OuestCharge - Diva Sp - Ahuille - Concise;;168 Route de Cannes, Grasse 06130 France;;[-0.558719, 47.475807];;FRFR1EYJVZ2;AHYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.593407;47.076892;;;; +;;;;;;;;FRIPKPMLJ;815082;OuestCharge - Diva Sp - Ambrieres-Les-Vallees - Château;;6 Chemin de Labouchere, Bias 47300 France;;[-0.565617, 47.493526];;FRFR1EVMEQ2;KPVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.045511;47.101168;;;; +;;;;;;;;FRIPKPCDM;840462;OuestCharge - Diva Sp - Argentre - Marzelles;;Rue Maurice Herzog, Lesquin 59810 France;;[-0.548205, 47.474028];;FRFR1EZAWZ2;AHBR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.399953;47.362484;;;; +;;;;;;;;FRIPKNRME;444132;OuestCharge - Quick Charger Evtronic - Aze - Rouge;;Quai de Monléon, Menton 06500 France;;[-0.5919, 47.4801];;FRFR1ERSDS2;JFGD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.374239;47.627398;;;; +;;;;;;;;FRIPKPPAJ;511193;OuestCharge - Diva Sp - Aze - Aventin;;81 Avenue Cernuschi, Menton 06500 France;;[-0.602694, 47.316361];;FRFR1ERURV1;FDYX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.933519;47.697553;;;; +;;;;;;;;FRTCBP01334;402194;OuestCharge - Diva Sp - La Baconniere - Gareliere;;197 Avenue Paul Poncé, Cavaillon 84300 France;;[-0.982642, 47.209947];;FRFR1EMECM2;FBJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.75007;47.518842;;;; +;;;;;;;;FRTCBP01313;759999;OuestCharge - Diva Sp - Bais - Janvier;;Rue des Métiers, Breil-sur-Roya 06540 France;;[-0.992462, 47.202836];;FRFR1EYJVZ1;JYZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.248399;47.324312;;;; +;;;;;;;;FRTCBP01253;767091;OuestCharge - Quick Charger Evtronic - Laval - Palindrome;;32 Square Sainte-Agnès, Sainte-Agnès 06500 France;;[-0.899778, 47.251778];;FRFR1ERVDU1;JUWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.300524;47.325404;;;; +;;;;;;;;FRTCBP01005;370046;OuestCharge - Diva Sp - Ballots - Closeraie;;Place Saint Martin, La Brigue 06430 France;;[-0.799876, 47.50232];;FRFR1EVNWP2;KBRS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.605544;47.324248;;;; +;;;;;;;;FRTCBP01110;292766;OuestCharge - Diva Sp - Bazougers - Tannerie;;Rue de l'Amendola, La Turbie 06320 France;;[-0.936225, 47.140204];;FRFR1ERVDU2;JZGZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.833976;47.621263;;;; +;;;;;;;;FRTCBP01006;704399;OuestCharge - Diva Sp - Bonchamp-Les-Laval - Angenoises;;Avenue du Général de Gaulle, La Brigue 06430 France;;[-0.609137, 47.424319];;FRFR1ELQQY2;JEFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.866043;47.437694;;;; +;;;;;;;;FRTCBP01329;704402;OuestCharge - Diva Sp - Bouessay - Mairie;;21 Avenue de Saint-Roman, Beausoleil 06240 France;;[-0.620562, 47.409902];;FRFR1ERURV2;ASQY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.953551;47.330177;;;; +;;;;;;;;FRTCBP01004;840452;OuestCharge - ePremium / Diva Sp - Change - Broglie;;9 Boulevard des Moneghetti, Beausoleil 06240 France;;[0.065252, 47.303128];;FRFR1ELQQY1;JNMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.416506;47.064589;;;; +;;;;;;;;FRTCBP01003;840450;OuestCharge - Diva Sp - Pontmain - Bourg;;Boulevard du Commandant René Mouchotte, Bizanos 64320 France;;[-0.504181, 47.564662];;FRFR1EYULR1;JFNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.431082;47.448143;;;; +;;;;;;;;FRTCBP01400;767730;OuestCharge - Diva Sp - Saint-Denis-D'Anjou - Henri;;Chemin du Prêtre, Marsac-sur-l'Isle 24430 France;;[-0.447423, 47.357032];;FRFR1EZCEP1;KMFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.416486;47.140034;;;; +;;;;;;;;FRTCBP01609;817149;OuestCharge - Diva Sp - Renaze - Europe;;103 Avenue Saint-Michel, Sainte-Agnès 06500 France;;[-0.214121, 47.438176];;FRFR1EVEMU1;ALZR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.372122;47.4399;;;; +;;;;;;;;FRIPKPFRA;840448;OuestCharge - Diva Sp - Pre-En-Pail - Troenes;;Quai de la Roya, Fontan 06540 France;;[-0.237386, 47.440085];;FRFR1EWNHB1;AKAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5012;47.381489;;;; +;;;;;;;;FRTCBP01002;817419;OuestCharge - Diva Sp - Montsurs - Cenere;;5 Place de la Résistance, Tende 06430 France;;[-0.588673, 47.505249];;FRFR1EWNHB2;AVEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.152043;47.326231;;;; +;;;;;;;;FRIPKPPSI;706262;OuestCharge - Diva Sp - Mayenne - Volney;;182 Avenue de Saint-Antoine, Castellar 06500 France;;[-0.56552, 47.449193];;FRS14ERYYS2;FXZT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.999195;47.574983;;;; +;;;;;;;;FRTCBP01000;851892;OuestCharge - Diva Sp - Montaudin - Mairie;;Route de Menton, Sospel 06380 France;;[-0.559266, 47.468648];;FRS14EQPTT1;AANK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.346143;47.566145;;;; +;;;;;;;;FRTCBP00999;708689;OuestCharge - Diva Sp - Meslay-Du-Maine - Poste;;Avenue Raymond Poincaré, Roquebrune-Cap-Martin 06190 France;;[-0.464037, 47.211582];;FRS14EQRTM1;YJTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.281681;47.346324;;;; +;;;;;;;;FRIPKPVPM;708692;OuestCharge - Diva Sp - Mayenne - Vinci;;49 Route de Sospel, Menton 06500 France;;[-0.61754, 47.51396];;FRS14EQRYG1;HBLQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.4801865;47.289456;;;; +;;;;;;;;FRIPKPPTE;708698;OuestCharge - Diva Sp - Saint-Denis-De-Gastines - Tilleuls;;50 Promenade de la Mer, Menton 06500 France;;[-0.590732, 47.506252];;FRS14EQNJR1;QUUR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.710672;47.415736;;;; +;;;;;;;;FRIPKPCTV;706634;OuestCharge - Diva Sp - Saint-Ouen-Des-Toits - Eglise;;Avenue de la Paix, Roquebrune-Cap-Martin 06190 France;;[-0.589951, 47.499568];;FRS14ERJJF2;LLLE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.15049;46.995125;;;; +;;;;;;;;FRIPKPPRA;747291;OuestCharge - Diva Sp - Saint-Pierre-Des-Nids - Eglise;;248 Route de Saint-Jean, Sainte-Agnès 06500 France;;[-0.101972, 47.540358];;FRS14EQMKF1;GBAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.621944;47.359424;;;; +;;;;;;;;FRIPKPPWA;880209;OuestCharge - Diva Sp - Sainte-Suzanne - Charrieres;;Promenade du Maréchal Leclerc de Hautecloque, Menton 06500 France;;[-0.106122, 47.542556];;FRS14EQMSF1;PFCC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.623028;47.236772;;;; +;;;;;;;;FRIPKPPPM;708683;OuestCharge - Diva Sp - Saulges - Grottes;;77 Avenue du Président Roosevelt, Saint-Memmie 51470 France;;[-0.640257, 47.4761];;FRS14EUZWX2;ZMEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.284393;46.997306;;;; +;;;;;;;;FRTCBP01167;708686;OuestCharge - Diva Sp - Vaiges - Charmes;;7 Rue Louis Chappée, Saint-Saturnin 72650 France;;[-0.624794, 47.474972];;FRS14ENQKM2;AHSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.027984;47.0201569;;;; +;;;;;;;;FRTCBP01169;708680;OuestCharge - Diva Sp - Villaines-La-Juhel - Gaulle;;33 Route de Bray, Provins 77160 France;;[-0.978444, 47.615778];;FRS14ENQAG2;XLHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.793377;47.098967;;;; +;;;;;;;;FRTCBP01168;789180;OuestCharge - Diva Sp - Villiers-Charlemagne - Eglise;;14 Avenue Yves Montand, Arques 62510 France;;[-1.24442, 47.265602];;FRS14EVENT1;GLHN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.596198;47.596801;;;; +;;;;;;;;FRTCBP01166;741687;OuestCharge - Diva Sp - Laval - Buron;;150 Rue de Tillé, Beauvais 60000 France;;[-1.02531, 47.270356];;FRS14EVDCJ1;GLSB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.861284;47.057456;;;; +;;;;;;;;FRTCBP01165;741675;OuestCharge - Diva Sp - Laval - Quartier ferrie;;132 Boulevard de Roux Prolongé, Marseille 13004 France;;[-0.470786, 47.520083];;FRS14EUUHG1;WYAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.349169;47.430853;;;; +;;;;;;;;FRTCBP01001;741678;OuestCharge - Quick Charger Evtronic - Laval - Jaunaie;;7 Boulevard Gustave Desplaces, Marseille 13003 France;;[-0.383166, 47.501832];;FRS14EUZQK1;FXZT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.816219;47.396174;;;; +;;;;;;;;FRIPKPGRI;741681;OuestCharge - Quick Charger Evtronic - Mayenne - Guyard;;Rue René Descartes, Marignane 13700 France;;[-0.081374, 47.257962];;FRS14EUZWX1;XLWP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.793926;47.482992;;;; +;;;;;;;;FRIPKPNEM;741690;OuestCharge - Diva Sp - Laval - Hercé;;Rue de l'Arène, Cassis 13260 France;;[-0.074092, 47.263713];;FRS14ERRXW2;GHER2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.385048;47.480876;;;; +;;;;;;;;FRSAEPPDA;741693;OuestCharge - Diva Sp - Laval - Louis;;Avenue Pierre Mendès France, Marseille 13008 France;;[-0.09440862, 47.26641082];;FRS14ESEKZ2;GEKT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.676954;47.621767;;;; +;;;;;;;;FRTCBP00753;787242;OuestCharge - Diva Sp - Laval - Bres;;Boulevard André Malraux, Plan-de-Cuques 13380 France;;[-0.090757, 47.249435];;FRS14EHRAY1;GLVF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.486906;47.28394529;;;; +;;;;;;;;FRTCBP00702;741696;OuestCharge - Diva Sp - Laval - Espace Mayenne 1;;6 Boulevard de la Marne, Coulommiers 77120 France;;[-0.071973, 47.255545];;FRS14ESJDM2;XTUQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.228706;47.446531;;;; +;;;;;;;;FRTCBP00703;741699;OuestCharge - Diva Sp - Loiron - Ramé;;23 Avenue Salvador Allende, Échirolles 38130 France;;[-0.655311, 47.383595];;FRS14EQTAF1;WZVF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.451702;47.475429;;;; +;;;;;;;;FRTCBP00705;741663;OuestCharge - Diva Sp - Martigne-Sur-Mayenne - Georges;;29 Rue Bobby Sands, Saint-Herblain 44800 France;;[-0.866408, 47.686106];;FRS14EQTNH1;AABT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.159951;47.477271;;;; +;;;;;;;;FRTCBP00707;815421;OuestCharge - Diva Sp - Louverne - Renoir;;70 Avenue Victor Hugo, Aubervilliers 93300 France;;[-0.869483, 47.69788];;FRS14ERSTM1;XPNY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.158828;47.472946;;;; +;;;;;;;;FRTCBP00708;828294;OuestCharge - Diva Sp - Loigne-Sur-Mayenne - Anjou;;Quai de Petit-Couronne, Petit-Couronne 76650 France;;[-0.872631, 47.686143];;FRS14EQTNH2;YBLV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.197509;47.041524;;;; +;;;;;;;;FRTCBP00724;815424;FGS1;;1 Rue du Château, Vosne-Romanée 21700 France;;[-0.938152, 47.05595];;FRS14ESJDM1;YDWA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.40979918;47.042495;;;; +;;;;;;;;FRTCBP00726;741672;Gite La Vicomterie;;610 Route de Cassel, Drincham 59630 France;;[-0.514327, 47.400515];;FRS14ESLHH1;EKEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.239721;47.418352;;;; +;;;;;;;;FRTCBP00727;741666;OuestCharge - Diva Sp - Cholet - Coignard;;5478 Avenue Lou Mistraou, Bormes-les-Mimosas 83230 France;;[-0.35941666, 47.5761667];;FRS14ESEKZ1;EGHB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.761038;47.41373;;;; +;;;;;;;;FRTCBP00839;741669;OuestCharge - Quick Charger Evtronic - Cholet - Aubance;;3 Place Maurice de Sully, Sully-sur-Loire 45600 France;;[-0.627508, 47.303931];;FRS14ERWXM1;ENHN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.767038;47.29850005;;;; +;;;;;;;;FRTCBP00774;708677;OuestCharge - Diva Sp - Cholet - Baudry;;Place des Jeux, Donnemarie-Dontilly 77520 France;;[-0.678323, 47.483684];;FRS14ERXWW1;EMCJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.761649;47.384186;;;; +;;;;;;;;FRTCBP00809;771702;OuestCharge - Diva Sp - Cholet - Sabotiers;;Rue Maréchal de Lattre de Tassigny, Nangis 77370 France;;[-0.805811, 47.31498];;FRS14ERYYS1;HQHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.95605;47.319132;;;; +;;;;;;;;FRTCBP00699;741726;OuestCharge - Diva Sp - Cholet - Hotel;;114 Rue de Royan, Saint-Yrieix-sur-Charente 16710 France;;[-1.188577, 47.287826];;FRS14ERAXU2;HBSQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.18643;47.276517;;;; +;;;;;;;;FRTCBP00627;805227;OuestCharge - Diva Sp - Cholet - Infanterie;;A10, Aire de Saint-Léger, Saint-Léger 17800 France;;[-0.710591, 47.460763];;FRS14ERWXM2;HPQT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.848403;47.269653;;;; +;;;;;;;;FRTCBP00650;708671;OuestCharge - Diva Sp - Cholet - Marne;;Rue Jean Joseph Etienne Lenoir, Bruay-la-Buissière 62700 France;;[-0.911004, 47.092248];;FRS14EQKKC1;AAAR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.970647;47.097019;;;; +;;;;;;;;FRTCBP00689;708674;OuestCharge - Diva Sp - Cholet - Plessis;;4 Boulevard Moïse Foglia, Audincourt 25400 France;;[-0.994913, 47.124825];;FRS14ERSTM2;KSXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.48938447;47.395745;;;; +;;;;;;;;FRTCBP00690;741723;OuestCharge - Quick Charger Evtronic - Cholet - Nantes;;2 Boulevard Gillibert, Marseille 13009 France;;[-0.994046, 47.123098];;FRS14ERXWW2;QUUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.558977;47.370906;;;; +;;;;;;;;FRTCBP00691;741702;OuestCharge - Diva Sp - Combree - Commerce;;101 Avenue du Marché National, Marseille 13014 France;;[-1.095972, 47.122111];;FRS14ENNMU2;LLLE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.348234;47.553973;;;; +;;;;;;;;FRTCBP00694;741711;OuestCharge - Diva Sp - Corne - Moines;;618 Boulevard du Commerce, Puget-sur-Argens 83480 France;;[-0.703429, 47.431488];;FRS14ENDGM2;HHLL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.290308;47.081675;;;; +;;;;;;;;FRTCBP00695;741705;OuestCharge - Diva Sp - Chenehutte-Treves-Cunault - Pont Pouillet;;Rue du Génépi, La Mure 38350 France;;[-0.32078, 47.410707];;FRS14ENDBV2;ZMEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.334967;47.074964;;;; +;;;;;;;;FRTCBP00696;741708;OuestCharge - ePremium - Coron - Eole;;91 Rue du Rouet, Marseille 13008 France;;[-0.497006, 47.370575];;FRS14ENBLR2;WZVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.490912;47.367033;;;; +;;;;;;;;FRTCBP00697;741714;OuestCharge - Diva Sp - Champtoceaux - Piliers;;13 Rue du Colonel Baron Jean-Joseph Merle, Allauch 13190 France;;[-0.458562, 47.401183];;FRS14EPMEU2;AARS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.09213;47.125105;;;; +;;;;;;;;FRTCBP00698;741717;OuestCharge - Diva Sp - Chemille - Perrocheres;;38 Rue Lamartine, Marignane 13700 France;;[0.054743, 47.239712];;FRS14EPKMQ2;XTUQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.177845;47.114005;;;; +;;;;;;;;FRTCBP00621;741720;OuestCharge - ePremium - Cande - Super U;;7 Rue Guy de Combaud Roquebrune, Marseille 13007 France;;[-0.066444, 47.222944];;FRS14EMZGZ2;AFDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.531968;47.429477;;;; +;;;;;;;;FRTCBP01199;368758;OuestCharge - Quick Charger Evtronic - Corze - Nationale;;Allée des Portes Occitanes, Le Puy-en-Velay 43000 France;;[-0.476858, 47.331369];;FRS14EWJCX1;PAJS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.410933;47.653232;;;; +;;;;;;;;FRTCBP01198;697028;OuestCharge - Diva Sp - Cantenay-Epinard - Angers;;Rue du Bas Faure, Le Vigen 87110 France;;[-0.208389, 47.13925];;FRS14EWPZP1;CBER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.397512;47.279449;;;; +;;;;;;;;FRTCBP00915;706220;OuestCharge - Diva Sp - Chalonnes-sur-Loire - Tonneliers;;19 Rue Georges Ohm, Mérignac 33700 France;;[-0.83459, 47.60009];;FRS14EWTMQ1;AAUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.174149;47.080729;;;; +;;;;;;;;FRTCBP01299;880230;OuestCharge - Diva Sp - Champigne - Muguet;;Avenue André Jorigne, Montauban 82000 France;;[0.053695, 47.393536];;FRS14EWFHJ1;FMZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.910281;47.139538;;;; +;;;;;;;;FRTCBP01302;706223;OuestCharge - Diva Sp - Champtoce-sur-Loire - Eglise;;Boulevard de la Libération, Marseille 13001 France;;[-0.535805, 47.144991];;FRS14EMCWD2;FGDK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.937478;47.288138;;;; +;;;;;;;;FRTCBP00989;368755;OuestCharge - ePremium - Oree-d Anjou - Mauges;;58 Boulevard Vauban, Marseille 13006 France;;[-1.057201, 47.15339];;FRS14EMCQZ2;FPNP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.391569;47.27916;;;; +;;;;;;;;FRTCBP00991;880233;OuestCharge - Diva Sp - La Chapelle-du-Genet - Nationale;;Chemin du Riau, Ceyreste 13600 France;;[-0.891717, 47.462874];;FRS14EMAXF2;FNQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.990829;47.39103;;;; +;;;;;;;;FRTCBP01185;706214;OuestCharge - Diva Sp - Chateauneuf-sur-Sarthe - Lefort;;16 Boulevard Denis Papin, Saint-Victoret 13730 France;;[-0.423855, 47.559531];;FRS14ELAEZ2;HMVQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.479942;47.296143;;;; +;;;;;;;;FRTCBP00601;577481;OuestCharge - Diva Sp - Chaudron-en-Mauges - Mairie;;57 Rue de la Loubière, Marseille 13005 France;;[-0.055683, 47.325855];;FRS14ELMLF2;FGCS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.039746;47.411584;;;; +;;;;;;;;FRTCBP00356;368761;OuestCharge - Diva Sp - Chemille - Saint-Pierre;;33 Avenue Clot Bey, Marseille 13008 France;;[-0.703431, 47.021955];;FRS14EVENT2;AARA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.337746;47.667198;;;; +;;;;;;;;FRTCBP00123;675536;OuestCharge - Diva Sp - Feneu - Cure;;Avenue de Mazargues, Marseille 13008 France;;[-1.322585, 47.313];;FRS14EVDCJ2;PAJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.88;47.317146;;;; +;;;;;;;;FRTCBP00124;789171;OuestCharge - ePremium - Etriche - Humeau;;12 Rue Urbain V, Marseille 13002 France;;[-0.41920244, 47.56992087];;FRS14ELMZY2;FWCT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.056627;47.340349;;;; +;;;;;;;;FRTCBP00125;706208;OuestCharge - Diva Sp - Le Fief-Sauvin - Eglise;;14 Rue des Orgues, Marseille 13004 France;;[-0.524881, 47.364289];;FRS14ESRSZ1;AAJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.294157;47.474882;;;; +;;;;;;;;FRTCBP00355;706205;OuestCharge - Diva Sp - Fontevraud-l'Abbaye - 8 Mai 45;;3 Rue Bailli de Suffren, Plan-de-Cuques 13380 France;;[-0.55436, 47.577466];;FRS14EPHPK2;AABT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.512496;47.657008;;;; +;;;;;;;;FRTCBP00357;699632;OuestCharge - Diva Sp - Le Fuilet - Huit a Huit;;369 Corniche Président John Fitzgerald Kennedy, Marseille 13007 France;;[-0.850349, 47.005484];;FRS14EPARA2;CBER2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.167744;47.285563;;;; +;;;;;;;;FRTCBP00386;528125;OuestCharge - Diva Sp - Gennes - 19 Mars;;782 Esplanade de la Tourette, Marseille 13002 France;;[-0.505148, 47.265862];;FRS14ETELV1;GTJV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.674989;47.285516;;;; +;;;;;;;;FRTCBP00371;413741;OuestCharge - Diva Sp - Geste - Peupliers;;Boulevard Bazile Barrelier, Marseille 13014 France;;[-0.468069, 47.615758];;FRS14ENMEG2;GTJV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.074784;47.28544;;;; +;;;;;;;;FRTCBP00382;747294;OuestCharge - Diva Sp - Valanjou - Mairie;;6 Plage de l'Estaque, Marseille 13016 France;;[-1.1648, 47.140958];;FRS14EVQMF1;ADTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.092474;47.290846;;;; +;;;;;;;;FRTCBP00384;851880;OuestCharge - ePremium - Grez Neuville - Lionnais;;14 Boulevard de Beaumont, Marseille 13012 France;;[-1.114795, 47.037548];;FRS14EVUAW1;GRXW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.057012;47.712905;;;; +;;;;;;;;FRTCBP00120;880224;OuestCharge - Diva Sp - Ingrandes - Gare;;2 Boulevard Berthier, Marseille 13011 France;;[-0.509598, 47.456582];;FRS14EVUME1;GLXY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.317223;47.178242;;;; +;;;;;;;;FRTCBP00387;787239;OuestCharge - Diva Sp - Allonnes - Gallart;;Cours Pasteur, Gémenos 13420 France;;[-0.482769, 47.441977];;FRS14ENUGZ2;WUJK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.388551;47.372136;;;; +;;;;;;;;FRTCBP00529;706211;OuestCharge - Diva Sp - Jallais - Combattants;;85 Traverse de la Buzine, Marseille 13011 France;;[-0.4999, 47.4474];;FRS14EUSQR1;WXFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.388497;47.701217;;;; +;;;;;;;;FRTCBP00475;588707;OuestCharge - Diva Sp - Jarze - Norbert d'Avignon;;84 Rue de Lodi, Marseille 13006 France;;[-0.468639, 47.452278];;FRS14ETAUG1;ADMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.388422;47.718186;;;; +;;;;;;;;FRTCBP00513;709151;OuestCharge - Diva Sp - Cande - Saint-Nicolas;;Boulevard Michelet, Marseille 13008 France;;[-0.7893902, 47.12269847];;FRS14EPEWP2;ADDH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.877391;47.720652;;;; +;;;;;;;;FRTCBP00528;544733;OuestCharge - Diva Sp - Ecuille - Ecoles;;4 Rue André Isaia, Marseille 13013 France;;[-0.270014, 47.401709];;FRS14ETXRA1;ADRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.379295;47.085153;;;; +;;;;;;;;FRTCBP00530;880227;OuestCharge - Diva Sp - Corze - Motte;;1 Avenue de la Chênaie, Givrand 85800 France;;[-1.125468, 47.096814];;FRS14ETGXN1;AARA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.340886;47.124176;;;; +;;;;;;;;FRTCBP00568;706241;OuestCharge - Diva Sp - La Dagueniere - Acacias;;Route de Clisson, Basse-Goulaine 44115 France;;[-0.862944, 47.390083];;FRS14ETMMK1;ABUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.972218;47.150435;;;; +;;;;;;;;FRTCBP00427;538370;OuestCharge - Diva Sp - Distre - Blanchard;;49 Rue Félix Esclangon, Grenoble 38000 France;;[-0.610083, 47.529708];;FRS14ETSLZ1;ABFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.403169;47.091867;;;; +;;;;;;;;FRTCBP00389;706238;OuestCharge - Quick Charger Evtronic - Doue-la-Fontaine - Cholet;;284 Allée de Craponne, Salon-de-Provence 13300 France;;[-0.615875, 47.541477];;FRS14EUTAA1;ACMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.37759;47.090245;;;; +;;;;;;;;FRTCBP00390;484970;OuestCharge - Diva Sp - Doue-la-Fontaine - Foire;;125 Avenue Colonel Picot, Toulon 83000 France;;[-0.155132, 47.130526];;FRS14EPFJR2;ABXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.380766;47.089987;;;; +;;;;;;;;FRTCBP00392;805293;OuestCharge - Diva Sp - Doue-la-Fontaine - Verdun;;145 Route de Lorient, Rennes 35000 France;;[-0.417993, 47.745053];;FRS14EQTWR2;ADZK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.282014;47.115941;;;; +;;;;;;;;FRTCBP00396;706244;OuestCharge - Diva Sp - Drain - Sports;;36 Route d'Avesnes, Louvroil 59720 France;;[-0.364194, 47.699917];;FRS14EQTWR1;AARA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.422498;46.963716;;;; +;;;;;;;;FRTCBP00415;706250;OuestCharge - Diva Sp - Durtal - Camping;;147 Boulevard Emile Zola, Le Mans 72100 France;;[0.014452, 47.465705];;FRS14ERRXW1;NQCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.987865;47.253189;;;; +;;;;;;;;FRTCBP00425;413747;OuestCharge - ePremium - Durtal - Trivoli;;40 Bis Rue Antoine Lumière, Lyon 69008 France;;[-0.552589, 47.356914];;FRS14ECWTN1;VBDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.61073;47.103256;;;; +;;;;;;;;FRTCBP00426;706256;OuestCharge - Quick Charger Evtronic - Ecouflant - Eperviere;;1 Route de Bueil, Guainville 28260 France;;[-0.528586, 47.396864];;FRS14EDEUA1;QJAM6;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.615587;47.103159;;;; +;;;;;;;;FRS28E137294;706259;OuestCharge - Diva Sp - Ecouflant - Vieille Maine;;163 Rue Thomas Edison, Saran 45770 France;;[0.115145, 47.512698];;FRS14EBUSH1;GNUL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.279461;47.208127;;;; +;;;;;;;;FRS28E139678;706235;OuestCharge - Diva Sp - Angers - Ney;;70 Boulevard Maréchal de Lattre de Tassigny, Suresnes 92150 France;;[0.117367, 47.510163];;FRS14EBTTV1;MYVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.10196;47.037744;;;; +;;;;;;;;FRS28E139679;706226;OuestCharge - ePremium - Brissac-Loire-Aubance - Layon;;1 Avenue du Stade de France, Saint-Denis 93200 France;;[-0.671603, 47.560909];;FRS14EVSMY1;BZTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.754012;47.03601;;;; +;;;;;;;;FRS28E137373;706229;OuestCharge - Diva Sp - Angers - Boisnet;;8 Rue Louis Armand, Paris 75015 France;;[-0.711688, 47.626205];;FRS14EVSMY2;BZTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.385744;47.441001;;;; +;;;;;;;;FRS28E137374;518108;OuestCharge - Diva Sp - Angers - Mirault;;93 Rue Lasègue, Châtillon 92320 France;;[-0.661137, 47.457042];;FRS14EBBPB1;MYVE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.808674;47.257994;;;; +;;;;;;;;FRS28E137368;675539;OuestCharge - Diva Sp - Angers - Moulin;;13 Avenue de la Cour de France, Juvisy-sur-Orge 91260 France;;[-1.167665, 47.341154];;FRS14EAWDW1;FEZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.812257;47.655756;;;; +;;;;;;;;FRS28E137295;523592;OuestCharge - Diva Sp - Angers - Ecriture;;1628 Route de Grasse, Antibes 06600 France;;[-1.061148, 47.017144];;FRS14EBMKA1;FEZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.044815;47.262506;;;; +;;;;;;;;FRS28E137316;781602;OuestCharge - Diva Sp - Juigne-sur-Loire - Rocher;;7 Rue André Ducatez, Montélimar 26200 France;;[-0.107774, 47.380672];;FRS14EBFPN1;NSSL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.643245;47.373695;;;; +;;;;;;;;FRS28E137317;538364;OuestCharge - Diva Sp - Angers - Cerf;;61 Rue Aristide Briand, Issy-les-Moulineaux 92130 France;;[-0.111191, 47.375752];;FRS14EBXNM1;SHEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.640351;47.358691;;;; +;;;;;;;;FRS28E137367;706232;OuestCharge - Diva Sp - Angers - Mai 45;;438 Impasse de la Fage, La Chapelle-Aubareil 24290 France;;[-0.88562, 47.522113];;FRS14EDBMS1;RUBW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.192189;47.550071;;;; +;;;;;;;;FRS28ESDE28CHATDUN2B1P1;538367;OuestCharge - Diva Sp - Angers - Hotel Dieu;;52 Avenue Desandrouin, Valenciennes 59300 France;;[-0.429762, 47.235004];;FRS14EDAAA1;RUBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.014579;47.735648;;;; +;;;;;;;;FRS28ESDE28CHATDUN1B1P1;880236;OuestCharge - Diva Sp - Angers - Bichon;;40 Allée de la Mare Jodoin, Gif-sur-Yvette 91190 France;;[-0.7447, 47.007271];;FRS14EDDCW1;XFDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.49881;47.642319;;;; +;;;;;;;;FRS28ESDE28CLOU1B1P1;706202;OuestCharge - Diva Sp - Angers - Lafayette;;68 Avenue Alfred Maes, Lens 62300 France;;[-0.891438, 47.137219];;FRS14EDBWT1;XFDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.672813;47.113739;;;; +;;;;;;;;FRS28ESDE28TREON1B1P1;682547;OuestCharge - Diva Sp - Angers - Toussaint;;5 Avenue des Prés, Fresnes 94260 France;;[-0.27214, 47.45545];;FRS14ECENR1;LAUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.938037;47.251305;;;; +;;;;;;;;FRS28ESDE28VER4B1P1;613606;OuestCharge - Diva Sp - Angers - Louis Gain;;50 Avenue de la Libération, Quimper 29000 France;;[-0.666759, 47.518528];;FRS14EEMCJ1;LAUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.939955;47.24945;;;; +;;;;;;;;FRS28ESDE28VOV3B1P1;880215;OuestCharge - Diva Sp - Angers - Coubertin;;Chemin des Dunes, Agde 34300 France;;[-0.956686, 47.704641];;FRS14EENHN1;RXSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.07738;47.083183;;;; +;;;;;;;;FRSYSEFDPRAM;706178;OuestCharge - Diva Sp - Angers - Dumesnil;;80 Route de Metz, Thionville 57100 France;;[-0.743992, 47.525189];;FRS14EEGHB1;RZLB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.590963;47.055821;;;; +;;;;;;;;FRSYSEFDPCHECY;747288;OuestCharge - Diva Sp - Angers - Gambetta;;13 Rue Martin Luther King, Cosne-Cours-sur-Loire 58200 France;;[-1.010639, 47.059889];;FRS14EDGYP1;GNUL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.069307;47.399539;;;; +;;;;;;;;FRSGAP1M2003;671585;OuestCharge - Diva Sp - Andard - Poulain;;5 Route de la Corniche, Rolleboise 78270 France;;[-0.224408, 47.350746];;FRS14EAVNY1;ZVUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.734586;47.352483;;;; +;;;;;;;;FRSGAP1M2023;538355;OuestCharge - Diva Sp - Andreze - Mairie;;236 Rue Sadi Carnot, Haubourdin 59320 France;;[-0.994333, 47.101603];;FRS14EEAHG1;EXFT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.371945;47.287351;;;; +;;;;;;;;FRSGAP1M2025;754332;OuestCharge - Diva Sp - Angers - Rennes;;122 Route de Châteauneuf, Montélimar 26200 France;;[-0.494282, 47.468264];;FRS14EJDTA1;PVCY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.484521;47.365936;;;; +;;;;;;;;FRSGAP1M2024;413735;OuestCharge - Diva Sp - Angers - Fraternite;;280 Boulevard Charles de Gaulle, Saint-Cyr-sur-Loire 37540 France;;[-0.942527, 47.029359];;FRS14EEDBF1;KMFD3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.339434;47.523337;;;; +;;;;;;;;FRSGAP1M2029;787230;OuestCharge - Diva Sp - Angers - Marianne;;Rue Mathieu Desbieys, Moliets-et-Maa 40660 France;;[-1.014638, 47.355065];;FRS14EEAJU1;DERM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.727092;47.181975;;;; +;;;;;;;;FRSGAP1M2026;706199;OuestCharge - Diva Sp - Angers - Richard;;295 Avenue de Lens, Béthune 62400 France;;[-1.026729, 47.059998];;FRS14EDKBE1;DMKW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.306585;47.394709;;;; +;;;;;;;;FREVBP1926010;368743;OuestCharge - Diva Sp - Angers - Gendarme;;71 Rue Paul Guieysse, Lorient 56100 France;;[-0.55671, 47.422724];;FRS14EDWVP1;DMKW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.179806;47.287378;;;; +;;;;;;;;FRM13PZ1I0TISJ6M;706166;OuestCharge - Diva Sp - Angers - Volney;;36 Boulevard Frédéric Mistral, Narbonne 11100 France;;[-0.7583043, 47.4097886];;FRS14EEKEA1;DERM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.210351;47.73678;;;; +;;;;;;;;FRM13PEQOCKTZXOF;706169;OuestCharge - Diva Sp - Angers - Arago;;4 Rue d'Artois, Fouquières-lès-Lens 62740 France;;[-0.8330849, 47.4096558];;FRS14EDUUT1;LGSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.404951;46.971725;;;; +;;;;;;;;FRM13PFBQTAZPU5O;626510;OuestCharge - Diva Sp - Angers - Aquavita;;24 Avenue de Stalingrad, Dijon 21000 France;;[-0.100163, 47.264232];;FRS14EEFME1;LGSD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.18292;47.162907;;;; +;;;;;;;;FRM13PT0JAIS6CEK;706172;OuestCharge - Diva Sp - Angers - Imbach;;Rue du Docteur Calot, Berck 62600 France;;[-0.655694, 47.358167];;FRS14EEXVE1;LBYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.147443;47.16296;;;; +;;;;;;;;FRM13PY6J1LXVNOZ;690476;OuestCharge - Diva Sp - Angers - Notre Dame Du Lac;;2 Avenue José Nobre, Martigues 13500 France;;[-0.525422, 47.424441];;FRS14EEWMC1;LBYG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.425414;47.386962;;;; +;;;;;;;;FRM13PXGVSGL0WTG;690479;OuestCharge - ePremium - Beaulieu Sur Layon - Promenade;;10 Rue de la Verrerie, Meudon 92190 France;;[-0.436901, 47.521476];;FRS14EEZUM1;PUEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.210336;47.468655;;;; +;;;;;;;;FRM13PTUKBLMUEU8;805266;OuestCharge - Diva Sp - Beaupreau - Parking Bus;;11 Passage de la Grande Rue, Asnières-sur-Seine 92600 France;;[-0.430275, 47.49691];;FRS14EEYTL1;MGXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.305198;47.554354;;;; +;;;;;;;;FRM13PP0AY8SWKFP;880212;OuestCharge - Diva Sp - Beaupreau - Garenne;;10 Avenue Jean Kuntzmann, Montbonnot-Saint-Martin 38330 France;;[-0.676106, 47.542668];;FRS14EBZRN1;LXBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.430494;47.344527;;;; +;;;;;;;;FRM13PZKWGVJNQDL;538361;OuestCharge - ePremium - Beaupreau - Bocage;;3 Rue de la Mare Poissy, Villeron 95380 France;;[-0.858696, 47.356033];;FRS14ECFWH1;LXBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.268571;47.29341;;;; +;;;;;;;;FRM13PD155WPC2WD;706193;OuestCharge - Diva Sp - Becon-les-Granits - Tilleuls;;50 Boulevard du Doyenné, Angers 49100 France;;[-0.527251, 47.437306];;FRS14ERJJF1;JCWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.266139;47.325442;;;; +;;;;;;;;FRM13PH8MP2KTFOQ;514394;OuestCharge - Diva Sp - Begrolles-en-Mauges - Abbaye;;49 Boulevard Louis Blanc, La Roche-sur-Yon 85000 France;;[-0.525211, 47.442282];;FRS14EXUBA1;RXSM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.032016;47.331241;;;; +;;;;;;;;FRM13POQETE8EV5G;706190;OuestCharge - Diva Sp - Bouchemaine - Chevriere;;51 Place de la Victoire, Tourcoing 59200 France;;[-1.174833, 47.739167];;FRS14ETXRA2;MEGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.028215;47.055246;;;; +;;;;;;;;FRM13PUEYLQLJOZZ;880221;OuestCharge - Diva Sp - Bouchemaine - Plessis;;Rue du Grand Galion, Rivières 81600 France;;[-0.808266, 47.55254];;FRS14EUSQR2;EFJE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.704934;47.527509;;;; +;;;;;;;;FRM13PUNIBW0BDIK;481980;OuestCharge - Diva Sp - Brain-sur-Allonnes - Foire;;295 Avenue Thiers, Bordeaux 33100 France;;[-1.174242, 47.739155];;FRS14EUZQK2;RYEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.483028;47.348051;;;; +;;;;;;;;FRM13PIL6NJST1KN;577475;OuestCharge - Diva Sp - Briollay - Paul Cezanne;;Rue François Perroux, Baillargues 34670 France;;[-0.688459, 47.373979];;FRS14EUUHG2;VXTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.7441279;47.342459;;;; +;;;;;;;;FRM13PPTTDTJW2TK;514397;OuestCharge - Diva Sp - Brissac-Quince - Gaulle;;39 Boulevard Gay Lussac, Marseille 13014 France;;[-1.430135, 47.200016];;FRS14EUTAA2;QJUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.737473;46.901893;;;; +;;;;;;;;FRM13PV3SQCFZ3B0;481797;OuestCharge - Diva Sp - Beaufort-en-Vallee - Republique;;Chemin de la Farlède, La Seyne-sur-Mer 83500 France;;[-1.653893, 47.414195];;FRS14ETSLZ2;CALH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.695545;47.342284;;;; +;;;;;;;;FRM13PQUT7OKQ0SX;828300;OuestCharge - Diva Sp - Beaufort-en-Vallee - Equisseaux;;16 Rue Philippe Lebon, Perpignan 66000 France;;[-1.432675, 47.19593];;FRS14EPEWP1;CBZU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.513712;47.461336;;;; +;;;;;;;;FRM13PYDWQGIEKHG;577478;OuestCharge - Diva Sp - Avrille - Alphonse Loubat;;72 Esplanade Parmentier, Berck 62600 France;;[-2.316809, 47.448766];;FRS14EPFJR1;XVUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.666373;47.3281;;;; +;;;;;;;;FRM13PGGE0J0EACH;781596;OuestCharge - Diva Sp - Angers - Jean XXIII;;81 Avenue du Grand Sud, Chambray-lès-Tours 37170 France;;[-2.319294, 47.447462];;FRS14EPHPK1;YYYP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.507161;47.267334;;;; +;;;;;;;;FRM13PPMKAPXPJIE;413738;OuestCharge - Diva Sp - Angers - Academie;;Rue du Pont Colbert, Versailles 78000 France;;[-1.644031, 47.380213];;FRS14EPARA1;XVUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.530352;47.441948;;;; +;;;;;;;;FRM13PYSFQV000CI;880218;OuestCharge - Diva Sp - Aubigne-sur-Layon - 19 Mars 1962;;42 Rue Paul Eluard, Saint-Denis 93200 France;;[-1.452347, 47.623454];;FRS14ELGRF2;YYYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.682692;47.28067;;;; +;;;;;;;;FRM13PKFGPLZY9XH;706187;OuestCharge - Quick Charger Evtronic - Avrille - D768;;75 Avenue du Général Leclerc, Soisy-sous-Montmorency 95230 France;;[-1.6517673, 47.4118735];;FRS14ELKXJ2;LZPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.527051;47.329273;;;; +;;;;;;;;FRM13PCXCWHGZ76X;756804;OuestCharge - Diva Sp - Avrille - Victor Hugo;;309 Avenue du Docteur Calmette, La Farlède 83210 France;;[-1.419992, 47.495595];;FRS14ELLFM2;LZPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.277813;47.331215;;;; +;;;;;;;;FRM13PVKCVXORVJJ;851877;OuestCharge - Diva Sp - Avrille - Maison Medicale;;163 Rue de Gouesnou, Brest 29200 France;;[-1.307135, 47.205485];;FRS14ESLHH2;SJKZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.792024;47.299795;;;; +;;;;;;;;FRM13PZA82QDL3L4;697025;OuestCharge - Diva Sp - Bauge - Europe;;5 Rue de Paris, Saint-Ouen-l'Aumône 95310 France;;[-1.601608, 46.891832];;FRS14ERAXU1;SHWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.440785;47.317501;;;; +;;;;;;;;FRM13PWLAHPZSCZF;706184;OuestCharge - Diva Sp - Bauge - Marche;;1 Impasse Jacques de Noell, Perpignan 66000 France;;[-1.593407, 46.887125];;FRS14ELCJN2;SHWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.431817;47.261013;;;; +;;;;;;;;FRM13PVMLQ8YA4XO;511325;OuestCharge - Diva Sp - Beaucouze - Domino;;2 Rue Louis Blériot, Cambrai 59400 France;;[-2.045511, 47.585254];;FRS14ELBMA2;SJKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5939858;47.114189;;;; +;;;;;;;;FRM13PB9WICAGNEG;494481;OuestCharge - Diva Sp - Beaucouze - Grange Aux Belles;;111 Avenue de Palavas, Montpellier 34000 France;;[-1.399953, 47.155328];;FRS14EPKMQ1;NUAB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.621305;47.384129;;;; +;;;;;;;;FRM13PULLQFHU4NZ;;OuestCharge - ePremium - Loire - Ire;;28 Avenue du Président Edouard Herriot, Vannes 56000 France;;[-1.374239, 47.411751];;FRS14EPWYW1;YFVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.626831;47.259812;;;; +;;;;;;;;FRM13POSK96BNRD9;;OuestCharge - Diva Sp - Landemont - Saint Sauveur;;Rue des Hauts Champs, La Chapelle-Saint-Mesmin 45380 France;;[-1.933519, 47.244624];;FRS14EPZXA1;EVSU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.200174;47.270324;;;; +;;;;;;;;FRM13PKYWXS8TNNN;;OuestCharge - Diva Sp - Saint-Pierre-Montlimart - Parc;;67-73 Rue Champollion, Vitry-sur-Seine 94400 France;;[-1.75007, 47.519053];;FRS14EQALF1;SMST1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.187091;47.245187;;;; +;;;;;;;;FRM13PVGYZ8CMZRO;;OuestCharge - Diva Sp - Saint-Sylvain-d'Anjou - Veillere;;35-77 Rue Benoît Frachon, Bobigny 93000 France;;[-1.248399, 47.076892];;FRS14ETMMK2;MWFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.335882;47.127457;;;; +;;;;;;;;FRM13PYACDJSIY62;;OuestCharge - Diva Sp - Sarrigne - Mairie;;8 Rue Gay Lussac, Chennevières-sur-Marne 94430 France;;[-1.300524, 47.101168];;FRS14EPZAM1;ADTT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.097518;47.131272;;;; +;;;;;;;;FRM13PUDCFNPL8VK;;OuestCharge - Diva Sp - Saumur - Europe;;55 Chemin de Halage, Sotteville-lès-Rouen 76300 France;;[-1.605544, 47.362484];;FRS14EPMEU1;ADTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.201325;47.132868;;;; +;;;;;;;;FRM13PEPGB68LSIC;;OuestCharge - Diva Sp - Saumur - Gaulle;;83 Rue Ernest Renan, Reims 51100 France;;[-1.833976, 47.627398];;FRS14EPUCM1;NQNJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.340087;47.282658;;;; +;;;;;;;;FRM13PGJM32KDT73;;OuestCharge - Quick Charger Evtronic - Saumur - Carrousel;;28 Boulevard Louis Chartoire, Clermont-Ferrand 63000 France;;[-1.866043, 47.697553];;FRS14ETGXN2;NQNJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.345177;47.275217;;;; +;;;;;;;;FRM13PYLFBSWOZES;;OuestCharge - Diva Sp - Saumur - Chumeau;;8 Impasse Edmond Audran, Toulouse 31200 France;;[-1.953551, 47.518842];;FRS14ESRSZ2;RYEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.317604;47.129005;;;; +;;;;;;;;FRM13PJNUDLIYWFR;;OuestCharge - Diva Sp - Saumur - Moulins;;5 Esplanade Charles de Gaulle, Nanterre 92000 France;;[-2.416506, 47.324312];;FRS14EQFUF1;PKWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.122795;47.362983;;;; +;;;;;;;;FRM13PGX8QBUSVXW;;OuestCharge - Diva Sp - Savennieres - Mail;;6 Route de Brive, Tulle 19000 France;;[-2.431082, 47.325404];;FRS14EQGSB1;LAEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.741972;47.540558;;;; +;;;;;;;;FRM13PUEV5Y4HIUP;;OuestCharge - Diva Sp - Segre - Port;;Avenue de Labarde, Bordeaux 33300 France;;[-2.416486, 47.324248];;FRS14ESLHY2;LGYR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.750358;47.198616;;;; +;;;;;;;;FRM13PGYNNQEOQUU;;OuestCharge - Quick Charger Evtronic - Segre - Promenade;;14 Rue de l'Argentique, Fragnes-La Loyère 71530 France;;[-1.372122, 47.621263];;FRS14ESMEH2;DBRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.432168;47.398087;;;; +;;;;;;;;FRM13PCCCQNBES7L;;OuestCharge - Diva Sp - Segre - Lauingen;;1 Rue de Sansy, Annecy 74600 France;;[-1.5012, 47.437694];;FRS14ETELV2;FQVN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.433513;47.378032;;;; +;;;;;;;;FRM13PT2C8IPTWZ0;;OuestCharge - Diva Sp - La Seguiniere - Industrie;;597 Avenue Saint-Maurice, Manosque 04100 France;;[-2.152043, 47.330177];;FRS14ETAUG2;UXYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.218858;47.136163;;;; +;;;;;;;;FRM13PALJ6PPQPWI;;OuestCharge - Quick Charger Evtronic - Saint-Melaine-sur-Aubance - Treillebois;;Route du Jaï, Châteauneuf-les-Martigues 13220 France;;[-1.999195, 47.064589];;FRS14EMAGW2;UVGY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.014487;47.01779;;;; +;;;;;;;;FRM13PNJ7DFNAEGP;;OuestCharge - Diva Sp - Seiches-sur-le-Loir - Coudray;;Impasse des Bois de Tharlet, Viriat 01440 France;;[-1.346143, 47.448143];;FRS14ELVPA2;WBGB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.887244;47.433331;;;; +;;;;;;;;FRM13PABIQLDXW2C;;OuestCharge - Diva Sp - Saint-Lambert-du-Lattay - Marie Lise;;Avenue des Vergers, Plan-d'Orgon 13750 France;;[-1.281681, 47.140034];;FRS14ELRGF2;PPDX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.754958;47.436521;;;; +;;;;;;;;FRM13PQPVEMIHEDP;;OuestCharge - Diva Sp - Saint-Lambert-la-Potherie - Aubriaie;;620 Boulevard du Commerce, Puget-sur-Argens 83480 France;;[-1.4801865, 47.4399];;FRS14EMZGZ1;PVCY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.45349;47.112585;;;; +;;;;;;;;FRM13PYMKN4UZNFP;;OuestCharge - Diva Sp - Saint-Laurent-de-la-Plaine - Mauges;;Avenue Marcellin Berthelot, Saint-Martin-de-Crau 13310 France;;[-1.710672, 47.381489];;FRS14ELVPA1;VVAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.547222;47.127249;;;; +;;;;;;;;FRM13PIR3488PKF3;;OuestCharge - Diva Sp - Oree-d Anjou - Maroni;;Voie du Grand Large, Dourges 62119 France;;[-2.15049, 47.326231];;FRS14ELRGF1;VVAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.191869;47.123621;;;; +;;;;;;;;FRM13PGAHEBRSFVD;;OuestCharge - Diva Sp - Saint-Leger-des-Bois - Ferrieres;;68 Chemin des Ormeaux, Limonest 69760 France;;[-1.621944, 47.574983];;FRS14ELGRF1;MLAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.436018;47.183363;;;; +;;;;;;;;FRM13PKIIZS7PVVD;;OuestCharge - Diva Sp - Saint-Leger-sous-Cholet - 14 Décembre 1863;;Chemin de Noyelles, Hénin-Beaumont 62110 France;;[-1.623028, 47.566145];;FRS14EMAGW1;FTLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.084647;47.369918;;;; +;;;;;;;;FRM13PKSP20MZJOH;;OuestCharge - Diva Sp - Sevremoine - Prieure;;Rue Joseph Cugnot, Narbonne 11100 France;;[-1.284393, 47.346324];;FRS14ELLFM1;NXLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.09346;47.232194;;;; +;;;;;;;;FRM13PFMWWHATL3A;;OuestCharge - Diva Sp - Sevremoine - Commerce;;Traverse des Brucs, Valbonne 06560 France;;[-2.027984, 47.289456];;FRS14ELKXJ1;EAYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.540393;47.011961;;;; +;;;;;;;;FRM13PER6BQRZZTP;;OuestCharge - ePremium - Sevremoine - Petit Lapin;;7 Rue du Moulin de Brindos, Anglet 64600 France;;[-1.793377, 47.415736];;FRS14ELMZY1;EAYU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.580587;46.967023;;;; +;;;;;;;;FRM13PYVJUQE7XDA;;OuestCharge - Diva Sp - Saint-Martin-du-Fouilloux - Mairie;;1 Terrasse Bellini, Puteaux 92800 France;;[-1.596198, 46.995125];;FRS14ELMLF1;NXLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.582848;46.92994;;;; +;;;;;;;;FRM13PEZBAZP1QTI;;OuestCharge - Diva Sp - Saint-Mathurin-sur-Loire - 1962;;4 Rue Eric Tabarly, Quimperlé 29300 France;;[-1.861284, 47.359424];;FRS14EMCQZ1;LBSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.182186;47.277731;;;; +;;;;;;;;FRM13PWLH6PU4ONQ;;OuestCharge - Diva Sp - Saint-Melaine-sur-Aubance - Brousse;;Rue Jean Brulier du Vercors, Béziers 34500 France;;[-1.349169, 47.236772];;FRS14EQRTM2;XCCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.196869;47.274213;;;; +;;;;;;;;FRM13PDZK91KHIS4;;OuestCharge - Diva Sp - Saint-Jean-des-Mauvrets - Almand;;10 Allée des Savoies, Vénissieux 69200 France;;[-1.816219, 46.997306];;FRS14EVZLN2;RGDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.180168;47.228305;;;; +;;;;;;;;FRM13PQRFXWU2P8I;;OuestCharge - Diva Sp - Varennes-sur-Loire - Gare;;Avenue Henri Barbusse, Bourgoin-Jallieu 38300 France;;[-1.793926, 47.0201569];;FRS14EMCWD1;JNHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.58056;47.517877;;;; +;;;;;;;;FRM13PEIJQU5GBZX;;OuestCharge - ePremium - Varrains - Mairie;;172 Rue de l'Étang, Limonest 69760 France;;[-1.385048, 47.098967];;FRS14EQTAF2;YUYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.5765;47.384481;;;; +;;;;;;;;FRM13PWL9CIGXIQ9;;OuestCharge - Diva Sp - Vauchretien - Eglise;;142 Avenue Lavoisier, Massieux 01600 France;;[-1.676954, 47.596801];;FRS14EMAXF1;MRRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.74289;47.406206;;;; +;;;;;;;;FRM13PNFXKHPISCR;;OuestCharge - ePremium - Vaudelany - Mairie;;1 Boulevard Lucien Sampaix, Saint-Fons 69190 France;;[-1.486906, 47.057456];;FRS14EQRYG2;CJMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.781826;47.104023;;;; +;;;;;;;;FRM13PK8PQPUH6YB;;OuestCharge - Diva Sp - Erdre-en-Anjou - Halles;;1 Rue Eugène Weiss, Saint-Étienne 42000 France;;[-1.228706, 47.430853];;FRS14EMSRR1;RMSR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.779158;47.061157;;;; +;;;;;;;;FRM13PBV9ES5PSGD;;OuestCharge - Diva Sp - Vernantes - Mairie;;200 Route de Montélimar, Grignan 26230 France;;[-2.451702, 47.396174];;FRS14EMVLR1;RMSR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.175058;47.247989;;;; +;;;;;;;;FRM13PCWXBIOCK47;;OuestCharge - Diva Sp - Vihiers - Minage;;Rue Louis Leprince Ringuet, Voiron 38500 France;;[-2.159951, 47.482992];;FRS14EMPCW1;LNRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.038474;47.123441;;;; +;;;;;;;;FRM13PKLJUML34FA;;OuestCharge - Diva Sp - Villedieu-la-Blouere - Malte;;Avenue du Pech de Valras, Béziers 34500 France;;[-2.158828, 47.480876];;FRS14ELBMA1;FTLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.103525;47.057271;;;; +;;;;;;;;FRM13PBODBAXFWO9;;OuestCharge - Diva Sp - Villemoisan - Dunkerque;;23 Route de Pauillac, Lamarque 33460 France;;[-1.197509, 47.621767];;FRS14EKPVM2;JVPG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.095683;47.517368;;;; +;;;;;;;;FRM13PSMLJQ89TDS;;OuestCharge - Diva Sp - Villeveque - Pierre;;23 Rue des Hêtres, Saint-Julien-lès-Metz 57070 France;;[-2.40979918, 47.28394529];;FRS14EKSXC2;JGTD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.867052;47.186286;;;; +;;;;;;;;FRABAPGSYEOU8ML0;;OuestCharge - Diva Sp - Vivy - Soeurs;;149 Malagaito Sud, Leucate 11370 France;;[-2.239721, 47.446531];;FRS14EMMEP1;SYKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.308939;47.783883;;;; +;;;;;;;;FRM13PGFPIIHPEMY;;OuestCharge - Diva Sp - Yzernay - Corbert;;Rue des Aiguës Marines, Pornic 44210 France;;[-1.761038, 47.475429];;FRS14EMKNB1;NYMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.161966;47.500873;;;; +;;;;;;;;FRM13PN1OD6X6J1D;;OuestCharge - Diva Sp - La Varenne - Bretagne;;Moulin de Domèvre, Vaxy 57170 France;;[-1.767038, 47.477271];;FRS14EMNLY1;EEHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.632266;47.720665;;;; +;;;;;;;;FRM13PPK9OWIO0TU;;OuestCharge - Diva Sp - Soucelles - Vignes;;Rue de l'Aurore, Saint-Germain-en-Laye 78100 France;;[-1.761649, 47.472946];;FRS14EMMWY1;EEHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.376317;47.313832;;;; +;;;;;;;;FRM13PBBUN2MXDGQ;;OuestCharge - Diva Sp - Soulaines-sur-Aubance - Cortequisse;;29 Boulevard Franck Pilatte, Nice 06300 France;;[-1.95605, 47.041524];;FRS14EVZLN1;FHMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.293884;47.264783;;;; +;;;;;;;;FRM13PHKAUJ09YVD;;OuestCharge - Diva Sp - Soulaire-et-Bourg - Ecole;;4 Rue Charles Renard, Saint-Lubin-des-Joncherets 28350 France;;[-1.18643, 47.042495];;FRS14EMSAP1;HMWC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.858725;47.459991;;;; +;;;;;;;;FRM13PIZWTR3Q4WP;;OuestCharge - Diva Sp - La Tessoualle - Poste;;La Tuilerie, Dracy-le-Fort 71640 France;;[-1.848403, 47.418352];;FRS14EMELY1;HMWC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.449028;47.319113;;;; +;;;;;;;;FRM13PAKOHJSGZDG;;OuestCharge - Diva Sp - Thouarce - Ponts;;4 Chemin sous les Jardins, Montmartin-sur-Mer 50590 France;;[-1.970647, 47.41373];;FRS14EMDFG1;SYKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.57997;48.8413;;;; +;;;;;;;;FRM13PJFUQO0CX1X;;OuestCharge - Diva Sp - Tierce - Touraine;;25 Rue Thalès, Nîmes 30900 France;;[-1.48938447, 47.29850005];;FRS14EMXLW1;ZWVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.486141;46.123436402688206;;;; +;;;;;;;;FRM13PX3IV7MS20Y;;OuestCharge - Diva Sp - Tillieres - Sports;;205 Avenue de Fronton, Toulouse 31200 France;;[-1.558977, 47.384186];;FRS14EMVVC1;CALY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.30994;48.6122;;;; +;;;;;;;;FRM13PTISNEH7IUG;;OuestCharge - Diva Sp - Torfou - Clemenceau;;Rue Benoît Gelibert, Échalas 69700 France;;[-1.348234, 47.319132];;FRS14EMZFK1;MUXN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.163872;47.3512055;;;; +;;;;;;;;FRM13PBJRSHPQN6R;;OuestCharge - Diva Sp - Trelaze - Perreyeux;;21 Rue de la Charbonnière, Terres-de-Haute-Charente 16270 France;;[-1.290308, 47.276517];;FRS14EMXMN1;DCAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.006097;49.0368902;;;; +;;;;;;;;FRM13PIUBOYD33AF;;OuestCharge - Diva Sp - Trelaze - Buisson;;106 Avenue Simone Veil, Nice 06200 France;;[-1.334967, 47.269653];;FRS14ELCJN1;NMHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.300755;49.1281;;;; +;;;;;;;;FRM13PRUH4VBDEU2;;OuestCharge - Diva Sp - Trelaze - Goduciere;;169 Route de Villeneuve, La Chapelle-Saint-Ursin 18570 France;;[-1.490912, 47.097019];;FRS14EHQRN2;AAPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.8531;45.76011619906451;;;; +;;;;;;;;FRM13PS0GR1QBOSU;;OuestCharge - ePremium - Traleze - Gare;;24 Boulevard Général de Gaulle, Saint-Étienne-du-Grès 13103 France;;[-2.09213, 47.395745];;FRS14EZBGP1;YQNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.4245618642693594;44.83887410485574;;;; +;;;;;;;;FRM13PC5BXB3E6ZD;;OuestCharge - Diva Sp - Trementines - Ravel;;Avenue de la Plage, Vias 34450 France;;[-1.177845, 47.370906];;FRS14EHRAY2;TERX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.72;50.778986100000004;;;; +;;;;;;;;FRM13PDJ0EEX8K6J;;OuestCharge - Diva Sp - La Menitre - Leon Faye;;61 Boulevard Paul Langevin, Fontaine 38600 France;;[-1.531968, 47.553973];;FRS14EQMSF2;XKMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.0769923;49.0555095;;;; +;;;;;;;;FRM13PHPWSYVR6AD;;OuestCharge - Diva Sp - Montfaucon-Montigne - Saint-Maurice;;Avenue du Campon, Le Cannet 06110 France;;[-1.410933, 47.081675];;FRS14EQMKF2;AYXS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.3900578;43.300038;;;; +;;;;;;;;FRABAPH5VUJOQTXG;;OuestCharge - Diva Sp - Montjean-sur-Loire - Cap Loire;;2 Rue des Magnolias, Montélier 26120 France;;[-1.397512, 47.074964];;FRS14ENNMU1;CKDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.0936;43.72;;;; +;;;;;;;;FRABAPBHH4EKNEYH;;OuestCharge - Diva Sp - Montreuil-Juigne - Mairie;;43 Rue du Parc, Épinay-sur-Orge 91360 France;;[-1.174149, 47.367033];;FRFR1ESGMR1;ZLAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.3003961423287695;48.69;;;; +;;;;;;;;FRABAPW1O0NOVXTC;;OuestCharge - Diva Sp - Montreuil-Juigne - Jean Baptiste;;12 Rue Marie-Louise Dissard, Toulouse 31300 France;;[-1.910281, 47.125105];;FRFR1ESVVR1;BMMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.6822308312133751;48.931373;;;; +;;;;;;;;FRABAPMKWTRFEQK1;;OuestCharge - Diva Sp - Montreuil-Bellay - Concorde;;2 Rue Daniel Mayer, Longjumeau 91160 France;;[-1.937478, 47.114005];;FRFR1EVCMM1;VEXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.102562200000012;50.68494;;;; +;;;;;;;;FRM13PUSBPJLWZ15;;OuestCharge - Diva Sp - Morannes - Croix Verte;;2 Rue Marie-Louise Dissard, Toulouse 31300 France;;[-2.391569, 47.429477];;FRFR1ERQUT1;KFDY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.0352479;48.841032;;;; +;;;;;;;;FRABAPPGWCRPMKIO;;OuestCharge - ePremium - Morannes - Beaumont;;5 Avenue de Roquerousse, Maussane-les-Alpilles 13520 France;;[-1.990829, 47.653232];;FRFR1ENWXZ1;WPHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.24;50.684876;;;; +;;;;;;;;FRABAPUCXEDJDCYB;;OuestCharge - Diva Sp - Mouliherne - Anjou;;490 Chemin des Asclépios, La Baume-de-Transit 26790 France;;[-2.479942, 47.279449];;FRFR1EXRVY1;BLAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.501248;48.931356;;;; +;;;;;;;;FRM13PU796VHPE9G;;OuestCharge - Diva Sp - Moze-sur-Louet - Eglise;;14 Rue Louis Armand, Voiron 38500 France;;[-2.039746, 47.080729];;FRFR1EGVNP1;EMGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.1;50.684898;;;; +;;;;;;;;FRABAPOPUJ4UCI7I;;OuestCharge - Diva Sp - Murs-Erigne - De Grand Clos;;995 Rue Colbert, Carcassonne 11000 France;;[-1.337746, 47.139538];;FRFR1EHEMT1;EMGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.13;50.684918;;;; +;;;;;;;;FRABAPH0XRZTNB67;;OuestCharge - Diva Sp - Noyant - Mairie;;Rue de la Glacière, Vitrolles 13127 France;;[-1.88, 47.288138];;FRFR1EDJYT1;UJVZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.23;50.684964;;;; +;;;;;;;;FRABAPSFIA7B7ZKA;;OuestCharge - ePremium - Noyant - Ecoles;;23 Avenue du Campon, Le Cannet 06110 France;;[-2.056627, 47.27916];;FRFR1EMFYB1;UJVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.212311;50.684984;;;; +;;;;;;;;FRABAPSY6TQUL6QL;;OuestCharge - Diva Sp - La Membrolle-sur-Longuenee - Cimetiere;;20 Boulevard Joseph Paul Boncour, Blois 41000 France;;[-1.294157, 47.39103];;FRFR1ENDGQ1;TTMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.207246;50.685013;;;; +;;;;;;;;FRABAPFCDYTO0R4D;;OuestCharge - Diva Sp - Le Lion-d'Angers - Foire;;240 Avenue Francis Tonner, Cannes 06150 France;;[-2.512496, 47.296143];;FRFR1ELTQG1;TTMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.798854;50.685049;;;; +;;;;;;;;FRABAPVYUJSOBDFD;;OuestCharge - Diva Sp - Saint-Jean-de-Linieres - Nationale;;548 Avenue du Général de Gaulle, Clamart 92140 France;;[-2.167744, 47.411584];;FRS14ENDGM1;ECGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.207433;44.1203594;;;; +;;;;;;;;FRM13PGP4NZAMPXA;;OuestCharge - Diva Sp - Lire - Haut Fief;;240 Parc d'Affaires des Portes, Val-de-Reuil 27100 France;;[-1.674989, 47.667198];;FRS14ENDBV1;ECGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.212336;48.7571171;;;; +;;;;;;;;FRM13PW22UGJSMYD;;OuestCharge - Diva Sp - Le Longeron - Bonnet;;14 Boulevard Marceau Guillot, Argenteuil 95100 France;;[-2.074784, 47.317146];;FRS14ENBLR1;AYXS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.20737;48.9565006;;;; +;;;;;;;;FRM13PL8S0A4J2GJ;;OuestCharge - Diva Sp - Longue-Jumelles - Republique;;8 Avenue Rhin et Danube, Vence 06140 France;;[-2.092474, 47.340349];;FRS14EHTZQ2;UKAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.207306;45.8414;;;; +;;;;;;;;FRM13PM2DDVWBKWB;;OuestCharge - Diva Sp - Longue-Jumelles - Foire;;3 Rue de Montels Église, Lattes 34970 France;;[-2.057012, 47.474882];;FRS14EQKKC2;LVWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.207187;45.976484;;;; +;;;;;;;;FRM13PQIH3BAQZEB;;OuestCharge - Diva Sp - Le Louroux-Beconnais - Noel Pinot;;238 Avenue Pierre Brossolette, Malakoff 92240 France;;[-1.317223, 47.657008];;FRS14ENQAG1;KJUF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.207124;45.720859;;;; +;;;;;;;;FRM13PHN9WAB5YWI;;OuestCharge - Diva Sp - Martigne-Briand - Cousin;;35 Chemin de Saint-Jean du Désert, Marseille 13005 France;;[-2.388551, 47.285563];;FRS14ENQKM1;WVPE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.207047;45.979448;;;; +;;;;;;;;FRM13PZWOMJGRCUI;;OuestCharge - Diva Sp - Maulevrier - Stofflet;;Zac des Baterses, Beynost 01700 France;;[-2.388497, 47.285516];;FRS14ENUGZ1;VYSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.206962;44.388486;;;; +;;;;;;;;FRM13PLZZ3ATOVJ7;;OuestCharge - Diva Sp - Le May-sur-Evre - Eglise;;430 Rue du Grand Gigognan, Avignon 84000 France;;[-2.388422, 47.28544];;FRS14EPZXA2;DPVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.2199154;45.734166;;;; +;;;;;;;;FRM13PE88OYFM8DH;;OuestCharge - Diva Sp - Maze - Richou;;16 Boulevard Maillot, Neuilly-sur-Seine 92200 France;;[-1.877391, 47.290846];;FRS14EQFUF2;KVPE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.1928184;44.612295;;;; +;;;;;;;;FRM13POAU5YBNLRK;;OuestCharge - Diva Sp - La Meignanne - Angers;;7-9-11 Chemin de la Raude, Tassin-la-Demi-Lune 69160 France;;[-1.379295, 47.712905];;FRS14ESMEH1;WADM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.2566243;49.053385;;;; +;;;;;;;;FRM13PM1EIINVUXQ;;OuestCharge - Diva Sp - Noyant-la-Gravoyere - Velodrome;;7 Avenue de Magudas, Le Haillan 33185 France;;[-1.340886, 47.178242];;FRS14ENMEG1;HWFZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7352;44.46386;;;; +;;;;;;;;FRM13PAIILRQ9GK8;;OuestCharge - Diva Sp - Saint-Clement-de-la-Place - Tabuteau;;145 Rue Alphonse Beau de Rochas, Castelnau-le-Lez 34170 France;;[-1.972218, 47.372136];;FRS14EQGSB2;SUNU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.715638;43.235422;;;; +;;;;;;;;FRM13POBINORTZUC;;OuestCharge - ePremium - La Romagne - Touraine;;16 Route de Baziege la Lauragaise, Labège 31670 France;;[-1.403169, 47.701217];;FRS14ELAEZ1;XJJU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.074257;43.866454;;;; +;;;;;;;;FRM13PWV0SZKH55C;;OuestCharge - Diva Sp - Les Rosiers-sur-Loire - Mail;;77 Rue Roland Garros, Blagnac 31700 France;;[-1.37759, 47.718186];;FRS14EQALF2;PMLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7421819;50.739646;;;; +;;;;;;;;FRM13PEY80KDCGAI;;OuestCharge - Diva Sp - Saint-Andre-de-la-Marche - Auguste Vincent;;31 Rue Jean Perrin, Alès 30100 France;;[-1.380766, 47.720652];;FRS14EQPTT2;VHYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.595174;43.908974;;;; +;;;;;;;;FRM13PCLGWBICPBU;;OuestCharge - Diva Sp - Saint-Barthelemy-d'Anjou - Marche;;23 Avenue Graham Bell, Bussy-Saint-Georges 77600 France;;[-1.282014, 47.085153];;FRS14EQNJR2;LMVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.877256;48.664224;;;; +;;;;;;;;FRM13PVGSP7YZJNR;;OuestCharge - Diva Sp - Saint-Christophe-du-Bois - Chapelle;;45 Avenue Charles Rouxel, Pontault-Combault 77340 France;;[-1.422498, 47.124176];;FRS14EHTDE2;SWWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.119464;48.40612;;;; +;;;;;;;;FRM13POIIHE59O2J;;OuestCharge - Diva Sp - Saint-Florent-le-Vieil - La Chevalerie;;1117 Avenue Edouard Herriot, Villefranche-sur-Saône 69400 France;;[-1.987865, 47.150435];;FRS14EKMFJ2;SXQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.114309;43.641184;;;; +;;;;;;;;FRM13PYJVZYZLZON;;OuestCharge - Diva Sp - La Romagne - Nationale;;165 Boulevard Gambetta, Sannois 95110 France;;[-1.61073, 47.091867];;FRS14EDBMS2;MBSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.442532;46.208436;;;; +;;;;;;;;FRM13PROAELTYHGN;;OuestCharge - Diva Sp - Sainte-Gemmes-sur-Loire - Mairie;;Rue Dimitri Amilakvari, Béziers 34500 France;;[-1.615587, 47.090245];;FRS14EMDFG2;TXMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.269004;45.821636;;;; +;;;;;;;;FRM13PFYFFW8P7QL;;OuestCharge - Diva Sp - Saint-Georges-sur-Loire - Monprofit;;108 Avenue georges clemenceau, Nanterre 92000 France;;[-1.279461, 47.089987];;FRS14EWTMQ2;NUAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.741735;43.424749;;;; +;;;;;;;;FRM13PWFTGFOVTRE;;OuestCharge - Quick Charger Evtronic - Saint-Germain-des-Pres - Loire;;370 Avenue Lavoisier, La Valette-du-Var 83160 France;;[-2.10196, 47.115941];;FRS14EVQMF2;CUVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.260587;50.992742;;;; +;;;;;;;;FRM13PP8NE1JHEQV;;OuestCharge - Diva Sp - Saint-Hilaire-Saint-Florent - Mairie;;2B Rue des Quatrefages, Nîmes 30000 France;;[-1.754012, 46.963716];;FRS14EVXZW2;PVYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.982722;44.952304;;;; +;;;;;;;;FRM13PCVTJZP23HZ;;OuestCharge - ePremium - Rochefort-Sur-Loire - Pilori;;381 Avenue Jean Jaurès, Dammarie-les-Lys 77190 France;;[-1.385744, 47.253189];;FRS14EJUWT2;CHVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.421482;43.909011;;;; +;;;;;;;;FRM13PWLDRUCN0MP;;OuestCharge - Diva Sp - Les Ponts-de-Ce - Marechal Leclerc;;264T Rue Roger Salengro, Lille 59260 France;;[-1.808674, 47.103256];;FRS14EJYZV2;MGJX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.521648;43.280118;;;; +;;;;;;;;FRM13PCSDTYL4XBB;;OuestCharge - Diva Sp - Pellouailles-les-Vignes - Chapelle;;21 Rue de Didenheim, Mulhouse 68200 France;;[-1.812257, 47.103159];;FRS14EJZGZ2;MGJX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.828952;44.318093;;;; +;;;;;;;;FRM13PCCLDSL1I4Z;;OuestCharge - Diva Sp - Le Plessis-Grammoire - Gilles;;49 Boulevard Paul Phalempin, Douai 59500 France;;[-2.044815, 47.208127];;FRS14EXRXZ1;MGJX3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.199395;43.349417;;;; +;;;;;;;;FRM13PPD4HPWAKTN;;OuestCharge - Diva Sp - Le Plessis-Mace - Bellay;;18 Rue Chaptal, Saint-Brieuc 22000 France;;[-1.643245, 47.037744];;FRS14EWYAW1;KZPV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.70452;47.997848;;;; +;;;;;;;;FRM13PKT5N8G7RMY;;OuestCharge - Diva Sp - La Pommeraye - Chais;;1 Route des Aresquiers, Vic-la-Gardiole 34110 France;;[-1.640351, 47.03601];;FRS14EWXFQ1;KSDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.7358;43.435307;;;; +;;;;;;;;FRM13PXTZTDXREI6;;OuestCharge - Diva Sp - Les Ponts-de-Ce - Président Vilette;;9 Place de la Gare, Angoulême 16000 France;;[-2.192189, 47.441001];;FRS14EWUJK1;HGZD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.361202;43.866041;;;; +;;;;;;;;FRM13PEEFI9CMTW1;;OuestCharge - Diva Sp - Les Ponts-de-Ce - Pierre de Coubertin;;Rue Michel Faraday, Bourges 18000 France;;[-2.014579, 47.257994];;FRS14EXLHM1;HHNJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.662712;47.277542;;;; +;;;;;;;;FRM13PQNERYS0WMI;;OuestCharge - ePremium - Ombree D Anjou - Foire;;16 Rue de la Griotte, Kingersheim 68260 France;;[-1.49881, 47.655756];;FRS14EXRJL1;HGZD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.982861;49.483871;;;; +;;;;;;;;FRM13PBWI7YUBTIJ;;OuestCharge - Diva Sp - La Poueze - Union;;130 Avenue Pierre Semard, Avignon 84000 France;;[-1.672813, 47.262506];;FRS14EXPNY1;HJXH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.363737;49.483861;;;; +;;;;;;;;FRM13PNTVGVQ3QZ5;;OuestCharge - Diva Sp - Ombree D Anjou - Foire;;6 Rue Peugniez, Courcelles-lès-Lens 62970 France;;[-1.938037, 47.373695];;FRS14EXLWP1;HHNJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.065185;49.4841;;;; +;;;;;;;;FRM13PZKDFFRVJVT;;OuestCharge - Diva Sp - La Possonniere - Mairie;;Rue Colbert, Carcassonne 11000 France;;[-1.939955, 47.358691];;FRS14EWPZP2;HJXH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.252902;48.401232;;;; +;;;;;;;;FRM13PA4UPFN0L2I;;OuestCharge - Diva Sp - Haute-Goulaine - Soleil;;43 Boulevard des Marins, Châteauroux 36000 France;;[-2.07738, 47.550071];;FRS14EWJCX2;AFWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.108344;45.800386;;;; +;;;;;;;;FRM13PILU2D0DW8B;;OuestCharge - Diva Sp - Heric - Océan;;149 Boulevard Paul Phalempin, Douai 59500 France;;[-1.590963, 47.735648];;FRS14EVUAW2;WJPX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.738868;47.690076;;;; +;;;;;;;;FRM13PXQFUC40G3S;;OuestCharge - Diva Sp - Haute-Goulaine - Châtaigneraie;;35 Rue de l'Avenir, Illies 59480 France;;[-2.069307, 47.642319];;FRS14EVUME2;AFWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.741422;43.650773;;;; +;;;;;;;;FRM13PSGHPRL5APS;;OuestCharge - Diva Sp - Herbignac - Bourg;;Avenue du Général de Gaulle, Créteil 94000 France;;[-1.734586, 47.113739];;FRS14ESLHY1;UDLQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.125582;43.388125;;;; +;;;;;;;;FRM13PJVEBD8EYAJ;;OuestCharge - Diva Sp - Herbignac - Pasteur;;14 Rue de la Noue Guimante, Saint-Thibault-des-Vignes 77400 France;;[-1.371945, 47.251305];;FRS14EMXLW2;CCWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.117981;44.20859;;;; +;;;;;;;;FRM13POQNYMVOKHN;;OuestCharge - Pulse 50 - Heric - Erette;;97 Avenue de Thionville, Metz 57050 France;;[-1.484521, 47.24945];;FRS14EMVLR2;NHEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.118355;50.743319;;;; +;;;;;;;;FRM13PKXLBBWPBDC;;OuestCharge - Diva Sp - Isse - Gare;;22 Avenue du Pont Neuf, Annecy 74960 France;;[-1.339434, 47.083183];;FRS14EVXZW1;FCJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.11762;44.464;;;; +;;;;;;;;FRM13PET3BX6UHCK;;OuestCharge - Diva Sp - Heric - Saint-Jean;;16 Rue de l'Université, Noisy-le-Grand 93160 France;;[-1.727092, 47.055821];;FRS14EVZKK1;BGJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.485094;43.219426;;;; +;;;;;;;;FRM13PGKPELSRB0P;;OuestCharge - Diva Sp - Joue-Sur-Erdre - Mazureau;;9 Avenue Troisième Millénaire, Saint-Thibéry 34630 France;;[-2.306585, 47.399539];;FRS14EMVVC2;XQYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.115492;49.484081;;;; +;;;;;;;;FRM13PTJMAUEDWMZ;;OuestCharge - Diva Sp - Le Landreau - Moulins;;42 Avenue Henri Mares, Montpellier 34000 France;;[-2.179806, 47.352483];;FRS14EMZFK2;DCHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.34728;49.851053;;;; +;;;;;;;;FRM13PB42MUATGIM;;OuestCharge - Pulse 50 - Lege - Sainte-Marie;;165 Avenue Jean Jaurès, Aubervilliers 93300 France;;[-2.210351, 47.287351];;FRS14EMXMN2;DCHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.76877;43.488535;;;; +;;;;;;;;FRM13POZM6K3D0AA;;OuestCharge - Diva Sp - Lege - Chaussée;;183 Rue Alfred Nobel, Montpellier 34000 France;;[-1.404951, 47.365936];;FRS14EMSRR2;GYPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.490479;43.955191;;;; +;;;;;;;;FRM13PIJOAYJVK0X;;OuestCharge - Diva Sp - Fegreac - Orain;;Aéroport Montpellier Méditerranée, Mauguio 34130 France;;[-1.18292, 47.523337];;FRS14EMNLY2;AERZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.614433;47.258202;;;; +;;;;;;;;FRM13PUUYBW0AJRF;;OuestCharge - Diva Sp - La Haie-Fouassiere - Etang;;52 Boulevard de Thibaud, Toulouse 31100 France;;[-2.147443, 47.181975];;FRS14EMMEP2;NKMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.745591;45.209725;;;; +;;;;;;;;FRM13PXBHHTHGIG5;;OuestCharge - Diva Sp - Ligne - Lilas;;10 Avenue de la Division Leclerc, Arpajon 91290 France;;[-2.425414, 47.394709];;FRS14EMKNB2;NKMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.44395;44.968101;;;; +;;;;;;;;FRM13PSOK7YPDWPC;;OuestCharge - Diva Sp - Frossay - Robert Martin;;225 Avenue d'Avignon, Cavaillon 84300 France;;[-2.210336, 47.287378];;FRS14EMELY2;BGAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.085901;47.407277;;;; +;;;;;;;;FRM13PES35XG41P7;;OuestCharge - Diva Sp - Le Gavre - Etang;;92 Rue de Gisors, Pontoise 95300 France;;[-1.305198, 47.73678];;FRS14EMMWY2;BAVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.117683;49.20135;;;; +;;;;;;;;FRM13PMXWCZENI8P;;OuestCharge - Diva Sp - Getigne - Jean Vay;;32 Rue Bernard Ruyant, La Madeleine 59110 France;;[-1.430494, 46.971725];;FRS14EMSAP2;AWMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.263228;48.535592;;;; +;;;;;;;;FRM13PVAMSGXGVKQ;;OuestCharge - Diva Sp - Gorges - Roche;;67 Rue Théroigne de Méricourt, Taverny 95150 France;;[-1.268571, 47.162907];;FRS14EMPCW2;AUZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.69131;47.704058;;;; +;;;;;;;;FRM13PTC1WGPK4JD;;OuestCharge - Diva Sp - Grandchamps-Des-Fontaines - Vertière;;10 Place des Marseillaises, Marseille 13001 France;;[-1.266139, 47.16296];;FRS14EWFHJ2;NEPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.764552;48.862923;;;; +;;;;;;;;FRM13PL4LNJ5Z811;;OuestCharge - Diva Sp - Guemene-Penfao - Saint-Jean;;13 Rue Denis Papin, Chilly-Mazarin 91380 France;;[-1.032016, 47.386962];;FRS14EPZAM2;NDHC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.589693;47.513851;;;; +;;;;;;;;FRM13PB0WBD1JFEQ;;OuestCharge - Diva Sp - Guemene-Penfao - Besle;;12 Rue Olivier de Serres, Beaucouzé 49070 France;;[-1.028215, 47.468655];;FRS14EDAAA2;AYMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.99651;45.575544;;;; +;;;;;;;;FRM13PS5QPNAXBZW;;OuestCharge - Diva Sp - Guenrouet - Verger;;86 Avenue Pierre Curie, Saint-Cyr-l'École 78210 France;;[-1.704934, 47.554354];;FRS14EPWYW2;NFFX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.430718;48.605656;;;; +;;;;;;;;FRM13PNEJP5QIS1P;;OuestCharge - Pulse 50 - Guerande - Flaubert (8);;24 Route de Colmar, Sélestat 67600 France;;[-2.483028, 47.344527];;FRS14EXZYS1;VABX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.332955;51.032636;;;; +;;;;;;;;FRM13PM1NPQJLPCX;;OuestCharge - Diva Sp - Guerande - Legeay;;556 Avenue des Berges, Brignoles 83170 France;;[-1.7441279, 47.29341];;FRS14EXULG1;VABX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.716365;50.728719;;;; +;;;;;;;;FRM13PGK9NJGGDFX;;OuestCharge - Diva Sp - Guerande - Flaubert (8);;370 Route de Grenoble, Nice 06200 France;;[-1.737473, 47.325442];;FRS14EYDWA1;USYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.528778;43.304792;;;; +;;;;;;;;FRM13PX5YVABTEAR;;OuestCharge - Diva Sp - Moisdon-La-Riviere - Prieure;;52 Avenue Saint-Rémy, Forbach 57600 France;;[-1.695545, 47.331241];;FRS14EDEUA2;WJPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.949199;45.821472;;;; +;;;;;;;;FRM13PZOBRSUP7OM;;OuestCharge - Diva Sp - Nort-Sur-Erdre - Foire;;1133 Route du Gélas, Casties-Labrande 31430 France;;[-1.513712, 47.055246];;FRS14EDGYP2;JXJY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.294479;43.602172;;;; +;;;;;;;;FRM13PHFZWKZHQRS;;OuestCharge - Diva Sp - Montoir-De-Bretagne - Ile-De-France;;;;[-1.666373, 47.527509];;FRS14EYEMP1;VYYZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.866728;50.93186;;;; +;;;;;;;;FRM13PPXDTZYBOYM;;OuestCharge - Diva Sp - Les Moutiers-En-Retz - Source;;;;[-2.507161, 47.348051];;FRS14EZFEC1;VYYZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.001987;45.147098;;;; +;;;;;;;;FRM13PHNBAMMHQBV;;OuestCharge - Diva Sp - Mouzeil - Drapé;;;;[-1.530352, 47.342459];;FRS14EZCSE1;VKEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.575791;43.641247;;;; +;;;;;;;;FRM13PLJRNOERMCL;;OuestCharge - Diva Sp - Mouzillon - Vendée;;;;[-1.682692, 46.901893];;FRS14EZBUW1;VKEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.349162;48.650454;;;; +;;;;;;;;FRM13PPFSZOPWPE3;;OuestCharge - Pulse 50 - Nort-Sur-Erdre - Ancenis;;;;[-1.527051, 47.342284];;FRS14EZJXC1;VKMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.265873;50.738815;;;; +;;;;;;;;FRS13PKAQAWPMKL3;;OuestCharge - Diva Sp - Notre-Dame-Des-Landes - Eglise;;;;[-1.277813, 47.461336];;FRS14EZTZF1;DPMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.488524;45.425544;;;; +;;;;;;;;FRS13PBEKMYGZAFL;;OuestCharge - Diva Sp - Montoir-De-Bretagne - Bernuais;;;;[-1.792024, 47.3281];;FRS14EZRGR1;JWDS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.704835;45.189336;;;; +;;;;;;;;FRS13PWOHIDZZHLB;;OuestCharge - Pulse 50 - Nozay - Tsn 44 2;;;;[-1.440785, 47.267334];;FRS14EZLTF1;DPMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.899922;48.215832;;;; +;;;;;;;;FRS13PHYPRPLI5TD;;OuestCharge - Diva Sp - Nozay - Lavoir;;;;[-1.431817, 47.441948];;FRS14EKBRS2;VKMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.852161;48.761611;;;; +;;;;;;;;FRS13PQ4WRG0VPAM;;OuestCharge - Diva Sp - Oudon - Loire;;;;[-1.5939858, 47.28067];;FRS14ECWTN2;LDEB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.693295;48.239107;;;; +;;;;;;;;FRS13PSVNNSDC2XP;;OuestCharge - Diva Sp - Paimboeuf - Sadi-Carnot;;;;[-1.621305, 47.329273];;FRS14EYBLV1;PCGS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.828941;48.801119;;;; +;;;;;;;;FRS13PSQ6LSDTSXW;;OuestCharge - Diva Sp - Fay-De-Bretagne - Sicard;;;;[-1.626831, 47.331215];;FRS14EDDCW2;PCGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.722984;43.925778;;;; +;;;;;;;;FRS13PUEZC9A2ZNH;;OuestCharge - Diva Sp - La Limouziniere - Desnaurois;;;;[-2.200174, 47.299795];;FRS14EYURR1;ELFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.262325;48.782566;;;; +;;;;;;;;FRS13PTGKFDYOF2O;;OuestCharge - Diva Sp - Malville - Musiciens;;;;[-2.187091, 47.317501];;FRS14EHVFJ2;ELFA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.033519;43.7514;;;; +;;;;;;;;FRS13PZKJVIAARAQ;;OuestCharge - Diva Sp - Le Loroux-Bottereau - Rosmadec;;;;[-2.335882, 47.261013];;FRS14EPUCM2;JXJY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.699498;49.483854;;;; +;;;;;;;;FRS13PNDJUZUDKNN;;OuestCharge - Pulse 50 - Machecoul - Reliquet;;;;[-2.097518, 47.114189];;FRS14EVZKK2;JWDS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.276431;49.484118;;;; +;;;;;;;;FRS13PHT2TOP3OOS;;OuestCharge - Diva Sp - Saint Meme Le Tenu - Bois;;;;[-2.201325, 47.384129];;FRS14EJFGD2;JUVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.498655;49.114411;;;; +;;;;;;;;FRS13PKUZGIQ9EMY;;OuestCharge - Diva Sp - Maisdon-Sur-Sevre - Keelby;;;;[-2.340087, 47.259812];;FRS14EJFNZ2;KQFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.70061;43.314747;;;; +;;;;;;;;FRS13PSJL0F0PTXN;;OuestCharge - Diva Sp - Marsac-Sur-Don - Martrais;;;;[-2.345177, 47.270324];;FRS14EJNMD2;USYJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.305931;49.043902;;;; +;;;;;;;;FRS13PLQM3GRBNUA;;OuestCharge - Diva Sp - Montbert - Lavoir;;;;[-2.317604, 47.245187];;FRS14EJEFA2;UDLQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.842909;43.188354;;;; +;;;;;;;;FRS13PVWCDEJHEV0;;OuestCharge - Diva Sp - Mesanger - Bellangeraie;;;;[-2.122795, 47.127457];;FRS14EJAAP2;KMXW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.148137;48.472713;;;; +;;;;;;;;FRM13PQCV0GDGIKP;;OuestCharge - Diva Sp - Mesquer - Camping Cars;;;;[-1.741972, 47.131272];;FRS14EYXAK1;KQFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.402481;43.414287;;;; +;;;;;;;;FRM13PNPDMLS3DDB;;OuestCharge - Diva Sp - Missillac - Ville;;;;[-1.750358, 47.132868];;FRS14EJAHQ2;JXZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.118598;48.9551;;;; +;;;;;;;;FRM13PQZ8BVWGGCG;;OuestCharge - Diva Sp - Missillac - Saint-Jean;;;;[-2.432168, 47.282658];;FRS14EYMDY1;KMXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.117533;47.040481;;;; +;;;;;;;;FRM13PTBBFFXUY50;;OuestCharge - Diva Sp - La Chapelle-Glain - Chateau;;;;[-2.433513, 47.275217];;FRS14EYJTN1;ZFRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.715921;47.3395;;;; +;;;;;;;;FRM13PG28UATDMKK;;OuestCharge - E-Twin - La Baule - Atlantia;;;;[-2.218858, 47.129005];;FRS14EDBWT2;JVYR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.630492;44.854444;;;; +;;;;;;;;FRM13PRKX3ZSAXIM;;OuestCharge - Diva Sp - La Chapelle-Des-Marais - Penlys;;;;[-2.014487, 47.362983];;FRS14EYPPX1;ZFRD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.291873;49.4212;;;; +;;;;;;;;FRM13PCZXYUE9SOO;;OuestCharge - Diva Sp - Blain - Schuman;;;;[-1.887244, 47.540558];;FRS14EYYKH1;BMUD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.588763;49.1145;;;; +;;;;;;;;FRS13PUWBDRYNW5W;;OuestCharge - Diva Sp - Blain - Rousseau;;;;[-1.754958, 47.198616];;FRS14EHQRN1;BMUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.545529;43.615253;;;; +;;;;;;;;FRM13PU6R2I3MI6S;;OuestCharge - Pulse 50 - Blain - Resistance;;;;[-1.45349, 47.398087];;FRS14EHPQT1;JXZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.235914;45.902621;;;; +;;;;;;;;FRM13PWKEHSVYHAQ;;OuestCharge - Diva Sp - Bourgneuf-En-Retz - Vigne;;;;[-2.547222, 47.378032];;FRFR1EYRMF1;JUVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.667107;48.828405;;;; +;;;;;;;;FRM13PDM2AYCTUS2;;OuestCharge - Diva Sp - Boussay - Cathelineau;;;;[-2.191869, 47.136163];;FRS14EASQY2;JVYR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.843743;44.8184;;;; +;;;;;;;;FRS13PFCEGOYX74T;;OuestCharge - Diva Sp - Bouvron - Guihot;;;;[-1.436018, 47.01779];;FRS14EBXNM2;JSMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.3571;43.449905;;;; +;;;;;;;;FRM13PRXLHQXGESH;;OuestCharge - Diva Sp - Campbon - Bretagne;;;;[-2.084647, 47.433331];;FRS14EBUSH2;JSMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.612904;50.487002;;;; +;;;;;;;;FRM13PQGM9NJEA1F;;OuestCharge - E-Twin - Carquefou - Sevigne;;;;[-2.09346, 47.436521];;FRS14ECENR2;XQYV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.81362;44.947093;;;; +;;;;;;;;FRM13PQQMLW36C4P;;OuestCharge - Diva Sp - Casson - Montreal;;;;[-1.540393, 47.112585];;FRS14EBZRN2;MSKW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.715785;49.835137;;;; +;;;;;;;;FRM13PQBEKUAPQYB;;OuestCharge - Diva Sp - Le Cellier - Saint-Meen;;;;[-1.580587, 47.127249];;FRS14EBTTV2;ZAMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.971963;44.995186;;;; +;;;;;;;;FRM13PAKTRQMXLWX;;OuestCharge - Diva Sp - La Chapelle-Basse-Mer - Noues;;;;[-1.582848, 47.123621];;FRS14EBBPB2;VUPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.921623;45.475736;;;; +;;;;;;;;FRM13PGOTPNEEIKG;;OuestCharge - Diva Sp - La Chapelle-Basse-Mer - Mesanges;;;;[-1.182186, 47.183363];;FRS14EAWDW2;VUJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.367107;48.848921;;;; +;;;;;;;;FRM13PJTREOM1X8E;;OuestCharge - Diva Sp - Le Bignon - Touche;;;;[-1.196869, 47.369918];;FRS14EBMKA2;VUJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.67837;50.345614;;;; +;;;;;;;;FRM13PSXIYLXOBHD;;OuestCharge - Diva Sp - Besne - Pont Neuf;;;;[-2.180168, 47.232194];;FRS14EBFPN2;VQCC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.698316;49.834635;;;; +;;;;;;;;FRM13PUWAP4BDZ5S;;OuestCharge - Diva Sp - Ancenis - Docteur Moutel;;;;[-1.58056, 47.011961];;FRS14EZBGP2;VSAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.412932;46.16789;;;; +;;;;;;;;FRM13PJY28QDJCF6;;OuestCharge - Diva Sp - Abbaretz - Mairie;;;;[-1.5765, 46.967023];;FRS14EZBUW2;VSAF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.845881;43.430777;;;; +;;;;;;;;FRM13PONBZA2FLZQ;;OuestCharge - Pulse 50 - Aigrefeuille-Sur-Maine - Filee;;;;[-1.74289, 46.92994];;FRS14EADTS2;VUPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.292898;44.910302;;;; +;;;;;;;;FRM13PREA85RFW29;;OuestCharge - Diva Sp - Aigrefeuille-Sur-Maine - Vendee;;;;[-1.781826, 47.277731];;FRS14EADRR2;VQCC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.694416;43.558484;;;; +;;;;;;;;FRM13PUIKFXKPWLN;;OuestCharge - Pulse 50 - Ancenis - Leon Seche;;;;[-1.779158, 47.274213];;FRS14EZCSE2;DRZV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.504963;50.981771;;;; +;;;;;;;;FRM13PTDKR6HZAQA;;OuestCharge - Diva Sp - Chaumes-En-Retz - Clos Gris;;;;[-2.175058, 47.228305];;FRS14EZLTF2;DRZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.539385;49.169977;;;; +;;;;;;;;FRM13PU3M2CRXOTQ;;OuestCharge - Diva Sp - Chaumes-En-Retz - Marchas;;;;[-2.038474, 47.517877];;FRS14EALZR2;ARLP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.537643;48.233331;;;; +;;;;;;;;FRM13PZB3PP3S10S;;OuestCharge - Diva Sp - Asserac - Fontaine;;;;[-1.103525, 47.384481];;FRS14EAHYV2;ARLP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.292555;49.483857;;;; +;;;;;;;;FRM13PZHH0MOQERH;;OuestCharge - Diva Sp - Avessac - Gare;;;;[-1.095683, 47.406206];;FRS14EHQHM1;KMTJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.361856;50.629965;;;; +;;;;;;;;FRM13PPQDOFXYO9K;;OuestCharge - Diva Sp - Batz-Sur-Mer - Gare;;;;[-1.867052, 47.104023];;FRS14EAKAD2;KMTJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.045402;48.783543;;;; +;;;;;;;;FRM13PUJFFS1VFDS;;OuestCharge - Diva Sp - La Bernerie-En-Retz - Noirmoutier;;;;[-1.308939, 47.061157];;FRS14EAANK2;VTSN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.718671;48.378312;;;; +;;;;;;;;FRM13PYU3HHLOBIV;;OuestCharge - Diva Sp - Le Pallet - Sautejeau;;;;[-2.161966, 47.247989];;FRS14EAARS2;VSVB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.969107;43.595316;;;; +;;;;;;;;FRM13PCU18L59EFY;;OuestCharge - eSmart - Cordemais - Espace Culturel;;;;[-1.632266, 47.123441];;FRS14EABUA2;VTFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.032891;43.595318;;;; +;;;;;;;;FRM13PLBZJ2E4Z2Z;;OuestCharge - Diva Sp - Corsept - D 77;;;;[-1.376317, 47.057271];;FRS14EVJVK2;CVQQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.912361;43.313028;;;; +;;;;;;;;FRM13PXPXWDIMWV9;;OuestCharge - Diva Sp - Couffe - Havre;;;;[-1.293884, 47.517368];;FRS14ESFMA1;SWKN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.466205;43.386234;;;; +;;;;;;;;FRM13PAQMI6HDE7N;;OuestCharge - E-Twin - Le Croisic - Place du 8 Mai;;;;[-1.858725, 47.186286];;FRS14EABFN2;SWKN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.118441;43.104228;;;; +;;;;;;;;FRM13PQK9NSBFHAX;;OuestCharge - Diva Sp - Crossac - Plaisance;;;;[-1.449028, 47.783883];;FRS14EPJUU1;ZNXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.390745;49.48406;;;; +;;;;;;;;FRM13PHJMLW4RZTL;;OuestCharge - Diva Sp - Derval - Grée;;;;[-1.57997, 47.500873];;FRS14EPJUU2;ZNXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.058135;49.484084;;;; +;;;;;;;;FRM13PTPQ3LRWKOM;;OuestCharge - Diva Sp - Donges - Gare;;;;[-1.486141, 47.720665];;FRS14EVJVK1;WTZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.147694;49.484122;;;; +;;;;;;;;FRM13PBHNTH2N03P;;OuestCharge - Diva Sp - Donges - Croix;;;;[-2.30994, 47.313832];;FRS14EZTZF2;WTZP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.082393;49.483858;;;; +;;;;;;;;FRM13PI53KWZZUZ8;;OuestCharge - Diva Sp - Dreffeac - Rue;;;;[-2.163872, 47.264783];;FRS14EAVBH2;NCTC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.082401;49.483859;;;; +;;;;;;;;FRM13PORSVRLD7DV;;OuestCharge - Diva Sp - Erbray - Mouette;;;;[-2.006097, 47.459991];;FRS14EAVBH3;VTFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.583028;49.484062;;;; +;;;;;;;;FRM13PAIVVF8TXNT;;OuestCharge - Diva Sp - La Baule-Escoublac - Joffre (46);;;;[-2.300755, 47.319113];;FRS14EAVNY2;NCTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.688774;49.483855;;;; +;;;;;;;;FRM13PET8HVBT9DL;;OuestCharge - Diva Sp - La Baule-Escoublac - Joffre (46 - 2);;;;[-0.8531, 48.8413];;FRS14EAVBH1;ZAMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.028564;49.483866;;;; +;;;;;;;;FRM13PWQEE1Y2BAW;;OuestCharge - Diva Sp - La Baule-Escoublac - Joffre (42);;;;[3.4245618642693594,46.123436402688206];;FRS14EAVEW2;VWFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.118285;49.483865;;;; +;;;;;;;;FRM13PMXFGYDVAN0;;OuestCharge - Diva Sp - Cordemais - Quatre Vents;;;;[7.72,48.6122];;FRS14EZRGR2;VSVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.117772;49.483863;;;; +;;;;;;;;FRM13PRN6NE1CSIN;;OuestCharge - Diva Sp - Chateaubriant - Liberation;;;;[5.0769923, 47.3512055];;FRS14EZFEC2;VWFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.11768;49.483868;;;; +;;;;;;;;FRM13PQPPRKM9JOL;;OuestCharge - Diva Sp - La Chapelle-Heulin - Ripoche;;;;[3.3900578, 49.0368902];;FRS14EZJXC2;VTSN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.11752;44.826052;;;; +;;;;;;;;FRM13PQMV1OWNDGR;;OuestCharge - Diva Sp - La Chapelle-Launay - Eglise;;;;[-1.0936, 49.1281];;FRS14EYMDY2;MSKW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.118141;48.301832;;;; +;;;;;;;;FRM13PCCB60UGD7I;;OuestCharge - Pulse 50 - Chateaubriant - Patton;;;;[1.3003961423287695, 45.76011619906451];;FRS14EFPNP2;MAHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.117614;49.138592;;;; +;;;;;;;;FRM13PBQGOLZLZK9;;OuestCharge - Diva Sp - Chateaubriant - Motte;;;;[-0.6822308312133751, 44.83887410485574];;FRS14EXRXZ2;ZSNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.118521;46.209011;;;; +;;;;;;;;FRM13PG7ZCV4KJPS;;OuestCharge - Diva Sp - Chateaubriant - Duguesclin;;;;[3.102562200000012, 50.778986100000004];;FRS14EXRJL2;MAHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.117765;45.71833;;;; +;;;;;;;;FRM13PAQC0J4PNTP;;OuestCharge - Diva Sp - Clisson - Lemot;;;;[2.0352479, 49.0555095];;FRS14EFWCT2;JCAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.118435;48.6808;;;; +;;;;;;;;FRM13PRSPVF85Q8I;;OuestCharge - Diva Sp - Chateau-Thebaud - Prieure;;;;[2.24,48.94];;FRS14EFGDK2;FRER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.118609;45.054029;;;; +;;;;;;;;FRM13PZK2VPLYFXC;;OuestCharge - Diva Sp - Chauve - Routiere;;;;[5.501248,43.300038];;FRS14EFGCS2;FRER2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.118055;49.280802;;;; +;;;;;;;;FRM13POPBQD3XA2R;;OuestCharge - Diva Sp - La Chevroliere - Lemaitre;;;;[7.10,43.72];;FRS14EFNQP2;FRER4;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.118145;47.497011;;;; +;;;;;;;;FRM13PTFGLGFKWZ3;;OuestCharge - Diva Sp - La Chevroliere - Stade;;;;[7.13,43.68];;FRS14EFMZA2;FRER3;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.118364;46.799849;;;; +;;;;;;;;FRM13PONQDMBBKNC;;OuestCharge - Diva Sp - Clisson - Boutin;;;;[2.23,48.69];;FRS14EEAHG2;PNXL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.118067;46.646292;;;; +;;;;;;;;FRM13PLDYQJ5N3BA;;OuestCharge - Diva Sp - Pornic - Foch;;;;[2.212311,48.931373];;FRS14EJDTA2;PNXL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.118534;45.653935;;;; +;;;;;;;;FRM13PNKMEPWGGPW;;OuestCharge - Diva Sp - Paulx - Ebergement;;;;[3.207246,50.68494];;FRS14EEDBF2;SPHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.118292;48.301248;;;; +;;;;;;;;FRM13PEDUESRUBU4;;OuestCharge - ePremium - Saint Julien de Concelles - Heurthauds;;;;[2.798854,48.841032];;FRS14EEAJU2;MQXX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.117977;43.508911;;;; +;;;;;;;;FRM13PGNCU8D204C;;OuestCharge - Diva Sp - Sainte-Pazanne - Auditoire;;;;[3.207433,50.684876];;FRS14EDKBE2;MQXX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.777916;43.848528;;;; +;;;;;;;;FRM13PMSH0CPXJBC;;OuestCharge - Diva Sp - Sainte-Pazanne - Verdelet;;;;[2.212336,48.931356];;FRS14EXTFG1;PAPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.112658;46.151508;;;; +;;;;;;;;FRM13PWXW2IZZV6L;;OuestCharge - Diva Sp - Saint-Pere-En-Retz - Marche;;;;[3.20737,50.684898];;FRS14EDWVP2;PAPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.65352;45.054285;;;; +;;;;;;;;FRM13PXNMMEMUQWX;;OuestCharge - Diva Sp - Saint-Philbert-De-Grand-Lieu - Jardins;;;;[3.207306,50.684918];;FRS14EFBJG2;WABD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.509592;45.166618;;;; +;;;;;;;;FRM13PNBWYREEXN0;;OuestCharge - Diva Sp - Saint-Philbert-De-Grand-Lieu - Eglise;;;;[3.207187,50.684964];;FRS14EXUBA2;LAAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.833115;48.557306;;;; +;;;;;;;;FRM13PK0VMTM4AOW;;OuestCharge - Diva Sp - Sainte-Reine-De-Bretagne - Cadou;;;;[3.207124,50.684984];;FRS14EXTFG2;JJMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.41169;43.630042;;;; +;;;;;;;;FRM13PREOLZZUWZG;;OuestCharge - Diva Sp - Saint-Viaud - Parc Des Sports;;;;[3.207047,50.685013];;FRS14EYXAK2;JCKC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.661547;46.067479;;;; +;;;;;;;;FRM13PAKDLHKKHGE;;OuestCharge - Diva Sp - Saint-Vincent-Des-Landes - Libération;;;;[3.206962,50.685049];;FRS14EYPPX2;JCKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.164156;46.772643;;;; +;;;;;;;;FRM13PCJUSI0VOYH;;OuestCharge - Diva Sp - Sautron - Bretagne;;;;[5.2199154,44.1203594];;FRS14EAHFQ2;JCPD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.398027;43.423029;;;; +;;;;;;;;FRM13PKEOQA5N1B9;;OuestCharge - Pulse 50 - Savenay - Justice;;;;[5.1928184, 48.7571171];;FRS14EAHBR2;FCGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.303727;45.238983;;;; +;;;;;;;;FRM13PESOARGTP4B;;OuestCharge - Diva Sp - Savenay - Verdun;;;;[2.2566243, 48.9565006];;FRS14EYURR2;YAEH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.837505;45.62177;;;; +;;;;;;;;FRM13POMGFAWEZZ8;;OuestCharge - Diva Sp - Severac - Therese;;;;[4.7352, 45.8414];;FRS14EAFDA2;FFWZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.46174;45.756949;;;; +;;;;;;;;FRM13PORTOSOJP3Y;;OuestCharge - Diva Sp - Sion-Les-Mines - Sulpice;;;;[4.715638, 45.976484];;FRS14EADZK2;TUUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.112718;43.816962;;;; +;;;;;;;;FRM13PN9PFWXWKQI;;OuestCharge - Diva Sp - Saint-Nicolas-De-Redon - Ahaut;;;;[5.074257, 45.720859];;FRS14EYYKH2;QHSJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.524187;43.12474;;;; +;;;;;;;;FRM13PJIJE5L9RS2;;OuestCharge - Diva Sp - Saint-Mars-De-Coutais - Chaponneries;;;;[4.7421819, 45.979448];;FRS14EXZYS2;HYQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.371428;45.807739;;;; +;;;;;;;;FRM13PMMOMS4MYOD;;OuestCharge - ePremium - Saint Julien de Concelles - Rte du Lac;;;;[2.595174 , 44.388486];;FRS14EPFCC2;FTYU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.330752;45.938909;;;; +;;;;;;;;FRM13PEDNRUJ2XDY;;OuestCharge - Diva Sp - Sainte-Luce-Sur-Loire - Gaulle;;;;[4.877256 , 45.734166];;FRS14EEXVE2;FCGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.661495;43.570576;;;; +;;;;;;;;FRS63P63113D;;OuestCharge - Diva Sp - Saint-Lumine-De-Clisson - Vignoble;;;;[-1.119464 , 44.612295];;FRS14EEWMC2;JCAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.716421;43.347511;;;; +;;;;;;;;FRS63P63113C;;OuestCharge - Diva Sp - Saint-Lumine-De-Coutais - Chatellier;;;;[2.114309 , 49.053385];;FRS14EEZUM2;NHNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.011686;44.943271;;;; +;;;;;;;;FRS63P63113E;;OuestCharge - Diva Sp - Saint-Lyphard - Sainte-Anne;;;;[1.442532 , 44.46386];;FRS14EEYTL2;NHNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.579821;45.716581;;;; +;;;;;;;;FRS63P63075A;;OuestCharge - Diva Sp - Saint-Malo-De-Guersac - Sainte-Anne;;;;[3.269004 , 43.235422];;FRS14EXULG2;HEGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.057903;43.460521;;;; +;;;;;;;;FRS63P63113F;;OuestCharge - Diva Sp - Saint-Nazaire - Gare Nord - 2;;;;[3.741735 , 43.866454];;FRS14EAAJA2;HEGC3;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.868515;45.719814;;;; +;;;;;;;;FRS63P63113G;;OuestCharge - Diva Sp - Saint-Mars-Du-Desert - Aout 1944;;;;[2.260587 , 50.739646];;FRS14EAHSB2;HEGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.05556;43.320479;;;; +;;;;;;;;FRS63P63113B;;OuestCharge - Diva Sp - Saint-Mars-La-Jaille - Neuve;;;;[1.982722 , 43.908974];;FRS14EYFTV2;JCPD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.668929;45.469726;;;; +;;;;;;;;FRS63P63099A;;OuestCharge - Diva Sp - Saint-Michel-Chef-Chef - Chevecier;;;;[2.421482 , 48.664224];;FRFR1EFDUU2;NYMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.107782;46.251364;;;; +;;;;;;;;FRS63P63113H;;OuestCharge - Diva Sp - Saint-Molf - Sports;;;;[-4.521648 , 48.40612];;FRFR1ELPAE2;UVMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.127367;45.572891;;;; +;;;;;;;;FRS63P63080B;;OuestCharge - Diva Sp - Saint-Nazaire - Gare Nord;;;;[3.828952 , 43.641184];;FRFR1ESFXY1;UVMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.348872;47.110352;;;; +;;;;;;;;FRS63P63113A;;OuestCharge - Diva Sp - Soudan - Presbytère;;;;[5.199395 , 46.208436];;FRFR1EAERH1;NDBC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.879898;44.120237;;;; +;;;;;;;;FRS63P63103A;;OuestCharge - Diva Sp - Vieillevigne - Val De Loire;;;;[4.70452 , 45.821636];;FRFR1EJRZG1;RYHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.779702;43.758054;;;; +;;;;;;;;FRS63P63164A;;OuestCharge - Pulse 50 - Vallet - Gabory;;;;[6.7358 , 43.424749];;FRFR1EJRZG2;RYHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.073562;43.88006;;;; +;;;;;;;;FRS63P63141A;;OuestCharge - Diva Sp - Vallet - Pusterle;;;;[2.361202 , 50.992742];;FRFR1EYQAY1;RYSN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.846733;43.751828;;;; +;;;;;;;;FRS63P63124B;;OuestCharge - Diva Sp - Loireauxence - Parc;;;;[1.662712 , 44.952304];;FRFR1EYQAY2;RYSN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.255585;43.833315;;;; +;;;;;;;;FRS63P63125A;;OuestCharge - Diva Sp - Loireauxence - Deux Provinces;;;;[1.982861 , 43.909011];;FRFR1EQUZV2;JSEU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.92037;43.745292;;;; +;;;;;;;;FRS63P63124A;;OuestCharge - Diva Sp - Vay - Plesse;;;;[3.363737 , 43.280118];;FRFR1EQHAG2;WVSL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.856536;43.941508;;;; +;;;;;;;;FRS63P63165A;;OuestCharge - eSmart - La Turballe - Trevaly;;;;[3.065185 , 44.318093];;FRFR1EQUZV1;UMWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.692073;43.773746;;;; +;;;;;;;;FRS63P63113K;;OuestCharge - Pulse 50 - Vigneux-De-Bretagne - Pont De Pierre;;;;[3.252902 , 43.349417];;FRFR1EQHAG1;UMWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.926582;43.78694;;;; +;;;;;;;;FRS63P63113I;;OuestCharge - Diva Sp - Vigneux-De-Bretagne - Le Bourg;;;;[-4.108344 , 47.997848];;FRFR1ERRMR1;WVSL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.43459;43.989458;;;; +;;;;;;;;FRS63P63113J;;OuestCharge - Diva Sp - Vigneux-De-Bretagne - Complexe Sportif;;;;[3.738868 , 43.435307];;FRFR1ERRMR2;MACM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.343414;43.744711;;;; +;;;;;;;;FRS63P63116A;;OuestCharge - Diva Sp - Geneston - Madeleine;;;;[3.741422 , 43.866041];;FRFR1EFDUU1;MACM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.789674;43.936804;;;; +;;;;;;;;FRS63P63006A;;OuestCharge - Diva Sp - La Grigonnais - Ocean;;;;[-0.125582 , 47.277542];;FRFR1EFHKT2;NRDW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.947235;44.089897;;;; +;;;;;;;;FRS63P63070B;;OuestCharge - Diva Sp - La Turballe - Blanc;;;;[0.117981 , 49.483871];;FRFR1ELNUW2;VUWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.37817;44.674677;;;; +;;;;;;;;FRS63P63019A;;OuestCharge - Diva Sp - Suce-Sur-Erdre - Europe;;;;[0.118355 , 49.483861];;FRFR1ELNUW1;NRDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.842734;43.328661;;;; +;;;;;;;;FRS63P63026A;;OuestCharge - Diva Sp - Touvois - Charrette;;;;[0.11762 , 49.4841];;FRFR1ELPAE1;HEKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.47374;43.000297;;;; +;;;;;;;;FRS63P63032A;;OuestCharge - Diva Sp - Suce-Sur-Erdre - Briand;;;;[-4.485094 , 48.401232];;FRFR1EFQRG1;NDBC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.44416;43.634486;;;; +;;;;;;;;FRS63P63032B;;OuestCharge - Diva Sp - Teille - Romains;;;;[1.115492 , 45.800386];;FRFR1EYRMF2;BMYP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.438363;44.405045;;;; +;;;;;;;;FRS63P63038A;;OuestCharge - Diva Sp - Le Temple-De-Bretagne - Girard;;;;[-2.34728 , 47.690076];;FRFR1EFQYF1;TAWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.472565;50.58254;;;; +;;;;;;;;FRS63P63038B;;OuestCharge - Diva Sp - Thouare-Sur-Loire - Republique;;;;[2.76877 , 43.650773];;FRFR1EFPYY1;BMYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.42744;43.775118;;;; +;;;;;;;;FRS63P63014A;;OuestCharge - Diva Sp - Les Touches - Melaine;;;;[3.490479 , 43.388125];;FRFR1EFPYY2;GDNU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.414438;43.77632;;;; +;;;;;;;;FRS63P63006B;;OuestCharge - Pulse 50 - Treillieres - Gouerie;;;;[0.614433 , 44.20859];;FRFR1EFQRR1;GSWV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.499757;43.829995;;;; +;;;;;;;;FRS63P63178C;;OuestCharge - Diva Sp - Treillieres - Mairie (68);;;;[2.745591 , 50.743319];;FRFR1EFQRR2;GAXH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.442932;43.943967;;;; +;;;;;;;;FRS63P63001A;;OuestCharge - Diva Sp - Treillieres - Mairie (5);;;;[1.44395 , 44.464];;FRFR1EFQRG2;MHKT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.551562;43.799141;;;; +;;;;;;;;FRS63P63009B;;OuestCharge - Diva Sp - Trignac - Lagrange;;;;[0.085901 , 43.219426];;FRFR1EFQAV1;GPVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.399986;44.063215;;;; +;;;;;;;;FRS63P63010A;;OuestCharge - Diva Sp - Trignac - Mairie;;;;[0.117683 , 49.484081];;FRFR1EFQYF2;HWVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.51395;43.739492;;;; +;;;;;;;;FRS63P63040A;;OuestCharge - ePremium - Pornichet - Léon Gambetta;;;;[3.263228 , 49.851053];;FRFR1EDFUW2;GAXH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.59311;44.063348;;;; +;;;;;;;;FRS63P63066A;;OuestCharge - Diva Sp - Pornic - Gaulle;;;;[3.69131 , 43.488535];;FRFR1EDFZL1;GEFB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.616902;43.751169;;;; +;;;;;;;;FRS63P63055A;;OuestCharge - Diva Sp - Saint-Joachim - Potriais;;;;[5.764552 , 43.955191];;FRFR1EDFZL2;GEFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.147713;43.73867;;;; +;;;;;;;;FRS63P63063A;;OuestCharge - Pulse 50 - Pornichet - Juin 1940;;;;[-2.64867 , 47.64051];;FRFR1EDFUW1;FVBR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.0959;43.303566;;;; +;;;;;;;;FRS63P63069B;;OuestCharge - Diva Sp - Pornichet - Briand;;;;[-1.589693 , 47.258202];;FRFR1EFQAV2;MVBF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.949694;45.191302;;;; +;;;;;;;;FRS63P63070A;;OuestCharge - Diva Sp - Pornichet - Violettes;;;;[3.99651 , 45.209725];;FRFR1EFHKT1;MVBF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.683944;43.795037;;;; +;;;;;;;;FRS63P63054B;;OuestCharge - Pulse 50 - Pornic - Lisbonne;;;;[5.430718 , 44.968101];;FRFR1EQZEW1;FVBR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.09328;44.002431;;;; +;;;;;;;;FRS63P63042A;;OuestCharge - Pulse 50 - Port-Saint-Pere - Riviere;;;;[6.332955 , 47.407277];;FRS14EYFTV1;QCMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.507033;44.082484;;;; +;;;;;;;;FRS63P63040B;;OuestCharge - Diva Sp - Port-Saint-Pere - Pornic;;;;[0.716365 , 49.20135];;FRFR1EUZVH1;QCMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.48751;43.806605;;;; +;;;;;;;;FRS63P63046B;;OuestCharge - Diva Sp - Le Pouliguen - Libération;;;;[2.528778 , 48.535592];;FRFR1EARKB1;HEKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.036317;43.876103;;;; +;;;;;;;;FRS63P63050B;;OuestCharge - Diva Sp - Le Pouliguen - Civanam;;;;[-2.949199 , 47.704058];;FRFR1EARKB2;QFUK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.516805;43.765323;;;; +;;;;;;;;FRS63P63300C;;OuestCharge - Diva Sp - Prefailles - Marche;;;;[2.294479 , 48.862923];;FRFR1ELVQD1;QFUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.462256;43.79061;;;; +;;;;;;;;FRS63P63319A;;OuestCharge - Diva Sp - Prinquiau - Besne;;;;[6.866728 , 47.513851];;FRFR1ELVQD2;XBFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.613763;43.781903;;;; +;;;;;;;;FRS63P63352C;;OuestCharge - Diva Sp - Plesse - Lion d'Or;;;;[3.001987 , 45.575544];;FRS14EADDH2;JAVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.400442;43.76015;;;; +;;;;;;;;FRS63P63354A;;OuestCharge - Diva Sp - Le Pellerin - Sand;;;;[2.575791 , 48.605656];;FRS14EADMG2;UKZL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.616321;43.78898;;;; +;;;;;;;;FRS63P63370A;;OuestCharge - Diva Sp - Petit-Mars - Ajoncs;;;;[2.349162 , 51.032636];;FRS14EGBAE2;ULVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.436248;43.781006;;;; +;;;;;;;;FRS63P63381A;;OuestCharge - Diva Sp - Piriac-Sur-Mer - Gringoire;;;;[2.265873 , 50.728719];;FRS14EACMW2;UKZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.41676;48.94513;;;; +;;;;;;;;FRS63P63470B;;OuestCharge - Diva Sp - La Plaine-Sur-Mer - Rousse;;;;[3.488524 , 43.304792];;FRS14EABXV2;ULVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.321626;48.05205;;;; +;;;;;;;;FRS63P63352B;;OuestCharge - Diva Sp - La Planche - Nantes;;;;[4.704835 , 45.821472];;FRS14ESFMA3;ULGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.657747;48.5546;;;; +;;;;;;;;FRS63P63342B;;OuestCharge - Pulse 50 - Pontchateau - Villeneuve;;;;[3.899922 , 43.602172];;FRS14EYFTV3;ULGR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.477096;50.7313;;;; +;;;;;;;;FRS63P63322A;;OuestCharge - Diva Sp - Pontchateau - Criboeuf;;;;[1.852161 , 50.93186];;FRS14ESFMA2;KYXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.554498;49.457892;;;; +;;;;;;;;FRS63P63338A;;OuestCharge - Pulse 50 - Pont-Saint-Martin - Olympique;;;;[5.693295 , 45.147098];;FRS14EVJVK3;EZWT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.5946;43.307994;;;; +;;;;;;;;FRS63P63345B;;OuestCharge - Diva Sp - Pont-Saint-Martin - Loisirs;;;;[3.828941 , 43.641247];;FRS14EPJUU3;EZWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.497872;43.304954;;;; +;;;;;;;;FRS63P63345A;;OuestCharge - Diva Sp - Pont-Saint-Martin - Combes;;;;[7.722984 , 48.650454];;FRS14EAAUK2;NBVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.449385;43.409384;;;; +;;;;;;;;FRS63P63415B;;OuestCharge - Diva Sp - La Regrippiere - Chapelle;;;;[2.262325 , 50.738815];;FRFR1EWHSB1;VGNS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.45799;43.214406;;;; +;;;;;;;;FRS63P63457A;;OuestCharge - Diva Sp - Saint-Gereon - Maitres;;;;[-1.033519 , 45.425544];;FRFR1EYLKC1;VGNS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.49197;43.253932;;;; +;;;;;;;;FRS63P63439B;;OuestCharge - ePremium - Saint-Brevin-Les-Pins - Ocean (21);;;;[5.699498 , 45.189336];;FRFR1EYSQP1;YQTX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.513379;43.345324;;;; +;;;;;;;;FRS63P63448B;;OuestCharge - Diva Sp - Saint-Colomban - Gaulle;;;;[3.276431 , 48.215832];;FRFR1EKYMM1;NBVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.479481;48.80341;;;; +;;;;;;;;FRS63P63458A;;OuestCharge - Diva Sp - Corcoue-Sur-Logne - 8 Mai;;;;[2.498655 , 48.761611];;FRFR1EQZEW2;RUUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.469054;45.157305;;;; +;;;;;;;;FRS63P63458B;;OuestCharge - Diva Sp - Saint-Etienne-De-Mer-Morte - Nantes;;;;[4.70061 , 48.239107];;FRFR1EFLFD2;RUUR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.494254;47.234349;;;; +;;;;;;;;FRS63P63439A;;OuestCharge - Diva Sp - Saint-Etienne-De-Montluc - Foch;;;;[2.305931 , 48.801119];;FRFR1EFLFD3;NUWR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.38243;48.905095;;;; +;;;;;;;;FRS63P63426A;;OuestCharge - Diva Sp - Saint-Etienne-De-Montluc - Acigne;;;;[4.842909 , 43.925778];;FRFR1EFLFD1;QTRG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.16648;49.391457;;;; +;;;;;;;;FRS63P63430A;;OuestCharge - Diva Sp - Saint-Brevin-Les-Pins - Ocean;;;;[2.148137 , 48.782566];;FRFR1EKYMQ2;XBFC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.28694;47.160968;;;; +;;;;;;;;FRS63P63430B;;OuestCharge - Diva Sp - Saint-Gildas-Des-Bois - Four;;;;[7.402481 , 43.7514];;FRFR1EKYMQ1;BATR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.27767;50.909617;;;; +;;;;;;;;FRS63P63430C;;OuestCharge - Diva Sp - Saint-Herblon - Europe;;;;[0.118598 , 49.483854];;FRFR1EKYMM2;BATR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.097651;43.149175;;;; +;;;;;;;;FRS63P63247A;;OuestCharge - Diva Sp - Saint-Herblon - Versailles;;;;[0.117533 , 49.484118];;FRFR1EYSQP2;PWLN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.409014;47.765942;;;; +;;;;;;;;FRS63P63236B;;OuestCharge - Diva Sp - Saint-Hilaire-De-Chaleons - Guitteny;;;;[6.715921 , 49.114411];;FRFR1EWXVV2;QTRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.380148;48.477517;;;; +;;;;;;;;FRS63P63241B;;OuestCharge - Diva Sp - Saint-Hilaire-De-Clisson - Klettgau;;;;[6.630492 , 43.314747];;FRFR1EDXLX1;PWLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.195572;48.555402;;;; +;;;;;;;;FRS63P63236A;;OuestCharge - Diva Sp - Saint-Brevin-Les-Pins - Chassagne;;;;[2.291873 , 49.043902];;FRFR1EDXLX2;NCSN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.540796;45.66341;;;; +;;;;;;;;FRS63P63254A;;OuestCharge - Diva Sp - Saint-Aignan-Grand-Lieu - Milenia;;;;[5.588763 , 43.188354];;FRFR1EWXVV1;JAVF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.376228;45.60921;;;; +;;;;;;;;FRS63P63255B;;OuestCharge - Diva Sp - Remouille - Bosselle;;;;[1.545529 , 48.472713];;FRFR1EJTTP2;SPAC3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.45921;50.49259;;;; +;;;;;;;;FRS63P63263A;;OuestCharge - Diva Sp - Riaille - Echeveau;;;;[5.235914 , 43.414287];;FRFR1EJTTP1;NCSN3;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.08947;47.48726;;;; +;;;;;;;;FRS63P63193A;;OuestCharge - Pulse 50 - Rouans - Pazanne;;;;[2.667107 , 48.9551];;FRS14EDUUT2;SPAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.725449;43.264841;;;; +;;;;;;;;FRS63P63178D;;OuestCharge - Diva Sp - Rouge - Vieux Rouge;;;;[4.843743 , 47.040481];;FRS14EEFME2;SPAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.653702;43.338291;;;; +;;;;;;;;FRS63P63192A;;OuestCharge - Diva Sp - Saffre - Echeveau;;;;[6.3571 , 47.3395];;FRS14EYEMP2;NCSN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.375174;43.448584;;;; +;;;;;;;;FRS63P63308A;;OuestCharge - Diva Sp - Saint-Aubin-Des-Chateaux - Fau;;;;[-0.612904 , 44.854444];;FRS14EFDYX1;NUWR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.013502;44.930736;;;; +;;;;;;;;FRS63P63195A;;OuestCharge - Diva Sp - Saint-Andre-Des-Eaux - Parvis;;;;[2.81362 , 49.4212];;FRS14EHMVQ1;GDAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.954775;43.280847;;;; +;;;;;;;;FRS63P63231A;;OuestCharge - Pulse 50 - Saint-Brevin-Les-Pins - Poincare;;;;[6.715785 , 49.1145];;FRS14EGPJL2;GPVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.304465;43.335877;;;; +;;;;;;;;FRS63P63305A;;OuestCharge - Diva Sp - Sainte-Anne-Sur-Brivet - Eglise;;;;[6.971963 , 43.615253];;FRS14EKVZV2;GDNU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.303378;43.41657;;;; +;;;;;;;;FRS63P63300B;;OuestCharge - Diva Sp - Saint-Andre-Des-Eaux - Marais;;;;[-0.921623 , 45.902621];;FRS14EDSMQ3;ZATX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.376104;43.288972;;;; +;;;;;;;;FRS63P63300A;;Daltoner Vire;;;;[2.367107 , 48.828405];;FRS14EDSMQ2;QAMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.134437;45.026175;;;; +;;;;;;;;FRS63P63307A;;Parking Hotel KYRIAD Vichy;;;;[-0.67837 , 44.8184];;FRS14EACRU2;QAMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.013792;45.780319;;;; +;;;;;;;;FRS63P63272A;;Parking ICS Schiltigheim;;;;[5.698316 , 43.449905];;FRS14EACRU1;APLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.13031;44.831528;;;; +;;;;;;;;FRS63P63269B;;KEOLIS DIJON;;;;[2.412932 , 50.487002];;FRS14EYJAZ2;YVBG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.599606;44.038574;;;; +;;;;;;;;FRS63P63291A;;CHATEAU THIERRY;;;;[4.845881 , 44.947093];;FRS14EYJAZ1;PYRY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.58904;43.299928;;;; +;;;;;;;;FRS63P63270B;;Ambroise Avocat;;;;[3.292898 , 49.835137];;FRS14EDSMQ1;PYRY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.84073;43.284198;;;; +;;;;;;;;FRS63P63284A;;PARKING;;;;[-0.694416 , 44.995186];;FRS14EYJAZ3;RKPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.409094;43.211412;;;; +;;;;;;;;FRCHAPCKUIFU8QA0000JHPFD4KMPF72;;Parking FLYOPS;;;;[4.504963 , 45.475736];;FRS14EZYVR1;ZSDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.381775;43.411612;;;; +;;;;;;;;FRCHAPCL667TZRR31386098QO29VPVB0N;;Parking MANUBOB;;;;[2.539385 , 48.848921];;FRS14EGBAE3;YARW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.69824;43.290449;;;; +;;;;;;;;FRS28ESDE28LOU3B1P1;;AGP;;;;[3.537643 , 50.345614];;FRS14ETMGF2;FFET1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.782529;43.260804;;;; +;;;;;;;;FRLUMELAMONTAGNESA;;ARGENTEUIL;;;;[3.292555 , 49.834635];;FRS14EKVZV1;ZSDW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.389461;43.255794;;;; +;;;;;;;;FRLUMEAUCHEVALBLANCNIEDERSTEINBACH1;;Securecharge Green Home Immobilier Camoins;;;;[3.361856 , 46.16789];;FRS14ELLLE3;LRXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.480306;43.315171;;;; +;;;;;;;;FRLUMEJRIMMO11;;PARKING FLOREAL;;;;[5.045402 , 43.430777];;FRS14EYCGU1;RLZQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.22183;43.299757;;;; +;;;;;;;;FRLUMEACACIAS11;;BASTIDE SAINT PAUL;;;;[-0.718671 , 44.910302];;FRS14EZWZU2;ZSQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.362979;43.354728;;;; +;;;;;;;;FRLUMECAMPINGLAVANDES11;;HOTEL KYRIAD PARIS BEZONS;;;;[6.969107 , 43.558484];;FRS14EMWEK1;LRHQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.883278;43.270909;;;; +;;;;;;;;FRLUMERAMADES11;;CAMAÏEU FRANCE;;;;[2.032891 , 50.981771];;FRS14EAAAR1;FMAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.309178;43.298149;;;; +;;;;;;;;FRLUMEMALIJAI441;;Parking Acelec;;;;[5.912361 , 49.169977];;FRS14EGHER1;KYVD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.666341;43.339001;;;; +;;;;;;;;FRLUMEPINARELLO11;;Mas des OLIVES 1;;;;[4.466205 , 48.233331];;FRS14EGTJV1;MMSC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.383969;43.359392;;;; +;;;;;;;;FRLUMEHOTELLECOLLIER11;;BAR LE DUC;;;;[0.118441 , 49.483857];;FRS14EGPJL1;QJAM4;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.387781;43.309691;;;; +;;;;;;;;FRLUMROUMANILLE1;;BOIS DIEU LES LYS 8;;;;[2.390745 , 50.629965];;FRS14EMWEK2;QJAM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.37587;43.294651;;;; +;;;;;;;;FRLUMELORIOL11;;PARC DEPAGNEUX;;;;[2.058135 , 48.783543];;FRS14EYCGU3;QJAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.62989;43.297149;;;; +;;;;;;;;FRFR1EZTBC1;;Parking P4 électrique;;;;[2.147694 , 48.378312];;FRS14EAKDM2;QJAM5;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.25172;43.295673;;;; +;;;;;;;;FRFR1EDSVA1;;LAGUNE SUD DRC;;;;[3.082393 , 43.595316];;FRS14EZWZU1;QJAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.389277;43.288587;;;; +;;;;;;;;FRE10E108652;;AUTEL EUROPE GmbH/20247;;;;[3.082401 , 43.595318];;FRS14EAKDM1;QJAM7;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.387068;43.260987;;;; +;;;;;;;;FRSGAP1M2018;;WAAT/FRWATLCEGW9FHJ;;;;[-1.583028 , 43.313028];;FRS14EMWEK3;QVKE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.393886;43.319046;;;; +;;;;;;;;FREBNPWUV7HSEG7Z;;WAAT/FRWATL365YTXZ2;;;;[-1.688774 , 43.386234];;FRS14EAKDM3;LJSR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.367613;46.671909;;;; +;;;;;;;;FREBNPXNTOYCDUUU;;WAAT/FRWATL4TDE07E3;;;;[6.028564 , 43.104228];;FRS14EYCGU2;MWCL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.398803;47.186053;;;; +;;;;;;;;FREBNPHHI7NXS2BU;;WAAT/FRWATL9WB3NTKX;;;;[0.118285 , 49.483861];;FRS14EUAMT1;LJSR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.468984;45.193048;;;; +;;;;;;;;FREBNPHLIQFU7MBL;;WAAT/FRWA3LVVBXXA2A;;;;[0.117772 , 49.48406];;FRS14EUAMT2;QVKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.363203;43.635144;;;; +;;;;;;;;FREBNPFT9RYLHLGP;;WAAT/FRWATLDGCQPXGA;;;;[0.11768 , 49.484084];;FRS14EAHSB3;UZUU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.364434;43.125814;;;; +;;;;;;;;FREBNPDRERGYFIWV;;WAAT/FRWATLHA4GJSH7;;;;[0.11752 , 49.484122];;FRS14EZYVR2;NXWB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.390399;48.10671;;;; +;;;;;;;;FREBNPVJR4KERRP4;;WAAT/FRWA3LXQI8OSF8;;;;[0.118141 , 49.483858];;FRS14EGEKT1;NXWB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.31756;50.268206;;;; +;;;;;;;;FREBNPDZI9RFFUXV;;WAAT/FRWATLHW9HHL6J;;;;[0.117614 , 49.4841];;FRS14ETMGF1;MCQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.43888;47.992822;;;; +;;;;;;;;FREBNPXPWLH9URLF;;WAAT/FRWA3L4LT05MMW;;;;[0.118521 , 49.483859];;FRS14EAHFQ1;ZATX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.433546;45.740255;;;; +;;;;;;;;FREBNPJKA3JEAMYP;;WAAT/FRWATLU6EPPEKV;;;;[0.117765 , 49.484062];;FRS14EJAHQ1;YARW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.628622;48.919093;;;; +;;;;;;;;FREBNPRHLBTLPSI5;;WAAT/FRWATLU8IG97QI;;;;[0.118435 , 49.483859];;FRS14EGRXW1;YMMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.501411;47.96278;;;; +;;;;;;;;FREBNPHCVY8ZZGX8;;WAAT/FRWATLWMOLK9ZO;;;;[0.118609 , 49.483855];;FRS14EGLXY1;LRLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.387834;48.864353;;;; +;;;;;;;;FREBNPSJORIJEACH;;WAAT/FRWATLZ1BXASBN;;;;[0.118055 , 49.483866];;FRS14EHBSQ1;ARRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.397543;48.915856;;;; +;;;;;;;;FREBNPXEAAPBSHGL;;WAAT/FRWATLZUFGRAWI;;;;[0.118145 , 49.483861];;FRS14EHBLQ1;ARRV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.4014;48.832969;;;; +;;;;;;;;FREBNPKMY7EK3TVS;;WAAT/FRWA3L0DARYOWZ;;;;[0.118364 , 49.483861];;FRS14EGLHN1;RDNR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.883274;48.802732;;;; +;;;;;;;;FREBNPYOVTZBLZ6Y;;WAAT/FRWATLIJ81VEGA;;;;[0.118067 , 49.483865];;FRS14ECFWH2;RDNR3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.46288;48.689668;;;; +;;;;;;;;FREBNPQRT5VAQ5PW;;WAAT/FRWATLPQZUYHB9;;;;[0.118534 , 49.483858];;FRS14EGLVF1;RDNR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.70859;43.597586;;;; +;;;;;;;;FREBNPG15FUATVOZ;;WAAT/FRWATLQMISHJOQ;;;;[0.118292 , 49.483863];;FRS14EGLSB1;RDNR4;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.099712;44.558061;;;; +;;;;;;;;FREBNPWKHCVF4ZLP;;WAAT/FRWATLQ45BBS3W;;;;[0.117977 , 49.483868];;FRS14EHHLL1;GPFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.958167;48.821132;;;; +;;;;;;;;FREBNPPTMJY7PQFA;;WAAT/FRWATLP3I0JRDJ;;;;[1.777916 , 44.826052];;FRS14EHTZQ1;GDAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.724538;45.017224;;;; +;;;;;;;;FREBNPX215JLJ2YH;;WAAT/FRWATLTSIBFXH3;;;;[4.112658 , 48.301832];;FRS14EHTDE1;GPFG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.965738;50.357976;;;; +;;;;;;;;FREBNPKUZMMX4TIX;;WAAT/FRWATLWAQMIISB;;;;[1.65352 , 49.138592];;FRS14EJAAP1;GSWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.203076;48.680822;;;; +;;;;;;;;FREBNPP4CTJBHF9Q;;WAAT/FRWATLWNY7CEGC;;;;[-1.509592 , 46.209011];;FRS14EHVFJ1;EUVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.867375;50.428374;;;; +;;;;;;;;FREBNPS5JXS0NDKH;;WAAT/FRWATLZTZBPSJ2;;;;[1.833115 , 45.71833];;FRS14EAHYV1;HWVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.443023;48.763962;;;; +;;;;;;;;FREBNPKOKMLXJ1C1;;WAAT/FRWA4L154XJXF5;;;;[2.41169 , 48.6808];;FRS14EKPVM1;EUVY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.888169;47.992697;;;; +;;;;;;;;FREBNPUHWF1QXLIT;;WAAT/FRWA4L1P91IPAQ;;;;[1.661547 , 45.054029];;FRS14EAHBR1;MHKT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.213791;43.283688;;;; +;;;;;;;;FREBNPONVAVTDPJC;;WAAT/FRWA4L2FDMLBWC;;;;[6.164156 , 49.280802];;FRS14EJFGD1;YMMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.361568;49.341954;;;; +;;;;;;;;FREBNPKDSOJBUKIE;;WAAT/FRWATLIKFFCFDA;;;;[-0.398027 , 47.497011];;FRS14EFDYX2;CLXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.277622;47.400381;;;; +;;;;;;;;FREBNPEDVOP2GKDT;;WAAT/FRWATLJ6DJ2DQQ;;;;[6.303727 , 46.799849];;FRS14EFBJG1;VDTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.27863;49.022562;;;; +;;;;;;;;FREBNPD5L0ETPPMV;;WAAT/FRWATLJ8V5JVAV;;;;[0.837505 , 46.646292];;FRS14EJYZV1;RLZQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.370444;50.611664;;;; +;;;;;;;;FREBNPOMHSNRMBVM;;WAAT/FRWATLJJ6GOXB0;;;;[2.46174 , 45.653935];;FRS14EJUWT1;LRHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.08972;44.533779;;;; +;;;;;;;;FREBNPICYZM13ZT9;;WAAT/FRWATLLCRZAMHN;;;;[4.112718 , 48.301248];;FRS14EKBRS1;KYEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.745177;47.424479;;;; +;;;;;;;;FREBNPTL1WGTVEO9;;WAAT/FRWATLMQIZAYF7;;;;[-1.524187 , 43.508911];;FRS14EJZGZ1;LRXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.258726;43.844813;;;; +;;;;;;;;FREBNPRDFEUWJLV7;;WAAT/FRWATLN9EZCXXU;;;;[-1.371428 , 43.848528];;FRS14EJEFA1;AQEY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.18768;50.522053;;;; +;;;;;;;;FREBNPPO6ZR7Q3T0;;WAAT/FRWATLNTFIXJVC;;;;[-1.330752 , 46.151508];;FRS14EASQY1;ZSQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.502768;47.757525;;;; +;;;;;;;;FREBNPLK4IORN6OX;;WAAT/FRWATLOUB3BEXJ;;;;[1.661495 , 45.054285];;FRS14EJNMD1;CLXW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.106539;43.186433;;;; +;;;;;;;;FREBNPCLMHBS;;WAAT/FRWA4L2WB1WRL8;;;;[5.716421 , 45.166618];;FRS14EJFNZ1;LRLL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.815115;50.421265;;;; +;;;;;;;;FREBNPTWVNEL;;BornEco/646759c62f5a364fea25cae4;;;;[3.011686 , 48.557306];;FRS14EKMFJ1;VDTQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.316633;47.338265;;;; +;;;;;;;;FREBNPRQNSQX;;BornEco/645392b72f5a364fea62b459;;;;[0.579821 , 43.630042];;FRS14EALZR1;KYEP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.084763;50.418546;;;; +;;;;;;;;FREBNPJGECQF;;BornEco/6450e4ed2f5a364fea47cfee;;;;[4.057903 , 46.067479];;FRS14EAKAD1;ZRNF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.473353;43.400714;;;; +;;;;;;;;FREBNPNZAXHX;;BornEco/646b92c12f5a364fea4ba42c;;;;[4.868515 , 46.772643];;FRS14EAVEW1;ZRNF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.160763;48.820606;;;; +;;;;;;;;FREBNPWTKHQRLVGM;;BornEco/6474832b8d6bd3eb6ee52754;;;;[5.05556 , 43.423029];;FRS14EFXZT1;AQEY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.936743;48.90836;;;; +;;;;;;;;FREBNPHMQVVL;;BornEco/644e2d8e2f5a364fea312d3d;;;;[5.668929 , 45.238983];;FRS14EAANK1;LRKY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.609828;45.216413;;;; +;;;;;;;;FREBNPJMYBDN;;BornEco/647774ed14343644885a1bcc;;;;[0.107782 , 45.62177];;FRS14EYJTN2;FFET2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.998446;49.061943;;;; +;;;;;;;;FREBNPNPRXBQ;;BornEco/643fd95e2f5a364feac970df;;;;[3.127367 , 45.756949];;FRS14EHBLQ2;LRKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.737657;47.49048;;;; +;;;;;;;;FREBNPYYVBBJ;;BornEco/63fc668c6e73c7acf2178cb6;;;;[4.348872 , 43.816962];;FRS14EQUUR2;YQTX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.655923;46.6709;;;; +;;;;;;;;FREBNPDHCKIJOAXG;;BornEco/640729936e73c7acf2766af1;;;;[5.879898 , 43.12474];;FRS14ELLLE2;MLQW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.383996;50.717828;;;; +;;;;;;;;FREBNPTNY0MUAT3P;;BornEco/64242f91ceade60b491cd913;;;;[4.779702 , 45.807739];;FRS14EGBAE1;MLQW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.642176;43.909005;;;; +;;;;;;;;FREBNPIVVBJ8KBSM;;BornEco/64255ebeceade60b493082cc;;;;[6.073562 , 45.938909];;FRS14EPFCC1;BWQN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.369939;44.849567;;;; +;;;;;;;;FREBNPKU7GOCOQLM;;BornEco/64422df42f5a364feade87bd;;;;[3.846733 , 43.570576];;FRS14EZMEE2;JLEF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.002737;43.65229;;;; +;;;;;;;;FREBNPT80X29F55X;;BornEco/6446a9682f5a364fea0121b4;;;;[3.255585 , 43.347511];;FRS14EAHSB1;WSYZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.892216;43.335637;;;; +;;;;;;;;FREBNPWJASLMUGE9;;BornEco/6475e8a78d6bd3eb6ef39f0e;;;;[4.92037 , 44.943271];;FRS14EXLHM2;WSYZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.057488;43.115819;;;; +;;;;;;;;FREBNPXB7KJGMX1B;;WAAT/FRWATLIS4PZGPB;;;;[4.856536 , 45.716581];;FRS14EGLHN2;GYCF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.566679;42.690812;;;; +;;;;;;;;FREBNPOZC3CQY0LP;;WAAT/FRWATLGDWONW24;;;;[3.692073 , 43.460521];;FRS14EGLSB2;VFLU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.041879;50.4117;;;; +;;;;;;;;FREBNPHYERDCGEKJ;;WAAT/FRWATL9LISADHP;;;;[4.926582 , 45.719814];;FRS14EWYAW2;VFLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.285347;47.341021;;;; +;;;;;;;;FREBNPGHGFD1VXML;;WAAT/FRWATLCJ2HIM97;;;;[-0.43459 , 43.320479];;FRS14EFXZT2;VYZR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.80693;48.941721;;;; +;;;;;;;;FREBNPHTXRRAG7VZ;;WAAT/FRWATLEQGCOCFA;;;;[4.343414 , 45.469726];;FRS14EXLWP2;VYZR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.526772;48.98314;;;; +;;;;;;;;FREBNPRTRXS7Y6C9;;WAAT/FRWA1L4SW8KJ4T;;;;[4.789674 , 46.251364];;FRS14EGHER2;MNUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.53466;43.151848;;;; +;;;;;;;;FREBNPLR3Z5GMDXD;;WAAT/FRWATLGJV62IQI;;;;[5.947235 , 45.572891];;FRS14EGEKT2;VGKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.435014;48.414563;;;; +;;;;;;;;FREBNPZIUHTQE97T;;WAAT/FRWATLH1F9FFEY;;;;[2.37817 , 47.110352];;FRS14EGLVF2;VGKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.156842;49.041779;;;; +;;;;;;;;FREBNPP4ZIKZMGVU;;WAAT/FRWATLILRHEXW5;;;;[4.842734 , 44.120237];;FRS14EXTUQ2;UDDK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.982864;42.725495;;;; +;;;;;;;;FREBNPCLMU9GFZZA;;WAAT/FRWATL8PFXXQHG;;;;[7.47374 , 43.758054];;FRS14EWZVF2;UDDK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.544192;50.176641;;;; +;;;;;;;;FREBNPSWKGDBKOKM;;BornEco/649ae2086a4e31e6c34d4861;;;;[7.44416 , 43.88006];;FRS14EAABT2;MRJL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.001006;43.591561;;;; +;;;;;;;;FREBNPAKHOI6DR2E;;WAAT/FRWA3L9HKFTGHQ;;;;[7.438363 , 43.751828];;FRS14EXPNY2;MCMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.373755;47.656289;;;; +;;;;;;;;FREBNPXZXALUKTTA;;BornEco/649c10906a4e31e6c35428b2;;;;[7.472565 , 43.833315];;FRS14EYBLV2;MYHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.852179;47.898355;;;; +;;;;;;;;FREBNPKVCB2FBNZ3;;BornEco/64a2d9580f4133a306c11a22;;;;[7.42744 , 43.745292];;FRS14EYDWA2;JLEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.901545;48.801029;;;; +;;;;;;;;FREBNPF36WUWT4H7;;BornEco/64a430a40f4133a306e1661f;;;;[7.414438 , 43.941508];;FRS14EEKEA2;MWBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.56281;48.903847;;;; +;;;;;;;;FREBNPIY1C479BL4;;WAAT/FRWATL1FIWWJ0F;;;;[7.499757 , 43.773746];;FRS14EEGHB2;PZNC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.704475;48.798316;;;; +;;;;;;;;FREBNPWM3WAO2RMZ;;WAAT/FRWATLLJARIKGX;;;;[7.442932 , 43.78694];;FRS14EENHN2;FMSL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.34242;49.413475;;;; +;;;;;;;;FREBNPW5KMVUFDR3;;WAAT/FRWA3LACEI3U1T;;;;[7.551562 , 43.989458];;FRS14EEMCJ2;FMSL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.299509;49.261551;;;; +;;;;;;;;FREBNPNKIJMI48IG;;WAAT/FRWATL2L69NXHS;;;;[7.399986 , 43.744711];;FRS14EHQHM2;ECMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.043626;45.797254;;;; +;;;;;;;;FREBNPZHGBKZ4XPO;;WAAT/FRWA4L2LQSZ62J;;;;[7.51395 , 43.936804];;FRS14EHBSQ2;ECMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-4.468012;43.640791;;;; +;;;;;;;;FREBNPCARIVD0JDN;;WAAT/FRWA4L3ZLEUIU7;;;;[7.59311 , 44.089897];;FRS14EHPQT2;TCLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.112697;48.895731;;;; +;;;;;;;;FREBNPJ9OYDDWH7H;;WAAT/FRWA6LWBE6WZGK;;;;[6.616902 , 44.674677];;FRS14EAAAR2;TCLV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.899717;45.250192;;;; +;;;;;;;;FREBNPBEXG8FSQXS;;WAAT/FRWA6LEFES5XDF;;;;[5.147713 , 43.328661];;FRS14EKSXC1;PZGF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.227624;44.892388;;;; +;;;;;;;;FREBNPIOJV93PGDX;;WAAT/FRWA6LBRUKLCLZ;;;;[-0.0959 , 43.000297];;FRS14EQUUR1;MWBQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.890093;46.823734;;;; +;;;;;;;;FREBNPQMCDRLTNYE;;WAAT/FRWA6LD0UVVQY5;;;;[6.949694 , 43.634486];;FRS14ELLLE1;PZGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.744211;45.88781;;;; +;;;;;;;;FREBNPHAERKHAILF;;WAAT/FRWA6LEDNOTX07;;;;[0.683944 , 44.405045];;FRS14EHHLL2;PZNC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.846141;43.801133;;;; +;;;;;;;;FREBNPF8KFZXGKDI;;WAAT/FRWA6LEGBDXM3G;;;;[3.09328 , 50.58254];;FRS14EZMEE1;QADV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.383561;43.395675;;;; +;;;;;;;;FREBNPFLPBRFXHAM;;WAAT/FRWA6LEONHSYS2;;;;[7.507033 , 43.775118];;FRS14EWZVF1;QADV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.431899;46.228058;;;; +;;;;;;;;FREBNPYHCKATCVZD;;WAAT/FRWA6LEXY5ACXU;;;;[7.48751 , 43.77632];;FRS14EAARS1;GYCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.540527;43.823233;;;; +;;;;;;;;FREBNPL8FMQOSKS4;;WAAT/FRWA6LARSAF1X8;;;;[5.036317 , 43.829995];;FRS14EXTUQ1;MYHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.109533;43.448498;;;; +;;;;;;;;FREBNPFW8JB0GBVB;;WAAT/FRWA6L7LOGXBL6;;;;[7.516805 , 43.943967];;FRS14EAFDA1;NUKH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.011858;43.627679;;;; +;;;;;;;;FREBNPOYKRAJWUI5;;WAAT/FRWA6L2PTAKW2H;;;;[7.462256 , 43.799141];;FRS14EPAJS2;MUPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.143343;50.453083;;;; +;;;;;;;;FREBNPJWSJQ6RNHM;;WAAT/FRWA6L4MGAVBJW;;;;[7.613763 , 44.063215];;FRS14ECBER1;YYMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.421246;45.809544;;;; +;;;;;;;;FREBNPGIB8D1B3ML;;WAAT/FRWA6L6B6O8VFG;;;;[7.400442 , 43.739492];;FRS14EAAUK1;MUPC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.223229;50.402145;;;; +;;;;;;;;FREBNPQH3MXFSZJA;;WAAT/FRWA6L8FOM2HPI;;;;[7.616321 , 44.063348];;FRS14EFMZA1;SPCY3;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.75022;43.15277;;;; +;;;;;;;;FREBNPI8CSUBSTQY;;WAAT/FRWA6L9RTONUAA;;;;[7.436248 , 43.751169];;FRS14EFGDK1;GWCV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.548227;43.627499;;;; +;;;;;;;;FREBNPDZTEO5VMC9;;WAAT/FRWA6LAKME4K40;;;;[7.41676 , 43.73867];;FRS14EFPNP1;GWCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.857081;43.462911;;;; +;;;;;;;;FREBNPPFDSQONRUW;;WAAT/FRWA6LQLBXZ11E;;;;[-0.321626 , 43.303566];;FRS14EFNQP1;FMEE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.115141;48.886998;;;; +;;;;;;;;FREBNPHV3YYVD9CQ;;WAAT/FRWA6LPNGZXPJR;;;;[0.657747 , 45.191302];;FRS14EHMVQ2;FSPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.817536;47.86667;;;; +;;;;;;;;FREBNPMSU1UWQGZE;;WAAT/FRWA6LQHTXK4BM;;;;[7.477096 , 43.795037];;FRS14EFGCS1;FMEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.135457;43.34128;;;; +;;;;;;;;FREBNPPVZ0P4QBGB;;WAAT/FRWA6LR1GSYWGI;;;;[7.554498 , 44.002431];;FRS14EAARA3;FMEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.259945;45.716101;;;; +;;;;;;;;FREBNPCDVYRNUDQ1;;WAAT/FRWA6LMTQY569J;;;;[7.5946 , 44.082484];;FRS14EPAJS1;FSPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.016488;45.59568;;;; +;;;;;;;;FREBNPQKKIKZK3ZD;;WAAT/FRWA6LR5NOHF1K;;;;[7.497872 , 43.806605];;FRS14EFWCT1;FSPL3;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.698781;45.80878;;;; +;;;;;;;;FREBNPO2ILRGMRRA;;WAAT/FRWA6LSRWDT05Y;;;;[7.449385 , 43.876103];;FRS14EAAJA1;SPCY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.802572;45.903665;;;; +;;;;;;;;FREBNPWXHZWTA5ER;;WAAT/FRWA6LTJEAN9QQ;;;;[7.45799 , 43.765323];;FRS14EAABT1;SPCY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.977228;45.711876;;;; +;;;;;;;;FREBNPH5N3BW8X1L;;WAAT/FRWA6LOE96MWRI;;;;[7.49197 , 43.79061];;FRS14ECBER2;GWCV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.772177;43.342364;;;; +;;;;;;;;FREBNPCANHER;;WAAT/FRWA6LGMY0DFRR;;;;[7.513379 , 43.781903];;FRS14EGTJV3;TBFV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.979827;45.449333;;;; +;;;;;;;;FREBNPFBYQDSUWIU;;WAAT/FRWA6LJFHGOAAP;;;;[7.479481 , 43.76015];;FRS14EGTJV2;TAWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.982252;44.420364;;;; +;;;;;;;;FREBNPFRD1O42B4X;;WAAT/FRWA6LH1WMDEXK;;;;[7.469054 , 43.78898];;FRS14EADTS1;TBFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.052693;45.382478;;;; +;;;;;;;;FREBNPYXWYDYAZRR;;WAAT/FRWA6LIKKXYLUI;;;;[7.494254 , 43.781006];;FRS14EGRXW2;JDFY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.516744;43.338135;;;; +;;;;;;;;FREBNPDWG6IHEU7O;;WAAT/FRWA6LJFZIEVZE;;;;[4.38243 , 48.94513];;FRS14EGLXY2;JDFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.251435;45.096274;;;; +;;;;;;;;FREBNPQYCADMQWOA;;WAAT/FRWA6LKWXGSRJD;;;;[0.16648 , 48.05205];;FRS14EWUJK2;GAVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-3.58243;49.131942;;;; +;;;;;;;;FREBNPOMXZZQL6TV;;WAAT/FRWA6L1XSYKHIJ;;;;[3.28694 , 48.5546];;FRS14EWXFQ2;RFWX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.26341;42.907836;;;; +;;;;;;;;FREBNPCY2ZODO2QU;;WAAT/FRWA4LA5OIPNMY;;;;[2.27767 , 50.7313];;FRS14EADMG1;BWQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.85769;47.121343;;;; +;;;;;;;;FREBNPWL5XZNI7WZ;;WAAT/FRWATLQL3JB7DU;;;;[2.097651 , 49.457892];;FRS14EADDH1;NUKH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.269258;48.863001;;;; +;;;;;;;;FREBNPWDLJPIX1QR;;WAAT/FRWATLLGFUACQZ;;;;[5.409014 , 43.307994];;FRS14EADRR1;MRJL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.77883;48.894506;;;; +;;;;;;;;FREBNPGXXHNQ5HXX;;WAAT/FRWATLMOTDFQ9E;;;;[5.380148 , 43.304954];;FRS14EAARA2;MCMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.818807;43.691865;;;; +;;;;;;;;FREBNPL26DHUKX0L;;WAAT/FRWA4LKTNYA50W;;;;[5.195572 , 43.409384];;FRS14EABUA1;PYYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.844539;48.766404;;;; +;;;;;;;;FREBNPKQBUJVHM6Y;;WAAT/FRWA4LPYR1NTBQ;;;;[5.540796 , 43.214406];;FRS14EABFN1;PYYF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.261835;46.794239;;;; +;;;;;;;;FREBNPFA3KQKMH2K;;WAAT/FRWA5L4AUJMAK7;;;;[5.376228 , 43.253932];;FRS14EACMW1;RFXS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.416422;48.985254;;;; +;;;;;;;;FREBNPC4QMLCCH2R;;WAAT/FRWA5LGMEJRVMS;;;;[5.45921 , 43.345324];;FRS14EABXV1;GAVU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.902871;43.18835;;;; +;;;;;;;;FREBNPZSP1FHHFPM;;WAAT/FRWA5LJ7MZKRYP;;;;[3.08947 , 48.80341];;FRS14EADZK1;RFWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.578569;48.84893;;;; +;;;;;;;;FREBNPY4YC7FBRZQ;;WAAT/FRWA4LR5LB3YCQ;;;;[5.725449 , 45.157305];;FRS14EAARA1;RFXS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.23853;43.828607;;;; +;;;;;;;;FREBNPMRFEJQ1ZVF;;WAAT/FRWA4LBFPTVSHW;;;;[-1.653702 , 47.234349];;FRFR1ENQCQ1;MGYK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.725223;43.64506;;;; +;;;;;;;;FREBNPOH9QA6KXPK;;WAAT/FRWA4LBLBUVOPL;;;;[2.375174 , 48.905095];;FRFR1EVBDL1;MGYK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.207738;45.551683;;;; +;;;;;;;;FREBNPOM98B5NCGU;;WAAT/FRWA4LDIPHUNQJ;;;;[1.013502 , 49.391457];;FRFR1EQJAM6;TMEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.036066;45.897844;;;; +;;;;;;;;FREBNPYYBZKF;;WAAT/FRWA4LHAHSDXVG;;;;[4.954775 , 47.160968];;FRFR1EGNUL2;TMEW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.107127;43.688165;;;; +;;;;;;;;FREBNPWOQTPMJD7R;;WAAT/FRWA4LHY82DEL2;;;;[2.304465 , 50.909617];;FRFR1EMYVE1;YYMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.524365;47.04819;;;; +;;;;;;;;FREBNPPH6VWTTSVI;;WAAT/FRWA4LIKM1NC83;;;;[6.303378 , 43.149175];;FRFR1EBZTN1;WVHS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.070324;43.782834;;;; +;;;;;;;;FREBNPFQCR2BEGJF;;WAAT/FRWA4LKKMKREUD;;;;[2.376104 , 47.765942];;FRFR1EBZTN2;PLDY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.29256;43.29045;;;; +;;;;;;;;FREBNPCLFAVQ;;WAAT/FRWA4LOU55UWWJ;;;;[3.134437 , 48.477517];;FRFR1EMYVE2;FVWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.190834;45.192056;;;; +;;;;;;;;FREBNPQIYDUPSLD7;;WAAT/FRWA4LPTTQDXDC;;;;[3.013792 , 48.555402];;FRFR1EFEZH1;PHKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.787218;43.578109;;;; +;;;;;;;;FREBNPDBA0BNH7EP;;WAAT/FRWA4LR8MA3S0K;;;;[0.13031 , 45.66341];;FRFR1EFEZH2;THYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1.519009;44.928469;;;; +;;;;;;;;FREBNPBAWG4VXXRC;;WAAT/FRWA4LT25W7ORB;;;;[-0.599606 , 45.60921];;FRFR1ENSSL1;DUPG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.588766;48.674145;;;; +;;;;;;;;FREBNPIL2LVDJOZC;;WAAT/FRWA4LTHVO5FGA;;;;[2.58904 , 50.49259];;FRFR1ESHEN1;FXXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.539401;43.602861;;;; +;;;;;;;;FREBNPGJHDGEW1RW;;WAAT/FRWA4LUCFFETXE;;;;[6.84073 , 47.48726];;FRFR1ERUBW2;FXXT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.332443;48.690335;;;; +;;;;;;;;FREBNPDOTZDZMFFW;;WAAT/FRWA4LUGYOY01B;;;;[5.409094 , 43.264841];;FRFR1ERUBW1;HSHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.433229;43.600631;;;; +;;;;;;;;FREBNPP4BGHJXHOT;;WAAT/FRWA4LVOTNCZKR;;;;[5.381775 , 43.338291];;FRFR1EXFDA2;CURC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.717779;43.710421;;;; +;;;;;;;;FREBNPEBYI5NPO9K;;WAAT/FRWA4LXVFGCC1Y;;;;[6.69824 , 43.448584];;FRFR1EXFDA1;NXJZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.575711;44.314247;;;; +;;;;;;;;FREBNPLOGXNLQR1V;;WAAT/FRWATLJBYV94DZ;;;;[5.782529 , 44.930736];;FRFR1ELAUA1;GTGP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.201649;45.897811;;;; +;;;;;;;;FREBNPBIAIJUVWY6;;WAAT/FRWA5LKQ2XKCZH;;;;[5.389461 , 43.280847];;FRFR1ELAUA2;TXQF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.300644;43.227057;;;; +;;;;;;;;FREBNPAVUGAR5K1V;;WAAT/FRWA3LH4CQ5E0H;;;;[5.480306 , 43.335877];;FRFR1ERXSM1;FCWL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.724571;43.423478;;;; +;;;;;;;;FREBNPHLDZRB6LRZ;;WAAT/FRWATLMX1KFY7D;;;;[5.22183 , 43.41657];;FRFR1ERZLB1;FTYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.415964;47.569098;;;; +;;;;;;;;FREBNPE6Y7M7AMVB;;WAAT/FRWATLTTM35X29;;;;[5.362979 , 43.288972];;FRFR1EGNUL1;FLVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.677952;43.550743;;;; +;;;;;;;;FREBNPZVTPWBGVUT;;WAAT/FRWA3L94CRR7KA;;;;[3.883278 , 45.026175];;FRFR1EZVUW1;FEAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.012437;48.777414;;;; +;;;;;;;;FREBNPURHEE05T5G;;WAAT/FRWATLL6VDGLO2;;;;[1.309178 , 45.780319];;FRFR1EEXFT1;FNFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.023903;49.25483;;;; +;;;;;;;;FREBNPVGOBDGLPKS;;WAAT/FRWA3LR012DNKK;;;;[-0.666341 , 44.831528];;FRFR1EPVCY2;PHKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.317971;48.954733;;;; +;;;;;;;;FREBNPS2X4SQRIWM;;WAAT/FRWA3LWYNTPGTR;;;;[1.383969 , 44.038574];;FRFR1EKMFD3;DUPG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.368138;43.724532;;;; +;;;;;;;;FREBNPIOEFVEOSYD;;WAAT/FRWATLM0EL21RA;;;;[5.387781 , 43.299928];;FRFR1EDERM1;THYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.303434;43.580375;;;; +;;;;;;;;FREBNPZ4C1VGM0DH;;WAAT/FRWA5LYYWQGKZR;;;;[5.37587 , 43.284198];;FRFR1EDMKW1;ZLAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.372832;48.81154;;;; +;;;;;;;;FREBNPVPY490SRSN;;WAAT/FRWATL0YJ2UC6M;;;;[5.62989 , 43.211412];;FRFR1EDMKW2;PLDY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.803755;43.293342;;;; +;;;;;;;;FREBNPFQCHFMZVJL;;WAAT/FRWA5LZJCEUQDB;;;;[5.25172 , 43.411612];;FRFR1EDERM2;XTRY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.86124;45.826184;;;; +;;;;;;;;FREBNPHT6OIBP1HQ;;WAAT/FRWA5LZKMRRUCN;;;;[5.389277 , 43.290449];;FRFR1ELGSD1;XTRY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.575756;45.19392;;;; +;;;;;;;;FREBNPFDJN70AGER;;WAAT/FRWATL2O03PP4Y;;;;[5.387068 , 43.260804];;FRFR1ELGSD2;LVSX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.329456;43.931774;;;; +;;;;;;;;FREBNPPCPZSNAJOW;;WAAT/FRWATL2XGT9WUL;;;;[5.393886 , 43.255794];;FRFR1ELBYG1;LVSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.244794;48.878382;;;; +;;;;;;;;FREBNPR8XY0SZE9U;;WAAT/FRWATLAE66P19I;;;;[5.367613 , 43.315171];;FRFR1ELBYG2;SUZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.326251;45.757234;;;; +;;;;;;;;FREBNPCUG99GGOWF;;WAAT/FRWATLJ8Y3Q8UO;;;;[5.398803 , 43.299757];;FRFR1EPUEP1;EWYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.95602;44.858162;;;; +;;;;;;;;FREBNPUTSMAL;;BornEco/63dcf0bade530c3ec2928d14;;;;[5.468984 , 43.354728];;FRFR1EMGXV1;GDCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.230815;43.638122;;;; +;;;;;;;;FREBNPNGKNNY;;Norauto - Bornes publiques/571A57B1-5FBB-49D4-99A0-29733B8C8D33;;;;[5.363203 , 43.270909];;FRFR1ELXBM1;JYZR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.186634;43.52748;;;; +;;;;;;;;FREBNPLWXQSAKCCJ;;Norauto - Bornes publiques/3112428D-C629-40AF-A5E4-D1797CE898E7;;;;[5.364434 , 43.298149];;FRFR1ELXBM2;LXZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.253828;43.644878;;;; +;;;;;;;;FREBNPSURFS8ZTGN;;Norauto - Bornes publiques/380BDE59-5E6C-434B-893B-A38970D49D49;;;;[5.390399 , 43.339001];;FRFR1EJCWS1;DYAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.106898;44.145189;;;; +;;;;;;;;FREBNPLIEIZRQF8F;;Norauto - Bornes publiques/45e816a3-ed6c-4883-812d-79703086b18c;;;;[5.31756 , 43.359392];;FRFR1ERXSM2;NPSU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.882355;48.832096;;;; +;;;;;;;;FREBNPUKTMEQNRXJ;;Norauto - Bornes publiques/5A5A9137-B2E4-4A78-B94A-A8D8DB30F534;;;;[5.43888 , 43.309691];;FRFR1EMEGL1;EASZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.299774;48.795358;;;; +;;;;;;;;FREBNPDXPLVE;;Norauto - Bornes publiques/60645100-d364-426f-aea1-b541e9a22721;;;;[5.433546 , 43.294651];;FRFR1EEFJE1;GDCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.40506;45.979391;;;; +;;;;;;;;FREBNPSXUCBY;;Norauto - Bornes publiques/65A1A5C0-CB92-45B3-9816-1508E736A3B3;;;;[5.628622 , 43.297149];;FRFR1ERYEE2;FVEX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.995669;50.411865;;;; +;;;;;;;;FREBNPMDEFSB;;Norauto - Bornes publiques/6D5B69A3-90E6-47C2-A6EF-89AEEDCF873D;;;;[5.501411 , 43.295673];;FRFR1EVXTM1;FEVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.708992;48.978759;;;; +;;;;;;;;FREBNPXJLPEH;;Norauto - Bornes publiques/1E4102AC-8CC0-4C55-A1D3-7828F8FD5D27;;;;[5.387834 , 43.288587];;FRFR1EQJUJ1;WVHS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.7817;43.341518;;;; +;;;;;;;;FREBNPKRPNCH;;Norauto - Bornes publiques/1389CA75-EEAA-4C7F-B250-256D79907116;;;;[5.397543 , 43.260987];;FRFR1ECALH1;FXNK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.277046;48.912298;;;; +;;;;;;;;FREBNPGBMHGY;;Norauto - Bornes publiques/1B8D3F80-A6E2-497D-B8B5-73CFD4CCC20C;;;;[5.4014 , 43.319046];;FRFR1ECBZU1;AKXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.775482;43.139423;;;; +;;;;;;;;FREBNPMBKYAM;;Norauto - Bornes publiques/1F131AB9-5931-456F-9CAD-7987BBAF3A32;;;;[-1.883274 , 46.671909];;FRFR1EXVUM1;NLMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.681316;43.830335;;;; +;;;;;;;;FREBNPSGRPBU;;Norauto - Bornes publiques/219E136A-89D2-44AD-8B09-3B5AFBBF6B28;;;;[-1.46288 , 47.186053];;FRFR1EYYYP2;PBRJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.929122;50.625463;;;; +;;;;;;;;FREBNPJLQKAG;;Norauto - Bornes publiques/281C04F0-E96C-4835-AE1F-F11D8FDEF4F5;;;;[5.70859 , 45.193048];;FRFR1EXVUM2;PTKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.538786;47.742979;;;; +;;;;;;;;FREBNPLLZYYD;;Norauto - Bornes publiques/11146714-0B6A-4EB7-9B99-AB5DF44A6E02;;;;[5.099712 , 43.635144];;FRFR1EYYYP1;PKDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.366028;50.369704;;;; +;;;;;;;;FREBNPBRKYBY;;Norauto - Bornes publiques/8E164D1B-5C36-4799-B133-67C8028D5E96;;;;[5.958167 , 43.125814];;FRFR1ELZPT1;TYKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.100637;48.509679;;;; +;;;;;;;;FREBNPTZZHBY;;Norauto - Bornes publiques/A7C0D339-573F-4A95-8FCA-7EB0E319C8B8;;;;[-1.724538 , 48.10671];;FRFR1ELZPT2;LFRX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.69576;43.500559;;;; +;;;;;;;;FREBNPK8UHYWJQHE;;Norauto - Bornes publiques/ABB3B1A8-4A98-4EF7-8CB1-3223B19A3D6F;;;;[3.965738 , 50.268206];;FRFR1ESJKZ2;ZXKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.604714;45.652871;;;; +;;;;;;;;FREBNPZZEIEVWEMC;;Norauto - Bornes publiques/AF938A9A-86B1-48B3-A6DC-914FC694E834;;;;[0.203076 , 47.992822];;FRFR1ESHWH2;DSQT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.732208;47.096065;;;; +;;;;;;;;FREBNPBIE1NOC2IO;;Norauto - Bornes publiques/7FCB08D0-06B2-4027-8F92-A7B082320D46;;;;[4.867375 , 45.740255];;FRFR1ESHWH1;PVTD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.563105;47.792137;;;; +;;;;;;;;FREBNPZIMRJWFPJL;;Norauto - Bornes publiques/77333B59-67B3-48A4-BA9F-E997387A7A0B;;;;[1.443023 , 48.919093];;FRFR1ESJKZ1;DSQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.238002;43.936907;;;; +;;;;;;;;FREBNPHON0JAOCCV;;Norauto - Bornes publiques/78E616B4-7BA0-4413-B78D-CFB584AB2799;;;;[1.888169 , 47.96278];;FRFR1ENUAB2;BLZK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.2564;50.4124;;;; +;;;;;;;;FREBNPVTPM86E6SG;;Norauto - Bornes publiques/84C490A8-F786-4E35-BA27-38626410EC92;;;;[2.213791 , 48.864353];;FRFR1EYFVQ1;BLZK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.216901;43.228472;;;; +;;;;;;;;FREBNPIHDYYMOWSE;;CARF - Bornes Publiques/25F18F8B-FED0-497F-9D7D-71FEF99B4A70;;;;[2.361568 , 48.915856];;FRFR1EEVSU1;ZDVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.999126;50.370623;;;; +;;;;;;;;FREBNPFUVLYZNAC1;;CARF - Bornes Publiques/0B1B7295-2206-42B1-8951-22521F6E8E76;;;;[2.277622 , 48.832969];;FRFR1ESMST1;ZDVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.36665;50.54838;;;; +;;;;;;;;FREBNPHANDNASEFE;;CARF - Bornes Publiques/170A9812-9FD4-4F8A-85EA-C6C26D275BAA;;;;[2.27863 , 48.802732];;FRFR1EMWFG1;NHYA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.648388;48.779841;;;; +;;;;;;;;FREBNPEP9B5SQXIV;;CARF - Bornes Publiques/1FE96331-2018-4918-AA44-11F7900143C8;;;;[2.370444 , 48.689668];;FRFR1EADTT2;NHYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.114644;48.869667;;;; +;;;;;;;;FREBNPGE3HA5PUXP;;CARF - Bornes Publiques/1e51511b-9531-42b9-a289-d22cf5984e15;;;;[7.08972 , 43.597586];;FRFR1EADTT1;FQTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.31026;47.338212;;;; +;;;;;;;;FREBNPHTGDQIHOM0;;CARF - Bornes Publiques/30863A27-91A6-40AA-9C8C-2A08ADC581E5;;;;[4.745177 , 44.558061];;FRFR1ENQNJ1;FRMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.088928;49.138558;;;; +;;;;;;;;FREBNPVZZKPP;;CARF - Bornes Publiques/07A6ED91-C96F-4871-AC56-6982896A4AA0;;;;[2.258726 , 48.821132];;FRFR1ENQNJ2;FCKS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;-2.735438;45.896714;;;; +;;;;;;;;FREBNPNYDEBU;;CARF - Bornes Publiques/31B87691-9930-4034-AF37-E159F2AB1A15;;;;[1.18768 , 45.017224];;FRFR1ERYEE1;FLVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.788389;48.837149;;;; +;;;;;;;;FREBNPPNSRMA;;CARF - Bornes Publiques/366DA9E5-C295-45AD-B9EC-911517B8A0A6;;;;[3.502768 , 50.357976];;FRFR1EPKWK1;FUDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.165448;43.389626;;;; +;;;;;;;;FREBNPXUNZRR;;CARF - Bornes Publiques/44287F2F-18FC-4312-BE87-87739EAF3357;;;;[2.106539 , 48.680822];;FRFR1ELAEG1;FRED1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.432522;43.620221;;;; +;;;;;;;;FREBNPHUNZB9FZ2G;;CARF - Bornes Publiques/02D28A55-8180-4EE2-967B-C4DE85CE8DE6;;;;[2.815115 , 50.428374];;FRFR1ELGYR1;FTWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.311707;48.910105;;;; +;;;;;;;;FREBNPFDY5ILTA9I;;CARF - Bornes Publiques/4E5A40E1-AB25-4ADD-A460-22AA8193CB6F;;;;[2.316633 , 48.763962];;FRFR1EDBRF1;FFVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;4.825474;43.614964;;;; +;;;;;;;;FREBNPPVTHLSH5KU;;EVzen/6ad8a99c-3b52-4731-85ca-2287e79d38d9;;;;[-4.084763 , 47.992697];;FRFR1EFQVN1;FVCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.01857;43.579598;;;; +;;;;;;;;FREBNPVHAMCV;;EVzen/0da11575-ea62-47e1-be6f-247316d0fcbf;;;;[3.473353 , 43.283688];;FRFR1EUXYB1;FQTC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.327724;43.546712;;;; +;;;;;;;;FREBNPYHBVNIPGQG;;EVzen/10508f61-0c35-4b1b-bc5e-e72c54de927d;;;;[6.160763 , 49.341954];;FRFR1EUVGY1;VMZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.679922;48.597132;;;; +;;;;;;;;FREBNPSNJTCRYXPQ;;EVzen/312557b1-5a81-4247-9d9b-1eefca4ad7d0;;;;[2.936743 , 47.400381];;FRFR1EWBGB1;UHZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.088715;43.854906;;;; +;;;;;;;;FREBNPNKBQJ8XDAJ;;EVzen/6ba8d5e0-b89a-4577-8b26-28720e329b80;;;;[1.609828 , 49.022562];;FRFR1EPPDX1;VMZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.826488;49.059396;;;; +;;;;;;;;FREBNPEMAQAISOIN;;EVzen/8b973959-fcf0-48e0-b422-6db07418134c;;;;[2.998446 , 50.611664];;FRFR1EPVCY1;UHZG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.457406;50.661294;;;; +;;;;;;;;FREBNPH6VUVLTMNF;;CARF - Bornes Publiques/0246A32B-4DA5-45F3-83CD-58BBBA40C570;;;;[4.737657 , 44.533779];;FRFR1EVVAD1;RXTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.676798;49.015624;;;; +;;;;;;;;FREBNPOYFFQZBYFP;;CARF - Bornes Publiques/50298C72-AF6A-4A0E-B49C-304F82EECC24;;;;[0.655923 , 47.424479];;FRFR1EVVAD2;RXTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.057537;43.301458;;;; +;;;;;;;;FREBNPEDM5XZ78S5;;Norauto - Bornes publiques/0E8DE6A2-82B9-4261-B1BB-6ED01D981CA6;;;;[-1.383996 , 43.844813];;FRFR1EMLAX1;KQHT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.167658;48.706046;;;; +;;;;;;;;FREBNPSJCGRO59VL;;CARF - Bornes Publiques/F622865D-1C4A-4DDC-B791-7172191D0857;;;;[2.642176 , 50.522053];;FRFR1EFTLT2;KQHT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.111948;47.476594;;;; +;;;;;;;;FREBNPUYRULM0CVA;;CARF - Bornes Publiques/A9959385-D59F-405F-A090-FB4F879C498D;;;;[-3.369939 , 47.757525];;FRFR1ENXLS2;LEBV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.560478;48.797916;;;; +;;;;;;;;FREBNPLMO4CYWQ7Z;;CARF - Bornes Publiques/B2B81770-2D82-4B37-ADDC-1932D36E3B86;;;;[3.002737 , 43.186433];;FRFR1EEAYP1;WEDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.41904;48.254578;;;; +;;;;;;;;FREBNPW3MF1HLOKZ;;CARF - Bornes Publiques/C361F4BD-F52E-42FB-B2FF-0CF97C15E3C0;;;;[2.892216 , 50.421265];;FRFR1EEAYU1;ZMPB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.85197;43.408157;;;; +;;;;;;;;FREBNPGKE5UHODFR;;CARF - Bornes Publiques/E1BA5D9F-F149-4592-A062-C3C49C04FDE6;;;;[5.057488 , 47.338265];;FRFR1ENXLS1;ZMPB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.398487;43.697144;;;; +;;;;;;;;FREBNPGH4VMCSAZK;;CARF - Bornes Publiques/FCB5BEC9-0356-4EE8-B8F9-5C923C01C394;;;;[1.566679 , 50.418546];;FRFR1ELBSA1;XYAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.911855;43.227068;;;; +;;;;;;;;FREBNPJCC4MS2WXT;;CARF - Bornes Publiques/A94F6CB6-F1DE-4311-87F5-E1C21C182281;;;;[5.041879 , 43.400714];;FRFR1EXCCA1;MNPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.965237;49.187454;;;; +;;;;;;;;FREBNPHEQVLNPGAI;;Norauto - Bornes publiques/05939333-DC66-4BFE-A6F7-77D723254062;;;;[2.2338 , 48.820606];;FRFR1ERGDA1;ZQUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;1.398092;43.324307;;;; +;;;;;;;;FREBNPIVIDV8DXOP;;Norauto - Bornes publiques/0AB0E24F-45F3-4746-ACE2-8C3A465EA095;;;;[2.285347 , 48.90836];;FRFR1EJNHH1;WCPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.245213;;;;; +;;;;;;;;FREBNPRVKMQBXTEP;;CARF - Bornes Publiques/A1952231-8C6B-4306-B109-106BE66B07FC;;;;[5.80693 , 45.216413];;FRFR1EYUYG1;PDWK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.020694;;;;; +;;;;;;;;FREBNPCYFHJJ;;CARF - Bornes Publiques/87BFBA33-19FC-42C0-AAA8-223154A083C8;;;;[2.526772 , 49.061943];;FRFR1EMRRB1;WEDE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.091362;;;;; +;;;;;;;;FREBNPAZPDRF;;CARF - Bornes Publiques/52948FDE-1CE5-4462-BD34-8B5A6EF684DA;;;;[-0.53466 , 47.49048];;FRFR1ECJMF1;PLDE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;3.064439;;;;; +;;;;;;;;FREBNPELRFKZ;;CARF - Bornes Publiques/816CEDC2-FF5E-4942-B617-CD0569448D2F;;;;[-1.435014 , 46.6709];;FRFR1ERMSR2;PDWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.221751;;;;; +;;;;;;;;FREBNPMAMVPH;;CARF - Bornes Publiques/81878BD6-4B78-4DBE-94AD-872F818E1194;;;;[3.156842 , 50.717828];;FRFR1ERMSR1;VWWB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;5.381492;;;;; +;;;;;;;;FREBNPCMTC5TQSOW;;CARF - Bornes Publiques/86AFAEBF-A07F-4F93-981B-80D9BC7F856F;;;;[1.982864 , 43.909005];;FRFR1ELNRV1;WCAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.303627;;;;; +;;;;;;;;FREBNPNAPOVOMVVA;;CARF - Bornes Publiques/8A492B9B-057C-4B3A-8020-E5835B62CF39;;;;[-0.544192 , 44.849567];;FRFR1EFTLT1;MMCB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;-0.61389;;;;; +;;;;;;;;FREBNPXHERGSSQS7;;CARF - Bornes Publiques/8C44E3B4-E0FC-406A-A255-BBA4F44A6DBC;;;;[4.001006 , 43.65229];;FRFR1EJVPG1;VUHN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.057675;;;;; +;;;;;;;;FREBNPX3OK9GZBRM;;CARF - Bornes Publiques/8CF2C967-C80C-4463-B4BE-A2D9C79A1A2A;;;;[5.373755 , 43.335637];;FRFR1EJGTD1;WCAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.441336;;;;; +;;;;;;;;FREBNPQNXYMD;;CARF - Bornes Publiques/91981169-1681-42D0-836C-51CDB0788AEC;;;;[5.852179 , 43.115819];;FRFR1ESYKB1;PDNF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.058367;;;;; +;;;;;;;;FREBNPGAXPWP;;CARF - Bornes Publiques/97BBD38A-F72F-4418-9160-266374714746;;;;[2.901545 , 42.690812];;FRFR1ENYMM2;UFLE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;7.191045;;;;; +;;;;;;;;FREBNPS17UEJU18E;;Atlante/FRATL*SAIN4701;;;;[1.56281 , 50.4117];;FRFR1EEEHK1;RFEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;2.329445;;;;; +;;;;;;;;FREBNPZ6CIOZHDCI;;Atlante/FRATL*PORT6501;;;;[0.704475 , 47.341021];;FRFR1EEEHK2;UFLE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;6.899634;;;;; +;;;;;;;;FREBNPKBRRRM6IGB;;Atlante/FRATL*PROV1601;;;;[2.34242 , 48.941721];;FRFR1EFHMB1;VBKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;0.990231;;;;; +;;;;;;;;FREBNPAGUITTXLTF;;Atlante/FRATL*SOME5101;;;;[2.299509 , 48.98314];;FRFR1EHMWC2;WCZB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXQSNJH;;Atlante/FRATL*Till0001;;;;[6.043626 , 43.151848];;FRFR1EHMWC1;VHWK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFT0LK4QOQ6;;ENGIE MAMP - Bornes publiques/F624558B-6A95-4B20-963A-5E3BD485F7E0;;;;[-4.468012 , 48.414563];;FRFR1ESYKB2;VWJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCDANYF;;ENGIE MAMP - Bornes publiques/DBFAB447-487E-4DE5-8E93-5EBFF9F18550;;;;[2.112697 , 49.041779];;FRFR1EZWVL1;PDNF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQJDZRN;;ENGIE MAMP - Bornes publiques/DF25D5A3-44AA-4380-AE6F-A9875D793B78;;;;[2.899717 , 42.725495];;FRFR1ECALY1;WCPC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPJQBERSPPR;;ENGIE MAMP - Bornes publiques/E898F875-1831-48CA-86CC-1486729326A3;;;;[3.227624 , 50.176641];;FRFR1EMUXN1;WCZB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPUXYSIZM6Z;;ENGIE MAMP - Bornes publiques/F1880B7B-1259-468A-BD9B-697C44CDCBA5;;;;[3.890093 , 43.591561];;FRFR1EDCAQ1;ZTAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMNCBAF;;ENGIE MAMP - Bornes publiques/F6976EFF-F485-47D2-BE83-EE3474EA26B0;;;;[-2.744211 , 47.656289];;FRFR1ENMHY1;MEPU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNV2EOLFRDB;;Atlante/FRATL*COUL1201;;;;[1.846141 , 47.898355];;FRFR1EAAPT1;MEPU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDDGRGVA9AS;;Norauto - Bornes publiques/B5AD1533-2887-456C-B285-907A103E1E65;;;;[2.383561 , 48.801029];;FRFR1EYQNA1;VWWB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUWVSZLJ2WU;;BornEco/63ac32f411a81405a7c96369;;;;[2.431899 , 48.903847];;FRFR1ETERX1;VWJG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYYKO4XRXGU;;BornEco/6326b6ba5b86b978c9c6540b;;;;[2.540527 , 48.798316];;FRFR1EXKMC1;MECS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKSTK4RC9AC;;BornEco/634695f735e82090cd09ffba;;;;[1.109533 , 49.413475];;FRFR1EAYXS2;MECS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGGVI7THWNN;;BornEco/637b6948beb8687dae1588d7;;;;[4.011858 , 49.261551];;FRFR1ECKDW1;VJTX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPICUCTV9PK5;;BornEco/63ac339611a81405a7c9652f;;;;[3.143343 , 45.797254];;FRFR1EZLAA1;MLJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSOFCJVBSHW;;BornEco/63208b4f5b86b978c9c55057;;;;[1.421246 , 43.640791];;FRFR1EBMMY1;MLJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNWPV9SOVSE;;BornEco/63dcef1cde530c3ec2928c1e;;;;[2.223229 , 48.895731];;FRFR1EVEXV1;MMCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUOEXIUJAXI;;BornEco/63dcefa3de530c3ec2928c39;;;;[1.75022 , 45.250192];;FRFR1EKFDY1;MMYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPJVJCPOJL2;;BornEco/63dcf040de530c3ec2928d03;;;;[-0.548227 , 44.892388];;FRFR1EWPHZ1;MHDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYA9IINLOWM;;Atlante/FRATLFRATL*Gree7101;;;;[4.857081 , 46.823734];;FRFR1EBLAS1;MKGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDBDELKZ02M;;Atlante/FRATL*StLeg8001;;;;[6.115141 , 45.88781];;FRFR1EEMGV1;VDEN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIQXD4XD3T3;;Atlante/FRATL*BRUA*7001;;;;[5.817536 , 43.801133];;FRFR1EEMGV2;VUHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJUZPMH;;Atlante/FRATLAudincourt1;;;;[5.135457 , 43.395675];;FRFR1EUJVZ2;WYAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHGHRMSS0WP;;ENGIE MAMP - Bornes publiques/D4DFEB50-10D6-4E3F-806D-D36CB1A244D4;;;;[5.259945 , 46.228058];;FRFR1EUJVZ1;XYLF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDNLKCM;;SOMIMAR - Bornes publiques/87880494-8784-41fd-97e2-2d0f15b984ef;;;;[5.016488 , 43.823233];;FRFR1ETTMV2;YPMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJLVMUSR7MM;;Norauto - Bornes publiques/EE0C051A-A8B9-4B28-9968-2309B09CBCF8;;;;[6.698781 , 43.448498];;FRFR1ETTMV1;YPMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQP0YIL8IFI;;Norauto - Bornes publiques/EC142BEF-6032-4F1B-82F1-409695E655F7;;;;[4.802572 , 43.627679];;FRFR1EECGC1;RABG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYLGMS2ZOQX;;ENGIE MAMP - Bornes publiques/07732A52-7E9B-4CE7-B528-7194497E2FA4;;;;[2.977228 , 50.453083];;FRFR1EECGC2;XTWP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTMF2EKI4VW;;ENGIE MAMP - Bornes publiques/11F18D7E-C43A-40C4-A8FC-85238C74315B;;;;[4.772177 , 45.809544];;FRFR1EAYXS1;WZZK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZW7N7BPXFX;;ENGIE MAMP - Bornes publiques/12DAC224-B09F-438F-AA40-525243F3D43D;;;;[2.979827 , 50.402145];;FRFR1EUKAS1;XAVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNDUJH0PIS3;;ENGIE MAMP - Bornes publiques/D2447B64-5CEF-4A60-8CE9-8BAA3D3145E8;;;;[2.982252 , 43.15277];;FRFR1ELVWD1;XVHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYSINDSLO2T;;Norauto - Bornes publiques/D6B4800B-0E72-4DAD-9F7F-38417FDCEF2A;;;;[7.052693 , 43.627499];;FRFR1EKJUF1;VUGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNPBXS3RZKU;;Norauto - Bornes publiques/C38C4315-24EF-42DE-AED0-3443603968CF;;;;[-1.516744 , 43.462911];;FRFR1EWVPE1;WYAB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCXDGTIEHUK;;Norauto - Bornes publiques/D75BE6AB-582C-4862-B6F3-E847503DDBEB;;;;[2.251435 , 48.886998];;FRFR1EVYSM1;MHDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPG7PHWB2AIL;;Norauto - Bornes publiques/E870D4C6-060F-43B6-B69F-E09612E36295;;;;[-3.58243 , 47.86667];;FRFR1EDPVL1;VLFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPO4FMROVXLK;;ENGIE MAMP - Bornes publiques/2BF3213A-A7EC-40A8-B813-0BF5E51C0015;;;;[3.26341 , 43.34128];;FRFR1EKVPE1;MKLH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPURQIIQNRHG;;ENGIE MAMP - Bornes publiques/A3F0F8CA-B96A-4723-99B2-CFB3EFC15224;;;;[4.85769 , 45.716101];;FRFR1EWADM1;SVBZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHFHFSNPFL8;;ENGIE MAMP - Bornes publiques/6F5C35EF-A452-4F66-971A-C35675141790;;;;[5.269258 , 45.59568];;FRFR1EHWFZ1;MMYP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFZYNI4UPQP;;ENGIE MAMP - Bornes publiques/7152CFA2-3DA3-44CF-8F5F-919ADADA4FBE;;;;[4.77883 , 45.80878];;FRFR1ESUNU1;MNPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJMKUVVPZI3;;ENGIE MAMP - Bornes publiques/8EF05F63-6AFE-4F04-A9E3-CA50849D61AC;;;;[4.818807 , 45.903665];;FRFR1EXJJU1;MMLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJ8KQANINTN;;ENGIE MAMP - Bornes publiques/90DF0344-168A-4F83-9926-979A2BCA7F50;;;;[4.844539 , 45.711876];;FRFR1EPMLN1;VUGR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKMKK2WXJUA;;ENGIE MAMP - Bornes publiques/ACA96EA3-15A1-4A74-B9CC-B0B82AA7962C;;;;[3.261835 , 43.342364];;FRFR1EVHYX1;YPBF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWIBXDEW7O1;;ENGIE MAMP - Bornes publiques/2EBBB4AD-905E-4898-95B8-DDDE26691452;;;;[4.416422 , 45.449333];;FRFR1ELMVC1;MMLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFDSV6LVTDM;;ENGIE MAMP - Bornes publiques/B606C19F-6882-41AF-A504-A237DF388AFC;;;;[4.902871 , 44.420364];;FRFR1ESWWY1;SVBZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPERWQRN;;ENGIE MAMP - Bornes publiques/B9BE4900-8288-48A1-B1BF-31418A18AC91;;;;[5.578569 , 45.382478];;FRFR1ESXQT1;MKLH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPO85SVV2ACJ;;ENGIE MAMP - Bornes publiques/CD4DC943-F2E3-4908-857C-DA138A9BE948;;;;[3.23853 , 43.338135];;FRFR1EMBSF1;MFSS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUSPQX0MDQ8;;ENGIE MAMP - Bornes publiques/60D8947D-3C25-4C57-B4A3-85922501D1FC;;;;[-0.725223 , 45.096274];;FRFR1ETXMG1;SUCM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKHRDRG;;ENGIE MAMP - Bornes publiques/57CCFF30-596E-4834-9CC2-9A6B446C9419;;;;[6.207738 , 49.131942];;FRFR1ENUAB1;VWUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNWEPJA;;ENGIE MAMP - Bornes publiques/347FCF7A-7EA1-421E-AB21-096D8370E8D8;;;;[3.036066 , 42.907836];;FRFR1ECUVF1;MFSS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGARMFX;;ENGIE MAMP - Bornes publiques/360F740B-C687-4479-975A-D1E7ACD1B5A7;;;;[-2.107127 , 47.121343];;FRFR1EPVYY1;SUCM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYCJKYF;;ENGIE MAMP - Bornes publiques/3C65BED9-60D0-4C6D-8C83-42C7C651F7C2;;;;[6.524365 , 48.863001];;FRFR1ECHVL1;MKGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPELMCAG;;ENGIE MAMP - Bornes publiques/3CFC049E-09A2-4A21-9C9B-D0D09824E5E6;;;;[2.070324 , 48.894506];;FRFR1EMGJX1;VPAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZFXETG;;ENGIE MAMP - Bornes publiques/40118159-F2DE-4947-954B-FB1A0B7734C9;;;;[7.29256 , 43.691865];;FRFR1EMGJX2;VPAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPB46FPVWMDM;;ENGIE MAMP - Bornes publiques/42113B28-27BD-4D95-9734-AFCB50E0863D;;;;[1.190834 , 48.766404];;FRFR1EMGJX3;XBVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNNKJNY;;ENGIE MAMP - Bornes publiques/5063FA0A-F384-454C-9E37-485255C33243;;;;[4.787218 , 46.794239];;FRFR1EKZPV1;VDEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLDJEOI8BK0;;ENGIE MAMP - Bornes publiques/5492DD66-0694-4F31-9E42-717F02FF06CA;;;;[-1.519009 , 48.985254];;FRFR1EKSDW1;XGDH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPREMDRY;;WAAT/FRWA6LWUGMCAUK;;;;[5.588766 , 43.18835];;FRFR1EHGZD1;WZEY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSMK51LMAB7;;WAAT/FRWATLW8HW9BG1;;;;[2.539401 , 48.84893];;FRFR1EHHNJ1;XGDH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYTBQSB;;WAAT/FRWATLW1UETWWT;;;;[4.332443 , 43.828607];;FRFR1EHGZD2;XFED2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLCJTWZ;;WAAT/FRWATLW3GROR0Q;;;;[1.433229 , 43.64506];;FRFR1EHJXH1;VKMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFMSJHW;;WAAT/FRWATLW3KV3PYQ;;;;[4.717779 , 45.551683];;FRFR1EHHNJ2;XFED1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFELLSQ;;WAAT/FRWATLVPPO27AU;;;;[0.575711 , 45.897844];;FRFR1EHJXH2;VLFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHXTWYM;;WAAT/FRWATLWDUVRSJX;;;;[7.201649 , 43.688165];;FRFR1EAFWU1;RXBC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPACUAKZ;;WAAT/FRWATLX9W8WE8N;;;;[2.300644 , 47.04819];;FRFR1EWJPX2;XXHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGRPQDU;;WAAT/FRWATLXBHNNYKQ;;;;[4.724571 , 43.782834];;FRFR1EAFWU2;WVKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVS6SOGHFTE;;WAAT/FRWATLXTTABXWA;;;;[3.415964 , 43.29045];;FRFR1EUDLQ1;ZQUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJYPPQA0TJQ;;WAAT/FRWATLYFDWZNVL;;;;[5.677952 , 45.192056];;FRFR1ECCWM1;XTWP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWJJPG4Z7MN;;WAAT/FRWATLVYQUQOOL;;;;[7.012437 , 43.578109];;FRFR1ENHEN1;RXBC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSNSM4WFCED;;WAAT/FRWATLYGYSXF1F;;;;[5.023903 , 44.928469];;FRFR1EFCJD1;VBKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYWRAKBDU72;;WAAT/FRWATLVIINCX5O;;;;[2.317971 , 48.674145];;FRFR1EBGJW1;ZLKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSAUDIUNPPA;;WAAT/FRWATLZRH28CHR;;;;[1.368138 , 43.602861];;FRFR1EXQYV1;VLJX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOYPH3MTL0S;;WAAT/FRWATLYYZQRJIS;;;;[2.303434 , 48.690335];;FRFR1EDCHV2;WZEY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPGI7OZI3HX;;WAAT/FRWATLZ5QJMPXR;;;;[1.372832 , 43.600631];;FRFR1EDCHV1;VKMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZUQ6OZWIHO;;WAAT/FRWATLZ9MC0PFX;;;;[4.803755 , 43.710421];;FRFR1EGYPF1;RDPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPW1ACYG8P4K;;WAAT/FRWATLZAILTY2K;;;;[4.86124 , 44.314247];;FRFR1EAERZ1;ABRP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUGZUCTHE6K;;WAAT/FRWATLZJEK0SWY;;;;[0.575756 , 45.897811];;FRFR1ENKMT1;REBV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAEOHHR2DTT;;WAAT/FRWATLZP67GGQL;;;;[2.329456 , 43.227057];;FRFR1ENKMT2;ADCR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQRKRSXDLOB;;WattzHub/625fc63fb907c5cc90734800;;;;[5.244794 , 43.423478];;FRFR1EBGAZ1;ADCR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLGOYUQZSSS;;WAAT/FRWATLYXODUTQW;;;;[1.326251 , 47.569098];;FRFR1EBAVA1;DUUC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJLQWOQOKKG;;WattzHub/63ca9147de530c3ec23826c5;;;;[6.95602 , 43.550743];;FRFR1EAWMQ1;GEDN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTJJ9KFP8UM;;WAAT/FRWATLYTBZBMKT;;;;[2.230815 , 48.777414];;FRFR1EAUZX1;ABRP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRDH1HYPVXW;;WAAT/FRWATLYHS1JLJC;;;;[1.186634 , 49.25483];;FRFR1ENEPF1;VLHU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPX12ABRPVCW;;WAAT/FRWATLYKBWVXWW;;;;[2.253828 , 48.954733];;FRFR1ENDHC1;VYVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIBY7XIF9QN;;WAAT/FRWATLYMTVN1PJ;;;;[7.106898 , 43.724532];;FRFR1EAYMM1;PCMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBYXYO6YXTR;;WattzHub/64ad5a8d57c080b735e0676c;;;;[3.882355 , 43.580375];;FRFR1ENFFX1;PCMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFL632BDMHN;;WAAT/FRWATLSERLSO2C;;;;[2.299774 , 48.81154];;FRFR1EVABX1;VLHU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYXQDXS;;WAAT/FRWATLRDXGRNG8;;;;[5.40506 , 43.293342];;FRFR1EVABX2;VYVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXZCHPX;;WAAT/FRWATLRGFLBJJO;;;;[4.995669 , 45.826184];;FRFR1EUSYJ1;VLJX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOE2C6C8Q1R;;WAAT/FRWATLRLHFEVEF;;;;[5.708992 , 45.19392];;FRFR1EWJPX1;VHWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRVEJP6FQDH;;WAAT/FRWATLRNDNWYX4;;;;[4.7817 , 43.931774];;FRFR1EJXJY2;RWKW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDCNJKNE4HQ;;WAAT/FRWATLRNPFDI29;;;;[2.277046 , 48.878382];;FRFR1EVYYZ1;XBVC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJB7O75BBKV;;WAAT/FRWATLSGZEYO9K;;;;[4.775482 , 45.757234];;FRFR1EVYYZ2;RWKW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYPOTF1HQQB;;WAAT/FRWATLQXZAAQRS;;;;[-0.681316 , 44.858162];;FRFR1EVKEA1;UNER2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUFKDSKNUHA;;WAAT/FRWATLSTZOWBN0;;;;[3.929122 , 43.638122];;FRFR1EVKEA2;YFFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYLM0HHUMDL;;WAAT/FRWATLSWGLIS6T;;;;[1.538786 , 43.52748];;FRFR1EVKMC1;XDEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKZDPHHY9QV;;WAAT/FRWATLTGDFSVCU;;;;[1.366028 , 43.644878];;FRFR1EDPMM1;XCXB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXC9VDLJNF4;;WAAT/FRWATLTHE0HWKF;;;;[4.100637 , 44.145189];;FRFR1EJWDS1;XDEW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYALRDZFAG8;;WAAT/FRWATLRBAQ64T0;;;;[2.69576 , 48.832096];;FRFR1EDPMM2;VPJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTL3NL9QBRT;;WAAT/FRWATLQA7Y4AG5;;;;[2.604714 , 48.795358];;FRFR1EVKMC2;XYDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPK3YEM8DDW;;WAAT/FRWATLPOHCFZ2V;;;;[4.732208 , 45.979391];;FRFR1ELDEB1;XXHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPISLSCODQRA;;WAAT/FRWATLPUADHR6L;;;;[1.563105 , 50.411865];;FRFR1EPCGS2;XCXB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGBOCPUKOTD;;WAAT/FRWATLQ44EPHVZ;;;;[2.238002 , 48.978759];;FRFR1EPCGS1;XYDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPA8IMSEI4DH;;WAAT/FRWATLQ9YOJVXX;;;;[3.2564 , 43.341518];;FRFR1EELFA1;VPJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMD0GNWWEBH;;WAAT/FRWATLQCD2E6Q7;;;;[2.216901 , 48.912298];;FRFR1EELFA2;RXJH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPT2SVHB67IN;;WAAT/FRWATLQTERNMCN;;;;[5.999126 , 43.139423];;FRFR1EJXJY1;RXJH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQSGWZRZ34C;;WAAT/FRWATLQGUVWD5X;;;;[4.36665 , 43.830335];;FRFR1EJWDS2;RYKV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZX5LMPLOCQ;;WAAT/FRWATLQJUWFJZU;;;;[2.648388 , 48.526901];;FRFR1EJUVM2;RYKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPC4KRE3VPLQ;;WAAT/FRWATLQKV15JA2;;;;[3.114644 , 50.625463];;FRFR1EKQFQ2;VWXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNZGBPIAKU2;;WAAT/FRWATLQSDPM78G;;;;[7.31026 , 47.742979];;FRFR1EUSYJ2;VWUX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBJ9TZMED5E;;WAAT/FRWATLQSFBRLVT;;;;[3.088928 , 50.369704];;FRFR1EUDLQ2;UPNK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUJZXTSOGHT;;WAAT/FRWATLVBL6QJMI;;;;[-2.735438 , 48.509679];;FRFR1EKMXW2;YFDK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOMMZ7I0YRZ;;WAAT/FRWATLVDWTY2CK;;;;[3.788389 , 43.500559];;FRFR1EKQFQ1;ZTAF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKAH5MCU0PR;;WAAT/FRWATLVFECV787;;;;[0.165448 , 45.652871];;FRFR1EJXZH2;VJTX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBR5VEJ4LUC;;WAAT/FRWATLV3VEHA2V;;;;[2.432522 , 47.096065];;FRFR1EKMXW1;YFUY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSKUWSYWI8M;;WAAT/FRWATLTPHCKJIW;;;;[7.311707 , 47.792137];;FRFR1EZFRD1;YFFK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPVQGYC;;WAAT/FRWATLUHMXIYZM;;;;[4.825474 , 43.936907];;FRFR1EJVYR1;UPNK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOJBNYNLLXC;;WAAT/FRWATLTS4POMNX;;;;[3.01857 , 50.4124];;FRFR1EZFRD2;ZLKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUINJVNH6Q6;;WAAT/FRWATLTSR7NT6W;;;;[2.327724 , 43.228472];;FRFR1EBMUD2;YFDK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDOMPIERRE;;WAAT/FRWATLUHJ9HRDL;;;;[1.679922 , 46.80673];;FRFR1EBMUD1;VYNL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMNVNQJ;;WAAT/FRWATLUUDS1NJZ;;;;[3.088715 , 50.370623];;FRFR1EJXZH1;SWJY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCA3BLMPVBD;;WAAT/FRWATLUL6LWON2;;;;[2.826488 , 50.54838];;FRFR1EJUVM1;TBPF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCCRCZB;;WAAT/FRWATLUPKN0W4E;;;;[2.457406 , 48.779841];;FRFR1EJVYR2;UNER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZQJLTS8LZQ;;WAAT/FRWATLUUAGUSWV;;;;[2.676798 , 48.869667];;FRFR1EJSMH2;VYNL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMQTUEZ;;WAAT/FRWATLUUAJF9DL;;;;[5.057537 , 47.338212];;FRFR1EJSMH1;VWXG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXBFXBY;;GreenYellow Shift Mobility/18;;;;[6.167658 , 49.138558];;FRFR1EXQYV2;YFUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTGQQ9EOFPO;;GreenYellow Shift Mobility/16;;;;[6.111948 , 45.896714];;FRFR1EMSKW1;WZZK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUQWWKV;;GreenYellow Shift Mobility/17;;;;[2.560478 , 48.837149];;FRFR1EZAMX2;ZLMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQLKVQH0DOT;;GreenYellow Shift Mobility/19;;;;[3.41904 , 43.389626];;FRFR1EVUPL2;XAVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRAATACOPRW;;GreenYellow Shift Mobility/15;;;;[3.85197 , 43.620221];;FRFR1EVUJQ1;TEDF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTUDR0E6GUP;;GreenYellow Shift Mobility/14;;;;[2.398487 , 48.910105];;FRFR1EVUJQ2;TAGR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVDPQRVEOZH;;GreenYellow Shift Mobility/22;;;;[3.911855 , 43.614964];;FRFR1EVQCC1;TWNQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZ3QABMCZC1;;GreenYellow Shift Mobility/21;;;;[3.965237 , 43.579598];;FRFR1EVSAF1;TEPX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIXBABVQUXW;;AUTEL EUROPE GmbH/250;;;;[1.398092 , 43.546712];;FRFR1EVSAF2;SALG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUBG4WBEFLR;;AUTEL EUROPE GmbH/20172;;;;[2.245213 , 48.597132];;FRFR1EVUPL1;TEMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFACVXR;;GreenYellow Shift Mobility/20;;;;[5.020694 , 43.854906];;FRFR1EVQCC2;TAGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSZNPWU;;Proviridis/6154153126b5d1a1ca0d1a42;;;;[2.091362 , 49.059396];;FRFR1EDRZV2;TEDF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJZZ4ARDOAD;;Proviridis/627a5db9627ec747f90abea6;;;;[3.064439 , 50.661294];;FRFR1EDRZV1;SALG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPACHVAB;;Proviridis/60ba0d0f2cf3d9000cac817a;;;;[2.221751 , 49.015624];;FRFR1EARLP1;TEPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHWBKSS;;Proviridis/64103225e68d736255229995;;;;[5.381492 , 43.301458];;FRFR1EARLP2;MKHF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZCALPN;;Proviridis/6426d2f8e68d7362559e5b6f;;;;[2.303627 , 48.706046];;FRFR1EKMTJ1;UFLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPS4VXC1ZBVR;;Proviridis/5ecd3f9aa176410007f744d8;;;;[-0.61389 , 47.476594];;FRFR1EKMTJ2;HELV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBWUC0Z5W3X;;Proviridis/5e6761cec45ed2000c3e0279;;;;[2.057675 , 48.797916];;FRFR1EVTSN1;HELV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAHJLY7UVLM;;Proviridis/5ecd3c70a176410007f744c4;;;;[7.441336 , 48.254578];;FRFR1EVSVB2;UKLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPMYFKJ;;Proviridis/606d5b4012c27d000816185b;;;;[6.058367 , 43.408157];;FRFR1EVTFF1;UKLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUKPJV9OC6M;;GreenYellow Shift Mobility/13;;;;[7.191045 , 43.697144];;FRFR1ECVQQ1;ZLWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFANRVL;;GreenYellow Shift Mobility/12;;;;[2.329445 , 43.227068];;FRFR1ESWKN2;TBHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXQQCZS16EH;;Proviridis/64350b4bef5e26b006d5302a;;;;[6.899634 , 49.187454];;FRFR1ESWKN1;TRGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPANDDND3BDK;;Proviridis/64887183b4e64d28ce32e1c4;;;;[0.990231 , 43.324307];;FRFR1EZNXV2;TRVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYVGSKBCI4J;;GreenYellow Shift Mobility/11;;;;;;FRFR1EZNXV1;ZLWW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDBC1X2LWNF;;GreenYellow Shift Mobility/1;;;;;;FRFR1EWTZP1;MKHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKDUPPQ;;WAAT/FRWATLPMTIPLDG;;;;;;FRFR1EWTZP2;TBHD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCDVWPX;;WAAT/FRWATLTGYYL2GH;;;;;;FRFR1ENCTC2;TDES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTTJZND;;WAAT/FRWATLGQD1LPWL;;;;;;FRFR1EVTFF2;TDES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPM7ZASMMQY6;;WAAT/FRWATLH3W7FDYX;;;;;;FRFR1ENCTC1;TVYX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOBSGYTJHXU;;WAAT/FRWATLMCEBBWOT;;;;;;FRFR1EZAMX1;TVYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPIHT6XLNGT;;WAAT/FRWATLSAEWKSQU;;;;;;FRFR1EVWFF2;TRGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJCAUYPEAYA;;WAAT/FRWATLFM7KUKJC;;;;;;FRFR1EVSVB1;TEMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWD8KTGUBE3;;WAAT/FRWATL3THTYNG3;;;;;;FRFR1EVWFF1;TVUS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMOULINSHOPITAL;;WAAT/FRWATL2AA7QJB8;;;;;;FRFR1EVTSN2;TVUS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVSQHNQ;;WAAT/FRWATLBZJBORNV;;;;;;FRFR1EMSKW2;TYMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWXTEE2IGIX;;WAAT/FRWA5LYO2JCJWD;;;;;;FRFR1EMAHV1;TRVY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHU7ZHXIDPR;;WAAT/FRWA1LSPQ1HA6Z;;;;;;FRFR1EZSNY1;TYMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLPQNUV;;WAAT/FRWATLHFSA4JE9;;;;;;FRFR1EMAHV2;TWNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUYBDVS;;WAAT/FRWATLABFIY96V;;;;;;FRFR1EJCAL2;UFLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZBTMTF;;WAAT/FRWATLDP3NV8JO;;;;;;FRFR1EFRER1;YDBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZAO4L8TSGT;;WAAT/FRWATLEMXMAEOR;;;;;;FRFR1EFRER2;VAEH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZVO21H4TWD;;WAAT/FRWATLHZFRHZRF;;;;;;FRFR1EFRER4;NCTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPORK5FI3ZMM;;WAAT/FRWATLKDX0BWGD;;;;;;FRFR1EFRER3;SCTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAP4KK13HNF;;WAAT/FRWATLLMZBF2VO;;;;;;FRFR1EPNXL2;SCTQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIC3VKFYDUZ;;WAAT/FRWATLNMWOBCAB;;;;;;FRFR1EPNXL1;MVMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEHWYSYEPGP;;WAAT/FRWATLP4QJIJA8;;;;;;FRFR1ESPHZ1;NAVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIZWGVKKKLW;;WAAT/FRWATL06GSOQ1T;;;;;;FRFR1EMQXX1;XCLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEVXVDF;;WAAT/FRWA6LYEU61K8K;;;;;;FRFR1EMQXX2;MYZJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLWBQSZ;;WAAT/FRWA6LYQ55DYR1;;;;;;FRFR1EPAPT2;PVYY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLK9N6FGDHT;;WAAT/FRWA6LZKZCTUL5;;;;;;FRFR1EPAPT1;MVMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUJNXRL;;WAAT/FRWATL9OGLRSMO;;;;;;FRFR1EWABD1;MZRZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVPMUW1NPUD;;WAAT/FRWATL7HLUTQQ9;;;;;;FRFR1ELAAF1;UJSN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQPPN534ID0;;WAAT/FRWATL7LUYO9YL;;;;;;FRFR1EJJMV1;UJSN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXOOHDY43SH;;WAAT/FRWA5LUKRLHF6A;;;;;;FRFR1EJCKC2;VAEH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPF5GG4XPJNB;;WAAT/FRWA7LZPUFV4BH;;;;;;FRFR1EJCKC1;NQBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSRX4IK756Y;;WAAT/FRWATLZRQ6VAXD;;;;;;FRFR1EJCPD1;MVMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCZTFGE;;WAAT/FRWA3LSIOBOB8G;;;;;;FRFR1EFCGV2;NBUD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHF7UWCT3XU;;WAAT/FRWA5LBW5OXT72;;;;;;FRFR1EYAEH1;NCTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUVUSPH;;WAAT/FRWA5LQ0CHCRRH;;;;;;FRFR1EFFWZ1;XCLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGB7J68Q0BE;;WAAT/FRWATLYUBNAU26;;;;;;FRFR1ETUUY1;SGZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDDUFKV;;WAAT/FRWATLRCFIE15G;;;;;;FRFR1EQHSJ1;SEDJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPREJFYYSDM4;;WAAT/FRWATLSMMU5BWU;;;;;;FRFR1EHYQE1;MZRZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJZXFBNTFY9;;WAAT/FRWATLRRQFZAKL;;;;;;FRFR1EFTYU1;SDQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQYJLX8F4UH;;WAAT/FRWATLSABVB5MK;;;;;;FRFR1EFCGV1;VBDL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDIMB9HNUST;;WAAT/FRWATLUZYTD7R3;;;;;;FRFR1EJCAL1;SEDJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXZTXRU;;WAAT/FRWATLW3HMAQYD;;;;;;FRFR1ENHNM2;SGGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSJXUZ7WVZF;;WAAT/FRWATLYSZHWF8J;;;;;;FRFR1ENHNM1;SGZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNTGMS3IKER;;WAAT/FRWATLIVGBARL1;;;;;;FRFR1EHEGC2;NAVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZACDZS;;WAAT/FRWATLHFYY1F34;;;;;;FRFR1EHEGC3;SFGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBHNVCQ;;WAAT/FRWATLHQAD6OVN;;;;;;FRFR1EHEGC1;SFGR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVPTVQQ;;WAAT/FRWATLHQKRKAOE;;;;;;FRFR1EJCPD2;SGGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVHJVGW;;WAAT/FRWATLHZZVFSI2;;;;;;FRFR1ENYMM1;SDQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYDYHNZJJKE;;WAAT/FRWATLIQ0MVM0D;;;;;;FRFR1EUVMW2;MVMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQ95UGK3FNX;;WAAT/FRWATLIYYDQSTM;;;;;;FRFR1EUVMW1;NBUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTFDWRB;;WAAT/FRWATLH7A3RPHN;;;;;;FRFR1ENDBC1;VFKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAQUALUDIQUE;;WAAT/FRWATLIZZWXN0C;;;;;;FRFR1ERYHY1;VFKU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPERZCZN;;WAAT/FRWATLJGBR372D;;;;;;FRFR1ERYHY2;PLDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRNFAUC;;WAAT/FRWATLJM4BM03O;;;;;;FRFR1ERYSN1;EXQD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKVYTWM;;WAAT/FRWATLGZ8CLQLV;;;;;;FRFR1ERYSN2;HVDF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWVAJPP;;WAAT/FRWATLGJDYNKEP;;;;;;FRFR1EJSEU1;LCDQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMDFRBN;;WAAT/FRWATLFQCOVHR8;;;;;;FRFR1EWVSL1;KWGG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSJWERJ;;WAAT/FRWATLFROJHYJ8;;;;;;FRFR1EUMWM2;FEJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYQUVUC;;WAAT/FRWATLFVBGMVG5;;;;;;FRFR1EUMWM1;FEJS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPODTKP8CH6Y;;WAAT/FRWATLG4GQNTOD;;;;;;FRFR1EWVSL2;EZTL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPORQZ0JAUKA;;WAAT/FRWATLG4H1BNUH;;;;;;FRFR1EMACM1;EZTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVARENNESMAIRIE;;WAAT/FRWATLGBKWTZAP;;;;;;FRFR1EMACM2;VPMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCUSSETGILBERT;;WAAT/FRWATLGJLFFHJM;;;;;;FRFR1ENRDW2;CBCL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNP590305C6AAD59;;WAAT/FRWATLGJUPD1EA;;;;;;FRFR1EVUWU1;BRKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLEMONTET;;WAAT/FRWATLGMGPDUH8;;;;;;FRFR1ENRDW1;BRKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLURCYLEVIS;;WAAT/FRWATLGMUYMQBH;;;;;;FRFR1EHEKB1;LCDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMONTLUCONGI;;WAAT/FRWATLGOTGCXDM;;;;;;FRFR1ENDBC2;FEUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMONTMARAULTH;;WAAT/FRWATLGPWLEBT2;;;;;;FRFR1EBMYP2;FEUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMOULINSROCHE;;WAAT/FRWATLGXE81C4U;;;;;;FRFR1ETAWM2;CBCL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMONTLUCONPI;;WAAT/FRWATLN3XLUDLR;;;;;;FRFR1EBMYP1;VGJS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBOURBON;;WAAT/FRWATLM9VSRAOS;;;;;;FRFR1EGDNU2;LDCK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBESSAY;;WAAT/FRWATLMMCKGEZR;;;;;;FRFR1EGSWV2;EXQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBROUTVERNET;;WAAT/FRWATLMR3PB4ZB;;;;;;FRFR1EGAXH2;XYAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCERILLY;;WAAT/FRWATLMUCOULYP;;;;;;FRFR1EMHKT1;VZFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLEMAYET;;WAAT/FRWATLOKR5QDIL;;;;;;FRFR1EGPVM2;PJGN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVUW4OJTP6F;;WAAT/FRWATLOR5TOUYM;;;;;;FRFR1EHWVV1;TBPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWQUYNQ;;WAAT/FRWATLOUR0PMSQ;;;;;;FRFR1EGAXH1;SWJY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVICHY1;;WAAT/FRWATLP5YJXT4H;;;;;;FRFR1EGEFB2;ZLMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZSZXKD;;WAAT/FRWATLPCDQS8WN;;;;;;FRFR1EGEFB1;VZFV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYZEURELIB;;WAAT/FRWATLLNPBND5L;;;;;;FRFR1EFVBR2;XYLF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHXBSAH;;WAAT/FRWATLJNY1MSZ2;;;;;;FRFR1EMVBF2;HVDF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJPWBTH;;WAAT/FRWATLJPSKGCTQ;;;;;;FRFR1EMVBF1;RABG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVICHY3;;WAAT/FRWATLJOSZ1QV8;;;;;;FRFR1EFVBR1;PJGN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYZEURE1;;WAAT/FRWATLJPHEGM6Q;;;;;;FRFR1EQCMG2;XVHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCVWVXPR8FU;;WAAT/FRWATLJUCHHWNF;;;;;;FRFR1EQCMG1;WVKL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPE1O6R0CI23;;WAAT/FRWATLK0BHUBWK;;;;;;FRFR1EHEKB2;LDCK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMRQEES;;WAAT/FRWATLK6CAPHAK;;;;;;FRFR1EQFUK2;VGJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVICHY5;;WAAT/FRWATLK9I1ZJEF;;;;;;FRFR1EQFUK1;JBLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBUXIERE;;WAAT/FRWATLKPELUYAK;;;;;;FRFR1EXBFC1;EXTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWQFNAU;;WAAT/FRWATLL2INRX7P;;;;;;FRFR1EJAVF1;VEQC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRVJNYU;;WAAT/FRWATLFNE5SR08;;;;;;FRFR1EUKZL2;HAXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVICHY4;;WAAT/FRWATL95IR5F1Y;;;;;;FRFR1EULVV1;FMEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVICHY2;;WAAT/FRWATL7CS7QWKP;;;;;;FRFR1EUKZL1;FMVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVICHY6;;WAAT/FRWATL7FR6Q1YF;;;;;;FRFR1EULVV2;FMVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVICHY7;;WAAT/FRWATL7WJRCZZ9;;;;;;FRFR1EULGR1;EYWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMONTLUCONAT;;WAAT/FRWATL8SNAWGA8;;;;;;FRFR1EULGR2;EYWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMOULINSVI;;WAAT/FRWATL9MA6Q6DK;;;;;;FRFR1EKYXW1;KWGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNTJBDNGWVUA;;WAAT/FRWATL6FK5ULVW;;;;;;FRFR1EEZWT2;FTWL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSOURCE;;WAAT/FRWATL9PJJCC9Y;;;;;;FRFR1EEZWT1;FTWL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMOULINSPR;;WAAT/FRWATL6N3YCTXT;;;;;;FRFR1ENBVK2;FQUC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNEUILLYLEREAL;;WAAT/FRWATL6ALIGFIC;;;;;;FRFR1EVGNS2;EYYR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMAIRIE;;WAAT/FRWATLFJKUQO42;;;;;;FRFR1EVGNS1;EYYR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPABREST;;WAAT/FRWATL1RSQIEXF;;;;;;FRFR1EYQTX2;XCVP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNOYANTMARCHE;;WAAT/FRWATL1GPMG5OS;;;;;;FRFR1ENBVK1;XCVP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMOULINSJM;;WAAT/FRWATL1OMJ8N5Q;;;;;;FRFR1ERUUR1;YGBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPR13ICZC6D5;;WAAT/FRWATL5TC9UFYW;;;;;;FRFR1ERUUR2;VEQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSAINTGERFOS;;WAAT/FRWATL2J32KDYZ;;;;;;FRFR1ENUWR1;FMEQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSAINTGERANDLP;;WAAT/FRWATL2RRHY5F2;;;;;;FRFR1EQTRG2;EVMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLAPALISSEVE;;WAAT/FRWATL2XAXKERV;;;;;;FRFR1EXBFC2;FQUC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSAINTPOURCAIN;;WAAT/FRWATL4MYXNRZ0;;;;;;FRFR1EBATR2;ETUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCENTREROUTIER;;WAAT/FRWATL5EICVXRZ;;;;;;FRFR1EBATR1;HAXC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSAINTVICTORLA;;WAAT/FRWATLADKDGTVM;;;;;;FRFR1EPWLN2;HUDJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMFMJGR;;WAAT/FRWATLDYKHGVCG;;;;;;FRFR1EQTRG1;HUDJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPING60TSNE;;WAAT/FRWATLCM9P5RY9;;;;;;FRFR1EPWLN1;JBLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBKPTAV;;WAAT/FRWATLCWOBP56A;;;;;;FRFR1ENCSN1;EXTB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMOULINSRE;;WAAT/FRWATLDG5RPVPP;;;;;;FRFR1EJAVF2;ETUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGANNAT;;WAAT/FRWATLDJM0WFEN;;;;;;FRFR1ESPAC3;HWDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCHANTELLE;;WAAT/FRWATLDTNR2TON;;;;;;FRFR1ENCSN3;FSZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDONJON;;WAAT/FRWATLDYJQLAVK;;;;;;FRFR1ESPAC2;DZYJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCREUZIERLEV;;WAAT/FRWATLEJL45BOK;;;;;;FRFR1ESPAC1;DZYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJALIGNY;;WAAT/FRWATLESQXYB2F;;;;;;FRFR1ENCSN2;VPMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEBREUIL;;WAAT/FRWATLFD4WWPK5;;;;;;FRFR1ENUWR2;EVMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCHEVAGNES;;WAAT/FRWATLFFLLPJ47;;;;;;FRFR1EGDAZ1;HWDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLAPALISSEPA;;WAAT/FRWATLBK0HKEUU;;;;;;FRFR1EGPVM1;FSZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCUSSETCENT;;WAAT/FRWATLBHPGDDOH;;;;;;FRFR1EGDNU1;RFEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCOGNATLYONNE;;WAAT/FRWATLBGVVSU0H;;;;;;FRFR1EZATX2;DUUC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSOUVIGNYMOU;;WAAT/FRWATLALG5SSDF;;;;;;FRFR1EQAMY2;LGCR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSAINTYORBV;;WAAT/FRWATLANP2K1AU;;;;;;FRFR1EQAMY1;YJMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVALLONULLYM;;WAAT/FRWATLANR2KAFA;;;;;;FRFR1EAPLL1;YQFU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAVERMES;;WAAT/FRWATLARTXBPGS;;;;;;FRFR1EYVBG1;YUYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUJHUNV;;WAAT/FRWATLARWB4JUQ;;;;;;FRFR1EPYRY2;YGWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFRY0Q66XR9;;WAAT/FRWATLATAPMI7F;;;;;;FRFR1EPYRY1;YGCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPL4NKVCKURV;;;;;;;;FRFR1ERKPT1;YHMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWVFSVWVVI6;;;;;;;;FRFR1EZSDW1;YHEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCSC0TUMVZJ;;;;;;;;FRFR1EYARW2;YYJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPVQEXFHYMO;;;;;;;;FRFR1EFFET1;YQFU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPPSSYUNFPG;;;;;;;;FRFR1EZSDW2;YHMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEDRVAH0JV8;;;;;;;;FRFR1ELRXM1;YHEL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPL4TPSNGBZU;;;;;;;;FRFR1ERLZQ1;YKUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPC68QZRW5IK;;;;;;;;FRFR1EZSQM2;YJCD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOYTKDNTXGM;;;;;;;;FRFR1ELRHQ2;YGCF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKKT7GPURKL;;;;;;;;FRFR1EFMAG1;YGWY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQNZBOX38KS;;;;;;;;FRFR1EKYVD1;CQVD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGFHM4A7HUU;;;;;;;;FRFR1EMMSC1;YGXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUVZMY6BLLA;;;;;;;;FRFR1EQJAM4;YGXG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFHJTIMLKOG;;;;;;;;FRFR1EQJAM3;FFRC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPELNZBQTZOX;;;;;;;;FRFR1EQJAM2;YKUE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQQ4AFDK4RT;;;;;;;;FRFR1EQJAM5;MBTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRH3HDEMXJD;;;;;;;;FRFR1EQJAM1;MBTE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEAWOEQP1NJ;;;;;;;;FRFR1EQJAM7;MBNN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRBTJQRBXH5;;;;;;;;FRFR1EQVKE2;MBNN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYFU3HJXG3L;;;;;;;;FRFR1ELJSR2;MBRZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFA9HZSEBKE;;;;;;;;FRFR1EMWCL1;MBXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGRUGMK6YCJ;;;;;;;;FRFR1ELJSR1;MCDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBBB8GR3JG1;;;;;;;;FRFR1EQVKE1;LKPC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHQJOCGGRNM;;;;;;;;FRFR1EUZUU1;LKWR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNQ6WNF6GJD;;;;;;;;FRFR1ENXWB2;MBXY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCOEZJEA3UI;;;;;;;;FRFR1ENXWB1;MCDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLCSCVQIEWU;;;;;;;;FRFR1EMCQM1;LKPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZH6GCTOHJB;;;;;;;;FRFR1EZATX1;YYJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKAKUUL;;;;;;;;FRFR1EYARW1;YJMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSY0KHPYENM;;;;;;;;FRFR1EYMMP2;YJCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYMML6GJU6C;;;;;;;;FRFR1ELRLL1;QUJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFUHOEZSQEV;;;;;;;;FRFR1EARRV1;PRBX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZHXKZIMNZM;;;;;;;;FRFR1EARRV2;FTRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHM8S9VMJ8N;;;;;;;;FRFR1ERDNR1;FLCN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCXQHLM;;;;;;;;FRFR1ERDNR3;AUWT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGHRMESD8H2;;;;;;;;FRFR1ERDNR2;EMSE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYOTTUNSLP2;;;;;;;;FRFR1ERDNR4;CYEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIGOBQMLJPP;;;;;;;;FRFR1EGPFG1;PRBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUELO0XXIY8;;;;;;;;FRFR1EGDAZ2;CWXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPO3TC1Q6PSG;;;;;;;;FRFR1EGPFG2;CWXW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBD2JDOGVLL;;;;;;;;FRFR1EGSWV1;FTRB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNEKQQUXFMO;;;;;;;;FRFR1EEUVY1;PSGP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTGGQTZ;;;;;;;;FRFR1EHWVV2;PCFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAVVJGL;;;;;;;;FRFR1EEUVY2;PSGP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWLQ1UX3WUN;;;;;;;;FRFR1EMHKT2;PQTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYPCKYR;;;;;;;;FRFR1EYMMP1;PQTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSAURCW;;;;;;;;FRFR1ECLXW1;PBDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUIM5AFHJMR;;;;;;;;FRFR1EVDTQ1;PNUZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRKLKJ18RNS;;;;;;;;FRFR1ERLZQ2;PKWC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMSHPUS;;;;;;;;FRFR1ELRHQ1;DAVF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAWVBDU;;;;;;;;FRFR1EKYEP1;EMSE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMRKKQCRF0B;;;;;;;;FRFR1ELRXM2;AUWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPL2PVKCY1TX;;;;;;;;FRFR1EAQEY2;GTGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBPQKMWBSOI;;;;;;;;FRFR1EZSQM1;QUJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBWIXDHWDKU;;;;;;;;FRFR1ECLXW2;FLCN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHMCSUP77H7;;;;;;;;FRFR1ELRLL2;HNFH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPED9WZC9LMX;;;;;;;;FRFR1EVDTQ2;GTGL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAJT1WFBIB4;;;;;;;;FRFR1EKYEP2;BRYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPXZORUFFWG;;;;;;;;FRFR1EZRNF2;HNFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMQK82BCMDT;;;;;;;;FRFR1EZRNF1;UAWB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMHLFDHWBOA;;;;;;;;FRFR1EAQEY1;DWWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSKIDXQPPDJ;;;;;;;;FRFR1ELRKY2;CQVD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEMWSK7UUY4;;;;;;;;FRFR1EFFET2;BRYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWRN07GJM7H;;;;;;;;FRFR1ELRKY1;UAWB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGB6G3PUH3V;;;;;;;;FRFR1EYQTX1;CYEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBV4HG5JPFC;;;;;;;;FRFR1EMLQW1;DAVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZDR9Q4PKYJ;;;;;;;;FRFR1EMLQW2;DWWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQNMZFMYOCR;;;;;;;;FRFR1EBWQN2;MBRZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMTR64UDKFK;;;;;;;;FRFR1EJLEF2;LVMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGXLFC4JZQM;;;;;;;;FRFR1EWSYZ2;LUEC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPN0APSWIASX;;;;;;;;FRFR1EWSYZ1;QVRZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJDWQT9CAE8;;;;;;;;FRFR1EGYCF2;HNWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGJ3MKVO5IB;;;;;;;;FRFR1EVFLU2;CADE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMYQBUNOQVJ;;;;;;;;FRFR1EVFLU1;HGTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYEA0UXRKNY;;;;;;;;FRFR1EVYZR1;CADE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPA6GGB1AQMP;;;;;;;;FRFR1EVYZR2;ASZV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWRWQNR;;;;;;;;FRFR1EMNUJ1;AFFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGWLPHY;;;;;;;;FRFR1EVGKF2;QWJN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDVX2BDOT0V;;;;;;;;FRFR1EVGKF1;QVBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLHNDJZAIFZ;;;;;;;;FRFR1EUDDK2;QVRZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPR3FECEWLZD;;;;;;;;FRFR1EUDDK1;AADY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLRP071S55P;;;;;;;;FRFR1EMRJL1;QXBP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPG03APSS9V1;;;;;;;;FRFR1EMCMA2;QXNB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUDPQ78VIEG;;;;;;;;FRFR1EMYHE1;QXNB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUEVBPQ8MI8;;;;;;;;FRFR1EJLEF1;AADY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEAMPVLYEPK;;;;;;;;FRFR1EMWBQ1;QWJN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBTR9WYDZA8;;;;;;;;FRFR1EPZNC2;HNVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUTZ2KU4Z0Y;;;;;;;;FRFR1EFMSL1;BQAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAQKP45UGO1;;;;;;;;FRFR1EFMSL2;BNKW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCHQCBVH6YS;;;;;;;;FRFR1EECMG1;AMEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYMTDSVDIJN;;;;;;;;FRFR1EECMG2;LDEB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCTXCZNNDNM;;;;;;;;FRFR1ETCLV1;LGCR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPB0LKPLIYGT;;;;;;;;FRFR1ETCLV2;LEBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPR4UYHEAYOG;;;;;;;;FRFR1EPZGF2;AMEV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKBJBS33OUJ;;;;;;;;FRFR1EMWBQ2;HSKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMQRRNQ3NVI;;;;;;;;FRFR1EPZGF1;HSKL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPR9GFHI1ZR;;;;;;;;FRFR1EPZNC1;HNVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEYZ3RALMSG;;;;;;;;FRFR1EQADV2;BQAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTE9XLMEDEJ;;;;;;;;FRFR1EQADV1;CFAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPK59SHDHWTV;;;;;;;;FRFR1EGYCF1;AFJP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGMGOBJACDW;;;;;;;;FRFR1EMYHE2;CFAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBDBS1JFEDO;;;;;;;;FRFR1ENUKH1;HNWS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCCH5F8VIHB;;;;;;;;FRFR1EMUPC1;BNKW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBBW5E0H7F7;;;;;;;;FRFR1EYYMK2;HGTF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDXM6EBUDLM;;;;;;;;FRFR1EMUPC2;QXBP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPECO0VKGSLD;;;;;;;;FRFR1ESPCY3;AFJP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUGOFN7UN37;;;;;;;;FRFR1EGWCV3;LUEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKGWFWAHGAN;;;;;;;;FRFR1EGWCV1;ALBQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRGOY0O3953;;;;;;;;FRFR1EFMEE3;LXKP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPP8F2SQ4CDB;;;;;;;;FRFR1EFSPL2;LYCH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPR3ZND15N5P;;;;;;;;FRFR1EFMEE1;LYUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZIQGK2O3XP;;;;;;;;FRFR1EFMEE2;LXKP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIAYB6RCTET;;;;;;;;FRFR1EFSPL1;LYCH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOHIKRIFSOE;;;;;;;;FRFR1EFSPL3;LNPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHWZQNS;;;;;;;;FRFR1ESPCY1;LNPS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGFZEQP;;;;;;;;FRFR1ESPCY2;LPXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRL5NBTAUSM;;;;;;;;FRFR1EGWCV2;LKWR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAT2IKRY1YG;;;;;;;;FRFR1ETBFV2;LMKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPANJXNT;;;;;;;;FRFR1ETAWM1;LMKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJNCQWIKSDA;;;;;;;;FRFR1ETBFV1;LPXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMGABJYHNMV;;;;;;;;FRFR1EJDFY2;LVMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBKGPFE;;;;;;;;FRFR1EJDFY1;WPMR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPV8Z6ZGXG2M;;;;;;;;FRFR1EGAVU1;WPMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPM5CD2VVGLM;;;;;;;;FRFR1ERFWX2;YUYY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXDQPVX;;;;;;;;FRFR1EBWQN1;LWZS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSTY1D71XSX;;;;;;;;FRFR1ENUKH2;LWZS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQ1XKQPXDSW;;;;;;;;FRFR1EMRJL2;QVBL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJXWL9CLYQP;;;;;;;;FRFR1EMCMA1;AFFJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFRGYSKJMI9;;;;;;;;FRFR1EPYYF1;ALBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGCVCJP15M7;;;;;;;;FRFR1EPYYF2;APYW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTHXUW7AKVF;;;;;;;;FRFR1ERFXS2;QVBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVFVIHSTRMO;;;;;;;;FRFR1EGAVU2;APYW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRCWJYG;;;;;;;;FRFR1ERFWX1;ASZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPURUMP2J3YM;;;;;;;;FRFR1ERFXS1;QVBL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZB114AMUO7;;;;;;;;FRFR1EMGYK2;LYYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZNYOVG5Q1H;;;;;;;;FRFR1EMGYK1;MATP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJHNMPLBVVS;;;;;;;;FRFR1ETMEW1;LYYP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPB7F7XR3ZNB;;;;;;;;FRFR1ETMEW2;LYUX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEBHUSN;;;;;;;;FRFR1EYYMK1;MAGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMRH2IYQPC5;;;;;;;;FRFR1EWVHS2;MAGL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWHEP9NLKD4;;;;;;;;FRFR1EPLDY2;MATP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEL284IFGMN;;;;;;;;FRFR1EFVWU1;PKWC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPYBWJB;;;;;;;;FRFR1EPHKA2;PBDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQZWCVQ;;;;;;;;FRFR1ETHYM1;WFNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPG9WTPPZMMX;;;;;;;;FRFR1EDUPG2;SUYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCTFQBS;;;;;;;;FRFR1EFXXT1;QEDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPK4HHCPMLJM;;;;;;;;FRFR1EFXXT2;QEGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBVGPUCVDDT;;;;;;;;FRFR1EHSHH1;TBMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCVEVFLDAHI;;;;;;;;FRFR1ECURC1;TDBN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPI87DFGGXNC;;;;;;;;FRFR1ENXJZ1;TDBN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXJM25YBBQP;;;;;;;;FRFR1EGTGP1;TBRK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGJ3XL6XZTL;;;;;;;;FRFR1ETXQF1;QMMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJYRCFTINHR;;;;;;;;FRFR1EFCWL1;TBRK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUYWWVLHDHN;;;;;;;;FRFR1EFTYM1;RTWR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCXZL1VHZBY;;;;;;;;FRFR1EFLVT1;ASCM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPU20PVEFMDS;;;;;;;;FRFR1EFEAB1;ASCM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPP9AXQ55PSR;;;;;;;;FRFR1EFNFV1;AFEQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWV16QKJAOY;;;;;;;;FRFR1EPHKA1;BMAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPS0BKBAHJZ9;;;;;;;;FRFR1EDUPG1;BPVG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDBGJDBSHVN;;;;;;;;FRFR1ETHYM2;BPVG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPI7JXCEB90K;;;;;;;;FRFR1EZLAF1;JCLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYP50UQ5XFT;;;;;;;;FRFR1EPLDY1;JCLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXKCZXBQX77;;;;;;;;FRFR1EXTRY1;PNZZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFOP0RMBHQO;;;;;;;;FRFR1EXTRY2;JVVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPX9ACD664IX;;;;;;;;FRFR1ELVSX2;RJDE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDR8DDD8O45;;;;;;;;FRFR1ELVSX1;RJDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPU309RLZWQ4;;;;;;;;FRFR1ESUZG1;MVDJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXYQVQRLNOV;;;;;;;;FRFR1EEWYJ1;JVVE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRAV5DFEAEQ;;;;;;;;FRFR1EGDCW2;KLMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSXRR7LO13E;;;;;;;;FRFR1EJYZR1;JQBV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYHQFQ5KDAE;;;;;;;;FRFR1ELXZV1;LBJD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUDLITAUEPN;;;;;;;;FRFR1EDYAT1;MVDJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPZ5XASX8DE;;;;;;;;FRFR1ENPSU1;LFDR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCKNLCKILQC;;;;;;;;FRFR1EEASZ1;KLMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCZTN3RDEN3;;;;;;;;FRFR1EGDCW1;LBJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNFH22CALUW;;;;;;;;FRFR1EFVEX1;JQBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPXQQOQYXV2;;;;;;;;FRFR1EFEVE1;PNZZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJYICHSALWP;;;;;;;;FRFR1EWVHS1;QEDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGTTHOQUJRW;;;;;;;;FRFR1EFXNK1;BHLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJN2BNPZTJH;;;;;;;;FRFR1EAKXJ1;SUYQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVCBKGKDJE4;;;;;;;;FRFR1ENLMT1;RHZF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIWC3A33G30;;;;;;;;FRFR1EPBRJ1;ATTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBGYAN4GZ5U;;;;;;;;FRFR1EPTKC1;UHVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAEJY2YM4XC;;;;;;;;FRFR1EPKDW1;XMVE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEXSLDWIYGA;;;;;;;;FRFR1ETYKB1;UGQN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLKPXJJN0R7;;;;;;;;FRFR1ELFRX1;UGQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUTIMKUAQVQ;;;;;;;;FRFR1EZXKA1;UHLH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKHJBBVINUJ;;;;;;;;FRFR1EDSQT2;BBQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPW7NM5NBTSY;;;;;;;;FRFR1EPVTD1;AEYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEJWEGJHZDG;;;;;;;;FRFR1EDSQT1;AEYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGRL0MUCLX8;;;;;;;;FRFR1EBLZK2;AFEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPANLPJGMNN8;;;;;;;;FRFR1EBLZK1;GBQE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTBCQ7Z5SIN;;;;;;;;FRFR1EZDVK1;REBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJRIJGWQ7GS;;;;;;;;FRFR1EZDVK2;FFRC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPN2JNLUXZTS;;;;;;;;FRFR1ENHYA2;GBQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCOBGZQF7KR;;;;;;;;FRFR1ENHYA1;GEDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPODJ3J2PXMV;;;;;;;;FRFR1EFQTC1;RDPC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPY4OFET8FDN;;;;;;;;FRFR1EFRMA1;AACB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNT6A1CNH1A;;;;;;;;FRFR1EFCKS1;UHLH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYV38XHFQKK;;;;;;;;FRFR1EFLVF1;UHVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYIOODBQSFH;;;;;;;;FRFR1EFUDG1;BHUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPOFMPGHIET;;;;;;;;FRFR1EFRED1;XPMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIMXRRATUPO;;;;;;;;FRFR1EFTWX1;XPRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWLVMFDV1MU;;;;;;;;FRFR1EFFVW1;BHUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIXWH7RUKR0;;;;;;;;FRFR1EFVCF1;XMVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPI0SJOBBFTP;;;;;;;;FRFR1EFQTC2;QNCA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBFO8FWAXWY;;;;;;;;FRFR1EVMZM1;QNCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCEJHEYUHTK;;;;;;;;FRFR1EUHZG1;ATTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFU4PDVWWQ4;;;;;;;;FRFR1EVMZM2;AACB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGEUQ9S0IWD;;;;;;;;FRFR1EUHZG2;BHLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWV50SNUOZH;;;;;;;;FRFR1ERXTN2;BMAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPT7FIXFEYY;;;;;;;;FRFR1ERXTN1;BBQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSGQBB9ZVMN;;;;;;;;FRFR1EKQHT2;RTWR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSEODRBQGWL;;;;;;;;FRFR1EKQHT1;XPRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPANUKTTYTG0;;;;;;;;FRFR1ELEBV2;XPMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTZ5AN63MMZ;;;;;;;;FRFR1EWEDE1;RHZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFOR8KTMTNA;;;;;;;;FRFR1EZMPB2;RMBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJDC6F1GITF;;;;;;;;FRFR1EZMPB1;PMZR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLNFOF1DSWU;;;;;;;;FRFR1EXYAZ2;NYQY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNSZLO1DE4B;;;;;;;;FRFR1EMNPR2;NNAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTHCWDAWXKR;;;;;;;;FRFR1EZQUA1;NMMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLEYJ79ZALK;;;;;;;;FRFR1EWCPC1;NNAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCRK2IWO5NY;;;;;;;;FRFR1EPDWK2;NHQN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAZ12ROASTI;;;;;;;;FRFR1EWEDE2;NJZD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPF0HLVDBZUM;;;;;;;;FRFR1EPLDE2;NHQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPLT8JLOXFE;;;;;;;;FRFR1EPDWK1;NHNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUOGJK0ALBQ;;;;;;;;FRFR1EVWWB2;NHNV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIVXGZYQXI3;;;;;;;;FRFR1EWCAS1;NMMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHCWWXBM9FJ;;;;;;;;FRFR1EMMCB2;NHHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSP7TYXQZVE;;;;;;;;FRFR1EVUHN2;NLSM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTFC7M4PURW;;;;;;;;FRFR1EWCAS2;NJZD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZC6L4PI3AM;;;;;;;;FRFR1EPDNF2;NLSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCNVK97OWH1;;;;;;;;FRFR1EUFLE2;WHVZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMGSHTS9WRC;;;;;;;;FRFR1ERFEA1;USRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHJBBCTOFEI;;;;;;;;FRFR1EUFLE1;NEYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFGFFNEVI2C;;;;;;;;FRFR1EVBKM2;NHHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBB50GHGEOM;;;;;;;;FRFR1EWCZB2;NHSN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGIQRFGC9J6;;;;;;;;FRFR1EVHWK2;PNUZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRJYQTZVSYG;;;;;;;;FRFR1EVWJG1;PMZR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGAMO0PZWOK;;;;;;;;FRFR1EPDNF1;NXJM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPHPFZI11NQ;;;;;;;;FRFR1EWCPC2;PNTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPX64XQRUOP2;;;;;;;;FRFR1EWCZB1;PNLM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPN0JCAPMP2S;;;;;;;;FRFR1EZTAF1;PNLM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPR1VOSOO7GO;;;;;;;;FRFR1EMEPU1;PNTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFQSYJSG0TH;;;;;;;;FRFR1EMEPU2;PCFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUEZAJDDHKC;;;;;;;;FRFR1EVWWB1;NHSN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZQRMJ7J2UI;;;;;;;;FRFR1EVWJG2;NXJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDXBHRKZYBD;;;;;;;;FRFR1EMECS1;PLWX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPW1WQZAA03D;;;;;;;;FRFR1EMECS2;PLWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPK3XN6HDHL;;;;;;;;FRFR1EVJTX2;NGMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMDNBIGKUXC;;;;;;;;FRFR1EMLJW1;NEYV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOOG3SU0SRF;;;;;;;;FRFR1EMLJW2;NGMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPD9FNLZRTGS;;;;;;;;FRFR1EMMCB1;MUDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWQRUVP5GZT;;;;;;;;FRFR1EMMYP1;WFNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIRNE7AOJCY;;;;;;;;FRFR1EMHDD2;RMBT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNUTXBIS2GQ;;;;;;;;FRFR1EMKGM1;NYQY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCPRBTI1JCS;;;;;;;;FRFR1EVDEN2;VXYK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHKHTSQZA2H;;;;;;;;FRFR1EVUHN1;KCYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSZIFDMFRBK;;;;;;;;FRFR1EWYAB1;QNRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPB5WUOR3QQJ;;;;;;;;FRFR1EXYLF2;VXYK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEULNXGGME8;;;;;;;;FRFR1EYPMJ2;LFDR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOTIJNYI4G7;;;;;;;;FRFR1EYPMJ1;QVRT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZOZRCQYIPI;;;;;;;;FRFR1ERABG1;QYHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPP0A4HH2T9K;;;;;;;;FRFR1EXTWP1;TBMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDAT3HIUUJM;;;;;;;;FRFR1EWZZK1;QEGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEK3YFXDJPI;;;;;;;;FRFR1EXAVV2;LQHG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHQNBNX4FTU;;;;;;;;FRFR1EXVHM2;QVRT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIMNKKM8CKN;;;;;;;;FRFR1EVUGR1;QMMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPL1ZVU3VTKA;;;;;;;;FRFR1EWYAB2;QYHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXVHD82BG9X;;;;;;;;FRFR1EMHDD1;RKAJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMMNYV6SKZ1;;;;;;;;FRFR1EVLFM1;RKAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDJZ3SGBTQ4;;;;;;;;FRFR1EMKLH2;KEYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWGGW16XY2X;;;;;;;;FRFR1ESVBZ1;LQHG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZJOOX1CSEU;;;;;;;;FRFR1EMMYP2;QNRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLBOH42YD32;;;;;;;;FRFR1EMNPR1;WKWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTGYAPJC0IY;;;;;;;;FRFR1EMMLW2;PTSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGLYX8EKDXS;;;;;;;;FRFR1EVUGR2;WHVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZZAOSWZCD5;;;;;;;;FRFR1EYPBF1;PTSW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGDURFISRRH;;;;;;;;FRFR1EMMLW1;MUDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKYMNEXEV9U;;;;;;;;FRFR1ESVBZ2;UQWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPM3TYYDTBPB;;;;;;;;FRFR1EMKLH1;NLTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCWDDIHOIZF;;;;;;;;FRFR1EMFSS2;USRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOZQAXE8API;;;;;;;;FRFR1ESUCM2;YQTR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAVPMF7FPWF;;;;;;;;FRFR1EVWUX1;WKWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRH93NMVN5Q;;;;;;;;FRFR1EMFSS1;UQWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPT00CHAS1VP;;;;;;;;FRFR1ESUCM1;NLTB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPW5UAOHAP6F;;;;;;;;FRFR1EMKGM2;VWWP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFFCIXLY2AX;;;;;;;;FRFR1EVPAA2;YQTR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBPVCF4NFWS;;;;;;;;FRFR1EVPAA1;VWWP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDRJCSRLME5;;;;;;;;FRFR1EXBVC1;LUNT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPR0FHUDC6EV;;;;;;;;FRFR1EVDEN1;LUVE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLMYDZA6WOH;;;;;;;;FRFR1EXGDH2;LTQG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBVSE9OOBFL;;;;;;;;FRFR1EWZEY1;LHRQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEOEVKW231A;;;;;;;;FRFR1EXGDH1;VVFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDCO2FHPJTD;;;;;;;;FRFR1EXFED2;YLBS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCSEKWHVUFM;;;;;;;;FRFR1EVKMS2;YCTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHD9NVGOEYE;;;;;;;;FRFR1EXFED1;SCDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUIV8WSGZS3;;;;;;;;FRFR1EVLFM2;JUTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMF3IZD0TYS;;;;;;;;FRFR1ERXBC2;WFFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXWOZOZWQ4X;;;;;;;;FRFR1EXXHY1;PNPV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPC3RYGMDUOZ;;;;;;;;FRFR1EWVKL1;CVEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEBFZ5AXIPG;;;;;;;;FRFR1EZQUA2;MNHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPFSNGXZAQM;;;;;;;;FRFR1EXTWP2;AYPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLWVJGTCWAV;;;;;;;;FRFR1ERXBC1;MVRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUHJOVHVZUL;;;;;;;;FRFR1EVBKM1;WFVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHQX9SNP7JC;;;;;;;;FRFR1EZLKM1;MLFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWS9GEQKX4X;;;;;;;;FRFR1EVLJX1;YKHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTOIG5O9FBL;;;;;;;;FRFR1EWZEY2;FWWR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPP4KF4WCINB;;;;;;;;FRFR1EVKMS1;JVVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWJ8Z1KJHM8;;;;;;;;FRFR1ERDPC1;DKVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRZUDP5ZC6L;;;;;;;;FRFR1EABRP2;PFQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFUSMB1T2DL;;;;;;;;FRFR1EREBV2;ZWWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJZZFBPHZN0;;;;;;;;FRFR1EADCR1;RLXP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYRHKYUWSPC;;;;;;;;FRFR1EADCR2;RLXP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPG7IIRTHTVV;;;;;;;;FRFR1EDUUC1;VDXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPX1WVLS09JB;;;;;;;;FRFR1EGEDN2;VDXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPO6NF58E9RW;;;;;;;;FRFR1EABRP1;MUAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPD321K1JB15;;;;;;;;FRFR1EVLHU1;KALF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSASKL5PCVO;;;;;;;;FRFR1EVYVA2;LXMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLUID3LXHYD;;;;;;;;FRFR1EPCMB1;LXMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQQSNCTNJVW;;;;;;;;FRFR1EPCMB2;UPLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWWTYSYKPGE;;;;;;;;FRFR1EVLHU2;JVFT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFKGQLSRA16;;;;;;;;FRFR1EVYVA1;TPZQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCTXZPJCMCY;;;;;;;;FRFR1EVLJX2;EBQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTKYLXPMQQR;;;;;;;;FRFR1EVHWK1;GBAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXUHTK332PH;;;;;;;;FRFR1ERWKW1;JCPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXFOSNUYPUI;;;;;;;;FRFR1EXBVC2;MLKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRJ5MVDIEP8;;;;;;;;FRFR1ERWKW2;FRQQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMJ8NETPBNZ;;;;;;;;FRFR1EUNER2;FWSN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWUNGLWZ1YC;;;;;;;;FRFR1EYFFK1;FUPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOMDPXMBHFV;;;;;;;;FRFR1EXDEW1;VMMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPS7OZUOKYDE;;;;;;;;FRFR1EXCXB2;QQGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKCS9CBB3AU;;;;;;;;FRFR1EXDEW2;JAUU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEUPMCU29Y2;;;;;;;;FRFR1EVPJW2;TSKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOTB2ORHCSB;;;;;;;;FRFR1EXYDM1;SQFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPO3D66ZVWF8;;;;;;;;FRFR1EXXHY2;KYHG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLEI5CBWBVF;;;;;;;;FRFR1EXCXB1;FYKP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAXODXBUCIG;;;;;;;;FRFR1EXYDM2;QEQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIQFRXFB9FK;;;;;;;;FRFR1EVPJW1;UHHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTUNFILFNT4;;;;;;;;FRFR1ERXJH2;PMQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHWGH4CNZPB;;;;;;;;FRFR1ERXJH1;RGAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXEESI7SAZY;;;;;;;;FRFR1ERYKV2;NAAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPE1RHXEXDBN;;;;;;;;FRFR1ERYKV1;HTJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMQM28MJSWG;;;;;;;;FRFR1EVWXG1;QQYL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZ0LIYARX3I;;;;;;;;FRFR1EVWUX2;HCDJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPN85SEO7ECP;;;;;;;;FRFR1EUPNK1;VBWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJJAKCW9HAW;;;;;;;;FRFR1EYFDK1;JAUU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKYGXBCOEUN;;;;;;;;FRFR1EZTAF2;QQGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNPD3JQ3SQ3;;;;;;;;FRFR1EVJTX1;MGBN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPC8ZGQHEU5W;;;;;;;;FRFR1EYFUY2;NHBW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWLHJJJF5Z0;;;;;;;;FRFR1EYFFK2;VDMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQIJDB1KGQD;;;;;;;;FRFR1EUPNK2;VPTJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPY7IPA7UM6O;;;;;;;;FRFR1EZLKM2;ZSJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDB729VJMID;;;;;;;;FRFR1EYFDK2;ZSJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZKDZF8SDVA;;;;;;;;FRFR1EVYNL2;NHBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHIMXOVAKJ0;;;;;;;;FRFR1ESWJY2;NBWY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLDEIEAYDSL;;;;;;;;FRFR1ETBPF2;NGBY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDMH0PBAXCF;;;;;;;;FRFR1EUNER1;VAHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPY2MRQRX4PV;;;;;;;;FRFR1EVYNL1;NGBY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEKWN2NN56Z;;;;;;;;FRFR1EVWXG2;NBWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRRK1AVPNIS;;;;;;;;FRFR1EYFUY1;JGNN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNRPAT4JCYN;;;;;;;;FRFR1EWZZK2;XYEY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIMRPTILWO0;;;;;;;;FRFR1EZLMW1;YPXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFYHUB1BIZF;;;;;;;;FRFR1EXAVV1;SXUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLTG8ORIAX4;;;;;;;;FRFR1ETEDF2;ZJLM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUQL1ORKDTH;;;;;;;;FRFR1ETAGR2;ZJLM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMR9BSJWNMJ;;;;;;;;FRFR1ETWNQ2;WZGZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPV7ICDQ3LVR;;;;;;;;FRFR1ETEPX2;UZWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDKBK3IZL5E;;;;;;;;FRFR1ESALG1;UXEP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXXGOJ7R8NU;;;;;;;;FRFR1ETEMG2;WMXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHBB3TYFJFW;;;;;;;;FRFR1ETAGR1;WMNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPY8NFJOVNCO;;;;;;;;FRFR1ETEDF1;WMXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGL4ERZHDOT;;;;;;;;FRFR1ESALG2;WMNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGM4SFCKU5P;;;;;;;;FRFR1ETEPX1;WSWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPL2KTMFZATR;;;;;;;;FRFR1EMKHF2;WSWY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHWPPNAD8K0;;;;;;;;FRFR1EUFLS1;WVMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTXLNRF6IDO;;;;;;;;FRFR1EHELV2;UXEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNVJ5E3O6YT;;;;;;;;FRFR1EHELV1;WMPC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTMRZGC2FOR;;;;;;;;FRFR1EUKLW2;WMPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPF2310LROW6;;;;;;;;FRFR1EUKLW1;UXRY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKLMBE6LVV9;;;;;;;;FRFR1EZLWW1;WTYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNX7Q0NZIA4;;;;;;;;FRFR1ETBHD1;WVMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCQMQZFLODZ;;;;;;;;FRFR1ETRGT1;UXRY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPF2WBIZMGSY;;;;;;;;FRFR1ETRVY1;ZGSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDFTEM0U8ZB;;;;;;;;FRFR1EZLWW2;ZGSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJBGVKCN6U7;;;;;;;;FRFR1EMKHF1;VMEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXQHA8RY3C0;;;;;;;;FRFR1ETBHD2;NJXL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVCES3C1APO;;;;;;;;FRFR1ETDES2;VSBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPS1UPSAI2WA;;;;;;;;FRFR1ETDES1;VJQU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPX2OY3JOEPQ;;;;;;;;FRFR1ETVYX2;NUHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNGQP8ETIBP;;;;;;;;FRFR1ETVYX1;NUHW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOCMVHL5UIN;;;;;;;;FRFR1ETRGT2;HQJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYPBFYEH6AZ;;;;;;;;FRFR1ETEMG1;HQJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBJDBRGOTJA;;;;;;;;FRFR1ETVUS2;NJXL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYJEH1BQMHQ;;;;;;;;FRFR1ETVUS1;VMEF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQGDY5JC7JJ;;;;;;;;FRFR1ETYMJ1;HEAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPK0VTCHYACN;;;;;;;;FRFR1ETRVY2;HEAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFUTIVJGR3W;;;;;;;;FRFR1ETYMJ2;RTBE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMSA4LEJVKS;;;;;;;;FRFR1ETWNQ1;GHMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFJYNYUSSSJ;;;;;;;;FRFR1EUFLS2;GHMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZYL6ZBTURA;;;;;;;;FRFR1EYDBM1;RTBE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLJK2HESSRK;;;;;;;;FRFR1EVAEH2;WTYJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEJFSUCSX8H;;;;;;;;FRFR1ENCTN2;UZWE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLW8YIBIVNR;;;;;;;;FRFR1ESCTQ1;JMHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZ2GMZTGMKG;;;;;;;;FRFR1ESCTQ2;UZPD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGUF6TXRR70;;;;;;;;FRFR1EMVMY2;QHVQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJYGTRRTRSD;;;;;;;;FRFR1ENAVS1;QVDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBTEM7L8NXD;;;;;;;;FRFR1EXCLA2;QHVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYEEBQJBWE2;;;;;;;;FRFR1EMYZJ2;VTLR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPR7WVTFXTZQ;;;;;;;;FRFR1EPVYY2;VTLR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYO5QCAKPXE;;;;;;;;FRFR1EMVMD2;HUAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJBWSNH5CN2;;;;;;;;FRFR1EMZRZ1;HYPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPE13WCUMQM3;;;;;;;;FRFR1EUJSN2;MDKJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTJPZS8BPH4;;;;;;;;FRFR1EUJSN1;MGHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPK2DBFDWT9W;;;;;;;;FRFR1EVAEH1;YFTK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEZSU5AL3I5;;;;;;;;FRFR1ENQBV1;YFTK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIHTEVI4L40;;;;;;;;FRFR1EMVMD1;JMHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRDX2AWT3HH;;;;;;;;FRFR1ENBUD2;VUMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYADWXN16SX;;;;;;;;FRFR1ENCTN1;VUMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHSL9TJXH2X;;;;;;;;FRFR1EXCLA1;WZGZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLLI8VB03EYSCL2;;;;;;;;FRFR1ESGZH1;QVDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIBSXDFRIST;;;;;;;;FRFR1ESEDJ1;HVVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPN9XQ3KEFL9;;;;;;;;FRFR1EMZRZ2;RTHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBR33QVBXDK;;;;;;;;FRFR1ESDQM2;TZPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLLIIIO2L613NJN;;;;;;;;FRFR1EVBDL2;UZPD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPER0AUMJDGU;;;;;;;;FRFR1ESEDJ2;FKPP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKRAXKE7RE5;;;;;;;;FRFR1ESGGC2;FKPP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLLJED8Y6Z1Z0BZ;;;;;;;;FRFR1ESGZH2;MPVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXFCI1JOWWR;;;;;;;;FRFR1ENAVS2;TTLQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPYIAZJVBWS;;;;;;;;FRFR1ESFGR1;TTLQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLLJE3WUMOV8L8F;;;;;;;;FRFR1ESFGR2;TZPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFU2UCSPHOH;;;;;;;;FRFR1ESGGC1;QUNH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYZ10HKDMQ8;;;;;;;;FRFR1ESDQM1;GUYC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVEVO6DOUKL;;;;;;;;FRFR1EMVMY1;GTJK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNLEDVFEXF7;;;;;;;;FRFR1ENBUD1;FMPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPG0F2IUTCE8;;;;;;;;FRFR1EVFKU1;FMPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFYDLG22UGH;;;;;;;;FRFR1EVFKU2;FTBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZI3F7Q3G9Y;;;;;;;;FRFR1EPLDE1;FTBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPORFDPC1FUM;;;;;;;;FRFR1EEXQD2;KBWR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPK9AZWC5W94;;;;;;;;FRFR1EHVDF2;DKNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZG0YWPL16J;;;;;;;;FRFR1ELCDQ2;LUDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGLCUE976K9;;;;;;;;FRFR1EKWGG2;CPNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGUJSPIPZNZ;;;;;;;;FRFR1EFEJS1;CRSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOUTJB3CMSJ;;;;;;;;FRFR1EFEJS2;CRWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPO38JYKRTRO;;;;;;;;FRFR1EEZTL2;ALTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKT2CJWMHHT;;;;;;;;FRFR1EEZTL1;DYYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPG3IUATQPKH;;;;;;;;FRFR1EVPMT2;AEBP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPNZOLN3KQH;;;;;;;;FRFR1ECBCL2;JSVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGJ9LI4EFUY;;;;;;;;FRFR1EBRKM2;CERR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGTJYVLLJFU;;;;;;;;FRFR1EBRKM1;CCDX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPH3MZXPKIZJ;;;;;;;;FRFR1ELCDQ1;JWBP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPW5R7IXTOXN;;;;;;;;FRFR1EFEUM1;CJQF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVFR4L4ZIYV;;;;;;;;FRFR1EFEUM2;AETA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLVC3YKSO2H;;;;;;;;FRFR1ECBCL1;CSNC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSBGEQE8DZY;;;;;;;;FRFR1EVGJS2;CJHL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPULSFSOW4Z1;;;;;;;;FRFR1ELDCK2;CTCL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIMX5QJAPON;;;;;;;;FRFR1EEXQD1;CWCP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVHUBJ7QBC6;;;;;;;;FRFR1EXYAZ1;WWLG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPY4UAJNWN4K;;;;;;;;FRFR1EVZFV1;XAMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVAJMYZYNQ8;;;;;;;;FRFR1EPJGN2;MSZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPS4X9OLB4Z;;;;;;;;FRFR1ETBPF1;CSEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNX8FKWS8GN;;;;;;;;FRFR1ESWJY1;CYNP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHXKNZ664DA;;;;;;;;FRFR1EZLMW2;CWEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAFJ2JVZ4L1;;;;;;;;FRFR1EVZFV2;CXSS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXAIFX7NXUY;;;;;;;;FRFR1EXYLF1;CNYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSEEISRFNFD;;;;;;;;FRFR1EHVDF1;UDPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPC4DAJBRGSS;;;;;;;;FRFR1ERABG2;ADUC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPR4CFXQWYOD;;;;;;;;FRFR1EPJGN1;AXBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPBVWLY88ID;;;;;;;;FRFR1EXVHM1;CTCP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQP7TLLYXNL;;;;;;;;FRFR1EWVKL2;WMXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQUIK8EU3EI;;;;;;;;FRFR1ELDCK1;XDUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFBD13FK4ZJ;;;;;;;;FRFR1EVGJS1;CNLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCKECHE1YMR;;;;;;;;FRFR1EJBLS2;CKTY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPG9AWPT4DAO;;;;;;;;FRFR1EEXTB1;VMDR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLQAM9T3B0V;;;;;;;;FRFR1EVEQC2;CULD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPT6DOEVM5R;;;;;;;;FRFR1EHAXC1;UAAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPICPTZYI5F3;;;;;;;;FRFR1EFMEQ1;CNBS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCOWVZWVFO0;;;;;;;;FRFR1EFMVR2;DBUP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPD9SCVVZETK;;;;;;;;FRFR1EFMVR1;FTQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQMYSD12SXN;;;;;;;;FRFR1EEYWH1;CHCN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRXIEJHAHQH;;;;;;;;FRFR1EEYWH2;LAFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPISMVMVMPVP;;;;;;;;FRFR1EKWGG1;UGSK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIWGHRPVBV0;;;;;;;;FRFR1EFTWL2;CFLM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBNAVO3VFDJ;;;;;;;;FRFR1EFTWL1;CSCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTPZYRFBBHS;;;;;;;;FRFR1EFQUC2;CSHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQXCNNGKKJJ;;;;;;;;FRFR1EEYYR1;WKCG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPSEA6GJAN3;;;;;;;;FRFR1EEYYR2;WLVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPI94BQIRYL6;;;;;;;;FRFR1EXCVP2;LAVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIF1PCDZCRZ;;;;;;;;FRFR1EXCVP1;CECQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPURKGXP7KLK;;;;;;;;FRFR1EYGBA1;UPRP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGBTTMB;;;;;;;;FRFR1EVEQC1;LAVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYJUCBYQK33;;;;;;;;FRFR1EFMEQ2;BKPG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJY0TJDEVXN;;;;;;;;FRFR1EEVMX2;BGSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPY9EHBF4TKH;;;;;;;;FRFR1EFQUC1;CRJP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFB0EBACBBU;;;;;;;;FRFR1EETUA2;UMAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSAYQDHUGKA;;;;;;;;FRFR1EHAXC2;LAFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNHJ0BBAIUH;;;;;;;;FRFR1EHUDJ2;XNVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQG1JJTOKPN;;;;;;;;FRFR1EHUDJ1;UHAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPB23XI8EXVR;;;;;;;;FRFR1EJBLS1;CNDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPV4BCPZSKGF;;;;;;;;FRFR1EEXTB2;AUDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWCBMBTLQJ7;;;;;;;;FRFR1EETUA1;KYQF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPK6RA94IPIY;;;;;;;;FRFR1EHWDD2;KYQF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZFNYXIEBSQ;;;;;;;;FRFR1EFSZH1;CQFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNYCFYH0OAI;;;;;;;;FRFR1EDZYJ2;CGWL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVMYGOPNGKC;;;;;;;;FRFR1EDZYJ1;WDCK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYIDXSFUUSI;;;;;;;;FRFR1EVPMT1;VQFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUDZL8RTBFG;;;;;;;;FRFR1EEVMX1;XGMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDGMDE60VKP;;;;;;;;FRFR1EHWDD1;XMAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPP1JCQZGYPW;;;;;;;;FRFR1EFSZH2;UYQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBKUKVCUG0Q;;;;;;;;FRFR1ERFEA2;VEJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWUFELBWHT7;;;;;;;;FRFR1EDUUC2;CKLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQOX8DO7S4R;;;;;;;;FRFR1ELGCR1;XGAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXBYO74ENAK;;;;;;;;FRFR1EYJMS2;CEEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGW5Q7UNATT;;;;;;;;FRFR1EYQFU1;CHPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRD0UYEY3MU;;;;;;;;FRFR1EYUYY1;CLLC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZ4Q0ZTBFD9;;;;;;;;FRFR1EYGWY1;DEYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNSEE0ZJGLH;;;;;;;;FRFR1EYGCF1;JEGD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMCBGYNNUEB;;;;;;;;FRFR1EYHMF1;CXFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPU4AQ0K8DKR;;;;;;;;FRFR1EYHEL1;AWBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZVYQDEGDC3;;;;;;;;FRFR1EYYJW1;KYAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOGZVDJ7RLD;;;;;;;;FRFR1EYQFU2;XQVP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPH88YLRP16P;;;;;;;;FRFR1EYHMF2;XPKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLZFEFO7KSR;;;;;;;;FRFR1EYHEL2;MGUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSHKDVBCA4O;;;;;;;;FRFR1EYKUE1;KKCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHTIYLP7TN0;;;;;;;;FRFR1EYJCD2;CNHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJOLS2OGPGU;;;;;;;;FRFR1EYGCF2;CQBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYLSVBYAJM1;;;;;;;;FRFR1EYGWY2;AYKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKODGS1EZY2;;;;;;;;FRFR1ECQVD2;CCTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPICY3X7IVQQ;;;;;;;;FRFR1EYGXG1;NSRL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHFWXM4PJLA;;;;;;;;FRFR1EYGXG2;DMGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPATU4HTPHF1;;;;;;;;FRFR1EFFRC1;AYRP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDBT65NAW0K;;;;;;;;FRFR1EYKUE2;DMDF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQOFKA776QB;;;;;;;;FRFR1EMBTE1;DTXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWCGRDIRD61;;;;;;;;FRFR1EMBTE2;BCVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGCKM4BEY1K;;;;;;;;FRFR1EMBNN1;JJUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUFGBSW;;;;;;;;FRFR1EMBNN2;NELE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJYATAX;;;;;;;;FRFR1EMBRZ1;MCUP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYWRSAWNEVT;;;;;;;;FRFR1EMBXY1;MCUP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNLZTSF;;;;;;;;FRFR1EMCDA2;MSZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQMLUTQ;;;;;;;;FRFR1ELKPC2;NYMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBH9RGRYWWL;;;;;;;;FRFR1ELKWR1;NZGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPR8PQPHRS5Y;;;;;;;;FRFR1EMBXY2;NYMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMX2GSCSOQH;;;;;;;;FRFR1EMCDA1;NELE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDHK0LKAJ25;;;;;;;;FRFR1ELKPC1;GDEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRPQUB69LKZ;;;;;;;;FRFR1EYYJW2;NZGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDHQUXFGSJ0;;;;;;;;FRFR1EYJMS1;DMEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPANTREV;;;;;;;;FRFR1EYJCD1;VPAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDGXASAH8ZE;;;;;;;;FRFR1EQUJW1;DDVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFRGFEE;;;;;;;;FRFR1EPRBX2;CEFR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTDVAAV;;;;;;;;FRFR1EFTRB1;CBPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPVHEQY;;;;;;;;FRFR1EFLCN2;CRPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSXTKJJ;;;;;;;;FRFR1EAUWT2;VRDH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNQTNQA;;;;;;;;FRFR1EEMSE1;UHDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJUNKKQX4CA;;;;;;;;FRFR1ECYEG1;AKSJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHFWNFZ;;;;;;;;FRFR1EPRBX1;CWEU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLVCNJY;;;;;;;;FRFR1ECWXW1;CGGN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSWI9PR0KMU;;;;;;;;FRFR1ECWXW2;CMRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPISP5MCPLRA;;;;;;;;FRFR1EFTRB2;VESB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGYLUWGEFDI;;;;;;;;FRFR1EPSGP2;VFMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJDZRSUX6PK;;;;;;;;FRFR1EPCFM2;CTPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPR4SOF6UFOS;;;;;;;;FRFR1EPSGP1;VCLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAWWZZB;;;;;;;;FRFR1EPQTA2;CFPG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOPXMALLCMW;;;;;;;;FRFR1EPQTA1;UWWF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLLBHRC;;;;;;;;FRFR1EPBDM1;VCGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSYQDJU;;;;;;;;FRFR1EPNUZ2;VEEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPB92IX0BMR1;;;;;;;;FRFR1EPKWC2;VADK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYRUUXFJYTW;;;;;;;;FRFR1EDAVF2;ACYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPHVETX;;;;;;;;FRFR1EEMSE2;CNSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFGJRNL;;;;;;;;FRFR1EAUWT1;XCDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSMNREJQJRD;;;;;;;;FRFR1EGTGL1;UABK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDHSSXX0WPX;;;;;;;;FRFR1EQUJW2;WSUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGM910S6PBS;;;;;;;;FRFR1EFLCN1;CDUT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHWS0KPAQIE;;;;;;;;FRFR1EHNFH2;EHDF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTUTD30X35M;;;;;;;;FRFR1EGTGL2;WXJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFGWMD2UBVQ;;;;;;;;FRFR1EBRYM2;CMJJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQFSWJ7JX52;;;;;;;;FRFR1EHNFH1;BDVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRVQSHO7N5L;;;;;;;;FRFR1EUAWB1;BCHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPXOA6DYBFU;;;;;;;;FRFR1EDWWH2;DVTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGZW7760W41;;;;;;;;FRFR1ECQVD1;LDJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZANUNBEQ2X;;;;;;;;FRFR1EBRYM1;ANDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPYFXTRHNOV;;;;;;;;FRFR1EUAWB2;CSSR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAU1YWRKLWE;;;;;;;;FRFR1ECYEG2;AJNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSA4FXRNXKE;;;;;;;;FRFR1EDAVF1;BMSY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMPFTAS9LHS;;;;;;;;FRFR1EDWWH1;BELA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBMT481UC66;;;;;;;;FRFR1EMBRZ2;DAAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWZBCXJ;;;;;;;;FRFR1ELVMV1;AWBL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHTQZMT;;;;;;;;FRFR1ELUEC2;CBXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPW26C6ONSBL;;;;;;;;FRFR1EQVRZ2;REEB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRMGF2XIQG6;;;;;;;;FRFR1EHNWS1;GRXB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGFBM3TN5RY;;;;;;;;FRFR1ECADE2;GRXB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWLQXF6NKY2;;;;;;;;FRFR1EHGTF1;AEGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPO54IWFIUPP;;;;;;;;FRFR1ECADE1;ZBYL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPISUMHUQAQG;;;;;;;;FRFR1EASZV2;BKYH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBRUPTZ;;;;;;;;FRFR1EAFFJ1;GUBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNTEXHV;;;;;;;;FRFR1EQWJN1;CPCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVLJGRE;;;;;;;;FRFR1EQVBM2;LEWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYZD20EWHZI;;;;;;;;FRFR1EQVRZ1;MQLC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFJCDHNVFJV;;;;;;;;FRFR1EAADY2;TYCU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNLVCDQEOPZ;;;;;;;;FRFR1EQXBP2;TXMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYU5FX9XNFJ;;;;;;;;FRFR1EQXNB1;LZEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRQVKOP24BA;;;;;;;;FRFR1EQXNB2;KKGN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFSMDLX2G3U;;;;;;;;FRFR1EAADY1;UWVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYMXK9OQBKU;;;;;;;;FRFR1EQWJN2;HVTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKUPUVRMJH2;;;;;;;;FRFR1EHNVM2;CHAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNA1INBYCYV;;;;;;;;FRFR1EBQAK1;QPFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHZVBOQT3RZ;;;;;;;;FRFR1EBNKW2;MLXD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHOQDKHZSAT;;;;;;;;FRFR1EAMEV1;VFRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZKXXATFPZL;;;;;;;;FRFR1ELDEB2;SGAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYPBNINMYNO;;;;;;;;FRFR1ELGCR2;YYQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPROOMZVXRSO;;;;;;;;FRFR1ELEBV1;WENL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOAUEVKIP5N;;;;;;;;FRFR1EAMEV2;LYQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJR9TTMXTJ7;;;;;;;;FRFR1EHSKL1;JWUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTCHFTRZXQR;;;;;;;;FRFR1EHSKL2;RAPE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSBLMXOFNGQ;;;;;;;;FRFR1EHNVM1;JMDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOL7HMZRXTP;;;;;;;;FRFR1EBQAK2;WLPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMHD5MKUFAK;;;;;;;;FRFR1ECFAZ2;VDZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVXH5EOTKP9;;;;;;;;FRFR1EAFJP1;PMYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRVMNOOPOGM;;;;;;;;FRFR1ECFAZ1;NGCZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLDBAM0UVXS;;;;;;;;FRFR1EHNWS2;GVGH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQHL8YCFSIR;;;;;;;;FRFR1EBNKW1;WBQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOYO5JSDPCS;;;;;;;;FRFR1EHGTF2;VCAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRZTN1YKWP7;;;;;;;;FRFR1EQXBP1;VRFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKWASMIIC7L;;;;;;;;FRFR1EAFJP2;BFUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAAVBTG;;;;;;;;FRFR1ELUEC1;PKRE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEC5TK1JROM;;;;;;;;FRFR1EALBQ2;DWHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUDCPRA;;;;;;;;FRFR1ELXKP2;AWTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHJJFHK;;;;;;;;FRFR1ELYCH2;CPEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMWSKGX;;;;;;;;FRFR1ELYUX1;VFYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQLRDN5VITJ;;;;;;;;FRFR1ELXKP1;EWAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGMFXMF;;;;;;;;FRFR1ELYCH1;QQEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHRSSFZ;;;;;;;;FRFR1ELNPS1;EMLX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEYECWW;;;;;;;;FRFR1ELNPS2;EMLX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCKVEGB;;;;;;;;FRFR1ELPXM1;KBYG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXVKVTT;;;;;;;;FRFR1ELKWR2;KBYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQQTZQG;;;;;;;;FRFR1ELMKF1;QCSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZVTXA1HEAM;;;;;;;;FRFR1ELMKF2;QCSM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHSN542X2AO;;;;;;;;FRFR1ELPXM2;RSWF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJPJU8RHNGW;;;;;;;;FRFR1ELVMV2;RSWF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQH0TXLZWSV;;;;;;;;FRFR1EWPMR2;FZJZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRZHD8TNRZR;;;;;;;;FRFR1EWPMR1;FZJZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMFG307V2NS;;;;;;;;FRFR1EYUYY2;GWQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPFMAS0BOXW;;;;;;;;FRFR1ELWZS2;TYGP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPELVWIEUKPA;;;;;;;;FRFR1ELWZS1;GRLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDRK2TIBPMV;;;;;;;;FRFR1EQVBL1;GKPY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCWBZ2DL8DD;;;;;;;;FRFR1EAFFJ2;MRHV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBAVXN00NQZ;;;;;;;;FRFR1EALBQ1;QQEM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTYMBBVGUX0;;;;;;;;FRFR1EAPYW1;CNQG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPF0XWONZVIN;;;;;;;;FRFR1EQVBM1;AALM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGA7MONBEKP;;;;;;;;FRFR1EAPYW2;BMFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEGAHT5NLC0;;;;;;;;FRFR1EASZV1;AARP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLFIWEBSSVC;;;;;;;;FRFR1EQVBL2;LBCY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEJXYMI6XHO;;;;;;;;FRFR1ELYYP1;ZXXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFQSBKCRGOP;;;;;;;;FRFR1EMATP1;KXQA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGXDZ8OG6HC;;;;;;;;FRFR1ELYYP2;DLFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYENI22PAXC;;;;;;;;FRFR1ELYUX2;ZYAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPFIHFF2BIG;;;;;;;;FRFR1EMAGL1;CNQG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPABQ4SHJDQX;;;;;;;;FRFR1EMAGL2;ALGQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSBBFTCPVCD;;;;;;;;FRFR1EMATP2;HCJX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVWTMPYFVOZ;;;;;;;;FRFR1EPKWC1;CYFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCPJSS61PNE;;;;;;;;FRFR1EPBDM2;CZSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEFUC1KB7A5;;;;;;;;FRFR1EWFNA2;MRHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDAWE5R7RWO;;;;;;;;FRFR1ESUYQ1;MRHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWKHYWYQLE4;;;;;;;;FRFR1EQEDD2;MKJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNZUZDQ7AS5;;;;;;;;FRFR1EQEGM1;GVAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMPHPDX;;;;;;;;FRFR1ETBMJ2;GJEZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPIDK70DETG;;;;;;;;FRFR1ETDBN2;GKYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBOHPZMIGRR;;;;;;;;FRFR1ETDBN1;LCXD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSFUJIVKVOR;;;;;;;;FRFR1ETBRK1;PJXS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJT2OHSXSCS;;;;;;;;FRFR1EQMMH1;ATCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWO2U9NU6WH;;;;;;;;FRFR1ETBRK2;JGLF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPO21GQVZ2FZ;;;;;;;;FRFR1ERTWR2;FGCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJV1D6ZX6CS;;;;;;;;FRFR1EASCM2;DHRH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVHGFCGFP0Q;;;;;;;;FRFR1EASCM1;AMWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDQETGFDKRS;;;;;;;;FRFR1EAFEQ2;SAPD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEWBWX8MWV7;;;;;;;;FRFR1EBMAA2;VTJR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPV03V6B3GVC;;;;;;;;FRFR1EBPVG1;MPVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJDZUASRU2S;;;;;;;;FRFR1EBPVG2;EBAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDR9TBERC11;;;;;;;;FRFR1EJCLA2;KHWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZUDHFC7WPK;;;;;;;;FRFR1EJCLA1;FZZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRJVJ8NDBBF;;;;;;;;FRFR1EPNZZ1;QRCL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPIPMPI1GSK;;;;;;;;FRFR1EJVVE1;PMSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPLHDMFICPU;;;;;;;;FRFR1ERJDE2;LCXD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHHXSOERCYL;;;;;;;;FRFR1ERJDE1;EDXS3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGTJY9D5ZAF;;;;;;;;FRFR1EMVDJ1;EDXS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCAU4LIXEUR;;;;;;;;FRFR1EJVVE2;MQHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCVTZIA5YAA;;;;;;;;FRFR1EKLMQ1;VDRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPEYJPJJQYRV;;;;;;;;FRFR1EJQBV2;JJTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGS486H2R3J;;;;;;;;FRFR1ELBJD2;JJTE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKYWI522MXW;;;;;;;;FRFR1EMVDJ2;MQHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWOVHVSVADV;;;;;;;;FRFR1ELFDR2;ACGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTSAVE2OGXW;;;;;;;;FRFR1EKLMQ2;MQHY3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPOWMMX48HPN;;;;;;;;FRFR1ELBJD1;MQHY4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAJCWTT;;;;;;;;FRFR1EJQBV1;EDXS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPTHUPUSXPM;;;;;;;;FRFR1EPNZZ2;AYRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYQIQWQ8UZY;;;;;;;;FRFR1EQEDD1;AYRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMHBJLZGXHM;;;;;;;;FRFR1EBHLT1;PJXS3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWYDNKDUR6N;;;;;;;;FRFR1ESUYQ2;PJXS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPH0ZSKAREWB;;;;;;;;FRFR1ERHZF2;AYRU3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKSXIXLLCSP;;;;;;;;FRFR1EATTN1;LCXD3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPVHTXXUOXPG;;;;;;;;FRFR1EUHVM1;ELXS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWVOTTGZPHU;;;;;;;;FRFR1EXMVE2;VZYC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDQYFSLZJSI;;;;;;;;FRFR1EUGQN2;ZYPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRYHFTY2PT7;;;;;;;;FRFR1EUGQN1;QXJE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPSNOMOK8MEQ;;;;;;;;FRFR1EUHLH1;PDYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPV1G6TQKEFF;;;;;;;;FRFR1EBBQM2;MXQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMCO5MCQGLW;;;;;;;;FRFR1EAEYM2;BDDJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXBYM6MYKUM;;;;;;;;FRFR1EAEYM1;MAUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNPPCXP;;;;;;;;FRFR1EAFEQ1;UDQG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZ1ILFORWGY;;;;;;;;FRFR1EGBQE2;FQMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQ5DM2CCSDZ;;;;;;;;FRFR1EREBV1;JCRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLNG7XIKQU2;;;;;;;;FRFR1EFFRC2;JYFS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYGKQEX;;;;;;;;FRFR1EGBQE1;HWTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHRCEDY;;;;;;;;FRFR1EGEDN1;MRKX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGULDWSUOJM;;;;;;;;FRFR1ERDPC2;AZGN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBKO8NQUJ3G;;;;;;;;FRFR1EAACB1;DFBC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPQNFNVB;;;;;;;;FRFR1EUHLH2;DAGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMXJSYM;;;;;;;;FRFR1EUHVM2;BPBN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDTJZZQ;;;;;;;;FRFR1EBHUM1;QMAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPTTWQMV;;;;;;;;FRFR1EXPMN1;MDHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPMMDHJY;;;;;;;;FRFR1EXPRR1;CMSY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPW3UFAZDOEH;;;;;;;;FRFR1EBHUM2;WEFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJKHUKN;;;;;;;;FRFR1EXMVE1;MMTX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBMGNQC;;;;;;;;FRFR1EQNCA2;UTAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBGWGWV;;;;;;;;FRFR1EQNCA1;NTYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYYJMCQ;;;;;;;;FRFR1EATTN2;QWMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXGFJVH;;;;;;;;FRFR1EAACB2;KGFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKUMQMM;;;;;;;;FRFR1EBHLT2;BKSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPGUDSGH;;;;;;;;FRFR1EBMAA1;LAMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPDWYWZS;;;;;;;;FRFR1EBBQM1;TEYC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZ77EKJ57Z0;;;;;;;;FRFR1ERTWR1;VLHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHUTGNTAFVM;;;;;;;;FRFR1EXPRR2;CDLC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNWHQAZN2YT;;;;;;;;FRFR1EXPMN2;WWSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFCUKKE;;;;;;;;FRFR1ERHZF1;VVVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWGEEMN;;;;;;;;FRFR1ERMBT1;HJHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCWQDYD6WZ2;;;;;;;;FRFR1EPMZR2;MAVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPX5JIHAHDBL;;;;;;;;FRFR1ENYQY1;DXZS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPPBNDNA;;;;;;;;FRFR1ENNAZ2;GKPY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBMFWAN6U8Y;;;;;;;;FRFR1ENMMU2;GRLL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFUJCLK;;;;;;;;FRFR1ENNAZ1;GLTF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBDZXDF;;;;;;;;FRFR1ENHQN2;JVVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXANHLH;;;;;;;;FRFR1ENJZD1;MCKJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPX0NHNPY2ZZ;;;;;;;;FRFR1ENHQN1;MCEU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLZJLZN;;;;;;;;FRFR1ENHNV1;MCKJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPHBM95RMP7A;;;;;;;;FRFR1ENHNV2;MCEU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPFEEL9LIPEP;;;;;;;;FRFR1ENMMU1;MCND2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYAJEY50I1R;;;;;;;;FRFR1ENHHK1;MJBS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPODXLXEZKBM;;;;;;;;FRFR1ENLSM2;WQUT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPAG3CUDNG6G;;;;;;;;FRFR1ENJZD2;WPWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPXTOLYUEL6R;;;;;;;;FRFR1ENLSM1;WPWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPZSXXLQQOA8;;;;;;;;FRFR1EWHVZ2;WQUT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPH2TVD8QWSA;;;;;;;;FRFR1EUSRM1;WRKW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYRJ3UX21SF;;;;;;;;FRFR1ENEYV1;WRKW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPRSYEDPHZVE;;;;;;;;FRFR1ENHHK2;JEMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPNF37UCDDPC;;;;;;;;FRFR1ENHSN1;JVVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPLAAMCG1RZX;;;;;;;;FRFR1EPNUZ1;JEDV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUGTSBKUGBT;;;;;;;;FRFR1EPMZR1;MCND1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJ8S4ZSJCGS;;;;;;;;FRFR1ENXJM2;MSSQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPP5NRXSSCMV;;;;;;;;FRFR1EPNTM1;MJBS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPN4XGHTVSZH;;;;;;;;FRFR1EPNLM2;DMKH3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPWNCHD87MLT;;;;;;;;FRFR1EPNLM1;VMVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPYPWSTXXUWB;;;;;;;;FRFR1EPNTM2;VMWQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCWYOE0KVEJ;;;;;;;;FRFR1EPCFM1;FMFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPKDBQHXLRTS;;;;;;;;FRFR1ENHSN2;DEZJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPJJZ5BFGYRF;;;;;;;;FRFR1ENXJM1;FMFC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPUUKLIN1F3L;;;;;;;;FRFR1EPLWX2;DMKH4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPBAQ6RWB5LG;;;;;;;;FRFR1EPLWX1;DMKH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPCX2VTC22TK;;;;;;;;FRFR1ENGMB1;MSSQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREBNPIMKLPMKKZY;;;;;;;;FRFR1ENEYV2;DFEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BG;;;;;;;;FRFR1ENGMB2;DFAQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AC;;;;;;;;FRFR1EMUDD2;DMKH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BI;;;;;;;;FRFR1EWFNA1;DFEF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42223AA;;;;;;;;FRFR1ERMBT2;DFAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BD;;;;;;;;FRFR1ENYQY2;DEZJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AK;;;;;;;;FRFR1EVXYK2;JEMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BB;;;;;;;;FRFR1EKCYD1;JEDV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AH;;;;;;;;FRFR1EQNRR2;VMWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42095AA;;;;;;;;FRFR1EVXYK1;TAQU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AV;;;;;;;;FRFR1ELFDR1;BJQS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BK;;;;;;;;FRFR1EQVRT2;BJQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42095AC;;;;;;;;FRFR1EQYHA1;JFGS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AJ;;;;;;;;FRFR1ETBMJ1;JFGS3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42044AA;;;;;;;;FRFR1EQEGM2;JFGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42207AD;;;;;;;;FRFR1ELQHG2;GALJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42275AA;;;;;;;;FRFR1EQVRT1;GASP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AU;;;;;;;;FRFR1EQMMH2;GASP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AR;;;;;;;;FRFR1EQYHA2;GALJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42186AB;;;;;;;;FRFR1ERKAJ2;GCND2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42095AB;;;;;;;;FRFR1ERKAJ1;XHYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEPS42207AC;;;;;;;;FRFR1EKEYM1;GCND1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AO;;;;;;;;FRFR1ELQHG1;GAGG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42005AA;;;;;;;;FRFR1EQNRR1;GAGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42005AC;;;;;;;;FRFR1EWKWM1;ANSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42005AB;;;;;;;;FRFR1EPTSW1;BHCM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AY;;;;;;;;FRFR1EWHVZ1;BHCM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BQ;;;;;;;;FRFR1EPTSW2;VJNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42275AE;;;;;;;;FRFR1EMUDD1;TTBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42186AC;;;;;;;;FRFR1EUQWM1;TNJN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AZ;;;;;;;;FRFR1ENLTB1;TNJN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BS;;;;;;;;FRFR1EUSRM2;TCJJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BL;;;;;;;;FRFR1EYQTR1;TCJJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42005AD;;;;;;;;FRFR1EWKWM2;TAQU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AD;;;;;;;;FRFR1EUQWM2;JVWW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42275AC;;;;;;;;FRFR1ENLTB2;TKKL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AA;;;;;;;;FRFR1EVWWP1;MLCS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AI;;;;;;;;FRFR1EYQTR2;TTBV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BN;;;;;;;;FRFR1EVWWP2;JVWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BP;;;;;;;;FRFR1ELUNT1;TKKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42186AA;;;;;;;;FRFR1ELUVE2;PPCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AM;;;;;;;;FRFR1ELTQG2;PPCV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BM;;;;;;;;FRFR1ELHRQ1;MLCS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42207AE;;;;;;;;FRFR1EVVFD1;TEGG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42186AD;;;;;;;;FRFR1EYLBS1;VNVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AX;;;;;;;;FRFR1EYCTV1;GLTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BE;;;;;;;;FRFR1ESCDN1;ZFNV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BC;;;;;;;;FRFR1EJUTT1;RBUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BJ;;;;;;;;FRFR1EWFFQ1;HQAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AE;;;;;;;;FRFR1EPNPV1;HQAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42237AB;;;;;;;;FRFR1ECVEW1;JCRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AW;;;;;;;;FRFR1EMNHM1;RTQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AG;;;;;;;;FRFR1EAYPM1;SNPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42207AG;;;;;;;;FRFR1EMVRU1;LXCT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42330AA;;;;;;;;FRFR1EWFVJ1;TYJT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AT;;;;;;;;FRFR1EMLFJ1;TYJT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BA;;;;;;;;FRFR1EYKHH1;PFCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AF;;;;;;;;FRFR1EFWWR1;NPFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AP;;;;;;;;FRFR1EJVVV1;WFXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42207AF;;;;;;;;FRFR1EDKVZ1;QBDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEPS42237AA;;;;;;;;FRFR1EPFQM1;RDME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AQ;;;;;;;;FRFR1EZWWD1;RDME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42207AH;;;;;;;;FRFR1ERLXP2;YXVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BO;;;;;;;;FRFR1ERLXP1;DSTK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AB;;;;;;;;FRFR1EVDXJ2;FYHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42275AD;;;;;;;;FRFR1EVDXJ1;UJPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42237AC;;;;;;;;FRFR1EMUAQ1;EGJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42275AB;;;;;;;;FRFR1EKALF1;EGJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BR;;;;;;;;FRFR1ELXMT1;MSYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AL;;;;;;;;FRFR1ELXMT2;MSYN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42207AA;;;;;;;;FRFR1EUPLW1;XWVU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AN;;;;;;;;FRFR1EJVFT1;XWVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BF;;;;;;;;FRFR1ETPZQ1;FXFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218BH;;;;;;;;FRFR1EEBQV1;XVEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRESEP42218AS;;;;;;;;FRFR1EGBAF1;QTXR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P42140A;;;;;;;;FRFR1EJCPZ1;QTXR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P17028A;;;;;;;;FRFR1EMLKM1;HNXP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P74118A;;;;;;;;FRFR1EFRQQ1;HNXP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P62898A;;;;;;;;FRFR1EFWSN1;VPFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P94074A;;;;;;;;FRFR1EFUPN1;VPFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P73179A;;;;;;;;FRFR1EVMMU1;JUZZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P76150A;;;;;;;;FRFR1EQQGA2;JUZZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P77132A;;;;;;;;FRFR1EJAUU1;VTWQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P42059A;;;;;;;;FRFR1ETSKV1;ZFNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P83069A;;;;;;;;FRFR1ESQFA1;VPLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P84087A;;;;;;;;FRFR1EKYHG1;VPLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P35021A;;;;;;;;FRFR1EFYKP1;BXRS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P03107A;;;;;;;;FRFR1EQEQP1;BXRS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P94073A;;;;;;;;FRFR1EUHHV1;ZMBH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P91235A;;;;;;;;FRFR1EPMQP1;ZMBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P42094A;;;;;;;;FRFR1ERGAB1;VKWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P69027A;;;;;;;;FRFR1ENAAB1;VKWW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P43137A;;;;;;;;FRFR1EHTJF1;TEGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45104A;;;;;;;;FRFR1EQQYL1;VUTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45338A;;;;;;;;FRFR1EHCDJ1;VUTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45312A;;;;;;;;FRFR1EVBWV1;GNBN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45249A;;;;;;;;FRFR1EJAUU2;GNBN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45247A;;;;;;;;FRFR1EQQGA1;VMVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45185A;;;;;;;;FRFR1EMGBN1;VTWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45102A;;;;;;;;FRFR1ENHBW2;VUFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45092A;;;;;;;;FRFR1EVDMS1;VUFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45061A;;;;;;;;FRFR1EVPTJ1;FRHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45004B;;;;;;;;FRFR1EZSJW1;XSHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45004A;;;;;;;;FRFR1EZSJW2;WMHF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P59343A;;;;;;;;FRFR1ENHBW1;WMHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P445345A;;;;;;;;FRFR1ENBWY2;GKAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P06088A;;;;;;;;FRFR1ENGBY2;GKAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P42149A;;;;;;;;FRFR1EVAHY1;GKAL4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P50647A;;;;;;;;FRFR1ENGBY1;GKAL3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P29236A;;;;;;;;FRFR1ENBWY1;NRNX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P43268A;;;;;;;;FRFR1EJGNN1;FRFT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P42218AA;;;;;;;;FRFR1EXYEY1;XSHN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P17300A;;;;;;;;FRFR1EYPXY1;LJMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P17300B;;;;;;;;FRFR1ESXUA1;VNVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P17300D;;;;;;;;FRFR1EZJLM1;LJMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P17300C;;;;;;;;FRFR1EZJLM2;FRFT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45122A;;;;;;;;FRFR1EWZGZ1;FRHN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P85089A;;;;;;;;FRFR1EUZWE1;XGHC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P66210A;;;;;;;;FRFR1EUXEP2;BWYR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P42218AB;;;;;;;;FRFR1EWMXM2;BBSC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P63258B;;;;;;;;FRFR1EWMNA2;UYNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P63454A;;;;;;;;FRFR1EWMXM1;UZMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P73182A;;;;;;;;FRFR1EWMNA1;UWKK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45145A;;;;;;;;FRFR1EWSWY1;USYP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45028C;;;;;;;;FRFR1EWSWY2;UQZA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45028D;;;;;;;;FRFR1EWVMB1;UWAP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P45028B;;;;;;;;FRFR1EUXEP1;UTHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P42222A;;;;;;;;FRFR1EWMPC2;MULT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P38563A;;;;;;;;FRFR1EWMPC1;DDKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P42218AC;;;;;;;;FRFR1EUXRY2;MVKT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P42279A;;;;;;;;FRFR1EWTYJ1;MUQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRG10P63231A;;;;;;;;FRFR1EWVMB2;DCTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063K;;;;;;;;FRFR1EUXRY1;DAMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063I;;;;;;;;FRFR1EZGSA2;CZAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063J;;;;;;;;FRFR1EZGSA1;DBAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063H;;;;;;;;FRFR1EVMEF1;DAUF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063M;;;;;;;;FRFR1ENJXL2;VAAG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063G;;;;;;;;FRFR1EVSBQ1;UZCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063S;;;;;;;;FRFR1EVJQU1;VVPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063N;;;;;;;;FRFR1ENUHW1;UPMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063R;;;;;;;;FRFR1ENUHW2;RGMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063Q;;;;;;;;FRFR1EHQJW2;RADT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063P;;;;;;;;FRFR1EHQJW1;QZRC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063O;;;;;;;;FRFR1ENJXL1;RAUG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063C;;;;;;;;FRFR1EVMEF2;RAHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063A;;;;;;;;FRFR1EHEAE1;ZASF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063B;;;;;;;;FRFR1EHEAE2;UMCT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051W;;;;;;;;FRFR1ERTBE2;ULZV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051V;;;;;;;;FRFR1EGHMH1;UNYA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051U;;;;;;;;FRFR1EGHMH2;UNJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063F;;;;;;;;FRFR1ERTBE1;UHVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063E;;;;;;;;FRFR1EWTYJ2;UGEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063D;;;;;;;;FRFR1EUZWE2;UEAU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93005F;;;;;;;;FRFR1EJMHK1;UHMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93006C;;;;;;;;FRFR1EUZPD2;UGPD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93007B;;;;;;;;FRFR1EQHVQ2;TUUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93007A;;;;;;;;FRFR1EQVDB2;UAAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93006B;;;;;;;;FRFR1EQHVQ1;TYPJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92063T;;;;;;;;FRFR1EVTLR1;UARF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93006A;;;;;;;;FRFR1EVTLR2;CRAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93013A;;;;;;;;FRFR1EHUAA1;RSSH3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051T;;;;;;;;FRFR1EHYPS1;USWT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93015A;;;;;;;;FRFR1EMDKJ1;VLFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93014B;;;;;;;;FRFR1EMGHZ1;JGFL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93014A;;;;;;;;FRFR1EYFTK1;VLFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93013B;;;;;;;;FRFR1EYFTK2;USWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93005E;;;;;;;;FRFR1EJMHK2;KBFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93005A;;;;;;;;FRFR1EVUMV2;USSH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93001D;;;;;;;;FRFR1EVUMV1;USSH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93001C;;;;;;;;FRFR1EWZGZ2;EUVU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93001B;;;;;;;;FRFR1EQVDB1;FCYH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93001A;;;;;;;;FRFR1EHVVE1;ERJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93005D;;;;;;;;FRFR1ERTHH1;FCXS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93005C;;;;;;;;FRFR1ETZPA1;FCMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93005B;;;;;;;;FRFR1EUZPD1;XARS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92014D;;;;;;;;FRFR1EFKPP1;XARS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92019B;;;;;;;;FRFR1EFKPP2;JAFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92019E;;;;;;;;FRFR1EMPVU1;KDXR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92019D;;;;;;;;FRFR1ETTLQ1;UAQL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92019C;;;;;;;;FRFR1ETTLQ2;TXWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92040E;;;;;;;;FRFR1ETZPA2;TWAG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92019A;;;;;;;;FRFR1EQUNH1;TVMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92040D;;;;;;;;FRFR1EGUYC1;TXCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92040C;;;;;;;;FRFR1EGTJK1;TWNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92040B;;;;;;;;FRFR1EFMPR1;KDXR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92040A;;;;;;;;FRFR1EFMPR2;JAFH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92014C;;;;;;;;FRFR1EFTBM2;LMDP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92002D;;;;;;;;FRFR1EFTBM1;KBFL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92002C;;;;;;;;FRFR1EKBWR1;KCYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92002B;;;;;;;;FRFR1EDKNM1;KCYB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP91432A;;;;;;;;FRFR1ELUDA1;LMDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP91326A;;;;;;;;FRS82ECPNV1;CRAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93030A;;;;;;;;FRS82ECRSA1;SMTG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92014B;;;;;;;;FRS82ECRWY1;SMZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92014A;;;;;;;;FRS82EALTV1;RKDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92002E;;;;;;;;FRS82EDYYQ1;VJUS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92040F;;;;;;;;FRS82EAEBP1;WBBD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051B;;;;;;;;FRS82EJSVL1;WAZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051F;;;;;;;;FRS82ECERR1;WEPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051E;;;;;;;;FRS82ECCDX1;WDLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051D;;;;;;;;FRS82EJWBP1;UTHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051C;;;;;;;;FRS82ECJQF1;USYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051A;;;;;;;;FRS82EAETA1;UWKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92049F;;;;;;;;FRS82ECSNC1;UWAP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92049E;;;;;;;;FRS82ECJHL1;UQZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051H;;;;;;;;FRS82ECTCL1;UNJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051I;;;;;;;;FRS82ECWCP1;UMCT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051S;;;;;;;;FRS82EWWLG1;UPMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051R;;;;;;;;FRS82EXAMA1;UNYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051Q;;;;;;;;FRFR1EMSZH1;UYNE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051P;;;;;;;;FRS82ECSEG1;VGMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051O;;;;;;;;FRS82ECYNP1;WFEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051N;;;;;;;;FRS82ECWEV1;DEWC3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051M;;;;;;;;FRS82ECXSS1;WGDX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051L;;;;;;;;FRS82ECNYP1;WABG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051K;;;;;;;;FRS82EUDPK1;WABG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92051J;;;;;;;;FRS82EADUC1;VYMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92049D;;;;;;;;FRS82EAXBW1;ULZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92040J;;;;;;;;FRS82ECTCP1;VYMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92040I;;;;;;;;FRS82EWMXW1;VVPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92040H;;;;;;;;FRS82EXDUB1;WABS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92040G;;;;;;;;FRS82ECNLU1;VUMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92049A;;;;;;;;FRS82ECKTY1;TSWS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92049C;;;;;;;;FRS82EVMDR1;VMAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP92049B;;;;;;;;FRS82ECULD1;VLKP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93079A;;;;;;;;FRS82EUAAK1;VQCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94001A;;;;;;;;FRS82ECNBS1;VPRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93079B;;;;;;;;FRS82EDBUP1;WAMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93078A;;;;;;;;FRS82EFTQL1;TSYQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93078C;;;;;;;;FRS82ECHCN1;VEYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93078B;;;;;;;;FRS82ELAFF1;VHUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94015A;;;;;;;;FRS82EUGSK1;RMRH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94054A;;;;;;;;FRS82ECFLM1;VBAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94022C;;;;;;;;FRS82ECSCA1;TDBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94022B;;;;;;;;FRS82ECSHK1;TBKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94022A;;;;;;;;FRS82EWKCG1;TBAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94015B;;;;;;;;FRS82EWLVU1;TCGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93070C;;;;;;;;FRS82ELAVR1;TBQF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93071A;;;;;;;;FRS82ECECQ1;QXWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93071B;;;;;;;;FRS82EUPRP1;QXVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93070E;;;;;;;;FRS82ELAVR2;QZMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93070D;;;;;;;;FRS82EBKPG1;QYKQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93071C;;;;;;;;FRS82EBGSV1;QVLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93077B;;;;;;;;FRS82ECRJP1;QTHU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93077A;;;;;;;;FRS82EUMAV1;QTCK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93072B;;;;;;;;FRS82ELAFF2;QVGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93072A;;;;;;;;FRS82EXNVS1;QTRQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94079C;;;;;;;;FRS82EUHAX1;QZPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94080F;;;;;;;;FRS82ECNDP1;CVAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94080E;;;;;;;;FRS82EAUDQ1;CYPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94080D;;;;;;;;FRS82EKYQF1;TEDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94080C;;;;;;;;FRS82EKYQF2;SWUC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94080B;;;;;;;;FRS82ECQFF1;UZMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94080A;;;;;;;;FRS82ECGWL1;UZCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94079B;;;;;;;;FRS82EWDCK1;VAHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94079A;;;;;;;;FRS82EVQFW1;VAAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94080G;;;;;;;;FRS82EXGMS1;SVMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94080H;;;;;;;;FRS82EXMAN1;SVMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94080N;;;;;;;;FRS82EUYQM1;SVSS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94080M;;;;;;;;FRS82EVEJG1;CTQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94080L;;;;;;;;FRS82ECKLS1;SUJH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94080K;;;;;;;;FRS82EXGAY1;SQYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94080J;;;;;;;;FRS82ECEEG1;SNRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94080I;;;;;;;;FRS82ECHPL1;STJR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94075A;;;;;;;;FRS82ECLLC1;SSQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94068C;;;;;;;;FRS82EDEYN1;TABQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94068B;;;;;;;;FRS82EJEGD1;FCHG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94068A;;;;;;;;FRS82ECXFW1;EUWT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94060A;;;;;;;;FRS82EAWBM1;EUYY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94055A;;;;;;;;FRS82EKYAC1;FWKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94054B;;;;;;;;FRS82EXQVP1;HPMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94070A;;;;;;;;FRS82EXPKD1;JGVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94069B;;;;;;;;FRS82EMGUM1;JBJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP94069A;;;;;;;;FRS82EKKCF1;HXFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93048F;;;;;;;;FRS82ECNHH1;HXZW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93048H;;;;;;;;FRS82ECQBT1;HSCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93048G;;;;;;;;FRS82EAYKB1;HVCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93048E;;;;;;;;FRS82ECCTN1;XLVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93049A;;;;;;;;FRS82ENSRL1;MMGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93048D;;;;;;;;FRS82EDMGA1;NYVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93048C;;;;;;;;FRS82EAYRP1;NYVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93048I;;;;;;;;FRS82EDMDF1;VFWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93048L;;;;;;;;FRS82EDTXA1;VFWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93048K;;;;;;;;FRS82EBCVJ1;FGBG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93048J;;;;;;;;FRS82EJJUK1;FGBG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93048B;;;;;;;;FRFR1ENELE1;HZMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93031D;;;;;;;;FRFR1EMCUP1;PLVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93031C;;;;;;;;FRFR1EMCUP2;PPMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93031B;;;;;;;;FRFR1EMSZH2;SVES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93031A;;;;;;;;FRFR1ENYMU1;KGWJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93033A;;;;;;;;FRFR1ENZGA1;KGWJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93048A;;;;;;;;FRFR1ENYMU2;LPNY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93046A;;;;;;;;FRFR1ENELE2;SVES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93039A;;;;;;;;FRS82EGDEC1;SVPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93049B;;;;;;;;FRFR1ENZGA2;SVXZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93066B;;;;;;;;FRS82EDMEG1;SVPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93066D;;;;;;;;FRS82EVPAF1;PLVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93066C;;;;;;;;FRS82EDDVJ1;VHSS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93063B;;;;;;;;FRS82ECEFR1;SVXZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93066A;;;;;;;;FRS82ECBPR1;VHSS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93063C;;;;;;;;FRS82ECRPC1;SYPK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93066E;;;;;;;;FRS82EVRDH1;SYPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93070B;;;;;;;;FRS82EUHDD1;PPMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93070A;;;;;;;;FRS82EAKSJ1;FWKZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93066G;;;;;;;;FRS82ECWEU1;HNHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93066F;;;;;;;;FRS82ECGGN1;KJZN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93049D;;;;;;;;FRS82ECMRR1;GYDR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93050A;;;;;;;;FRS82EVESB1;BBPM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93049C;;;;;;;;FRS82EVFMY1;JCRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93050B;;;;;;;;FRS82ECTPN1;JCRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93059B;;;;;;;;FRS82EVCLL1;NLAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93063A;;;;;;;;FRS82ECFPG1;NMLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93059C;;;;;;;;FRS82EUWWF1;BAUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMGPP93059A;;;;;;;;FRS82EVCGG1;BAUD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP84000;;;;;;;;FRS82EVEEJ1;EQRD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP92280;;;;;;;;FRS82EVADK1;EQRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP93700;;;;;;;;FRS82EACYT1;KQRS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP92380;;;;;;;;FRS82ECNSX1;KRRP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP78140;;;;;;;;FRS82EXCDG1;CJQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP78000;;;;;;;;FRS82EUABK1;CJQR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP94340;;;;;;;;FRS82EWSUB1;GXMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP92140;;;;;;;;FRS82ECDUT1;GXMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55C06270V;;;;;;;;FRS82EEHDF1;BBPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP83580;;;;;;;;FRS82EWXJM1;UARV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CPBP750;;;;;;;;FRS82ECMJJ1;UARV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CPBP577;;;;;;;;FRS82EBDVA1;LNGY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP84310;;;;;;;;FRS82EBCHB1;XCAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CPBP698;;;;;;;;FRS82EDVTH1;XCAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CPBP281;;;;;;;;FRS82ELDJW1;ZFDJ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CPBP494;;;;;;;;FRS82EANDP1;ZFDJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CPBP514;;;;;;;;FRS82ECSSR1;ZFDJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP06380;;;;;;;;FRS82EAJNQ1;LNGY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP83120;;;;;;;;FRS82EBMSY1;HJAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP83420;;;;;;;;FRS82EBELA1;UARV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP30150;;;;;;;;FRS82EDAAM1;HFHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP420CR;;;;;;;;FRS82EAWBL1;GRSR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP84400;;;;;;;;FRS82ECBXT1;HDPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP83310;;;;;;;;FRFR1EREEB1;HATC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CPBP738;;;;;;;;FRFR1EGRXB2;HFRJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP83240;;;;;;;;FRFR1EGRXB1;GYPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP83990;;;;;;;;FRFR1EAEGF1;LPNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP83480;;;;;;;;FRFR1EZBYL1;KJZN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP84160;;;;;;;;FRFR1EBKYH1;EJZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP83640;;;;;;;;FRFR1EGUBW1;FAGP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP83350;;;;;;;;FRFR1ECPCV1;EUWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP84450;;;;;;;;FRFR1ELEWS1;EGSC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP30133;;;;;;;;FRFR1EMQLC1;EXDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP92130;;;;;;;;FRFR1ETYCU1;EUYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP92350;;;;;;;;FRFR1ETXMD1;FBYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP13100;;;;;;;;FRFR1ELZEN1;FBSR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP33110;;;;;;;;FRFR1EKKGN1;FBRZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP84270;;;;;;;;FRFR1EUWVF1;FBYW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CEFR83820;;;;;;;;FRFR1EHVTV1;FCYH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP17880;;;;;;;;FRFR1ECHAS1;FEHL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP84300;;;;;;;;FRFR1EQPFN1;FAHN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP17800;;;;;;;;FRFR1EMLXD1;FAJG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP48200;;;;;;;;FRFR1EVFRR1;FBFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP13122;;;;;;;;FRFR1ESGAC1;EJQW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP84140;;;;;;;;FRFR1EYYQL1;EHNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP84740;;;;;;;;FRFR1EWENL1;EXDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CPBP261;;;;;;;;FRFR1ELYQR1;EYCA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CPRNO35;;;;;;;;FRFR1EJWUJ1;EYSF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP92320;;;;;;;;FRFR1ERAPE1;ENVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CPBP416;;;;;;;;FRFR1EJMDP1;EPJE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CEFR671;;;;;;;;FRFR1EWLPA1;EKEU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CE78140;;;;;;;;FRFR1EVDZF1;EKFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CEFR781;;;;;;;;FRFR1EPMYM1;EUVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CPBP731;;;;;;;;FRFR1ENGCZ1;EPWR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CPBP73800;;;;;;;;FRFR1EGVGH1;EKYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CPBP73190;;;;;;;;FRFR1EWBQS1;EYCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP33240;;;;;;;;FRFR1EVCAS1;ETKZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP92260;;;;;;;;FRFR1EVRFP1;ETED2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR55CP84320;;;;;;;;FRFR1EBFUA1;ETES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85109A;;;;;;;;FRFR1EPKRE1;EYSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85106A;;;;;;;;FRFR1EDWHY1;EHLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85096A;;;;;;;;FRFR1EAWTS1;EZZK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85092D;;;;;;;;FRFR1ECPEM1;EYWF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85109B;;;;;;;;FRFR1EVFYE1;ETBB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85092C;;;;;;;;FRFR1EEWAM1;FAFZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85092B;;;;;;;;FRFR1EQQEM1;FAGP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85092A;;;;;;;;FRFR1EEMLX2;ESXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85089A;;;;;;;;FRFR1EEMLX1;EJQW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85084B;;;;;;;;FRFR1EKBYG2;EKEU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85084A;;;;;;;;FRFR1EKBYG1;FBFH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85081A;;;;;;;;FRFR1EQCSM1;ETED1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85070A;;;;;;;;FRFR1EQCSM2;EPJE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85128A;;;;;;;;FRFR1ERSWF1;ESXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85109C;;;;;;;;FRFR1ERSWF2;ETBB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85135A;;;;;;;;FRFR1EFZJZ2;ETKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85152A;;;;;;;;FRFR1EFZJZ1;EGSC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85060B;;;;;;;;FRFR1EGWQX1;ESSK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85151B;;;;;;;;FRFR1ETYGP1;ESSK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85151A;;;;;;;;FRFR1EGRLL1;ETES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85150A;;;;;;;;FRFR1EGKPY2;FAHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85146A;;;;;;;;FRFR1EMRHV3;FAJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85128B;;;;;;;;FRFR1EQQEM2;FAFZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85127A;;;;;;;;FRFR1ECNQG2;EHLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85114A;;;;;;;;FRFR1EAALM1;EHNZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85113B;;;;;;;;FRFR1EBMFN1;FBSR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85113A;;;;;;;;FRFR1EAARP1;FCXS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85109D;;;;;;;;FRFR1ELBCY1;EKYN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85029A;;;;;;;;FRFR1EZXXC1;ENVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85060A;;;;;;;;FRFR1EKXQA1;EKFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85027A;;;;;;;;FRFR1EDLFW1;EYWF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85020A;;;;;;;;FRFR1EZYAL1;EJZF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85018A;;;;;;;;FRFR1ECNQG1;FCMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85014A;;;;;;;;FRFR1EALGQ1;FEHL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85012B;;;;;;;;FRFR1EHCJX1;FBRZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85012A;;;;;;;;FRFR1ECYFC1;EPWR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85011A;;;;;;;;FRFR1ECZSF1;ERJV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85008A;;;;;;;;FRFR1EMRHV2;EZZK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85004A;;;;;;;;FRFR1EMRHV1;FBYW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85003B;;;;;;;;FRFR1EMKJV1;FCHG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85003A;;;;;;;;FRFR1EGVAK1;FBYQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85155A;;;;;;;;FRFR1EGJEZ1;VUMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85034A;;;;;;;;FRFR1EGKYP1;WABS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85047C;;;;;;;;FRFR1ELCXD2;XBXS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85059B;;;;;;;;FRFR1EATCV1;GWXU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85059A;;;;;;;;FRFR1EJGLF1;UNMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85051B;;;;;;;;FRFR1EFGCB1;UXPG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85051A;;;;;;;;FRFR1EDHRH1;UHXM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85047D;;;;;;;;FRFR1EAMWY1;UNMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85047B;;;;;;;;FRFR1ESAPD1;EJGJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85047A;;;;;;;;FRFR1EVTJR1;BVUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85046A;;;;;;;;FRFR1EMPVJ1;RBAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85042A;;;;;;;;FRFR1EEBAZ1;RXRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85035A;;;;;;;;FRFR1EKHWS1;UHXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85217A;;;;;;;;FRFR1EFZZV1;QKEZ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85216A;;;;;;;;FRFR1EQRCL1;KPAV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85215B;;;;;;;;FRFR1EPMSV1;QKEZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85215A;;;;;;;;FRFR1ELCXD1;QKEZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85212A;;;;;;;;FRFR1EEDXS3;JGFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85197A;;;;;;;;FRFR1EEDXS2;QPTE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85194F;;;;;;;;FRFR1EMQHY2;SNJJ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85194E;;;;;;;;FRFR1EVDRN1;NPMA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85194D;;;;;;;;FRFR1EJJTE1;WBBD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85194C;;;;;;;;FRFR1EJJTE2;RXRA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85194B;;;;;;;;FRFR1EMQHY1;NPMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85222A;;;;;;;;FRFR1EACGF1;LYSU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85194A;;;;;;;;FRFR1EMQHY3;QEJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85223A;;;;;;;;FRFR1EMQHY4;SNJJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85156A;;;;;;;;FRFR1EEDXS1;RSSH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85307A;;;;;;;;FRFR1ELCXD3;MJUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85300A;;;;;;;;FRFR1EELXS1;MJUJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85294A;;;;;;;;FRFR1EVZYC1;KPAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85288A;;;;;;;;FRFR1EZYPT1;KPAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85285A;;;;;;;;FRFR1EQXJE1;QEJM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85243A;;;;;;;;FRFR1EPDYF1;EJGJ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85234B;;;;;;;;FRFR1EMXQR1;TVJJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85234A;;;;;;;;FRFR1EBDDJ1;BVUM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85226C;;;;;;;;FRFR1EMAUH1;LYSU3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85226B;;;;;;;;FRFR1EUDQG1;GWXU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85226A;;;;;;;;FRFR1EFQMA1;QPSX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85224A;;;;;;;;FRFR1EJCRB1;QTCK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85182B;;;;;;;;FRFR1EJYFS1;QRHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85182A;;;;;;;;FRFR1EHWTE1;QMLC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85178B;;;;;;;;FRFR1EMRKX1;NKKH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85178A;;;;;;;;FRFR1EAZGN1;NFNC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85172A;;;;;;;;FRFR1EDFBC1;NEFY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85166D;;;;;;;;FRFR1EDAGU1;NGYW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85166C;;;;;;;;FRFR1EBPBN1;NGTE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85166B;;;;;;;;FRFR1EQMAG1;NMJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85166A;;;;;;;;FRFR1EMDHZ1;QGSN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85164A;;;;;;;;FRFR1ECMSY1;QGGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85163A;;;;;;;;FRFR1EWEFQ1;QHKJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85160A;;;;;;;;FRFR1EMMTX1;QHGS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85191M;;;;;;;;FRFR1EUTAM1;NXKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85191J;;;;;;;;FRFR1ENTYX1;NRXF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85191F;;;;;;;;FRFR1EQWMM1;NMNT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85191L;;;;;;;;FRFR1EKGFM1;NUMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85190A;;;;;;;;FRFR1EBKSD1;NTTP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85191K;;;;;;;;FRFR1ELAMH1;NLTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85191I;;;;;;;;FRFR1ETEYC1;NMEJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85191H;;;;;;;;FRFR1EVLHB1;NKSV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85191B;;;;;;;;FRFR1ECDLC1;QYKQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85191E;;;;;;;;FRFR1EWWSZ1;QJQB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85191D;;;;;;;;FRFR1EVVVS1;QHUE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85191C;;;;;;;;FRFR1EHJHH1;QMFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS85P85191A;;;;;;;;FRFR1EMAVM1;QLMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS14PBCNP9TW96E;;;;;;;;FRFR1EDXZS1;QTHU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS14PYEVQXYXMMI;;;;;;;;FRFR1EGKPY1;QZMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS14PEYSLWKWYZR;;;;;;;;FRFR1EGRLL2;QZRC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PFONTENILLES;;;;;;;;FRFR1EGLTF2;NKYQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PUXRGDF;;;;;;;;FRFR1EJVVJ1;QZPH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PVVKNSB;;;;;;;;FRFR1EMCKJ2;QXWK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PCHTQTA;;;;;;;;FRFR1EMCEU2;QVGG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PWQFNLH;;;;;;;;FRFR1EMCKJ1;QTRQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PKYHUKN;;;;;;;;FRFR1EMCEU1;QXVC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PUBBRPV;;;;;;;;FRFR1EMCND2;QVLL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PGSXHEQ;;;;;;;;FRFR1EMJBS2;THNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PBSZNXE;;;;;;;;FRFR1EWQUT2;TVJJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PCFCFDE;;;;;;;;FRFR1EWPWU2;NPMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PNRYGLD;;;;;;;;FRFR1EWPWU1;GPVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PUKUUQS;;;;;;;;FRFR1EWQUT1;CXKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PLABEGEAUTAN;;;;;;;;FRFR1EWRKW1;CKEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PWCKYQX;;;;;;;;FRFR1EWRKW2;LAPB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PHKTRMU;;;;;;;;FRFR1EJEMN2;LAPB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PHKTWHF;;;;;;;;FRFR1EJVVJ2;UCRC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PEJLYVF;;;;;;;;FRFR1EJEDV2;UXVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PSFQDKY;;;;;;;;FRFR1EMCND1;WHGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PBDSPXY;;;;;;;;FRFR1EMSSQ1;URMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PVDUUDE;;;;;;;;FRFR1EMJBS1;XGVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PHWUTQJ;;;;;;;;FRFR1EDMKH3;BWAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PPSBNGZ;;;;;;;;FRFR1EVMVR1;UXEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PQRKBCC;;;;;;;;FRFR1EVMWQ2;XFRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PNPGJDV;;;;;;;;FRFR1EFMFC1;BQNS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PAMFDJR;;;;;;;;FRFR1EDEZJ2;CCKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PJGVGCS;;;;;;;;FRFR1EFMFC2;CFBY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PTXSCTU;;;;;;;;FRFR1EDMKH4;BASD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PGLTPXT;;;;;;;;FRFR1EDMKH2;BJRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PFVTRXZ;;;;;;;;FRFR1EMSSQ2;CLYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PPBFCNZ;;;;;;;;FRFR1EDFEF1;AWVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PEFDJJV;;;;;;;;FRFR1EDFAQ2;VUTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PATMKAN;;;;;;;;FRFR1EDMKH1;AKDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PGHPTEX;;;;;;;;FRFR1EDFEF2;XJSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PSNAMKZ;;;;;;;;FRFR1EDFAQ1;CVQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PAURIBCIME;;;;;;;;FRFR1EDEZJ1;ALXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PASPECT;;;;;;;;FRFR1EJEMN1;CFHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PAQCTJP;;;;;;;;FRFR1EJEDV1;WNGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PXNZPHC;;;;;;;;FRFR1EVMWQ1;BUBP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PTSMEXT;;;;;;;;FRFR1ETAQU1;VYLK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PJSYUTY;;;;;;;;FRFR1EBJQS2;XBBF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PUWQHJA;;;;;;;;FRFR1EBJQS1;WRKQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PVZFZTP;;;;;;;;FRFR1EJFGS2;CBUP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PQJMSEM;;;;;;;;FRFR1EJFGS3;XRQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PTSZVVB;;;;;;;;FRFR1EJFGS1;XSVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PCADOURS;;;;;;;;FRFR1EGALJ2;AUEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PZJFBFZ;;;;;;;;FRFR1EGASP1;DUTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PXUVKYK;;;;;;;;FRFR1EGASP2;THNQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PBOUSSENSECOL;;;;;;;;FRFR1EGALJ1;CDWF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PGUXVRY;;;;;;;;FRFR1EGCND2;UHXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PAJUWUG;;;;;;;;FRFR1EXHYQ1;BVUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PPWJRPS;;;;;;;;FRFR1EGCND1;EJGJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PZJVBJM;;;;;;;;FRFR1EGAGG2;JHSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PEBSQJH;;;;;;;;FRFR1EGAGG1;JHSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PDFNPAD;;;;;;;;FRFR1EANSD1;HKZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PVTFJDY;;;;;;;;FRFR1EBHCM2;WGDX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PJJBMJP;;;;;;;;FRFR1EBHCM1;RXRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PUNUUZP;;;;;;;;FRFR1EVJNV1;RSSH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PXPUVZU;;;;;;;;FRFR1ETTBV1;SNJJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PHBDQVG;;;;;;;;FRFR1ETNJN2;GYBV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PSPHLUS;;;;;;;;FRFR1ETNJN1;LYSU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PHCREGP;;;;;;;;FRFR1ETCJJ2;RBAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PZFDBZE;;;;;;;;FRFR1ETCJJ1;QEJM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PYURPYW;;;;;;;;FRFR1ETAQU2;RBAD3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PBJUMFP;;;;;;;;FRFR1EJVWW2;GCLC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PMYVFWU;;;;;;;;FRFR1ETKKL2;RHYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PSJTZZY;;;;;;;;FRFR1EMLCS1;GYBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PUDMJKD;;;;;;;;FRFR1ETTBV2;BGHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PKWFNTQ;;;;;;;;FRFR1EJVWW1;WCBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PVIEILLETOUL;;;;;;;;FRFR1ETKKL1;VGWP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PWNMVMD;;;;;;;;FRFR1EPPCV1;UULC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PBSNARD;;;;;;;;FRFR1EPPCV2;CUQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PSDKRWE;;;;;;;;FRFR1EMLCS2;VKLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PXEBJZZ;;;;;;;;FRFR1ETEGG2;WNLC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PDBWUFY;;;;;;;;FRFR1EVNVA1;AJFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PUCRLEP;;;;;;;;FRFR1EGLTF1;GCLC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PSEYSSESEGL;;;;;;;;FRFR1EZFNV2;DJMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PEVEHSU;;;;;;;;FRFR1ERBUY1;VFRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PNXQUHM;;;;;;;;FRFR1EHQAZ2;VXXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PMERVILLEALOU;;;;;;;;FRFR1EHQAZ1;HKZP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PMASSABRAC;;;;;;;;FRFR1EJCRN1;UXPG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PHQDVPR;;;;;;;;FRFR1ERTQR1;RHYF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PJMECMY;;;;;;;;FRFR1ESNPC1;MVPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PVXNBPK;;;;;;;;FRFR1ELXCT1;NXKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PWTLBXS;;;;;;;;FRFR1ETYJT2;NUMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PTWTEDH;;;;;;;;FRFR1ETYJT1;TPNP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PLEFAUGAFETE;;;;;;;;FRFR1EPFCX1;MZAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PLAVERNOSEMAIR;;;;;;;;FRFR1ENPFY1;TLRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PVUSGRP;;;;;;;;FRFR1EWFXQ1;TKQZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PSCPPWG;;;;;;;;FRFR1EQBDT1;TNAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PFHPGXB;;;;;;;;FRFR1ERDME2;TMRC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PWUKNSS;;;;;;;;FRFR1ERDME1;TKJB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PGTTUTH;;;;;;;;FRFR1EYXVV1;TPTQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PBMJCXM;;;;;;;;FRFR1EDSTK1;TPNP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PYKUDXS;;;;;;;;FRFR1EFYHH1;THTK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PSSDAJP;;;;;;;;FRFR1EUJPW1;TGRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PTDZVPU;;;;;;;;FRFR1EEGJW2;TPEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PEFRPWM;;;;;;;;FRFR1EEGJW1;ZASF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PCLHEGY;;;;;;;;FRFR1EMSYN1;CYPN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PMONTESQUESPLA;;;;;;;;FRFR1EMSYN2;DAMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS31PMBUWWA;;;;;;;;FRFR1EXWVU2;CZAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRA16PWIIZ13011;;;;;;;;FRFR1EXWVU1;MZGW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRA16PWIIZ13012;;;;;;;;FRFR1EFXFN1;MXMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRA16PWIIZ13021;;;;;;;;FRFR1EXVEJ1;MYQQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRA16PWIIZ13022;;;;;;;;FRFR1EQTXR2;DAUF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRA16PWIIZ13031;;;;;;;;FRFR1EQTXR1;MVKT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRA16PWIIZ13032;;;;;;;;FRFR1EHNXP1;MUQE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRA16PWIIZ13041;;;;;;;;FRFR1EHNXP2;MVTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRA16PWIIZ13042;;;;;;;;FRFR1EVPFM2;MVPM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE402600;;;;;;;;FRFR1EVPFM1;MULT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE408300;;;;;;;;FRFR1EJUZZ1;DBAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE415600;;;;;;;;FRFR1EJUZZ2;DDKD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE431500;;;;;;;;FRFR1EVTWQ2;MZMR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE413800;;;;;;;;FRFR1EZFNV1;DCTE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE432400;;;;;;;;FRFR1EVPLT2;MWYS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE414900;;;;;;;;FRFR1EVPLT1;MZZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE412400;;;;;;;;FRFR1EBXRS2;MZYA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE403700;;;;;;;;FRFR1EBXRS1;NCJG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE410200;;;;;;;;FRFR1EZMBH2;NBUV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE401800;;;;;;;;FRFR1EZMBH1;CVAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE409000;;;;;;;;FRFR1EVKWW1;TPLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE404200;;;;;;;;FRFR1EVKWW2;SMTG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE436000;;;;;;;;FRFR1ETEGG1;CTQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE432500;;;;;;;;FRFR1EVUTN2;UARF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE432600;;;;;;;;FRFR1EVUTN1;UAQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE412600;;;;;;;;FRFR1EGNBN1;VLKP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE402900;;;;;;;;FRFR1EGNBN2;VJUS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE405200;;;;;;;;FRFR1EVMVR2;VPRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE402700;;;;;;;;FRFR1EVTWQ1;VMAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE402800;;;;;;;;FRFR1EVUFF1;VHUR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE409100;;;;;;;;FRFR1EVUFF2;VBAJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE409200;;;;;;;;FRFR1EFRHN1;VAHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE412500;;;;;;;;FRFR1EXSHN1;VGMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE410300;;;;;;;;FRFR1EWMHF2;VEYB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE421600;;;;;;;;FRFR1EWMHF1;VQCB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE453800;;;;;;;;FRFR1EGKAL2;WAZL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE402200;;;;;;;;FRFR1EGKAL1;WAMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE101300;;;;;;;;FRFR1EGKAL4;WDLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE412300;;;;;;;;FRFR1EGKAL3;TYPJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE408100;;;;;;;;FRFR1ENRNX1;UAAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE414700;;;;;;;;FRFR1EFRFT1;UEAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE437800;;;;;;;;FRFR1EXSHN2;WFEW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE432700;;;;;;;;FRFR1ELJMK2;TPTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE409900;;;;;;;;FRFR1EVNVA2;TWAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE407900;;;;;;;;FRFR1ELJMK1;TVMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE440000;;;;;;;;FRFR1EFRFT2;TXCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE432300;;;;;;;;FRFR1EFRHN2;TWNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE407800;;;;;;;;FRS82EXGHC1;TUUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE408000;;;;;;;;FRS82EBWYR1;WEPC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE402400;;;;;;;;FRS82EBBSC1;UHMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE402000;;;;;;;;FRS10EUYNE1;TSYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE402300;;;;;;;;FRS10EUZMY2;TSWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE431900;;;;;;;;FRS10EUWKK2;TXWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE412700;;;;;;;;FRS10EUSYP2;UGPD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE438700;;;;;;;;FRS10EUQZA2;UGEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE416100;;;;;;;;FRS10EUWAP2;UHVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE403200;;;;;;;;FRS10EUTHE2;TPLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE404500;;;;;;;;FRS10EMULT1;SMZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE431200;;;;;;;;FRS10EDDKD1;QGSN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE410100;;;;;;;;FRS10EMVKT1;NFNC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE431800;;;;;;;;FRS10EMUQE1;MZZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE438500;;;;;;;;FRS10EDCTE1;MZYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE126500;;;;;;;;FRS10EDAMV1;MZAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE126400;;;;;;;;FRS10ECZAY1;MWYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE448900;;;;;;;;FRS10EDBAC1;MVTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE414000;;;;;;;;FRS10EDAUF1;MYQQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE439700;;;;;;;;FRS10EVAAG2;MXMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE414800;;;;;;;;FRS10EUZCX2;NBUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE402100;;;;;;;;FRS10EVVPA2;NKSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE417100;;;;;;;;FRS10EUPMS2;NKKH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE408400;;;;;;;;FRS10ERGMF1;NLTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE437700;;;;;;;;FRS10ERADT1;NKYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE401700;;;;;;;;FRS10EQZRC1;NGYW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE403300;;;;;;;;FRS10ERAUG1;NEFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE403400;;;;;;;;FRS10ERAHH1;NCJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE431400;;;;;;;;FRS10EZASF1;MZGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE440100;;;;;;;;FRS10EUMCT2;MZMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE449000;;;;;;;;FRS10EULZV2;QJQB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE448300;;;;;;;;FRS10EUNYA2;QHGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE423400;;;;;;;;FRS10EUNJF2;QGGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE403900;;;;;;;;FRS10EUHVJ2;NTTP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE402500;;;;;;;;FRS10EUGEG2;NMJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE405300;;;;;;;;FRS10EUEAU2;NMEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE101200;;;;;;;;FRS10EUHMC2;NRXF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE410000;;;;;;;;FRS10EUGPD2;NMNT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE412900;;;;;;;;FRS10ETUUM2;QPSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE410400;;;;;;;;FRS10EUAAM2;QLMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE409800;;;;;;;;FRS10ETYPJ2;QMLC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE409700;;;;;;;;FRS10EUARF2;QRHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE413700;;;;;;;;FRS10ECRAD2;QPTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE417600;;;;;;;;FRS10ERSSH3;QMFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE438600;;;;;;;;FRS10EUSWT2;QHUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE416900;;;;;;;;FRS10EVLFQ1;QHKJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE409600;;;;;;;;FRS10EJGFL2;NGTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE413100;;;;;;;;FRS10EVLFQ2;TBKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE413200;;;;;;;;FRS10EUSWT1;RKDQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE404100;;;;;;;;FRS10EKBFL1;TBAR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE438900;;;;;;;;FRS10EUSSH2;DEWC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE401900;;;;;;;;FRS10EUSSH1;RAUG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE413000;;;;;;;;FRS52EEUVU2;RAHH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE439600;;;;;;;;FRS52EFCYH1;DEWC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE431700;;;;;;;;FRS52EERJV1;AUMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE408600;;;;;;;;FRS52EFCXS1;AUMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE438800;;;;;;;;FRS52EFCMF1;BNYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE440700;;;;;;;;FRS10EXARS1;BNYP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE416800;;;;;;;;FRS10EXARS2;RGMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE404400;;;;;;;;FRS10EJAFH1;SSQT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE404000;;;;;;;;FRS10EKDXR2;SQYY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE421500;;;;;;;;FRS10EUAQL2;SUJH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE403500;;;;;;;;FRS10ETXWH2;STJR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE403600;;;;;;;;FRS10ETWAG2;SNRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE435900;;;;;;;;FRS10ETVMQ2;RMRH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE408500;;;;;;;;FRS10ETXCX2;RADT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE440400;;;;;;;;FRS10ETWNA2;THTK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE440200;;;;;;;;FRS10EKDXR1;TKJB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE409300;;;;;;;;FRS10EJAFH2;SVSS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE440300;;;;;;;;FRS10ELMDP2;TCGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE433500;;;;;;;;FRS10EKBFL2;TBQF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE124800;;;;;;;;FRS10EKCYB1;TABQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE437900;;;;;;;;FRS10EKCYB2;SVMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE459400;;;;;;;;FRS10ELMDP1;SVMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE408900;;;;;;;;FRS10ECRAD1;SWUC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE446600;;;;;;;;FRS10ESMTG1;TDBW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE403800;;;;;;;;FRS10ESMZM1;TEDQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE101400;;;;;;;;FRS10ERKDQ1;TMRC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE409400;;;;;;;;FRS10EVJUS1;TLRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE404300;;;;;;;;FRS10EWBBD1;TPEL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE439100;;;;;;;;FRS10EWAZL1;TNAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE433400;;;;;;;;FRS10EWEPC1;TKQZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIONE408700;;;;;;;;FRS10EWDLT1;TGRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSLFESAPMOUGINS163;;;;;;;;FRS10EUTHE1;VDRN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PPTARCHEABRIAND;;;;;;;;FRS10EUSYP1;PDAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PSTMARCELDEGAULLE;;;;;;;;FRS10EUWKK1;PDJB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PPHILBERTRISLEINTER;;;;;;;;FRS10EUWAP1;QTXP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVERNEUILGARE;;;;;;;;FRS10EUQZA1;QRSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVERNONPHAUGUSTE;;;;;;;;FRS10EUNJF1;QQTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PGIVERNYTOURISTIQUE2;;;;;;;;FRS10EUMCT1;QQTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PGIVERNYTOURISTIQUE1;;;;;;;;FRS10EUPMS1;QSLU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVALREUILSAULES;;;;;;;;FRS10EUNYA1;QSLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PPITRESFRENIFRENEAUX;;;;;;;;FRS10EUYNE2;QRVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PLIEUREYECOLE;;;;;;;;FRS10EVGMA1;QRGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PFLEURYANDREPUBLIQUE;;;;;;;;FRS10EWFEW1;RYDX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PRUGLESLIBERTE;;;;;;;;FRS10EDEWC3;QRGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PSTGEORGESVIEVREMAIRIE;;;;;;;;FRS10EWGDX1;QRGS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBRETEUILLAFITTE;;;;;;;;FRS10EWABG1;RYEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVERNONBARETTE;;;;;;;;FRS10EWABG2;RYHB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PDOUAINSMAREAJOUY;;;;;;;;FRS10EVYMP2;RYDX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PPTAUDEMERGARE;;;;;;;;FRS10EULZV1;RYEJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PCARSIXMALBROUCK;;;;;;;;FRS10EVYMP1;RXBN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PSTOUENTILLEULMAIRIE;;;;;;;;FRS10EVVPA1;QRSV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PSERQUIGNYCENTRE;;;;;;;;FRS10EWABS1;QTXP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVAUDREUILPAPAVOINE;;;;;;;;FRS10EVUMQ1;QSBR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PGISORSINTERMARCHE;;;;;;;;FRS10ETSWS2;QQME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBERNAYTRIBUNAL;;;;;;;;FRS10EVMAS1;REQN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PSTANDREEUREECOLE;;;;;;;;FRS10EVLKP1;SBJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PSTAUBINGAILLONCOVOI1;;;;;;;;FRS10EVQCB1;REJJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PGAILLONCOVOITURAGE2;;;;;;;;FRS10EVPRA1;REVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PIVRYBATAILLEBDGARE;;;;;;;;FRS10EWAMM1;REXC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PEVREUXGAMBETTA;;;;;;;;FRS10ETSYQ2;REQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PEVREUXSTLOUIS;;;;;;;;FRS10EVEYB1;REVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PECOSSALLESPORTS;;;;;;;;FRS10EVHUR1;RYHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVERNONREPUBLIQUE;;;;;;;;FRS10ERMRH1;WWKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PDOUAINSCOVOITURAGE;;;;;;;;FRS10EVBAJ1;WWKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PGASNYSALLEDESFETES;;;;;;;;FRS10ETDBW1;CTQL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PFLEURYFORETCENTRE;;;;;;;;FRS10ETBKF1;CTQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVALREUILSTADEOWENS;;;;;;;;FRS10ETBAR1;QTKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBRIONNEGARE;;;;;;;;FRS10ETCGT1;QTKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVASCOEUILGARE;;;;;;;;FRS10ETBQF1;QQME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PPTAUDEMERANNEXEHOP;;;;;;;;FRS10EQXWK1;RWRJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBERNAYMARKET;;;;;;;;FRS10EQXVC1;QRVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PHEUDEBOUVILLEECOPARC;;;;;;;;FRS10EQZMT1;RXBN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PPTAUDEMERMEDIATHE;;;;;;;;FRS10EQYKQ1;QTHC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PTHIBERVILLEMARKET;;;;;;;;FRS10EQVLL1;FPWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PTHIBERVILLEECOLES;;;;;;;;FRS10EQTHU1;FMPQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PDAMVILLEMARKET;;;;;;;;FRS10EQTCK1;FPDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBRIONNESFETES;;;;;;;;FRS10EQVGG1;EACA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PGAILLONMAISONMEDIC;;;;;;;;FRS10EQTRQ1;EEJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PCORMEILLESDEGAULLE;;;;;;;;FRS10EQZPH1;EEJM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PCONDEITONMAIRIE;;;;;;;;FRS10ECVAY1;EDYW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PPTAUDEMERTHEATRE;;;;;;;;FRS10ECYPN1;EDYW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBRETEUILHOUDOUARD;;;;;;;;FRS10ETEDQ1;EEMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBERNAYDUBUS;;;;;;;;FRS10ESWUC1;EFMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVERNONVELODROME;;;;;;;;FRS10EUZMY1;EGEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PLYONSFOURACHAUX;;;;;;;;FRS10EUZCX1;EEMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PHAYEMALHERBEEGLISE;;;;;;;;FRS10EVAHK1;EFMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PNEUVELYRECENTRE;;;;;;;;FRS10EVAAG1;FSFZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBEUZEVILLECOQ;;;;;;;;FRS10ESVMF1;EBVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PCONTEVILLEPRESBYTERE;;;;;;;;FRS10ESVMD1;FPDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBERNAYLAPOSTE;;;;;;;;FRS10ESVSS1;FMPQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PROMILLYINTERMARCHE;;;;;;;;FRS10ECTQP1;FKDY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PIGOVILLEPARIS;;;;;;;;FRS10ESUJH1;FPZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PEZYEUREMAIRIE;;;;;;;;FRS10ESQYY1;QRGR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PEPAIGNESMAIRIE;;;;;;;;FRS10ESNRM1;RWRJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PLOUVIERSREPUBLIQUE;;;;;;;;FRS10ESTJR1;QTHC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PLOUVIERSCHAMPSVILLE;;;;;;;;FRS10ESSQT1;FPZL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PLOUVIERSOFFTOURISME;;;;;;;;FRS10ETABQ1;FQHP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PDAMVILLESERVPUB;;;;;;;;FRS52EFCHG1;FPWT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PETREPAGNYCOMCOM;;;;;;;;FRS52EEUWT2;FQHP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PANDELYSNPOUSSIN;;;;;;;;FRS52EEUYY2;FKDY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PTILLIERESAVREMAIRIE;;;;;;;;FRFR1EFWKZ1;EAAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVERNEUILAVRETOURISME;;;;;;;;FRFR1EHPMD1;EAAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVERNEUILAVREFOCH3;;;;;;;;FRFR1EJGVM1;DZEY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVERNEUILAVREFOCH2;;;;;;;;FRFR1EJBJV1;DZEY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVERNEUILAVREFOCH1;;;;;;;;FRFR1EHXFL1;FLTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBOURTHSALLEFETES;;;;;;;;FRFR1EHXZW1;FLTF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PGISORSMAIRIE;;;;;;;;FRFR1EHSCF1;REJJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PANDELYSPTANDELYS;;;;;;;;FRFR1EHVCD1;RHGJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PTOURNYCENTRE;;;;;;;;FRFR1EXLVS1;RFHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVALREUILGARE;;;;;;;;FRFR1EMMGW1;XEXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PCONCHESLECYGNE;;;;;;;;FRFR1ENYVM2;ZQXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PCONCHESDEGAULLE;;;;;;;;FRFR1ENYVM1;ZQXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PCONCHESPDOUMER;;;;;;;;FRFR1EVFWM2;AKRC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PLERYBOURG;;;;;;;;FRFR1EVFWM1;AKRC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBONNEVILLELORRAINE;;;;;;;;FRFR1EFGBG1;ZPTC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PEVREUXCOMCOM;;;;;;;;FRFR1EFGBG2;ZPTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PSTPIERREFLEURSINTER;;;;;;;;FRFR1EHZMA1;YXJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PSTECOLOMBECOMCENTRE;;;;;;;;FRFR1EPLVM2;YXJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PANDELYSGENGAULLE;;;;;;;;FRFR1EPPMD2;YWEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBEAUMONTROGECARNOT;;;;;;;;FRFR1ESVES2;YWEM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PEVREUXCOLLEGE;;;;;;;;FRFR1EKGWJ1;ZNRK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PNONANCOURTFRANPRIX;;;;;;;;FRFR1EKGWJ2;ZNRK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PCONCHESGARE2;;;;;;;;FRFR1ELPNY2;XFPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PCONCHESGARE1;;;;;;;;FRFR1ESVES1;XEXT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PGAILLONCOVOITURAGE1;;;;;;;;FRFR1ESVPR2;XPCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PNEUBOURGTOURISME;;;;;;;;FRFR1ESVXZ1;SACN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBROGLIEPOSTE;;;;;;;;FRFR1ESVPR1;SACN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PMONTREUILMAISONMEDI;;;;;;;;FRFR1EPLVM1;HDLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBUEILGARE;;;;;;;;FRFR1EVHSS1;QUUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PEVREUXBPOUGET;;;;;;;;FRFR1ESVXZ2;QRVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PGAILLONAQUAVAL;;;;;;;;FRFR1EVHSS2;QRPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PGAILLONPDOUMER;;;;;;;;FRFR1ESYPK2;QSVC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBARREOUCHEMOMORT;;;;;;;;FRFR1ESYPK1;QSBR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PNONANCOURTALSACELOR;;;;;;;;FRFR1EPPMD1;QRPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PMADELEINONANCECOLES;;;;;;;;FRFR1EFWKZ2;BLQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PALIZAYSABLONS;;;;;;;;FRFR1EHNHX1;RXLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PEVREUXROCHETTE;;;;;;;;FRFR1EKJZN2;HDLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PAUBEVOYEGARE;;;;;;;;FRFR1EGYDR1;BLQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PGRAVIGNYMAIRIE;;;;;;;;FRFR1EBBPM2;QUSR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PEVREUXREPUBLIQUE;;;;;;;;FRFR1EJCRM1;RXHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PEVREUXPIPOTS;;;;;;;;FRFR1EJCRM2;QUUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PEVREUXVIOLETTES;;;;;;;;FRFR1ENLAU1;QUSR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PAJOUBARRE;;;;;;;;FRFR1ENMLN1;QQKX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PCHESNEMARES;;;;;;;;FRFR1EBAUD1;XGRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBEAUMESNILMAIRIE;;;;;;;;FRFR1EBAUD2;XDFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PSTGERMAINCAMPEGLISE;;;;;;;;FRFR1EEQRD2;RHHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PPACYSUREUREGARE;;;;;;;;FRFR1EEQRD1;QQKX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PAUTHEVERNESDERLY;;;;;;;;FRFR1EKQRS1;RXXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVAUDREUILPHARMAPARC;;;;;;;;FRFR1EKRRP1;RYXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PTHUITANGERCOVOITURE;;;;;;;;FRFR1ECJQR1;RYXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBOISEMONTROUEN;;;;;;;;FRFR1ECJQR2;RYSG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PTHUITSIGNOLSUPERETTE;;;;;;;;FRFR1EGXMQ2;RYSG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PSTAUBINGAILLONCOVOI2;;;;;;;;FRFR1EGXMQ1;SBBE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBOURNEVILLETOURISME;;;;;;;;FRFR1EBBPM1;SBBE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBOURGACHARDMAIRIE;;;;;;;;FRFR1EUARV1;SBAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PHONDOUVILLEMOULIN;;;;;;;;FRFR1EUARV3;SBAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PSTPIERREVAUVRAYBOURG;;;;;;;;FRFR1ELNGY2;SBJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PVALREUIL4SAISONS;;;;;;;;FRFR1EXCAD1;RFHR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBECHELLOUINANSELME;;;;;;;;FRFR1EXCAD2;RFHX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBOURTHEROULDEMAIRIE;;;;;;;;FRFR1EZFDJ3;REXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PBOSCROGERROUMOISCEN;;;;;;;;FRFR1EZFDJ2;RFHR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PEVREUXJBOUIN;;;;;;;;FRFR1EZFDJ1;RHGJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PSTSEBASTIENMAIRIE;;;;;;;;FRFR1ELNGY1;RXXT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PQUILLEBEUFCOMCOM;;;;;;;;FRFR1EHJAW1;PCTW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS27PROUTOTMAIRIE;;;;;;;;FRFR1EUARV2;PCTW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3712;;;;;;;;FRFR1EHFHY1;EKDC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3622;;;;;;;;FRFR1EGRSR1;XPCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3612;;;;;;;;FRFR1EHDPL1;XDFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3621;;;;;;;;FRFR1EHATC1;XMRJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3711;;;;;;;;FRFR1EHFRJ1;XJVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3812;;;;;;;;FRFR1EGYPN1;XFPK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3811;;;;;;;;FRFR1ELPNY1;XMRJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3911;;;;;;;;FRFR1EKJZN1;XGRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3912;;;;;;;;FRS52EEJZF1;SBDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4012;;;;;;;;FRS52EFAGP2;XJVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4011;;;;;;;;FRS52EEUWT1;EKDC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3611;;;;;;;;FRS52EEGSC2;QSVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3212;;;;;;;;FRS52EEXDD1;RXSF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3511;;;;;;;;FRS52EEUYY1;RXSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3512;;;;;;;;FRS52EFBYQ1;SBDP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3411;;;;;;;;FRS52EFBSR1;EACA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3412;;;;;;;;FRS52EFBRZ1;FSFZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3211;;;;;;;;FRS52EFBYW1;EBVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3112;;;;;;;;FRS52EFCYH2;LAAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3111;;;;;;;;FRS52EFEHL2;NMZB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3012;;;;;;;;FRS52EFAHN2;FZQQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN3011;;;;;;;;FRS52EFAJG2;JYZX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2912;;;;;;;;FRS52EFBFH1;JYFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2911;;;;;;;;FRS52EEJQW1;JYFG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4111;;;;;;;;FRS52EEHNZ1;GAZU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2811;;;;;;;;FRS52EEXDD2;JYZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2812;;;;;;;;FRS52EEYCA2;GAZU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4112;;;;;;;;FRS52EEYSF2;FWSX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4811;;;;;;;;FRS52EENVA1;SDZV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4212;;;;;;;;FRS52EEPJE1;SDZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4911;;;;;;;;FRS52EEKEU1;BMPW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5412;;;;;;;;FRS52EEKFF1;BMPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2611;;;;;;;;FRS52EEUVU1;KBWS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5411;;;;;;;;FRS52EEPWR1;ZGER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5312;;;;;;;;FRS52EEKYN1;NMZB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5311;;;;;;;;FRS52EEYCA1;FZBH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5212;;;;;;;;FRS52EETKZ2;FZXQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5211;;;;;;;;FRS52EETED2;FWSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5111;;;;;;;;FRS52EETES2;ENFS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5112;;;;;;;;FRS52EEYSF1;EQVT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5012;;;;;;;;FRS52EEHLA1;EPUL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5011;;;;;;;;FRS52EEZZK1;ENWT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4912;;;;;;;;FRS52EEYWF1;ENWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4812;;;;;;;;FRS52EETBB2;FWLF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4211;;;;;;;;FRS52EFAFZ2;FWLF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4712;;;;;;;;FRS52EFAGP1;FZQQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4711;;;;;;;;FRS52EESXJ2;YVXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4621;;;;;;;;FRS52EEJQW2;YVXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4622;;;;;;;;FRS52EEKEU2;FZXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4611;;;;;;;;FRS52EFBFH2;FZVU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4612;;;;;;;;FRS52EETED1;FZVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4412;;;;;;;;FRS52EEPJE2;FZBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4411;;;;;;;;FRS52EESXJ1;KBWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4311;;;;;;;;FRS52EETBB1;LAAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4322;;;;;;;;FRS52EETKZ1;EQVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4312;;;;;;;;FRS52EEGSC1;WPAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN4321;;;;;;;;FRS52EESSK2;TUHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2711;;;;;;;;FRS52EESSK1;TUHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN411;;;;;;;;FRS52EETES1;KHLM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2612;;;;;;;;FRS52EFAHN1;KHLM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN211;;;;;;;;FRS52EFAJG1;DNPE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN412;;;;;;;;FRS52EFAFZ1;DNPE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN321;;;;;;;;FRS52EEHLA2;JSTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN311;;;;;;;;FRS52EEHNZ2;JSTE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN342;;;;;;;;FRS52EFBSR2;GNHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN332;;;;;;;;FRS52EFCXS2;UKYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN322;;;;;;;;FRS52EEKYN2;BSNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN312;;;;;;;;FRS52EENVA2;BFEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN331;;;;;;;;FRS52EEKFF2;BKTY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN341;;;;;;;;FRS52EEYWF2;BWVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN232;;;;;;;;FRS52EEJZF2;BJJN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN231;;;;;;;;FRS52EFCMF2;MMUP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN221;;;;;;;;FRS52EFEHL1;MMUP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN241;;;;;;;;FRS52EFBRZ2;NPBK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2511;;;;;;;;FRS52EEPWR2;RMPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN251;;;;;;;;FRS52EERJV2;WPAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN252;;;;;;;;FRS52EEZZK2;ZGER2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN242;;;;;;;;FRS52EFBYW2;STEK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN222;;;;;;;;FRS52EFCHG2;STAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN212;;;;;;;;FRS52EFBYQ2;KAXC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN122;;;;;;;;FRS10EVUMQ2;KAXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN121;;;;;;;;FRS10EWABS2;RNLC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN112;;;;;;;;FRS82EXBXS1;QEMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN132;;;;;;;;FRS10EGWXU2;RNLC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN111;;;;;;;;FRS10EUNMN2;RMPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN131;;;;;;;;FRS10EUXPG1;RCCH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5612;;;;;;;;FRS10EUHXM3;RCCH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN512;;;;;;;;FRS10EUNMN1;MPUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN511;;;;;;;;FRS10EEJGJ2;MPUE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN612;;;;;;;;FRS10EBVUM2;EPUL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN611;;;;;;;;FRS10ERBAD2;ENMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2512;;;;;;;;FRS10ERXRA2;EDAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2412;;;;;;;;FRS10EUHXM2;XTNH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2411;;;;;;;;FRS10EQKEZ3;FAXH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2311;;;;;;;;FRS10EKPAV3;FABW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2312;;;;;;;;FRS10EQKEZ1;FAEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2211;;;;;;;;FRS10EQKEZ2;FRTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2212;;;;;;;;FRS10EJGFL1;QYCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2111;;;;;;;;FRS10EQPTE2;CGBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2112;;;;;;;;FRS10ESNJJ3;PDLH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN1912;;;;;;;;FRS10ENPMA3;QYCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN1911;;;;;;;;FRS10EWBBD2;CGBH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN1712;;;;;;;;FRS10ERXRA3;DYZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN1711;;;;;;;;FRS10ENPMA2;DYZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN1612;;;;;;;;FRS10ELYSU1;DWMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN1611;;;;;;;;FRS10EQEJM1;DWMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN1412;;;;;;;;FRS10ESNJJ1;FEGX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN1411;;;;;;;;FRS10ERSSH1;FEGX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN1312;;;;;;;;FRS10EMJUJ1;FAEW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN1311;;;;;;;;FRS10EMJUJ2;FABW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN1012;;;;;;;;FRS10EKPAV1;BVYJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN1011;;;;;;;;FRS10EKPAV2;AGRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN911;;;;;;;;FRS10EQEJM3;EDAX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN912;;;;;;;;FRS10EEJGJ3;ECJP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN822;;;;;;;;FRS10ETVJJ1;ECJP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN821;;;;;;;;FRS10EBVUM3;FQMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5611;;;;;;;;FRS10ELYSU3;FQMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN2712;;;;;;;;FRS10EGWXU1;FAXH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5711;;;;;;;;FRS10EQPSX2;FQXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9512;;;;;;;;FRS10EQTCK2;BVYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10112;;;;;;;;FRS10EQRHM2;FQZQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10111;;;;;;;;FRS10EQMLC2;FRTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10011;;;;;;;;FRS10ENKKH2;FQXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10012;;;;;;;;FRS10ENFNC2;FQZQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9911;;;;;;;;FRS10ENEFY2;EZPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9912;;;;;;;;FRS10ENGYW2;EZPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9811;;;;;;;;FRS10ENGTE2;XTNH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9812;;;;;;;;FRS10ENMJW2;FHDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9711;;;;;;;;FRS10EQGSN2;ELPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9612;;;;;;;;FRS10EQGGT2;FJPG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9611;;;;;;;;FRS10EQHKJ2;BXHP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9511;;;;;;;;FRS10EQHGS2;BXSF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9411;;;;;;;;FRS10ENXKB2;BVQU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10212;;;;;;;;FRS10ENRXF2;BVQU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9412;;;;;;;;FRS10ENMNT2;BWXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9312;;;;;;;;FRS10ENUMA2;BXCN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9311;;;;;;;;FRS10ENTTP2;BWXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9212;;;;;;;;FRS10ENLTN2;ESRY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9211;;;;;;;;FRS10ENMEJ2;ELPK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9111;;;;;;;;FRS10ENKSV2;EGEL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9112;;;;;;;;FRS10EQYKQ2;ENMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9012;;;;;;;;FRS10EQJQB2;ENFS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9011;;;;;;;;FRS10EQHUE2;ELNF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8912;;;;;;;;FRS10EQMFM2;BXHP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8911;;;;;;;;FRS10EQLMS2;ELNF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8812;;;;;;;;FRS10EQTHU2;BXCN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10211;;;;;;;;FRS10EQZMT2;BXLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10311;;;;;;;;FRS10EQZRC2;BXSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8711;;;;;;;;FRS10ENKYQ2;BVAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11121;;;;;;;;FRS10EQZPH2;PDLH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5712;;;;;;;;FRS10EQXWK2;FHDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11911;;;;;;;;FRS10EQVGG2;FJPG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11811;;;;;;;;FRS10EQTRQ2;ETLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11812;;;;;;;;FRS10EQXVC2;AMMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11612;;;;;;;;FRS10EQVLL2;ETLV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11611;;;;;;;;FRS10ETHNQ1;BVAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11421;;;;;;;;FRS10ETVJJ2;BXLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11422;;;;;;;;FRS10ENPMA1;AMMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11321;;;;;;;;FRS82EGPVH1;EBUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11322;;;;;;;;FRS82ECXKF1;ESRY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11211;;;;;;;;FRS82ECKEQ1;EBUR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11212;;;;;;;;FRS82ELAPB1;AFAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11122;;;;;;;;FRS82ELAPB2;AFAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10312;;;;;;;;FRS82EUCRC1;RXHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11111;;;;;;;;FRS82EUXVT1;QRVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11112;;;;;;;;FRS82EWHGL1;BAUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10911;;;;;;;;FRS82EURMW1;JRRX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10912;;;;;;;;FRS82EXGVK1;KAPW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10812;;;;;;;;FRS82EBWAK1;JSUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10811;;;;;;;;FRS82EUXEW1;JMTZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10612;;;;;;;;FRS82EXFRM1;JSYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10611;;;;;;;;FRS82EBQNS1;JSYT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10512;;;;;;;;FRS82ECCKB1;JMUF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10511;;;;;;;;FRS82ECFBY1;JNTU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10412;;;;;;;;FRS82EBASD1;JMVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN10411;;;;;;;;FRS82EBJRV1;KAPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8811;;;;;;;;FRS82ECLYP1;JMVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN9712;;;;;;;;FRS82EAWVR1;JRRX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8712;;;;;;;;FRS82EVUTU1;JNTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7312;;;;;;;;FRS82EAKDG1;JMUF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7212;;;;;;;;FRS82EXJSA1;GDLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7112;;;;;;;;FRS82ECVQC1;JYYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7111;;;;;;;;FRS82EALXG1;KBRT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7011;;;;;;;;FRS82ECFHK1;JVEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7012;;;;;;;;FRS82EWNGW1;RXLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6911;;;;;;;;FRS82EBUBP1;GDSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6912;;;;;;;;FRS82EVYLK1;RZHR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6811;;;;;;;;FRS82EXBBF1;RZHR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6812;;;;;;;;FRS82EWRKQ1;RVRS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6711;;;;;;;;FRS82ECBUP1;RVRS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6712;;;;;;;;FRS82EXRQE1;RZMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6612;;;;;;;;FRS82EXSVC1;SAHU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6611;;;;;;;;FRS82EAUEC1;RLCN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6512;;;;;;;;FRS82EDUTT1;RZAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6511;;;;;;;;FRS10ETHNQ2;RZAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6412;;;;;;;;FRS82ECDWF1;RXAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6411;;;;;;;;FRS10EUHXM1;SAHU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6311;;;;;;;;FRS10EBVUM1;RXAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN11912;;;;;;;;FRS10EEJGJ1;GEAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6211;;;;;;;;FRS10EJHSA1;JYYY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6212;;;;;;;;FRS10EJHSA2;GEAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6111;;;;;;;;FRS10EHKZP1;KBRT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6112;;;;;;;;FRS10EWGDX2;GDSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6012;;;;;;;;FRS10ERXRA1;JSUV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6011;;;;;;;;FRS10ERSSH2;JVEW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5911;;;;;;;;FRS10ESNJJ2;XZHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN5811;;;;;;;;FRS10EGYBV2;XWFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7211;;;;;;;;FRS10ELYSU2;WZLY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN6312;;;;;;;;FRS10ERBAD1;NZEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7311;;;;;;;;FRS10EQEJM2;GSGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8012;;;;;;;;FRS10ERBAD3;GQHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8612;;;;;;;;FRS10EGCLC2;GQHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8511;;;;;;;;FRS10ERHYF1;GSGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8512;;;;;;;;FRS10EGYBV1;XZHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8411;;;;;;;;FRS82EBGHB1;GLRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8412;;;;;;;;FRS82EWCBH1;GLRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8312;;;;;;;;FRS82EVGWP1;ADGQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8311;;;;;;;;FRS82EUULC1;ADAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8211;;;;;;;;FRS82ECUQS1;ADGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8212;;;;;;;;FRS82EVKLU1;ADGQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7412;;;;;;;;FRS82EWNLC1;VZTP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8111;;;;;;;;FRS82EAJFC1;NZEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8011;;;;;;;;FRS10EGCLC1;CJHJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8112;;;;;;;;FRS82EDJMM1;GQBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7912;;;;;;;;FRS82EVFRF1;JTXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7611;;;;;;;;FRS82EVXXV1;GDLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7411;;;;;;;;FRS10EHKZP2;GCAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7911;;;;;;;;FRS10EUXPG2;JTXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7511;;;;;;;;FRS10ERHYF2;GCAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7612;;;;;;;;FRS10EMVPM1;JMTZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7512;;;;;;;;FRS10ENXKB1;XWFH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7711;;;;;;;;FRS10ENUMA1;CJHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7712;;;;;;;;FRS10ETPNP1;VZTP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN8611;;;;;;;;FRS10EMZAE2;WZLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7812;;;;;;;;FRS10ETLRA1;AYQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRM54PCUGN7811;;;;;;;;FRS10ETKQZ1;GPPG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1ECMXH;;;;;;;;FRS10ETNAM1;GPPG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59416001;;;;;;;;FRS10ETMRC1;GQBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59309002;;;;;;;;FRS10ETKJB1;RZMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59309001;;;;;;;;FRS10ETPTQ2;RXTL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59338001;;;;;;;;FRS10ETPNP2;RLCN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59535001;;;;;;;;FRS10ETHTK1;CHQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59416002;;;;;;;;FRS10ETGRM1;LNPY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59431001;;;;;;;;FRS10ETPEL1;LNSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59497001;;;;;;;;FRS10EZASF2;LVGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59499001;;;;;;;;FRS10ECYPN2;LVGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59282001;;;;;;;;FRS10EDAMV2;MUGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59307001;;;;;;;;FRS10ECZAY2;MUGR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59089001;;;;;;;;FRS10EMZGW2;LUDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59135001;;;;;;;;FRS10EMXMS2;LTQJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59130001;;;;;;;;FRS10EMYQQ2;LTKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59119001;;;;;;;;FRS10EDAUF2;MUAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59110001;;;;;;;;FRS10EMVKT2;MTUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59087001;;;;;;;;FRS10EMUQE2;MTUJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59087002;;;;;;;;FRS10EMVTA2;MUCC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59084001;;;;;;;;FRS10EMVPM2;MUCC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59578001;;;;;;;;FRS10EMULT2;MUAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14E59043002;;;;;;;;FRS10EDBAC2;LNPY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14E59043001;;;;;;;;FRS10EDDKD2;KYUE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59018001;;;;;;;;FRS10EMZMR2;KYHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59546001;;;;;;;;FRS10EDCTE2;LUTD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59082001;;;;;;;;FRS10EMWYS2;LUNT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59580001;;;;;;;;FRS10EMZZH2;LUXP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH08E59295004;;;;;;;;FRS10EMZYA2;LUXP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59581001;;;;;;;;FRS10ENCJG2;LTDY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14E59664001;;;;;;;;FRS10ENBUV2;LUTD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14E59590001;;;;;;;;FRS10ECVAY2;LUVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14E59453001;;;;;;;;FRS10ETPLT1;LTKU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14E59423001;;;;;;;;FRS10ESMTG2;KYHH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH08P59295011;;;;;;;;FRS10ECTQP2;KYCU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH08E59295010;;;;;;;;FRS10EUARF1;KYUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH08E59295009;;;;;;;;FRS10EUAQL1;LTQJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH08E592950081;;;;;;;;FRS10EVLKP2;LNSW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH08E59295007;;;;;;;;FRS10EVJUS2;LTDY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH08P59295006;;;;;;;;FRS10EVPRA2;KYCU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH08P59295005;;;;;;;;FRS10EVMAS2;CHQV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH08E59295002;;;;;;;;FRS10EVHUR2;SRPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH08E59295001;;;;;;;;FRS10EVBAJ2;RYMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14E59189001;;;;;;;;FRS10EVAHK2;DDUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14E59086001;;;;;;;;FRS10EVGMA2;QHJC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14E59054001;;;;;;;;FRS10EVEYB2;LMAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59663001;;;;;;;;FRS10EVQCB2;LMAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59663002;;;;;;;;FRS10EWAZL2;QHJC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59647001;;;;;;;;FRS10EWAMM2;QHJC3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRH14P59647002;;;;;;;;FRS10EWDLT2;LMAV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSGAP1D2007;;;;;;;;FRS10ETYPJ1;QQKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSGAP1D2006;;;;;;;;FRS10EUAAM1;QQKD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSGAP1D2008;;;;;;;;FRS10EUEAU1;ZKZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2316501;;;;;;;;FRS10EWFEW2;ZKZP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2304501;;;;;;;;FRS10ETPTQ1;TXMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2317601;;;;;;;;FRS10ETWAG1;BAQQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2307601;;;;;;;;FRS10ETVMQ1;BAQQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2307501;;;;;;;;FRS10ETXCX1;RXTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2302101;;;;;;;;FRS10ETWNA1;RYMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2302501;;;;;;;;FRS10ETUUM1;STYH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2324701;;;;;;;;FRS10EWEPC2;GZYW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2300801;;;;;;;;FRS10EUHMC1;LCPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2309601;;;;;;;;FRS10ETSYQ1;QSCP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2309603;;;;;;;;FRS10ETSWS1;MPFR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2307001;;;;;;;;FRS10ETXWH1;AMUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2303001;;;;;;;;FRS10EUGPD1;NANM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2309602;;;;;;;;FRS10EUGEG1;HZAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2309604;;;;;;;;FRS10EUHVJ1;NSBR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2319302;;;;;;;;FRS10ETPLT2;KZWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2324501;;;;;;;;FRS10ESMZM2;KXYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2319301;;;;;;;;FRS10EQGSN1;QDCN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2311401;;;;;;;;FRS10ENFNC1;PBUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2317602;;;;;;;;FRS10EMZZH1;ZRUU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2309501;;;;;;;;FRS10EMZYA1;NERC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2315501;;;;;;;;FRS10EMZAE1;PALM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2325701;;;;;;;;FRS10EMWYS1;PBUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2301301;;;;;;;;FRS10EMVTA1;ADXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2303101;;;;;;;;FRS10EMYQQ1;ACUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2310001;;;;;;;;FRS10EMXMS1;ACAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2303003;;;;;;;;FRS10ENBUV1;ADAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2309605;;;;;;;;FRS10ENKSV1;BJNP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2309301;;;;;;;;FRS10ENKKH1;CDYR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2307602;;;;;;;;FRS10ENLTN1;BLBU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2302001;;;;;;;;FRS10ENKYQ1;BGPY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2303002;;;;;;;;FRS10ENGYW1;YGJC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2306901;;;;;;;;FRS10ENEFY1;AGYL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2307901;;;;;;;;FRS10ENCJG1;BGPY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2319201;;;;;;;;FRS10EMZGW1;BTSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS23D2308901;;;;;;;;FRS10EMZMR1;BTEQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREVBP2110201;;;;;;;;FRS10EQJQB1;YGJC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREVBP2005139;;;;;;;;FRS10EQHGS1;BTSZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREVBP2012399;;;;;;;;FRS10EQGGT1;BJZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREVBP1928044;;;;;;;;FRS10ENTTP1;BJNP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREVBP1924110;;;;;;;;FRS10ENMJW1;BKFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREVBP2020551;;;;;;;;FRS10ENMEJ1;BJZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREVBP1936003;;;;;;;;FRS10ENRXF1;AGSP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREVBP2022841;;;;;;;;FRS10ENMNT1;CDYR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FREVBP2211073;;;;;;;;FRS10EQPSX1;CELQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRIENS35353A;;;;;;;;FRS10EQLMS1;CELQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1ETSEA1;;;;;;;;FRS10EQMLC1;CCAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1EDDVK1;;;;;;;;FRS10EQRHM1;PBYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRLUMEEVAJADE11;;;;;;;;FRS10EQPTE1;AMSW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRLUMEROUMANILLE11;;;;;;;;FRS10EQMFM1;AKME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRAU1E0022;;;;;;;;FRS10EQHUE1;YBMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRAU1E0020;;;;;;;;FRS10EQHKJ1;YBMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRAU1E0017;;;;;;;;FRS10ENGTE1;CCAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRAU1E0023;;;;;;;;FRS10ETBKF2;BYHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRLUMEOASISBORNE11;;;;;;;;FRS10ERKDQ2;AKHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1EVFWM1;;;;;;;;FRS10ETBAR2;BYHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1EVGKF1;;;;;;;;FRS10EDEWC1;BYVQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRZIME22AC32173;;;;;;;;FRS10ERAUG2;BYVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRZPEE22AC35840;;;;;;;;FRS10ERAHH2;AHRB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRZPEE22AC45135;;;;;;;;FRS10EDEWC2;AHRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRZPEE22AC45134;;;;;;;;FRS10EAUMV1;AKHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRZPEE22AC45107;;;;;;;;FRS10EAUMV2;AGYL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRZPEE22AC45106;;;;;;;;FRS10EBNYP1;AGSP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRZMAE22AC49430;;;;;;;;FRS10EBNYP2;AMSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRZMAE22AC60973;;;;;;;;FRS10ERGMF2;BTEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10026282;;;;;;;;FRS10ESSQT2;QRLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10080607;;;;;;;;FRS10ESQYY2;PARR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10077637;;;;;;;;FRS10ESUJH2;PARR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10073809;;;;;;;;FRS10ESTJR2;RXBV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10067756;;;;;;;;FRS10ESNRM2;RXBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10022586;;;;;;;;FRS10ERMRH2;RXCB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10017771;;;;;;;;FRS10ERADT2;RXCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10000460;;;;;;;;FRS10ETHTK2;QUGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10094215;;;;;;;;FRS10ETKJB2;QUGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10045832;;;;;;;;FRS10ESVSS2;QUKK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10067608;;;;;;;;FRS10ETCGT2;QUKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10062327;;;;;;;;FRS10ETBQF2;RWGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10026838;;;;;;;;FRS10ETABQ2;RWGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10037483;;;;;;;;FRS10ESVMF2;RWME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10008907;;;;;;;;FRS10ESVMD2;RWME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10062651;;;;;;;;FRS10ESWUC2;QRLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10062691;;;;;;;;FRS10ETDBW2;RHHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10031802;;;;;;;;FRS10ETEDQ2;NPDC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10084195;;;;;;;;FRS10ETMRC2;BMQA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10033467;;;;;;;;FRS10ETLRA2;BNSV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10089507;;;;;;;;FRS10ETPEL2;BNSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10083410;;;;;;;;FRS10ETNAM2;LUXU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10092837;;;;;;;;FRS10ETKQZ2;BPEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10031788;;;;;;;;FRS10ETGRM2;BLXQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10087320;;;;;;;;FRFR1EVDRN2;BLXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10041681;;;;;;;;FRFR1EPDAH1;BMQA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10098565;;;;;;;;FRFR1EPDJB1;BPEQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10036289;;;;;;;;FRS56EQTXP1;BQAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10063376;;;;;;;;FRS56EQRSV1;BQAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10063985;;;;;;;;FRS56EQQTA2;BRBZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10046901;;;;;;;;FRS56EQQTA1;BRBZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10021422;;;;;;;;FRS56EQSLU2;NPDC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10026273;;;;;;;;FRS56EQSLU1;LUXU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10083012;;;;;;;;FRS56EQRVK2;AMSM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10016292;;;;;;;;FRS56EQRGS1;BKWS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10072670;;;;;;;;FRS56ERYDX2;ACUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10001446;;;;;;;;FRS56EQRGR1;RJKN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10077154;;;;;;;;FRS56EQRGS2;ABAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10027011;;;;;;;;FRS56ERYEJ1;AANM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10052886;;;;;;;;FRS56ERYHB2;AANM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10011169;;;;;;;;FRS56ERYDX1;AAEN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10066971;;;;;;;;FRS56ERYEJ2;AAEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10014387;;;;;;;;FRS56ERXBN1;AALG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10022941;;;;;;;;FRS56EQRSV2;AALG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10006653;;;;;;;;FRS56EQTXP2;AEHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10056169;;;;;;;;FRS56EQSBR2;RLBX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10081403;;;;;;;;FRS56EQQME1;RLBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10033822;;;;;;;;FRS56EREQN2;RKNW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10084296;;;;;;;;FRS56ESBJQ1;RKNW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10021897;;;;;;;;FRS56EREJJ2;RHPW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10077840;;;;;;;;FRS56EREVX1;RHPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10080379;;;;;;;;FRS56EREXC2;RHLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10074850;;;;;;;;FRS56EREQN1;ABAQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10055327;;;;;;;;FRS56EREVX2;RHUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10017910;;;;;;;;FRS56ERYHB1;RHUJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10005079;;;;;;;;FRS56EWWKM2;ADXR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1EAGUA1;;;;;;;;FRS56EWWKM1;AEAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1ETHZL1;;;;;;;;FRS56ECTQL2;ADXR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1EZNAS1;;;;;;;;FRS56ECTQL1;AEHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1EAMKA1;;;;;;;;FRS56EQTKM2;AEAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRLUMERAMIERES11;;;;;;;;FRS56EQTKM1;ADSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRECPEMAUFFREYACADEMY;;;;;;;;FRS56EQQME2;ADGW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRECPEF3CBAUME;;;;;;;;FRS56ERWRJ2;ADSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRPHIPTHECORNER;;;;;;;;FRS56EQRVK1;BKGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10093725;;;;;;;;FRS56ERXBN2;ACAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10008605;;;;;;;;FRS56EQTHC1;PCEX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10062883;;;;;;;;FRS56EFPWT1;PCEX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10051877;;;;;;;;FRS56EFMPQ2;RHUR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10099083;;;;;;;;FRS56EFPDM1;RHUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10091710;;;;;;;;FRS56EEACA1;BKGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10043836;;;;;;;;FRS56EEEJM1;RHLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10093672;;;;;;;;FRS56EEEJM2;RJKN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10005259;;;;;;;;FRS56EEDYW1;BLBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10055581;;;;;;;;FRS56EEDYW2;RJKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10002785;;;;;;;;FRS56EEEMD1;RLFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10022618;;;;;;;;FRS56EEFMS2;RLLU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS62E10048506;;;;;;;;FRS56EEGEL1;RLDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS62E10019890;;;;;;;;FRS56EEEMD2;RLFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS62E10009735;;;;;;;;FRS56EEFMS1;BKFC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10008344;;;;;;;;FRS56EFSFZ2;XYEU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10084920;;;;;;;;FRS56EEBVR1;AMGS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10000730;;;;;;;;FRS56EFPDM2;AMSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10052768;;;;;;;;FRS56EFMPQ1;XYEU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10033245;;;;;;;;FRS56EFKDY2;AMDC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10092892;;;;;;;;FRS56EFPZL1;AKME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10064682;;;;;;;;FRS56EQRGR2;AMGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10085447;;;;;;;;FRS56ERWRJ1;AMDC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10084198;;;;;;;;FRS56EQTHC2;BKWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10088046;;;;;;;;FRS56EFPZL2;PBYX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10065917;;;;;;;;FRS56EFQHP1;RHTB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10012220;;;;;;;;FRS56EFPWT2;RHSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10020602;;;;;;;;FRS56EFQHP2;RLDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10003816;;;;;;;;FRS56EFKDY1;AGHF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10058267;;;;;;;;FRS56EEAAY1;RJKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10028783;;;;;;;;FRS56EEAAY2;RKHR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10045663;;;;;;;;FRS56EDZEY1;RKHR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10039441;;;;;;;;FRS56EDZEY2;RKHD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10038190;;;;;;;;FRS56EFLTF1;RKHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10058363;;;;;;;;FRS56EFLTF2;RHSV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10043767;;;;;;;;FRS56EREJJ1;AGHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10057997;;;;;;;;FRS56ERHGJ2;RHTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10094490;;;;;;;;FRS56ERFHX1;RLLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10087808;;;;;;;;FRS56EXEXT1;AGRB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10070842;;;;;;;;FRS56EZQXJ1;AFVF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10047826;;;;;;;;FRS56EZQXJ2;AFVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10053447;;;;;;;;FRS56EAKRC2;AFMZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10009607;;;;;;;;FRS56EAKRC1;AFMZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10090010;;;;;;;;FRS56EZPTC2;GQLG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10064662;;;;;;;;FRS56EZPTC1;BDAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10017845;;;;;;;;FRS56EYXJQ2;PDJB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10058428;;;;;;;;FRS56EYXJQ1;JMHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10056568;;;;;;;;FRS56EYWEM1;ZVZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10091696;;;;;;;;FRS56EYWEM2;ZTBV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10072897;;;;;;;;FRS56EZNRK2;ZTBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10095826;;;;;;;;FRS56EZNRK1;ZVZA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10072145;;;;;;;;FRS56EXFPK1;VYKS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10079601;;;;;;;;FRS56EXEXT2;VYKS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10079395;;;;;;;;FRS56EXPCW1;SCBZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10077325;;;;;;;;FRS56ESACN1;SCBZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10076984;;;;;;;;FRS56ESACN2;JUMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10076688;;;;;;;;FRS56EHDLW1;CGJE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10068375;;;;;;;;FRS56EQUUN2;JUMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10069696;;;;;;;;FRS56EQRVX2;ANKD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10068896;;;;;;;;FRS56EQRPA1;GFGX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10066063;;;;;;;;FRS56EQSVC2;YAMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10064245;;;;;;;;FRS56EQSBR1;ANKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10082153;;;;;;;;FRS56EQRPA2;ZETA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10080710;;;;;;;;FRS56EBLQP2;QFYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10095460;;;;;;;;FRS56ERXLW1;KMUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10087437;;;;;;;;FRS56EHDLW2;YPCC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10075551;;;;;;;;FRS56EBLQP1;YLWA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10088336;;;;;;;;FRS56EQUSR1;YNLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10099360;;;;;;;;FRS56ERXHM2;YNLY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10062826;;;;;;;;FRS56EQUUN1;YPTK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10076241;;;;;;;;FRS56EQUSR2;YRUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10062738;;;;;;;;FRS56EQQKX1;YRQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10074232;;;;;;;;FRS56EXGRR2;YRQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10074197;;;;;;;;FRS56EXDFM2;YRUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10074163;;;;;;;;FRS56ERHHA2;YPTK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10073129;;;;;;;;FRS56EQQKX2;YPCC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRUBIE10090451;;;;;;;;FRS56ERXXT1;YSXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1ESNPQ;;;;;;;;FRS56ERYXM2;YSXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FROTHESENT113;;;;;;;;FRS56ERYXM1;YLWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1EEZUX1;;;;;;;;FRS56ERYSG2;YLQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1EBYBZ1;;;;;;;;FRS56ERYSG1;YLQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1EKHV1;;;;;;;;FRS56ESBBE2;YAMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1EBMYP;;;;;;;;FRS56ESBBE1;GFGX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FROTHEOTHR228;;;;;;;;FRS56ESBAA2;CGJE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRBECP69027A;;;;;;;;FRS56ESBAA1;MQKT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRBECP40217A;;;;;;;;FRS56ESBJQ2;MRPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1EQTGP1;;;;;;;;FRS56ERFHR1;MSBU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1EGMAM1;;;;;;;;FRS56ERFHX2;TNDY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1PRATIESIM0E;;;;;;;;FRS56EREXC1;NNAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25712;;;;;;;;FRS56ERFHR2;BYQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE26212;;;;;;;;FRS56ERHGJ1;SBAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25811;;;;;;;;FRS56ERXXT2;MRDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25812;;;;;;;;FRS56EPCTW1;MRDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25912;;;;;;;;FRS56EPCTW2;SBAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25911;;;;;;;;FRS56EEKDC1;LMAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE26111;;;;;;;;FRS56EXPCW2;GYTD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE26112;;;;;;;;FRS56EXDFM1;GZCK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24512;;;;;;;;FRS56EXMRJ2;GZCK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE26211;;;;;;;;FRS56EXJVX1;GYTD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE26311;;;;;;;;FRS56EXFPK2;YFVB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE26711;;;;;;;;FRS56EXMRJ1;MSBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE26712;;;;;;;;FRS56EXGRR1;MRPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29012;;;;;;;;FRS56ESBDP1;HQYP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE26812;;;;;;;;FRS56EXJVX2;CQUR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE26811;;;;;;;;FRS56EEKDC2;MMGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE26911;;;;;;;;FRS56EQSVC1;MPSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25611;;;;;;;;FRS56ERXSF2;MXKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25711;;;;;;;;FRS56ERXSF1;MRAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24811;;;;;;;;FRS56ESBDP2;XTHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25612;;;;;;;;FRS56EEACA2;XTHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25012;;;;;;;;FRS56EFSFZ1;CQUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24612;;;;;;;;FRS56EEBVR2;HRTY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24711;;;;;;;;FRFR1ELAAH1;JDPN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24712;;;;;;;;FRS56ENMZB1;JDPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27011;;;;;;;;FRS56EFZQQ2;PMZU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24812;;;;;;;;FRS56EJYZX2;PMZU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24912;;;;;;;;FRS56EJYFG1;HRTY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24911;;;;;;;;FRS56EJYFG2;HQYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25011;;;;;;;;FRS56EGAZU2;KKTW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25511;;;;;;;;FRS56EJYZX1;KKTW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25111;;;;;;;;FRS56EGAZU1;ATZE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25112;;;;;;;;FRS56EFWSX2;BTLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25311;;;;;;;;FRFR1ESDZV2;KMXZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25312;;;;;;;;FRFR1ESDZV1;ZKEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25411;;;;;;;;FRFR1EBMPW2;GWJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25412;;;;;;;;FRFR1EBMPW1;LPSC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE25512;;;;;;;;FRFR1EKBWS2;LQWX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE26912;;;;;;;;FRFR1EZGER1;LQMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27911;;;;;;;;FRS56ENMZB2;LQMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27012;;;;;;;;FRS56EFZBH2;LPRQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28611;;;;;;;;FRS56EFZXQ2;LPSC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28212;;;;;;;;FRS56EFWSX1;LQWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28311;;;;;;;;FRS56EENFS2;LPRQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28312;;;;;;;;FRS56EEQVT2;GEKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28411;;;;;;;;FRS56EEPUL1;BBMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28412;;;;;;;;FRS56EENWT2;BBMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28511;;;;;;;;FRS56EENWT1;WCWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28512;;;;;;;;FRS56EFWLF2;KMXZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28612;;;;;;;;FRS56EFWLF1;FGFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27112;;;;;;;;FRS56EFZQQ1;FGFP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28712;;;;;;;;FRS56EYVXA1;GZEX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28711;;;;;;;;FRS56EYVXA2;NDMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28812;;;;;;;;FRS56EFZXQ1;UZGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28811;;;;;;;;FRS56EFZVU2;UZGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28911;;;;;;;;FRS56EFZVU1;TMNJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28912;;;;;;;;FRS56EFZBH1;TMNJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29011;;;;;;;;FRFR1EKBWS1;GZEX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28211;;;;;;;;FRFR1ELAAH2;MQMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28112;;;;;;;;FRS56EEQVT1;JLCQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28111;;;;;;;;FRFR1EWPAV1;MQMB3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28012;;;;;;;;FRFR1ETUHE2;MQMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27111;;;;;;;;FRFR1ETUHE1;VFMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27212;;;;;;;;FRFR1EKHLM2;VFMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27211;;;;;;;;FRFR1EKHLM1;VFMM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27311;;;;;;;;FRFR1EDNPE1;JLCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27312;;;;;;;;FRFR1EDNPE2;WCWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27412;;;;;;;;FRFR1EJSTE1;BTLR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27411;;;;;;;;FRFR1EJSTE2;ATZE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27611;;;;;;;;FRFR1EGNHA1;QYVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27612;;;;;;;;FRFR1EUKYX1;QVYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27711;;;;;;;;FRFR1EBSNQ1;FMTK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27712;;;;;;;;FRFR1EBFEQ1;PYNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27812;;;;;;;;FRFR1EBKTY1;XDZD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27811;;;;;;;;FRFR1EBWVW1;XWQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE27912;;;;;;;;FRFR1EBJJN1;AMGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE28011;;;;;;;;FRFR1EMMUP2;AMGE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24611;;;;;;;;FRFR1EMMUP1;FQHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE2612;;;;;;;;FRFR1ENPBK1;FQXL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24511;;;;;;;;FRFR1ERMPT2;FPRJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21711;;;;;;;;FRFR1EWPAV2;GDRJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21412;;;;;;;;FRFR1EZGER2;GDMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21411;;;;;;;;FRFR1ESTEK1;GCTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21512;;;;;;;;FRFR1ESTAK1;AQMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21511;;;;;;;;FRFR1EKAXC2;AQMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21612;;;;;;;;FRFR1EKAXC1;ESYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21611;;;;;;;;FRFR1ERNLC2;PKDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21712;;;;;;;;FRFR1EQEMV1;GHKJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21812;;;;;;;;FRFR1ERNLC1;GHYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21312;;;;;;;;FRFR1ERMPT1;QYVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21811;;;;;;;;FRFR1ERCCH1;KBHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21911;;;;;;;;FRFR1ERCCH2;PAWY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21912;;;;;;;;FRFR1EMPUE1;PAWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22011;;;;;;;;FRFR1EMPUE2;GMLH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22012;;;;;;;;FRS56EEPUL2;GKUC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22111;;;;;;;;FRS56EENMA2;GLSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22112;;;;;;;;FRS56EEDAX1;GSGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21311;;;;;;;;FRS56EXTNH2;GMUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21211;;;;;;;;FRS56EFAXH1;GLLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22212;;;;;;;;FRS56EFABW2;GLQJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE2611;;;;;;;;FRS56EFAEW1;GNAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29112;;;;;;;;FRS56EFRTN2;GHVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE2112;;;;;;;;FRS56EQYCX2;GMDH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE2111;;;;;;;;FRS56ECGBH1;YFVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE2311;;;;;;;;FRS56EPDLH2;GNLJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE2312;;;;;;;;FRS56EQYCX1;GNLJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE2411;;;;;;;;FRS56ECGBH2;QMXR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE2412;;;;;;;;FRS56EDYZM1;VLEZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE2711;;;;;;;;FRS56EDYZM2;RHMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21212;;;;;;;;FRS56EDWMU1;NKMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE2712;;;;;;;;FRS56EDWMU2;NKMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE2911;;;;;;;;FRS56EFEGX1;RHMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE2912;;;;;;;;FRS56EFEGX2;TKYJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21012;;;;;;;;FRS56EFAEW2;TKYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21011;;;;;;;;FRS56EFABW1;MBVH3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21111;;;;;;;;FRS56EBVYJ2;MBVH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE21112;;;;;;;;FRS56EAGRB1;MBVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22211;;;;;;;;FRS56EEDAX2;QHJN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22312;;;;;;;;FRS56EECJP1;QHJN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24412;;;;;;;;FRS56EECJP2;QLBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23812;;;;;;;;FRS56EFQMD1;QFUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23412;;;;;;;;FRS56EFQMD2;QFUY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23411;;;;;;;;FRS56EFAXH2;VLEZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23512;;;;;;;;FRS56EFQXV1;DHXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23511;;;;;;;;FRS56EBVYJ1;DHXQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23611;;;;;;;;FRS56EFQZQ2;SBGH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23612;;;;;;;;FRS56EFRTN1;BXSN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23711;;;;;;;;FRS56EFQXV2;ZVVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23811;;;;;;;;FRS56EFQZQ1;QWRL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23312;;;;;;;;FRS56EEZPT1;ZYNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23911;;;;;;;;FRS56EEZPT2;RVUP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23912;;;;;;;;FRS56EXTNH1;GVYK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24112;;;;;;;;FRS56EFHDD1;GJLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24111;;;;;;;;FRS56EELPK1;MLHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24312;;;;;;;;FRS56EFJPG2;BXSN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24311;;;;;;;;FRS56EBXHP2;ZVVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE24411;;;;;;;;FRS56EBXSF2;QWRL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23311;;;;;;;;FRS56EBVQU2;FQHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23211;;;;;;;;FRS56EBVQU1;FQHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22311;;;;;;;;FRS56EBWXA1;MLHD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22711;;;;;;;;FRS56EBXCN1;QNRN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22412;;;;;;;;FRS56EBWXA2;QLBQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22411;;;;;;;;FRS56EESRY1;SBGH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22512;;;;;;;;FRS56EELPK2;QMXR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22511;;;;;;;;FRS56EEGEL2;ZGWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22611;;;;;;;;FRS56EENMA1;LNHP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22612;;;;;;;;FRS56EENFS1;HDRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22712;;;;;;;;FRS56EELNF2;JMNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22811;;;;;;;;FRS56EBXHP1;PSFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23212;;;;;;;;FRS56EELNF1;NCNS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22812;;;;;;;;FRS56EBXCN2;SMGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22911;;;;;;;;FRS56EBXLA1;LNMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE22912;;;;;;;;FRS56EBXSF1;RLAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23012;;;;;;;;FRS56EBVAL2;HUDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23011;;;;;;;;FRS56EPDLH1;QJPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23112;;;;;;;;FRS56EFHDD2;MJGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE23111;;;;;;;;FRS56EFJPG1;CCBK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29111;;;;;;;;FRS56EETLV1;XEYH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211712;;;;;;;;FRS56EAMMM2;XEYH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29212;;;;;;;;FRS56EETLV2;NWAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215511;;;;;;;;FRS56EBVAL1;PWHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215011;;;;;;;;FRS56EBXLA2;KQJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215212;;;;;;;;FRS56EAMMM1;WHMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215211;;;;;;;;FRS56EEBUR1;QNRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215312;;;;;;;;FRS56EESRY2;PATE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215311;;;;;;;;FRS56EEBUR2;TEVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215411;;;;;;;;FRS56EAFAA2;NXGP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215412;;;;;;;;FRS56EAFAA1;NVCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215512;;;;;;;;FRS56ERXHM1;PLCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214911;;;;;;;;FRS56EQRVX1;HGSQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215612;;;;;;;;FRFR1EBAUA1;KFSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215611;;;;;;;;FRS56EJRRX1;RFSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215711;;;;;;;;FRS56EKAPW2;WXQK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215712;;;;;;;;FRS56EJSUV1;LXMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215812;;;;;;;;FRS56EJMTZ1;HHWF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215811;;;;;;;;FRS56EJSYT1;DUWJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215911;;;;;;;;FRS56EJSYT2;ALUP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215012;;;;;;;;FRS56EJMUF2;GJLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214912;;;;;;;;FRS56EJNTU2;GVYK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216011;;;;;;;;FRS56EJMVM1;ELYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214311;;;;;;;;FRS56EKAPW1;LFBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213812;;;;;;;;FRS56EJMVM2;VBEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213911;;;;;;;;FRS56EJRRX2;VBEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213912;;;;;;;;FRS56EJNTU1;KSSH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214111;;;;;;;;FRS56EJMUF1;KVHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214112;;;;;;;;FRS56EGDLS2;KCYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214211;;;;;;;;FRS56EJYYY1;KNKN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214212;;;;;;;;FRS56EKBRT1;CMFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214312;;;;;;;;FRS56EJVEW1;JQDC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214711;;;;;;;;FRS56ERXLW2;NVMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214411;;;;;;;;FRS56EGDSA2;NVMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214412;;;;;;;;FRS56ERZHR2;NWKR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214512;;;;;;;;FRS56ERZHR1;NWKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214511;;;;;;;;FRS56ERVRS2;NLWP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214611;;;;;;;;FRS56ERVRS1;NLWP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214612;;;;;;;;FRS56ERZMJ2;NVHG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE214712;;;;;;;;FRS56ESAHU2;MAVG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE215912;;;;;;;;FRS56ERLCN1;FPTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216012;;;;;;;;FRS56ERZAY2;FPTQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213711;;;;;;;;FRS56ERZAY1;PLXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE218311;;;;;;;;FRS56ERXAM1;JBUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE217411;;;;;;;;FRS56ESAHU1;JBUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE217611;;;;;;;;FRS56ERXAM2;AMFS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE217811;;;;;;;;FRS56EGEAD2;AMFS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE217911;;;;;;;;FRS56EJYYY2;QCTY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE218011;;;;;;;;FRS56EGEAD1;PLXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE218111;;;;;;;;FRS56EKBRT2;NXPU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE218211;;;;;;;;FRS56EGDSA1;QLLK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE218312;;;;;;;;FRS56EJSUV2;LFCK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE217311;;;;;;;;FRS56EJVEW2;LFCK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE218411;;;;;;;;FRS56EXZHY2;PRUS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE218412;;;;;;;;FRS56EXWFH1;PRUS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE218512;;;;;;;;FRS56EWZLY2;NXPU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE218511;;;;;;;;FRS56ENZEG2;QLLK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE218912;;;;;;;;FRS56EGSGA1;NVHG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE218911;;;;;;;;FRS56EGQHK2;LJBN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29211;;;;;;;;FRS56EGQHK1;RVUP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE217412;;;;;;;;FRS56EGSGA2;LBCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE217211;;;;;;;;FRS56EXZHY1;MJSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216112;;;;;;;;FRS56EGLRA2;DNVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216512;;;;;;;;FRS56EGLRA1;MDLC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216111;;;;;;;;FRS56EADGQ1;TLLV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216212;;;;;;;;FRS56EADAS2;PKYZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216211;;;;;;;;FRS56EADGW1;MDLC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216312;;;;;;;;FRS56EADGQ2;TLLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216311;;;;;;;;FRS56EVZTP1;TMVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216411;;;;;;;;FRS56ENZEG1;TMVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216412;;;;;;;;FRS56ECJHJ2;YXBT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216511;;;;;;;;FRS56EGQBM1;YXBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE217112;;;;;;;;FRS56EJTXA1;SBEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216612;;;;;;;;FRS56EGDLS1;XZVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216611;;;;;;;;FRS56EGCAM2;XZVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216711;;;;;;;;FRS56EJTXA2;ZYNV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216812;;;;;;;;FRS56EGCAM1;MJSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216811;;;;;;;;FRS56EJMTZ2;PKYZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216911;;;;;;;;FRS56EXWFH2;SBEC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE217111;;;;;;;;FRS56ECJHJ1;WNDS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213811;;;;;;;;FRS56EVZTP2;WNVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE216712;;;;;;;;FRS56EWZLY1;WPHT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213712;;;;;;;;FRS56EAYQV1;WNVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210812;;;;;;;;FRS56EGPPG2;WLJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210312;;;;;;;;FRS56EGPPG1;WNDS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210311;;;;;;;;FRS56EGQBM2;WMNK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210412;;;;;;;;FRS56ERZMJ1;WMNK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210411;;;;;;;;FRS56ERXTL2;LQXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210711;;;;;;;;FRS56ERLCN2;WPHT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210712;;;;;;;;FRFR1ECHQV1;WLJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210811;;;;;;;;FRFR1ELNPY2;JEMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210912;;;;;;;;FRFR1ELNSW1;LQXG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210211;;;;;;;;FRFR1ELVGA1;DNVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210911;;;;;;;;FRFR1ELVGA2;JEMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211012;;;;;;;;FRFR1EMUGR1;NDMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211011;;;;;;;;FRFR1EMUGR2;KMUJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211112;;;;;;;;FRFR1ELUDA2;DNMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211111;;;;;;;;FRFR1ELTQJ1;VFCU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211212;;;;;;;;FRFR1ELTKU1;QBBB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211211;;;;;;;;FRFR1EMUAC2;QXWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210212;;;;;;;;FRFR1EMTUJ1;TTDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210112;;;;;;;;FRFR1EMTUJ2;CDFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211312;;;;;;;;FRFR1EMUCC1;CCMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29611;;;;;;;;FRFR1EMUCC2;CCSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213611;;;;;;;;FRFR1EMUAC1;TMKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29312;;;;;;;;FRFR1ELNPY1;PDWR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29311;;;;;;;;FRFR1EKYUE2;UXPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29411;;;;;;;;FRFR1EKYHH1;BXYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29412;;;;;;;;FRFR1ELUTD2;DMPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29512;;;;;;;;FRFR1ELUNT2;AETJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29511;;;;;;;;FRFR1ELUXP2;BYVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29612;;;;;;;;FRFR1ELUXP1;CAAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210111;;;;;;;;FRFR1ELTDY1;LYVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29712;;;;;;;;FRFR1ELUTD1;DZYZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29711;;;;;;;;FRFR1ELUVE1;TQCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29812;;;;;;;;FRFR1ELTKU2;QQHP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29811;;;;;;;;FRFR1EKYHH2;SNJP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29911;;;;;;;;FRFR1EKYCU2;ZNSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210012;;;;;;;;FRFR1EKYUE1;XDHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE210011;;;;;;;;FRFR1ELTQJ2;WESD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211311;;;;;;;;FRFR1ELNSW2;WWBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE29912;;;;;;;;FRFR1ELTDY2;XLMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211511;;;;;;;;FRFR1EKYCU1;DKMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213212;;;;;;;;FRFR1ECHQV2;XULB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212712;;;;;;;;FRFR1ESRPN1;WNBJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212811;;;;;;;;FRS56ERYMQ1;DKMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212911;;;;;;;;FRFR1EDDUR1;WTJP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213011;;;;;;;;FRFR1EQHJC2;WTJP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213012;;;;;;;;FRFR1ELMAV2;WSVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213111;;;;;;;;FRFR1ELMAV1;WSVH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213112;;;;;;;;FRFR1EQHJC1;AXYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213312;;;;;;;;FRFR1EQHJC3;VBYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212611;;;;;;;;FRFR1ELMAV3;BXWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213311;;;;;;;;FRFR1EQQKD1;SXSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213412;;;;;;;;FRFR1EQQKD2;AAKV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213411;;;;;;;;FRFR1EZKZP1;AAKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213512;;;;;;;;FRFR1EZKZP2;ABZU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213511;;;;;;;;FRFR1ETXMH1;SAGH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211512;;;;;;;;FRFR1EBAQQ2;LKFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213612;;;;;;;;FRFR1EBAQQ1;XFFS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212711;;;;;;;;FRS56ERXTL1;XFFS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE213211;;;;;;;;FRS56ERYMQ2;XEVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212612;;;;;;;;FRFR1ESTYH1;XEVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212011;;;;;;;;FRFR1EGZYW1;XJXE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211611;;;;;;;;FRFR1ELCPN1;XGXB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211612;;;;;;;;FRFR1EQSCP1;XGXB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212512;;;;;;;;FRFR1EMPFR1;XFFU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211711;;;;;;;;FRFR1EAMUM1;XFFU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211812;;;;;;;;FRFR1ENANM1;XJJC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211811;;;;;;;;FRFR1EHZAN1;XJJC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211911;;;;;;;;FRFR1ENSBR1;XESH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212012;;;;;;;;FRFR1EKZWY1;ABZU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE211912;;;;;;;;FRFR1EKXYM1;EZUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212511;;;;;;;;FRFR1EQDCN1;EZUX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212112;;;;;;;;FRFR1EPBUE1;PBKZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212211;;;;;;;;FRFR1EZRUU1;VAXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212411;;;;;;;;FRFR1ENERC1;TXVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212111;;;;;;;;FRFR1EPALM1;TXVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS22PSDE212311;;;;;;;;FRFR1EPBUH1;HTXU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296811;;;;;;;;FRFR1EADXC1;HTXU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297011;;;;;;;;FRS56EACUW1;PBKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297111;;;;;;;;FRS56EACAS2;LWTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297122;;;;;;;;FRS56EADAS1;TBLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297121;;;;;;;;FRS56EBJNP1;FKMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297012;;;;;;;;FRS56ECDYR1;FKMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296911;;;;;;;;FRS56EBLBU2;LWTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296912;;;;;;;;FRS56EBGPY1;TBLY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296712;;;;;;;;FRS56EYGJC2;TDFJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297211;;;;;;;;FRS56EAGYL1;TDFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296812;;;;;;;;FRS56EBGPY2;ZPDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297112;;;;;;;;FRS56EBTSZ1;ZPDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297511;;;;;;;;FRS56EBTEQ2;ZSRH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297212;;;;;;;;FRS56EYGJC1;YLPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297311;;;;;;;;FRS56EBTSZ2;UNSU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297312;;;;;;;;FRS56EBJZM1;QMVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297411;;;;;;;;FRS56EBJNP2;QMVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297412;;;;;;;;FRS56EBKFC1;UNSU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297512;;;;;;;;FRS56EBJZM2;TEHC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297611;;;;;;;;FRS56EAGSP1;TVCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297612;;;;;;;;FRS56ECDYR2;TMLM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297711;;;;;;;;FRS56ECELQ1;TYAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296612;;;;;;;;FRS56ECELQ2;TVGD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297811;;;;;;;;FRS56ECCAM1;TTJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297712;;;;;;;;FRS56EPBYX1;QKVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296711;;;;;;;;FRS56EAMSW2;QKVC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295812;;;;;;;;FRS56EAKME1;FTHR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296611;;;;;;;;FRS56EYBMF2;FTHR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296512;;;;;;;;FRS56EYBMF1;RSMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295412;;;;;;;;FRS56ECCAM2;DJKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297911;;;;;;;;FRS56EBYHE2;DJKL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295411;;;;;;;;FRS56EAKHM1;MXJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295511;;;;;;;;FRS56EBYHE1;HQSN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295512;;;;;;;;FRS56EBYVQ2;HSTD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295612;;;;;;;;FRS56EBYVQ1;HTAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295611;;;;;;;;FRS56EAHRB2;HXTK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295712;;;;;;;;FRS56EAHRB1;GSWF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295711;;;;;;;;FRS56EAKHM2;HKWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295811;;;;;;;;FRS56EAGYL2;GQVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295912;;;;;;;;FRS56EAGSP2;EVXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295911;;;;;;;;FRS56EAMSW1;MXJD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296012;;;;;;;;FRS56EBTEQ1;BDND1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296011;;;;;;;;FRS56EQRLS1;GKYW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296111;;;;;;;;FRS56EPARR2;HPFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296112;;;;;;;;FRS56EPARR1;ZGTD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296211;;;;;;;;FRS56ERXBV2;ZANZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296212;;;;;;;;FRS56ERXBV1;ZGTD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296312;;;;;;;;FRS56ERXCB2;RSMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296311;;;;;;;;FRS56ERXCB1;YLPX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296412;;;;;;;;FRS56EQUGV2;ZSRH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296411;;;;;;;;FRS56EQUGV1;QHTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD296511;;;;;;;;FRS56EQUKK2;XUXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297812;;;;;;;;FRS56EQUKK1;TWMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299812;;;;;;;;FRS56ERWGT2;ULMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD297912;;;;;;;;FRS56ERWGT1;BBWB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299311;;;;;;;;FRS56ERWME2;BBWB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299411;;;;;;;;FRS56ERWME1;MXPP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299412;;;;;;;;FRS56EQRLS2;RQMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299511;;;;;;;;FRS56ERHHA1;RQMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299512;;;;;;;;FRS56ENPDC2;ZRKG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299612;;;;;;;;FRS56EBMQA2;ZPME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299611;;;;;;;;FRS56EBNSV2;ZPME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299711;;;;;;;;FRS56EBNSV1;ZRKG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299712;;;;;;;;FRS56ELUXU1;ZQVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299811;;;;;;;;FRS56EBPEQ1;ZQVT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299912;;;;;;;;FRS56EBLXQ2;ZNSZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299911;;;;;;;;FRS56EBLXQ1;XUXT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910012;;;;;;;;FRS56EBMQA1;ULMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910011;;;;;;;;FRS56EBPEQ2;MXPP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910112;;;;;;;;FRS56EBQAM2;AYHT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910111;;;;;;;;FRS56EBQAM1;QHTS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910221;;;;;;;;FRS56EBRBZ2;QHVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910212;;;;;;;;FRS56EBRBZ1;QHVB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910231;;;;;;;;FRS56ENPDC1;AZLH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910232;;;;;;;;FRS56ELUXU2;ACJY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910211;;;;;;;;FRS56EAMSM2;ADCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910222;;;;;;;;FRS56EBKWS2;VKCN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910311;;;;;;;;FRS56EACUW2;CNEU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295311;;;;;;;;FRS56ERJKN2;VKCN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299312;;;;;;;;FRS56EABAQ1;VJYV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299211;;;;;;;;FRS56EAANM2;VJYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298012;;;;;;;;FRS56EAANM1;PPAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299212;;;;;;;;FRS56EAAEN2;PPAF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298011;;;;;;;;FRS56EAAEN1;CNEU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298112;;;;;;;;FRS56EAALG2;XESH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298111;;;;;;;;FRS56EAALG1;XEVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298211;;;;;;;;FRS56EAEHM2;XJXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298212;;;;;;;;FRS56ERLBX2;BKXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298312;;;;;;;;FRS56ERLBX1;MZCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298311;;;;;;;;FRS56ERKNW2;LLRP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298411;;;;;;;;FRS56ERKNW1;NRXW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298412;;;;;;;;FRS56ERHPW2;NAAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298512;;;;;;;;FRS56ERHPW1;KXUV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298511;;;;;;;;FRS56ERHLT2;KPCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298611;;;;;;;;FRS56EABAQ2;LKGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298612;;;;;;;;FRS56ERHUJ1;LADM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298712;;;;;;;;FRS56ERHUJ2;NXDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298711;;;;;;;;FRS56EADXR1;BEHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298812;;;;;;;;FRS56EAEAT1;RUAX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298811;;;;;;;;FRS56EADXR2;SYPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298911;;;;;;;;FRS56EAEHM1;SMBK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD298912;;;;;;;;FRS56EAEAT2;QDUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299012;;;;;;;;FRS56EADSA1;PJAU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299011;;;;;;;;FRS56EADGW2;TWAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299112;;;;;;;;FRS56EADSA2;QDUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD299111;;;;;;;;FRS56EBKGA1;KXUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295312;;;;;;;;FRS56EACAS1;NAAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291511;;;;;;;;FRS56EPCEX2;KPCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295211;;;;;;;;FRS56EPCEX1;JMYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291312;;;;;;;;FRS56ERHUR2;JCAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291411;;;;;;;;FRS56ERHUR1;NRXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910411;;;;;;;;FRS56EBKGA2;NXDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291512;;;;;;;;FRS56ERHLT1;PJAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291612;;;;;;;;FRS56ERJKN1;LKGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291611;;;;;;;;FRS56EBLBU1;LADM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291712;;;;;;;;FRS56ERJKM2;LLRP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291711;;;;;;;;FRS56ERLFM1;MZCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291812;;;;;;;;FRS56ERLLU2;RDGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291811;;;;;;;;FRS56ERLDB1;RUAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291911;;;;;;;;FRS56ERLFM2;SMBK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291912;;;;;;;;FRS56EBKFC2;QTDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292011;;;;;;;;FRS56EXYEU1;RDGE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292012;;;;;;;;FRS56EAMGS2;MCMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292121;;;;;;;;FRS56EAMSM1;TWAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292122;;;;;;;;FRS56EXYEU2;DAYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292111;;;;;;;;FRS56EAMDC1;KJMC3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292112;;;;;;;;FRS56EAKME2;LVVV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292211;;;;;;;;FRS56EAMGS1;LVVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292212;;;;;;;;FRS56EAMDC2;KJMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292311;;;;;;;;FRS56EBKWS1;KJMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292312;;;;;;;;FRS56EPBYX2;KLFN4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292411;;;;;;;;FRS56ERHTB2;KLFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292412;;;;;;;;FRS56ERHSV1;KLFN3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291412;;;;;;;;FRS56ERLDB2;KLFN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291311;;;;;;;;FRS56EAGHF2;FGRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292511;;;;;;;;FRS56ERJKM1;FGRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291211;;;;;;;;FRS56ERKHR2;GYTZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29112;;;;;;;;FRS56ERKHR1;GYTZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29111;;;;;;;;FRS56ERKHD2;GYTZ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29211;;;;;;;;FRS56ERKHD1;QQHP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29212;;;;;;;;FRS56ERHSV2;LCPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29311;;;;;;;;FRS56EAGHF1;LVVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29312;;;;;;;;FRS56ERHTB1;LCPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29412;;;;;;;;FRS56ERLLU1;FNRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29411;;;;;;;;FRS56EAGRB2;DCVG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29511;;;;;;;;FRS56EAFVF2;CDNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29512;;;;;;;;FRS56EAFVF1;CRXB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29611;;;;;;;;FRS56EAFMZ2;TEYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29612;;;;;;;;FRS56EAFMZ1;TEYB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29712;;;;;;;;FRFR1EGQLG1;EKLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29711;;;;;;;;FRFR1EBDAL1;JCAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29812;;;;;;;;FRFR1EPDJB2;FNRN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29811;;;;;;;;FRFR1EJMHY1;GCTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29911;;;;;;;;FRFR1EZVZA1;MCMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD29912;;;;;;;;FRFR1EZTBV2;JMYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291012;;;;;;;;FRFR1EZTBV1;EKLU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291011;;;;;;;;FRFR1EZVZA2;DAYJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291111;;;;;;;;FRFR1EVYKS2;DCVG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291112;;;;;;;;FRFR1EVYKS1;GCTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD291212;;;;;;;;FRFR1ESCBZ2;QTDW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292512;;;;;;;;FRFR1ESCBZ1;XEVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292612;;;;;;;;FRFR1EJUMK1;JTEH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295212;;;;;;;;FRFR1ECGJE2;XAFA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293912;;;;;;;;FRFR1EJUMK2;PVQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294012;;;;;;;;FRFR1EANKD2;FQZR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294112;;;;;;;;FRFR1EGFGX1;XBGQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294111;;;;;;;;FRFR1EYAMA1;XBGQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294211;;;;;;;;FRFR1EANKD1;XAFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294212;;;;;;;;FRFR1EZETA1;XAFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294311;;;;;;;;FRFR1EQFYY1;XAFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294312;;;;;;;;FRFR1EKMUJ1;EFCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294411;;;;;;;;FRFR1EYPCC2;WWHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294412;;;;;;;;FRFR1EYLWA2;WWHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294512;;;;;;;;FRFR1EYNLY1;EFCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294511;;;;;;;;FRFR1EYNLY2;DVVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294611;;;;;;;;FRFR1EYPTK2;WHMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294612;;;;;;;;FRFR1EYRUA1;WHMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294711;;;;;;;;FRFR1EYRQP1;PVQR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294712;;;;;;;;FRFR1EYRQP2;FQZR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294811;;;;;;;;FRFR1EYRUA2;XBTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294812;;;;;;;;FRFR1EYPTK1;XQRS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294911;;;;;;;;FRFR1EYPCC1;PAMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294912;;;;;;;;FRFR1EYSXM1;PAMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295011;;;;;;;;FRFR1EYSXM2;SUFR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295012;;;;;;;;FRFR1EYLWA1;SUFR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295111;;;;;;;;FRFR1EYLQM2;XNQB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD295112;;;;;;;;FRFR1EYLQM1;XQRS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD294011;;;;;;;;FRFR1EYAMA2;XNQB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293911;;;;;;;;FRFR1EGFGX2;XBTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292611;;;;;;;;FRFR1ECGJE1;XSDQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293812;;;;;;;;FRFR1EMQKT1;XSDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292712;;;;;;;;FRFR1EMRPR2;XFPB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292711;;;;;;;;FRFR1EMSBU2;XFPB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292811;;;;;;;;FRFR1ETNDY1;XBZQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292812;;;;;;;;FRFR1ENNAU1;XBZQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292911;;;;;;;;FRFR1EBYQS1;TLAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD292912;;;;;;;;FRFR1ESBAZ2;HHXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293011;;;;;;;;FRFR1EMRDA2;CRXB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293012;;;;;;;;FRFR1EMRDA1;GVWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293111;;;;;;;;FRFR1ESBAZ1;FRWS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293112;;;;;;;;FRFR1ELMAZ1;FRWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293211;;;;;;;;FRFR1EGYTD2;GKVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293212;;;;;;;;FRFR1EGZCK1;GKVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293311;;;;;;;;FRFR1EGZCK2;UUPF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293312;;;;;;;;FRFR1EGYTD1;UUPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293412;;;;;;;;FRFR1EYFVB2;UUPF3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293411;;;;;;;;FRFR1EMSBU1;UUPF4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293511;;;;;;;;FRFR1EMRPR1;FMFE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293512;;;;;;;;FRFR1EHQYP2;FNTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293611;;;;;;;;FRFR1ECQUR2;FNTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293612;;;;;;;;FRFR1EMMGC1;BEHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293711;;;;;;;;FRFR1EMPSV1;SYPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293712;;;;;;;;FRFR1EMXKM1;CDNZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD293811;;;;;;;;FRFR1EMRAX1;BKXG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910312;;;;;;;;FRFR1EXTHA1;RGFP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913911;;;;;;;;FRFR1EXTHA2;XUAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910412;;;;;;;;FRFR1ECQUR1;MAZX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917411;;;;;;;;FRFR1EHRTY2;WSUD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917511;;;;;;;;FRFR1EJDPN2;HHXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917512;;;;;;;;FRFR1EJDPN1;GVWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917611;;;;;;;;FRFR1EPMZU1;PTPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917612;;;;;;;;FRFR1EPMZU2;QDLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917711;;;;;;;;FRFR1EHRTY1;WSBQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917712;;;;;;;;FRFR1EHQYP1;WSBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917811;;;;;;;;FRFR1EKKTW2;WSUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917812;;;;;;;;FRFR1EKKTW1;XUAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917911;;;;;;;;FRFR1EATZE1;PTPF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917912;;;;;;;;FRFR1EBTLS1;QDLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918012;;;;;;;;FRFR1EKMXZ2;HYWB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918011;;;;;;;;FRFR1EZKEQ1;HQLF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918112;;;;;;;;FRFR1EGWJA1;MAZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918111;;;;;;;;FRFR1ELPSC1;RGFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918211;;;;;;;;FRFR1ELQWX2;VBTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918212;;;;;;;;FRFR1ELQMB1;LSGH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918311;;;;;;;;FRFR1ELQMB2;CAQH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918312;;;;;;;;FRFR1ELPRQ1;GUGW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918411;;;;;;;;FRFR1ELPSC2;XAUF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918412;;;;;;;;FRFR1ELQWX1;UJTU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918511;;;;;;;;FRFR1ELPRQ2;UJTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918512;;;;;;;;FRFR1EGEKA1;HVAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918612;;;;;;;;FRFR1EBBMH2;HVAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917412;;;;;;;;FRFR1EBBMH1;UWDH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917312;;;;;;;;FRFR1EWCWU1;HTGX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918712;;;;;;;;FRFR1EKMXZ1;NNSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917311;;;;;;;;FRFR1EFGFP1;GMYK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916011;;;;;;;;FRFR1EFGFP2;NHUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916111;;;;;;;;FRFR1EGZEX2;FLVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916112;;;;;;;;FRFR1ENDMP1;PTUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916412;;;;;;;;FRFR1EUZGC2;FWFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916421;;;;;;;;FRFR1EUZGC1;DXGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916422;;;;;;;;FRFR1ETMNJ2;DXGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916411;;;;;;;;FRFR1ETMNJ1;XAUF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916511;;;;;;;;FRFR1EGZEX1;GUGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916512;;;;;;;;FRFR1EMQMB1;RZQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916612;;;;;;;;FRFR1EJLCQ2;WKPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916611;;;;;;;;FRFR1EMQMB3;EZLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916712;;;;;;;;FRFR1EMQMB2;JAKH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916711;;;;;;;;FRFR1EVFMM1;ARJZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916812;;;;;;;;FRFR1EVFMM2;KUAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916811;;;;;;;;FRFR1EVFMM3;KUAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916911;;;;;;;;FRFR1EJLCQ1;ARJZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916912;;;;;;;;FRFR1EWCWU2;QZPQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917011;;;;;;;;FRFR1EBTLR1;QZPQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917012;;;;;;;;FRFR1EATZE2;JYES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917111;;;;;;;;FRFR1EQYVR1;MGTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917112;;;;;;;;FRFR1EQVYV1;EVBZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917211;;;;;;;;FRFR1EFMTK1;MGTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2917212;;;;;;;;FRFR1EPYNQ1;JYES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918611;;;;;;;;FRFR1EXDZD1;WKPH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918711;;;;;;;;FRFR1EXWQX1;EVBZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915911;;;;;;;;FRFR1EAMGE1;XNSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920111;;;;;;;;FRFR1EAMGE2;QUHR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920211;;;;;;;;FRFR1EFQHQ1;HBCG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920212;;;;;;;;FRFR1EFQXL1;QUHR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920311;;;;;;;;FRFR1EFPRJ1;YHVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920312;;;;;;;;FRFR1EGDRJ1;XWXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920412;;;;;;;;FRFR1EGDMA1;YHVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920411;;;;;;;;FRFR1EGCTL1;XWXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920511;;;;;;;;FRFR1EAQMA1;RLSL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920512;;;;;;;;FRFR1EAQMA2;RSYU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920611;;;;;;;;FRFR1EESYJ1;RMHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920612;;;;;;;;FRFR1EPKDD1;SGMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920811;;;;;;;;FRFR1EGHKJ1;SAKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920812;;;;;;;;FRFR1EGHYJ1;RWKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920911;;;;;;;;FRFR1EQYVR2;SDNF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920912;;;;;;;;FRFR1EKBHH1;SQQH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2921011;;;;;;;;FRFR1EPAWY2;SDZZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2921012;;;;;;;;FRFR1EPAWY1;UBFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2921121;;;;;;;;FRFR1EGMLH1;EXPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2921111;;;;;;;;FRFR1EGKUC1;CSRS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2921112;;;;;;;;FRFR1EGLSV1;CSRS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2921122;;;;;;;;FRFR1EGSGU1;MDYG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2921211;;;;;;;;FRFR1EGMUJ1;SMZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2921212;;;;;;;;FRFR1EGLLN1;HQHG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2921312;;;;;;;;FRFR1EGLQJ1;YSKN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920112;;;;;;;;FRFR1EGNAS1;HQHG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920012;;;;;;;;FRFR1EGHVH1;PAXH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918811;;;;;;;;FRFR1EGMDH1;SMZX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2920011;;;;;;;;FRFR1EYFVB1;JVHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918812;;;;;;;;FRFR1EGNLJ1;XNSF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918912;;;;;;;;FRFR1EGNLJ2;MDYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2918911;;;;;;;;FRFR1EQMXR2;JVHQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919012;;;;;;;;FRFR1EVLEZ2;HBCG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919011;;;;;;;;FRFR1ERHMQ2;UBVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919111;;;;;;;;FRFR1ENKMB1;PAXH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919112;;;;;;;;FRFR1ENKMB2;UBVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919212;;;;;;;;FRFR1ERHMQ1;YSKN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919211;;;;;;;;FRFR1ETKYJ2;EZLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919311;;;;;;;;FRFR1ETKYJ1;JAKH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919312;;;;;;;;FRFR1EMBVH3;BZDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919411;;;;;;;;FRFR1EMBVH2;JUWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919412;;;;;;;;FRFR1EMBVH1;AVUQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919511;;;;;;;;FRFR1EQHJN2;FVAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919512;;;;;;;;FRFR1EQHJN1;SVNL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919611;;;;;;;;FRFR1EQLBQ1;UMMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919612;;;;;;;;FRFR1EQFUY1;UMMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919712;;;;;;;;FRFR1EQFUY2;SVNL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919711;;;;;;;;FRFR1EVLEZ1;RSHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919812;;;;;;;;FRFR1EDHXQ1;RSHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919811;;;;;;;;FRFR1EDHXQ2;NXUT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2921311;;;;;;;;FRFR1ESBGH1;NXUT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919912;;;;;;;;FRFR1EBXSN2;NEAG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2916012;;;;;;;;FRFR1EZVVS2;NEAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2919911;;;;;;;;FRFR1EQWRL2;DRXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915912;;;;;;;;FRFR1EZYNV1;TDXQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911811;;;;;;;;FRFR1ERVUP1;JJDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911911;;;;;;;;FRFR1EGVYK1;FRXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911912;;;;;;;;FRFR1EGJLA1;PXMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912012;;;;;;;;FRFR1EMLHD1;TZED1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912011;;;;;;;;FRFR1EBXSN1;SJRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912112;;;;;;;;FRFR1EZVVS1;KJWR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912111;;;;;;;;FRFR1EQWRL1;CVLD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912212;;;;;;;;FRFR1EFQHK1;TVWE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912211;;;;;;;;FRFR1EFQHK2;KJWR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912311;;;;;;;;FRFR1EMLHD2;CVLD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912312;;;;;;;;FRFR1EQNRN2;TVWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912412;;;;;;;;FRFR1EQLBQ2;SJRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912411;;;;;;;;FRFR1ESBGH2;WESA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912511;;;;;;;;FRFR1EQMXR1;ZEXZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915711;;;;;;;;FRFR1EZGWE1;ZEXZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912612;;;;;;;;FRFR1ELNHP1;TZED2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912611;;;;;;;;FRFR1EHDRA1;WESA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912711;;;;;;;;FRFR1EJMNM1;PXMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912712;;;;;;;;FRFR1EPSFJ1;AVUQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912812;;;;;;;;FRFR1ENCNS1;DRXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912811;;;;;;;;FRFR1ESMGV1;ETWC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912911;;;;;;;;FRFR1ELNMQ1;BZDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912912;;;;;;;;FRFR1ERLAQ1;ETWC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913011;;;;;;;;FRFR1EHUDN1;KQGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911812;;;;;;;;FRFR1EQJPX1;QVRX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911712;;;;;;;;FRFR1EMJGL1;ZRUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913111;;;;;;;;FRFR1ECCBK1;BWHQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911711;;;;;;;;FRFR1EXEYH2;XCCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910512;;;;;;;;FRFR1EXEYH1;TPAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910612;;;;;;;;FRFR1ENWAQ1;ZRUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910611;;;;;;;;FRFR1EPWHD1;TPAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910712;;;;;;;;FRFR1EKQJQ1;AYHC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910711;;;;;;;;FRFR1EWHMP1;VMUB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910811;;;;;;;;FRFR1EQNRN1;VMUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910812;;;;;;;;FRFR1EPATE1;BYDX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910911;;;;;;;;FRFR1ETEVA1;TDXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910912;;;;;;;;FRFR1ENXGP1;XCCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911011;;;;;;;;FRFR1ENVCX1;BYDX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911012;;;;;;;;FRFR1EPLCQ1;KQGR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911111;;;;;;;;FRFR1EHGSQ1;BWHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911112;;;;;;;;FRFR1EKFSW1;QVRX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911212;;;;;;;;FRFR1ERFSX1;AHMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911211;;;;;;;;FRFR1EWXQK1;JJDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911312;;;;;;;;FRFR1ELXMD1;JUWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911311;;;;;;;;FRFR1EHHWF1;AHMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911411;;;;;;;;FRFR1EDUWJ1;APME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911412;;;;;;;;FRFR1EALUP1;APME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911512;;;;;;;;FRFR1EGJLA2;KELH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911511;;;;;;;;FRFR1EGVYK2;KELH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911612;;;;;;;;FRFR1EELYE1;ARMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2911611;;;;;;;;FRFR1ELFBH1;AYHC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913012;;;;;;;;FRFR1EVBEA2;ARMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2912512;;;;;;;;FRFR1EVBEA1;CLSN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913112;;;;;;;;FRFR1EKSSH1;CLSN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914511;;;;;;;;FRFR1EKVHQ1;KFSZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914611;;;;;;;;FRFR1EKCYV1;KFSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914612;;;;;;;;FRFR1EKNKN1;KLHT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914711;;;;;;;;FRFR1ECMFL1;RZQV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914712;;;;;;;;FRFR1EJQDC1;QDNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914812;;;;;;;;FRFR1ENVMY1;YRJU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914811;;;;;;;;FRFR1ENVMY2;CVSC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914911;;;;;;;;FRFR1ENWKR2;RVTT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914912;;;;;;;;FRFR1ENWKR1;YMYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915012;;;;;;;;FRFR1ENLWP2;YMYF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913212;;;;;;;;FRFR1ENLWP1;RVTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915112;;;;;;;;FRFR1ENVHG2;YRJU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915111;;;;;;;;FRFR1EMAVG1;HDFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915212;;;;;;;;FRFR1EFPTQ1;HDFJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915211;;;;;;;;FRFR1EFPTQ2;DVLF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915312;;;;;;;;FRFR1EPLXJ2;CVSC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915311;;;;;;;;FRFR1EJBUA1;JEWZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915411;;;;;;;;FRFR1EJBUA2;DVLF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915412;;;;;;;;FRFR1EAMFS2;GMWJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915512;;;;;;;;FRFR1EAMFS1;GMWJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915511;;;;;;;;FRFR1EQCTY1;ATUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915612;;;;;;;;FRFR1EPLXJ1;JEWZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915611;;;;;;;;FRFR1ENXPU2;GXZN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915712;;;;;;;;FRFR1EQLLK2;ZNXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914512;;;;;;;;FRFR1ELFCK1;RTGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2915011;;;;;;;;FRFR1ELFCK2;VJKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914412;;;;;;;;FRFR1EPRUS1;GZVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913811;;;;;;;;FRFR1EPRUS2;GZVB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914411;;;;;;;;FRFR1ENXPU1;SGKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913211;;;;;;;;FRFR1EQLLK1;SNQK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913311;;;;;;;;FRFR1ENVHG1;RZRZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913312;;;;;;;;FRFR1ELJBN1;SDGY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913412;;;;;;;;FRFR1ERVUP2;ANQA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913411;;;;;;;;FRFR1ELBCA1;UDYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913512;;;;;;;;FRFR1EMJSA1;ANQA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913511;;;;;;;;FRFR1EDNVJ2;JVZN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913611;;;;;;;;FRFR1EMDLC1;UDYA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913612;;;;;;;;FRFR1ETLLV2;JVZN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913711;;;;;;;;FRFR1EPKYZ1;RTGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913712;;;;;;;;FRFR1EMDLC2;GXZN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913812;;;;;;;;FRFR1ETLLV1;ATUB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2910511;;;;;;;;FRFR1ETMVM2;AFWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2913912;;;;;;;;FRFR1ETMVM1;AFWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914012;;;;;;;;FRFR1EYXBT2;EZBE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914011;;;;;;;;FRFR1EYXBT1;QAFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914112;;;;;;;;FRFR1ESBEC1;AKMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914111;;;;;;;;FRFR1EXZVX1;AKMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914211;;;;;;;;FRFR1EXZVX2;PZPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914212;;;;;;;;FRFR1EZYNV2;PZPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914312;;;;;;;;FRFR1EMJSA2;RZMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS29PSD2914311;;;;;;;;FRFR1EPKYZ2;SFKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FROTHPOTHR2512;;;;;;;;FRFR1ESBEC2;SFKV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FROTHPOTHR2511;;;;;;;;FRFR1EWNDS1;RZMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FROTHPOTHR2522;;;;;;;;FRFR1EWNVS2;RGQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FROTHPOTHR2521;;;;;;;;FRFR1EWPHT1;SAHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRLUMECASSAGNE11;;;;;;;;FRFR1EWNVS1;ZZWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRPVDEVGFRA71;;;;;;;;FRFR1EWLJQ2;ZZWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRE10E921;;;;;;;;FRFR1EWNDS2;WPMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1ELKDM1;;;;;;;;FRFR1EWMNK1;RSJR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP38315A;;;;;;;;FRFR1EWMNK2;QEVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP14201A;;;;;;;;FRFR1ELQXG1;QGYR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP33165A;;;;;;;;FRFR1EWPHT2;QAFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP07129A;;;;;;;;FRFR1EWLJQ1;PZFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP34111A;;;;;;;;FRFR1EJEMK1;EZBE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP42312A;;;;;;;;FRFR1ELQXG2;ZLKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP85003A;;;;;;;;FRFR1EDNVJ1;ZBNE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP44015A;;;;;;;;FRFR1EJEMK2;ZLKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP42299A;;;;;;;;FRFR1ENDMP2;ZBNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP79264A;;;;;;;;FRFR1EKMUJ2;QGYR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP09306A;;;;;;;;FRFR1EDNMA1;QGKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP07064A;;;;;;;;FRFR1EVFCU1;QGKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP67320A;;;;;;;;FRFR1EQBBB1;QHMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP86293A;;;;;;;;FRFR1EQXWQ1;QAHU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP69260A;;;;;;;;FRFR1ETTDQ1;PZFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRSUAP71394A;;;;;;;;FRFR1ECDFD1;QHMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRMAPE000000006659;;;;;;;;FRFR1ECCMS1;QAHU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1ENDBC1;;;;;;;;FRFR1ECCSW1;QEVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRLUM3RIVIERES1;;;;;;;;FRFR1ETMKL1;SHRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53096A;;;;;;;;FRFR1EPDWR1;SHRV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53097B;;;;;;;;FRFR1EUXPL1;VJKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53097A;;;;;;;;FRFR1EBXYD1;AWRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53096B;;;;;;;;FRFR1EDMPA1;YMUL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53084A;;;;;;;;FRFR1EAETJ1;DTHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53100A;;;;;;;;FRFR1EBYVV1;DKTG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53077A;;;;;;;;FRFR1ECAAE1;DMWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53062B;;;;;;;;FRFR1ELYVL1;ECNU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53103A;;;;;;;;FRFR1EDZYZ1;GUAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53062A;;;;;;;;FRFR1ETQCX1;GUAQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53107A;;;;;;;;FRFR1EQQHP1;UHAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53110A;;;;;;;;FRFR1ESNJP1;AWDZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53121A;;;;;;;;FRFR1EZNSZ1;KETU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53122A;;;;;;;;FRFR1EXDHA1;KETU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53123A;;;;;;;;FRFR1EWESD1;MTXK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53127A;;;;;;;;FRFR1EWWBW1;MTXK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53054B;;;;;;;;FRFR1EXLMG1;UHAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53017A;;;;;;;;FRFR1EDKMN2;AWDZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53001A;;;;;;;;FRFR1EXULB1;PBLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53003A;;;;;;;;FRFR1EWNBJ1;YMUL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53007A;;;;;;;;FRFR1EDKMN1;PBLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53014A;;;;;;;;FRFR1EWTJP2;AKDV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53014B;;;;;;;;FRFR1EWTJP1;ZNXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53015A;;;;;;;;FRFR1EWSVH1;XSGS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53016A;;;;;;;;FRFR1EWSVH2;TSLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53130A;;;;;;;;FRFR1EAXYF1;XSGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53018A;;;;;;;;FRFR1EVBYB1;TSLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53025A;;;;;;;;FRFR1EBXWM1;AKDV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53034A;;;;;;;;FRFR1ESXSX1;DGLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53037A;;;;;;;;FRFR1EAAKV2;DMRS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53054A;;;;;;;;FRFR1EAAKV1;TVZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53181A;;;;;;;;FRFR1EABZU2;TVZV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53210A;;;;;;;;FRFR1ESAGH1;DGSS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53188A;;;;;;;;FRFR1ELKFF1;DLAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53185A;;;;;;;;FRFR1EXFFS2;DPKW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53161A;;;;;;;;FRFR1EXFFS1;DLKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53147B;;;;;;;;FRFR1EXEVX2;AWRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53154A;;;;;;;;FRFR1EXEVX1;MMCG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53152A;;;;;;;;FRFR1EXJXE2;DGKG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53147C;;;;;;;;FRFR1EXGXB2;FPSK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53211A;;;;;;;;FRFR1EXGXB1;CSTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53243A;;;;;;;;FRFR1EXFFU2;HGHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53246A;;;;;;;;FRFR1EXFFU1;CPYB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53255A;;;;;;;;FRFR1EXJJC2;CPYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53257A;;;;;;;;FRFR1EXJJC1;TUAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53267A;;;;;;;;FRFR1EXESH1;BVAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53271A;;;;;;;;FRFR1EABZU1;BVAB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53273A;;;;;;;;FRFR1EEZUX1;TUAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53130B;;;;;;;;FRFR1EEZUX2;PHKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53130H;;;;;;;;FRFR1EPBKZ2;ZYWF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53130C;;;;;;;;FRFR1EVAXG1;ZYWF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53147A;;;;;;;;FRFR1ETXVJ1;PHKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53130D;;;;;;;;FRFR1ETXVJ2;PYBA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53130E;;;;;;;;FRFR1EHTXU2;PYBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53130F;;;;;;;;FRFR1EHTXU1;DGKG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53130G;;;;;;;;FRFR1EPBKZ1;STXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53137A;;;;;;;;FRFR1ELWTM2;STXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53146A;;;;;;;;FRFR1ETBLY1;HGHX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53140A;;;;;;;;FRFR1EFKMT2;FSEB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS53P53136A;;;;;;;;FRFR1EFKMT1;FPSK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRE000009336824;;;;;;;;FRFR1ELWTM1;ZAYJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49099B;;;;;;;;FRFR1ETBLY2;ZAYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49099F;;;;;;;;FRFR1ETDFJ2;MMCG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49099C;;;;;;;;FRFR1ETDFJ1;FSEB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49099D;;;;;;;;FRFR1EZPDB2;XNAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49099A;;;;;;;;FRFR1EZPDB1;XNAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49099E;;;;;;;;FRFR1EZSRH2;CSTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49099I;;;;;;;;FRFR1EYLPX1;VLVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49099G;;;;;;;;FRFR1EUNSU1;VLVB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49099H;;;;;;;;FRFR1EQMVA1;YWXF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49103A;;;;;;;;FRFR1EQMVA2;YWXF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49106A;;;;;;;;FRFR1EUNSU2;FAYZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49094A;;;;;;;;FRFR1ETEHC1;FAYZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49109A;;;;;;;;FRFR1ETVCV1;NVSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49069A;;;;;;;;FRFR1ETMLM1;NVSB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49092B;;;;;;;;FRFR1ETYAZ1;RCKT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49054B;;;;;;;;FRFR1ETVGD1;WWKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49110A;;;;;;;;FRFR1ETTJS1;WXEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49055A;;;;;;;;FRFR1EQKVC1;SRQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49063A;;;;;;;;FRFR1EQKVC2;SRTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49065A;;;;;;;;FRFR1EFTHR2;SRTS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49068A;;;;;;;;FRFR1EFTHR1;SRQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49069B;;;;;;;;FRFR1ERSMX2;RXDZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49072A;;;;;;;;FRFR1EDJKL1;RSCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49080A;;;;;;;;FRFR1EDJKL2;RSCD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49083A;;;;;;;;FRFR1EMXJD1;RVTJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49092A;;;;;;;;FRFR1EHQSN1;WFVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49135A;;;;;;;;FRFR1EHSTD1;RVTJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49132A;;;;;;;;FRFR1EHTAK1;WLZS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49137A;;;;;;;;FRFR1EHXTK1;WLZS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49140A;;;;;;;;FRFR1EGSWF1;WVZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49145A;;;;;;;;FRFR1EHKWK1;WVZL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49149A;;;;;;;;FRFR1EGQVW1;WWKD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49151A;;;;;;;;FRFR1EEVXW1;WXEL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49153A;;;;;;;;FRFR1EMXJD2;RCKT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49155A;;;;;;;;FRFR1EBDND1;RXDZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49160A;;;;;;;;FRFR1EGKYW1;PFEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49002A;;;;;;;;FRFR1EHPFD1;TPFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49162A;;;;;;;;FRFR1EZGTD1;TPFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49163A;;;;;;;;FRFR1EZANZ1;PCSK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49054A;;;;;;;;FRFR1EZGTD2;PCSK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49130A;;;;;;;;FRFR1ERSMX1;EDFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49110B;;;;;;;;FRFR1EYLPX2;EDFK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49117A;;;;;;;;FRFR1EZSRH1;SMVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49123A;;;;;;;;FRFR1EQHTS1;SMVY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49125A;;;;;;;;FRFR1EXUXT1;EBSP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49125B;;;;;;;;FRFR1ETWMX1;EBSP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49125C;;;;;;;;FRFR1EULMC1;CVGL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49126A;;;;;;;;FRFR1EBBWB2;CVGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49127A;;;;;;;;FRFR1EBBWB1;WXWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49127B;;;;;;;;FRFR1EMXPP1;WXWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49129A;;;;;;;;FRFR1ERQMC1;RTKZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49129B;;;;;;;;FRFR1ERQMC2;WFVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007P;;;;;;;;FRFR1EZRKG1;RTKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49050B;;;;;;;;FRFR1EZPME1;SKPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007I;;;;;;;;FRFR1EZPME2;LRMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007J;;;;;;;;FRFR1EZRKG2;LWAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007K;;;;;;;;FRFR1EZQVT1;HSTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007L;;;;;;;;FRFR1EZQVT2;HSTB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49167A;;;;;;;;FRFR1EZNSZ2;LWAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007M;;;;;;;;FRFR1EXUXT2;XQMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007N;;;;;;;;FRFR1EULMC2;NPHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007O;;;;;;;;FRFR1EMXPP2;ELSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007Q;;;;;;;;FRFR1EAYHT1;VRMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007R;;;;;;;;FRFR1EQHTS2;XZZF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007S;;;;;;;;FRFR1EQHVB1;VRMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007T;;;;;;;;FRFR1EQHVB2;TXHB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007U;;;;;;;;FRFR1EAZLH1;TXHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007V;;;;;;;;FRFR1EACJY1;YXKK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007H;;;;;;;;FRFR1EADCV1;XQMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49004A;;;;;;;;FRFR1EVKCN2;MPGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49006A;;;;;;;;FRFR1ECNEU1;FBGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007A;;;;;;;;FRFR1EVKCN1;FBGW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007AA;;;;;;;;FRFR1EVJYV2;QVGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007AB;;;;;;;;FRFR1EVJYV1;SKPW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007AC;;;;;;;;FRFR1EPPAF1;FDDV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007D;;;;;;;;FRFR1EPPAF2;MFAQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007E;;;;;;;;FRFR1ECNEU2;TDCP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007F;;;;;;;;FRFR1EXESH2;TDCP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007G;;;;;;;;FRFR1EXEVJ1;MFAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007W;;;;;;;;FRFR1EXJXE1;QVGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007X;;;;;;;;FRM45EBKXG1;GMET2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49022A;;;;;;;;FRM45EMZCX2;FDDV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49023A;;;;;;;;FRM45ELLRP2;MPGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49023B;;;;;;;;FRM45ENRXW2;GMET1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49023C;;;;;;;;FRM45ENAAV2;DUMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49026A;;;;;;;;FRM45EKXUV2;DUMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49027A;;;;;;;;FRM45EKPCX2;LRMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49035A;;;;;;;;FRM45ELKGV2;PNGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49035B;;;;;;;;FRM45ELADM2;PNGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49041A;;;;;;;;FRM45ENXDA2;JZJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49048A;;;;;;;;FRM45EBEHA1;SULY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49050A;;;;;;;;FRM45ERUAX2;EVWE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49021B;;;;;;;;FRM45ESYPA2;EVWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49021A;;;;;;;;FRM45ESMBK2;RXUF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49015B;;;;;;;;FRM45EQDUN2;BEGR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007Y;;;;;;;;FRM45EPJAU2;BEGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49007Z;;;;;;;;FRM45ETWAV1;TLHU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49012A;;;;;;;;FRM45EQDUN1;TLHU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49015A;;;;;;;;FRM45EKXUV1;XWWB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49015C;;;;;;;;FRM45ENAAV1;MPTB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49015D;;;;;;;;FRM45EKPCX1;CJDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49018A;;;;;;;;FRM45EJMYM1;MPTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49018B;;;;;;;;FRM45EJCAC1;CAGJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49020A;;;;;;;;FRM45ENRXW1;CAGJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49020B;;;;;;;;FRM45ENXDA1;QWDN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49178A;;;;;;;;FRM45EPJAU1;ZAUQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49172A;;;;;;;;FRM45ELKGV1;RXUF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49313A;;;;;;;;FRM45ELADM1;SCBK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49323A;;;;;;;;FRM45ELLRP1;SCBK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49326A;;;;;;;;FRM45EMZCX1;SJDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49328A;;;;;;;;FRM45ERDGE1;MNAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49328B;;;;;;;;FRM45ERUAX1;TXCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49328C;;;;;;;;FRM45ESMBK1;MNAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49328D;;;;;;;;FRM45EQTDW1;JDML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49328E;;;;;;;;FRM45ERDGE2;DWPQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49329A;;;;;;;;FRM45EMCMM1;SJDW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49331A;;;;;;;;FRM45ETWAV2;CUAU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49331B;;;;;;;;FRM45EDAYJ1;DWPQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49331C;;;;;;;;FRFR1EKJMC3;XWWB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49332A;;;;;;;;FRFR1ELVVV3;WJSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49308B;;;;;;;;FRFR1ELVVV2;YLDN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49333A;;;;;;;;FRFR1EKJMC2;YLDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49292A;;;;;;;;FRFR1EKJMC1;CUAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49294A;;;;;;;;FRFR1EKLFN4;WJSZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49295A;;;;;;;;FRFR1EKLFN1;QWDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49296A;;;;;;;;FRFR1EKLFN3;SULY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49298A;;;;;;;;FRFR1EKLFN2;PDYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49299A;;;;;;;;FRFR1EFGRA2;CJDW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49301A;;;;;;;;FRFR1EFGRA1;TMAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49301B;;;;;;;;FRFR1EGYTZ1;TDXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49301C;;;;;;;;FRFR1EGYTZ2;STHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49306A;;;;;;;;FRFR1EGYTZ3;CSRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49307A;;;;;;;;FRFR1EQQHP2;CSRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49308A;;;;;;;;FRFR1ELCPA2;BPAU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49290A;;;;;;;;FRFR1ELVVV1;BPAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49361A;;;;;;;;FRFR1ELCPA1;PFEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49362A;;;;;;;;FRM45EFNRN1;PPBL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49363A;;;;;;;;FRM45EDCVG1;PDYT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49364A;;;;;;;;FRM45ECDNZ1;PFJB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49367A;;;;;;;;FRM45ECRXB1;PFJB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49368A;;;;;;;;FRM45ETEYB1;PPBL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49373A;;;;;;;;FRM45ETEYB2;JXVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49375A;;;;;;;;FRM45EEKLU1;JAVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49376A;;;;;;;;FRM45EJCAC2;UZRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49377A;;;;;;;;FRM45EFNRN2;TQUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49378A;;;;;;;;FRM45EGCTA2;SZKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49381A;;;;;;;;FRM45EMCMM2;YSTG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49360A;;;;;;;;FRM45EJMYM2;SFRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49337A;;;;;;;;FRM45EEKLU2;SFRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49338A;;;;;;;;FRM45EDAYJ2;WKNT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49339A;;;;;;;;FRM45EDCVG2;ZAUQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49343A;;;;;;;;FRM45EGCTA1;WKNT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49345A;;;;;;;;FRM45EQTDW2;YSTG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49347A;;;;;;;;FRFR1EXEVJ2;HBBE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49349A;;;;;;;;FRFR1EJTEH1;QRAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49350A;;;;;;;;FRFR1EXAFA2;MRDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49353A;;;;;;;;FRFR1EPVQR1;MRDL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49353B;;;;;;;;FRFR1EFQZR2;QRAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49353C;;;;;;;;FRFR1EXBGQ1;EHEV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49353D;;;;;;;;FRFR1EXBGQ2;HBBE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49355A;;;;;;;;FRFR1EXAFF2;EHEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49201A;;;;;;;;FRFR1EXAFA1;PKNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49206A;;;;;;;;FRFR1EXAFF1;ELSZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49212A;;;;;;;;FRFR1EEFCW2;PKNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49214A;;;;;;;;FRFR1EWWHV1;RMSY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49214B;;;;;;;;FRFR1EWWHV2;YBAJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49215A;;;;;;;;FRFR1EEFCW1;VXAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49220A;;;;;;;;FRFR1EDVVW1;VXAJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49220B;;;;;;;;FRFR1EWHMA2;ZYLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49221A;;;;;;;;FRFR1EWHMA1;KUAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49222A;;;;;;;;FRFR1EPVQR2;KUAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49223A;;;;;;;;FRFR1EFQZR1;ZYLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49228A;;;;;;;;FRFR1EXBTA2;QAMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49228B;;;;;;;;FRFR1EXQRS2;RTJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49200A;;;;;;;;FRFR1EPAMX1;RTJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49176A;;;;;;;;FRFR1EPAMX2;QCYC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49289A;;;;;;;;FRFR1ESUFR1;GHZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49177A;;;;;;;;FRFR1ESUFR2;XVVC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49179A;;;;;;;;FRFR1EXNQB2;XVVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49180A;;;;;;;;FRFR1EXQRS1;GHZL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49180B;;;;;;;;FRFR1EXNQB1;HEMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49183A;;;;;;;;FRFR1EXBTA1;HRYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49191A;;;;;;;;FRFR1EXSDQ2;HRYD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49192A;;;;;;;;FRFR1EXSDQ1;DUSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49193A;;;;;;;;FRFR1EXFPB1;QAMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49194A;;;;;;;;FRFR1EXFPB2;HTNT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49196A;;;;;;;;FRFR1EXBZQ1;HTNT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49229A;;;;;;;;FRFR1EXBZQ2;NUAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49271A;;;;;;;;FRFR1ETLAJ1;CFWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49260B;;;;;;;;FRFR1EHHXV2;NUAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49261A;;;;;;;;FRM45ECRXB2;DUSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49264A;;;;;;;;FRFR1EGVWU1;UVNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49267A;;;;;;;;FRFR1EFRWS2;UVNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49269A;;;;;;;;FRFR1EFRWS1;AKTK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49276A;;;;;;;;FRFR1EGKVV1;GMQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49260A;;;;;;;;FRFR1EGKVV2;GMQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49278A;;;;;;;;FRFR1EUUPF2;AKTK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49283A;;;;;;;;FRFR1EUUPF1;YBAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49284A;;;;;;;;FRFR1EUUPF3;QCYC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49287A;;;;;;;;FRFR1EUUPF4;RMSY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49259A;;;;;;;;FRFR1EFMFE1;QFFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49246B;;;;;;;;FRFR1EFNTN2;CGFU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49238A;;;;;;;;FRFR1EFNTN1;MCME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49241A;;;;;;;;FRM45EBEHA2;GAJZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49242A;;;;;;;;FRM45ESYPA1;GAJZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49244A;;;;;;;;FRM45ECDNZ2;CWFS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49246A;;;;;;;;FRM45EBKXG2;NYMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49246C;;;;;;;;FRFR1ERGFP2;NYMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49248B;;;;;;;;FRFR1EXUAD2;TAVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49249A;;;;;;;;FRFR1EMAZX2;TAVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49248A;;;;;;;;FRFR1EWSUD2;CWFS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS49P49247A;;;;;;;;FRFR1EHHXV1;FBEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44071A;;;;;;;;FRFR1EGVWU2;FHQJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44073B;;;;;;;;FRFR1EPTPF1;FFRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44071B;;;;;;;;FRFR1EQDLW2;FEAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44072A;;;;;;;;FRFR1EWSBQ2;ZCED2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44072B;;;;;;;;FRFR1EWSBQ1;ZCED1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44073A;;;;;;;;FRFR1EWSUD1;HFQJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44075A;;;;;;;;FRFR1EXUAD1;AAUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44073C;;;;;;;;FRFR1EPTPF2;TJEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44077A;;;;;;;;FRFR1EQDLW1;VEVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44079A;;;;;;;;FRFR1EHYWB1;HKFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44081A;;;;;;;;FRFR1EHQLF1;HKFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44081B;;;;;;;;FRFR1EMAZX1;CGFU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44057A;;;;;;;;FRFR1ERGFP1;VFYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44070A;;;;;;;;FRFR1EVBTH1;VEXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44082A;;;;;;;;FRFR1ELSGH2;VEVF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44061A;;;;;;;;FRFR1ECAQH1;VEXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44062A;;;;;;;;FRLE2EGUGW2;TJEN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44063A;;;;;;;;FRLE2EXAUF2;VFYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44064A;;;;;;;;FRLE2EUJTU2;AAUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44066A;;;;;;;;FRLE2EUJTU1;FZSL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44067A;;;;;;;;FRLE2EHVAE2;FZSL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44067B;;;;;;;;FRLE2EHVAE1;MCME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44068A;;;;;;;;FRLE2EUWDH1;HFQJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44069A;;;;;;;;FRLE2EHTGX1;QFFB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44069B;;;;;;;;FRLE2ENNSF1;CFWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44069C;;;;;;;;FRLE2EGMYK1;XZZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44099A;;;;;;;;FRLE2ENHUM1;AXKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44110B;;;;;;;;FRLE2EFLVR1;YWSP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44103B;;;;;;;;FRLE2EPTUV1;EKJH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44106A;;;;;;;;FRLE2EFWFN1;EMSF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44107A;;;;;;;;FRLE2EDXGT1;EKJH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44108A;;;;;;;;FRLE2EDXGT2;EKBU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44110A;;;;;;;;FRLE2EXAUF1;EMUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44111A;;;;;;;;FRLE2EGUGW1;EMSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44103A;;;;;;;;FRLE2ERZQV1;EMWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44113A;;;;;;;;FRLE2EWKPH1;EKBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44113B;;;;;;;;FRLE2EEZLW1;EMUV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44115A;;;;;;;;FRLE2EJAKH2;EMWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44116A;;;;;;;;FRLE2EARJZ1;KEDJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44056A;;;;;;;;FRLE2EKUAD2;KEDJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44083A;;;;;;;;FRLE2EKUAD1;AYNS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44089A;;;;;;;;FRLE2EARJZ2;AYJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44084A;;;;;;;;FRLE2EQZPQ2;ARLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44087A;;;;;;;;FRLE2EQZPQ1;SUQX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44087B;;;;;;;;FRLE2EJYES1;SUQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44088A;;;;;;;;FRLE2EMGTV2;RWGP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44091A;;;;;;;;FRLE2EEVBZ2;AGAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44102A;;;;;;;;FRLE2EMGTV1;AGAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44096A;;;;;;;;FRLE2EJYES2;NPHW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44097A;;;;;;;;FRLE2EWKPH2;YXKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44098A;;;;;;;;FRLE2EEVBZ1;LBYR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44098B;;;;;;;;FRLE2EXNSF1;LBYR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44031A;;;;;;;;FRLE2EQUHR2;KCRV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44055D;;;;;;;;FRLE2EHBCG2;SPJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44030A;;;;;;;;FRLE2EQUHR1;KCRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44015A;;;;;;;;FRLE2EYHVX2;HLZG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44015B;;;;;;;;FRLE2EXWXJ2;HLZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44015C;;;;;;;;FRLE2EYHVX1;NVPQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44021A;;;;;;;;FRLE2EXWXJ1;RWGP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44022A;;;;;;;;FRLE2ERLSL1;NVPQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44023A;;;;;;;;FRLE2ERSYU1;AXKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44025A;;;;;;;;FRLE2ERMHJ1;AYNS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44026A;;;;;;;;FRLE2ESGMV1;SQAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44027A;;;;;;;;FRLE2ESAKM1;AYJD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44028A;;;;;;;;FRLE2ERWKU1;DTCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44029A;;;;;;;;FRLE2ESDNF1;CPZV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44029B;;;;;;;;FRLE2ESQQH1;CPZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44014A;;;;;;;;FRLE2ESDZZ1;MCAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44013A;;;;;;;;FRLE2EUBFC1;VEZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44003B;;;;;;;;FRLE2EEXPN1;MSZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44001A;;;;;;;;FRLE2ECSRS1;MSZL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44002A;;;;;;;;FRLE2ECSRS2;VEZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44002B;;;;;;;;FRLE2EMDYG2;MCAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44003A;;;;;;;;FRLE2ESMZX1;JGQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44005A;;;;;;;;FRLE2EHQHG2;JGQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44005B;;;;;;;;FRLE2EYSKN1;CCWC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44006A;;;;;;;;FRLE2EHQHG1;HEMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44007A;;;;;;;;FRLE2EPAXH1;CCWC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44010A;;;;;;;;FRLE2ESMZX2;SQAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44012A;;;;;;;;FRLE2EJVHQ1;DMYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44117A;;;;;;;;FRLE2EXNSF2;DYSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44045B;;;;;;;;FRLE2EMDYG1;DWKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44046A;;;;;;;;FRLE2EJVHQ2;ZWTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44048A;;;;;;;;FRLE2EHBCG1;ZWTF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44049A;;;;;;;;FRLE2EUBVK2;ZMSN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44050A;;;;;;;;FRLE2EPAXH2;HFUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44051A;;;;;;;;FRLE2EUBVK1;HZUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44052A;;;;;;;;FRLE2EYSKN2;HFUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44052B;;;;;;;;FRLE2EEZLW2;XZYN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44053A;;;;;;;;FRLE2EJAKH1;XZYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44054A;;;;;;;;FRLE2EBZDB2;DJAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44055A;;;;;;;;FRLE2EJUWG1;ZMSN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44055B;;;;;;;;FRLE2EAVUQ2;WSVZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44055C;;;;;;;;FRLE2EFVAA1;WSVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44045A;;;;;;;;FRLE2ESVNL2;KJDK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44036D;;;;;;;;FRLE2EUMMG2;KJDK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44032A;;;;;;;;FRLE2EUMMG1;EADB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44033A;;;;;;;;FRLE2ESVNL1;WPMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44036A;;;;;;;;FRLE2ERSHK2;RSJR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44036B;;;;;;;;FRLE2ERSHK1;TBQV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44036C;;;;;;;;FRLE2ENXUT2;KATC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44043B;;;;;;;;FRLE2ENXUT1;YDSZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44037A;;;;;;;;FRLE2ENEAG2;YDSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44038A;;;;;;;;FRLE2ENEAG1;QEVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44041A;;;;;;;;FRLE2EDRXM2;QEVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44041B;;;;;;;;FRLE2ETDXQ2;AJQA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44043A;;;;;;;;FRLE2EJJDA2;AJQA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44131C;;;;;;;;FRLE2EFRXE1;MZNB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44119A;;;;;;;;FRLE2EPXMX2;MZNB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44169A;;;;;;;;FRLE2ETZED1;YFMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44186A;;;;;;;;FRLE2ESJRR2;HNAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44186B;;;;;;;;FRLE2EKJWR1;YFMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44187A;;;;;;;;FRLE2ECVLD2;LSHD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44188A;;;;;;;;FRLE2ETVWE2;LSHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44188B;;;;;;;;FRLE2EKJWR2;HNAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44189A;;;;;;;;FRLE2ECVLD1;CKHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44192A;;;;;;;;FRLE2ETVWE1;KATC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44193A;;;;;;;;FRLE2ESJRR1;QGFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44194A;;;;;;;;FRLE2EWESA2;WACL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44195A;;;;;;;;FRLE2EZEXZ2;ZWYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44195B;;;;;;;;FRLE2EZEXZ1;KXHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44196A;;;;;;;;FRLE2ETZED2;MBSJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44197A;;;;;;;;FRLE2EWESA1;QACY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44185A;;;;;;;;FRLE2EPXMX1;QACY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44178A;;;;;;;;FRLE2EAVUQ1;MBSJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44169B;;;;;;;;FRLE2EDRXM1;KTAQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44172A;;;;;;;;FRLE2EETWC2;BAAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44173A;;;;;;;;FRLE2EBZDB1;BAAG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44174A;;;;;;;;FRLE2EETWC1;KTAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44175A;;;;;;;;FRLE2EKQGR1;WSVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44176A;;;;;;;;FRLE2EQVRX1;WSVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44184B;;;;;;;;FRLE2EZRUH2;TVAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44179A;;;;;;;;FRLE2EBWHQ2;ZWYT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44180A;;;;;;;;FRLE2EXCCW1;QGFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44182A;;;;;;;;FRLE2ETPAA2;TVAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44183A;;;;;;;;FRLE2EZRUH1;CKHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44184A;;;;;;;;FRLE2ETPAA1;XHGZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44199A;;;;;;;;FRLE2EAYHC2;XHGZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44216A;;;;;;;;FRLE2EVMUB2;CSDL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44212A;;;;;;;;FRLE2EVMUB1;CNFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44212B;;;;;;;;FRLE2EBYDX2;CFVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44213A;;;;;;;;FRLE2ETDXQ1;WNRE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44213B;;;;;;;;FRLE2EXCCW2;WNRE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44214A;;;;;;;;FRLE2EBYDX1;SUMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44211B;;;;;;;;FRLE2EKQGR2;SUMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44217A;;;;;;;;FRLE2EBWHQ1;RPGH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44217B;;;;;;;;FRLE2EQVRX2;CFVY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44217C;;;;;;;;FRLE2EAHMA2;RPGH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44223A;;;;;;;;FRLE2EJJDA1;WNCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44224A;;;;;;;;FRLE2EJUWG2;ZQZJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44211A;;;;;;;;FRLE2EAHMA1;ZQZJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44201A;;;;;;;;FRLE2EAPME1;ZULV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44206A;;;;;;;;FRLE2EAPME2;WYUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44201B;;;;;;;;FRLE2EKELH2;RDDH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44202A;;;;;;;;FRLE2EKELH1;CNFL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44203A;;;;;;;;FRLE2EARMC2;VWFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44204A;;;;;;;;FRLE2EAYHC1;VWFL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44205A;;;;;;;;FRLE2EARMC1;CHRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44209A;;;;;;;;FRLE2ECLSN2;VHHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44209B;;;;;;;;FRLE2ECLSN1;TVSW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44209C;;;;;;;;FRLE2EKFSZ2;VHHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44210A;;;;;;;;FRLE2EKFSZ1;TVSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44210B;;;;;;;;FRLE2EKLHT1;EKYL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44132D;;;;;;;;FRLE2ERZQV2;NHRD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44131B;;;;;;;;FRLE2EQDNZ1;QSFX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44168A;;;;;;;;FRLE2EYRJU1;QSFX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44132A;;;;;;;;FRLE2ECVSC1;NHRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44132B;;;;;;;;FRLE2ERVTT2;CHRF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44132C;;;;;;;;FRLE2EYMYF1;EKYL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44131A;;;;;;;;FRLE2EYMYF2;CSDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44133A;;;;;;;;FRLE2ERVTT1;UVSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44133B;;;;;;;;FRLE2EYRJU2;UVSX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44135A;;;;;;;;FRLE2EHDFJ1;FAWK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44135B;;;;;;;;FRLE2EHDFJ2;FAWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44136A;;;;;;;;FRLE2EDVLF1;RXBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44137A;;;;;;;;FRLE2ECVSC2;HSBT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44128A;;;;;;;;FRLE2EJEWZ1;LERF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44120A;;;;;;;;FRLE2EDVLF2;LFVN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44122A;;;;;;;;FRLE2EGMWJ2;KZSW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44125A;;;;;;;;FRLE2EGMWJ1;LBUS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44126A;;;;;;;;FRLE2EATUB1;LBUS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44127A;;;;;;;;FRLE2EJEWZ2;KMWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44129A;;;;;;;;FRLE2EGXZN2;KMXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44129B;;;;;;;;FRLE2EZNXA2;KMWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44130A;;;;;;;;FRLE2ERTGA2;KFDW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44130B;;;;;;;;FRLE2EVJKA2;KMSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44130C;;;;;;;;FRLE2EGZVB1;KMSV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44140A;;;;;;;;FRLE2EGZVB2;KFDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44160A;;;;;;;;FRLE2ESGKM1;KMYH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44154D;;;;;;;;FRLE2ESNQK1;KMXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44155A;;;;;;;;FRLE2ERZRZ1;KMYH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44156A;;;;;;;;FRLE2ESDGY1;LERF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44157A;;;;;;;;FRLE2EANQA1;KNCS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44158A;;;;;;;;FRLE2EUDYA1;KNCS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44158B;;;;;;;;FRLE2EANQA2;AGPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44154C;;;;;;;;FRLE2EJVZN1;AWTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44161A;;;;;;;;FRLE2EUDYA2;YCBL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44163A;;;;;;;;FRLE2EJVZN2;SGSY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44163B;;;;;;;;FRLE2ERTGA1;LATR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44164A;;;;;;;;FRLE2EGXZN1;CRKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44165A;;;;;;;;FRLE2EATUB2;AGPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44154B;;;;;;;;FRLE2EAFWN2;YTAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44150A;;;;;;;;FRLE2EAFWN1;KZSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44142A;;;;;;;;FRLE2EEZBE2;YTAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44144A;;;;;;;;FRLE2EQAFF2;VZWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44145A;;;;;;;;FRLE2EAKMP1;XPBN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44146A;;;;;;;;FRLE2EAKMP2;XPBN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44149A;;;;;;;;FRLE2EPZPA2;VZWD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44153A;;;;;;;;FRLE2EPZPA1;LFVN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44151A;;;;;;;;FRLE2ERZMK2;HSBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44154A;;;;;;;;FRLE2ESFKV1;HZJV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44152A;;;;;;;;FRLE2ESFKV2;FMKX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRS44P44151B;;;;;;;;FRLE2ERZMK1;SNWP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1EUVMW;;;;;;;;FRLE2ERGQV1;AVHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRLE2EDGSS1;;;;;;;;FRLE2ESAHY1;AVHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRLUMEFLOREAL11;;;;;;;;FRLE2EZZWN1;PJUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRLUMEBASTIDEVENCE1;;;;;;;;FRLE2EZZWN2;YAVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR073PKYRIADBEZONS;;;;;;;;FRLE2EWPMJ2;RXBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR073PCAMAIEUFR;;;;;;;;FRLE2ERSJR1;PJUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FR073P777022;;;;;;;;FRLE2EQEVV1;YAVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRA68P6821001;;;;;;;;FRLE2EQGYR2;ZHAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRLE2EDWKL1;;;;;;;;FRLE2EQAFF1;MFPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;FRFR1EVSFB1;;;;;;;;FRLE2EPZFM2;JMKS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEZBE1;JMKS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZLKA2;MFPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZBNE2;XRNX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZLKA1;XRNX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZBNE1;FMKX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQGYR1;FZQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQGKF1;FZQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQGKF2;FZQM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQHMV2;JFMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQAHU2;SNWP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPZFM1;FXJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQHMV1;FXJM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQAHU1;HZJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQEVV2;ZHZF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESHRV1;JFMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESHRV2;XMKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVJKA1;FZQM4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAWRM2;XMKZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYMUL1;ZHZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDTHV1;SYRT3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDKTG1;SYRT4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDMWW1;SYRT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EECNU1;SYRT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGUAQ1;RDDH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGUAQ2;WYUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUHAM2;ZVBR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAWDZ1;KKPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKETU1;SZGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKETU2;TUBY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMTXK1;UBTY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMTXK2;TWKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUHAM1;SPUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAWDZ2;SPUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPBLW1;UNSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYMUL2;SXBY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPBLW2;TDMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAKDV2;TVWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZNXA1;KZLG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXSGS2;KZNH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETSLT1;KGHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXSGS1;KGXP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETSLT2;KWGD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAKDV1;SSCN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDGLY1;TLCG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDMRS1;TPJZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETVZV1;TZEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETVZV2;AMAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDGSS1;PRQZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDLAR1;ZSKP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDPKW1;ZSKP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDLKK1;AMAG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAWRM1;PRQZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMCG1;TZEP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDGKG2;TDPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFPSK1;TYGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECSTM2;TYGF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHGHX1;RAWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECPYB2;WUGP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECPYB1;WUGP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETUAE2;RAWY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBVAB1;KGQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBVAB2;KZHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETUAE1;UCEX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPHKM2;HLYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZYWF2;YMLD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZYWF1;VFEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPHKM1;YMLD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPYBA2;JNUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPYBA1;JNUR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDGKG1;VQZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESTXV1;EFBF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESTXV2;TZHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHGHX2;VQZG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFSEB2;JSFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFPSK2;TZHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZAYJ2;EFBF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZAYJ1;JSFL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMCG2;CDSK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFSEB1;VZXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXNAA2;PXLP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXNAA1;VFEV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECSTM1;PXLP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVLVB1;CLUE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVLVB2;NPEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYWXF1;FYDJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYWXF2;FMEF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFAYZ2;FMEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFAYZ1;HLYG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENVSB1;BZMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENVSB2;CLUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERCKT2;HXAX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWWKD1;BZMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWXEL1;VTHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESRQM2;VTHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESRTS1;NPEJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESRTS2;FYDJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESRQM1;HXAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERXDZ2;UCEX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERSCD1;PRHT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERSCD2;ZRJE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERVTJ1;RZKS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWFVS1;ZRGB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERVTJ2;ZRGB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWLZS2;ZVCL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWLZS1;ZVCL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWVZL1;CPYL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWVZL2;CPYL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWWKD2;MLKV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWXEL2;MLKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERCKT1;JRZD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERXDZ1;XBNT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPFEA2;XBNT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETPFQ1;TAZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETPFQ2;TAZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPCSK1;JRZD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPCSK2;KGMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEDFK1;RBSR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEDFK2;RGPU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESMVY1;RGPU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESMVY2;ZYWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEBSP2;RBSR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEBSP1;ZVBR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECVGL2;VWCF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECVGL1;ZYWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWXWN1;VXNL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWXWN2;VXNL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERTKZ2;WZMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWFVS2;WZQU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERTKZ1;WZMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESKPW1;WNCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELRMM1;ZULV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELWAK1;VWCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHSTB1;WZQU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHSTB2;ZRJE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELWAK2;KGMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXQMV2;AHMR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENPHW1;QAMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EELSZ1;RZKS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVRMC1;ACKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXZZF2;ACKD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVRMC2;MKJY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETXHB2;PMNU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETXHB1;PMNU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYXKK2;MVAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXQMV1;ABBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMPGA2;ABBT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFBGW1;ACFR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFBGW2;MVAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQVGC1;ACHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESKPW2;ACFR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFDDV2;ACHW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMFAQ2;PRHT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETDCP1;QAMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETDCP2;BTMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMFAQ1;BTMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQVGC2;MKJY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGMET2;WXSJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFDDV1;GGWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMPGA1;GGWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGMET1;JQLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDUMW1;JQLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDUMW2;AHMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELRMM2;WXSJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPNGA2;BKVW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPNGA1;KFCM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJZJM1;KFCM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESULY1;NPEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEVWE2;NPEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEVWE1;YPXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERXUF1;YPXW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBEGR2;BKVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBEGR1;WACL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETLHU1;SUMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETLHU2;TBQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXWWB2;EDWY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMPTB2;NAZB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECJDW1;UWSR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMPTB1;UWSR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECAGJ1;TWYZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECAGJ2;QQLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQWDN2;EDWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZAUQ1;TWYZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERXUF2;DTDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESCBK1;DTDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESCBK2;QQLL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESJDW1;EDMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMNAA2;DWKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETXCV1;EJJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMNAA1;BHMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJDML2;TPWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDWPQ1;NAZB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESJDW2;CRDS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECUAU2;SUMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDWPQ2;ASQH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXWWB1;MKBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWJSZ1;MVZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYLDN2;PNQV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYLDN1;PNQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECUAU1;GGXH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWJSZ2;ZQSN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQWDN1;MVZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESULY2;UXYG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPDYT1;SJDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECJDW2;SJDP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETMAJ1;ZQSN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETDXM1;GGXH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESTHW1;UXYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECSRR1;CRDS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECSRR2;ASQH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBPAU2;TPWQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBPAU1;MATL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPFEA1;MATL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPPBL1;UAMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPDYT2;DNEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPFJB2;GMPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPFJB1;KTWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPPBL2;CAQW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJXVM1;DNEJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJAVS1;RMAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUZRU1;KTWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETQUK1;RMAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESZKE1;QAXU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYSTG1;QAXU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESFRR1;BRJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESFRR2;CAQW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWKNT2;BRJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZAUQ2;MMQN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWKNT1;DBFD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYSTG2;GMPX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHBBE1;MAMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQRAZ1;MAMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMRDL1;DQPS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMRDL2;UAMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQRAZ2;ARLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEHEV2;ARLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHBBE2;RMPG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEHEV1;RMPG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPKNM1;DQPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EELSZ2;YYGS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPKNM2;EGFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERMSY2;YYGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYBAJ2;EGFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVXAJ1;UPQR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVXAJ2;UPQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZYLS1;RSUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKUAE2;RSUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKUAE1;UAMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZYLS2;UAMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQAMU1;MKBQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERTJF2;VHZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERTJF1;VXGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQCYC2;VQXX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGHZL1;VANE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXVVC2;VNAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXVVC1;WXGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGHZL2;XQDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHEMN1;VJME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHRYD1;WEMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHRYD2;WHRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDUSA2;WMTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQAMU2;XMHL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHTNT1;XPJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHTNT2;VRZY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENUAM2;XNPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECFWM2;XGEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENUAM1;VCZT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDUSA1;VKAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUVNM1;AVYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUVNM2;ZVGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAKTK1;ZYBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGMQP2;ZYBW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGMQP1;WRKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAKTK2;WRKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYBAJ1;ZVGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQCYC1;SAHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERMSY1;SAQF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQFFB1;AVYP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECGFU1;SAQF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMCME1;RGQV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGAJZ1;WGQU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGAJZ2;WGQU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECWFS1;AVYG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENYMN2;AVYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENYMN1;VAUS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETAVM2;WXPU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETAVM1;BKDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECWFS2;VAKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFBEE1;BASN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFHQJ1;CQXC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFFRN1;JNGH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFEAH1;JNGH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZCED2;KWAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZCED1;CQXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHFQJ2;KWAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAAUW1;BFUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETJEN1;BFUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVEVF1;WFCQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHKFF2;WFCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHKFF1;BKDE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECGFU2;UCMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVFYM2;UCMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVEXA1;YSQQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVEVF2;BASN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVEXA2;VWMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETJEN2;WMFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVFYM1;WDXL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAAUW2;VJWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFZSL1;VCDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFZSL2;XMYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMCME2;VVHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHFQJ1;WJXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQFFB2;WRGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECFWM1;WGPD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXZZF1;VQFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAXKB1;WAVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYWSP1;VKHC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEKJH1;WQEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEMSF2;VBQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEKJH2;XHQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEKBU2;WEDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEMUV1;DBFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEMSF1;CXQS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEMWN2;MMQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEKBU1;SULW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEMUV2;URKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEMWN1;UZHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKEDJ1;URKV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKEDJ2;UXMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAYNS2;URPU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAYJD1;URPU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EARLV1;UXMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESUQX2;FCQF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESUQX1;TECL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERWGP1;WKKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAGAM2;MXFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAGAM1;HREY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENPHW2;CJXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYXKK1;CJXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELBYR1;SULW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELBYR2;UZHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKCRV2;XKKR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESPJV1;CZKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKCRV1;QNRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHLZG2;VRZQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHLZG1;PYYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENVPQ1;RQGK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERWGP2;QNRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENVPQ2;PYYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAXKB2;RQGK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAYNS1;QRNN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESQAV1;CZKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAYJD2;FUFC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDTCV1;FUFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECPZV2;QRNN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECPZV1;VYXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMCAE1;VYXQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVEZH2;XKKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMSZL1;AYAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMSZL2;AYAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVEZH1;VVBC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMCAE2;HKRD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJGQP2;YCCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJGQP1;ZXHJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECCWC1;ZXHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHEMN2;UUYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECCWC2;VPZZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESQAV2;VPZZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDMYM1;NKDZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDYSA1;EHHS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDWKL1;XHGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZWTF1;GAEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZWTF2;RWBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZMSN1;BWFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHFUN1;RXSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHZUK1;SFAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHFUN2;AWTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXZYN2;YCCV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXZYN1;GFKJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDJAX1;GFKJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZMSN2;ZJWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWSVZ2;HKRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWSVZ1;HHGQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKJDK1;HHGQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKJDK2;ZBBB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEADB1;ZBBB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWPMJ1;ZJWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERSJR2;WUFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETBQV2;WKFL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKATC1;WUFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYDSZ2;WKFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYDSZ1;WEWJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQEVR2;WEWJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQEVR1;WVFB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAJQA1;WVFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAJQA2;VRZQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMZNB2;VVBC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMZNB1;CXQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYFMB1;VDJR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHNAZ1;LTWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYFMB2;MHGW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELSHD2;CLVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELSHD1;RBQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHNAZ2;RBQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECKHM2;CLVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKATC2;XDDC3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQGFQ1;DNLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWACL1;XDDC4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZWYT1;XDDC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKXHX1;DNLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMBSJ2;XDDC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQACY1;DNLW4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQACY2;DNLW3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMBSJ1;LYWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKTAQ2;LTWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBAAG1;MHNS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBAAG2;LVLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKTAQ1;LWVN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWSVJ2;TWNN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWSVJ1;TWQH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETVAH2;TWQH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZWYT2;TWNN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQGFQ2;TWFU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETVAH1;TWFU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECKHM1;MEDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXHGZ2;LTRZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXHGZ1;MHGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECSDL2;LWVN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECNFL1;LVLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECFVY1;MEDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWNRE1;MHNS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWNRE2;LTRZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESUMA2;LYWK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESUMA1;VHEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERPGH2;JVAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECFVY2;JUSB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERPGH1;KMRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWNCW2;TUYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZQZJ2;KMRG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZQZJ1;JSFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZULV2;JSRY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWYUW2;JSRY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERDDH1;JSSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECNFL2;JSFD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVWFL1;JSSB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVWFL2;JRXQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECHRF1;JWFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVHHY2;JRXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETVSW2;JWFJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVHHY1;GKNF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETVSW1;JVAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEKYL2;YURM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENHRD2;TUYF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQSFX2;AAVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQSFX1;AHFA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENHRD1;VDJR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECHRF2;VHEC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEKYL1;JUSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECSDL1;AHFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUVSX1;XYYE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUVSX2;YURM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFAWK2;XYYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFAWK1;MWLE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERXBM2;PAGZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHSBT2;PAGZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELERF2;NGCV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELFVN2;NGCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKZSW2;AAVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELBUS1;MWLE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELBUS2;TXCV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKMWN2;QDNZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKMXA1;LSGH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKMWN1;762;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKFDW2;752;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKMSV1;751;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKMSV2;431;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKFDW1;351;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKMYH2;811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKMXA2;771;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKMYH1;812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELERF1;592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKNCS2;321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKNCS1;681;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAGPR2;512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAWTN1;531;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYCBL1;642;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESGSY1;171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELATR1;281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECRKM1;761;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAGPR1;352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYTAK2;1032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKZSW1;582;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYTAK1;622;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVZWD1;422;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXPBN2;391;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXPBN1;392;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVZWD2;371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELFVN1;372;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHSBT1;651;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHZJV2;631;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFMKX2;632;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESNWP1;31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAVHY1;32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAVHY2;581;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPJUN1;361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYAVV2;362;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERXBM1;342;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPJUN2;201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYAVV1;202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZHAQ1;682;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMFPL1;712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJMKS2;671;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJMKS1;441;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMFPL2;442;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXRNX1;311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXRNX2;312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFMKX1;172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFZQM2;672;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFZQM1;341;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFZQM3;532;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJFMC2;492;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESNWP2;111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFXJM1;122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFXJM2;112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHZJV1;872;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZHZF2;462;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJFMC1;601;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXMKZ1;561;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFZQM4;591;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXMKZ2;322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZHZF1;711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESYRT3;732;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESYRT4;731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESYRT2;701;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESYRT1;692;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERDDH2;691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWYUW1;511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZVBR2;542;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKKPR1;282;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESZGW1;541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETUBY1;602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUBTY1;652;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETWKM1;491;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESPUH2;562;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESPUH1;621;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUNSD1;421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESXBY1;432;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETDMU1;132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETVWA1;612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKZLG1;932;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKZNH1;952;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKGHQ1;1182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKGXP1;941;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKWGD1;931;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESSCN1;942;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETLCG1;222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETPJZ1;1162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETZEP1;162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAMAG1;1261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPRQZ1;91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZSKP1;1262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZSKP2;161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAMAG2;1161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPRQZ2;221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETZEP2;611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETDPS1;1181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETYGF1;822;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETYGF2;331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERAWY1;1402;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWUGP1;862;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWUGP2;861;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERAWY2;551;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKGQN1;821;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKZHJ1;262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUCEX2;1212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHLYG1;1421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYMLD1;1422;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVFEV1;1091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYMLD2;261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJNUR1;1092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJNUR2;801;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVQZG1;131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEFBF2;152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETZHA1;191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVQZG2;151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJSFL1;101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETZHA2;1072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEFBF1;1071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJSFL2;1151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECDSK1;792;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVZXQ1;1152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPXLP1;502;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVFEV2;141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPXLP2;192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECLUE2;501;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENPEJ1;142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFYDJ1;381;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFMEF2;382;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFMEF1;181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHLYG2;182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBZMG1;1141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECLUE1;1202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHXAX2;1142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBZMG2;1302;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVTHV1;1201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVTHV2;1292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENPEJ2;1291;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFYDJ2;1281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHXAX1;1271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUCEX1;1282;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPRHT1;1122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZRJE2;102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERZKS1;1311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZRGB1;1312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZRGB2;802;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZVCL1;1301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZVCL2;1272;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECPYL2;951;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECPYL1;871;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMLKV2;571;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMLKV1;XFPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJRZD1;KJKX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXBNT2;ZKWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXBNT1;ZKWW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETAZM2;QCYJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETAZM1;MMFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJRZD2;MMFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKGMX1;TLWR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERBSR2;VBNG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERGPU1;VBNG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERGPU2;TLFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZYWM1;DHTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERBSR1;DUGG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZVBR1;DLVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVWCF2;DLVC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZYWM2;DUGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVXNL1;DHTF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVXNL2;QCYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWZMX2;LKLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWZQU2;121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWZMX1;QVAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWNCW1;AMKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZULV1;RNJT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVWCF1;RNJT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWZQU1;ZDHC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZRJE1;WWAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKGMX2;WWAQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAHMR2;AXAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQAMK2;AXEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERZKS2;AXAX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EACKD1;AXEF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EACKD2;DPFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMKJY1;DPFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPMNU2;ZCBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPMNU1;APAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMVAW2;EAPY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EABBT1;VMBF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EABBT2;VMGY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EACFR1;VMGY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMVAW1;VMBF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EACHW1;ATHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EACFR2;MKSM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EACHW2;ATHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPRHT2;ATHA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQAMK1;MKSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBTMN1;NJPA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBTMN2;KBSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMKJY2;NJPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWXSJ1;NJAP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGGWG2;KBSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGGWG1;WSCL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJQLS1;ZJVT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJQLS2;WSCL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAHMR1;WSCL3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWXSJ2;ZJVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBKVW2;TYSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKFCM2;XNBJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKFCM1;ZLYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENPEE2;VTDC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENPEE1;FJFP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYPXW1;FJFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYPXW2;NXYL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBKVW1;NXYL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWACL2;VFYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESUMT1;XRYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETBQV1;YLLV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEDWY2;FPFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENAZB2;XRWF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUWSR1;WLEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUWSR2;YLPJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETWYZ1;YLPJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQQLL1;YLLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEDWY1;AMKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETWYZ2;DRUQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDTDM1;DRUQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDTDM2;TJAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQQLL2;472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEDMH1;772;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDWKD1;471;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEJJA1;291;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBHMR1;292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETPWQ1;242;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENAZB1;71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECRDS1;241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESUMT2;72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EASQH2;641;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMKBQ1;1042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMVZM1;212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPNQV2;231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPNQV1;1031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGGXH1;232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZQSN1;11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMVZM2;1041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUXYG2;211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESJDP1;1112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESJDP2;461;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZQSN2;481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGGXH2;1102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUXYG1;1101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECRDS2;1111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EASQH1;572;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETPWQ2;522;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMATL2;972;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMATL1;521;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUAMM2;1081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDNEJ1;1082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGMPX1;482;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKTWG2;971;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECAQW2;12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDNEJ2;TJAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERMAS2;WHDV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKTWG1;AWTW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERMAS1;VKPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQAXU1;DSVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQAXU2;DARX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBRJF2;DARX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECAQW1;JZLB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBRJF1;DSVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMQN2;JZLB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDBFD2;WUVN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGMPX2;VLTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMAMJ1;ZTTD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMAMJ2;WUVN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDQPS2;VLTC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUAMM1;ZTTD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EARLA1;AWTW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EARLA2;ZUVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERMPG2;ZUVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERMPG1;SYVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDQPS1;MSLG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYYGS2;SYVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEGFF1;SAXU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYYGS1;MCVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEGFF2;URMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUPQR2;TTRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUPQR1;SAXU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERSUA2;LAXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERSUA1;TTRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUAMJ1;LAXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUAMJ2;MMSH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMKBQ2;QEVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVHZP1;QEVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVXGS1;UJRD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVQXX1;UJRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVANE1;MSLG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVNAE1;MMSH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWXGS1;741;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXQDN1;332;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVJME1;22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWEMT1;KBKV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWHRA1;YKGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWMTM1;YGWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXMHL1;SLXF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXPJQ1;YCLK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVRZY1;EQQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXNPM1;HERP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXGEP1;HERP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVCZT1;AFGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVKAL1;AFGU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAVYP1;ZXMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZVGM1;ZXGB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZYBW1;ZXMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZYBW2;ZZQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWRKM1;ZYYE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWRKM2;ZYYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZVGM2;EQQR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESAHY2;KBKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESAQF1;21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAVYP2;YVSQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESAQF2;DFAZ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERGQV2;CLAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWGQU1;CLAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWGQU2;MGKZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAVYG2;MGKZ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAVYG1;MGKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVAUS1;QCRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWXPU1;QCRG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBKDE1;UNNC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVAKY1;UNNC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBASN2;XXZE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECQXC2;XXZE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJNGH2;XVHT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJNGH1;DRFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKWAY1;YVSQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECQXC1;ZZAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKWAY2;XJKQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBFUW2;ZZAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBFUW1;ZZQV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWFCQ2;QPSH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWFCQ1;QPSH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBKDE2;XTUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUCMN2;XTUR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUCMN1;ZTEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYSQQ1;ZTEP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBASN1;MSXP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVWMH1;MSXP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWMFH1;MTDF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWDXL1;MTDF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVJWY1;CMQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVCDN1;CVJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXMYA1;BJMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVVHM1;BMPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWJXJ1;TYAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWRGM1;UFBE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWGPD1;UFBE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVQFA1;UFBE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWAVX1;AGZT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVKHC1;ZXGB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWQEG1;NMQN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVBQE1;NMQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXHQP1;GUXY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWEDT1;VUDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDBFD1;VUDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECXQS2;AGZT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMQN1;PLWE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESULW2;GUXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EURKV1;HFCJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUZHM2;HFCJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EURKV2;PLWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUXMM2;PLWE4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EURPU2;PLWE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EURPU1;DFAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUXMM1;RFAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFCQF1;RFAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETECL1;XXPP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWKKK1;EGBB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMXFP1;EYSR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHREY1;EYSR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECJXV1;KPPH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECJXV2;KPPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESULW1;JYQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUZHM1;JNZR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXKKR2;JYQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECZKF2;JNZR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQNRA2;HQLK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVRZQ2;HQLK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPYYM1;YDAP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERQGK1;YCPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQNRA1;YDJJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPYYM2;YDAP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERQGK2;EGBB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQRNN2;RUFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECZKF1;RUTH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFUFC2;FWQE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFUFC1;QGXS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQRNN1;FVVE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVYXQ1;EJDV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVYXQ2;FXHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXKKR1;FUSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAYAA1;FVMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAYAA2;FVMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVVBC1;RUTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHKRD2;FXCF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYCCV1;FXCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZXHJ2;FUSW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZXHJ1;FWQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUUYT1;RUFY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVPZZ1;FXHZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVPZZ2;XYAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENKDZ1;YCPH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEHHS1;DFAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXHGW1;XYAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGAEA1;YLLE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERWBH1;ZYRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBWFQ1;ZYRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERXSV1;AYDC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESFAS1;AYDC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAWTN2;JURQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYCCV2;JURQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGFKJ2;ZMXK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGFKJ1;BRTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZJWU1;BRTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHKRD1;MLVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHHGQ1;ZMXK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHHGQ2;MLVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZBBB2;CEWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZBBB1;CEWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZJWU2;YLLE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWUFM2;PHZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWKFL2;VLVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWUFM1;EUPW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWKFL1;XXPP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWEWJ2;YDKR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWEWJ1;YDKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWVFB2;YDJJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWVFB1;AZVZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVRZQ1;AZVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVVBC2;ERSF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECXQS1;AVBJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVDJR1;ERSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELTWG2;EUPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMHGW2;EMSL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECLVS1;EMSL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERBQP2;AVBJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERBQP1;VLVH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECLVS2;ULSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXDDC3;UCWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDNLW2;DVMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXDDC4;1052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXDDC2;882;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDNLW1;1392;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXDDC1;1391;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDNLW4;1022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDNLW3;912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELYWK1;1021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELTWG1;662;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMHNS1;661;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELVLS1;1382;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELWVN1;1381;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETWNN2;721;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETWQH2;911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETWQH1;1372;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETWNN1;1361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETWFU2;1371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETWFU1;781;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMEDB2;1242;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELTRZ2;252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMHGW1;1342;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELWVN2;302;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELVLS2;272;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMEDB1;301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMHNS2;1061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELTRZ1;1062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELYWK2;881;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVHEC1;922;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJVAH1;251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJUSB2;271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKMRG1;1221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETUYF1;782;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKMRG2;982;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJSFD1;961;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJSRY2;981;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJSRY1;1051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJSSB1;411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJSFD2;921;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJSSB2;412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJRXQ2;902;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJWFJ1;901;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJRXQ1;1121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJWFJ2;1191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGKNF1;401;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJVAH2;1192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYURM2;1132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETUYF2;1131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAAVM2;832;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAHFA2;42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVDJR2;41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVHEC2;1171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJUSB1;1401;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAHFA1;1172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXYYE2;742;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYURM1;1922;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXYYE1;1322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMWLE1;1921;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPAGZ1;831;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPAGZ2;1352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENGCV2;1362;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENGCV1;1351;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAAVM1;841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMWLE2;992;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETXCV2;1321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQDNZ2;842;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELSGH1;402;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00762;991;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00752;1011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00751;552;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00431;1012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00351;1002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00811;1001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00771;1341;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00812;52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00592;DRYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00321;JMYQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00681;NCFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00512;YDTX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00531;NCHF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00642;NCHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00171;QPHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00281;NCFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00761;CDYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00352;CDYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01032;UMXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00582;UQRS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00622;MMZR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00422;SDVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00391;JHRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00392;DAHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00371;GPSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00372;QPHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00651;RHXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00631;TLGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00632;RYVD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00031;TUSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00032;DAJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00581;DFAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00361;XTMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00362;RYVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00342;TAVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00201;RVUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00202;TLGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00682;TAVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00712;RATW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00671;RVGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00441;RVJX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00442;RPWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00311;RHXY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00312;AUBR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00172;AUBR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00672;962;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00341;JMYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00532;1332;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00492;791;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00111;1411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00122;1211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00112;1252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00872;62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00462;1412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00601;1241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00561;1222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00591;1251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00322;451;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00711;1232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00732;82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00731;851;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00701;81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00692;92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00691;722;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00511;61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00542;NAYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00282;EUJM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00541;EUJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00602;KADA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00652;KADA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00491;XHMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00562;KBGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00621;KBGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00421;452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00432;NAYA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00132;XHMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00612;1231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00932;1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00952;852;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01182;51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00941;NNMR3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00931;NNMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00942;VTTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00222;PFXK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01162;VEZP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00162;VEZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01261;NXRK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00091;YMHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01262;YMHB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00161;TRAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01161;TRAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00221;JPCU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00611;FLRH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01181;JYXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00822;JYXG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00331;QGEN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01402;QGEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00862;ERVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00861;JPCU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00551;NXRK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00821;KBAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00262;NURK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01212;KBAJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01421;RVFB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01422;HRTW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01091;HRTW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00261;KURK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01092;KURK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00801;EERL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00131;AYKP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00152;PFUP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00191;AYKP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00151;PFUP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00101;HRPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01072;HRPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01071;KWMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01151;KWMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00792;PFXK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01152;ERVH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00502;RKMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00141;RKMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00192;WYWB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00501;VXVU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00142;JCUF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00381;MFLU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00382;MFLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00181;JCUF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00182;LAKP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01141;LAKP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01202;WCPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01142;WCPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01302;RAUL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01201;RAUL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01292;MFRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01291;MFRW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01281;AWQF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01271;CSAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01282;ZCMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01122;YPLM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00102;JVBC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01311;CLPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01312;WYWB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00802;RWKR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01301;JVBC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01272;UUCV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00951;UUCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00871;TEPK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00571;CLPS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXFPT2;ZCMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKJKX1;TEPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZKWW1;ZMPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZKWW2;ZMPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQCYJ2;RWKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMMFQ1;VXVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMMFQ2;YPLM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETLWR1;XNAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVBNG1;RVFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVBNG2;EERL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETLFC1;KNUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDHTF1;YXJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDUGG2;YXJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDLVC1;AFDR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDLVC2;AFDR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDUGG1;JSKE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDHTF2;JUCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQCYJ1;PYRE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELKLW1;PYRE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00121;JSKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQVAF1;KCWZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAMKB2;NKSJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERNJT1;JUCQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERNJT2;KCWZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZDHC1;NKSJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWWAQ1;QRAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWWAQ2;JWCC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAXAX1;JWCC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAXEF1;CZNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAXAX2;KMCH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAXEF2;NURK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDPFQ1;ESLV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDPFQ2;NVMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZCBA1;NVMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAPAV1;ARLZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEAPY1;ARLZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVMBF1;KPGB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVMGY1;WQJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVMGY2;KPGB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVMBF2;KMCH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EATHA2;HJRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMKSM2;CZNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EATHA1;HJRW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EATHA3;WQJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMKSM1;QRAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENJPA3;SKKL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKBSA1;XNAR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENJPA2;SKKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENJAP1;QPVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKBSA2;BWQT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWSCL2;FAFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZJVT2;VSZN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWSCL1;BWQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWSCL3;RXJY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZJVT1;RXJY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETYSM1;VEUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXNBJ1;HDHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZLYT1;HDHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVTDC1;VEUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFJFP2;NMVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFJFP1;NMVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENXYL1;NUFE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENXYL2;NUFE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVFYN1;FAFN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXRYF1;XPXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYLLV2;UXJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFPFF1;LJWB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXRWF1;UVHL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWLEQ1;KNUX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYLPJ2;UVHL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYLPJ1;XCVD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYLLV1;XCVD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAMKB1;LJWB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDRUQ1;XPXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDRUQ2;CVVT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETJAK1;VSZN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00472;XVTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00772;UXJM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00471;QPVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00291;XVTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00292;CVVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00242;UTMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00071;AWQF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00241;CSAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00072;MAUV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00641;ACTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01042;AACF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00212;AAZK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00231;AAZK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01031;MPHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00232;MPHN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00011;PBSP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01041;FMGN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00211;ATYU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01112;PBSP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00461;KNPW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00481;BJRC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01102;KNPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01101;FMGN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01111;GTUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00572;ABUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00522;ABUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00972;AACF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00521;BSMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01081;MKNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01082;MKNQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00482;ADLC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00971;ADLC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00012;AEGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETJAK2;AEGE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWHDV1;ACTE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAWTW1;SNTF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVKPM1;FLJE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDSVM1;FMBB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDARX1;FMBB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDARX2;FLJE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJZLB2;BSMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDSVM2;SNTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJZLB1;GTUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWUVN1;MCEQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVLTC1;BKGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZTTD2;LQVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWUVN2;TXNF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVLTC2;ZTAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZTTD1;ZTAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAWTW2;HGDG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZUVR2;HGDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZUVR1;YBVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESYVM1;YBVY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMSLG2;FGKE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESYVM2;FGKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESAXU1;XNZE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMCVM1;HPXY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EURMM1;XNZE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETTRR1;HPXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESAXU2;XFPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELAXA2;JDML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETTRR2;DQGZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELAXA1;TXNF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMMSH2;DQGZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQEVX1;MCMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQEVX2;MCEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUJRD2;MDHL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUJRD1;LQUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMSLG1;LQUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMMSH1;LQVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00741;MDHL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00332;LSNH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00022;LGXZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKBKV2;LSNH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYKGC1;LQEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYGWA1;MCMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESLXF1;MAUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYCLK1;LQEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEQQR1;LGXZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHERP2;JHSX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHERP1;QXJC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAFGU1;BHAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAFGU2;HVSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZXMY1;EMQB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZXGB1;DEGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZXMY2;DEGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZZQV1;QDHT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZYYE2;ZNTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZYYE1;ZNTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEQQR2;QDHT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKBKV1;YDTZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00021;YDTZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYVSQ1;YMPX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDFAZ3;YMPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECLAV1;DSQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECLAV2;DSQC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMGKZ2;HVSW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMGKZ3;SYXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMGKZ1;KRWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQCRG1;KRWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQCRG2;MCSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUNNC1;XHYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUNNC2;BHAN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXXZE2;TCRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXXZE1;TCRB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXVHT1;UTMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDRFM1;TKMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYVSQ2;XHYS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZZAE2;JNEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXJKQ1;MCSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZZAE1;TKMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZZQV2;JNEC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQPSH1;NMJM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQPSH2;NMJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXTUR1;CRTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXTUR2;CRTL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZTEP1;SYXC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZTEP2;JRRH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMSXP2;QXJC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMSXP1;JRRH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMTDF1;MFMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMTDF2;KLLB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECMQV1;MFMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECVJA1;KLLB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBJMQ1;EQEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBMPM1;EQEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETYAA1;URHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUFBE2;SHXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUFBE1;LQUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUFBE3;URHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAGZT1;SHXW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZXGB2;VXVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENMQN2;VXVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENMQN1;BKGR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGUXY2;JHSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVUDA1;VPBJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVUDA2;VPBJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAGZT2;TMDP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPLWE2;ZEVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGUXY1;GPEF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHFCJ2;GPEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHFCJ1;MYYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPLWE1;MYYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPLWE4;ZEVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPLWE3;MMMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDFAZ2;MMMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERFAS2;TMDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERFAS1;BLFG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXXPP1;BLFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEGBB1;DJTH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEYSR1;ZBRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEYSR2;DJTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKPPH2;ZBRB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKPPH1;ESLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJYQP2;EBBJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJNZR2;NNMR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJYQP1;ABZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJNZR1;RAJC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHQLK1;RYCV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHQLK2;BNRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYDAP1;PVNQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYCPH1;ZSKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYDJJ1;RAJC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYDAP2;BNRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEGBB2;LZHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERUFY1;LZHQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERUTH2;PVNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFWQE2;TTVH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQGXS1;BMAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFVVE2;BMAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEJDV1;TTVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFXHZ1;RYCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFUSW1;ABZL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFVMF2;LEBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFVMF1;EBBJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERUTH1;VAPF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFXCF2;ALAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFXCF1;YPGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFUSW2;YPGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFWQE1;SGSW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERUFY2;SGSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFXHZ2;PKAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXYAK2;BAEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYCPH2;BAEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDFAZ1;SWRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXYAK1;BAEA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYLLE2;PFVG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZYRU1;BRLR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZYRU2;BRLR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAYDC2;LEBA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAYDC1;VAPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJURQ1;ZSKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJURQ2;YACD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZMXK1;TBFN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBRTA1;TBFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBRTA2;NKJM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMLVV2;PZGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZMXK2;NQVY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMLVV1;PZGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECEWG1;NQVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECEWG2;RDEH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYLLE1;MLZC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPHZA1;MLZC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVLVH1;RDEH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEUPW2;JUXN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXXPP2;VXBD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYDKR2;ETPD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYDKR1;VXBD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYDJJ2;JJQC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAZVZ2;ETPD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAZVZ1;NKJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EERSF2;ZMHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAVBJ1;ZMHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EERSF1;SSMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEUPW1;XRFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEMSL1;YACD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEMSL2;TANZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAVBJ2;XRFH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVLVH2;TANZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EULSV1;SSMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUCWT1;SUVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDVMQ1;QRKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01052;SUVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00882;VLBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01392;AAFU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01391;VLBW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01022;QRKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00912;AAFU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01021;ALAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00662;GCPC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00661;GCPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01382;RDPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01381;SSJR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00721;AKMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00911;AKMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01372;EYMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01361;EYMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01371;YVGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00781;FMSH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01242;FMSH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00252;RPYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01342;VSDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00302;QKKX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00272;FRKG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00301;MJWB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01061;DFLB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01062;YMEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00881;SSJR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00922;BTRV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00251;BTRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00271;YFJH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01221;VTTH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00782;YRJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00982;YRJA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00961;YRJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00981;STRX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01051;STRX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00411;HAHC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00921;BTRV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00412;SXXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00902;SLSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00901;AFXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01121;TBJT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01191;PLGY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00401;XZDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01192;KYZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01132;HPFZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01131;CYLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00832;DSUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00042;YMTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00041;YMTT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01171;RLRG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01401;RLRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01172;DDRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00742;DDRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01922;UNLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01322;UNLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01921;ADFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00831;MEDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01352;XNSP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01362;EMTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01351;GSLD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00841;VSMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00992;CYLU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01321;PJVN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00842;PJVN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00402;MXHT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00991;FUQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01011;BRPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00552;JYMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01012;JTMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01002;JTMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01001;JYMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01341;JXGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00052;FUQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDRYM1;FAMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJMYQ2;MKCZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENCFM2;MKCZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYDTX1;MXHT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENCHF2;FAMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENCHF1;SRYC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQPHM2;SRYC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENCFM1;NAMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECDYM1;JJQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECDYM2;SNJL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUMXM1;AWEP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUQRS1;KNDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMMZR1;KPVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESDVF1;EXTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJHRW1;EXTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDAHF1;KNDT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGPSV1;KPVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQPHM1;EWKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERHXY1;EVAX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETLGM2;EULD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERYVD1;EUMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETUSF1;EULD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDAJS1;EVAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDFAM1;EWKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXTMH1;EUMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERYVV1;ETVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETAVJ1;DFMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERVUM1;DFMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETLGM1;RTDZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETAVJ2;QDEV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERATW1;MNFW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERVGC1;MNFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERVJX1;UXFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERPWH1;ALEX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERHXY2;ALEX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAUBR1;BGCE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAUBR2;QDEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00962;RTDZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJMYQ1;DFRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01332;TKYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00791;PJPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01411;JHHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01211;PTGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01252;FTXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00062;ETVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01412;VJZE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01241;UXFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01222;VKTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01251;SJKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00451;XECT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01232;TCRW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00082;XYGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00851;XECT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00081;SJKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00092;XYGU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00722;YCVT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00061;YCVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENAYA1;XAHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEUJM2;XAHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEUJM1;SBMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKADA2;SBMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKADA1;YPCA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXHMX2;YPCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKBGM1;TCRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKBGM2;JYCM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00452;JYCM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENAYA2;VAQK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXHMX1;AWEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01231;VKTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E01331;VHGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00852;VHGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS02E00051;VJZE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENNMR3;RKWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENNMR1;TMKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVTTH1;QRQH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPFXK2;TMKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVEZP2;VAQK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVEZP1;RQAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENXRK2;RKWA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYMHB1;QRQH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYMHB2;RQAG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETRAE1;UBQK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETRAE2;UBQK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJPCU2;JUXN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFLRH1;RTRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJYXG1;FVDN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJYXG2;KVAF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQGEN2;KVAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQGEN1;LKAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EERVH1;ETPY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJPCU1;XBXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENXRK1;XBXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKBAJ1;YNTK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENURK2;YNTK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKBAJ2;UBNQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERVFB2;LKAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHRTW1;NLNN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHRTW2;NLNN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKURK2;ETPY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKURK1;BHDV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEERL2;RPXP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAYKP1;SCAN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPFUP1;FVDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAYKP2;KFPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPFUP2;SNJL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHRPT1;NAMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHRPT2;DLLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKWMM1;DKAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKWMM2;DLLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPFXK1;UAKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EERVH2;UAKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERKMD1;RPXP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERKMD2;DKAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWYWB2;KFPH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVXVU2;SCAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJCUF2;XVJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMFLU2;XVJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMFLU1;UBNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJCUF1;RTRN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELAKP1;FZVY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELAKP2;BGCE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWCPR1;FZVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWCPR2;MSAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERAUL1;HDPN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERAUL2;MSAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMFRW1;HDPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMFRW2;JPXZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAWQF2;ZMVH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECSAT1;GVSZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZCMB1;ZMVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYPLM2;GVSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJVBC1;DVTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECLPS1;DVTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWYWB1;QQTF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERWKR2;QQTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJVBC2;LTWE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUUCV2;LTWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUUCV1;JPXZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETEPK2;RNMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECLPS2;EEBP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZCMB2;NLFX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETEPK1;BHDV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZMPL1;NLFX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZMPL2;XXXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERWKR1;XXXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVXVU1;VRQF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYPLM1;VRQF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXNAR1;YMAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERVFB1;RNMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEERL1;EEBP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKNUX1;YMAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYXJF1;KWHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYXJF2;KWHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAFDR2;ABMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAFDR1;ABMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJSKE2;CDSK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJUCQ1;VZXQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPYRE1;VCMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPYRE2;NJHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJSKE1;ATBU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKCWZ2;AXSC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENKSJ2;AXSC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJUCQ2;ECEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKCWZ1;ECEL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENKSJ1;BVDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQRAY1;BSBK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJWCC2;BVRX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJWCC1;GVBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECZNA1;GXYK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKMCH2;BBRC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENURK1;BRYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EESLV2;GVFZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENVMU1;GBBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENVMU2;GXMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EARLZ2;ATBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EARLZ1;RSQL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKPGB2;UNDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWQJW1;RSQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKPGB1;VMDH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKMCH1;AUVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHJRW1;GNTR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECZNA2;GNXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHJRW2;MAMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWQJW2;MVGB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQRAY2;KBGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESKKL2;QJKR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXNAR2;QJKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESKKL1;KBGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQPVM2;MVRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBWQT2;MVKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFAFN1;MVKE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVSZN1;MVRW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBWQT1;MVGB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERXJY1;GHLG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERXJY2;BFNG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVEUN2;GCLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHDHV1;GWPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHDHV2;ZYFE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVEUN1;ZYBX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENMVA1;FHVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENMVA2;FHVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENUFE2;HBRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENUFE1;JCQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFAFN2;FVKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXPXA1;FVKY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUXJM1;WVJR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELJWB1;GQMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUVHL1;AHQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKNUX2;XNVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUVHL2;XABG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXCVD2;DDZW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXCVD1;VQCK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELJWB2;ZTJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXPXA2;ZYBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECVVT2;ZYFE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVSZN2;DAZT3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXVTV2;PXDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUXJM2;VQSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQPVM1;YWXC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXVTV1;YWXC3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECVVT1;YWXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUTMQ2;DAZT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAWQF1;DAZT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECSAT2;ZZYF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMAUV2;MWDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EACTE1;MWDT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAACF2;ZTJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAAZK1;ZZYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAAZK2;HAJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMPHN1;HAJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMPHN2;GNXY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPBSP2;EFTX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFMGN1;EFAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EATYU1;JWCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPBSP1;FGKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKNPW2;GDDC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBJRC1;GDDC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKNPW1;JCLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFMGN2;FHWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGTUW2;DVSJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EABUM2;GPCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EABUM1;DGSM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAACF1;ZMRK3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBSMN1;DGSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMKNQ1;ZMRK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMKNQ2;KBJP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EADLC1;FGKC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EADLC2;ZMRK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAEGE1;QXRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAEGE2;JZYE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EACTE2;KBJP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESNTF2;XJKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFLJE2;ZYUU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFMBB1;DWVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFMBB2;MSGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFLJE1;GPCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBSMN2;EGDC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESNTF1;BPHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGTUW1;EGDC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMCEQ2;BDDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBKGR1;JZYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELQVR1;MLYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETXNF1;EFFG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZTAS1;DPLK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZTAS2;DPLK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHGDG2;MPHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHGDG1;DJJH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYBVY1;KKFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYBVY2;JWCB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFGKE2;GJYX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFGKE1;KKLQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXNZE1;DSAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHPXY2;ELCH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXNZE2;ELCH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHPXY1;DSAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXFPT1;GDCL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJDML1;DVGJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDQGZ1;DSPG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETXNF2;AUVL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDQGZ2;EFAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMCMW2;GBWV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMCEQ1;GNTR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMDHL2;GJYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELQUW1;EFGN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELQUW2;GBWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELQVR2;EFGN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMDHL1;DNGU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELSNH1;DNGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELGXZ2;DJGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELSNH2;GDAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELQEE1;GJKJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMCMW1;GJRQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMAUV1;GJRQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELQEE2;FJBL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELGXZ1;FJBL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJHSX2;GDAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQXJC1;KBVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBHAN1;DJGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHVSW1;KBVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEMQB1;SVKT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDEGM1;GJKJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDEGM2;DCBY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQDHT2;DEUP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZNTV2;GDCL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZNTV1;VQCK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQDHT1;UNDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYDTZ2;VCMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYDTZ1;PFMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYMPX2;CJGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYMPX1;PFMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDSQC1;QWUF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDSQC2;QUEH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHVSW2;QUEH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESYXC1;SCKK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKRWH1;SCKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKRWH2;QWUF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMCSA1;QCUD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXHYS1;QCUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBHAN2;PUAB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETCRB1;QUBY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETCRB2;ERSY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUTMQ1;QUBY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETKMT1;TJGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXHYS2;TQKU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJNEC1;QUUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMCSA2;BHZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETKMT2;GUDS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJNEC2;MHNP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENMJM2;VDKU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENMJM1;VDKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECRTL1;YPMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECRTL2;YPMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESYXC2;TQKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJRRH1;PFEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQXJC2;CJGE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJRRH2;PFEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMFMP2;NPRF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKLLB2;NPRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMFMP1;DDDS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKLLB1;DDDS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEQEE2;QUUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEQEE1;GUDS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EURHM1;XEGF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESHXW1;XEGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELQUE1;XECN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EURHM2;TYRH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESHXW2;NHDX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVXVM2;NHDX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVXVM1;GDWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBKGR2;PFTP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJHSX1;DAGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVPBJ2;DAGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVPBJ1;PUAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETMDP2;PLSM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZEVM2;PLSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGPEF2;PBXS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGPEF1;FDEX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMYYM2;FDEX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMYYM1;DMUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZEVM1;DMUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMMH1;PFTP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMMH2;PBXS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETMDP1;MUHS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBLFG2;MBGY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBLFG1;VVWJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDJTH2;YFYX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZBRB1;YFYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDJTH1;VKTE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZBRB2;VKTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EESLV1;TJGL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEBBJ2;XECN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENNMR2;VVWJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EABZL1;MUHS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERAJC2;KTRE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERYCV2;KTRE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBNRU1;MBGY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPVNQ2;GDWE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZSKM1;JFSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERAJC1;JFSF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBNRU2;MHNP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELZHQ1;ZUGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELZHQ2;MDRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPVNQ1;MCLB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETTVH2;XXCT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBMAC1;MMWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBMAC2;VERA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETTVH1;PFFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERYCV1;PFFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EABZL2;DPFS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELEBA1;QMXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEBBJ1;NWNS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVAPF2;NWNS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EALAS1;MMJZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYPGT1;TUZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYPGT2;QFUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESGSW2;UGPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESGSW1;XRKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPKAW1;XRKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBAEA2;QNYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBAEA1;YHVN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESWRN1;FXSX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBAEA3;YEFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPFVG1;ABHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBRLR2;QPBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBRLR1;RZTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELEBA2;RZTQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVAPF1;SKJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZSKM2;YEFN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYACD1;RRSJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETBFN2;FXSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETBFN1;RRSJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENKJM2;YZRP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPZGT1;YWMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENQVY2;PPMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPZGT2;DRBY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENQVY1;DRBY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERDEH2;ZMMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMLZC1;ZHXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMLZC2;BMVG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERDEH1;VLFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJUXN1;EVKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVXBD1;UZTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EETPD2;UHAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVXBD2;CGZK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJJQC2;DYCR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EETPD1;ZENM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENKJM1;XTTP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZMHM2;KTBB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZMHM1;GBZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESSMY1;SRGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXRFH1;UZQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYACD2;TFMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETANZ1;KVDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXRFH2;VAYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETANZ2;LTQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESSMY2;HUDF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESUVA2;QUHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQRKF2;BMEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESUVA1;VCFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVLBW1;WBYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAAFU2;YMVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVLBW2;QLKW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQRKF1;PHQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAAFU1;VBNS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EALAS2;ZAVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGCPC2;JENK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGCPC1;HSGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERDPL1;DWGY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESSJR1;PKNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAKMJ2;CVUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAKMJ1;SMSK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEYMD2;GVUG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEYMD1;QWJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYVGS1;MRPB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFMSH2;DJJH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFMSH1;EFTX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERPYJ1;SLPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVSDL1;HTYH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQKKX1;FMEU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFRKG1;BMQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMJWB1;HFJL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDFLB1;BESY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYMEF1;HKLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESSJR2;HKLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBTRV2;SLPW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBTRV1;BESY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYFJH1;FNQL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVTTH2;FNQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYRJA2;FMEU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYRJA3;HFYU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYRJA1;HFYU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESTRX1;GNGN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESTRX2;JDFR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHAHC1;FYHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBTRV3;EFFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESXXY1;HTYH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESLSM1;FVWK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAFXQ1;FVWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETBJT1;GSKW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPLGY1;BEML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXZDG1;HXPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKYZH1;HXPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHPFZ1;BEML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECYLU1;JDXK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDSUB1;FHQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYMTT1;HFJL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYMTT2;FUCP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERLRG2;GSKW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERLRG1;JDXK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDDRR1;HFRG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDDRR2;FUCP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUNLA2;FYHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUNLA1;GCCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EADFM1;FHQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMEDU1;GUYX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXNSP1;JEAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEMTQ1;SASN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGSLD1;JEAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVSMN1;FWUE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECYLU2;FWUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPJVN2;VBQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPJVN1;LCXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMXHT1;LTPP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFUQM1;LWYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBRPK1;LLFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJYMH1;LMKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJTMD2;VEWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJTMD1;VHHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJYMH2;UYZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJXGC1;LLBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFUQM2;SASN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFAMF2;PQAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMKCZ2;PQAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMKCZ1;WEYL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMXHT2;SVFL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFAMF1;GCCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESRYC2;JDFR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESRYC1;ZAWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENAMA1;MVQQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJJQC1;MVQQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESNJL1;WEYL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAWEP2;BKVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKNDT1;KPBX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKPVA2;NBHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEXTN1;NBHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEXTN2;KPBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKNDT2;SBQF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKPVA1;SBQF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEWKB2;FBJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEVAX2;HDSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEULD1;GXFE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEUMF1;HHCB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEULD2;JARN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEVAX1;HCGD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEWKB1;HCGD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEUMF2;JARN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EETVM2;HVHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDFMH1;HVAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDFMH2;HVAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERTDZ1;HXVU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQDEV2;HCLH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMNFW2;HCJN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMNFW1;HCJN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUXFM1;HCLH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EALEX2;HXVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EALEX1;HDGS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBGCE1;HDGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQDEV1;HUMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERTDZ2;BBGQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDFRM1;HAQA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETKYM1;HUWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPJPW1;HECP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJHHJ1;HFGH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPTGF1;JBCE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFTXC1;HUSP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EETVM1;HUSP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVJZE2;HUMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUXFM2;APBB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVKTN1;HBQR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESJKM2;HMDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXECT1;JBAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETCRW2;HAQA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXYGU1;HBQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXECT2;JAAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESJKM1;JAAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXYGU2;HVHB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYCVT2;GXKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYCVT1;GXFE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXAHV2;GXKC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXAHV1;HCJU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESBMF2;HCJU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESBMF1;HWTR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYPCA2;FNMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYPCA1;FBKQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETCRW1;FBKQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJYCM1;FNMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJYCM2;HWTR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVAQK2;FJPM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAWEP1;FJPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVKTN2;HYHR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVHGA1;BBRP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVHGA2;BBRP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVJZE1;FBJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERKWA1;HDSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETMKA1;HYHR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQRQH2;FVQN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETMKA2;BFYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVAQK1;HWGB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERQAG1;HHCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERKWA2;HKJT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQRQH1;HKJT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERQAG2;GNGN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUBQK2;GUYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUBQK1;HWUU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJUXN2;HWGB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERTRN1;BFYF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFVDN2;HWUU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKVAF2;FSSS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKVAF1;FSSS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELKAM2;ARTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EETPY1;HTKU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXBXV2;FVQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXBXV1;LAJX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYNTK2;LSJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYNTK1;GFXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUBNQ2;SKXB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELKAM1;YVAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENLNN2;GJWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENLNN1;JVJJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EETPY2;YKVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBHDV1;YUVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERPXP1;GKJE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESCAN2;JVJJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFVDN1;GKJE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKFPH1;BXKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESNJL2;MYUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENAMA2;SCTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDLLA2;DGYU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDKAW2;MQQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDLLA1;DGYU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUAKM2;KFGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUAKM1;MCRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERPXP2;MMAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDKAW1;MCLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKFPH2;GJWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESCAN1;DEBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXVJW1;GFTD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXVJW2;DMSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUBNQ1;LWNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERTRN2;DAVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFZVY2;HRHT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBGCE2;TFNX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFZVY1;SXUT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMSAL1;TBVG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHDPN2;GCKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMSAL2;YUTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHDPN1;SMXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJPXZ1;SUEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZMVH2;GCKY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGVSZ2;GJNX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZMVH1;YCWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGVSZ1;DMXR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDVTM1;SCYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDVTM2;LEEZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQQTF2;GPCK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQQTF1;GPCK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELTWE2;GPCK3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELTWE1;BFWN3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJPXZ2;BFWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERNMW1;BFWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEEBP2;LEEZ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENLFX2;AYWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBHDV2;YFMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENLFX1;AYWG3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXXXJ2;ACZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXXXJ1;AYWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVRQF2;ACZL3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVRQF1;ACZL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYMAH2;YFMK3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERNMW2;LEEZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEEBP1;RLDU3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYMAH1;DWEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKWHE1;LQLX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKWHE2;LQSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EABMV1;MBGB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EABMV2;BMJT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECDSK2;JBGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVZXQ2;JQUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVCMF1;BTJK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENJHJ1;RLDU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EATBU2;DFTJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAXSC1;DCTR3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAXSC2;DCTR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EECEL1;YFMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EECEL2;RLDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBVDE1;DCTR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBSBK1;DMQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBVRX1;GFTD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGVBH1;GMKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGXYK1;JQRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBBRC1;JJZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBRYY1;JJZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGVFZ1;JEMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGBBX1;JEMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGXMV1;LBPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EATBU1;BPCA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERSQL2;LBPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUNDB1;BPCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERSQL1;AMSH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EVMDH1;AMSH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EAUVL1;RUNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGNTR2;RUNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGNXY1;RFHU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMAMA1;CDXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVGB1;CDXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKBGT1;LFTC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQJKR2;LFTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQJKR1;ZDYJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKBGT2;TVZR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVRW1;MUUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVKE1;MUUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVKE2;MQXN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVRW2;MQXN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVGB2;VWBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGHLG1;TVZR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBFNG1;VWBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGCLY1;FVYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGWPS1;ZDYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZYFE2;DPXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZYBX2;MUFJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFHVR1;DPXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFHVR2;FVYV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHBRM1;MUFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJCQD1;JQRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFVKY1;HMQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFVKY2;MLTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWVJR1;DFNP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGQMR1;YXPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAHQM1;LMGB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXNVQ1;FEHT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXABG1;DYWP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDDZW1;AKAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVQCK2;MAPU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZTJF2;DVXD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZYBX1;TEUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZYFE1;TCAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDAZT3;LHQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPXDT1;LFHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVQSZ1;LDXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYWXC2;BNET1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYWXC3;KSNG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYWXC1;KNKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDAZT2;GFGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDAZT1;SAVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZZYF2;MKYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMWDT1;YYDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMWDT2;MRCP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZTJF1;DSAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZZYF1;MYHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHAJF2;SAVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHAJF1;DMXR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGNXY2;AMCY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EEFTX1;SDGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EEFAS1;GFGE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EJWCB1;LJBF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EFGKC1;GKLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGDDC2;MTVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGDDC1;YTCN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EJCLY1;GJNX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EFHWV1;GKLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDVSJ1;LACF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGPCW1;PBRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDGSM2;CSEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EZMRK3;AMGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDGSM1;ZPFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EZMRK1;ZNTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EKBJP2;VTUZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EFGKC2;QZNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EZMRK2;AMXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EQXRW1;ZPDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EJZYE2;RWTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EKBJP1;FPMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EXJKZ1;EYUZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EZYUU1;FAWB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDWVE1;MLLQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EMSGT1;BWVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGPCW2;BBDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EEGDC1;BFHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EBPHB1;BMNJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EEGDC2;ZSCM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EBDDN1;AMME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EJZYE1;FSDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EMLYE1;ALGK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EEFFG2;CXZD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDPLK2;ABWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDPLK1;ABWV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EMPHM1;JKMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDJJH2;JKMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EKKFB1;ZWTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EJWCB2;ZPCE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGJYX2;AMAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EKKLQ1;EGML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDSAS1;TAAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EELCH2;GEZG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EELCH1;HYVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDSAS2;GEZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGDCL1;HYVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDVGJ1;APFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDSPG1;WZFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EAUVL2;CATQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EEFAS2;WDZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGBWV2;RCZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGNTR1;LPMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGJYX1;JWLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EEFGN1;EVYD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGBWV1;UZEZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EEFGN2;UZEZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDNGU2;JVZR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDNGU1;NENN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDJGC2;NENN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGDAT2;VZHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGJKJ1;EVYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGJRQ2;VPQL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGJRQ1;JWLN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EFJBL2;VZHB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EFJBL1;JVZR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGDAT1;EYTP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EKBVR1;VPQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDJGC1;LPMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EKBVR2;VGPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25ESVKT1;PGSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGJKJ2;RJZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDCBY1;APBU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDEUP1;UMCR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGDCL2;UMCR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVQCK1;VLPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUNDB2;APBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVCMF2;PGSW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EPFMK2;VGPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ECJGE1;CMTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EPFMK1;CPJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EQWUF1;CVRY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EQUEH2;CEPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EQUEH1;MWFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ESCKK2;BPBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ESCKK1;AHWX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EQWUF2;AHWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EQCUD2;CXZD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EQCUD1;HGQQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EPUAB2;FQNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EQUBY2;UDPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EERSY1;UDPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EQUBY1;FCZN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ETJGL1;FCZN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ETQKU2;FQNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EQUUW2;MRYJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBHZV1;MRYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EGUDS1;VBWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMHNP1;VBWA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVDKU2;KMFD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVDKU1;KMFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYPMU1;WECT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYPMU2;WECT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ETQKU1;CYSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EPFEG1;MJQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ECJGE2;MJQX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EPFEG2;NALE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ENPRF2;TZEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ENPRF1;ARUK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EDDDS2;ZBRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EDDDS1;MZFD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EQUUW1;MZFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EGUDS2;DDVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EXEGF2;DDVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EXEGF1;TZEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EXECN2;NALE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ETYRH1;DLNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ENHDX2;DLNQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ENHDX1;ZWQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EGDWE1;ZWQR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EPFTP2;AZJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EDAGT1;AZJG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EDAGT2;FCDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EPUAB1;LHXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EPLSM2;BVFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EPLSM1;HESL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EPBXS2;GTGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EFDEX1;GTGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EFDEX2;ZSWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EDMUN1;ZSWD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EDMUN2;AHSR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EPFTP1;MPLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EPBXS1;MPLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EMUHS1;ZCDW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EMBGY2;ZCDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EVVWJ2;ZCTR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EYFYX2;ZCTR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EYFYX1;SECD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EVKTE2;UDGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EVKTE1;NWZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ETJGL2;BVFK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EXECN1;SYXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EVVWJ1;SYXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EMUHS2;PQYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EKTRE1;AFEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EKTRE2;PYEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EMBGY1;BSTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EGDWE2;BUCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EJFSF1;GECD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EJFSF2;GECD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMHNP2;QPML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZUGR1;AFEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMDRB1;PCXD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMCLB1;DSCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXXCT1;DSCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMMWN1;JCFV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVERA1;JCFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPFFF1;RNKW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPFFF2;RNKW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDPFS1;TKPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQMXM1;EYTP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENWNS2;VWCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENWNS1;SXKH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMMJZ1;VXPU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETUZM1;SAQX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQFUV1;SEUY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUGPX1;SADZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXRKF1;SADZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXRKF2;SAQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQNYQ1;SEZC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYHVN1;SEUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFXSX2;SACZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYEFN1;SEZC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EABHZ1;SACZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQPBX1;LCJS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERZTQ1;LCJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERZTQ2;AKHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESKJV1;ZXMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYEFN2;YGJP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERRSJ2;GCPV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFXSX1;MELB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERRSJ1;WEXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYZRP1;MXZB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYWMU1;MXZB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPPMC1;FDAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDRBY1;FDAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDRBY2;JQXL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZMMW1;WEXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZHXA1;JQXL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBMVG1;GSRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVLFD1;MEQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEVKA1;MEQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUZTH1;KTDW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUHAA1;KTDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECGZK1;HAXF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDYCR1;HAXF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZENM1;YQDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXTTP1;SXKH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKTBB1;NVJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGBZL1;SJUS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESRGL1;RFKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUZQV1;RFKU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETFMA1;VGWZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKVDQ1;AGQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVAYM1;SADD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELTQS1;AVCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHUDF1;AGRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQUHE1;AYCK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBMEJ1;EYWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVCFH1;DSLK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWBYT1;AAEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYMVW1;LSGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQLKW1;LSGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPHQX1;LSJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVBNS1;LSJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZAVE1;LBTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJENK1;WTVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHSGF1;WTVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDWGY1;ZKCQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPKNE1;SJUS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECVUM1;ZSVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESMSK1;ZNEN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGVUG1;ZABX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQWJD1;ZSVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EMRPB1;ZNEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDJJH1;ZKCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EEFTX2;YCMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ESLPW1;ZABX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHTYH2;NVKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFMEU1;NVKV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBMQX1;NVHP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHFJL2;NVHP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBESY2;YCMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHKLS2;XQNU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHKLS1;NVJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ESLPW2;TKPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBESY1;NMFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFNQL2;DCVD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFNQL1;DUVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFMEU2;UJYT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHFYU1;MVEY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHFYU2;UJYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGNGN1;TEBF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJDFR2;TADV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFYHK2;TEBF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EEFFG1;TADV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHTYH1;RAVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFVWK2;RZFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFVWK1;NRHS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGSKW2;NQXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBEML1;NKWZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHXPL2;NKPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHXPL1;DBWL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBEML2;DUVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJDXK1;DCVD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFHQP1;EKAU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHFJL1;VWCD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFUCP2;CYKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGSKW1;GBFS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJDXK2;CYKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHFRG2;GBFS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFUCP1;EKAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFYHK1;TTKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGCCX2;DBWL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFHQP2;TTKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGUYX2;DMCH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJEAM2;JLYU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESASN2;DMCH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJEAM1;JLYU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFWUE2;QLWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFWUE1;NMKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVBQC1;AAVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELCXY1;XQNU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELTPP1;AFLR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELWYD1;TXMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELLFL1;TJZZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELMKD1;TQVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVEWY1;TFRJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVHHH1;TGQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUYZV1;MWPB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELLBA1;PCEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESASN1;PCEW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPQAZ1;NSEB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPQAZ2;MWPB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWEYL1;NSEB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ESVFL2;MDQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGCCX1;HTLR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJDFR1;AZXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZAWH1;AZXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVQQ2;CFWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVQQ1;CBZS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWEYL2;NAVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBKVJ1;YEDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKPBX2;RXLP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENBHM2;RXLP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENBHM1;DFYH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKPBX1;DFYH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESBQF2;MMHG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESBQF1;NZST1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFBJQ1;KTYK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHDSA2;NAVZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGXFE1;XPVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHHCB2;XPVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJARN1;UKTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHCGD2;UKTL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHCGD1;QGVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJARN2;QGVL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHVHB1;ZBRG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHVAL2;FSDT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHVAL1;CSQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHXVU2;REWC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHCLH1;RUDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHCJN2;ZNPV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHCJN1;DWGL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHCLH2;ZNPV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHXVU1;UGQS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHDGS2;UGQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHDGS1;DWGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHUMQ1;TEKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBBGQ2;TEKU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHAQA1;HGHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHUWG1;YQFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHECP2;SVFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHFGH1;RQXN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJBCE1;RQXN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHUSP2;KVXX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHUSP1;RUDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHUMQ2;REWC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAPBB1;ARUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHBQR2;NVUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHMDB2;PMHW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJBAT2;SLDE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHAQA2;PMKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHBQR1;PMKD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJAAM1;GXDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJAAM2;SLDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHVHB2;HBJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGXKC1;GXDW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGXFE2;ZUJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGXKC2;ZNHU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHCJU2;PPHB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHCJU1;PPHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHWTR1;YUSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFNMX1;YUSZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFBKQ2;NVUD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFBKQ1;KQSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFNMX2;KRYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHWTR2;KQSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFJPM2;KVXX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFJPM1;KRYS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHYHR2;AAEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBBRP2;ABAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBBRP1;YKVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFBJQ2;NVTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHDSA1;UFMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHYHR1;YSMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFVQN2;NUFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBFYF1;VRVD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHWGB2;DDUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHHCB1;AAGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHKJT2;AKUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHKJT1;AJFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGNGN2;AEGZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGUYX1;VFZZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHWUU1;KSTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHWGB1;KSTC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBFYF2;KTSU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHWUU2;KNVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFSSS1;KNVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFSSS2;RQXD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EARTU1;KNQA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHTKU2;GLHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFVQN1;KXKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELAJX1;KXKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELSJM1;ZNUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGFXG1;KTKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ESKXB1;ZNUK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EYVAK1;RQXD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGJWH1;KTSU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EJVJJ2;GLHF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EYKVE1;KNQA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EYUVW1;KTKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGKJE1;HBJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EJVJJ1;PMHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGKJE2;DPMZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EBXKB1;SHUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EMYUY1;UWFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ESCTB1;BDML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDGYU1;ANUB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EMQQM1;YTYH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDGYU2;YTYH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EKFGL1;SJVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EMCRB1;SCYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EMMAR1;KSJH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EMCLA1;KSJH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGJWH2;NDTR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDEBH1;NDTR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGFTD1;QTGP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDMSV1;QTGP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ELWNM1;JNNG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDAVS1;JNNG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EHRHT1;ANUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ETFNX1;BDML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ESXUT1;BUKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ETBVG1;RCNW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGCKY1;ANTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EYUTB1;UWFG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ESMXW1;PBRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ESUEJ1;CSQV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGCKY2;KDBR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGJNX1;RCNW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EYCWU1;GFBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDMXR1;CSEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ESCYY1;HDAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ELEEZ1;KDBR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGPCK1;ANTS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGPCK2;BMFV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGPCK3;BMFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EBFWN3;BUKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EBFWN1;SHUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EBFWN2;AYEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ELEEZ3;FBHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EAYWG2;WHXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EYFMK1;WKEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EAYWG3;QWMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EACZL1;XJVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EAYWG1;GHWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EACZL3;BJKS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EACZL2;MKPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EYFMK3;GHWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ELEEZ2;BPJU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ERLDU3;DYCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDWEJ1;MHLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ELQLX1;FBHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ELQSW1;LFYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EMBGB1;SKFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EBMJT1;DPMZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EJBGG1;DQYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EJQUM1;REVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EBTJK1;SPXP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ERLDU2;HJDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDFTJ1;EKTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDCTR3;VGVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDCTR2;QGTZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EYFMK2;KTAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ERLDU1;BDMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDCTR1;BDMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDMQS1;AMPF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGFTD2;AMPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGMKL1;EAKX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJQRA2;EKTH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJJZH1;JDAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJJZH2;JDAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJEMB2;UEZF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJEMB1;UEZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELBPA2;QKVG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBPCA2;VFZZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELBPA1;TKQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBPCA1;RXFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAMSH1;ZNRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAMSH2;MZMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERUNA2;MZMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERUNA1;EHUZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERFHU1;EHUZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECDXM1;PELW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECDXM2;HFYH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELFTC2;XGPH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELFTC1;YSEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZDYJ2;YSEF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETVZR2;XGPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMUUW1;XGPH3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMUUW2;PAJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMQXN1;PAJD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMQXN2;XJAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVWBM1;ZNAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETVZR1;YQYW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVWBM2;NVXC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFVYV1;YQYW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZDYJ1;GFAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDPXJ2;RRFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMUFJ2;GFWQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDPXJ1;GFKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFVYV2;GEPY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMUFJ1;GEPY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJQRA1;QXBK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHMQM1;GFFR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EMLTE1;NVXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDFNP1;GFFR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EYXPM1;GFAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ELMGB1;QXBK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EFEHT1;AYQQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDYWP1;AYQQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EAKAN1;PQYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EMAPU1;DPGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDVXD1;ZALC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ETEUD1;GFWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ETCAF1;CRBP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ELHQT1;USZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ELFHQ1;GVVN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ELDXC1;GVVN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EBNET1;SRZN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EKSNG1;SRZN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EKNKB1;GMJH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGFGE1;GMJH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ESAVM1;CEME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EMKYM1;CEME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EYYDL1;RFFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EMRCP1;RFFP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDSAF1;MKMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EMYHJ1;MKMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ESAVM2;YJAN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EDMXR2;YJAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EAMCY1;USZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ESDGS1;YMVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGFGE2;TSEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70ELJBF1;MHLB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGKLT2;CRBP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EMTVC1;NUQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EYTCN1;NUQT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGJNX2;JZUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS70EGKLT1;JZUY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ELACF1;LJRE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EPBRM2;MHLB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ECSEE2;TSEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAMGW1;MQUX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZPFD1;MQUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNTH1;VSFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVTUZ1;VSFB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQZNY1;KBCE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAMXQ1;KBCE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZPDD1;RRFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERWTC1;GFKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFPMC1;VFZZ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEYUZ1;MYWR3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFAWB1;QDRT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMLLQ1;VCPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBWVL1;RGZT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBBDA1;RGZT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBFHZ1;VCPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBMNJ1;EKDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZSCM1;GFJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAMME1;GFJV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFSDT1;EKDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EALGK1;QQDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECXZD1;QQDT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EABWV1;HYAP3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EABWV2;FASC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJKMA1;HYAP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJKMA2;HYAP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZWTM1;QDRT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZPCE1;ACEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAMAS1;ACEN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEGML1;TYGK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETAAA1;FRUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGEZG2;PNSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHYVX1;TXBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGEZG1;YYLH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHYVX2;QXYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAPFJ1;GUDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWZFC1;JRFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECATQ1;VMHZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWDZM1;YHUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERCZV1;MYRE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELPMD1;VMHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJWLN1;VMHZ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEVYD2;BSFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUZEZ1;FMFT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUZEZ2;MYWR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJVZR2;FASC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENENN1;GFPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENENN2;MYWR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVZHB1;ARMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEVYD1;BVVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVPQL2;RECS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJWLN2;NPUZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVZHB2;EXRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJVZR1;JLFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEYTP1;YZSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVPQL1;LCKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELPMD2;VRCR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVGPL2;ZMTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPGSW1;YZKT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERJZH1;YZKT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAPBU2;FTFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUMCR1;FTFN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUMCR2;GFPW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVLPK1;JYSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAPBU1;UUDX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPGSW2;XXSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVGPL1;DFNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECMTV1;KRAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECPJS1;KRAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECVRY1;QXPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECEPL1;QXPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMWFM1;RBWE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBPBM1;RBWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAHWX2;DFNE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAHWX1;ZYMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECXZD2;GVXS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHGQQ1;DVQJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFQNM1;TDHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUDPA2;CPVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUDPA1;MLQK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFCZN2;HWCM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFCZN1;HECP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFQNM2;HFGH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMRYJ2;BBUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMRYJ1;UMHR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVBWA1;MMCK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVBWA2;DWLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKMFD2;MMCK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKMFD1;RFVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWECT2;RFVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWECT1;RFMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECYSA1;QEBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMJQX1;QEBA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMJQX2;QJMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENALE2;QJMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETZEA2;QBQJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EARUK2;QBAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZBRG1;QBAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMZFD2;QBQJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMZFD1;RFMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDDVK2;DWLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDDVK1;RFAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETZEA1;SEAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENALE1;UMHR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDLNQ1;AFGQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDLNQ2;GCUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZWQR1;FNNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZWQR2;FXPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAZJG1;FSWJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAZJG2;FZKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFCDG1;FZUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELHXC1;SCWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHESL1;AFGQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGTGV1;SCWV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGTGV2;ZEUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZSWD1;ZEUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZSWD2;FADA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAHSR1;FADA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMPLT1;RFAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMPLT2;REVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZCDW2;REVC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZCDW1;FXWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZCTR1;FXWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZCTR2;PQVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESECD1;LKZD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUDGC1;WXUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENWZP1;KRGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBVFK2;KRGG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESYXV2;SRFP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESYXV1;FZBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPQYP1;FZBW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAFEG1;YDVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPYEA1;PQVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBSTH1;YCWL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBUCA1;YCWL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGECD1;SRFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGECD2;ZUAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQPML1;XHQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAFEG2;WXUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPCXD1;ZUAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDSCX1;AGVP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDSCX2;YHDV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJCFV2;XVYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJCFV1;YNSG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERNKW1;XVYQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERNKW2;XURW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETKPT1;YHDV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEYTP2;AGVP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVWCD1;YNWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESXKH2;MFMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVXPU1;XURW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESAQX2;YNSG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESEUY2;YNWW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESADZ2;RFRX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESADZ1;RFRX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESAQX1;MFMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESEZC2;DVNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESEUY1;GNXL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESACZ1;YJMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESEZC1;TNTG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESACZ2;MZTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELCJS2;VBJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELCJS1;RXFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAKHY1;RXFA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZXMT1;XLNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYGJP1;LMUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGCPV1;DSVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMELB1;DSVE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWEXM1;LMUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMXZB1;XLNV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMXZB2;VMLH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFDAV1;TNTG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFDAV2;VYRF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJQXL1;VMLH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWEXM2;FEDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJQXL2;MZTC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGSRD1;PUVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMEQM1;PUVF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMEQM2;PWTL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKTDW2;PXUZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKTDW1;ULYS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHAXF1;HSCK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHAXF2;HSCK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYQDA1;PXUZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESXKH1;PWTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENVJA2;SEAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESJUS1;YUWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERFKU1;PKJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERFKU2;PKJV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVGWZ1;PLVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAGQL1;PLVL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESADD1;VBJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAVCX1;YUWQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAGRM1;VYRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAYCK1;FEDQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEYWW1;GNXL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDSLK1;UMSB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAAEQ1;NMRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELSGV1;QSLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELSGV2;QQYR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELSJF2;QQYR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELSJF1;QSLN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELBTC1;MEPQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWTVJ1;EPMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWTVJ2;EPMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZKCQ2;JJPM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESJUS2;JJPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZSVS1;MEPQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNEN2;GPRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZABX1;GPRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZSVS2;DVNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNEN1;YJMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZKCQ1;NMRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYCMX1;SLJN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZABX2;SLJN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENVKV1;RCPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENVKV2;QAPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENVHP1;QAPH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENVHP2;UMSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYCMX2;RCDQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXQNU1;RCDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENVJA1;RKRX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETKPT2;RCPZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENMFQ1;UUUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDCVD2;RKRX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDUVJ1;VKME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUJYT2;UUUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVEY1;PSPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUJYT1;PSPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETEBF1;VKME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETADV1;YDVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETEBF2;LKZD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETADV2;XHQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERAVF1;FWMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERZFF1;MKKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENRHS1;UMCB3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENQXA1;UMCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENKWZ1;UMCB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENKPA1;MMDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDBWL1;MJPB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDUVJ2;UMCB4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDCVD1;MMDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEKAU2;MJPB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVWCD2;MMDS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECYKB2;MMDS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGBFS2;UBFB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECYKB1;UBFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGBFS1;UBYE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEKAU1;UBZF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETTKB1;MKKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDBWL2;UVJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETTKB2;UMVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDMCH1;CFPP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJLYU2;TUWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDMCH2;TUWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJLYU1;LKCU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQLWQ1;PENZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENMKF1;XXSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAAVL1;CFPP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXQNU2;PENZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAFLR1;UERQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETXMY1;XXSM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETJZZ1;UTGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETQVV1;UVDV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETFRJ1;FVFX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETGQS1;CCDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMWPB2;YNXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPCEW1;UBYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPCEW2;UBZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENSEB1;DSBU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMWPB1;FWMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENSEB2;QNBA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMDQE1;QNBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHTLR1;ZUFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAZXM2;CTME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAZXM1;CHWA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECFWT1;CTME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECBZS1;CHWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENAVZ1;XRFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYEDD1;ECBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERXLP1;KJPS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERXLP2;NSUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDFYH2;NSUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDFYH1;KJPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMMHG1;VPLD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENZST1;VPLD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKTYK1;QUJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENAVZ2;DBRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXPVV1;FDMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXPVV2;XQEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUKTL1;AJUT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUKTL2;UAAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQGVL1;AJUT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQGVL2;UAAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZBRG2;WQKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFSDT2;WQKK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ECSQV1;XQEV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EREWC1;FDMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERUDD2;PHNL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNPV1;AGNN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDWGL2;PHNL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNPV2;AGNN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUGQS2;DBRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUGQS1;QUJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDWGL1;LKCU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETEKU1;DSBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETEKU2;JAMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHGHJ1;GSGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYQFK1;HNKD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESVFB1;HNKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERQXN1;MPNJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERQXN2;MPNJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKVXX2;PZKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERUDD1;FARZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EREWC2;FARZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EARUK1;YYHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENVUD1;JMZS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPMHW2;AMBD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESLDE2;YYHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPMKD1;AMBD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPMKD2;JMZS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGXDW1;VYMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESLDE1;WCHC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHBJA1;PZKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGXDW2;VVDC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZUJM1;VVDC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNHU1;XJTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPPHB2;JAMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPPHB1;GKNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYUSZ1;GKNY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYUSZ2;WGZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENVUD2;WGZA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKQSA2;FNDZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKRYS1;XJTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKQSA1;LNSB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKVXX1;FNDZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKRYS2;JJWQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAAEG1;AFKE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EABAC1;LNSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYKVR1;AFKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENVTU1;JJWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUFMJ1;WCHC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYSMD1;SQRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENUFK1;MRGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVRVD1;LAYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDDUJ1;RATG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAAGM1;RATG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAKUM1;ZAWQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAJFV1;ZAWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAEGZ1;DKZA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVFZZ2;MZAB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKSTC1;BCMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKSTC2;EYKR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKTSU1;MZAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKNVR1;BCMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKNVR2;DKZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERQXD1;EYKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKNQA1;DAZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGLHF1;DAZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKXKA1;MRGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKXKA2;KEVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNUK1;APXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKTKA2;KEVW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNUK2;KMEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERQXD2;VYMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKTSU2;GSGF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGLHF2;MXXZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKNQA2;BBMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKTKA1;MXXZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHBJA2;BWVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPMHW1;BBMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDPMZ2;APXY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESHUH1;BWVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EUWFG1;KMEW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EBDML1;AACJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EANUB2;AACJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYTYH2;BLCN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYTYH1;BLCN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESJVC1;ULYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESCYN1;WZRL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKSJH2;YBQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKSJH1;NMAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENDTR2;HDAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENDTR1;CEGU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQTGP1;YFAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQTGP2;MWCY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJNNG2;YTFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJNNG1;MWCY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EANUB1;YTFN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EBDML2;MMMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EBUKF2;YFAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ERCNW1;MMMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EANTS1;WQPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EUWFG2;WQPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EPBRM1;YUVD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ECSQV2;YVGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EKDBR2;ZCKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ERCNW2;UJNL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EGFBA1;NMAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32ECSEE1;MLMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EHDAD1;UNJL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EKDBR1;UMTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EANTS2;UMTB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EBMFV2;UMPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EBMFV1;UMAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS32EBUKF1;UMAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESHUH2;UEMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAYEM1;UKRS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EFBHK2;JYMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWHXE1;JYMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWKEQ1;WCHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQWMT1;WCHZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXJVT1;HTQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGHWG2;HTQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EBJKS1;HDAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EMKPT1;CEGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EGHWG1;YVGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EBPJU1;YUVD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDYCD1;ZCKY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EMHLY1;ZEUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EFBHK1;ZFAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25ELFYD1;ZHTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25ESKFY1;ZHTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDPMZ1;UJAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS25EDQYG1;UUXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EREVY1;UPSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESPXP1;UMWL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHJDM1;NZAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEKTH1;RQMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVGVZ1;RQMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQGTZ1;NZAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKTAD1;FNJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBDMV2;BZEL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBDMV1;FNJD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAMPF2;ZPRQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAMPF1;SMDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEAKX1;SDPW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEKTH2;SDPW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJDAM2;SEFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJDAM1;ZEUX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUEZF2;SEBJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUEZF1;SZVE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQKVG1;SNKS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVFZZ1;SNKS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETKQD1;SEFJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERXFL1;SEBJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNRR1;SMDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMZMN2;SZVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMZMN1;YVYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEHUZ1;YVYN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEHUZ2;ZFAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPELW1;SMMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHFYH1;SMMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXGPH2;UMPX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYSEF1;UEMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYSEF2;UEVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXGPH1;ARPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXGPH3;CTDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPAJD1;JAWS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPAJD2;WFNW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXJAJ1;JQTU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNAH1;WFNW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYQYW2;UFWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENVXC2;KLNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYQYW1;KLNZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGFAW1;UFWK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERRFQ2;JAWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGFWQ2;JQTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGFKB1;VGJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGEPY2;KPCC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGEPY1;VGJM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQXBK2;KPCC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGFFR2;YBMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENVXC1;YBMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGFFR1;NAEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGFAW2;AQKK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQXBK1;VKLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAYQQ1;VKLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAYQQ2;NTVN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPQYE1;FHXW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDPGV1;NTVN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZALC1;FHXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGFWQ1;AMET1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECRBP2;NAEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUSZH2;AMWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGVVN2;AQKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGVVN1;AMMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESRZN2;AMMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESRZN1;AMET2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGMJH2;AMWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGMJH1;ARPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECEME2;ERWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECEME1;UEVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERFFP1;LBUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERFFP2;VQRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMKMX2;TDHU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMKMX1;VRGY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYJAN2;VRGY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYJAN1;JLNS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUSZH1;JLNS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYMVF1;GEJL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETSEA1;GEJL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMHLB2;QXHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECRBP1;KBAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENUQT1;QXHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENUQT2;WPUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJZUY1;WPUR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJZUY2;KBAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELJRE1;UKRS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMHLB1;TPSK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETSEA2;VQRD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMQUX2;VRFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMQUX1;TXNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVSFB1;LBUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVSFB2;BEAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKBCE1;ERWT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKBCE2;RJNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERRFQ1;BEAU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGFKB2;RJNZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVFZZ3;TDHU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMYWR3;VRFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQDRT2;TXNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVCPR2;TCTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERGZT2;TCTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERGZT1;TPVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVCPR1;TPSK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEKDB2;TPVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGFJV1;ZPRQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGFJV2;KXLJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEKDB1;KXLJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQQDT1;XNFD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQQDT2;VJVU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHYAP3;EZVZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFASC1;LCRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHYAP1;EZVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHYAP2;AHQH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQDRT1;MQWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EACEN1;AHQH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EACEN2;MQWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETYGK1;MAZY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFRUX1;MAZY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPNSW1;XNFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETXBW1;DBCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYYLH1;LARP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQXYG1;TXRP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGUDW1;TXRP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJRFB1;VJVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVMHZ2;RDVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYHUW1;RDVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMYRE1;VAAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVMHZ1;VDMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVMHZ3;TXQZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBSFK1;VCYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFMFT1;TXLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMYWR2;QVKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFASC2;TXLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGFPW1;VAAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMYWR1;LCRB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EARMN1;UJPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBVVM1;VNZY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERECS1;VNZY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENPUZ1;KGGQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEXRA1;UJPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJLFF1;KGGQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYZSV1;LARP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELCKV1;DBCB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVRCR1;URZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZMTC1;TCAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYZKT2;UGFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYZKT1;MMNR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFTFN1;UGFV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFTFN2;JAVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGFPW2;JAVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJYSM1;PKTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUUDX1;VYEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXXSX1;MMNR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDFNE1;PVST2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKRAA2;VYEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKRAA1;PVST1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQXPL2;MLMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQXPL1;FAMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERBWE2;WZRL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERBWE1;FAMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDFNE2;PKTU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZYMY1;CEJU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGVXS1;AHCB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDVQJ1;UYCJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETDHK1;TCAB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECPVZ1;AKHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMLQK1;AKHX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHWCM1;AMCZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHECP1;AMCZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHFGH2;UYCJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBBUK1;PFEM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMHR1;CEJU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMCK1;PFEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDWLS1;NRJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMCK2;NRJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERFVX2;AZUY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERFVX1;AZUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERFMS2;AHCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQEBA1;UZJR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQEBA2;UZJR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQJMY1;BZEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQJMY2;PALF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQBQJ2;HTBS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQBAV1;VQHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQBAV2;GMWB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQBQJ1;GMWB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERFMS1;LUNQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDWLS2;HTBS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERFAD2;LUNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESEAA1;AKWY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMHR2;DKAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAFGQ1;PALF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGCUM1;DKAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFNNM1;APNG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFXPM1;APNG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFSWJ1;GGYD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFZKB1;WLMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFZUB1;AKWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESCWV1;VQHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAFGQ2;ZZPV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESCWV2;AYRY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZEUM2;MVJY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZEUM1;MVJY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFADA2;XFFA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFADA1;XFFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERFAD1;AZDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EREVC1;AXDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EREVC2;AYZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFXWN1;ZZPV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFXWN2;AWEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPQVM2;BAAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELKZD1;AWQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWXUN1;AYTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKRGG1;BABC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKRGG2;AYAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESRFP2;GGYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFZBW1;WLMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFZBW2;AYVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYDVM2;CYBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPQVM1;VAMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYCWL1;GYGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYCWL2;GYGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESRFP1;QZDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZUAD2;QVKY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXHQM2;VAMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWXUN2;VCYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZUAD1;UDTD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAGVP1;XSCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYHDV1;VDMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXVYQ1;UDTD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYNSG2;UVSD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXVYQ2;TXQZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXURW2;XSCQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYHDV2;UVSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAGVP2;QZDQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYNWW1;AYVF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMFMQ2;URZL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXURW1;XFXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYNSG1;CYBQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYNWW2;YBMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERFRX1;YBMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERFRX2;XFMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMFMQ1;XFXT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDVNA1;XFMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGNXL2;SXQB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYJMA2;SXQB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETNTG2;SYAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMZTC1;SYAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVBJQ2;SWML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERXFA1;SBML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERXFA2;SWML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXLNV1;SBML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELMUA2;KYFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDSVE1;FYVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDSVE2;BBUK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELMUA1;BMWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXLNV2;GKGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVMLH2;AUDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETNTG1;HAFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVYRF2;HAFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVMLH1;HMHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFEDQ1;BGJV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMZTC2;BGJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPUVF1;FAAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPUVF2;AQYW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPWTL2;BMQX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPXUZ1;AENY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EULYS2;CDRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHSCK2;FSSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHSCK1;FAGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPXUZ2;HMCK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPWTL1;HMHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESEAA2;FAAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYUWQ1;MVYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPKJV1;AQYW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPKJV2;QAEC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPLVL1;QAEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPLVL2;VWGP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVBJQ1;MXAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYUWQ2;FAKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVYRF1;HUDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFEDQ2;GKGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGNXL1;HURX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMSB2;HURX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENMRM1;HUDU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQSLN1;ARTU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQQYR1;FYDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQQYR2;FAKL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQSLN2;FPQW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMEPQ2;FPQW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEPMP1;FUPB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEPMP2;FMKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJJPM2;FXGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJJPM1;FXGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMEPQ1;FECS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGPRA2;BFPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGPRA1;FECS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDVNA2;AVVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYJMA1;AVVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENMRM2;AWRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESLJN1;HDXP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESLJN2;FFKY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERCPZ1;HRHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQAPH1;HRHW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQAPH2;ATML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMSB1;ATML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERCDQ2;AYUT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERCDQ1;AYUT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERKRX2;AWRN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERCPZ2;FXXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUUUM2;HMCK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERKRX1;FXXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVKME1;FVLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUUUM1;BGGJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPSPL2;FVLV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPSPL1;BMWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVKME2;HTKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYDVM1;BGGJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELKZD2;BFPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXHQM1;FMKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFWMN2;GSFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMKKB1;GMGK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMCB3;GSFC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMCB1;FUPB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMCB2;FSSD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMDA1;FYDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMJPB2;GMGK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMCB4;WZTX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMDA2;WZTX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMJPB1;QVSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMDS1;CR032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMDS2;VFHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUBFB2;VFHA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUBFB1;VFHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUBYE2;YFAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUBZF2;YFAQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMKKB2;ECQU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUVJV1;ECQU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMVJ1;BQEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECFPP1;BQEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETUWN1;CR051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETUWN2;CR022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELKCU2;CR052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPENZ1;CR062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXXSM1;CR021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECFPP2;CR042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPENZ2;XCUG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUERQ1;XCUG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXXSM2;ZSRW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUTGT1;YGEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUVDV1;MLUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFVFX1;MVTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECCDU1;MHAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYNXY1;MXNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUBYE1;YGEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUBZF1;QZGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDSBU2;YMLP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFWMN1;LCRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQNBA2;YMLP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQNBA1;QZGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZUFC1;LCRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECTME2;CRKY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECHWA2;CRKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECTME1;ZSRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECHWA1;CR041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXRFM1;CR031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EECBX1;QXLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKJPS2;CR102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENSUN1;FARA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENSUN2;ATUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKJPS1;AVMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVPLD1;HRSH3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVPLD2;HRSH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQUJQ2;RNKX3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDBRA1;AESV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFDMA1;AUMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXQEV1;RNKX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAJUT2;RNKX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUAAY2;BBCM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAJUT1;JKZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUAAY1;JYDF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWQKK1;JLJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWQKK2;JECP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXQEV2;AMSC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFDMA2;APBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPHNL1;ARTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAGNN1;CR081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPHNL2;CR091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAGNN2;CR061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDBRA2;CR101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQUJQ1;CR092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELKCU1;CR071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDSBU1;CR072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJAMC1;CR082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGSGF1;AZYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHNKD2;AXJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHNKD1;HRSH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMPNJ2;FARA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMPNJ1;AQKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPZKA2;ACAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFARZ2;FARA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFARZ1;AXDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYYHE2;AXDG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJMZS1;FFKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAMBD1;BHXH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYYHE1;JGPF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAMBD2;JGPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJMZS2;BXRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVYMS2;JFYK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWCHC1;QGGF3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPZKA1;JJWT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVVDC1;JFYK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVVDC2;BVRT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXJTN1;HAUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJAMC2;HAUJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGKNY1;SVFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGKNY2;HTQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWGZA1;HSYP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWGZA2;HSYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFNDZ2;APBB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXJTN2;BXRB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELNSB2;BVRT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFNDZ1;BWBV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJJWQ2;BDRY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAFKE2;QGGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELNSB1;JFPE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAFKE1;CDBD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJJWQ1;RYDJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWCHC2;RYDJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESQRA1;CDBD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMRGV2;BCKK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELAYX1;BWBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERATG1;BCKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERATG2;BDRY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZAWQ2;JFPE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZAWQ1;BAKT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDKZA2;BAKT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMZAB2;JJWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBCMU1;BGXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEYKR2;BHXH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMZAB1;BPTQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBCMU2;HSPF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDKZA1;JBAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEYKR1;JAUG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDAZM2;FDQN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDAZM1;FUHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMRGV1;FUHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKEVW1;HMDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAPXY1;FNQR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKEVW2;HATG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKMEW1;BBGQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVYMS1;FNQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGSGF2;JBCE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMXXZ2;FLLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBBMP1;FLLL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMXXZ1;HATG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBWVM1;HFRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBBMP2;JAUG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAPXY2;FTUJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBWVM2;FDQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKMEW2;HTQS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAACJ2;HVAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAACJ1;HVAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBLCN2;HUWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBLCN1;HTQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EULYS1;FTUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWZRL1;HSPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYBQM1;BGXY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENMAW1;HWPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHDAM2;FVQF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECEGU2;FAMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYFAZ2;FAMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMWCY1;FVQF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYTFN1;HTQC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMWCY2;HWPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYTFN2;QGGF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMMU1;BDBS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYFAZ1;AYUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMMU2;CETB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWQPT2;FXAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWQPT1;FXAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYUVD1;AQAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYVGA2;ASAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZCKY1;ASAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUJNL1;FAGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENMAW2;AENY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMLMQ2;ATJR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUNJL2;FAEC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMTB1;FAEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMTB2;FUXD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMPX1;ARTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMAL2;ARTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMAL1;CETB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUEMC2;ASSD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUKRS1;AQAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJYMA1;ATJR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJYMA2;FBPQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWCHZ1;AVLK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWCHZ2;AYUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHTQM2;AXLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHTQM1;CEKK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHDAM1;HPWW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECEGU1;HPWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYVGA1;CEKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYUVD2;HQGN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZCKY2;FBPQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZEUX1;HQGN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZFAE2;AVLK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZHTV1;AXLY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZHTV2;AWMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUJAT1;AWMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUUXW1;APRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUPSB1;APRG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMWL1;ASSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENZAY1;BCLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERQMG2;FUCM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERQMG1;GHLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENZAY2;SNDF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFNJD1;BBHG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBZEL2;HKSP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFNJD2;HKSP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZPRQ2;BJVT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESMDB1;BJVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESDPW2;HGRH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESDPW1;HGRH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESEFJ1;CDRF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZEUX2;AUDL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESEBJ1;HLEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESZVE2;HLEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESNKS1;BDBS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESNKS2;BCLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESEFJ2;GHLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESEBJ2;SNDF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESMDB2;BPTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESZVE1;RYGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYVYN1;FUCM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYVYN2;FUXD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZFAE1;FDCR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESMMQ2;CDHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESMMQ1;CDHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUMPX2;FDCR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUEMC1;GFTE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUEVX2;BLVH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EARPT2;GFTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECTDT1;BBHG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJAWS2;SFFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWFNW2;SFFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJQTU2;RYGL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWFNW1;BLVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUFWK1;MXKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKLNZ1;MHRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKLNZ2;MFSH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUFWK2;XSPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJAWS1;WZXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJQTU1;WTDR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVGJM1;XAVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKPCC1;XBKJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVGJM2;XAAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKPCC2;WWNU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYBMU2;WXMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYBMU1;YHMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENAEE2;UWQU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAQKK2;YHMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVKLA2;XMCH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVKLA1;XMCH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENTVN1;KKKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFHXW2;RQYR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENTVN2;XQYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFHXW1;WYHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAMET1;ZAEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENAEE1;MAUQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAMWU2;XLNT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAQKK1;EESX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAMMK2;YBCJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAMMK1;QDPY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAMET2;YBCJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAMWU1;PADK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EARPT1;TZVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EERWT1;PADK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUEVX1;YHSJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELBUA1;YHSJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVQRD1;TZVZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETDHU2;VMRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVRGY2;FLKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVRGY1;VMRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJLNS1;MPDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJLNS2;MPDP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGEJL1;CHWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGEJL2;KKKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQXHA1;CHWK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKBAZ2;SSSH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQXHA2;DAEL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWPUR1;BSQF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWPUR2;HGCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKBAZ1;WEQY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUKRS2;WEQY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETPSK1;TKCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVQRD2;QEBZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVRFM2;QEBZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETXNA2;BSQF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELBUA2;ZPYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBEAU1;ZPYA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EERWT2;DSPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERJNZ1;WUUU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBEAU2;CZZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERJNZ2;CZZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETDHU1;DAEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVRFM1;HGCD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETXNA1;MHMZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETCTV1;ATJE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETCTV2;XHML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETPVR1;UHTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETPSK2;UHTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETPVR2;HGPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZPRQ1;HGPC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKXLJ2;XHML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKXLJ1;YRLM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXNFD2;MHMZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVJVU2;YRLM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEZVZ2;PSSG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELCRB1;ATJE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EEZVZ1;NACL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAHQH1;NACL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMQWM2;TKCD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAHQH2;EESX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMQWM1;QDPY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMAZY2;AVTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMAZY1;WXMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXNFD1;KGGY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDBCB1;KPYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELARP1;KHWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETXRP1;KHSP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETXRP2;KHSP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVJVU1;KHWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERDVX2;KPYF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ERDVX1;KLEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVAAW2;KLEC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVDMK1;ALHT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETXQZ2;ALHT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVCYM2;QQYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETXLT1;QQYD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQVKY1;DUSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETXLT2;DUSW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVAAW1;KRJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELCRB2;KGLP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUJPL2;KGGY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVNZY2;MUWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVNZY1;MFSH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKGGQ1;ZSAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUJPL1;TMEX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EKGGQ2;TMEX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELARP2;ASSP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDBCB2;ASSP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EURZL1;MUWQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETCAB1;KGLP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUGFV1;LGTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMNR2;KQYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUGFV2;KRJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJAVM2;KQYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EJAVM1;KQDU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPKTU1;KQDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVYEE1;WTDR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMMNR1;WWNU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPVST2;FLKR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVYEE2;CPMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPVST1;MJKS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMLMQ1;MJKS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFAMQ1;PCCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWZRL2;XBWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFAMQ2;CPMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPKTU2;XAVQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECEJU1;XBKJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAHCB2;CMQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUYCJ2;MVKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETCAB2;PCCF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAKHX1;RQYR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAKHX2;MVKK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAMCZ2;NCQR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAMCZ1;NCQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUYCJ1;AVTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPFEM2;XMEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECEJU2;CLSL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPFEM1;YJML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENRJW2;XSPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ENRJW1;XBWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAZUY2;XAAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAZUY1;WYHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAHCB1;WZXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUZJR2;XMEM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUZJR1;XQYX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBZEL1;XLNT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPALF1;SSSH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHTBS1;ZAEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVQHM1;CLSL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGMWB1;CMQS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGMWB2;YJML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELUNQ2;AJGQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EHTBS2;AJGQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ELUNQ1;DSPZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAKWY2;YRLM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDKAS1;HQPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EPALF2;TSMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EDKAS2;RFBK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAPNG2;AJGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAPNG1;QMVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGGYD2;GJMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWLMB1;UGJE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAKWY1;UGJE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVQHM2;LWMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZZPV1;GLAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAYRY1;MLJH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMVJY1;WEDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EMVJY2;HCLM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXFFA2;MLJH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXFFA1;WEDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAZDA1;RRRJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAXDW1;QMGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAYZF1;GBHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EZZPV2;GHBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAWEF1;RFBK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBAAC1;HGXH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAWQL1;QLHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAYTU1;STEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EBABC1;KQRY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAYAW1;WYBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGGYD1;WYBT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EWLMB2;HGXH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAYVF1;GDBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECYBQ1;AABY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVAMY1;VJUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGYGT2;JAVG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EGYGT1;XDQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQZDQ1;DNAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQVKY2;AABY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVAMY2;DNAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVCYM1;FESX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUDTD2;DPTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXSCQ1;DMDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EVDMK2;ELES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUDTD1;QEVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUVSD2;CVKT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ETXQZ1;STZS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXSCQ2;NMXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EUVSD1;XNTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EQZDQ2;SJDS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EAYVF2;MHSK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EURZL2;LNTC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXFXT1;XUMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ECYBQ2;BGZW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYBMG1;NGLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EYBMG2;GHMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXFMX2;KGMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXFXT2;JBMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EXFMX1;JBMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESXQB1;YRUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESXQB2;LBFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESYAD2;CVLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESYAD1;QQKW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESWML2;QCUU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESBML1;QCUU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESWML1;WGEJ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESBML2;QQKW3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKYFK1;WGEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFYVU1;QQKW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBBUK2;WGEJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBMWG2;TGTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGKGT2;KYHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAUDL1;KYHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHAFQ2;JWWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHAFQ1;JWWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHMHE2;UTJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBGJV2;YRBJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBGJV1;QLHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFAAS1;TJPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAQYW2;HQPZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBMQX2;HQZP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAENY1;ZQWE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ECDRF1;CRBY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFSSD1;JXQG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFAGV2;RNCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHMCK2;RNCB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHMHE1;NQKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFAAS2;JBPZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVYM1;CCFX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAQYW1;CCFX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQAEC2;ZXEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQAEC1;ZXEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVWGP1;JBPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMXAX1;JXQG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFAKL1;XUGK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHUDU1;UHAF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGKGT1;ZQWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHURX2;AVCP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHURX1;VRXQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHUDU2;FDGB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EARTU2;SYFE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFYDB1;SYFE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFAKL2;NQKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFPQW1;WUUU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFPQW2;VEXL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFUPB2;VEXL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFMKA2;PSSG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFXGV1;VRXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFXGV2;MKES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFECS1;MKES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBFPA2;FDGB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFECS2;AVCP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAVVX1;SWAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAVVX2;SWAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAWRN1;UHAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHDXP1;HQZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFFKY2;NDVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHRHW1;XUGK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHRHW2;EUSD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EATML1;BLAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EATML2;AXTP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAYUT2;SJZB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAYUT1;CFMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAWRN2;CFMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFXXJ2;LZBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHMCK1;LZBT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFXXJ1;SJZB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFVLV1;VAKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBGGJ1;MQMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFVLV2;MQMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBMWG1;AXTP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHTKU1;VAKE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBGGJ2;NDVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBFPA1;EUSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFMKA1;KFYF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGSFC1;KFYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGMGK1;YQZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGSFC2;CRBY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFUPB1;YQZA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFSSD2;SVBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFYDB2;SVBT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGMGK2;CMDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWZTX1;CMDG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWZTX2;SPEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQVSD1;BLAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR032;SPEC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVFHA1;MYMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVFHA3;MFVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVFHA2;MFVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYFAQ1;UWQU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYFAQ2;MYMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EECQU2;DUCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EECQU1;ALAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBQEA2;DDYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBQEA1;GZCY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR051;GZCY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR022;EHYN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR052;CVDS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR062;CVDS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR021;EHYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR042;GBAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXCUG1;GBAU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXCUG2;JHFZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZSRW2;JHFZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYGEG2;QDGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMLUM1;UQBX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVTC1;QDGL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMHAN1;PDVY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMXNV1;UQBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYGEG1;MMYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQZGV1;MMYY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYMLP2;MSNM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELCRU1;MSNM4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYMLP1;MSNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQZGV2;MSNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELCRU2;ZQNC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECRKY2;ZQNC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECRKY1;GMAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZSRW1;PDUW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR041;KFXZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR031;GYTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQXLW1;ARAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR102;FPWC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFARA1;RCRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EATUN1;PAVT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAVMR1;PAVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHRSH3;RCRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHRSH1;QVLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERNKX3;QXTF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAESV1;QXTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAUMQ1;QVLU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERNKX2;QVRC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERNKX1;RCKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBBCM1;RCKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJKZP1;QWCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJYDF1;QWCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJLJV1;QVTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJECP1;QVTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAMSC1;MCWJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAPBM1;MCWJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EARTM1;QWEQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR081;QWEQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR091;QVRK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR061;QVRK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR101;SAFZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR092;UAXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR071;QKKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR072;PDUW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECR082;RQQH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAZYQ1;VUNC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAXJM1;ZGFY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHRSH2;BJRQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFARA2;BFVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAQKR1;BPAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EACAD1;BAWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFARA3;BVXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAXDG1;BTWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAXDG2;BRQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFFKY1;WJQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBHXH2;BCDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJGPF2;VZNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJGPF1;VXJB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBXRB1;QKKR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJFYK1;REEY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EQGGF3;REEY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJJWT2;XJMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJFYK2;XJMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBVRT2;RLFP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHAUJ1;RLKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHAUJ2;RLKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ESVFL1;RLFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHTQC1;FVME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHSYP2;FVME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHSYP1;FRNU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAPBB2;ZGFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBXRB2;LYJZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBVRT1;LYJZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBWBV2;WAQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBDRY2;PDVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EQGGF1;GJET2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJFPE2;GJET1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ECDBD2;DFTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ERYDJ2;XVPZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ERYDJ1;XVPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ECDBD1;YQNL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBCKK2;AGRG3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBWBV1;AGRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBCKK1;AGRG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBDRY1;ZVPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJFPE1;ZVPX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBAKT2;FQDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBAKT1;NLHR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJJWT1;KRBN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBGXY1;MBYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBHXH1;MBYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBPTQ2;VZPV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHSPF2;WMGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJBAT1;VZPV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJAUG1;WMGE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFDQN2;LWPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFUHV1;LWPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFUHV2;QVRC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHMDB1;QYDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFNQR2;QYDU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHATG1;SPJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBBGQ1;VNLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFNQR1;VJWQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJBCE2;RWQB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFLLL1;VJWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFLLL2;YLWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHATG2;YAME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHFRG1;YFZN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EJAUG2;YDYU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFTUJ2;YDYU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFDQN1;YAME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHTQS2;SPJG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHVAH2;SLCE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHVAH1;NPFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHUWG2;YCMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHTQS1;XYRE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFTUJ1;XYRE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHSPF1;SLCE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBGXY2;YYPV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHWPR2;YRZD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFVQF2;YRZD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFAMT1;WKVW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFAMT2;WMJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFVQF1;YVZQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHTQC2;WKVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHWPR1;MBCN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EQGGF2;ALEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBDBS1;MNLE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAYUM1;MNLE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ECETB1;ALAQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFXAE1;FVCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFXAE2;RTZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAQAD1;TSCA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EASAS1;JCDG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EASAS2;WGJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFAGV1;WGJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAENY2;JCDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EATJR2;UCAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFAEC2;LKGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFAEC1;LKGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFUXD2;UCAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EARTA1;TSCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EARTA2;QTJV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ECETB2;QTJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EASSD2;ALEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAQAD2;VZZP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EATJR1;VZZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFBPQ2;VNLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAVLK2;VJMZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAYUM2;VZRX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAXLY1;VZRX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ECEKK2;VJMZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHPWW2;YVBL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHPWW1;YVBL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ECEKK1;YVYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHQGN2;ZHKG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFBPQ1;ZJUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHQGN1;ZJUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAVLK1;FFTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAXLY2;TSMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAWMK1;FFTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAWMK2;TSMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAPRG1;ZNRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAPRG2;ZNAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EASSD1;ZRVY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBCLA2;YSGY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFUCM1;YPHG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGHLA1;YSHT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ESNDF2;YSHT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBBHG1;YSGY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHKSP1;ZNTE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHKSP2;ZPNL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBJVT2;ZRVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBJVT1;ZNTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHGRH1;ZRQF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHGRH2;ZRQF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ECDRF2;NPKV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EAUDL2;NPKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHLEA1;NPFD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EHLEA2;ZKAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBDBS2;ZKAJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBCLA1;YSSM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGHLA2;ZJGQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ESNDF1;WMJD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBPTQ1;YSSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ERYGL1;YNET1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFUCM2;YQUC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFUXD1;YMKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFDCR2;YQUC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ECDHE1;YKJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ECDHE2;YMKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EFDCR1;YNMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGFTE2;YJUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBLVH2;WPDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EGFTE1;YNMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBBHG2;WPDN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ESFFQ2;TDME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ESFFQ1;TDME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80ERYGL2;SWWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS80EBLVH1;SWWA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMXKU1;SVMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMHRV1;SVMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMFSH1;ZNFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXSPR1;ZLBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWZXA1;ZJGQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWTDR1;ZHKG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXAVQ1;FRNU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXBKJ1;WAQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXAAT1;RQQH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWWNU1;UMTY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWXMU1;MPXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYHMN1;MGCV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUWQU1;MGCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYHMN2;BEPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXMCH2;UMBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXMCH1;BEPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKKKM2;RPRT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERQYR2;XSCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXQYX1;XSCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWYHA1;MDFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZAEA1;RPRT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMAUQ1;TEBR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXLNT1;NYGX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEESX1;PWAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYBCJ1;TGJT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQDPY1;DJZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYBCJ2;DJZA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPADK2;ZMDR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETZVZ1;ZMDR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPADK1;LMDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYHSJ1;LMDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYHSJ2;MJAR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETZVZ2;MJAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVMRU2;DDFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFLKR1;MPXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVMRU1;ABRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMPDP1;XRFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMPDP2;XRFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECHWK1;MVBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKKKM1;TDVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECHWK2;XTKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESSSH1;CQMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDAEL2;FBQH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBSQF1;SCSD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHGCD1;SCSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWEQY1;SBMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWEQY2;SBMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETKCD1;BGPQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQEBZ1;BGPQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQEBZ2;BHBC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBSQF2;BHBC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZPYA1;LWKL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZPYA2;LWKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDSPZ1;AVPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWUUU2;AVPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECZZH1;AAPU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECZZH2;AAPU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDAEL1;ZJEK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHGCD2;ZJEK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMHMZ1;GMAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EATJE1;GMAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXHML2;DDFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUHTN1;NYGX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUHTN2;MVBA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHGPC1;TTKW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHGPC2;QJSC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXHML1;MUBE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYRLM1;GKZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMHMZ2;RRZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYRLM2;MUNR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPSSG1;MHZZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EATJE2;MHZZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENACL1;TTKW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENACL2;BAJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETKCD2;MSZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEESX2;EZJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQDPY2;GLFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAVTV1;MFMZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWXMU2;VUUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKGGY1;UDVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKPYF1;PLBN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKHWM2;QAMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKHSP1;QAGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKHSP2;PJYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKHWM1;KMYW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKPYF2;SCCC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKLEC1;MSNB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKLEC2;QATS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EALHT2;LSAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EALHT1;GBNG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQQYD1;RDLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQQYD2;RDLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDUSW1;PFLQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDUSW2;RTLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKRJW1;KDBJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKGLP1;SCMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKGGY2;ATVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMUWQ1;CSZW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMFSH2;BYBZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZSAY1;EBEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETMEX2;FYGB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETMEX1;FSVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EASSP2;QCGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EASSP1;TUQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMUWQ2;BNMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKGLP2;FYGB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELGTT1;PCKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKQYM1;PRKX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKRJW2;EBEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKQYM2;RBZW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKQDU2;NHXD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKQDU1;BMMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWTDR2;BTPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWWNU2;PFDQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFLKR2;PFDQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECPMW2;PFLQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMJKS1;TKNW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMJKS2;UMTY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPCCF1;TDVL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXBWM2;ALRV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECPMW1;ZUDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXAVQ2;SJQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXBKJ2;QLNT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECMQS1;AQQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVKK1;AQQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPCCF2;AMAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERQYR1;ZUDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVKK2;XTPB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENCQR2;VPCC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENCQR1;VPCC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAVTV2;JJLH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXMEM1;JJLH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECLSL1;QPHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYJML2;XTPB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXSPR2;ALRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXBWM1;AEUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXAAT2;AEUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWYHA2;ACPZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWZXA2;ACPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXMEM2;NGEH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXQYX2;NGEH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXLNT2;CXNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESSSH2;CRPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZAEA2;CXNE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECLSL2;SVGX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECMQS2;STJT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYJML1;QLNT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAJGQ1;GTQT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAJGQ2;MVYF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDSPZ2;MVYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYRLM3;MVXU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHQPZ1;TBCR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETSMU1;MDFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERFBK2;MVXU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAJGR1;VPTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQMVL1;TBCR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGJMC1;VJMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUGJE1;SMNJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUGJE2;KPCA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELWMU1;KPCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGLAU1;JGZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMLJH1;MAVB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWEDA2;TKNW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHCLM1;JGZP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMLJH2;SFLK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWEDA1;AMAF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERRRJ1;SXKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQMGR1;SFLK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGBHV2;GTQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGHBV1;SXKC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERFBK1;SFYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHGXH2;CRPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQLHK2;MAVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESTEF1;QPHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKQRY1;AHEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWYBT1;MTBE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWYBT2;MRHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHGXH1;CHRJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGDBW1;YNUE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAABY1;MRHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVJUV1;BFCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJAVG1;YNUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXDQC1;BFCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDNAK1;CHRJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAABY2;RBCA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDNAK2;RRRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFESX1;RRRB3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDPTC1;RRRB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDMDL1;AABS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EELES1;XZVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQEVJ1;PQKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECVKT1;CUZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESTZS1;TAVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENMXE1;TAVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXNTV1;RRXP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESJDS1;RRXP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMHSK1;FDGD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELNTC1;WJVN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXUMC1;GNXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBGZW1;RBCA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENGLW1;TKTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGHMD1;JHWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKGMJ1;WJVN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJBMD1;VXRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJBMD2;VXRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYRUN1;STNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELBFY1;STNY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECVLL1;QFMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQQKW2;QFPN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQCUU2;MWRL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQCUU1;QFPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWGEJ3;QUZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQQKW3;JQCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWGEJ1;QFMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQQKW1;VBXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWGEJ2;FDGD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETGTL1;AKFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKYHV2;DZLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKYHV1;EWMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJWWM1;KBES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJWWM2;WQNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUTJA1;RZXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYRBJ1;PRKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQLHK1;SBJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETJPR1;YNUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHQPZ2;64859;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHQZP2;64860;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZQWE2;64862;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECRBY1;64861;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJXQG2;61828;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERNCB1;61827;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERNCB2;61826;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENQKA2;61825;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJBPZ2;66816;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECCFX1;66815;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECCFX2;66814;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZXEG1;66813;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZXEG2;70175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJBPZ1;53651315-d7cb-4d91-a2ec-4ff2e8d06ae0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJXQG1;FR*LUM*EBRETTE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXUGK1;FR*LUM*EBANKABLE1ROQUEALRIC*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUHAF2;d89c8ef6-4ec7-11ed-bdc3-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZQWE1;55228935-2654-414c-a87f-c375ac2ce63d;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAVCP1;bd326522-1437-4282-beb2-2bd6536a8c49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVRXQ2;FR*LUM*EVVFRECHASTEL1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFDGB1;FR*LUM*EVVFAZURNEIGE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESYFE1;0e91b34c-6fca-47d5-8a80-c101d6190361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESYFE2;FR*LUM*EVVFLOURIOUCLAR1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENQKA1;90066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWUUU1;90067;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVEXL1;60380;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVEXL2;57150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPSSG2;96887;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVRXQ1;36279;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMKES1;36280;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMKES2;8fd21380-370e-45b5-901a-a104b0b2deab;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFDGB2;38835;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAVCP2;38834;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESWAM1;61743;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESWAM2;68cc2c8e-129e-4ca0-a3f7-96ba48ac5f76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUHAF1;70e827da-6fc8-4c38-900c-246b2a26ea0b;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EHQZP1;60506;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENDVM2;60498;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXUGK2;63418;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEUSD2;63419;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBLAA1;55366;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAXTP2;55371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESJZB2;55370;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECFMM1;55367;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECFMM2;88393;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELZBT1;88392;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELZBT2;50490;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESJZB1;50491;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVAKE1;28236;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMQMD1;28235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMQMD2;121730;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAXTP1;71494;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVAKE2;71514;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENDVM1;96902;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEUSD1;56571;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKFYF2;7a11a5b9-5eef-4104-b24a-893e36963f9a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKFYF1;63c4cead-d030-45dc-a47a-d563bbf5b944;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYQZA1;BOR-ECO NNRFR;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECRBY2;EVC 11750373;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYQZA2;BOR-ECOE37374-E37375;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESVBT1;EVC 11736622 E61083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESVBT2;EVC 11749592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECMDG1;EVC 11750472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECMDG2;128389;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESPEC1;128390;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBLAA2;1949963;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESPEC2;37831;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMYMV1;37830;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMFVX1;FRECN0162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMFVX2;FRECN0161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUWQU2;FRECN0160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMYMV2;FRECN0163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDUCF1;77754;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EALAQ1;77752;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDDYD1;57006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGZCY1;56657;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGZCY2;96190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEHYN2;109624;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECVDS1;49587;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECVDS2;49607;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEHYN1;c868b45b-0b5e-4a1f-9c18-a251574190bb;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGBAU1;a191b56a-3e02-4cd5-86f9-5349a8cc4095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGBAU2;4d6edbec-af49-423b-a0d4-4bdaea82bdc6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJHFZ1;FR*LUM*EFALGOS1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJHFZ2;87473;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQDGL1;87472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUQBX2;47126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQDGL2;47104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPDVY2;49419;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUQBX1;26491;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMMYY1;26492;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMMYY2;49420;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMSNM3;FREZDE28286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMSNM4;FREZDE63396;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMSNM2;a79b9738-5a7e-44c0-b073-1424d357e2dc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMSNM1;84a43d30-294e-4f11-9fcb-e2a07f6d0a8c;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZQNC2;FR*LUM*EHOTELALIZES1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZQNC1;FR*LUM*EMALIJAI101*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGMAN1;50719;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPDUW2;50711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKFXZ1;89771;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGYTF1;89772;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EARAM1;FR*LUM*EHOTELPEUPLIERS1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFPWC1;128615;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERCRU1;128616;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPAVT2;56428;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPAVT1;56427;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERCRU2;129868;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQVLU1;129846;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQXTF2;71708;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQXTF1;71707;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQVLU2;129732;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQVRC1;61148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERCKB2;61147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERCKB1;50670;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQWCX1;50704;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQWCX2;FRFR1EATXX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQVTM1;62871;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQVTM2;62872;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMCWJ1;60013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMCWJ2;60012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQWEQ1;FR*LUM*ELODGING1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQWEQ2;47222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQVRK2;edd3b633-635e-44e5-a293-1e4564d9dd55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQVRK1;55361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESAFZ1;54738;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUAXA1;61047;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQKKR1;61057;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPDUW1;61056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERQQH2;61046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVUNC1;95344;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZGFY2;95349;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBJRQ1;19518;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBFVH1;78037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBPAH1;78036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBAWE1;FR*LUM*ELACLAPE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBVXT1;FR*LUM*EVALSERINE*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBTWD1;49701;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBRQX1;FRFR1EDWYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWJQS1;FR*LUM*EHOTELLAC74920*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBCDA1;76647;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVZNY1;76648;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVXJB1;FR*LUM*EHOTELCEDRES1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQKKR2;57334;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EREEY1;57335;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EREEY2;57333;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXJMA1;57332;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXJMA2;131517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERLFP2;131516;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERLKF1;131524;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERLKF2;131525;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERLFP1;55087;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFVME2;55086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFVME1;61319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFRNU1;61318;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZGFY1;63446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELYJZ1;60301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELYJZ2;57830;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWAQM2;60302;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPDVY1;57831;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGJET2;57510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGJET1;57509;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDFTV1;77768;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXVPZ2;77767;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXVPZ1;70163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYQNL1;70164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAGRG3;53268;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAGRG1;66598;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAGRG2;66599;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZVPX1;127538;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZVPX2;59778;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFQDG1;59777;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENLHR1;128521;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKRBN1;792b3fe0-4923-4dea-863e-99e9ee01aaa4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMBYM1;3dd0bb09-bcbb-4fb0-a189-a95be7c3a01e;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMBYM2;FR*LUM*EDOMAINEDESPEYRE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVZPV2;72904e00-18ac-454c-9e23-9412bdfc6a5c;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWMGE1;d72e5b17-a2e4-4a6c-bdbe-2840378c2131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVZPV1;118370;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWMGE2;118367;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELWPA2;71607;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELWPA1;71572;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQVRC2;SDFRRAMSAYVIC001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQYDU1;FRE000014786885;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQYDU2;FR*LUM*ELAGRANDEBASTIDE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESPJG1;caebd814-5cd7-4b55-a36e-c51fd5517e5f;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVNLW1;61586345-c0cc-450e-98dd-8dc98b156f5a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVJWQ2;126136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERWQB1;81447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVJWQ1;50643;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYLWY1;50651;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYAME1;nl*evb*egtj3b3tpt3eibx4cmwwdyexat4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYFZN1;31929;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYDYU1;e0c5cf8a-082b-11ed-861d-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYDYU2;a2a817ee-668f-47bd-9b69-1e0a894ae406;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYAME2;129087;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESPJG2;129086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESLCE2;50776;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENPFD1;EVB-P2020196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYCMU1;89152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXYRE2;49605;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXYRE1;012345678901A;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESLCE1;e06be4a0-bc3c-4ecc-a00d-a89e4ec3496b;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYYPV1;3ab41450-fa76-4583-842f-4841b4ef42d8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYRZD2;b6ce4915-9f15-4241-9c97-08f3468dae4c;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYRZD1;414fdb34-8e7a-4add-b930-3f3c3ba8364c;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWKVW2;49544;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWMJD1;49575;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYVZQ1;49847;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWKVW1;ZQVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMBCN1;ZQVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EALEG2;YAFW*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMNLE1;YAFW*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMNLE2;49683;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EALAQ2;FR*LUM*ELIBERATION1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFVCQ1;e5aeda40-da1f-4240-a0d4-6ef60efa5a28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERTZL1;4bc7d179-75e2-413a-9eee-54d9ec0cb00b;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETSCA2;aeefa47a-507e-47db-9c3f-a4ea1316dc1d;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJCDG2;c1cfd29b-d13c-4ffd-a556-aa77d5438876;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWGJW1;60127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWGJW2;135128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJCDG1;49597;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUCAK1;16a2b325-a56b-47f6-a647-76b2313b8506;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELKGM1;f1881994-3c6b-4596-9c91-5105129072b9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELKGM2;49521;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUCAK2;49590;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETSCA1;49577;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQTJV2;49591;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQTJV1;16987;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EALEG1;16986;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVZZP2;16993;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVZZP1;16992;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVNLW2;28e23ee1-66e5-424a-8cb8-f238c6fa724a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVJMZ1;36717;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVZRX2;36716;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVZRX1;19826;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVJMZ2;19827;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYVBL1;56424;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYVBL2;56423;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYVYE1;70278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZHKG1;70279;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZJUN1;89539;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZJUN2;89540;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFFTA1;50782;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETSMB1;57ae7437-9d11-4de7-991b-04d0113271db;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFFTA2;FR*LUM*EVALMOUREZE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETSMB2;FR*LUM*EHOTELPARCAVIGNON1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNRD1;FRFR1EWRWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNAC1;FRFR1EFGBG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZRVY2;FRFR1EMWPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYSGY2;NVG0B46001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYPHG1;E175319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYSHT1;E175320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYSHT2;E161583;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYSGY1;E161582;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNTE2;128771;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZPNL1;128704;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZRVY1;128713;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNTE1;128712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZRQF1;128770;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZRQF2;128703;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENPKV2;128758;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENPKV1;128787;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENPFD2;128711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZKAJ1;128789;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZKAJ2;128790;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYSSM2;128757;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZJGQ2;128788;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWMJD2;128773;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYSSM1;128752;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYNET1;128774;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYQUC2;128710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYMKF2;128765;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYQUC1;128751;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYKJG1;128766;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYMKF1;f566c0dd-5e8a-4911-b620-a1e97770e222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYNMF1;9d70ab20-bdce-4c91-b486-46cec6aa4a89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYJUD1;28b17f3e-3494-46ca-b1e7-300be310f9cb;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWPDN1;FRETIE59368A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYNMF2;FRETIE59368A15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWPDN2;FRETIE59368A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETDME2;FRETIE59368A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETDME1;FRETIE59368A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESWWA1;FRETIE59368A16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESWWA2;FRETIE59368A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESVMU1;FRETIE59368A46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESVMU2;FRETIE59368A24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZNFF1;FRETIE59368A25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZLBH1;FRETIE59368A26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZJGQ1;FRETIE59368A27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZHKG2;FRETIE59368A28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFRNU2;FRETIE59368A29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWAQM1;FRETIE59368A210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERQQH1;FRETIE59368A31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUMTY2;FRETIE59368A32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMPXA2;FRETIE59368A33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMGCV2;FRETIE59368A34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMGCV1;FRETIE59368A41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBEPL1;FRETIE59368A42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUMBX1;FRETIE59368A43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBEPL2;FRETIE59368A44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERPRT2;FRETIE59368A45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXSCW2;FRETIE59368A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXSCW1;FRETIE59368A23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMDFQ1;c309a07a-f5cd-424c-87d1-3a7886a7e81d;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERPRT1;2b8240d2-0fd1-422b-83e2-6757c9763339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETEBR1;172817;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENYGX2;172819;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPWAC1;164421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETGJT1;164418;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDJZA1;c3761626-3fad-42d1-9b4d-df331cee14d3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDJZA2;FR*LUM*ELOUCASTELETAPPARTHOTEL1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZMDR1;FR*FR1*KPPH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZMDR2;E175425;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELMDD2;E172798;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELMDD1;dcd68c4d-915c-427b-940d-0d50ee522337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMJAR2;8bf3bb14-ea4c-49e5-893a-8415db5324f4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMJAR1;1ce14655-0155-4e17-8035-acc1860be69b;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDDFM1;615109f7-bab5-4dbf-a2ea-650f596dc729;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMPXA1;ec242f57-171b-430b-9a25-b52b273bbdf3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EABRA1;bcfe11d1-c3dc-41e8-8dab-895770ce47e6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXRFF2;fa6faf9b-134a-46c7-bf6d-fc9085268349;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXRFF1;4cf24d45-5566-4724-8c73-9c4263adcc11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVBA1;bace7110-0a0f-4dc4-853c-cd8e18490de6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETDVL1;c717ff36-807b-419c-b19e-62dd90ea3301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXTKZ1;6a6e8a7b-b0ed-4d1e-9da3-9fef4314f9f0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECQMX1;6300d2e5-f12f-4bb2-be3f-ccfe1b9d061f;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFBQH1;15a20e18-56f9-42b4-94ef-2aebe115fe70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESCSD2;c2a5fb91-4a24-4436-aec6-f75bf78d4335;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESCSD1;7aa7f57d-1981-4512-8936-1e320437f74d;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESBMN2;179aeef1-a838-42a6-a3b5-aabba0de20f9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESBMN1;8c3bb4e3-77df-4288-a023-597e87f1cffa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBGPQ1;8c9eb86d-d040-4e3c-b9a9-802e84c34ec0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBGPQ2;680bfcd5-f742-4b4f-aa2d-a0ff36be6de7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBHBC2;cb7cb08a-8428-472b-b4e5-955d66dca1bb;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBHBC1;222c3431-ec45-4c38-b9b5-5cdc83e34838;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELWKL2;5343dc34-cd83-4a9d-8a4b-2079a5767954;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELWKL1;adb2b298-493a-4b91-af9c-ff280ac8c1df;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAVPL2;d3fa6a37-1e7b-4e92-aede-ae81fba7a1e0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAVPL1;64df47de-c69c-456f-8f87-bec422e35566;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAAPU2;d939f891-5ff6-4604-9834-a8b905b57482;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAAPU1;400688b6-73a8-4cab-be7c-e3eeffe48fd5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZJEK2;5a9d59d1-6749-4235-b251-1768eff205b1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZJEK1;039fe1b3-c8da-46a2-8095-9e7a9b1155ab;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGMAM1;1593c0b5-8a4c-4c81-b300-f344a3da560d;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGMAM2;9b2b2e9b-d265-4121-a99c-d0f6de445c86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDDFM2;3852e2e9-67ae-42ba-b53c-bb85351902bd;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENYGX1;e99dbc8e-9b20-4940-8a23-938195b6fa6a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVBA2;ec079bea-cc11-4594-8d9f-a54d00195052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETTKW1;ff39fe66-db4b-4bd0-86c2-73298f996594;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQJSC1;f1c1cd91-b1f9-4b3a-9fb6-7c94a38ded0c;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMUBE1;f404c9d6-8ec0-43f0-ad44-8f2d04af1019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGKZF1;7f1aa45e-5c0f-4651-a8a1-2e500bcc1fd0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERRZV1;cb6355cb-7f09-42f1-9229-a49fb1ebcde6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMUNR1;1cd835d1-bab2-43d4-87da-529686e8285b;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMHZZ1;9c33c207-325e-42cb-8ef7-3713c3874542;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMHZZ2;700e1600-2b5f-4d32-9e08-c63d2f0a363a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETTKW2;b3751394-2dc4-41e1-8a95-b8ed18991d08;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBAJM1;ad71c3a7-318d-4d00-bfcd-7796fa67c25c;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMSZV1;e2205c75-3814-425d-98dd-5e3eafd34277;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEZJM1;a196549f-eae6-4225-8c8a-5be09e08f2e6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGLFP1;ffa6f0e6-2a35-4ec3-877f-f236eeb790b7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMFMZ1;8006cc31-9113-4b93-8ea4-a92ac9effe61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVUUE1;279940f4-8342-4112-abc1-bc2ecd7b5298;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUDVV1;66accde6-a7a4-46ee-b893-eb755724cb9d;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPLBN1;5394df11-81c8-4424-a1f1-9436446ba45f;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQAMD1;9c36001f-5091-467e-bcf1-c0832ad107eb;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQAGS1;c2ca1d57-433e-4159-8aaa-64cbd2a4544e;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPJYV1;07c67628-80fa-4e55-94a1-61c81a0531f1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKMYW1;792dd1fd-adbe-4a15-a9ee-3eb640fb56eb;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESCCC1;ea104ece-c83a-459f-b16c-bf270843286a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMSNB1;7cb553e4-dd61-4dbd-8d9d-be4d0607c9fb;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQATS1;7b5a0a09-c2cb-4708-8587-8115a073086a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ELSAG1;efd033dc-7072-4f0d-847b-0a8da2826e85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGBNG1;4d2b12f7-2d92-419d-9b55-a8d327ac97ba;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERDLS1;d52f8479-b0be-4107-9662-93c8cd883cf2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERDLS2;be8bf485-2ea7-4f36-bb7b-026afe7b2c72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPFLQ2;9e2431ed-a076-4f12-8028-5521e0994595;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERTLV1;c5ecfdaf-a291-4410-a3fe-d5624022a5b6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKDBJ1;62cfb9cc-33e5-4595-992e-c59f5df9aa63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESCMD1;36133c0d-22cd-4bc4-9782-888e7758f814;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EATVB1;f580c83f-1c2b-40ef-a58d-a4d209b1d5a2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECSZW1;637f0c64-734e-4654-83c9-1fcc7186ebcf;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBYBZ1;98fa28a3-6c8e-42a4-8142-6611d0dacfb9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEBEA2;ac624fbf-98bd-4310-993e-4e36aa6805bc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFYGB2;15c6ffe6-45ac-4328-8d80-c4ac97bc6f07;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFSVZ1;657c9290-4be1-423e-8f74-f1be73f003a2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQCGT1;da23919d-62cb-47ca-bf7b-a3188da908c4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETUQM1;8a49dac1-c57c-4e75-98f9-6e5868068721;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBNMJ1;d20928d7-bba9-4ab7-bb4d-e1a6669f04b5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFYGB1;5959abb7-8eee-4b7c-ae78-bd6185a0c948;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPCKC1;41ac8652-adf6-47df-9c7b-1d3ca2084958;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPRKX1;99ea67b0-1567-4d9b-b132-510150e03682;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEBEA1;0280c2d1-ebd1-4e4f-881a-ce78af726a08;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERBZW1;192db4ca-be84-464c-a297-f4ebe8d28c5f;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENHXD1;117e0abc-b2ea-44ab-8723-608e3870f41a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBMMJ1;ddfba466-7a52-425e-a36c-f7a4127465a4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBTPN1;8c5acc26-ea30-4c43-a880-9f122381e6ce;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPFDQ2;e6e83305-3134-440f-b9ec-78107cba574d;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPFDQ1;8e53add6-0ca0-4c14-b8c1-cd8047f28821;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPFLQ1;2f820a17-6046-49ac-a5fb-af1279afc77a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETKNW2;7fae905c-3fb4-4fa4-bb96-e5b170bfb601;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUMTY1;638b4914-d211-4a41-916c-8d49f79fdf9d;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETDVL2;a48d4daa-aebb-4a79-a68a-da353dc698ce;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EALRV2;96efaa4f-c24e-4afd-8dec-8f727f7f783a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZUDA1;bfa65422-702d-4b8c-a3dd-828893a00f0f;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESJQE1;d688827f-0bfd-4926-9e47-2bb6cbebec4a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQLNT1;54dfdd70-5176-49bc-945a-d76ee240ba7b;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAQQP1;db67e99f-7f84-4111-adda-89ff2474c953;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAQQP2;291ddb8c-8a54-4d94-9d5e-01ea853a59e0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAMAF1;f2ccf9c2-a02f-4036-99f4-7b88fdc62eed;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EZUDA2;fd49406c-f929-4081-a11d-e69708f526bb;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXTPB1;528bcc35-5dab-4d99-911c-570cd617c2ec;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVPCC1;a224005d-ec59-4e16-9046-b7071a846a24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVPCC2;9cbaf993-c46b-4f33-ad82-dbd6756436c6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJJLH2;f3e62413-c95c-4d8e-8b7d-6317a3f81060;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJJLH1;450991b9-d281-495f-977c-878373499f45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQPHA1;f621f515-a218-454f-a0cf-da255c6b87e1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXTPB2;04e53790-f728-4f29-b4e8-17e7aa331e0a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EALRV1;21f84193-289a-45a5-be9c-939273f83b74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAEUH2;f72ed1dc-6181-4bae-8d1e-52f805b8346a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAEUH1;f3281b6d-4d38-4f55-80d9-bc250dd6cfbd;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EACPZ2;6eb9032c-ae3b-4747-a781-47b8517a98de;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EACPZ1;b7cd4173-7e60-48d7-af25-27b7f8c97421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENGEH1;0937057a-3c23-4466-9b1d-dbe96b24d3d5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ENGEH2;10e5c788-8eca-4456-a336-a8704f64f6c3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECXNE1;5a91ed2a-1b3e-4fba-b8cb-c9cd1a26c0b3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECRPA1;c7f59e9c-1c36-42a0-ab76-d905a8d478ec;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECXNE2;cadfefaf-d824-45b0-adae-d59acf2cc76e;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESVGX1;e56b8c55-43e6-494b-b809-f16e8a00e6c0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESTJT1;FR*LUM*ESANTAGIULIAPALACE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQLNT2;b14c1d3a-dd14-43db-b57d-cdde93008180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGTQT2;333a06ae-f6b3-458e-8e5a-5c63c8152bf5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVYF2;1a8d48c6-e9ed-4c97-890d-b19511959332;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVYF1;b7a67a33-5aa0-4aa1-ac7d-2cbfa3650cda;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVXU2;dacc7284-24fa-457a-a239-b5df87276e33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETBCR2;12ad3b82-577a-46c6-993b-50fc0caefdb9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMDFQ2;FR*LUM*ESALETTA1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMVXU1;166279;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVPTB1;166278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETBCR1;69b0e0b3-ed34-438a-8e1d-970b21634da2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVJMV1;RCG0C210D9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKPCA2;1127402e-ffe7-4c4a-8882-20f8d4385fc1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKPCA1;aef7044f-5770-4e39-909d-520125a3e049;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJGZP1;9447d6e0-ff9c-44d3-a073-5a87415c7d6e;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMAVB2;5af64b37-2ac8-424a-8ed2-8630344786d4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETKNW1;FR*MAP*E000027385523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJGZP2;5aa39699-a74b-42e3-90ce-7167a52af169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESFLK1;175027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAMAF2;E175028;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESXKC1;01F5ZB3EZJTHW2Q8CMS931X82V;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESFLK2;01F5ZB3EZHEC791BKDB84YH6CQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGTQT1;01F5ZB3EZH4H4KFG2SZN3T6ZY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESXKC2;01F5ZB3EZKKWYX2YM6899SFG66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESFYV1;01F5ZB3EZKN13STS3XCW7ACJEW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECRPA2;01F5ZB3EZKYMYZ0N138SWQRWTR;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMAVB1;01F5ZB3EZKCW50JK636PDH5T4A;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQPHA2;01F5ZB3EZK26Z86ZBYP8CTR9HM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAHEJ1;01F5ZB3EZJWKWKV185QZFAEX4K;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMTBE1;01F5ZB3EZJH4KTJ2W2PWDGJDP3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMRHY2;01F5ZB3EZNT2SHTQMTCW2EV91G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECHRJ1;01F5ZB3EZJMKR8XZCPSFM7PRXD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYNUE2;01F5ZB3EZMZ9TNKHMCC1H13671;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMRHY1;01F5ZB3EZM0X6H10R56XEVA06J;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBFCW2;01F5ZB3EZMWRXSRFGWKQ7GM1TZ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYNUE1;01F5ZB3EZMNM7K24RP670QSERH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBFCW1;01F5ZB3EZM8EN90Y79720ZST7T;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECHRJ2;01F5ZB3EZMX2J960E4HGG53ST7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERBCA1;01F5ZB3EZNFS9FMTK5W9T48A3E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERRRB1;01F5ZB3EZK9M8R9FK82KP7SXH3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERRRB3;01F5ZB3EZKZKW7X9PVRJ3N0Z6E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERRRB2;01F5ZB3EZKK4C3MR07HACZ38W1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAABS1;01F5ZB3EZK75WZDD5M78RQ6CHZ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EXZVC1;01F5ZB3EZKJE4X9PG5D5K21TJ8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPQKY1;01F5ZE04QV54FEVMM6BSNX20SG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECUZA1;01F5ZE04QVYTRYZJPXPJN4SMBJ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETAVS2;01F5ZB3EZK0APD3VJ8C1RB5K4F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETAVS1;01F5ZB3EZK346CVT0XEAAS6YQQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERRXP1;01F5ZB3EZK4J98HP0EP2YXMVTM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERRXP2;01F5ZB3EZK3KBYWX835AK4Y2B9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFDGD1;01F5ZB3EZJ2W15BR4DTHZH3SWN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWJVN1;01F5ZB3EZK78EJ7C2DY3T03VKF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EGNXT1;01F5ZB3EZKKQ044A953WK74KFX;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERBCA2;01F5ZB3EZKQRJ75GAFE5F6A49B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ETKTM1;01F5ZB3EZK0PG7NANFVBGPWJFD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJHWM1;01F5ZB3EZJ7B9XP31BRBNW9KG4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWJVN2;01F5ZB3EZJNNPNF7HVDNS2M739;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVXRM2;01F5ZB3EZJRSBRXCECMQ8CDSJK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVXRM1;01F5ZB3EZKPTQ1FGH2VH6Z5Q95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESTNY1;01F5ZB3EZKDNG45D6EFQJSNFR0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESTNY2;01F5ZB3EZKE8RRCM40PR9SFPBY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQFMP1;01F5ZB3EZMBV4NJKEDWZPM6ENE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQFPN2;01F5ZB3EZMRZCGDQV8AMN9WN0P;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EMWRL1;01F5ZB3EZMH96JG4JKZ08FJ95F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQFPN1;01F5ZB3EZMW1TMKY1AZQPPFJYV;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQUZF1;01F5ZB3EZMTAGSM3FZRYGFD398;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EJQCF1;01F5ZB3EZM4GCEM44MRMZ7HXZZ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EQFMP2;01F5ZB3EZM71HN79X5BTWGCBK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EVBXA1;01F5ZB3EZM5M8C3TTEN3P93RJ7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFDGD2;01F5ZB3EZMHZJ0QNDQ1SSE3TT6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EAKFL1;01F5ZB3EZMR2R99H4JHK7MZTE4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EDZLN1;01F5ZB3EZMKQ38FXTG7ZE2F678;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EEWMR1;01F5ZB3EZM5FS7TVAQZFK0VFKK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKBES1;01F5ZB3EZM3NDTCY2VFJR0GD63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EWQNV1;01F5ZB3EZM2JFA95MX9G7CDMN7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ERZXC1;01F5ZB3EZMPDFVE666SD6EVX7R;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EPRKB1;01F5ZB3EZMVV3QQPRKWFXGP719;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESBJM1;01F5ZB3EZM393SHJ6K9893VM11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EYNUK1;01F5ZB3EZM2X6GRMRBM4RGHK4H;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC64859;01F5ZB3EZMJRKDFJJ5T6Z0VZ1N;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC64860;01F5ZB3EZMEJAWM1EKJ3YSPCZY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC64862;01F5ZB3EZM81XZ8R58ZTVT10H5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC64861;01F5ZB3EZMWNDFD97RFAHBKCAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC61828;01F5ZB3EZMMYZW3JMN2SVNQFKM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC61827;01F5ZB3EZMVB7J9WPDSCR494M8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC61826;01F5ZB3EZM3VJ2BD5DT3GRWA2K;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC61825;01F5ZB3EZMN1MTQ9EBY9E5DCQE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC66816;01F5ZB3EZMW7F21A2RQ8G1KKZE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC66815;01F5ZB3EZMSRJ7AHRJRP185B22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC66814;01F5ZB3EZMAD478YJ7N29VHPAR;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC66813;01F5ZB3EZMKFFH8P42BH939QGC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE24DC70175;01F5ZB3EZMY3MVHRWP5DZFK34W;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEBRETTE11;01F5ZB3EZMX213NFHZQPVP4KHP;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEBANKABLE1ROQUEALRIC1;d119d41d-9f0c-4299-a3e0-9f486d842fff;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEVVFRECHASTEL11;01F5ZB3EZMCC6S7AH5GXMTG1RQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEVVFAZURNEIGE11;c0fcf22f-989e-46f2-aae4-5fe458c23644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEVVFLOURIOUCLAR11;01F5ZB3EZK8W1JYG8N4XJVJ5T0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZKAE24DC90066;01F5ZB3EZKWCJ03WMG5K0Z7M61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZKAE22AC90067;01F5ZB3EZKWSKBPZDCVADP207S;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC60380;01F5ZB3EZKS27T94DJ3GR5Q40S;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC57150;01F5ZB3EZK139T9R6V6M39JY16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC96887;01F5ZB3EZKQ3ZVS1S39320AEZX;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZSUE22AC36279;01F5ZB3EZKT1KGMKMPWNBSK4FA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZSUE22AC36280;01F5ZB3EZKKEP8B92TPHGFW836;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZKAE22AC38835;01F5ZB3EZK6X9BSGXBFSMAZ4D6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZKAE24DC38834;01F5ZB3EZKAZJJTXYJ4BKMKXEQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC61743;01F5ZB3EZKX4WF7891QD83QAFF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHM66666666;01F5ZB3EZKBR78VEP5R5R401NH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHM777777;01F5ZB3EZKXCC0XD1Y2NXJQQN8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC60506;01F5ZB3EZKP9MN1QJ5RBEW15YE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC60498;01F5ZB3EZK07T0GKY07NAFCTA7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC63418;01F5ZB3EZKMEA85M06H15044ZB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC63419;01F5ZB3EZKAQAJZZHMXH7S3VRQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC55366;01F5ZB3EZKHVZ76AYZ7K2CE06N;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC55371;01F5ZB3EZK0HPRZWDABRPP7700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC55370;01F5ZB3EZMZAPP6J1FX9RMS9HX;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC55367;01F5ZB3EZMV2PS61NHV3ESP12N;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZKAE22AC88393;01F5ZB3EZM942W14M29K7SYK2F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZKAE24DC88392;01F5ZB3EZMAZ4W7EXHMY1VREWB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC50490;01F5ZB3EZMFKE2ERTHJ158JNRG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC50491;01F5ZB3EZM1Z5MSGDXYWZ9JJTG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC28236;01F5ZB3EZMKCY63DA7NKAQJH7E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC28235;01F5ZB3EZM3RYMXJ8G511DP579;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSE96X9F;01F5ZB3EZM8AT35MFXYRMK7M84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEMQ6DN;01F5ZB3EZMXQ4SKM43WS1FWT0Q;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSERPLN4;01F5ZB3EZKZ0G3CEK0FPTB3TV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEBNG3Q;01F5ZB3EZKD12YN34X1747CEFQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEYAT9J;01F5ZB3EZJ7HHHNV1V331KE81H;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSED6MAR;01F5ZB3EZJWC5SAZRZZA4523KN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEJG6XY;01F5ZB3EZJGEETXEQNG6BVTPW5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEX84ET;01F5ZB3EZJXM8ZEAP6DPCTAW46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSED96MX;01F5ZB3EZJHF1TEAQ1N083K8BN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSE3ATEY;01F5ZB3EZJXAAQSMPCYVES0WYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSE4JDA8;01F5ZB3EZJ53DTMCR5W9K2RWA7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEGXEQB;01F5ZB3EZJYCC6B2CBYT0G25S7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEL3J66;01F5ZB3EZJEAK3TSTCCMQNXTC6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEYGA88;01F5ZB3EZJXR6E15R8NZBC503N;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSE64AJ8;01F5ZB3EZJ5QF6PQ3ECMWNNBMF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEMXJPX;01F5ZB3EZJFQB6TMEXSBZKSR3C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEDCYBJ;01F5ZB3EZJJE9VG84KPAZ9AXQE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEAQ3TW;01F5ZB3EZJ04X5XP94Y8N0H2JG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEGLC99;01F5ZB3EZJ04X7HKCEAAXDJB4G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEBJWD8;01F5ZB3EZJGB0E0546KA4FT5AN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSE3YJEL;01F5ZB3EZJHTXD0VRFYE0X9AQ7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSE9LQEX;01F5ZB3EZJN5XD1T1DPCWQM1PT;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEYN96M;01F5ZB3EZJY57H53J0A6SS82SQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEJBEB9;01F5ZB3EZJRKFJ27EQZZ9BNK0N;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSET6W4T;01F5ZB3EZJ9S811YM5E72PGT3P;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEWKELP;01F5ZB3EZJJ9WBH4TQ15ADSG8S;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEJTQCP;01F5ZB3EZJBBG34BFQW1ZD90H2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSE94AYL;01F5ZB3EZMDGQGC3E87W5XCPB6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSE9PX4Y;01F5ZB3EZMBGANM58ACYP7CXD0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSETM3PM;01F5ZB3EZJTS0WCW629PC1RABX;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSE4XHGH;01F5ZB3EZJ5S6AVJY3C5EQ2YY9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEWNPDQ;01F5ZB3EZJAAKDAVK8AW6BT2AP;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEA6NMC;01F5ZB3EZJPQFDDWAYN74AWH2J;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSED3DQP;01F5ZB3EZJ35JQ3AR7773ZRHV5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEN9DTM;01F5ZB3EZJFNE318KA7GZ5CBKH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEMKN9W;01F5ZB3EZJNYNQZAJHCC7SH8WQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEJB8FN;01F5ZB3EZJYCNR5F1YBJCST8K0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEQQHC4;01F5ZB3EZMS1DTNEP41MRZVNSX;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEFTRYD;01F5ZB3EZKP2T1KNPXY0ANQ5TQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEDWXJG;01F5ZB3EZK39HFM8EBR33X9NR0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEXB9YG;01F5ZB3EZK3H6DAJAN5GSCZC26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEKB83C;01F5ZB3EZK5HW5JV9RC7Q65HMM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSED9AXG;01F5ZB3EZKBEGCGQ5K6G2R454C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSE83YQJ;01F5ZB3EZKZ52CCM41NZ7KG298;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEA8CHT;01F5ZB3EZK5J1MZP1B1REM18E0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR0NXEVSEM9MHT;01F5ZB3EZKCMYXKRDVG1EW2SZX;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC121730;01F5ZB3EZK4Y6RFC0JBQBVF2XE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC71494;01F5ZB3EZKNT34P7ZGQHSF88R0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC71514;01F5ZB3EZKYDT7TFZR7S77DF3Y;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC96902;01F5ZB3EZKWTPWC1D778BRQTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC56571;01F5ZB3EZKB47CENSSP0RKKHSM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000012821322;01F5ZB3EZKH33YBVV5JRAR85BG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000012791072;01F5ZB3EZKJZY0KC48ZZNH0H9X;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000015796702;01F5ZB3EZKHKGWX9EKBVQK1B07;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000014796731;01F5ZB3EZJGXEG101D49VARZTS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE117293791;01F5ZB3EZKM63K61YT2C4PWAKX;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE11750373;01F5ZB3EZK4SJH2C1Z35Y4ESEC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE11732115;01F5ZB3EZKEWQD6R0KT48E421T;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE11736622;01F5ZB3EZKZZAE17WVN1GW8V4Y;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE11749592;01F5ZB3EZKGF5XYXQT3YFN6TXE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE11750472;01F5ZB3EZKNH2RKJ5WZ3N10ZPH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC128389;01F5ZB3EZK2NMPXMVP0KN590DR;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC128390;01F5ZB3EZJ2YBND7XJZA4A16SA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZKAE22AC37831;01F5ZB3EZJ7D551Q2H61NZKKGB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZKAE24DC37830;01F5ZB3EZJ41EE2NT58EX4NCNB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC77754;01F5ZB3EZJ00X7PBH94ZF41CY4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC77752;01F5ZB3EZJ87EQNA8T8VEXZYE5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC57006;01F5ZB3EZJBH508TACPB45GZKC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC56657;01F5ZB3EZJGTJMTV7FSJHT29RB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE74AC96190;01F5ZB3EZJFZA1CPW0B45505B7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE74AC109624;01F5ZB3EZJY50BHH5C2879RZ03;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC49587;01F5ZB3EZJXX5BV76ESY8C1S7R;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC49607;01F5ZB3EZH867YREPSD1Q41MQZ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAU10025011;01F5ZB3EZHJ7S5VRDV0V7JJH7Z;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEFALGOS11;01F5ZB3EZHGRT9TY1662Z758N9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC87473;01F5ZB3EZH0BDGNM9GX86539BG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC87472;01F5ZB3EZHEVZX4YYV97JMDA84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC47126;01F5ZB3EZHPRKGP4T3CM8G53DV;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC47104;01F5ZB3EZHCZMQC8MM9ZT41PGM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZSUE22AC49419;01F5ZB3EZHXFDTQG3BPXQG3565;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZSUE22AC26491;01F5ZB3EZHMR6WH76RDTGX66M2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZSUE22AC26492;01F5ZB3EZHGZ77HA1K99PQEVV5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZSUE22AC49420;01F5ZB3EZH2RHJBJE68N4G8CTA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREZDE28287;01F5ZB3EZH4EG83B6H3M845BPV;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREZDE63395;01F5ZB3EZHR2NNNCVXZY6KC0Z7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB4CHADEMO;01F5ZB3EZHPACQCWW9EG582XJB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB7CCS2;01F5ZB3EZHFZ4MYJ1BQBAWK280;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB4T2;01F5ZB3EZHKHX79RE7DHTXMHYH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB5CCS;01F5ZB3EZJ63Y0FHHRAXWH3D95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB5CHADEMO;01F5ZB3EZH233RF26ANMZAFH17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB5T2;01F5ZB3EZHCTGNFZH6R0S8G8J3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB6CCS;01F5ZB3EZHHY97KXPRVN3YHRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB6CHADEMO;01F5ZB3EZHWV67YQECD00MEAX9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB6T2;01F5ZB3EZGNZBPAA1WDXVMBM8K;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB7CCS1;01F5ZB3EZG0DTP4ZYH3K3D3Y8C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB7CHADEMO;01F5ZB3EZGNBQQKE84KZB858KZ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB4CCS;01F5ZB3EZG7YSW6Z60VRNQEPC6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB7T2;01F5ZB3EZG3SR8WCY6SY504SB5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB1CCS;01F5ZB3EZGEV5BWZREJKZDRRD4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB1CHADEMO;01F5ZB3EZGDSAZS0JW6BVQATA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB1T2;01F5ZB3EZGHYARPGQAN7530Y41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB2CCS;01F5ZB3EZGRPDV8HW7GSBMGVTJ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB2CHADEMO;01F5ZB3EZGXEHYBY77XFQ10NZG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB2T2;01F5ZB3EZHGE9QCVM4K5Z7S5E1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB4CHADEMO;01F5ZB3EZHBXXTDCPA7PTKG79E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB3T2;01F5ZB3EZHREMYRVVJ96XVY2XY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB3CCS2;01F5ZB3EZHTX2A7D491D9MBSAN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB4CHADEMO;01F5ZB3EZJA9ECZZQ488963JWP;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB2CHADEMO;01F5ZB3EZJZ6VJYS1G81HVCW5T;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB2T2;01F5ZB3EZJ5J8B3ATV6NT2NGVC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB3CCS1;01F5ZB3EZHKP7H47724BHVVS2V;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB3CCS2;01F5ZB3EZHFNNR4WSQQ8RWFSGS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB3CHADEMO;01F5ZB3EZHQMVG9BGQAMETFMT0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB3T2;01F5ZB3EZHSZ16B5FZ4FSP66QE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB4CCS;01F5ZB3EZHX2YDT5KT6E3J1Z73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB4T2;01F5ZB3EZHNKGA5SRAXCFAVTJ6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB3CHADEMO;01F5ZB3EZHJKGYF2D3QTEN3EPP;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB5CCS;01F5ZB3EZJ7P7DPW6E8WYBGE51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB5CHADEMO;01F5ZB3EZJ9HT0C8P2S9DQFY2M;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB5T2;01F5ZB3EZHBJ1Y9YPTXA9SG07T;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB6CCS;01F5ZB3EZH7F5CE902729V6MK6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB6CHADEMO;01F5ZB3EZHBAAPB5AADMPA41BQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB6T2;01F5ZB3EZHYNNSQ5CCQMKGHY0Q;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111BB3CCS;01F5ZB3EZH0S9AQP3FBPTPG1P4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB3CCS1;01F5ZB3EZH8REHHYNZ5XDJJ0K3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB3CHADEMO;01F5ZB3EZHK657FG5XJY4VR8WW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB4T2;01F5ZB3EZH5XN9J8KJG8V56B5S;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB5T2;01F5ZB3EZH6PXWNDGH930X9YM0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB3CHADEMO;01F5ZB3EZHATBB1R8558N1NCGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB3T2;01F5ZB3EZHG9ZMK8AA09TWJJHN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB4CCS;01F5ZB3EZHD0SF6DXRG5KF5WJP;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB4CHADEMO;01F5ZB3EZHQ3EEXCCGXKDF5C4K;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB4T2;01F5ZB3EZHPQQBRSC3Y629G8XS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB6CCS;01F5ZB3EZHJED2JHVESMRHFMS6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB5CHADEMO;01F5ZB3EZHJ1JVDT84987S9HRB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB3CCS;01F5ZB3EZHTBR1PRA517FFQ56C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB3CCS1;01F5ZB3EZMMFQJ59NF7HB10Z04;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB3CHADEMO;01F5ZB3EZHTZARKPZJYF2AWCQ7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB3T2;01F5ZB3EZMQ8V521BZNNBA0PTD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB4CCS;01F5ZB3EZN4CD21VCBFBH9CNGW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB1T2;01F5ZB3EZNK786BYPHF6VY9Y37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB5T2;01F5ZB3EZN65ZZPCVHNA47PCDD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB5CHADEMO;01F5ZB3EZNBHZA0YM280N9FE2S;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB5CCS;01F5ZB3EZN8YRG5ZSK3J1QTXVM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB3CCS2;01F5ZB3EZN3PEWWSVASC1F6N1E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB2T2;01F5ZB3EZNQAA5MZ46KJQA8DB0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB3T2;01F5ZB3EZNDXZ0F6GD4SHTF19Y;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB6CHADEMO;01F5ZB3EZNA4CH2DDQHX878GC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB4CCS;01F5ZB3EZN6PC6J5XKG5JSD6C0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB4CHADEMO;01F5ZB3EZN7YGT6FWXZD7KSTAN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB4T2;01F5ZB3EZNA9Q2J8PDDMGQTAQQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB5CCS;01F5ZB3EZNS8D52J0YJ0ME17VD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB5CHADEMO;01F5ZB3EZN4J1RBQ50KRRT98P5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB5T2;01F5ZB3EZNT4E6B077QZ6T8E6E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB6CCS;01F5ZB3EZNJ39VR0W3GWRJXQMJ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB6T2;01F5ZB3EZN2DBDT2PZM19FQ785;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB2CHADEMO;01F5ZB3EZN1DNQ3A19GMKCV0SR;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB7CCS;01F5ZB3EZNXFDCKH16T5JNTEPK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB7CHADEMO;01F5ZB3EZNT54N89YH8JW18G9C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21298AB7T2;01F5ZB3EZNVAAKP8XMYYF6BQTA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB1CCS;01F5ZB3EZNXEJ7W5AHGVJ7NAGR;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB1CHADEMO;01F5ZB3EZNHZSS8BP079ZEDVJ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB1T2;01F5ZB3EZNB94M504PZAX80V2Z;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB2CCS;01F5ZB3EZN1N4MH2TQM62GMS4M;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB2CCS;01F5ZB3EZNQ6E39S7F4BT61X8P;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB4CCS;01F5ZB3EZPD5QG1H4BMTMF5VSG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB1CHADEMO;01F5ZB3EZPMYX229ZWPAKVGP67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB2CHADEMO;01F5ZB3EZPMRN381QZRM128YQR;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB2CHADEMO;01F5ZB3EZMGG0N78ZP8P5G0HS4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB2T2;01F5ZB3EZPY1EJ38DAAXS9WPSF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB3CCS1;01F5ZB3EZP9X1BMWB5DV1P69SW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB3CCS2;01F5ZB3EZPEHH9E3Q8PTTFE03R;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB3CHADEMO;01F5ZB3EZP0TJAPM0CVW9H562N;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB3T2;01F5ZB3EZPJTHS12ZJ0JXVFR6A;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB4CCS1;01F5ZB3EZPMJR6SJ5PKND15172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB4CCS2;01F5ZB3EZP6AJTH4C9ZFPAFA43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB4CHADEMO;01F5ZB3EZPG50ECE8R235EMSET;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB4T2;01F5ZB3EZP1RNHDQNR89SHFW86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB5CCS;01F5ZB3EZPTAV57K29ZFND4ZH6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB5CHADEMO;01F5ZB3EZP8AXNNNRC8FADH04M;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB5T2;01F5ZB3EZPN8449KEFBFCT352G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB1CCS;01F5ZB3EZP78JSCEH73WT2H0JW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB1CHADEMO;01F5ZB3EZPMW455VRVDTGMWNKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB1T2;01F5ZB3EZPNSYJCBJ9NJA83V66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB2CCS1;01F5ZB3EZP7NFWRWQVF6MPTCJS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB2CCS2;01F5ZB3EZP55XAWBVMMPD5X8GM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB2CCS1;01F5ZB3EZPY8NCFV5YG87MJPHY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB1T2;01F5ZB3EZPB1EFZA2ZTWF09GAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB2CHADEMO;01F5ZB3EZPMCR0M9B2X5FQ05PY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB4T2;01F5ZB3EZPMFQB2AY5WQ6VDGY8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB4CHADEMO;01F5ZB3EZP8RCMERZVGXCDCE8K;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB4CCS;01F5ZB3EZNNY5MFTRQJ78PM9Q1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB3T2;01F5ZB3EZNSQXPZ3M7P02SG11P;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB3CHADEMO;01F5ZB3EZNA9YK3BP1T0ERTTW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB3CCS;01F5ZB3EZM8XWNYX59T3C92M6P;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB2T2;01F5ZB3EZNVENKPYNRRAT3629R;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB2CCS2;01F5ZB3EZN792H57MTK6NT9BZC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB1CHADEMO;01F5ZB3EZN8BR4H99DHWB0FZ6E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB2CCS1;01F5ZB3EZNPCYVYJBXNJ5S5A54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB1T2;01F5ZB3EZNPNS22K2F68YZ1NMN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB1CHADEMO;01F5ZB3EZNWKQF1H707924CZJA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB1CCS;01F5ZB3EZNMTWZYSQAHTFV7PME;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB5T2;01F5ZB3EZN64E66F733VYDEDT9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB1CCS1;01F5ZB3EZNTPH1Y5S1GGQMSRQH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE06012AB1CCS2;01F5ZB3EZN3PYFYZ9TBRV2B3XP;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB2CCS2;01F5ZB3EZM4QB6WWEYS5KJJRPC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB2T2;01F5ZB3EZM2DVTN32C3NXEW7AV;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE21111AB1CCS;01F5ZB3EZNVR5853YR4ZY0F08T;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB3CCS1;01F5ZB3EZM5V6SNQS5WQRX1434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB3T2;01F5ZB3EZMQ7K1AS4X56Y7D4TH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB4CCS1;01F5ZB3EZM2RJ32PE4QVES3JNS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB4CCS2;01F5ZB3EZM57TAG6Y7FCE2N18A;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB4CHADEMO;01F5ZB3EZMZ2RZPWZ9ED4N52JG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB4T2;01F5ZB3EZNGVTVN4RH52GMAX9E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB5CCS1;01F5ZB3EZMTEJ4BH9CR4M5DNWF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB5CCS2;01F5ZB3EZM9SP5A7A3JQD4MPD9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB5CHADEMO;01F5ZB3EZM63YMQCVSZV7279RT;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB5T2;01F5ZB3EZM7134AR6Z9XPGSXWP;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB6CCS1;01F5ZB3EZMC1RVRF74G553V64T;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB6CCS2;01F5ZB3EZN9ZHM2RK5WHV20AKK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB6CHADEMO;01F5ZB3EZMKWTYZWBBNC80WQ67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB6T2;01F5ZB3EZNC2SKPXTGJRPBVXFV;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB7CCS1;01F5ZB3EZN638JMP8KWCRXFVE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB7CCS2;01F5ZB3EZN27M39G9VAVXJ53S4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB7CHADEMO;01F5ZB3EZNTZPW1S065NHCYJF6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB7T2;01F5ZB3EZNAGAMNWDCA6D3VQ0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB3CHADEMO;01F5ZB3EZNREVNVKFVGYSADFKS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB3CCS2;01F5ZB3EZNTEZ7FETAMXQW00S3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB3CCS1;01F7RQ9ZSWAEQPY5VSBG315MTC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB5CCS2;01F7RQ9MBMB26MEE529Q87S7DM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB3CCS2;01F5ZB3EZNK32QFS923FZRS9H8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB3CHADEMO;01F5ZB3EZNZX3M3NABQBF6FQC7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB3T2;01F5ZB3EZNHS5SFYK7ED2PB28E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB6T2;01F5ZB3EZNFSFZWQR8A0G1VMVG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB4CHADEMO;01F5ZB3EZNQEZ5CJ3QX834BH5W;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB4T2;01F5ZB3EZNXNPRHHNYA3VZNG99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB5CCS1;01F5ZB3EZNQNC756B6F8K471E5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB5CHADEMO;01F5ZB3EZN03R4FFGZ62B42Y79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB2T2;01F5ZB3EZN0TRAPJWEZV518M36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE11188AB5T2;01F5ZB3EZNTMNWTV0B8C7X0HF0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB1CCS;01F5ZB3EZNTN7M64P43J2WWQE8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB1CHADEMO;01F5ZB3EZNY9PAX3QCDDBF7FFD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB1T2;01F5ZB3EZNZP2K7NDXBE60RRYB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB2CCS1;01F5ZB3EZNDFCS2G8YTQT1S8Z0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB2CCS2;01F5ZB3EZNFNM5TY02574PGW2T;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE13015AB2CHADEMO;ANYOS-IOTLAB-HBS8-P140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB6CHADEMO;ANYOS-IOTLAB-HBS7-P139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368AB5CCS;ANYOS-IOTLAB-HBS6-P138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB7CCS1;ANYOS-IOTLAB-HBS5-P137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB6CHADEMO;ANYOS-IOTLAB-HBS4-P136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB4CCS2;ANYOS-IOTLAB-HBS3-P135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB4CHADEMO;ANYOS-IOTLAB-HBS2-P115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB5CCS1;ANYOS-IOTLAB-HBS1-P104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB5CCS2;ANYOS-IOTLAB-HBS9-P141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB5CHADEMO;ANYOS-IOTLAB-HBS10-P142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB6CCS1;ANYOS-IOTLAB-HBS13-P156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB6CCS2;ANYOS-IOTLAB-HBS20-P239;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB7CCS1;ANYOS-IOTLAB-HBS19-P238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB3T2;ANYOS-IOTLAB-HBS18-P237;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB7CCS2;ANYOS-IOTLAB-HBS17-P236;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB7CHADEMO;ANYOS-IOTLAB-HBS16-P235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB8CCS1;ANYOS-IOTLAB-HBS15-P215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB8CCS2;ANYOS-IOTLAB-HBS14-P204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB8CHADEMO;ANYOS-IOTLAB-HBS12-P144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB9CCS1;ANYOS-IOTLAB-HBS11-P143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB9CCS2;ANYOS-IOTLAB-HBS30-P336;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB4CCS1;ANYOS-IOTLAB-HBS29-P335;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB3CHADEMO;ANYOS-IOTLAB-HBS28-P315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB1CCS;ANYOS-IOTLAB-HBS27-P304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB10CCS1;ANYOS-IOTLAB-HBS26-P256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB9CCS1;ANYOS-IOTLAB-HBS25-P244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB9CCS2;ANYOS-IOTLAB-HBS24-P243;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB9CHADEMO;ANYOS-IOTLAB-HBS23-P242;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB9T2;ANYOS-IOTLAB-HBS22-P241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB1CCS;ANYOS-IOTLAB-HBS21-P240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB1CHADEMO;ANYOS-IOTLAB-HBS34-P340;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB1T2;ANYOS-IOTLAB-HBS32-P338;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB10CCS2;ANYOS-IOTLAB-HBS31-P337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB3CCS;ANYOS-IOTLAB-HBS33-P339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB10CHADEMO;ANYOS-IOTLAB-HBS36-P342;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB11CCS1;ANYOS-IOTLAB-HBS35-P341;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB11CCS2;ANYOS-IOTLAB-HBS38-P344;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB11CHADEMO;ANYOS-IOTLAB-HBS40-P415;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB2CCS;ANYOS-IOTLAB-HBS39-P356;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB2CHADEMO;ANYOS-IOTLAB-HBS37-P343;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB2T2;ANYOS-IOTLAB-HBS43-P455;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE37099AB9CHADEMO;ANYOS-IOTLAB-HBS42-P435;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB1CHADEMO;ANYOS-IOTLAB-HBS41-P434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB8CHADEMO;4e29064a-6574-46ec-8964-440771a61572;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB3CHADEMO;FRCARE74282A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB1CHADEMO;FRCARE74282A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB1T2;FRCARE74282A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB2CCS;FRCARE35288A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB2CHADEMO;FRCARE62652A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB2T2;FRCARE62652A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB3CCS1;FRCARE17274A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB3CCS2;FRCARE17274A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB3T2;FRCARE79048A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB7T2;FRCARE79048A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB4CCS;FRCARE45028A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB4CHADEMO;FRCARE45028A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB4T2;FRCARE35288A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB5CCS;0beb2b21-5dc4-4fe5-aebb-b06e96560608;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB5CHADEMO;269df3af-cae5-4494-a624-06550a3102d5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB5T2;aa5607d3-6886-4910-986c-cbf524893d30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB5CHADEMO;E175100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE88440AB1CCS;E175099;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB7CHADEMO;FRMOB69570FIREXAC01;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB1T2;Borne 1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB4CCS;EVB-P1903315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB2CCS;022a8ab8-aec8-44d9-b702-256b3a49c69a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB2CHADEMO;a79b10ee-9e70-4059-9f74-1bbbf2e17c8e;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB2T2;E147592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB3CCS1;E147593;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB3CCS2;19d0102c-7bc1-43ec-90b0-1903616cb3ee;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB3CHADEMO;FR*LUM*ECAMPINGMONTANA1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB3T2;FR*LUM*EHOTELLESDOMES1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB4CHADEMO;bc3aedcc-3409-4038-89ed-4c3adad08708;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB7CCS;FR*LUM*ECAPITOULHAMEAU1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB4T2;FR*LUM*ECAPITOULCHATEAU1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB5CCS;ba708d34-ac6f-4edc-b8ab-7dc9403e08cf;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB7CCS2;a98bd5be-27ef-4e2c-8b14-5afda92d5a16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB5T2;cf6c66de-0b7e-11ee-be56-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB6CCS;cfd47e7c-0b7e-11ee-be56-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB6CHADEMO;non concerné;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB6T2;FRWBCERCG0C21148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB8T2;4decc122-c34c-4c02-a9d2-d035bdb6c08a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE77384AB5CHADEMO;1843876;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB8CCS;b3c03dab-3781-4d56-8548-f511fdafd233;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB7T2;9a20d4d6-4f37-4557-be0f-81cae434db06;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB5CHADEMO;6a3786a6-dc93-4cb9-af0c-ed80139a1d37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB5T2;VG0D07005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB6CCS;e0e2d5b0-cf46-4e4f-9ca6-7778903304db;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB6CHADEMO;1d21a019-efd4-4aa6-a3ff-055a31345c5d;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB6T2;4f16ddbc-1a78-11ee-be56-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB7CCS;537bd128-1a78-11ee-be56-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB7CHADEMO;75d4d068-1a77-11ee-be56-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB1CCS;493acdb7-ff7a-4e8a-80ba-f12fb5daf68f;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB5CCS1;169008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB1CHADEMO;FR*LUM*EHOTELNIDCIGOGNES1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB1T2;FR*LUM*EHOTELAMERIQUEPALAVAS1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB2CCS;646b92e62f5a364fea4ba465;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB2CHADEMO;50785;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB2T2;181e77ba-0aa7-11ee-be56-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB3CCS1;b0553314-0aa4-11ee-be56-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB3CCS2;6fe2f260-0448-11ee-be56-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB5CCS2;b1990380-045b-11ee-be56-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB4T2;FRWBCERCG0C2115C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB3T2;FRWBCERJG0C23026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB2CHADEMO;FRWBCERJG0C2303B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB7CHADEMO;FRWBCERCG0C210E4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE25368BB7T2;FRWBCERCG0C2115F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB1CCS;FRWBCERCG0C2117D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB1CHADEMO;FRWBCEHGG0C03009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB1T2;NVG0B46012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB2CCS1;NVG0B46002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB2CCS2;FR*FR1*EAVBJ*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB7T2;FR*LUM*EVILLAPOGGIOLI1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB4CHADEMO;E170549;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB2T2;Deplacer-Les-Montagnes-1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB3CCS1;Calice-Gevaudan-1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB3CCS2;Golfe-St-Tropez-3*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB3CHADEMO;Calice-Gevaudan-1*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB3T2;Camping-De-Nogarede-1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB4CCS1;Camping-De-Nogarede-1*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE31161AB4CCS2;Camping-De-Nogarede-1*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB3CHADEMO;Calice-Gevaudan-1*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE01195AB5CCS;Fibtech-1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB4CCS1;Golfe-St-Tropez-1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB5CCS1;Golfe-St-Tropez-1*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB3CCS2;Golfe-St-Tropez-1*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB3CHADEMO;Golfe-St-Tropez-2*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB3T2;Golfe-St-Tropez-2*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB5CCS2;Golfe-St-Tropez-3*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB4CCS2;Aubipose-1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB4CHADEMO;Golfe-St-Tropez-2*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB4T2;Les-Seigneurs-2*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB7CHADEMO;Les-Seigneurs-1*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB2T2;Les-Seigneurs-2*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB7CCS;Golfe-St-Tropez-3*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB6T2;Hotel-du-pont-1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB6CHADEMO;Luguet-1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB6CCS2;Les-Seigneurs-1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB6CCS1;SED-Tourisme-1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB5T2;Les-Seigneurs-2*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB5CHADEMO;Luguet-1*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB3CCS1;Luguet-1*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB4CCS1;Peyrat-1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB2CHADEMO;Relais-Corbiere-1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB6CCS2;Relais-Corbiere-2*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB4CHADEMO;9a1318f7-e55f-4811-8e66-a6dfd17a0121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB4T2;E175271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB2CCS2;E175270;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB5CCS2;1eddad96-e4dc-4f74-8d47-51e4b9ae4439;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB5CHADEMO;1843875;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB5T2;1856894;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB6CCS1;54b45806-06c5-11ee-be56-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB5CCS1;55056f2a-06c5-11ee-be56-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB6CHADEMO;a9f3e7d8-06c4-11ee-be56-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB1T2;E174559;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB6T2;E153280;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB2CCS1;E153279;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE33502AB4CCS2;E174558;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB1CHADEMO;ad708d33-87bb-41e1-9c78-d9c0661152c5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB1CCS2;c897ec93-d2d6-42ce-ace5-dc5563b446a9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVAE34095AB1CCS1;Talmont-Accueil-1*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEHOTELALIZES11;Talmont-Accueil-1*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEMALIJAI1011;Talmont-Accueil-1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR000012616553;ad02274a-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR000011062174;aa10c58c-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR000012308585;aad79e00-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR000012292701;aa571e6a-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC50719;abb86cbe-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC50711;ab22b2c8-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE74AC89771;ab6c1008-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE74AC89772;a9480b2e-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEHOTELPEUPLIERS11;ad8c4b00-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128615;a98c568a-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128616;a9d46d94-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC56428;a904d412-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC56427;a7acdc04-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC129868;a8c6df36-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC129846;ac40b2ea-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE74AC71708;a75855e4-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE74AC71707;abf3667a-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC129732;a7f8addc-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC61148;a8809b66-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC61147;a840b7bc-c89a-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC50670;NLEVBEEVB-DC515600001-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC50704;EFEC9F1798CE4367B63FDE0635E88811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC62871;01b572a1-af87-407f-b53b-1ddd49f9c39a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC62872;f3700b61-4758-446a-a269-860160b3ba85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC60013;2296a42c-50fd-4e8c-b04c-9f5a2bb7a50a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC60012;nl*evbeevbp2211454*2215212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMELODGING11;49396446400025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC47222;FR*LUM*EVITISAT1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE24DC55361;FRCPIE6638635*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC54738;FRCPIE6643015*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC61047;FRCPIE6643015*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC61057;FRCPIE6654685*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC61056;FRCPIE6638635*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC61046;FRCPIE6643025*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC95344;FRCPIE6643025*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC95349;FRCPIE6654585*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC19518;FRCPIE6654585*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC78037;FRCPIE6654415*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC78036;FRCPIE6654675*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMELACLAPE11;FRCPIE6654675*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEVALSERINE1;FRCPIE6654415*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC49701;FR*MAP*E000000008040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEHOTELLAC749201;FR*MAP*E000000007785;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC76647;88249;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC76648;88250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEHOTELCEDRES11;FR*LUM*EMIGNOT1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC57334;50d1847a-12fa-4c5c-bf16-b2c9ce78bd99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC57335;FR*LUM*EGERARDROBERT1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC57333;FR*LUM*ESCIDUSOLEIL1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC57332;FR*LUM*EAUSTERLITZ1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC131517;de2d5492-fe1e-4ad4-a23e-f73934a1ddf1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC131516;1c3f42ef-a54e-4a89-b4d4-d92793b5900f;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC131524;128990;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC131525;128991;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC55087;fr*ise*einouid*crequi*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC55086;8d62df39-c28c-49fd-807c-fd9c098068bf;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE24DC61319;EVB-P21223833;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE24DC61318;8ef7ac44-2295-427b-8f6c-589c0e47c43a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE24DC63446;122021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC60301;5a261145-4bb3-48f4-a72d-699958c5c975;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC57830;0ba8ed7c-43f6-4b51-9b36-66b094607c09;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC60302;non concerne;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC57831;6276b4a3-534b-4e27-b749-5fa468ec139f;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC57510;FRQWTE86027A15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE24DC57509;FRQWTE86027A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC77768;FRQWTE86027A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC77767;FRQWTE86027A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCPIE6600025;FRQWTE86027A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC70163;FRQWTE86027B11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC70164;FRQWTE86027B14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE24DC53268;FRQWTE86027B15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC66598;FRQWTE86027B12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC66599;FRQWTE86027B13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE74AC127538;7d5d2890-be76-48d8-9d9e-1a43c688ad69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC59778;b3b55ab4-5c2d-11ed-9b6a-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC59777;FR*LUM*ERENAISSANCE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC128521;60014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEDOMAINEDESPEYRE11;60015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC118370;fr*bhm bubble;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC118367;fd6b809c-a6de-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC71607;d03cecc4-a6dd-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC71572;4e6f4e78-a6db-11ed-afa1-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE000014786885;01F2KNFARDSJG7KEH1YHG4033M;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC126136;RCC-CAN-01-DC-PKGCLIENT;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC81447;RCC-NICE-01-DC-PKGCLIENT;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC50643;RCC-CAN-03-DC-PKGCLIENT-SAV;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC50651;143108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC31929;143107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000003414752;8c925cb4-6508-11ed-9022-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC129087;bf159630-f79f-4d7c-8d7b-502334af5a4e;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC129086;AQJY3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC50776;RYFQ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC89152;NLLK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC49605;NLLK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAU1E0031021;AQJY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAU1E0030021;FHNC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC49544;FHNC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC49575;RYFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC49847;NLLK3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EQRBA1;AQJY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EQRBA2;FHNC3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EZQVR1;RYFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EZQVR2;FDEZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56ECFBR1;JMHF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56ECFBR2;DBDC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EGAKE1;DARC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EGAKE2;PEUP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EYAFW2;WPEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EYAFW1;DBDC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EFCDS2;DARC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EFCDS1;XQMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56ELAZB1;GDGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EFZXA2;XTHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56ERWQY1;DHTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56ERWQY2;FMCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EFZXA1;QYQK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EEVRP1;EKRE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EEVRP2;FDEZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EAMLA1;PEUP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56EAMLA2;JMHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56ENWBU1;DXTW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS56ENWBU2;UBDG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC49683;UBDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMELIBERATION11;AGFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC60127;CQLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC135128;AGFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC49597;GUFV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC49521;WNEY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC49590;WNEY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC49577;GUFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC49591;RTJX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZSUE74AC16987;SXKN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZSUE74AC16986;FMCB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZSUE74AC16993;DXTW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZSUE74AC16992;HNVQ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZKAE22AC36717;GDGF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZKAE24DC36716;HNVQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC19826;HNVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC19827;EKRE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC56424;CZFS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC56423;WGTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC70278;FSCE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC70279;QYQK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC89539;YWEB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC89540;HHNF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC50782;YWEB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEVALMOUREZE11;WGTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEHOTELPARCAVIGNON11;VFPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVMENVG0B46001;RTJX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE175319;FYEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE175320;CRJC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE161583;VFPF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE161582;HHNF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128771;JBYY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128704;CRJC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128713;FSCE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128712;JBYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128770;FYEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128703;QGUB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128758;DHTU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128787;XQMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128711;WPEM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128789;XTHZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128790;CZFS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128757;QGUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128788;ACFU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128773;HRZT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128752;HRZT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128774;BQXZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128710;AYRX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128765;BEPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128751;AYRX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC128766;MHFT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCPIE6685355;BEPN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCPIE6685345;ABQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A21;MHFT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A15;BQXZ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A14;BQXZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A13;SXKN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A12;FKJY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A16;FYZN3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A22;FKJY3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A46;VFSM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A24;VDZW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A25;VDZW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A26;VDJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A27;VFSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A28;VDJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A29;VRTG3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A210;VRTG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A31;VRTG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A32;ABQE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A33;BVZG3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A34;ZCHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A41;FZFZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A42;PRJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A43;PRJS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A44;PRJS3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A45;QQWX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A11;QXNX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRETIE59368A23;QXNX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC172817;QQWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC172819;QCMK3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC164421;QCMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC164418;QCMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMELOUCASTELETAPPARTHOTEL11;FZFZ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1KPPH2;WFTQ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE175425;FTUE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE172798;FTUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMESANTAGIULIAPALACE11;FYZN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMESALETTA11;BVZG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC166279;FZFZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC166278;FYZN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS86PSOREB1571;WFTQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS86PSOREB1551;FTUE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS86PSOREB1542;WFTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS86PSOREB1541;BVZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS86PSOREB1532;BSAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS86PSOREB1531;FKJY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS86PSOREB1572;HFCH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS86PSOREB1511;RJME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS86PSOREB1522;ADJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS86PSOREB1521;RARZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWBCERCG0C210D9;MSMZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMSE175027;HDXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMSE175028;FGAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777811;DRTJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777511;QWBK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777512;QWBK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777611;PMXB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777612;JSAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778311;DTMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777711;MSMZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777712;ACSS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777911;DTMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777812;RPYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777411;GNFT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777912;GNFT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778011;LDWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778012;UEHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778111;LDWA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778112;ACFU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778211;UEHB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778212;JSAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777412;RPYN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777311;PMXB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777312;VVUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776811;RJME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776511;ACSS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776512;PZXP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7717511;YKLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7717512;ZCHN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776612;BSAQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776711;PZXP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776712;YKLY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776812;HFCH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777212;VVUE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776911;VVUE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776912;CQLL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777011;NZYS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777012;SEYT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777111;SEYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777112;NZYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC777211;NZYS3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776611;SEYT3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778911;DRTJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778312;FGAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779912;HDXT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710111;ADJG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710112;RARZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710211;44ace84a-dbe5-41df-918a-eb1928981447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710212;67139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710311;67140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710312;FR*LUM*ELAMONTAGNEPO*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710411;59965;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710412;59964;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710511;59954;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710512;59953;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710611;45cd2350-2a17-4743-aee8-cdf9ae1ac304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710612;FR*BHM*ECOMTELIGIERBELAIR*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710711;21cee571-7382-43df-92cc-1375f4613b20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710712;e2050097-44b1-4692-95d3-0c31eb9bf50c;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710811;Securecharge-caalpa-cc-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710812;440ba41e-7229-4496-baef-d1a227edbdc3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710911;115d8829-05dc-4fd4-ab06-1de95d57f2a6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710912;5750fd1d-b53d-44ab-a341-d3f567eb3a60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711011;fa6ad1f3-7305-4247-a9c0-427b535f2486;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711012;a6359cd9-be13-44cc-a363-fa2fd57f8049;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711111;d4664a09-3f4b-4335-8b40-23bbe2c3fa83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711112;defa532c-f9f4-40e8-8f69-34773fdaaf38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711211;4120524a-c9d9-44b8-b4b1-4c3a2432f112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711212;fc6cda6b-670c-45f5-a098-f5feda8e866a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711311;FR*LUM*ERHONEAVACQUEYRAS1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711312;dba81636-e12e-4872-be4c-f005de3711a2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711411;FR*LUM*EAUBERGEESCARGOTDOR1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711412;FR*LUM*EPERSEDES1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711511;FR*LUM*EMALIJAI57*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710011;FR*LUM*EHOTELGRANDVINS1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779911;FR*LUM*ERHONEARASTEAU1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7717611;FR*LUM*ESERJAC1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779812;FR*LUM*ESERJAC5*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7717612;FR*LUM*EMAISONCONSULS1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778411;FR*LUM*EHOTELPROMOTEL1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778412;FR*LUM*EBRITHOTELLODGEGOLF1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778511;5aeff91b-a46e-48d0-b80d-8ee46591da1b;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778512;13df73db-6329-419c-a860-e5124cfe69a0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778611;FR*G10*E94073*A*1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778612;FR*G10*E94073*A*1*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778711;FR*G10*E91235*A*1*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778712;FR*G10*E91235*A*1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778811;6c9b0a53-29b7-4ec5-a07c-f4628ee1e7a4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778812;15d9566b-4501-4848-b1d8-7b2c7c709f47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC778912;2dbd1972-8a49-4fdc-83d6-5eec0566a136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779011;139321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779012;139319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779111;139322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779112;139320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779211;FR*LUM*ECABRIESGOLF1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779212;FR*LUM*ELEPROVENCE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779311;FR*LUM*EFASTHOTELPERPIGNANSUD1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779312;FR*LUM*ERHONEAVISAN1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779411;b03e08b0-9bf5-11ed-a8fc-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779412;FR*EZD*E45628;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779511;a5aae88e-f475-41db-a212-e0377aa9293f;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779512;f65ceed0-ddca-11ed-b5ea-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779611;FR*LUM*ERHONEABEAUMESVENISE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779612;fc3592e0-a9ba-459d-8c12-6cf79a99dfe1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779711;28370af1-4351-460c-b230-7244a31d0245;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779712;63624eb7-beab-4663-9d48-9a0ca6454bfb;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC779811;45c1f8b2-521d-46d6-b522-bea03c732d19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7710012;FR*MAP*E000021572762;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775911;FR*MAP*E000021570805;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775912;FR*LUM*ECHAUMIERE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774112;50637;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774612;50650;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774611;FRC2P0021011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774512;FRC2P0021012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774511;FRC2P002501;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774412;FRC2P002502;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774411;FRC2P002503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7717012;FRC2P002505;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7717011;FRC2P002504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7717112;FRC2P0004021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7717111;FRC2P0004072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774312;FRC2P0004071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774311;FRC2P0004062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774212;FRC2P0004061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774211;FRC2P0004052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774111;FRC2P0004051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774712;FRC2P0004031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774012;FRC2P0004011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774011;FRC2P0026011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773912;FRC2P002506;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773911;FRC2P0032011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773812;FRC2P0026012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773811;FRC2P0034021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773712;FRC2P0039022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773711;FRC2P0039021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773612;FRC2P0039012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773611;FRC2P0039011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773512;FRC2P0040011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773511;FRC2P0038021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773412;FRC2P0038011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773411;FRC2P0037021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774711;FRC2P0037011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774811;FRC2P0034032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711611;FRC2P0034031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775612;FRC2P0034022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776011;FRC2P0040021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776012;FRC2P0034012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776111;FRC2P0035011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776112;FRC2P0034011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776211;FRC2P0029011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776212;FRC2P0035021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776311;FRC2P0036011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776312;FRC2P0036012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776411;FRC2P0036021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC776412;FRC2P0036022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775812;FRC2P0051012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775811;FRC2P0046012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775712;FRC2P0047011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775711;FRC2P0047021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775611;FRC2P0049011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774812;FRC2P0049012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775512;FRC2P0048011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775511;FRC2P0048012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775412;FRC2P0051011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775411;FRC2P0052011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775312;FRC2P0045022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775311;FRC2P0055011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775212;FRC2P0055012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775211;FRC2P0053011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775112;FRC2P0053012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775111;FRC2P0058011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775012;FRC2P0058021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC775011;FRC2P0056011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774912;FRC2P0046011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC774911;FRC2P0056021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773312;FRC2P0045021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773311;FRC2P0045012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773212;FRC2P0044011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77712;FRC2P0044012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771511;FRC2P0043011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771412;FRC2P0045011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771411;FRC2P0059011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771312;FRC2P0059012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771311;FRC2P0060011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771212;FRC2P0060012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771211;FRC2P0061011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771112;FRC2P0061012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771111;FRC2P0065011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771012;FRC2P0065021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771011;FRC2P0063011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77911;FRC2P0063021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77812;FRC2P0066011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77811;FRC2P0066012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77711;FRC2P0064011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773211;FRC2P0064012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77612;FRC2P0067071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77611;FRC2P0067061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77512;FRC2P0067051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77511;FRC2P0067052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716912;FRC2P0067041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716911;FRC2P0067042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77412;FRC2P0067031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77411;FRC2P0067032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77312;FRC2P0067021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77311;FRC2P0067022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77212;FRC2P0067011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77211;FRC2P0067012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77112;FRC2P0068011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77111;FRC2P0068012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771512;FRC2P0069011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771611;FRC2P0069012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771612;FRC2P0070011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771711;01FDJ49W5B603VM1DHP9D1X0RV;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773112;01FBSCGND93ED2NASPNHQTRN20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773111;01FBVX4YPMK4FJM60CY0VRTVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773012;69*axstn*lim*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC773011;NL*EVB*ECWHPRLD2AETVBGFDNKLCUUDM5M;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772912;NL*EVB*EJTCFUZZSYWWAN77K4A2EXGH7AE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772911;01F857TE6ZMW1H01D7R8T2NN8C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772812;55ca0728-f5c3-11eb-9a03-0242ac130003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772811;01F8SKVQ1Y4CC0C0VBSSD4W2P0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772712;01FC30EDMFXMB1P0AX34AJ79MT;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772711;01FC3165039QS5A8PHYNWQEXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772612;01FC3165039QS5A8PHYNWQEXM0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772611;01FC3165039QS5A8PHYNWQEXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772512;01FCMYWD7E199QTPA9V2Y17HMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772511;01FGQVYRS0FX7TJ3JE1DEKMBBW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772412;FRV75EPX16161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772411;FRV75EPX16181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772312;FRV75EPX16174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772311;FRV75EPX16172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772212;FRV75EPX16171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772211;FRV75EPX16166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772112;FRV75EPX16165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772111;FRV75EPX16164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772012;FRV75EPX16163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC772011;FRV75EPX16162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771912;FRV75EPX16142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771911;FRV75EPX16156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771812;FRV75EPX16155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771811;FRV75EPX16154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC771712;FRV75EPX16153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711512;FRV75EPX16152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC77912;FRV75EPX16151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711612;FRV75EPX16146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7717212;FRV75EPX16145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715512;FRV75EPX16144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715511;FRV75EPX16143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715412;FRV75EPX16183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715411;FRV75EPX16182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715312;FRV75EPX16223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715311;FRV75EPX16184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715211;FRV75EPX16185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715112;FRV75EPX16136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715111;FRV75EPX16222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715012;FRV75EPX16221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715011;FRV75EPX16216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7717211;FRV75EPX16215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714312;FRV75EPX16214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714912;FRV75EPX16213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714911;FRV75EPX16212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714812;FRV75EPX16211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714811;FRV75EPX16206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714712;FRV75EPX16205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714711;FRV75EPX16204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714612;FRV75EPX16203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714611;FRV75EPX16202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714512;FRV75EPX16201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714511;FRV75EPX16195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714412;FRV75EPX16194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715611;FRV75EPX16193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715612;FRV75EPX16192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715711;FRV75EPX16191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715712;FRV75EPX16186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711711;FRV75EPX16141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716812;FRV75EPX16094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716811;FRV75EPX16135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716712;FRV75EPX16092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716711;FRV75EPX16086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716612;FRV75EPX16085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716611;FRV75EPX16084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716512;FRV75EPX16083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716511;FRV75EPX16082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716412;FRV75EPX16081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716411;FRV75EPX16076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716312;FRV75EPX16075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716311;FRV75EPX16074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716212;FRV75EPX16073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716211;FRV75EPX16072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716112;FRV75EPX16071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716111;FRV75EPX16066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716012;FRV75EPX16065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7716011;FRV75EPX16064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715912;FRV75EPX16063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715911;FRV75EPX16062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715812;FRV75EPX16061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715811;FRV75EPX16056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714411;FRV75EPX16055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7715212;FRV75EPX16054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714311;FRV75EPX16091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712312;FRV75EPX16093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713011;FRV75EPX16134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712912;FRV75EPX16225;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712911;FRV75EPX16133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712712;FRV75EPX16132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712711;FRV75EPX16131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712612;FRV75EPX16126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712611;FRV75EPX16125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712512;FRV75EPX16124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712511;FRV75EPX16123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712412;FRV75EPX16122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712411;FRV75EPX16121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712311;FRV75EPX16115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713111;FRV75EPX16114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712212;FRV75EPX16113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712211;FRV75EPX16112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712112;FRV75EPX16111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712111;FRV75EPX16105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712012;FRV75EPX16104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714212;FRV75EPX16103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711912;FRV75EPX16102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711911;FRV75EPX16101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711812;FRV75EPX16096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711811;FRV75EPX16095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7711712;FRV75EPX16224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713012;FRV75EPX16266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7712011;FRV75EPX16226;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713112;FRV75EPX17043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713712;FRV75EPX17041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714211;FRV75EPX17036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714112;FRV75EPX17035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714111;FRV75EPX17034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714012;FRV75EPX17033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7714011;FRV75EPX17032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7717412;FRV75EPX17031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7717411;FRV75EPX17026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713912;FRV75EPX17025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713211;FRV75EPX17024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713812;FRV75EPX17023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713811;FRV75EPX17022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713911;FRV75EPX17021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713711;FRV75EPX17016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713412;FRV75EPX17015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713212;FRV75EPX17014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713612;FRV75EPX17013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713312;FRV75EPX17012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713411;FRV75EPX17011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713311;FRV75EPX16315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713511;FRV75EPX16314;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713512;FRV75EPX17042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS77EEC7713611;FRV75EPX17044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135809;FRV75EPX16312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135808;FRV75EPX17045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135807;FRV75EPX17084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135806;FRV75EPX17083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135805;FRV75EPX17082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135804;FRV75EPX17081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135803;FRV75EPX17076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135802;FRV75EPX17075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135810;FRV75EPX17074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135811;FRV75EPX17073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135814;FRV75EPX17072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135821;FRV75EPX17071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135820;FRV75EPX17065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135819;FRV75EPX17064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135818;FRV75EPX17063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135817;FRV75EPX17062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135816;FRV75EPX17061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135815;FRV75EPX17055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135813;FRV75EPX17054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135812;FRV75EPX17053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135831;FRV75EPX17052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135830;FRV75EPX17051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135829;FRV75EPX17046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135828;FRV75EPX16313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135827;FRV75EPX16311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135826;FRV75EPX16231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135825;FRV75EPX16272;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135824;FRV75EPX16052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135823;FRV75EPX16265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135822;FRV75EPX16264;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135835;FRV75EPX16263;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135833;FRV75EPX16262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135832;FRV75EPX16261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135834;FRV75EPX16254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135837;FRV75EPX16253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135836;FRV75EPX16252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135839;FRV75EPX16251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135841;FRV75EPX16246;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135840;FRV75EPX16245;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135838;FRV75EPX16244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135844;FRV75EPX16243;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135843;FRV75EPX16242;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000135842;FRV75EPX16241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCARE74282A13;FRV75EPX16236;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCARE74282A12;FRV75EPX16235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCARE74282A11;FRV75EPX16234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCARE35288A12;FRV75EPX16233;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCARE62652A12;FRV75EPX16232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCARE62652A11;FRV75EPX16271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCARE17274A12;FRV75EPX16273;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCARE17274A11;FRV75EPX16307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCARE79048A12;FRV75EPX16274;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCARE79048A11;FRV75EPX16306;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCARE45028A12;FRV75EPX16305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCARE45028A11;FRV75EPX16304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCARE35288A11;FRV75EPX16303;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE175100;FRV75EPX16302;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE175099;FRV75EPX16301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME147592;FRV75EPX16296;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME147593;FRV75EPX16295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMECAMPINGMONTANA11;FRV75EPX16294;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEHOTELLESDOMES11;FRV75EPX16293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMECAPITOULHAMEAU11;FRV75EPX16292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMECAPITOULCHATEAU11;FRV75EPX16291;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000024556963;FRV75EPX16287;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251243;FRV75EPX16286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249233;FRV75EPX16285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249231;FRV75EPX16284;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249232;FRV75EPX16283;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249234;FRV75EPX16282;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249252;FRV75EPX16281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249253;FRV75EPX16276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249254;FRV75EPX16275;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249251;FRV75EPX16053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001318443;FRV75EPX15375;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001318441;FRV75EPX16051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001318442;FRV75EPX15194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001318444;FRV75EPX15192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251244;FRV75EPX15191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251241;FRV75EPX15186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251234;FRV75EPX15185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001318401;FRV75EPX15184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001318404;FRV75EPX15183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001318402;FRV75EPX15182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251204;FRV75EPX15181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251201;FRV75EPX15176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251203;FRV75EPX15175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251202;FRV75EPX15174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249221;FRV75EPX15173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249224;FRV75EPX15172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249222;FRV75EPX15171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249223;FRV75EPX15165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251223;FRV75EPX15164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251222;FRV75EPX15163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251224;FRV75EPX15162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251221;FRV75EPX15161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001238644;FRV75EPX15154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001238643;FRV75EPX15153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001238641;FRV75EPX15193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001238642;FRV75EPX15195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001238651;FRV75EPX15151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001238652;FRV75EPX15196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001238653;FRV75EPX15226;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001238654;FRV75EPX15225;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001318403;FRV75EPX15224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251231;FRV75EPX15223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001458991;FRV75EPX15222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251232;FRV75EPX15221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001458993;FRV75EPX15217;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001458994;FRV75EPX15216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001458992;FRV75EPX15215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249241;FRV75EPX15214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249242;FRV75EPX15213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249244;FRV75EPX15212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251242;FRV75EPX15211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249272;FRV75EPX15207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249274;FRV75EPX15206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249271;FRV75EPX15205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249273;FRV75EPX15204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249261;FRV75EPX15203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249263;FRV75EPX15202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249264;FRV75EPX15201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249262;FRV75EPX15197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251214;FRV75EPX15152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251212;FRV75EPX15146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251213;FRV75EPX15232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001318413;FRV75EPX15104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001318412;FRV75EPX15102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001318411;FRV75EPX15101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001318414;FRV75EPX15094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251233;FRV75EPX15093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001249243;FRV75EPX15092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001251211;FRV75EPX15091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000016771760;FRV75EPX15084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE70P07017741A1;FRV75EPX15083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE70P07042840A1;FRV75EPX15082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE70P07031358A1;FRV75EPX15081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE70P07020647A1;FRV75EPX15074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE70P07055046A1;FRV75EPX15073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE70P07044745A1;FRV75EPX15072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE70P07012843A1;FRV75EPX15071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE70P07016542A1;FRV75EPX15065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE70P07026144A1;FRV75EPX15064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPMAPE000022798049;FRV75EPX15063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000022183057;FRV75EPX15062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000028595263;FRV75EPX15061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000013382647;FRV75EPX15055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000014250411;FRV75EPX17091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000034619187;FRV75EPX15103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000034619094;FRV75EPX15105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000034619401;FRV75EPX15145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEPOSTENANGIS3;FRV75EPX15106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEPOSTENANGIS2;FRV75EPX15144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEHOTELDEVILLENANGIS4;FRV75EPX15143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEHOTELDEVILLENANGIS3;FRV75EPX15142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEHOTELDEVILLENANGIS2;FRV75EPX15141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEHOTELDEVILLENANGIS1;FRV75EPX15137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEPOSTENANGIS4;FRV75EPX15136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEPOSTENANGIS1;FRV75EPX15135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001358791;FRV75EPX15134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001358792;FRV75EPX15133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001358782;FRV75EPX15132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001393741;FRV75EPX15131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001358783;FRV75EPX15126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001393702;FRV75EPX15125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001393701;FRV75EPX15124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001393711;FRV75EPX15123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001393712;FRV75EPX15122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001393722;FRV75EPX15121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001393721;FRV75EPX15114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001393731;FRV75EPX15113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001393732;FRV75EPX15112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001393742;FRV75EPX15111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001372761;FRV75EPX15231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001358781;FRV75EPX15233;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001358793;FRV75EPX16044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001170193;FRV75EPX15372;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001170191;FRV75EPX15365;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001170212;FRV75EPX15364;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001170211;FRV75EPX15363;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001170213;FRV75EPX15362;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001170201;FRV75EPX15361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001170202;FRV75EPX15356;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001170203;FRV75EPX15355;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001170181;FRV75EPX15354;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001170173;FRV75EPX15353;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001170183;FRV75EPX15352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001170182;FRV75EPX15351;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001170171;FRV75EPX15345;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001170172;FRV75EPX15344;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001390463;FRV75EPX15343;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001390462;FRV75EPX15342;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001390461;FRV75EPX15341;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001390473;FRV75EPX15334;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001390471;FRV75EPX15333;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001390472;FRV75EPX15332;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLODE;FRV75EPX15331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVMEUVG0D07005;FRV75EPX15326;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000036217326;FRV75EPX15371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS90E090012;FRV75EPX15373;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS222;FRV75EPX15324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS221;FRV75EPX15374;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS212;FRV75EPX16043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS211;FRV75EPX16042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS172;FRV75EPX16041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS202;FRV75EPX16036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPCAEN061;FRV75EPX16035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS201;FRV75EPX16034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS171;FRV75EPX16033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS16CP1;FRV75EPX16032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS162;FRV75EPX16031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS152;FRV75EPX16026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS151;FRV75EPX16025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS14CP1;FRV75EPX16024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS13ABBCP1;FRV75EPX16023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS082;FRV75EPX16022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPCAEN072;FRV75EPX16021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPCAEN071;FRV75EPX16016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPCAEN062;FRV75EPX16015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS081;FRV75EPX16014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPCAEN052;FRV75EPX16013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPCAEN031;FRV75EPX16012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS19B1;FRV75EPX16011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPCAEN051;FRV75EPX15325;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPCAEN01LEGCP2;FRV75EPX15323;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPCAEN021;FRV75EPX15234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPCAEN022;FRV75EPX15275;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPCAEN01LEGCP1;FRV75EPX15273;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS19A1;FRV75EPX15272;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPCAEN032;FRV75EPX15271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPCAEN041;FRV75EPX15266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPCAEN042;FRV75EPX15265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR026E169008;FRV75EPX15264;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB28009A11;FRV75EPX15263;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79270P0005A12;FRV75EPX15262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79270P0005A11;FRV75EPX15261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB25010A12;FRV75EPX15254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB25010A11;FRV75EPX15253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB18008A11;FRV75EPX15252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB41018A12;FRV75EPX15251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB41018A11;FRV75EPX15246;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB28009A12;FRV75EPX15245;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB13017A11;FRV75EPX15244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB13017B11;FRV75EPX15243;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB53156A12;FRV75EPX15242;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0207A11;FRV75EPX15241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0207A12;FRV75EPX15236;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0079A11;FRV75EPX15235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0079A12;FRV75EPX15274;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0229A11;FRV75EPX15276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0229B11;FRV75EPX15322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0229B12;FRV75EPX15281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0265A11;FRV75EPX15321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0265B11;FRV75EPX15316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB73067A11;FRV75EPX15315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB73067A12;FRV75EPX15314;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB73023A11;FRV75EPX15313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB73023A12;FRV75EPX15312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB53156A11;FRV75EPX15311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB53083A11;FRV75EPX15304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB57009A12;FRV75EPX15303;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB53083A12;FRV75EPX15302;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79202P0043A11;FRV75EPX15301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79202P0043A12;FRV75EPX15295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79202P0095A11;FRV75EPX15294;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79202P0095A12;FRV75EPX15293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB22002A11;FRV75EPX15292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB22002A12;FRV75EPX15291;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB22026A11;FRV75EPX15286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB22026A12;FRV75EPX15285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB24056A11;FRV75EPX15284;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB24056A12;FRV75EPX15283;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB54092A11;FRV75EPX15282;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB54092A12;FRV75EPX17085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB57009A11;FRHPCENF0620010011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0229A12;FRV75EPX17092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB02002A12;FRV75EPX19171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB33001A11;FRV75EPX19163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB40085A12;FRV75EPX19162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB13031A12;FRV75EPX19161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB31019A11;FRV75EPX19156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB31019A12;FRV75EPX19155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB06050A11;FRV75EPX19154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB06050A12;FRV75EPX19153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB31001A11;FRV75EPX19152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB31001A12;FRV75EPX19151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB55070A11;FRV75EPX19145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB55070A12;FRV75EPX19144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB62089A11;FRV75EPX19143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB62089A12;FRV75EPX19142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB40085A11;FRV75EPX19141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB16007A11;FRV75EPX19136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB34119A12;FRV75EPX19135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB16007A12;FRV75EPX19134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB16169A11;FRV75EPX19133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB16169A12;FRV75EPX19132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB29037A11;FRV75EPX19131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB29037A12;FRV75EPX19127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79174P141A11;FRV75EPX19164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79174P141A12;FRV75EPX19172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79174P0013A11;FRV75EPX19125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79174P0013A12;FRV75EPX19173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79174P0017A11;FRV75EPX20035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79174P0017A12;FRV75EPX20034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79174P0032A11;FRV75EPX20033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79174P0032A12;FRV75EPX20032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79174P0029A11;FRV75EPX20031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB13031A11;FRV75EPX20027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB34119A11;FRV75EPX20026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79270P0024A12;FRV75EPX20025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB84138A12;FRV75EPX20024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB33001A12;FRV75EPX20023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB31300A11;FRV75EPX20022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB31300A12;FRV75EPX20021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB50103A11;FRV75EPX20016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB50103A12;FRV75EPX20015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79083P0020A11;FRV75EPX20014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79083P0020A12;FRV75EPX20013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79083P0021A11;FRV75EPX20012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79083P0021A12;FRV75EPX20011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB12228A11;FRV75EPX19176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB12228A12;FRV75EPX19175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB12228B11;FRV75EPX19174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB12228B12;FRV75EPX19126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB84138A11;FRV75EPX19124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB40018A11;FRV75EPX20041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79048P0004A12;FRV75EPX19082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB40018A12;FRV75EPX19077;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79101P0012A11;FRV75EPX19076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79101P0012A12;FRV75EPX19075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB07005A11;FRV75EPX19074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB07005A12;FRV75EPX19073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB47069A11;FRV75EPX19072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB47069A12;FRV75EPX19071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB12008A11;FRV75EPX19066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB12008A12;FRV75EPX19065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB12002A11;FRV75EPX19064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB12002A12;FRV75EPX19063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79048P0012A11;FRV75EPX19062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79048P0012A12;FRV75EPX19061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79048P0004A11;FRV75EPX19057;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79174P0029A12;FRV75EPX19056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79174P0017B11;FRV75EPX19055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79174P0017B12;FRV75EPX19054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB45042A12;FRV75EPX19053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB12073A11;FRV75EPX19052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79049P008A12;FRV75EPX19051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79049P008A11;FRV75EPX19045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79049P0021A12;FRV75EPX19081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79049P0021A11;FRV75EPX19083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB09287A12;FRV75EPX19123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB09287A11;FRV75EPX19084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB12124A12;FRV75EPX19122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB12124A11;FRV75EPX19121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB08004A12;FRV75EPX19116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB08004A11;FRV75EPX19115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB37093A11;FRV75EPX19114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB45122A12;FRV75EPX19113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB45122A11;FRV75EPX19112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB45042A11;FRV75EPX19111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79174P0017C11;FRV75EPX19105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB52160A12;FRV75EPX19104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB52160A11;FRV75EPX19103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB64023A12;FRV75EPX19102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB64023A11;FRV75EPX19101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB10078A12;FRV75EPX19096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB10078A11;FRV75EPX19095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB01060A12;FRV75EPX19094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB01060A11;FRV75EPX19093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79005P0008A12;FRV75EPX19092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79005P0008A11;FRV75EPX19091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79005P0027A12;FRV75EPX19086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79005P0027A11;FRV75EPX19085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB42054A12;FRV75EPX20036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB42054A11;FRV75EPX20042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB12073A12;FRV75EPX17093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79049P0020A11;FRV75EPX20171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79049P0020A12;FRV75EPX20164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB12016A11;FRV75EPX20163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79174P0017C12;FRV75EPX20162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB58084A11;FRV75EPX20161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB58084A12;FRV75EPX20156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB35114A11;FRV75EPX20155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB35114A12;FRV75EPX20154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB07067A11;FRV75EPX20153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB07067A12;FRV75EPX20152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB49067B11;FRV75EPX20151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB49067B21;FRV75EPX20145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB49067C11;FRV75EPX20144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB49067C21;FRV75EPX20143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB38069A11;FRV75EPX20142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB38069A12;FRV75EPX20141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0185A11;FRV75EPX20136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0185A12;FRV75EPX20135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0045A11;FRV75EPX20134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0045A12;FRV75EPX20133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0031A11;FRV75EPX20132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79191P0031A12;FRV75EPX20131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB49018A11;FRV75EPX20165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB49018A12;FRV75EPX20172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB02002A11;FRV75EPX20125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB13082A12;FRV75EPX20173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB13082A11;FRV75EPX15053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB20087A12;FRV75EPX20216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB20087A11;FRV75EPX20215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB12201A12;FRV75EPX20214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79270P0024A11;FRV75EPX20204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB37093A12;FRV75EPX20203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB33137A11;FRV75EPX20202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB63086A12;FRV75EPX20201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEA79329P0015A11;FRV75EPX20196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEA79329P0015A12;FRV75EPX20195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB18117A11;FRV75EPX20194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB18117A12;FRV75EPX20193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB18024A11;FRV75EPX20192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB18024A12;FRV75EPX20191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB18212A11;FRV75EPX20185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB33137A12;FRV75EPX20184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB63086A11;FRV75EPX20183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB17024A11;FRV75EPX20182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79329P0036A11;FRV75EPX20181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB17024A12;FRV75EPX20175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB34023A11;FRV75EPX20174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB34023A12;FRV75EPX20126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB83036A11;FRV75EPX20124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB83036A12;FRV75EPX20043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB60044A11;FRV75EPX20082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB60044A12;FRV75EPX20076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB01041A11;FRV75EPX20075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB01041A12;FRV75EPX20074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79329P0036A12;FRV75EPX20073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB18212A12;FRV75EPX20072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79329P0055A12;FRV75EPX20071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79307P0010A12;FRV75EPX20066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79329P0055A11;FRV75EPX20065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB16001A12;FRV75EPX20064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB47092A11;FRV75EPX20063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB47092A12;FRV75EPX20062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB58042A11;FRV75EPX20061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB58042A12;FRV75EPX20056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB26031A11;FRV75EPX20055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB26031A12;FRV75EPX20054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79307P0010A11;FRV75EPX20053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB16001A11;FRV75EPX20052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB28028A11;FRV75EPX20051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB32103A11;FRV75EPX20046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB32103A12;FRV75EPX20045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79329P0063A11;FRV75EPX20044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79329P0063A12;FRV75EPX20081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79329P0063B11;FRV75EPX20083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79329P0063B12;FRV75EPX20123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79329P0077A11;FRV75EPX20084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB79329P0077A12;FRV75EPX20122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSEOEAB28028A12;FRV75EPX20121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEHOTELNIDCIGOGNES11;FRV75EPX20116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEHOTELAMERIQUEPALAVAS111;FRV75EPX20115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECAMPINGCLERIGOERVELINA1;FRV75EPX20114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECAMPINGCLERIGOERVELINB1;FRV75EPX20113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC50785;FRV75EPX20112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR000028067822;FRV75EPX20111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVMENVG0B46012;FRV75EPX20105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVMENVG0B46002;FRV75EPX20104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEVILLAPOGGIOLI11;FRV75EPX20103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE170549;FRV75EPX20102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALIBE2995109;FRV75EPX20101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALIBE2995110;FRV75EPX20096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAEDEPLACERLESMONTAGNES11;FRV75EPX20095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAECALICEGEVAUDAN11;FRV75EPX20094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAEGOLFESTTROPEZ32;FRV75EPX20093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAECALICEGEVAUDAN13;FRV75EPX20092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAECAMPINGDENOGAREDE11;FRV75EPX20091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAECAMPINGDENOGAREDE12;FRV75EPX20086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAECAMPINGDENOGAREDE13;FRV75EPX20085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAECALICEGEVAUDAN12;FRV75EPX19044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAEFIBTECH11;FRV75EPX19043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAEGOLFESTTROPEZ11;FRV75EPX19042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAEGOLFESTTROPEZ12;FRV75EPX17232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAEGOLFESTTROPEZ13;FRV75EPX17225;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAEGOLFESTTROPEZ21;FRV75EPX17224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAEGOLFESTTROPEZ22;FRV75EPX17223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAEGOLFESTTROPEZ31;FRV75EPX17222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAEAUBIPOSE11;FRV75EPX17221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAEGOLFESTTROPEZ23;FRV75EPX17216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAELESSEIGNEURS22;FRV75EPX17215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAELESSEIGNEURS12;FRV75EPX17214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAELESSEIGNEURS23;FRV75EPX17213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAEGOLFESTTROPEZ33;FRV75EPX17212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAEHOTELDUPONT11;FRV75EPX17211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAELUGUET11;FRV75EPX17206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAELESSEIGNEURS11;FRV75EPX17205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAESEDTOURISME11;FRV75EPX17204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAELESSEIGNEURS21;FRV75EPX17203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAELUGUET12;FRV75EPX17202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAELUGUET13;FRV75EPX17201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAEPEYRAT11;FRV75EPX17197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAERELAISCORBIERE11;FRV75EPX17196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAERELAISCORBIERE21;FRV75EPX17195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALIBE2992087;FRV75EPX17194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALIBE2991966;FRV75EPX17231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE175271;FRV75EPX17233;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE175270;FRV75EPX17192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECASAB1;FRV75EPX17234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECASA1;FRV75EPX18026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN1941;FRV75EPX18025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN181;FRV75EPX18024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN161;FRV75EPX18023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN151;FRV75EPX18022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN141;FRV75EPX18021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN111;FRV75EPX18017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN101;FRV75EPX18016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN91;FRV75EPX18015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN81;FRV75EPX18014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN71;FRV75EPX18013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN51;FRV75EPX18012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN31;FRV75EPX18011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN21;FRV75EPX17256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN171;FRV75EPX17255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE174559;FRV75EPX17254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE153280;FRV75EPX17253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE153279;FRV75EPX17252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE174558;FRV75EPX17251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAETALMONTACCUEIL13;FRV75EPX17236;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAETALMONTACCUEIL12;FRV75EPX17235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRMAETALMONTACCUEIL11;FRV75EPX17193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850511;FRV75EPX17191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849201;FRV75EPX19041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850503;FRV75EPX17143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850502;FRV75EPX17141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850501;FRV75EPX17134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849391;FRV75EPX17133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849401;FRV75EPX17132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850513;FRV75EPX17131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850512;FRV75EPX17124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849421;FRV75EPX17123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849411;FRV75EPX17122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850523;FRV75EPX17121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850521;FRV75EPX17116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849431;FRV75EPX17115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849441;FRV75EPX17114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850493;FRV75EPX17113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850492;FRV75EPX17112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850491;FRV75EPX17111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850522;FRV75EPX17105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850243;FRV75EPX17104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849672;FRV75EPX17103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850123;FRV75EPX17102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850213;FRV75EPX17101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849291;FRV75EPX17094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849301;FRV75EPX17142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850191;FRV75EPX17144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850192;FRV75EPX17185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850193;FRV75EPX17145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849131;FRV75EPX17184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849141;FRV75EPX17183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850081;FRV75EPX17182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850082;FRV75EPX17181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850083;FRV75EPX17174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849161;FRV75EPX17173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850121;FRV75EPX17172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850122;FRV75EPX17171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850451;FRV75EPX17167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850211;FRV75EPX17166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850452;FRV75EPX17165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850453;FRV75EPX17164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849381;FRV75EPX17163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849371;FRV75EPX17162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850231;FRV75EPX17161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850232;FRV75EPX17155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850233;FRV75EPX17154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849261;FRV75EPX17153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849251;FRV75EPX17152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850171;FRV75EPX17151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850172;FRV75EPX17146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850173;FRV75EPX18031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849641;FRV75EPX18032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849642;FRV75EPX18033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850212;FRV75EPX18157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849341;FRV75EPX18155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849671;FRV75EPX18154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850153;FRV75EPX18153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849231;FRV75EPX18152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849241;FRV75EPX18151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850161;FRV75EPX18145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850162;FRV75EPX18144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850163;FRV75EPX18143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849181;FRV75EPX18142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849171;FRV75EPX18141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850131;FRV75EPX18136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850132;FRV75EPX18135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850133;FRV75EPX18134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849211;FRV75EPX18133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849221;FRV75EPX18132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850151;FRV75EPX18131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850152;FRV75EPX18125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849311;FRV75EPX18124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849331;FRV75EPX18123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849321;FRV75EPX18122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850201;FRV75EPX18121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850202;FRV75EPX18156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850203;FRV75EPX18161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849351;FRV75EPX18034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849361;FRV75EPX18162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850221;FRV75EPX19036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850222;FRV75EPX19035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850223;FRV75EPX19034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849271;FRV75EPX19033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849281;FRV75EPX19032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850181;FRV75EPX19031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850182;FRV75EPX19027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850183;FRV75EPX19026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850261;FRV75EPX19025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850262;FRV75EPX19024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850263;FRV75EPX19023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850282;FRV75EPX19022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850483;FRV75EPX19021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850441;FRV75EPX19014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850442;FRV75EPX19013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850443;FRV75EPX19012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850341;FRV75EPX19011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850342;FRV75EPX18166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850343;FRV75EPX18165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850361;FRV75EPX18164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850362;FRV75EPX18163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850363;FRV75EPX18116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850411;FRV75EPX18115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850412;FRV75EPX18114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850413;FRV75EPX18113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850281;FRV75EPX18072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850283;FRV75EPX18071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850391;FRV75EPX18067;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849631;FRV75EPX18066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849632;FRV75EPX18065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850241;FRV75EPX18064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850242;FRV75EPX18063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850141;FRV75EPX18062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850421;FRV75EPX18061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850422;FRV75EPX18056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850423;FRV75EPX18055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850381;FRV75EPX18054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850382;FRV75EPX18053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850383;FRV75EPX18052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850461;FRV75EPX18051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850462;FRV75EPX18044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850463;FRV75EPX18043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850482;FRV75EPX18042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850481;FRV75EPX18041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849662;FRV75EPX18036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849661;FRV75EPX18035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850392;FRV75EPX18073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850393;FRV75EPX18074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850251;FRV75EPX18075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850252;FRV75EPX18094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850253;FRV75EPX18112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850401;FRV75EPX18111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850402;FRV75EPX18105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850403;FRV75EPX18104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850291;FRV75EPX18103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850292;FRV75EPX18102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850293;FRV75EPX18101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850431;FRV75EPX18096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850432;FRV75EPX18095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850433;FRV75EPX18093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850301;FRV75EPX18076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850302;FRV75EPX18092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850303;FRV75EPX18091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850271;FRV75EPX18086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850272;FRV75EPX18085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850273;FRV75EPX18084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850321;FRV75EPX18083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850322;FRV75EPX18082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850323;FRV75EPX18081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850311;FRV75EPX18077;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850312;FRV75EPX15054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850313;FRV75EPX16173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850331;FRV75EPX15052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850332;FRHPCENF0803430041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850333;FRHPCENF0803430101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849191;FRHPCENF0803430091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849151;FRHPCENF0803430081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850142;FRHPCENF0803430071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10001361242;FRHPCENF0803430061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850143;FRHPCENF0803430051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849852;FRHPCENF0803430031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849851;FRHPCENF0803420031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10001361253;FRHPCENF0803430021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10001361251;FRHPCENF0803430011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849692;FRHPCENF0803420081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849691;FRHPCENF0803420071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10001361243;FRHPCENF0803420061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10001361252;FRHPCENF0803420051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10001361241;FRHPCENF0803440011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849681;FRHPCENF0803440021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850373;FRHPCENF0803440031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850372;FRHPCENF0803440041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850371;FRHPCENF0803440051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850353;FRHPCENF0803440061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850352;FRHPCENF0803440071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000849682;FRHPCENF0803440081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR3R3E10000850351;FRHPCENF0803440091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR515600001;FRHPCENF0803440101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002080P1;FRHPCENF0803440111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002081P2;FRHPCENF0803440121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002081P1;FRHPCENF0803440131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002080P2;FRHPCENF0803440141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002097P2;FRHPCENF0803440151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002098P3;FRHPCENF0803440161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002098P2;FRHPCENF0803450011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002098P1;FRHPCENF0803420041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002097P3;FRHPCENF0803420021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002099P2;FRHPCENF0803450031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002099P1;FRHPCENF0803390011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002122P1;FRHPCENF0803390071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002100P1;FRHPCENF0803390061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002100P2;FRHPCENF0803390051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002101P1;FRHPCENF0803390041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002101P2;FRHPCENF0803390031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002101P3;FRHPCENF0803390021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002102P1;FRHPCENF0802990081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002102P2;FRHPCENF0803420011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002102P3;FRHPCENF0802990071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002096P2;FRHPCENF0802990061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002122P2;FRHPCENF0802990051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002122P3;FRHPCENF0802990041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002123P1;FRHPCENF0802990031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002097P1;FRHPCENF0802990021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002128P1;FRHPCENF0803390081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002096P1;FRHPCENF0803400011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002095P2;FRHPCENF0803400021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002118P2;FRHPCENF0803400031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002118P3;FRHPCENF0803400041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002047P1;FRHPCENF0803400051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002048P1;FRHPCENF0803400061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002049P1;FRHPCENF0803400071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002050P1;FRHPCENF0803400081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002051P1;FRHPCENF0803410011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002051P2;FRHPCENF0803410021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002051P3;FRHPCENF0803410031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002052P1;FRHPCENF0803410041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002052P2;FRHPCENF0803410051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002052P3;FRHPCENF0803410061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002111P1;FRHPCENF0803410071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002111P2;FRHPCENF0803410081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002112P1;FRHPCENF0803450021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002112P2;FRHPCENF0803450041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002123P3;FRHPCENF0802940011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002128P2;FRHPCENF0803560041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002078P1;FRHPCENF0803560101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002078P2;FRHPCENF0803560091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002079P1;FRHPCENF0803560081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002079P2;FRHPCENF0803560071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002095P1;FRHPCENF0803560061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002123P2;FRHPCENF0803560051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002127P1;FRHPCENF0803560031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002124P1;FRHPCENF0803540011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002085P1;FRHPCENF0803560021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002071P2;FRHPCENF0803560011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002071P3;FRHPCENF0803550061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002072P1;FRHPCENF0803550051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002072P2;FRHPCENF0803540041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002072P3;FRHPCENF0803540031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002073P1;FRHPCENF0803560111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002074P1;FRHPCENF0803560121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002075P1;FRHPCENF0803560131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002076P1;FRHPCENF0803560141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002084P1;FRHPCENF0803560151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002084P2;FRHPCENF0803560161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002085P2;FRHPCENF0803570011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002124P2;FRHPCENF0803570021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002086P1;FRHPCENF0803570031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002086P2;FRHPCENF0803570041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002087P1;FRHPCENF0803570051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002087P2;FRHPCENF0803570061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002088P1;FRHPCENF0803570071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002088P2;FRHPCENF0803570081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002089P1;FRHPCENF0803570091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002089P2;FRHPCENF0803570101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002027P1;FRHPCENF0803570111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002027P2;FRHPCENF0803540021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002053P1;FRHPCENF0803530041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002071P1;FRHPCENF0803460011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002061P1;FRHPCENF0803460091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002060P1;FRHPCENF0803460151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002059P1;FRHPCENF0803460141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002124P3;FRHPCENF0803460131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002125P1;FRHPCENF0803460121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002125P2;FRHPCENF0803460111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002125P3;FRHPCENF0803460101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002126P1;FRHPCENF0803460081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002126P2;FRHPCENF0803530031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002126P3;FRHPCENF0803460071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002117P3;FRHPCENF0803460061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002127P2;FRHPCENF0803460051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002127P3;FRHPCENF0803460041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002019P1;FRHPCENF0803460031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002019P2;FRHPCENF0803460021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002019P3;FRHPCENF0803460161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002026P1;FRHPCENF0803470011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002026P2;FRHPCENF0803480011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002038P1;FRHPCENF0803490011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002039P1;FRHPCENF0803490021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002039P2;FRHPCENF0803490031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002040P1;FRHPCENF0803490041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002040P2;FRHPCENF0803500011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002058P1;FRHPCENF0803500021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002058P2;FRHPCENF0803500031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002058P3;FRHPCENF0803500041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002118P1;FRHPCENF0803520011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002036P2;FRHPCENF0803520021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002117P2;FRHPCENF0803520031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002121P3;FRHPCENF0803520041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002077P1;FRHPCENF0803530011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002077P2;FRHPCENF0803530021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002090P1;FRHPCENF0802990011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002090P2;FRHPCENF0802880061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002119P1;FRHPCENF0803570131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002119P2;FRHPCENF0800720011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002120P1;FRHPCENF0801170021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002120P2;FRHPCENF0801170013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002120P3;FRHPCENF0801170011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002121P1;FRHPCENF0800720041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002121P2;FRHPCENF0800720031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002004P1;FRHPCENF0800720021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002006P2;FRHPCENF0800710081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002004P2;FRHPCENF0800700081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002004P3;FRHPCENF0800710071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002005P1;FRHPCENF0800710061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002005P2;FRHPCENF0800710051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002005P3;FRHPCENF0800710041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002010P1;FRHPCENF0800710031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002011P1;FRHPCENF0800710021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002020P1;FRHPCENF0801170022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002020P2;FRHPCENF0801230011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002021P1;FRHPCENF0801230013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002021P2;FRHPCENF0801380011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002094P3;FRHPCENF0801380021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002094P2;FRHPCENF0801380031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002094P1;FRHPCENF0801380041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002093P3;FRHPCENF0801380051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002045P1;FRHPCENF0801380081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002045P2;FRHPCENF08015500111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002045P3;FRHPCENF08015500211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002018P1;FRHPCENF0801550031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002018P2;FRHPCENF0801550041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002023P1;FRHPCENF0801620011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002023P2;FRHPCENF0801620021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002046P1;FRHPCENF0801720011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002046P2;FRHPCENF0801720021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002046P3;FRHPCENF0800710011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002025P1;FRHPCENF0800700071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002025P2;FRHPCENF0801720041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002041P1;FRHPCENF0800560081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002042P1;FRHPCENF0800630061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002043P1;FRHPCENF0800630051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002044P1;FRHPCENF0800630041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002091P1;FRHPCENF0800630031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002091P2;FRHPCENF0800630021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002092P1;FRHPCENF0800630011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002092P2;FRHPCENF0800560071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002093P1;FRHPCENF0800700061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002093P2;FRHPCENF0800560061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002006P1;FRHPCENF0800560051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002006P3;FRHPCENF0800560041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002117P1;FRHPCENF0800560031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002109P2;FRHPCENF0800560021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002106P2;FRHPCENF0800560011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002106P3;FRHPCENF0800630071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002034P1;FRHPCENF0800630081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002034P2;FRHPCENF0800630091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002035P1;FRHPCENF0800630101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002035P2;FRHPCENF0800630111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002107P1;FRHPCENF0800630121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002107P2;FRHPCENF0800630131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002108P1;FRHPCENF0800630141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002108P2;FRHPCENF0800630151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002109P1;FRHPCENF0800630161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002109P3;FRHPCENF08006400111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002007P1;FRHPCENF08006400211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002110P1;FRHPCENF0800700011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002110P2;FRHPCENF0800700021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002110P3;FRHPCENF0800700031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002036P1;FRHPCENF0800700041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002054P1;FRHPCENF0800700051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002037P1;FRHPCENF0801720031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002037P2;FRHPCENF0801720051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002115P1;FRHPCENF0802880051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002115P2;FRHPCENF0802590021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002116P1;FRHPCENF0802610041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002116P2;FRHPCENF0802610031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002106P1;FRHPCENF0802610021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002105P3;FRHPCENF0802610011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002105P2;FRHPCENF0802590041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002105P1;FRHPCENF0802590031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002007P2;FRHPCENF0802590011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002007P3;FRHPCENF0801980031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002012P1;FRHPCENF0802320021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002013P1;FRHPCENF0802320011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002014P1;FRHPCENF0802000041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002015P1;FRHPCENF0802000031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002008P1;FRHPCENF0802000021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002008P2;FRHPCENF0802000011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002008P3;FRV75EPX15051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002016P1;FRHPCENF0802610061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002017P1;FRHPCENF0802610071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002022P1;FRHPCENF0802610081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002022P2;FRHPCENF08026611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002024P1;FRHPCENF08026621;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002024P2;FRHPCENF08026631;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002033P1;FRHPCENF08026641;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002033P2;FRHPCENF08026651;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002082P1;FRHPCENF08026661;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002082P2;FRHPCENF08026671;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002103P1;FRHPCENF08026681;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002103P2;FRHPCENF08026691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002104P1;FRHPCENF0802880011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002104P2;FRHPCENF0802880021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002053P2;FRHPCENF0802880031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002038P2;FRHPCENF0802880041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002054P2;FRHPCENF0801980041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800014P1;FRHPCENF0801970081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800021P2;FRHPCENF0801720061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800021P1;FRHPCENF0801750131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800020P3;FRHPCENF0801830011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800020P2;FRHPCENF0801790011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800020P1;FRHPCENF0801780011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800503P2;FRHPCENF0801750161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800503P1;FRHPCENF0801750151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800014P2;FRHPCENF0801750141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800012P2;FRHPCENF0801750021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800043P2;FRHPCENF0801970071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800012P1;FRHPCENF0801750011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800011P3;FRHPCENF0801730041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800011P2;FRHPCENF0801730031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800011P1;FRHPCENF0801730011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800010P3;FRHPCENF0801720081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800010P2;FRHPCENF0801720071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800010P1;FRHPCENF0801830021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800044P2;FRHPCENF08018811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800021P3;FRHPCENF08018831;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800022P1;FRHPCENF0801910011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800022P2;FRHPCENF0801910031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800023P1;FRHPCENF0801930021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002055P1;FRHPCENF0801930031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800034P2;FRHPCENF0801930041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800034P1;FRHPCENF0801930051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800033P2;FRHPCENF0801930061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800033P1;FRHPCENF0801930071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800032P2;FRHPCENF0801970011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800032P1;FRHPCENF0801970021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800031P3;FRHPCENF0801970031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800031P2;FRHPCENF0801970041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800031P1;FRHPCENF0801970051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800030P3;FRHPCENF0801970061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800030P2;FRHPCENF0803570121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800030P1;FRHPCENF0803570141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800500P2;FRV75E9015061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800024P2;FRV75E9008042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800024P1;FRV75E9010012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800023P2;FRV75E9010011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800044P1;FRV75E9009013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800500P1;FRV75E9009012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800043P1;FRV75E9009011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002065P2;FRV75E9008043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800002P1;FRV75E9008041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800001P2;FRV75E9007062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800001P1;FRV75E9008033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002069P1;FRV75E9008032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002068P1;FRV75E9008031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002067P1;FRV75E9008023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002066P1;FRV75E9008022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002065P3;FRV75E9008021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002065P1;FRV75E9010013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800003P1;FRV75E9010021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002064P3;FRV75E9010022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002064P1;FRV75E9010023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002057P2;FRV75E9011011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002057P1;FRV75E9011012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002056P2;FRV75E9011013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002056P1;FRV75E9011021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800042P2;FRV75E9011022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002055P2;FRV75E9011023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800002P2;FRV75E9011031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002064P2;FRV75E9011032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800003P2;FRV75E9011033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800051P2;FRV75E9011041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800041P3;FRV75E9011042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800004P1;FRV75E9011043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800041P1;FRV75E9012011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800040P3;FRV75E9007063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800042P1;FRV75E9007061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800040P1;FRV75E9012013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800504P2;FRV75E9006013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800504P1;FRV75E9006033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800040P2;FRV75E9006032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800051P1;FRV75E9006031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800004P2;FRV75E9006023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800050P1;FRV75E9006022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800005P3;FRV75E9006021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800005P2;FRV75E9006012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800005P1;FRV75E9007053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800050P2;FRV75E9006011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800004P3;FRV75E9005033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRISEEINOUIDALLOUIS1;FRV75E9005032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800103P1;FRV75E9005031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800507P2;FRV75E9005023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800507P1;FRV75E9005022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800104P2;FRV75E9006041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800104P1;FRV75E9006042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800103P2;FRV75E9006043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800063P2;FRV75E9007011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800063P1;FRV75E9007012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800047P2;FRV75E9007013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800047P1;FRV75E9007021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800045P2;FRV75E9007022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800045P1;FRV75E9007023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002115;FRV75E9007031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002119;FRV75E9007032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002010;FRV75E9007033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002006;FRV75E9007041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002017;FRV75E9007042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002103;FRV75E9007043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002107;FRV75E9007051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002071;FRV75E9007052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002112;FRV75E9012012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002095;FRV75E9012021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002099;FRV75E9005013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002124;FRV75E9014013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002126;FRV75E9014033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002019;FRV75E9014032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002045;FRV75E9014031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002094;FRV75E9014023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO002064;FRV75E9014022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRALLEGO800004;FRV75E9014021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAU1E0032021;FRV75E9014012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS68E93317;FRV75E9013053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREMIEBORNELECLERCMILLAU;FRV75E9014011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEVITISAT11;FRV75E9013073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZKAE24DC88249;FRV75E9013072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZKAE22AC88250;FRV75E9013071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAREEMARGEZSIEPARKING3;FRV75E9013063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAREEMARGEZKOSATELIER1;FRV75E9013062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAREEMARGEZSIEPARKING4;FRV75E9014041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAREEMARGEZKOSENTREE1;FRV75E9014042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEMIGNOT11;FRV75E9014043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEGERARDROBERT11;FRV75E9015011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMESCIDUSOLEIL11;FRV75E9015012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEAUSTERLITZ11;FRV75E9015013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC128990;FRV75E9015021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC128991;FRV75E9015022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRISEEINOUIDCREQUI1;FRV75E9015023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC122021;FRV75E9015031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRQWTE86027A15;FRV75E9015032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRQWTE86027A11;FRV75E9015033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRQWTE86027A12;FRV75E9015041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRQWTE86027A13;FRV75E9015042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRQWTE86027A14;FRV75E9015043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRQWTE86027B11;FRV75E9015051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRQWTE86027B14;FRV75E9015052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRQWTE86027B15;FRV75E9013061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRQWTE86027B12;FRV75E9013052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRQWTE86027B13;FRV75E9012022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMERENAISSANCE11;FRV75E9012051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC60014;FRV75E9012071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC60015;FRV75E9012063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMP68021001;FRV75E9012062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRA68E0242120003;FRV75E9012061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRA68E0242120001;FRV75E9012053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRA68E0242120002;FRV75E9012052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAU1E0034011;FRV75E9012043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRM1ERCCCAN01DCPKGCLIENT;FRV75E9013051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRM1ERCCNICE01DCPKGCLIENT;FRV75E9012042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRRM1ERCCCAN03DCPKGCLIENTSAV;FRV75E9012041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC143108;FRV75E9012033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC143107;FRV75E9012032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEAQJY3;FRV75E9012031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHERYFQ3;FRV75E9012023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHENLLK1;FRV75E9012072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHENLLK2;FRV75E9012073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEAQJY2;FRV75E9012081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFHNC1;FRV75E9012082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFHNC2;FRV75E9012083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHERYFQ2;FRV75E9013011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHENLLK3;FRV75E9013012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEAQJY1;FRV75E9013013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFHNC3;FRV75E9013021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHERYFQ1;FRV75E9013022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFDEZ2;FRV75E9013023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEJMHF2;FRV75E9013031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEDBDC2;FRV75E9013032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEDARC2;FRV75E9013033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEPEUP2;FRV75E9013041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEWPEM1;FRV75E9013042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEDBDC1;FRV75E9013043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEDARC1;FRV75E9005021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEXQMB1;FRV75E9005012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEGDGF1;FRHPCENF0803570151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEXTHZ1;FRHPCENF0803630131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEDHTU1;FRHPCENF0803640101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFMCB1;FRHPCENF0803640092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEQYQK1;FRHPCENF0803640091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEEKRE1;FRHPCENF0803640082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFDEZ1;FRHPCENF0803640081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEPEUP1;FRHPCENF0803630141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEJMHF1;FRHPCENF0803630031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEDXTW1;FRHPCENF0803620051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEUBDG2;FRHPCENF0803630021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEUBDG1;FRHPCENF0803630011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEAGFM1;FRHPCENF0803620072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHECQLL1;FRHPCENF0803620071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEAGFM2;FRHPCENF0803620062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEGUFV2;FRHPCENF0803620061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEWNEY2;FRHPCENF0803640102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEWNEY1;FRHPCENF0803710011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEGUFV1;FRHPCENF0803710021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHERTJX2;FRHPCENF0803710031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHESXKN1;FRHPCENF0803710041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFMCB2;FRHPCENF0803710051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEDXTW2;FRHPCENF0803710061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEHNVQ3;FRHPCENF0803710071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEGDGF2;FRHPCENF0803710081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEHNVQ2;FRHPCENF0803710091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEHNVQ1;FRHPCENF0803710101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEEKRE2;FRHPCENF0803710111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHECZFS2;FRHPCENF0803710121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEWGTV2;FRHPCENF0803720011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFSCE2;FRHPCENF0803730011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEQYQK2;FRHPCENF0803730021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEYWEB2;FRHPCENF0803730031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEHHNF1;FRHPCENF0803620052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEYWEB1;FRHPCENF0803620042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEWGTV1;FRHPCENF0803730051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEVFPF1;FRHPCENF0803580071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHERTJX1;FRHPCENF0803610011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFYEE1;FRHPCENF0803590041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHECRJC1;FRHPCENF0803590031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEVFPF2;FRHPCENF0803590021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEHHNF2;FRHPCENF0803590011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEJBYY2;FRHPCENF0803580081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHECRJC2;FRHPCENF0803580061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFSCE1;FRHPCENF0803620041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEJBYY1;FRHPCENF0803580051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFYEE2;FRHPCENF0803580041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEQGUB2;FRHPCENF0803580031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEDHTU2;FRHPCENF0803580021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEXQMB2;FRHPCENF0803580011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEWPEM2;FRHPCENF0803570161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEXTHZ2;FRHPCENF0803610012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHECZFS1;FRHPCENF0803610021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEQGUB1;FRHPCENF0803610022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEACFU1;FRHPCENF0803610031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEHRZT1;FRHPCENF0803610041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEHRZT2;FRHPCENF0803610042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEBQXZ2;FRHPCENF0803610051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEAYRX2;FRHPCENF0803610052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEBEPN1;FRHPCENF0803610061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEAYRX1;FRHPCENF0803610062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEMHFT1;FRHPCENF0803610071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEBEPN2;FRHPCENF0803610072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEABQE1;FRHPCENF0803610081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEMHFT2;FRHPCENF0803620011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEBQXZ3;FRHPCENF0803620021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEBQXZ1;FRHPCENF0803620031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHESXKN2;FRHPCENF0803620032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFKJY1;FRHPCENF0803730041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFYZN3;FRHPCENF0803730061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFKJY3;FRV75E9005011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEVFSM2;FRTCBE008404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEVDZW1;FRV75E9001021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEVDZW2;FRV75E9001013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEVDJA2;FRV75E9001012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEVFSM1;FRV75E9001011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEVDJA1;FRTCBE008454;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEVRTG3;FRTCBE008453;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEVRTG1;FRTCBE008403;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEVRTG2;FRTCBE005377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEABQE2;FRTCBE008390;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEBVZG3;FRTCBE008389;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEZCHN1;FRTCBE007580;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFZFZ1;FRTCBE007579;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEPRJS1;FRTCBE005380;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEPRJS2;FRTCBE005379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEPRJS3;FRV75E9001022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEQQWX2;FRV75E9001023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEQXNX1;FRV75E9002011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEQXNX2;FRV75E9002012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEQQWX1;FRV75E9002013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEQCMK3;FRV75E9002021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEQCMK1;FRV75E9002022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEQCMK2;FRV75E9002023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFZFZ3;FRV75E9002031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEWFTQ3;FRV75E9002032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFTUE3;FRV75E9002033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFTUE1;FRV75E9003011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFYZN1;FRV75E9003012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEBVZG2;FRV75E9003013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFZFZ2;FRV75E9004021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFYZN2;FRV75E9004022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEWFTQ2;FRV75E9004023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFTUE2;FRTCBE005378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEWFTQ1;FRTCBE004396;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEBVZG1;FRHPCENF0803730071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEBSAQ1;FRHPCENF0803740071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFKJY2;FRHPCENF0885760031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEHFCH1;FRHPCENF0885760021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHERJME1;FRHPCENF0885760011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEADJG1;FRHPCENF0803740101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHERARZ1;FRHPCENF0803740091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEMSMZ1;FRHPCENF0803740081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEHDXT1;FRHPCENF0803740061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFGAK1;FRTCBE004395;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEDRTJ1;FRHPCENF0803740051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEQWBK1;FRHPCENF0803740041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEQWBK2;FRHPCENF0803740031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEPMXB1;FRHPCENF0803740021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEJSAZ1;FRHPCENF0803740011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEDTMY1;FRHPCENF0803730081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEMSMZ2;FRHPCENF0885760041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEACSS2;FRHPCENF0885760051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEDTMY2;FRHPCENF0885760061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHERPYN1;FRHPCENF0885760071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEGNFT2;FRHPCENF0885760081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEGNFT1;FRHPCENF0885760091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHELDWA1;FRHPCENF0885760101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEUEHB1;FRHPCENF0885760111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHELDWA2;FRHPCENF0885760121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEACFU2;FRHPCENF0885760131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEUEHB2;FRHPCENF0885760141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEJSAZ2;FRHPCENF0885760151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHERPYN2;FRHPCENF0885760161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEPMXB2;FRHPCENF0885760171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEVVUE1;FRHPCENF0885760181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHERJME2;FRHPCENF0885760191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEACSS1;FRHPCENF0885760201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEPZXP1;FRHPCENF0800480081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEYKLY1;FRHPCENF0800480071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEZCHN2;FRHPCENF0800480061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEBSAQ2;FRHPCENF0589690061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEPZXP2;FRHPCENF0589680081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEYKLY2;FRHPCENF0589690011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEHFCH2;FRHPCENF0589690021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEVVUE3;FRHPCENF0589690031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEVVUE2;FRHPCENF0589690041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHECQLL2;FRHPCENF0589690051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHENZYS2;FRHPCENF0589690071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHESEYT2;FRHPCENF0590100051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHESEYT1;FRHPCENF0589690081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHENZYS1;FRHPCENF0590100011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHENZYS3;FRHPCENF0590100013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHESEYT3;FRHPCENF0590100021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEDRTJ2;FRHPCENF0590100023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEFGAK2;FRHPCENF0590100031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEHDXT2;FRHPCENF0589680071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHEADJG2;FRHPCENF0589680061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECHERARZ2;FRHPCENF0589680051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC67139;FRHPCENF0589680041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC67140;FRHPCENF0589680031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMELAMONTAGNEPO1;FRHPCENF0589680021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC59965;FRHPCENF0589680011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC59964;FRHPCENF0589670101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC59954;FRHPCENF0589670081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZTLE22AC59953;FRHPCENF0589670071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E94031;FRHPCENF0589670061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E94030;FRHPCENF0589670051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E94049;FRHPCENF0589670021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E94048;FRHPCENF0589670011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E94057;FRHPCENF0589310021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E94056;FRHPCENF0589310011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOMTELIGIERBELAIR;FRHPCENF0589110081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS58E58134AB1D;FRHPCENF0590100041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181382;FRHPCENF0590100061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181172;FRHPCENF0589110051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181171;FRHPCENF0591900101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181392;FRHPCENF0591900041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181391;FRHPCENF0591900051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181372;FRHPCENF0591900061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181381;FRHPCENF0591900071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181322;FRHPCENF0591900081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181321;FRHPCENF0591900091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181371;FRHPCENF0591900111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181293;FRHPCENF0590100071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181292;FRHPCENF0591900121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181221;FRHPCENF0591900131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181222;FRHPCENF0591900141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181121;FRHPCENF0591900151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231772;FRHPCENF0591900161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231791;FRHPCENF0591930011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231792;FRHPCENF0591900031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181251;FRHPCENF0591900021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181252;FRHPCENF0591900011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181253;FRHPCENF0591890051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001225491;FRHPCENF0591890041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001225492;FRHPCENF0591890031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001225501;FRHPCENF0591890021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001225502;FRHPCENF0591890011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001225511;FRHPCENF0590510091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001225512;FRHPCENF0590420081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181091;FRHPCENF0590420071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181092;FRHPCENF0590420061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181122;FRHPCENF0590420051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231762;FRHPCENF0590420041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181151;FRHPCENF0590420031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181152;FRHPCENF0590420021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181131;FRHPCENF0590420011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181132;FRHPCENF0589110061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181141;FRHPCENF0589110041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181142;FRHPCENF0591930031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181211;FRHPCENF0425890011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181212;FRHPCENF0422360031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181213;FRHPCENF0422360041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181111;FRHPCENF0423310011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181112;FRHPCENF0423310021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181401;FRHPCENF0423310031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181402;FRHPCENF0423310041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001221161;FRHPCENF0425890021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231771;FRHPCENF0426770041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231761;FRHPCENF0425950011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181231;FRHPCENF0425950021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231851;FRHPCENF0425950031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181223;FRHPCENF0425950041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181361;FRHPCENF0426770011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181362;FRHPCENF0426770021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231811;FRHPCENF0422360021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231812;FRHPCENF0422360011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231821;FRHPCENF0392950021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231822;FRHPCENF0392950011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231831;FRHPCENF0370720011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231832;FRHPCENF0264120013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSP10001181521;FRHPCENF0264120011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSP10001181522;FRHPCENF0115120023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSP10001181523;FRHPCENF0115120021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231841;FRHPCENF0115120013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231842;FRHPCENF0115120011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231852;FRHPCENF0102630041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231752;FRHPCENF0102630033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231861;FRHPCENF0102630031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231862;FRHPCENF0102630023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231871;FRHPCENF0102630021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231872;FRHPCENF0102630012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSP10001181501;FRHPCENF0426770031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSP10001181502;FRHPCENF0502140011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSP10001181503;FRHPCENF0589110031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231721;FRHPCENF0585000021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231722;FRHPCENF0510460043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231731;FRHPCENF0510460051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231732;FRHPCENF0510460052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231741;FRHPCENF0510460061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231742;FRHPCENF0580160011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231751;FRHPCENF0585000011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001221162;FRHPCENF0585000041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181161;FRHPCENF0502140021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181162;FRHPCENF0585000042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181462;FRHPCENF0585430011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181541;FRHPCENF0585430021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001276002;FRHPCENF0587420011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001276001;FRHPCENF0589110011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001275992;FRHPCENF0589110021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001275991;FRHPCENF0510460041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001275982;FRHPCENF0510460033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001275981;FRHPCENF0510460031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001275972;FRHPCENF0510460022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001275971;FRHPCENF0510460021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181533;FRHPCENF0510460011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181532;FRHPCENF0510240052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181531;FRHPCENF0510240051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181472;FRHPCENF0510240041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181471;FRHPCENF0510240031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181461;FRHPCENF0510240021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001176681;FRHPCENF0510240013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181422;FRHPCENF0510240011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181421;FRHPCENF0504990021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181243;FRHPCENF0504990011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181242;FRHPCENF0504620021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181241;FRHPCENF0504620011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181452;FRHPCENF0591930021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181451;FRHPCENF0591930041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181442;FRHPCENF0800480051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181441;FRHPCENF0597750061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181432;FRHPCENF0597480081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181431;FRHPCENF0597750011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181233;FRHPCENF0597750021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181232;FRHPCENF0597750031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181332;FRHPCENF0597750041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181542;FRHPCENF0597750051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001276031;FRHPCENF0597750071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001276032;FRHPCENF0597750151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001276071;FRHPCENF0597750081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001176682;FRHPCENF0597750091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181201;FRHPCENF0597750101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181202;FRHPCENF0597750111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181203;FRHPCENF0597750121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181271;FRHPCENF0597750131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181272;FRHPCENF0597480071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181273;FRHPCENF0597480061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSP10001181311;FRHPCENF0597480051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSP10001181312;FRHPCENF0597480041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231231;FRHPCENF0597480031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231232;FRHPCENF0597480021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231241;FRHPCENF0597480011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231242;FRHPCENF0597430041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231251;FRHPCENF0597430031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231252;FRHPCENF0597430021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181291;FRHPCENF0597430011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001225542;FRHPCENF0597360081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSP10001225541;FRHPCENF0597360071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001225522;FRHPCENF0597360061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001225521;FRHPCENF0597360051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001225531;FRHPCENF0597360041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181263;FRHPCENF0597360031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSP10001181262;FRHPCENF0597750141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181261;FRHPCENF0597750161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001276092;FRHPCENF0597360011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001276091;FRHPCENF0599830022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001276082;FRHPCENF05991600121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001276081;FRHPCENF0599640011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001276072;FRHPCENF0599640021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181331;FRHPCENF0599830011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001225532;FRHPCENF0599830012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181181;FRHPCENF0599830021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181351;FRHPCENF0599830031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181352;FRHPCENF0597790011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181301;FRHPCENF0599830032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181302;FRHPCENF0599830041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181101;FRHPCENF0599830051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181102;FRHPCENF0599940011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181341;FRHPCENF0599940021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181342;FRHPCENF0599940031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSP10001181191;FRHPCENF0599030041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSP10001181192;FRHPCENF0599030031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSP10001181193;FRHPCENF0599030021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181182;FRHPCENF0599030011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E111288;FRHPCENF0599020081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E111289;FRHPCENF0599020051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001381442;FRHPCENF0599020041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001345071;FRHPCENF0599020031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001345072;FRHPCENF0599020021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001345081;FRHPCENF0599020011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001345082;FRHPCENF0597970011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001345092;FRHPCENF0597920011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001345091;FRHPCENF0597860021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001345061;FRHPCENF0597860011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001345062;FRHPCENF0597790023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001381441;FRHPCENF0597790021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001230991;FRHPCENF0597790013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001230992;FRHPCENF0597360021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001230981;FRHPCENF0596940081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001230972;FRHPCENF0591930051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001230971;FRHPCENF05959900111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231001;FRHPCENF0594990051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231002;FRHPCENF0594990061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231011;FRHPCENF0594990071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231012;FRHPCENF0594990081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231021;FRHPCENF0595110011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231022;FRHPCENF0595580011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231031;FRHPCENF0595990021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001230982;FRHPCENF059600003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181411;FRHPCENF0595990031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231111;FRHPCENF0595990041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205502;FRHPCENF0595990051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181081;FRHPCENF0595990061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181082;FRHPCENF0595990071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205461;FRHPCENF0595990081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205462;FRHPCENF0594990041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001229571;FRHPCENF0594990031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001229572;FRHPCENF0594990021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001229581;FRHPCENF0594990011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001229582;FRHPCENF0594720061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001229601;FRHPCENF0594720051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001229602;FRHPCENF0594720041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001229611;FRHPCENF0594720031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001229612;FRHPCENF0594720021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001229621;FRHPCENF0594720011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001229622;FRHPCENF0593800033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001229631;FRHPCENF0593800031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001229632;FRHPCENF0593800021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205451;FRHPCENF0593800011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205452;FRHPCENF0591930081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205501;FRHPCENF0591930071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231032;FRHPCENF0591930061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231942;FRHPCENF059600001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231112;FRHPCENF0596000051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180952;FRHPCENF0596940071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001232002;FRHPCENF0596720061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180911;FRHPCENF0596710081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180912;FRHPCENF0596720011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180931;FRHPCENF0596720021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180932;FRHPCENF0596720031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180951;FRHPCENF0596720041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180971;FRHPCENF0596720051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231992;FRHPCENF0596720071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180972;FRHPCENF0596000061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180991;FRHPCENF0596720081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180992;FRHPCENF0596940011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181001;FRHPCENF0596940021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181002;FRHPCENF0596940031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181021;FRHPCENF0596940051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001232001;FRHPCENF0596940061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231991;FRHPCENF0596710071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231931;FRHPCENF0596710061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205432;FRHPCENF0596710041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231932;FRHPCENF0596710031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231941;FRHPCENF0596710021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181022;FRHPCENF0596710011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231951;FRHPCENF0596280042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231952;FRHPCENF0596280041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205431;FRHPCENF0596280032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231961;FRHPCENF0596280031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231982;FRHPCENF0596280023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231962;FRHPCENF0596280021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231971;FRHPCENF0596280013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181071;FRHPCENF0596280011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181412;FRHPCENF0596140021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231972;FRHPCENF0596140011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231981;FRHPCENF0596020051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181072;FRHPCENF0102630011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181032;FRHPCENF0101320021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181062;FRHPCENF0101320011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231132;FRHPCENF0782440061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180982;FRHPCENF0783330041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181011;FRHPCENF0783330031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181012;FRHPCENF0783330021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205411;FRHPCENF0783330011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205412;FRHPCENF0782440081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231121;FRHPCENF0782440071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231122;FRHPCENF0782440051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231131;FRHPCENF0782430051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231141;FRHPCENF0782440041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180791;FRHPCENF0782440031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231142;FRHPCENF0782440021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180711;FRHPCENF0782440011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180712;FRHPCENF0782430081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180731;FRHPCENF0782430071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180732;FRHPCENF0783330051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180761;FRHPCENF0783330061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180762;FRHPCENF0783330071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180781;FRHPCENF0783860011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180981;FRHPCENF0783860021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180942;FRHPCENF0783860031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180941;FRHPCENF0783860041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180922;FRHPCENF0783870011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180811;FRHPCENF0783870021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180812;FRHPCENF0783870031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180831;FRHPCENF0783870041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180832;FRHPCENF0783870051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180841;FRHPCENF0783870061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180842;FRHPCENF0783870071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180861;FRHPCENF0783870081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180862;FRHPCENF0785310011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180891;FRHPCENF0785310021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180892;FRHPCENF0782430061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180901;FRHPCENF0782430041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180902;FRHPCENF0785460011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205401;FRHPCENF0780750031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205402;FRHPCENF0781710041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180961;FRHPCENF0781710021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180962;FRHPCENF0781710011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180921;FRHPCENF0781180011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180782;FRHPCENF0780750043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180792;FRHPCENF0780750041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181061;FRHPCENF0780750021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231171;FRHPCENF0782430031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180871;FRHPCENF0780750013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180872;FRHPCENF0780750011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180881;FRHPCENF0780690021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180882;FRHPCENF0780690011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231151;FRHPCENF0780620011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231152;FRHPCENF0780610011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231161;FRHPCENF0781830011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231162;FRHPCENF0781830021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231172;FRHPCENF0781830031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205471;FRHPCENF0781830041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231181;FRHPCENF0782180011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231182;FRHPCENF0782180021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181031;FRHPCENF0782180031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231341;FRHPCENF0782180041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181041;FRHPCENF0782180051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181042;FRHPCENF0782180061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181051;FRHPCENF0782180071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181052;FRHPCENF0782180081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180822;FRHPCENF0782300011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180821;FRHPCENF0782380011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180852;FRHPCENF0782380021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180851;FRHPCENF0782430011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205472;FRHPCENF0782430021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180721;FRHPCENF0785440011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180722;FRHPCENF0785460031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180741;FRHPCENF00750261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180742;FRHPCENF07860171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180751;FRHPCENF0800410011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180752;FRHPCENF0786110041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180771;FRHPCENF0786110031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180772;FRHPCENF0786110021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180801;FRHPCENF0786110011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001180802;FRHPCENF07860181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205381;FRHPCENF07860161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205382;FRHPCENF0785690081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001232111;FRHPCENF07860151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001232112;FRHPCENF07860141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205391;FRHPCENF07860131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205392;FRHPCENF07860121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205421;FRHPCENF07860111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205422;FRHPCENF0785690101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231342;FRHPCENF0800420011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001230822;FRHPCENF0800420021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205352;FRHPCENF0800440011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSP10001205351;FRHPCENF0800450011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231092;FRHPCENF0800450021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231082;FRHPCENF0800450031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231081;FRHPCENF0800450041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001230852;FRHPCENF0800460011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001230851;FRHPCENF0800460013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001230842;FRHPCENF0800460021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001230841;FRHPCENF0800460023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001230832;FRHPCENF0800470011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001230831;FRHPCENF0800470021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001231091;FRHPCENF0800480011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001230821;FRHPCENF0800480021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001240771;FRHPCENF0800480031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001241032;FRHPCENF0800480041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001240711;FRHPCENF0785690091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001240761;FRHPCENF0785690071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001240762;FRHPCENF0785460051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001240712;FRHPCENF0785560031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001240772;FRHPCENF0785640051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001240781;FRHPCENF0785640041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001240782;FRHPCENF0785640031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001241031;FRHPCENF0785640021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001232101;FRHPCENF0785640011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001232102;FRHPCENF0785560041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000117556;FRHPCENF0785560021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000988252;FRHPCENF0785690061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000988251;FRHPCENF0785560011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000853833;FRHPCENF0785510061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000853832;FRHPCENF0785510051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000853831;FRHPCENF0785510031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000988242;FRHPCENF0785510011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000988241;FRHPCENF0785460061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000988232;FRHPCENF0785640061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000988231;FRHPCENF0785640071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000988222;FRHPCENF0785640081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000988221;FRHPCENF0785640091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000988211;FRHPCENF0785640101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000815403;FRHPCENF0785640111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000815402;FRHPCENF0785640121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000815401;FRHPCENF0785640131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000988212;FRHPCENF0785640141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181481;FRHPCENF0785640151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181493;FRHPCENF0785640161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181483;FRHPCENF0785640171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181482;FRHPCENF0785640181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181283;FRHPCENF0785690011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181282;FRHPCENF0785690021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181281;FRHPCENF0785690041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001301052;FRHPCENF0785690051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001301051;FRHPCENF0780370011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001301042;FRHPCENF0780160081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001301041;FRHPCENF0780160071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001301032;FRHPCENF0622090012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001301031;FRHPCENF0622280031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181492;FRHPCENF0622280023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181491;FRHPCENF0622280021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001301132;FRHPCENF0622280013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001301131;FRHPCENF0622280011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001301122;FRHPCENF0622090021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001301121;FRHPCENF0622090011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001301112;FRHPCENF0010190021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001301111;FRHPCENF0620850081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181513;FRHPCENF0620850061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181512;FRHPCENF0620850051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001181511;FRHPCENF0620850041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLARESERVEDERILHAT;FRHPCENF0620850011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMERHONEAVACQUEYRAS11;FRHPCENF0599940041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEAUBERGEESCARGOTDOR11;FRHPCENF0622280032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEPERSEDES11;FRHPCENF0622280041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEMALIJAI571;FRHPCENF0622280042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001158031;FRHPCENF0627040011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001092952;FRHPCENF0627040021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001092951;FRHPCENF0627040031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001158062;FRHPCENF0627040041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001158061;FRHPCENF0627040051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001208382;FRHPCENF0627040061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001093031;FRHPCENF0627040071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001158032;FRHPCENF0627040081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001158011;FRHPCENF0627040091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001158012;FRHPCENF0627040101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001093022;FRHPCENF0627040111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001092982;FRHPCENF0627040121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001092981;FRHPCENF0627040131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001092972;FRHPCENF0627040141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001092971;FRHPCENF0010190011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001158022;FRHPCENF0063690011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001093021;FRHPCENF0780160061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001158021;FRHPCENF0074510051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001208091;FRHPCENF0073570041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001093001;FRHPCENF0073570042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001208381;FRHPCENF0074510011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001208362;FRHPCENF0074510021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001208361;FRHPCENF0074510031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001208092;FRHPCENF0074510041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001208432;FRHPCENF0074510061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001208431;FRHPCENF0063690021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001093002;FRHPCENF0074510071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001093032;FRHPCENF00750211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001093012;FRHPCENF00750221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001158002;FRHPCENF00750231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001158001;FRHPCENF00750241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001158051;FRHPCENF00750251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001093042;FRHPCENF0073570023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001158052;FRHPCENF0073570021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001158041;FRHPCENF0073570013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001158042;FRHPCENF0073570011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001093041;FRHPCENF0070600011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001093011;FRHPCENF0070520051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205722;FRHPCENF0070520041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205721;FRHPCENF0070520031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001208402;FRHPCENF0070520021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001208401;FRHPCENF0070520011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001092962;FRHPCENF0064670011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001092961;FRHPCENF0063690081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001208411;FRHPCENF0063690071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001208412;FRHPCENF0063690061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205741;FRHPCENF0063690051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001205742;FRHPCENF0063690041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLODECANDAS80150;FRHPCENF0063690031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEHOTELGRANDVINS11;FRHPCENF0627040151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMERHONEARASTEAU11;FRHPCENF0627040161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMESERJAC11;FRHPCENF0677050011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMESERJAC51;FRHPCENF0723800014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E111284;FRHPCENF0723800032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E111285;FRHPCENF0723800031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E142967;FRHPCENF0723800024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E142966;FRHPCENF0723800023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEMAISONCONSULS11;FRHPCENF0723800022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEHOTELPROMOTEL11;FRHPCENF0723800021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEBRITHOTELLODGEGOLF11;FRHPCENF0723800011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE117426901;FRHPCENF0677050021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE18973431;FRHPCENF0706680061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE013204;FRHPCENF0706680051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE013202;FRHPCENF0706680031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE013203;FRHPCENF0706680011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE013201;FRHPCENF0706410081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAU1E0033021;FRHPCENF0706410071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC139321;FRHPCENF0745660011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC139319;FRHPCENF0745660012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC139322;FRHPCENF0745660021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC139320;FRHPCENF0745660031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE386700021;FRHPCENF0745660041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE743300021;FRHPCENF0745660043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE743300031;FRHPCENF0745660051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE748000011;FRHPCENF0745660053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE743300041;FRHPCENF0765230011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE743300051;FRHPCENF0765230021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE386700011;FRHPCENF0772410011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE743300011;FRHPCENF0772410021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE783700011;FRHPCENF0780160011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE7496000244;FRHPCENF0780160021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE749600061;FRHPCENF0780160031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE749600051;FRHPCENF0780160041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE749600031;FRHPCENF0780160051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE783700021;FRHPCENF0706410061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE386700032;FRHPCENF0706410051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE748000021;FRHPCENF0706410041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE748000031;FRHPCENF0700020031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE749600011;FRHPCENF0693030011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE010000011;FRHPCENF0693030021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE010000021;FRHPCENF0693030031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMECABRIESGOLF11;FRHPCENF0693030041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMELEPROVENCE11;FRHPCENF0697030011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEFASTHOTELPERPIGNANSUD11;FRHPCENF0697030021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMERHONEAVISAN11;FRHPCENF0697030031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE000022846774;FRHPCENF0697030041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRA68E680210019;FRHPCENF0697030051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRA42P1200020003;FRHPCENF0697030061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMERHONEABEAUMESVENISE11;FRHPCENF0697030071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMECHAUMIERE11;FRHPCENF0697030081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC50637;FRHPCENF0700020011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC50650;FRHPCENF0700020021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504160012;FRHPCENF0700020041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504400011;FRHPCENF0706410031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504100021;FRHPCENF0700020051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501900011;FRHPCENF0700020061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503600011;FRHPCENF0700020071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E544290011;FRHPCENF0700020081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504070011;FRHPCENF0700030011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508800011;FRHPCENF0700030021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5041011;FRHPCENF0700030031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501700011;FRHPCENF0700030041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5056511;FRHPCENF0700030051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505800011;FRHPCENF0700030061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504160011;FRHPCENF0700030071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504160021;FRHPCENF0700030081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506300011;FRHPCENF0706410011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506600011;FRHPCENF0706410021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E507600011;FRV75E9015053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504100011;FRHPCENF0802610051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506000011;FRV75E9015062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506000021;FRV75EPX11061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503590011;FRV75EPX11071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505900021;FRV75EPX11066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503410011;FRV75EPX11065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502940011;FRV75EPX11064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502920011;FRV75EPX11063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5029211;FRV75EPX11062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502670011;FRV75EPX11054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504300011;FRV75EPX11041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503400021;FRV75EPX11053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503400041;FRV75EPX11052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506400011;FRV75EPX11051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505700011;FRV75EPX11045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503200021;FRV75EPX11044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502500011;FRV75EPX11043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5054311;FRV75EPX11072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505300011;FRV75EPX11073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E507200012;FRV75EPX11074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508000021;FRV75EPX11081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5056211;FRV75EPX11082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504200011;FRV75EPX11083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506020011;FRV75EPX11084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506020021;FRV75EPX11092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506020031;FRV75EPX11093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506020041;FRV75EPX11094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508000031;FRV75EPX11095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501500011;FRV75EPX11096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500010012;FRV75EPX11097;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501800022;FRV75EPX11101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501800012;FRV75EPX11102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500030012;FRV75EPX11103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500250012;FRV75EPX11104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500250022;FRV75EPX11042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505500011;FRV75EPX11036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503900011;FRV75EPX11112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508400011;FRV75EPX10141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505320011;FRV75EPX11011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5050221;FRV75EPX10146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5050211;FRV75EPX10145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5050231;FRV75EPX10144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5050241;FRV75EPX10143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5050271;FRV75EPX10142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5050251;FRV75EPX10134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5050261;FRV75EPX11035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506200011;FRV75EPX10133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502400011;FRV75EPX10132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504840011;FRV75EPX10131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5047311;FRV75EPX10124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5045811;FRV75EPX10123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506800011;FRV75EPX10122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502030021;FRV75EPX11012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502030011;FRV75EPX11013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508000011;FRV75EPX11014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012971;FRV75EPX11015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508600011;FRV75EPX11016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500990011;FRV75EPX11017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500990021;FRV75EPX11021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501030011;FRV75EPX11022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502900021;FRV75EPX11023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502100011;FRV75EPX11024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012991;FRV75EPX11025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5026011;FRV75EPX11026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012941;FRV75EPX11027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E50129101;FRV75EPX11031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012981;FRV75EPX11032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012911;FRV75EPX11033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012921;FRV75EPX11034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012961;FRV75EPX11111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5008711;FRV75EPX11113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502600021;FRV75EPX10114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502600011;FRV75EPX12015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502900011;FRV75EPX12026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503700011;FRV75EPX12025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503400011;FRV75EPX12024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502700021;FRV75EPX12023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500310011;FRV75EPX12022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502700011;FRV75EPX12021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E507200011;FRV75EPX12014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500250031;FRV75EPX11181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500250021;FRV75EPX12013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500250011;FRV75EPX12012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500030011;FRV75EPX12011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501800011;FRV75EPX11185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501800021;FRV75EPX11184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500010011;FRV75EPX11183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012931;FRV75EPX12041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012951;FRV75EPX12042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508900011;FRV75EPX12043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504500011;FRV75EPX12044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506100011;FRV75EPX12045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505400011;FRV75EPX12051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505400021;FRV75EPX12052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5023911;FRV75EPX12053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505900011;FRV75EPX12054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504500021;FRV75EPX12055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5022421;FRV75EPX12061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5022411;FRV75EPX12062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504000021;FRV75EPX12063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504000011;FRV75EPX12064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5021821;FRV75EPX12065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5021811;FRV75EPX12066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505600011;FRV75EPX12071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505600021;FRV75EPX11182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503200011;FRV75EPX11176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508900021;FRV75EPX11114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501850011;FRV75EPX11132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503400031;FRV75EPX11144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501730041;FRV75EPX11143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501730031;FRV75EPX11142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501730021;FRV75EPX11141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501730011;FRV75EPX11134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502200011;FRV75EPX11133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503500011;FRV75EPX11131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E507100011;FRV75EPX11175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506900011;FRV75EPX11126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502000031;FRV75EPX11124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502000021;FRV75EPX11123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501470011;FRV75EPX11122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502000011;FRV75EPX11121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500250032;FRV75EPX11115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504800011;FRV75EPX11145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502700012;FRV75EPX11146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5056512;FRV75EPX11151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505800012;FRV75EPX11152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504160022;FRV75EPX11153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506300012;FRV75EPX11154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506600012;FRV75EPX11155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E507600012;FRV75EPX11161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5054312;FRV75EPX11162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505300012;FRV75EPX11163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5050262;FRV75EPX11164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501500012;FRV75EPX11165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506800012;FRV75EPX11171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5045812;FRV75EPX11172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5047312;FRV75EPX11173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504840012;FRV75E9015063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502400012;FRV75EPX11174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501700012;FRV75EPX10121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504100022;FRV75EPX10113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5041012;FRV75EPX08176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508800012;FRV75EPX09051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500310012;FRV75EPX09062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E544290012;FRV75EPX09061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503600012;FRV75EPX09055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501900012;FRV75EPX09054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504100012;FRV75EPX09053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506000012;FRV75EPX09052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506000022;FRV75EPX09045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503590012;FRV75EPX09031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505900022;FRV75EPX09044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503410012;FRV75EPX09043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502940012;FRV75EPX09042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502920012;FRV75EPX09041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5029212;FRV75EPX09034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506200012;FRV75EPX09033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5050252;FRV75EPX09063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504300012;FRV75EPX09064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E507200021;FRV75EPX09065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5022423;FRV75EPX09066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5054313;FRV75EPX09071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501600011;FRV75EPX09072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501600012;FRV75EPX09073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504000051;FRV75EPX09074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504000052;FRV75EPX09081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E507200022;FRV75EPX09082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5050272;FRV75EPX09083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503400051;FRV75EPX09084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503400052;FRV75EPX09085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508100011;FRV75EPX09086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508100012;FRV75EPX09087;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E507700011;FRV75EPX09091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E507700012;FRV75EPX09092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508000032;FRV75EPX09032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508000022;FRV75EPX09023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506020042;FRV75EPX09094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506020032;FRV75EPX08193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506020022;FRV75EPX08203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506020012;FRV75EPX08202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504200012;FRV75EPX08201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504800012;FRV75EPX08196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5056212;FRV75EPX08195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505500012;FRV75EPX08194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503900012;FRV75EPX08192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508400012;FRV75EPX09022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505320012;FRV75EPX08191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5050222;FRV75EPX08186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5050212;FRV75EPX08185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5050232;FRV75EPX08184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5050242;FRV75EPX08183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502670012;FRV75EPX08182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504070012;FRV75EPX08204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503400022;FRV75EPX08205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012992;FRV75EPX08206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502000032;FRV75EPX08211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502000022;FRV75EPX08212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501470012;FRV75EPX08213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502000012;FRV75EPX08214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508900022;FRV75EPX08215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508900012;FRV75EPX08216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012952;FRV75EPX09011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012932;FRV75EPX09012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012962;FRV75EPX09013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012922;FRV75EPX09014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012912;FRV75EPX09015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012982;FRV75EPX09016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503400042;FRV75EPX09017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012942;FRV75EPX09021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5012972;FRV75EPX09093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E507100012;FRV75EPX09095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502100012;FRV75EPX10112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502900022;FRV75EPX10063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501030012;FRV75EPX10074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500990022;FRV75EPX10073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E500990012;FRV75EPX10072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508600012;FRV75EPX10071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5008712;FRV75EPX10065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502600022;FRV75EPX10064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502600012;FRV75EPX10062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502900012;FRV75EPX10037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503700012;FRV75EPX10061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503400012;FRV75EPX10056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504400012;FRV75EPX10055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502700022;FRV75EPX10054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506900012;FRV75EPX10053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E50129102;FRV75EPX10052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503500012;FRV75EPX10075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5022422;FRV75EPX10081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506400012;FRV75EPX10082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505700012;FRV75EPX10083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502200012;FRV75EPX10084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502500012;FRV75EPX10091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502030022;FRV75EPX10092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E502030012;FRV75EPX10093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E508000012;FRV75EPX10094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5026012;FRV75EPX10095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E506100012;FRV75EPX10101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505400012;FRV75EPX10102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505400022;FRV75EPX10103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5023912;FRV75EPX10104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505900012;FRV75EPX10105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504500022;FRV75EPX10106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503200022;FRV75EPX10111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5022412;FRV75EPX10051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504500012;FRV75EPX10036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504000022;FRV75EPX09096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501730012;FRV75EPX09113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501730032;FRV75EPX09123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501730042;FRV75EPX09122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503400032;FRV75EPX09121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501850012;FRV75EPX09116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E503200012;FRV75EPX09115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E501730022;FRV75EPX09114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505600022;FRV75EPX09112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5021812;FRV75EPX10035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E5021822;FRV75EPX09111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E505600012;FRV75EPX09105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS50E504000012;FRV75EPX09104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0024011;FRV75EPX09103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0016011;FRV75EPX09102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0016021;FRV75EPX09101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0022011;FRV75EPX09124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P002801;FRV75EPX09125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0012011;FRV75EPX09126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0001011;FRV75EPX10011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0011012;FRV75EPX10012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0011011;FRV75EPX10013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0005012;FRV75EPX10014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0005011;FRV75EPX10021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0003011;FRV75EPX10022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0032011;FRV75EPX10023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0034021;FRV75EPX10024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0039022;FRV75EPX10025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0039021;FRV75EPX10026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0039012;FRV75EPX10031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0039011;FRV75EPX10032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0040011;FRV75EPX10033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0038021;FRV75EPX10034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0038011;FRV75EPX12072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0034032;FRV75EPX12073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0034031;FRV75EPX12074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0034022;FRV75EPX14023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0040021;FRV75EPX14033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0034012;FRV75EPX14032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0035011;FRV75EPX14031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0034011;FRV75EPX14026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0030012;FRV75EPX14025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0029011;FRV75EPX14024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0032021;FRV75EPX14022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0030011;FRV75EPX13215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0035021;FRV75EPX14021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0036011;FRV75EPX14016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0036012;FRV75EPX14015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0036021;FRV75EPX14014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0036022;FRV75EPX14013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0051012;FRV75EPX14012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0046012;FRV75EPX14041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0047011;FRV75EPX14042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0047021;FRV75EPX14043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0049011;FRV75EPX14044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0049012;FRV75EPX14045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0048011;FRV75EPX14046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0048012;FRV75EPX14047;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0051011;FRV75EPX14051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0052011;FRV75EPX14052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0045022;FRV75EPX14053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0055011;FRV75EPX14054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0055012;FRV75EPX14055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0053011;FRV75EPX14056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0053012;FRV75EPX14061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0058011;FRV75EPX14062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0058021;FRV75EPX14063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0056011;FRV75EPX14064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0046011;FRV75EPX14011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0056021;FRV75EPX13214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0045021;FRV75EPX14066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0045012;FRV75EPX13165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0044011;FRV75EPX13175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0044012;FRV75EPX13174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0043011;FRV75EPX13173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0045011;FRV75EPX13172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0059011;FRV75EPX13171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0059012;FRV75EPX13166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0060011;FRV75EPX13164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0060012;FRV75EPX13213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0061011;FRV75EPX13163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0061012;FRV75EPX13162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0065011;FRV75EPX13161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0065021;FRV75EPX13156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0063011;FRV75EPX13155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0063021;FRV75EPX13154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0066011;FRV75EPX13176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0066012;FRV75EPX13181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0064011;FRV75EPX13182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0064012;FRV75EPX13183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0067071;FRV75EPX13184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0067061;FRV75EPX13185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0067051;FRV75EPX13186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0067052;FRV75EPX13191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0067041;FRV75EPX13192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0067042;FRV75EPX13193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0067031;FRV75EPX13194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0067032;FRV75EPX13201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0067021;FRV75EPX13202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0067022;FRV75EPX13203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0067011;FRV75EPX13204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0067012;FRV75EPX13211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0068011;FRV75EPX13212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0068012;FRV75EPX14065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0069011;FRV75EPX14071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0069012;FRV75EPX12075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRC2P0070011;FRV75EPX15012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAU1000801;FRV75EPX15021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E26563;FRV75EPX15017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40169;FRV75EPX15016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E44257;FRV75EPX15015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40165;FRV75EPX15014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40164;FRV75EPX15013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40167;FRV75EPX15011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40166;FRV75EPX14136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E44113;FRV75EPX14146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E37515;FRV75EPX14145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E37514;FRV75EPX14144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E37519;FRV75EPX14143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E37518;FRV75EPX14142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E37517;FRV75EPX14141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E37516;FRV75EPX15022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E44232;FRV75EPX15023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E44233;FRV75EPX15024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E37513;FRV75EPX15025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E37512;FRV75EPX15026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E43977;FRV75EPX15027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E43978;FRV75EPX15031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10EAC35480;FRV75EPX15032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10EAC35479;FRV75EPX15033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E30333;FRV75EPX15034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E20924;FRV75EPX15044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E20923;FRV75EPX15043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10P20922;FRV75EPX15042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10P20921;FRV75EPX15041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E33899;FRV75EPX15037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10EAC35497;FRV75EPX15036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40168;FRV75EPX15035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58476;FRV75EPX14137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40170;FRV75EPX14135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40171;FRV75EPX14072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58475;FRV75EPX14086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40161;FRV75EPX14106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40160;FRV75EPX14105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58366;FRV75EPX14104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58365;FRV75EPX14103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58466;FRV75EPX14102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58465;FRV75EPX14101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58356;FRV75EPX14085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58355;FRV75EPX14134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58222;FRV75EPX14084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58221;FRV75EPX14083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58348;FRV75EPX14082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58347;FRV75EPX14081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58346;FRV75EPX14074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58345;FRV75EPX14073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58364;FRV75EPX14111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58363;FRV75EPX14112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58472;FRV75EPX14113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58471;FRV75EPX14114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58470;FRV75EPX14115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58469;FRV75EPX14116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E44355;FRV75EPX14121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58474;FRV75EPX14122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E58473;FRV75EPX14123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40163;FRV75EPX14124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40162;FRV75EPX14125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E26562;FRV75EPX14126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000117224;FRV75EPX14127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000348661;FRV75EPX14131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000986352;FRV75EPX15045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000986351;FRV75EPX14132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000837041;FRV75EPX14133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000882701;FRV75EPX13153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000882641;FRV75EPX13152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000882631;FRV75EPX13151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBENFCRERPIRG7IBRQHTCR2APUVCM;FRV75EPX12156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBEQCN3UWD4RH74NPNCRZO5RDGUEQ;FRV75EPX12171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000348671;FRV75EPX12164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE1000043430;FRV75EPX12163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000986341;FRV75EPX12162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000348681;FRV75EPX12161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBEMVTUEDQDQTRYSNM6KDSEQSFTK4;FRV75EPX12157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBEZPB3PYRQMSIKMOE4CEJCOZNG7I;FRV75EPX12155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBEZLZQ7VD34M2MZZUH4NBEA55XLA;FRV75EPX12144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBEEFI7QTSJZTUHGMEVEXMVBQIJ7A;FRV75EPX12154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBEEDQS6FVAC2LYL6FAFW6IPNALMU;FRV75EPX12153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBE7U4KNFB4LM7CM2ZIUQRFO3BK44;FRV75EPX12152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000250541;FRV75EPX12151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000986353;FRV75EPX12147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000882691;FRV75EPX12146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000986342;FRV75EPX12172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001142021;FRV75EPX12173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000882591;FRV75EPX12174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000882601;FRV75EPX12175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000986343;FRV75EPX12176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000882621;FRV75EPX12181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000882711;FRV75EPX12182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000882721;FRV75EPX12183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000882661;FRV75EPX12184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000882651;FRV75EPX12185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001142022;FRV75EPX12186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000882611;FRV75EPX12187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001142032;FRV75EPX13011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000348683;FRV75EPX13012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000348682;FRV75EPX13013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10001142031;FRV75EPX13014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000348673;FRV75EPX13015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000348672;FRV75EPX12145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000348663;FRV75EPX12143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLMSE10000348662;FRV75EPX13144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1D200903;FRV75EPX12102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1D200902;FRV75EPX12111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1D200901;FRV75EPX12107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAEVBP2011078;FRV75EPX12106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAEVBP2022531;FRV75EPX12105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRISEEINOUIDQUINCY1;FRV75EPX12104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE61081;FRV75EPX12103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE61079;FRV75EPX12101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE61080;FRV75EPX12142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE56851;FRV75EPX12085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAU1E0007012;FRV75EPX12084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAEVBP1927353;FRV75EPX12083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSYSELMSSAR1;FRV75EPX12082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSYSELMSBOI1;FRV75EPX12081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSYSELMSPAT1;FRV75EPX12076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSYSELMSFON1;FRV75EPX12112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSYSEETIK01;FRV75EPX12113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE60BVTA2;FRV75EPX12114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62HAXA2;FRV75EPX12115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62AHCA1;FRV75EPX12116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62AHCA2;FRV75EPX12121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62AHGA1;FRV75EPX12122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62AHGA2;FRV75EPX12123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62BEGA1;FRV75EPX12124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62BEGA2;FRV75EPX12125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62BEMA1;FRV75EPX12126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62BEMA2;FRV75EPX12127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62HAXA1;FRV75EPX12131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62HSXA2;FRV75EPX12132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62HBXA1;FRV75EPX12133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE31RVTA1;FRV75EPX12134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62HBXA2;FRV75EPX12141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62HGXA1;FRV75EPX13021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62HGXA2;FRV75EPX13022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62HSXA1;FRV75EPX13023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE60BVQA2;FRV75EPX13102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62MACA1;FRV75EPX13114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62MACA2;FRV75EPX13113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62MAPA1;FRV75EPX13112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62MAPA2;FRV75EPX13111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE60BVTA1;FRV75EPX13104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE55BYBA2;FRV75EPX13103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE60BVQA1;FRV75EPX13101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE52DYZA3;FRV75EPX13024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62MBBA2;FRV75EPX13096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE35NSP31;FRV75EPX13095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE35NSP32;FRV75EPX13094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE45NSBA1;FRV75EPX13093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE45NSBA2;FRV75EPX13092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE45NSBB1;FRV75EPX13091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE45NSBB2;FRV75EPX13115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE45NSBB3;FRV75EPX13116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE52DYZA1;FRV75EPX13121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE52DYZA2;FRV75EPX13122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE54LYVA1;FRV75EPX13123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE60BVMA2;FRV75EPX13124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE54LYVA2;FRV75EPX13125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE54LYVA3;FRV75EPX13126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE54PYXA1;FRV75EPX13131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE54PYXA2;FRV75EPX13132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE55BYBA1;FRV75EPX13133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE31RVTA2;FRV75EPX13134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE55BYBA3;FRV75EPX13135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE60BVJA1;FRV75EPX13136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE60BVJA2;FRV75EPX13141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE60BVMA1;FRV75EPX13142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62MBBA1;FRV75EPX13143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE77CVAA1;FRV75EPX13084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62MBCA1;FRV75EPX13083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE88SYBA2;FRV75EPX13082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91BMPA2;FRV75EPX13051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91BSCA1;FRV75EPX13025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91BSCA2;FRV75EPX13026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91BSCA3;FRV75EPX13027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91BSPA1;FRV75EPX13031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91BSPA2;FRV75EPX13032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DBCA1;FRV75EPX13033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DBCA2;FRV75EPX13034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DBGA1;FRV75EPX13035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DBPA1;FRV75EPX13036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DBPA2;FRV75EPX13041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DBQA1;FRV75EPX13042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DBQA2;FRV75EPX13043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DCAA1;FRV75EPX13044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DCAA2;FRV75EPX13045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DSUA1;FRV75EPX13052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DSUA2;FRV75EPX13081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DSUB1;FRV75EPX13053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DSUB2;FRV75EPX13061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DSUB3;FRV75EPX13062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62MBCA2;FRV75EPX13063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91BMPA1;FRV75EPX13064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE91DBGA2;FRV75EPX13065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE88SYBA1;FRV75EPX13066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE77CVKA1;FRV75EPX13067;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE77MSRA2;FRV75EPX13071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62MBDA2;FRV75EPX13072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE68EGPV1;FRV75EPX13073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE68EGPV2;FRV75EPX13074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE76HBDA1;FRV75EPX13075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE76HBDA2;FRV75EPX13076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE76HBDB2;FRV75EPX08181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE77CVAA2;FRV75EPX11125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE77CVKA2;FRV75EPX08175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE76HBDB1;FRV75E9016071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE77CVQA1;FRV75EPX01023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE77CVZA1;FRV75EPX01024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE62MBDA1;FRV75EPX01031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE77MCHA2;FRV75EPX01032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE77MCHA1;FRV75EPX01033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE77CVZA2;FRV75EPX01034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE77MSRA1;FRV75EPX01035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE77CVXA2;FRV75EPX01036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE77CVXA1;FRV75EPX01041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSE1ESE77CVQA2;FRV75EPX01042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16161;FRV75EPX01043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16181;FRV75EPX01044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16174;FRV75EPX01045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16172;FRV75EPX01046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16171;FRV75EPX01051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16166;FRV75EPX01022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16165;FRV75EPX01021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16164;FRV75EPX01014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16163;FRV75EHBSAGLOB021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16162;FRV75EHBSAEPDA021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16142;FRV75EHBSAEPDA031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16156;FRV75EHBSAEPDA041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16155;FRV75EHBSAEPDA051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16154;FRV75EHBSAGLOB011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16153;FRV75EPX05135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16152;FRV75EHBSAGLOB031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16151;FRV75EPX01013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16146;FRV75EHBSAGLOB041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16145;FRV75EHBSAGLOB051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16144;FRV75EHBSAGLOB061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16143;FRV75EHBSAGLOB071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16183;FRV75EPX01011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16182;FRV75EPX01012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16223;FRV75EPX01052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16184;FRV75EPX01053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16185;FRV75EPX01054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16136;FRV75EPX02064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16222;FRV75EPX02053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16221;FRV75EPX02054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16216;FRV75EPX02055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16215;FRV75EPX02061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16214;FRV75EPX02062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16213;FRV75EPX02063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16212;FRV75EPX08174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16211;FRV75EPX02051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16206;FRV75EPX02065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16205;FRV75EPX02071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16204;FRV75EPX02072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16203;FRV75EPX02073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16202;FRV75EPX02074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16201;FRV75EPX02075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16195;FRV75EPX02052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16194;FRV75EPX02034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16193;FRV75EPX01061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16192;FRV75EPX02013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16191;FRV75EPX01062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16186;FRV75EPX01063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16141;FRV75EPX01064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16094;FRV75EPX01065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16135;FRV75EPX02011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16092;FRV75EPX02012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16086;FRV75EPX02014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16085;FRV75EPX02033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16084;FRV75EPX02021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16083;FRV75EPX02022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16082;FRV75EPX02023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16081;FRV75EPX02024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16076;FRV75EPX02031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16075;FRV75EPX02032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16074;FRV75EHBSAEPDA011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16073;FRV75E9020053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16072;FRV75E9020052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16071;FRV75E9017062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16066;FRV75E9017042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16065;FRV75E9017043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16064;FRV75E9017051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16063;FRV75E9017052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16062;FRV75E9017053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16061;FRV75E9017061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16056;FRV75E9017063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16055;FRV75E9017033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16054;FRV75E9018021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16091;FRV75E9018022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16093;FRV75E9018023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16134;FRV75E9018031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16225;FRV75E9018032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16133;FRV75E9018033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16132;FRV75E9017041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16131;FRV75EPX04054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16126;FRV75E9018042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16125;FRV75E9016093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16124;FRV75E9016073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16123;FRV75E9016081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16122;FRV75E9016082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16121;FRV75E9016083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16115;FRV75E9016091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16114;FRV75E9016092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16113;FRV75E9017011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16112;FRV75E9017032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16111;FRV75E9017012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16105;FRV75E9017013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16104;FRV75E9017021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16103;FRV75E9017022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16102;FRV75E9017023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16101;FRV75E9017031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16096;FRV75E9018041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16095;FRV75E9018043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16224;FRV75E9020051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16266;FRV75E9020022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16226;FRV75E9019062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17043;FRV75E9019063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17041;FRV75E9020011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17036;FRV75E9020012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17035;FRV75E9020013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17034;FRV75E9020021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17033;FRV75E9020023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17032;FRV75E9019053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17031;FRV75E9020031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17026;FRV75E9020032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17025;FRV75E9020033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17024;FRV75E9020041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17023;FRV75E9020042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17022;FRV75E9020043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17021;FRV75E9019061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17016;FRV75E9019052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17015;FRV75E9018051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17014;FRV75E9019022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17013;FRV75E9018052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17012;FRV75E9018053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17011;FRV75E9019011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16315;FRV75E9019012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16314;FRV75E9019013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17042;FRV75E9019021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17044;FRV75E9019023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16312;FRV75E9019051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17045;FRV75E9019031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17084;FRV75E9019032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17083;FRV75E9019033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17082;FRV75E9019041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17081;FRV75E9019042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17076;FRV75E9019043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17075;FRV75EPX02081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17074;FRV75EPX02082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17073;FRV75EPX02083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17072;FRV75EPX05056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17071;FRV75EPX05065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17065;FRV75EPX05064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17064;FRV75EPX05063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17063;FRV75EPX05062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17062;FRV75EPX05061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17061;FRV75EPX05057;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17055;FRV75EPX05055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17054;FRV75EPX05071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17053;FRV75EPX05054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17052;FRV75EPX04053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17051;FRV75EPX05053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17046;FRV75EPX05052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16313;FRV75EPX05051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16311;FRV75EPX05045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16231;FRV75EPX05066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16272;FRV75EPX05072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16052;FRV75EPX05043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16265;FRV75EPX05092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16264;FRV75EPX05103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16263;FRV75EPX05102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16262;FRV75EPX05101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16261;FRV75EPX05095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16254;FRV75EPX05094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16253;FRV75EPX05093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16252;FRV75EPX05091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16251;FRV75EPX05073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16246;FRV75EPX05085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16245;FRV75EPX05084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16244;FRV75EPX05083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16243;FRV75EPX05082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16242;FRV75EPX05081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16241;FRV75EPX05074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16236;FRV75EPX05044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16235;FRV75EPX05042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16234;FRV75EPX05105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16233;FRV75EPX04072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16232;FRV75EPX04084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16271;FRV75EPX04083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16273;FRV75EPX04082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16307;FRV75EPX04081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16274;FRV75EPX04074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16306;FRV75EPX04073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16305;FRV75EPX04071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16304;FRV75EPX04092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16303;FRV75EPX04066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16302;FRV75EPX04065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16301;FRV75EPX04064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16296;FRV75EPX04063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16295;FRV75EPX04062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16294;FRV75EPX04061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16293;FRV75EPX04091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16292;FRV75EPX04093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16291;FRV75EPX05041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16287;FRV75EPX05023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16286;FRV75EPX05033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16285;FRV75EPX05032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16284;FRV75EPX05031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16283;FRV75EPX05026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16282;FRV75EPX05025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16281;FRV75EPX05024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16276;FRV75EPX05022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16275;FRV75EPX04094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16053;FRV75EPX05021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15375;FRV75EPX05014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16051;FRV75EPX05013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15194;FRV75EPX05012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15192;FRV75EPX05011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15191;FRV75EPX04095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15186;FRV75EPX05104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15185;FRV75EPX05111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15184;FRV75EPX02084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15183;FRV75EPX03044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15182;FRV75EPX03034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15181;FRV75EPX03035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15176;FRV75EPX03036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15175;FRV75EPX03041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15174;FRV75EPX03042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15173;FRV75EPX03043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15172;FRV75EPX03045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15171;FRV75EPX03032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15165;FRV75EPX03046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15164;FRV75EPX03061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15163;FRV75EPX03062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15162;FRV75EPX03063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15161;FRV75EPX03064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15154;FRV75EPX03065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15153;FRV75EPX03033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15193;FRV75EPX03031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15195;FRV75EPX04012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15151;FRV75EPX02096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15196;FRV75EPX02085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15226;FRV75EPX02091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15225;FRV75EPX02092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15224;FRV75EPX02093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15223;FRV75EPX02094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15222;FRV75EPX02095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15221;FRV75EPX03011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15217;FRV75EPX03024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15216;FRV75EPX03012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15215;FRV75EPX03013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15214;FRV75EPX03014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15213;FRV75EPX03021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15212;FRV75EPX03022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15211;FRV75EPX03023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15207;FRV75EPX04011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15206;FRV75EPX04013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15205;FRV75EPX05112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15204;FRV75EPX05124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15203;FRV75EPX05133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15202;FRV75EPX05132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15201;FRV75EPX05131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15197;FRV75EPX05127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15152;FRV75EPX05126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15146;FRV75EPX05125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15232;FRV75EPX05123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15104;FRV75EPX04052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15102;FRV75EPX05122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15101;FRV75EPX05121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15094;FRV75EPX05116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15093;FRV75EPX05115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15092;FRV75EPX05114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15091;FRV75EPX05113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15084;FRV75EPX05134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15083;FRV75EPX04051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15082;FRV75EPX04014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15081;FRV75EPX04032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15074;FRV75EPX04015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15073;FRV75EPX04021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15072;FRV75EPX04022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15071;FRV75EPX04023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15065;FRV75EPX04024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15064;FRV75EPX04025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15063;FRV75EPX04033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15062;FRV75EPX04046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15061;FRV75EPX04034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15055;FRV75EPX04041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17091;FRV75EPX04042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15103;FRV75EPX04043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15105;FRV75EPX04044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15145;FRV75EPX04045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15106;FRV75E9016072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15144;FRV75EPX04055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15143;FRV75E9016063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15142;FRV75EPX07086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15141;FRV75EPX07123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15137;FRV75EPX07122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15136;FRV75EPX07121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15135;FRV75EPX07116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15134;FRV75EPX07115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15133;FRV75EPX07114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15132;FRV75EPX07113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15131;FRV75EPX07112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15126;FRV75EPX07111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15125;FRV75EPX07106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15124;FRV75EPX07105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15123;FRV75EPX07104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15122;FRV75EPX07103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15121;FRV75EPX07102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15114;FRV75EPX07101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15113;FRV75EPX07095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15112;FRV75EPX07094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15111;FRV75EPX07093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15231;FRV75EPX07092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15233;FRV75EPX07124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16044;FRV75EPX07125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15372;FRV75EPX07126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15365;FRV75EPX07145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15364;FRV75EPX07161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15363;FRV75EPX07156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15362;FRV75EPX07155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15361;FRV75EPX07154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15356;FRV75EPX07153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15355;FRV75EPX07152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15354;FRV75EPX07151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15353;FRV75EPX07146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15352;FRV75EPX07144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15351;FRV75EPX07131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15345;FRV75EPX07143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15344;FRV75EPX07142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15343;FRV75EPX07141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15342;FRV75EPX07136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15341;FRV75EPX07135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15334;FRV75EPX07134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15333;FRV75EPX07133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15332;FRV75EPX07132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15331;FRV75EPX07091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15326;FRV75EPX07085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15371;FRV75EPX07163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15373;FRV75EPX07084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15324;FRV75EPX07045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15374;FRV75EPX07044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16043;FRV75EPX07043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16042;FRV75EPX07042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16041;FRV75EPX07041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16036;FRV75EPX07036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16035;FRV75EPX07035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16034;FRV75EPX07034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16033;FRV75EPX07033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16032;FRV75EPX07032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16031;FRV75EPX07031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16026;FRV75EPX07025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16025;FRV75E9016062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16024;FRV75EPX07023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16023;FRV75EPX07022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16022;FRV75EPX07021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16021;FRV75EPX07016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16016;FRV75EPX07015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16015;FRV75EPX07014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16014;FRV75EPX07046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16013;FRV75EPX07051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16012;FRV75EPX07052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16011;FRV75EPX07071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15325;FRV75EPX07083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15323;FRV75EPX07082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15234;FRV75EPX07081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15275;FRV75EPX07076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15273;FRV75EPX07075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15272;FRV75EPX07074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15271;FRV75EPX07073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15266;FRV75EPX07072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15265;FRV75EPX07065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15264;FRV75EPX07053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15263;FRV75EPX07064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15262;FRV75EPX07063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15261;FRV75EPX07062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15254;FRV75EPX07061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15253;FRV75EPX07057;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15252;FRV75EPX07056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15251;FRV75EPX07055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15246;FRV75EPX07054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15245;FRV75EPX07162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15244;FRV75EPX07164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15243;FRV75EPX07012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15242;FRV75EPX08095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15241;FRV75EPX08125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15236;FRV75EPX08124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15235;FRV75EPX08123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15274;FRV75EPX08122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15276;FRV75EPX08121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15322;FRV75EPX08116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15281;FRV75EPX08115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15321;FRV75EPX08114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15316;FRV75EPX08113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15315;FRV75EPX08112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15314;FRV75EPX08111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15313;FRV75EPX08107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15312;FRV75EPX08106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15311;FRV75EPX08105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15304;FRV75EPX08104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15303;FRV75EPX08103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15302;FRV75EPX08102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15301;FRV75EPX08101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15295;FRV75EPX08097;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15294;FRV75EPX08126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15293;FRV75EPX08131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15292;FRV75EPX08132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15291;FRV75EPX08151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15286;FRV75EPX08173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15285;FRV75EPX08172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15284;FRV75EPX08171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15283;FRV75EPX08156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15282;FRV75EPX08155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17085;FRV75EPX08154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0620010011;FRV75EPX08153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17092;FRV75EPX08152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19171;FRV75EPX08146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19163;FRV75EPX08133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19162;FRV75EPX08145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19161;FRV75EPX08144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19156;FRV75EPX08143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19155;FRV75EPX08142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19154;FRV75EPX08141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19153;FRV75EPX08136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19152;FRV75EPX08135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19151;FRV75EPX08134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19145;FRV75EPX08096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19144;FRV75EPX08094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19143;FRV75EPX07171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19142;FRV75EPX08093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19141;FRV75EPX08035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19136;FRV75EPX08034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19135;FRV75EPX08033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19134;FRV75EPX08032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19133;FRV75EPX08031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19132;FRV75EPX08026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19131;FRV75EPX08025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19127;FRV75EPX08024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19164;FRV75EPX08023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19172;FRV75EPX08022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19125;FRV75EPX08021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19173;FRV75EPX08014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20035;FRV75EPX08013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20034;FRV75EPX08012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20033;FRV75EPX08011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20032;FRV75EPX07175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20031;FRV75EPX07174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20027;FRV75EPX07173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20026;FRV75EPX07172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20025;FRV75EPX08036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20024;FRV75EPX08051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20023;FRV75EPX08052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20022;FRV75EPX08074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20021;FRV75EPX08092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20016;FRV75EPX08091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20015;FRV75EPX08084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20014;FRV75EPX08083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20013;FRV75EPX08082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20012;FRV75EPX08081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20011;FRV75EPX08076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19176;FRV75EPX08075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19175;FRV75EPX08073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19174;FRV75EPX08053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19126;FRV75EPX08072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19124;FRV75EPX08071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20041;FRV75EPX08065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19082;FRV75EPX08064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19077;FRV75EPX08063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19076;FRV75EPX08062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19075;FRV75EPX08061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19074;FRV75EPX08054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19073;FRV75EPX07013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19072;FRV75EPX07024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19071;FRV75EPX07011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19066;FRV75EPX06044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19065;FRV75EPX06011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19064;FRV75EPX06012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19063;FRV75EPX06013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19062;FRV75EPX06014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19061;FRV75EPX06015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19057;FRV75EPX06021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19056;FRV75EPX06022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19055;FRV75EPX06023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19054;FRV75EPX06024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19053;FRV75EPX06025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19052;FRV75EPX06026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19051;FRV75EPX06031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19045;FRV75EPX06032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19081;FRV75EPX06033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19083;FRV75EPX06034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19123;FRV75EPX06041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19084;FRV75EPX06042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19122;FRV75EPX05136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19121;FRV75E9015071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19116;FRV75EPX06117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19115;FRV75E9016033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19114;FRV75E9016061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19113;FRV75E9016053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19112;FRV75E9016052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19111;FRV75E9016051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19105;FRV75E9016043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19104;FRV75E9016042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19103;FRV75E9016041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19102;FRV75E9016032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19101;FRV75E9015073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19096;FRV75E9016031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19095;FRV75E9016023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19094;FRV75E9016022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19093;FRV75E9016021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19092;FRV75E9016013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19091;FRV75E9016012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19086;FRV75E9016011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19085;FRV75EPX06043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20036;FRV75E9015072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20042;FRV75EPX06045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17093;FRV75EPX06093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20171;FRV75EPX06112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20164;FRV75EPX06111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20163;FRV75EPX06105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20162;FRV75EPX06103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20161;FRV75EPX06102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20156;FRV75EPX06101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20155;FRV75EPX06094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20154;FRV75EPX06092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20153;FRV75EPX06114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20152;FRV75EPX06091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20151;FRV75EPX06082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20145;FRV75EPX06085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20144;FRV75EPX06084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20143;FRV75EPX06083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20142;FRV75EPX06086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20141;FRV75EPX06051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20136;FRV75EPX06113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20135;FRV75EPX06104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20134;FRV75EPX06115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20133;FRV75EPX06066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20132;FRV75EPX06061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20131;FRV75EPX06054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20165;FRV75EPX06081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20172;FRV75EPX06116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20125;FRV75EPX06053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20173;FRV75EPX06063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15053;FRV75EPX06064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20216;FRV75EPX06065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20215;FRV75EPX06071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20214;FRV75EPX06072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20204;FRV75EPX06073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20203;FRV75EPX06052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20202;FRV75EPX06074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20201;FRV75EPX06075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20196;FRV75EPX06076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20195;FRV75EPX06062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20194;FRSAESTA5058;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20193;FRSAESTA5062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20192;FRSAESTA5060;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20191;FRSAESTA5061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20185;FRSAESTA5081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20184;FRSAESTA5063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20183;FRSAESTA5064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20182;FRSAESTA5065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20181;FRSAESTA5067;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20175;FRSAESTA5069;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20174;FRSAESTA5071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20126;FRSAESTA5073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20124;FRSAESTA5074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20043;FRSAESTA5075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20082;FRSAESTA5076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20076;FRSAESTA5077;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20075;FRSAESTA5078;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20074;FRSAESTA5079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20073;FRSAESTA5080;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20072;FRSAESTA5056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20071;FRSAESTA5057;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20066;FRSAESTA5044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20065;FRSAESTA5055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20064;FRSAESTA5042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20063;FRSAESTA5031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20062;FRSAESTA5033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20061;FRSAESTA5035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20056;FRSAESTA5036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20055;FRSAESTA5037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20054;FRSAESTA5038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20053;FRSAESTA5039;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20052;FRSAESTA5040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20051;FRSAESTA5041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20046;FRSAESTA5043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20045;FRSAESTA5054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20044;FRSAESTA5083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20081;FRSAESTA5046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20083;FRSAESTA5047;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20123;FRSAESTA5048;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20084;FRSAESTA5049;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20122;FRSAESTA5050;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20121;FRSAESTA5051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20116;FRSAESTA5052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20115;FRSAESTA5053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20114;FRSAESTA5082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20113;FRSAESTA5112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20112;FRSAESTA5084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20111;FRSAESTA5012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20105;FRSAESTA4182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20104;FRSAESTA4177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20103;FRSAESTA4175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20102;FRSAESTA4173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20101;FRSAESTA4172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20096;FRSAESTA4171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20095;FRSAESTA4169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20094;FRSAESTA4167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20093;FRSAESTA4165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20092;FRSAESTA4163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20091;FRSAESTA4161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20086;FRSAESTA4158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX20085;FRSAESTA4156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19044;FRSAESTA4154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19043;FRSAEEMAD3022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19042;FRSAEEMAD3024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17232;FRSAEEMAD3026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17225;FRSAEEMAD3028;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17224;FRSAEEMAD3030;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17223;FRSAEEMAD3032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17222;FRSAEEMAD3034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17221;FRSAEEMAD3036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17216;FRSAESTA4152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17215;FRSAESTA4148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17214;FRSAESTA4146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17213;FRSAESTA4144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17212;FRSAESTA4142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17211;FRSAESTA5010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17206;FRSAESTA5014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17205;FRSAESTA5085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17204;FRSAESTA5016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17203;FRSAESTA5086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17202;FRSAESTA5087;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17201;FRSAESTA5088;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17197;FRSAESTA5089;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17196;FRSAESTA5090;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17195;FRSAESTA5091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17194;FRSAESTA5092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17231;FRSAESTA5093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17233;FRSAESTA5095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17192;FRSAESTA5097;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17234;FRSAESTA5099;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18026;FRSAESTA5101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18025;FRSAESTA5114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18024;FRSAESTA5116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18023;FRSAESTA5118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18022;FRSAESTA5120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18021;FRSAESTA5122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18017;FRSAESTA5123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18016;FRSAESTA5124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18015;FRSAESTA5125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18014;FRSAESTA5126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18013;FRSAESTA5127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18012;FRSAESTA5029;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18011;FRSAESTA5027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17256;FRSAESTA5025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17255;FRSAESTA5023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17254;FRSAESTA5021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17253;FRSAESTA5059;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17252;FRSAESTA5203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17251;FRSAESTA5128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17236;FRTCBE003992;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17235;FRIPKEMRO11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17193;FRIPKEMRO10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17191;FRIPKEMRO1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19041;FRIPKEMHV1004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17143;FRIPKEMHV1003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17141;FRIPKEMHV1002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17134;FRIPKEMHV1001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17133;FRIPKEMG51024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17132;FRIPKEMG51023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17131;FRIPKEMBA0003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17124;FRIPKEMBA0002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17123;FRIPKEMBA0001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17122;FRIPKEARC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17121;FRIPKEARC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17116;FRIPKEALH0004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17115;FRIPKEALH0003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17114;FRIPKEALH0002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17113;FRIPKEMRO2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17112;FRIPKEMRO3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17111;FRIPKEMRO4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17105;FRIPKENVR022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17104;FRIPKENVR041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17103;FRIPKENVR040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17102;FRIPKENVR039;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17101;FRIPKENVR026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17094;FRIPKENVR025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17142;FRIPKENVR024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17144;FRIPKENVR023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17185;FRIPKENVR021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17145;FRIPKEMRO5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17184;FRIPKENVR020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17183;FRIPKENVR019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17182;FRIPKENVR018;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17181;FRIPKEMRO9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17174;FRIPKEMRO8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17173;FRIPKEMRO7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17172;FRIPKEMRO6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17171;FRIPKEALH0001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17167;FRTCBE003991;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17166;FRIPKENVR043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17165;FRTCBE005447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17164;FRTCBE004398;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17163;FRTCBE004397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17162;FRTCBE003952;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17161;FRTCBE003951;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17155;FRTCBE003950;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17154;FRTCBE003948;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17153;FRTCBE003947;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17152;FRSAESTA5308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17151;FRSAESTA5307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX17146;FRSAESTA5306;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18031;FRSAESTA5305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18032;FRSAESTA5304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18033;FRSAESTA5303;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18157;FRSAESTA5302;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18155;FRSAESTA5301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18154;FRSAESTA5300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18153;FRSAESTA5299;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18152;FRTCBE004399;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18151;FRTCBE004400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18145;FRTCBE004401;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18144;FRTCBE004442;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18143;FRTCBE005446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18142;FRTCBE005445;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18141;FRTCBE005444;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18136;FRTCBE005206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18135;FRTCBE005205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18134;FRTCBE005204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18133;FRTCBE005203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18132;FRTCBE004441;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18131;FRTCBE004405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18125;FRTCBE004440;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18124;FRTCBE004439;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18123;FRTCBE004410;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18122;FRTCBE004409;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18121;FRTCBE004408;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18156;FRTCBE004407;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18161;FRTCBE004406;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18034;FRIPKENVR042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18162;FRIPKENVR044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19036;FRSAESTA5297;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19035;FRSAEEMAD0165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19034;FRSAEEMAD2034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19033;FRSAEEMAD2032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19032;FRSAEEMAD0181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19031;FRSAEEMAD0180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19027;FRSAEEMAD0179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19026;FRSAEEMAD0178;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19025;FRSAEEMAD0177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19024;FRSAEEMAD0176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19023;FRSAEEMAD0175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19022;FRSAEEMAD0174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19021;FRSAEEMAD0173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19014;FRSAEEMAD0172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19013;FRSAEEMAD0171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19012;FRSAEEMAD0170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX19011;FRSAEEMAD0169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18166;FRSAEEMAD0168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18165;FRSAEEMAD0167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18164;FRSAEEMAD2036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18163;FRSAEEMAD2038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18116;FRSAEEMAD2040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18115;FRSAEEMAD2090;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18114;FRSAESTA4139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18113;FRSAEEMAD3020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18072;FRSAEEMAD3018;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18071;FRSAEEMAD3016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18067;FRSAEEMAD3014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18066;FRSAEEMAD3012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18065;FRSAEEMAD3010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18064;FRSAEEMAD2053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18063;FRSAEEMAD2042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18062;FRSAEEMAD2051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18061;FRSAEEMAD2050;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18056;FRSAEEMAD2049;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18055;FRSAEEMAD2048;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18054;FRSAEEMAD2047;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18053;FRSAEEMAD2046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18052;FRSAEEMAD2044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18051;FRSAEEMAD0166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18044;FRSAEEMAD0164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18043;FRIPKENVR045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18042;FRSAEEMAD0163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18041;FRSAEELAG2053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18036;FRSAEEJBO2002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18035;FRSAEEJBO2001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18073;FRSAEEJBO1155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18074;FRSAEEJBO1154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18075;FRSAEEJBO1153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18094;FRSAEEJBO1152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18112;FRSAEEJBO1151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18111;FRSAEEJBO1150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18105;FRSAEEJBO1149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18104;FRSAEEJBO1148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18103;FRSAEEJBO1147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18102;FRSAEEJBO1146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18101;FRS61E61497A16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18096;FRS61E61497A15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18095;FRIPKENVR047;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18093;FRIPKENVR046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18076;FRSAEELAG2054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18092;FRSAEELAG2055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18091;FRSAEELAG2056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18086;FRSAEEMAD0155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18085;FRSAEEMAD0162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18084;FRSAEEMAD0161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18083;FRSAEEMAD0160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18082;FRSAEEMAD0159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18081;FRSAEEMAD0158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX18077;FRSAEEMAD0157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15054;FRSAEEMAD0156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX16173;FRSAEEMAD0154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15052;FRSAEELAG2057;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803430041;FRSAEEMAD0153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803430101;FRSAEEMAD0152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803430091;FRSAEELAG2062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803430081;FRSAEELAG2061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803430071;FRSAEELAG2060;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803430061;FRSAEELAG2059;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803430051;FRSAEELAG2058;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803430031;FRSAESTA5298;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803420031;FRSAESTA5296;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803430021;FRSAESTA5129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803430011;FRSAESTA5172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803420081;FRSAESTA5190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803420071;FRSAESTA5189;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803420061;FRSAESTA5188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803420051;FRSAESTA5187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440011;FRSAESTA5186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440021;FRSAESTA5185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440031;FRSAESTA5184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440041;FRSAESTA5183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440051;FRSAESTA5182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440061;FRSAESTA5181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440071;FRSAESTA5180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440081;FRSAESTA5179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440091;FRSAESTA5178;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440101;FRSAESTA5177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440111;FRSAESTA5176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440121;FRSAESTA5175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440131;FRSAESTA5174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440141;FRSAESTA5191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440151;FRSAESTA5192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803440161;FRSAESTA5193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803450011;FRSAESTA5204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803420041;FRSAESTA5211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803420021;FRSAESTA5210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803450031;FRSAESTA5209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803390011;FRSAESTA5208;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803390071;FRSAESTA5207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803390061;FRSAESTA5206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803390051;FRSAESTA5205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803390041;FRSAESTA5202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803390031;FRSAESTA5194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803390021;FRSAESTA5201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802990081;FRSAESTA5200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803420011;FRSAESTA5199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802990071;FRSAESTA5198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802990061;FRSAESTA5197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802990051;FRSAESTA5196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802990041;FRSAESTA5195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802990031;FRSAESTA5173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802990021;FRSAESTA5171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803390081;FRSAESTA5213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803400011;FRSAESTA5170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803400021;FRSAESTA5149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803400031;FRSAESTA5148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803400041;FRSAESTA5147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803400051;FRSAESTA5146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803400061;FRSAESTA5145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803400071;FRSAESTA5144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803400081;FRSAESTA5143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803410011;FRSAESTA5142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803410021;FRSAESTA5141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803410031;FRSAESTA5140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803410041;FRSAESTA5139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803410051;FRSAESTA5138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803410061;FRSAESTA5137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803410071;FRSAESTA5136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803410081;FRSAESTA5134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803450021;FRSAESTA5132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803450041;FRSAESTA5130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802940011;FRSAESTA5150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560041;FRSAESTA5151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560101;FRSAESTA5152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560091;FRSAESTA5162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560081;FRSAESTA5169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560071;FRSAESTA5168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560061;FRSAESTA5167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560051;FRSAESTA5166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560031;FRSAESTA5165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803540011;FRSAESTA5164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560021;FRSAESTA5163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560011;FRSAESTA5161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803550061;FRSAESTA5153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803550051;FRSAESTA5160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803540041;FRSAESTA5159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803540031;FRSAESTA5158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560111;FRSAESTA5157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560121;FRSAESTA5156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560131;FRSAESTA5155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560141;FRSAESTA5154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560151;FRSAESTA5212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803560161;FRSAESTA5214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570011;FRSAESTA5295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570021;FRSAESTA5256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570031;FRSAESTA5274;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570041;FRSAESTA5273;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570051;FRSAESTA5272;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570061;FRSAESTA5271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570071;FRSAESTA5270;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570081;FRSAESTA5269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570091;FRSAESTA5268;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570101;FRSAESTA5267;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570111;FRSAESTA5266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803540021;FRSAESTA5265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803530041;FRSAESTA5264;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460011;FRSAESTA5263;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460091;FRSAESTA5262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460151;FRSAESTA5261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460141;FRSAESTA5260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460131;FRSAESTA5259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460121;FRSAESTA5258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460111;FRSAESTA5275;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460101;FRSAESTA5276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460081;FRSAESTA5277;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803530031;FRSAESTA5287;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460071;FRSAESTA5294;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460061;FRSAESTA5293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460051;FRSAESTA5292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460041;FRSAESTA5291;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460031;FRSAESTA5290;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460021;FRSAESTA5289;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803460161;FRSAESTA5288;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803470011;FRSAESTA5286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803480011;FRSAESTA5278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803490011;FRSAESTA5285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803490021;FRSAESTA5284;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803490031;FRSAESTA5283;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803490041;FRSAESTA5282;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803500011;FRSAESTA5281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803500021;FRSAESTA5280;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803500031;FRSAESTA5279;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803500041;FRSAESTA5257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803520011;FRSAESTA5255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803520021;FRSAESTA5215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803520031;FRSAESTA5254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803520041;FRSAESTA5232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803530011;FRSAESTA5231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803530021;FRSAESTA5230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802990011;FRSAESTA5229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802880061;FRSAESTA5228;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570131;FRSAESTA5227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800720011;FRSAESTA5226;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801170021;FRSAESTA5225;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801170013;FRSAESTA5224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801170011;FRSAESTA5223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800720041;FRSAESTA5222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800720031;FRSAESTA5221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800720021;FRSAESTA5220;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800710081;FRSAESTA5219;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800700081;FRSAESTA5218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800710071;FRSAESTA5217;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800710061;FRSAESTA5216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800710051;FRSAESTA5233;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800710041;FRSAESTA5234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800710031;FRSAESTA5235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800710021;FRSAESTA5245;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801170022;FRSAESTA5252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801230011;FRSAESTA5251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801230013;FRSAESTA5250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801380011;FRSAESTA5249;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801380021;FRSAESTA5248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801380031;FRSAESTA5247;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801380041;FRSAESTA5246;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801380051;FRSAESTA5244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801380081;FRSAESTA5236;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08015500111;FRSAESTA5243;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08015500211;FRSAESTA5242;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801550031;FRSAESTA5241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801550041;FRSAESTA5240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801620011;FRSAESTA5239;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801620021;FRSAESTA5238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801720011;FRSAESTA5237;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801720021;FRSAESTA4140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800710011;FRIPKEGTH0006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800700071;FRSAESTA4138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801720041;FRIPKEHDV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800560081;FRIPKEMLJ5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630061;FRIPKEMLJ4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630051;FRIPKEMLJ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630041;FRIPKEMLJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630031;FRIPKEMLJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630021;FRIPKEHDV9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630011;FRIPKEHDV8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800560071;FRIPKEHDV7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800700061;FRIPKEHDV6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800560061;FRIPKEHDV5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800560051;FRIPKEHDV4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800560041;FRIPKEHDV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800560031;FRIPKEMLJ7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800560021;FRIPKEHDV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800560011;FRIPKECDM8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630071;FRIPKECDM7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630081;FRIPKECDM6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630091;FRIPKECDM5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630101;FRIPKECDM4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630111;FRIPKECDM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630121;FRIPKECDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630131;FRIPKECDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630141;FRIPKENRM021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630151;FRIPKENRM020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800630161;FRIPKEMLJ6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08006400111;FRIPKEMLJ8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08006400211;FRIPKEPAJ027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800700011;FRIPKEPAJ014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800700021;FRIPKEPAJ025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800700031;FRIPKEPAJ024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800700041;FRIPKEPAJ023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800700051;FRIPKEPAJ022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801720031;FRIPKEPAJ021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801720051;FRIPKEPAJ020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802880051;FRIPKEPAJ019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802590021;FRIPKEPAJ018;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802610041;FRIPKEPAJ017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802610031;FRIPKEPAJ016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802610021;FRIPKEPAJ015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802610011;FRIPKEPAJ013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802590041;FRIPKEPAJ001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802590031;FRIPKEPAJ012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802590011;FRIPKEPAJ011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801980031;FRIPKEPAJ010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802320021;FRIPKEPAJ009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802320011;FRIPKEPAJ008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802000041;FRIPKEPAJ007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802000031;FRIPKEPAJ006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802000021;FRIPKEPAJ005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802000011;FRIPKEPAJ004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15051;FRIPKEPAJ003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802610061;FRIPKEPAJ002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802610071;FRIPKENRM019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802610081;FRIPKENRM018;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08026611;FRIPKENRM017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08026621;FRIPKEGTH0005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08026631;FRIPKEGTH0017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08026641;FRIPKEGTH0016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08026651;FRIPKEGTH0015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08026661;FRIPKEGTH0014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08026671;FRIPKEGTH0013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08026681;FRIPKEGTH0012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08026691;FRIPKEGTH0011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802880011;FRIPKEGTH0010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802880021;FRIPKEGTH0009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802880031;FRIPKEGTH0008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802880041;FRIPKEGTH0007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801980041;FRIPKEGTH0004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801970081;FRIPKENRM016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801720061;FRIPKEGTH0003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801750131;FRIPKEGTH0002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801830011;FRIPKEGTH0001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801790011;FRTCBE007040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801780011;FRTCBE007039;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801750161;FRTCBE007038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801750151;FRTCBE007037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801750141;FRTCBE006767;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801750021;FRTCBE006766;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801970071;FRTCBE006765;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801750011;FRTCBE006764;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801730041;FRIPKEGTH0018;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801730031;FRIPKEGTH0019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801730011;FRIPKEGTH0020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801720081;FRIPKEGTH0021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801720071;FRIPKENRM015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801830021;FRIPKENRM014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08018811;FRIPKENRM013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF08018831;FRIPKENRM012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801910011;FRIPKENRM011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801910031;FRIPKENRM010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801930021;FRIPKENRM009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801930031;FRIPKENRM008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801930041;FRIPKENRM007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801930051;FRIPKENRM006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801930061;FRIPKENRM005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801930071;FRIPKENRM004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801970011;FRIPKENRM003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801970021;FRIPKENRM002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801970031;FRIPKENRM001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801970041;FRIPKEGTH0029;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801970051;FRIPKEGTH0028;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0801970061;FRIPKEGTH0027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570121;FRIPKEGTH0026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570141;FRIPKEGTH0025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015061;FRIPKEGTH0024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9008042;FRIPKEGTH0023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9010012;FRIPKEGTH0022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9010011;FRIPKEPAJ026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9009013;FRIPKEPAJ028;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9009012;FRTCBE006863;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9009011;FRTCBE005665;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9008043;FRTCBE006102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9008041;FRTCBE006101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007062;FRTCBE006100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9008033;FRTCBE006099;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9008032;FRTCBE005672;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9008031;FRTCBE005671;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9008023;FRTCBE005670;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9008022;FRTCBE005669;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9008021;FRTCBE005668;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9010013;FRTCBE005667;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9010021;FRTCBE005666;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9010022;FRTCBE005664;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9010023;FRTCBE006840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9011011;FRTCBE005663;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9011012;FRTCBE005662;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9011013;FRTCBE005661;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9011021;FRTCBE005660;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9011022;FRTCBE005659;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9011023;FRTCBE005658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9011031;FRTCBE005657;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9011032;FRTCBE005656;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9011033;FRTCBE005655;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9011041;FRTCBE005654;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9011042;FRTCBE005653;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9011043;FRTCBE006839;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012011;FRTCBE006841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007063;FRIPKEPAJ029;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007061;FRTCBE007217;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012013;FRTCBE007222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9006013;FRTCBE007223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9006033;FRTCBE008063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9006032;FRTCBE008064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9006031;FRTCBE008065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9006023;FRTCBE008066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9006022;FRIPKEFRA001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9006021;FRIPKEFRA002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9006012;FRTCBE007221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007053;FRTCBE007220;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9006011;FRTCBE007218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9005033;FRTCBE007215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9005032;FRTCBE006842;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9005031;FRTCBE007214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9005023;FRTCBE007213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9005022;FRTCBE007212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9006041;FRTCBE007211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9006042;FRTCBE007210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9006043;FRTCBE006848;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007011;FRTCBE006847;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007012;FRTCBE006846;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007013;FRTCBE006845;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007021;FRTCBE006844;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007022;FRTCBE006843;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007023;FRTCBE005652;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007031;FRTCBE005651;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007032;FRTCBE005650;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007033;FRIPKEPSI002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007041;FRIPKEPSI013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007042;FRIPKEPSI012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007043;FRIPKEPSI011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007051;FRIPKEPSI010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9007052;FRIPKEPSI009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012012;FRIPKEPSI008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012021;FRIPKEPSI007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9005013;FRIPKEPSI006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9014013;FRIPKEPSI005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9014033;FRIPKEPSI004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9014032;FRIPKEPSI003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9014031;FRIPKEPSI001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9014023;FRTCBE005649;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9014022;FRIPKEPAJ040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9014021;FRIPKEPAJ039;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9014012;FRIPKEPAJ038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013053;FRIPKEPAJ037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9014011;FRIPKEPAJ036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013073;FRIPKEPAJ035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013072;FRIPKEPAJ034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013071;FRIPKEPAJ033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013063;FRIPKEPAJ032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013062;FRIPKEPAJ031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9014041;FRIPKEPAJ030;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9014042;FRIPKEPSI014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9014043;FRIPKEPSI015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015011;FRIPKEPSI016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015012;FRIPKEPSI017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015013;FRTCBE005648;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015021;FRTCBE005647;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015022;FRTCBE005640;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015023;FRTCBE005639;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015031;FRTCBE005638;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015032;FRTCBE005637;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015033;FRTCBE005636;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015041;FRTCBE005635;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015042;FRTCBE005634;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015043;FRTCBE005633;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015051;FRTCBE005632;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015052;FRTCBE005631;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013061;FRTCBE005630;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013052;FRTCBE005629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012022;FRTCBE005628;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012051;FRTCBE005627;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012071;FRIPKEVPM4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012063;FRIPKEVPM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012062;FRIPKEVPM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012061;FRIPKEVPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012053;FRIPKEPSI020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012052;FRIPKEPSI019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012043;FRIPKEPSI018;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013051;FRTCBE006864;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012042;FRTCBE006862;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012041;FRSAESTA4137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012033;FRSAESTA4002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012032;FRIPKEPTE006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012031;FRIPKEPTE007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012023;FRIPKEPTE008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012072;FRIPKEPTE009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012073;FRIPKEPTE010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012081;FRIPKEPTE011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012082;FRIPKEPTE012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9012083;FRIPKEPTE013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013011;FRIPKEPTE014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013012;FRIPKEPTE015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013013;FRSAESTA4001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013021;FRSAESTA4003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013022;FRIPKEPTE004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013023;FRSAESTA4004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013031;FRSAESTA4006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013032;FRSAESTA4008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013033;FRSAESTA4010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013041;FRSAESTA4012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013042;FRSAESTA4025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9013043;FRSAESTA4027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9005021;FRSAESTA4029;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9005012;FRSAESTA4031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570151;FRSAESTA4033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803630131;FRSAESTA4035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803640101;FRIPKEPTE005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803640092;FRIPKEPTE003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803640091;FRIPKECTV10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803640082;FRIPKEPRA009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803640081;FRSAEEMAD3040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803630141;FRIPKEFRA003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803630031;FRIPKEFRA004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803620051;FRIPKEPRA001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803630021;FRIPKEPRA002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803630011;FRIPKEPRA003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803620072;FRIPKEPRA004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803620071;FRIPKEPRA005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803620062;FRIPKEPRA006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803620061;FRIPKEPRA007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803640102;FRIPKEPRA008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803710011;FRIPKEPRA010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803710021;FRIPKEPTE002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803710031;FRIPKEPRA011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803710041;FRIPKEPRA012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803710051;FRIPKEPRA013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803710061;FRIPKEPRA014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803710071;FRIPKEPRA015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803710081;FRIPKEPRA016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803710091;FRIPKEPRA017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803710101;FRIPKEPRA018;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803710111;FRIPKEPRA019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803710121;FRIPKEPRA020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803720011;FRIPKEPTE001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803730011;FRSAESTA4037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803730021;FRSAESTA4038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803730031;FRSAESTA4039;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803620052;FRSAESTA4117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803620042;FRSAESTA4087;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803730051;FRSAESTA4088;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803580071;FRSAESTA4089;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803610011;FRSAESTA4090;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803590041;FRSAESTA4091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803590031;FRSAESTA4092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803590021;FRSAESTA4112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803590011;FRSAESTA4113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803580081;FRSAESTA4114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803580061;FRSAESTA4115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803620041;FRSAESTA4116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803580051;FRSAESTA4118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803580041;FRSAESTA4040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803580031;FRSAESTA4119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803580021;FRSAESTA4121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803580011;FRSAESTA4123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803570161;FRSAESTA4125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803610012;FRSAESTA4127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803610021;FRSAESTA4129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803610022;FRSAESTA4131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803610031;FRSAESTA4133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803610041;FRSAESTA4134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803610042;FRSAESTA4135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803610051;FRSAESTA4136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803610052;FRSAESTA4086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803610061;FRSAESTA4085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803610062;FRSAESTA4084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803610071;FRSAESTA4083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803610072;FRSAESTA4041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803610081;FRSAESTA4042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803620011;FRSAESTA4043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803620021;FRSAESTA4044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803620031;FRSAESTA4045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803620032;FRSAESTA4046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803730041;FRSAESTA4047;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803730061;FRSAESTA4048;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9005011;FRSAESTA4049;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008404;FRSAESTA4050;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9001021;FRSAESTA4051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9001013;FRSAESTA4069;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9001012;FRSAESTA4071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9001011;FRSAESTA4073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008454;FRSAESTA4074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008453;FRSAESTA4075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008403;FRSAESTA4076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005377;FRSAESTA4077;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008390;FRSAESTA4078;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008389;FRSAESTA4079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007580;FRSAESTA4080;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007579;FRSAESTA4081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005380;FRSAESTA4082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005379;FRIPKECTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9001022;FRIPKECTV11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9001023;FRTCBE006861;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9002011;FRIPKEPWA004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9002012;FRIPKEPWA015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9002013;FRIPKEPWA014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9002021;FRIPKEPWA013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9002022;FRIPKEPWA012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9002023;FRIPKEPWA011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9002031;FRIPKEPWA010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9002032;FRIPKEPWA009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9002033;FRIPKEPWA008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9003011;FRIPKEPWA007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9003012;FRIPKEPWA006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9003013;FRIPKEPWA005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9004021;FRIPKEPWA003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9004022;FRIPKEPWA017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9004023;FRIPKEPWA002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005378;FRIPKEPWA001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004396;FRIPKEPPM0016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803730071;FRIPKEPPM0015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803740071;FRIPKEPPM0014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760031;FRIPKEPPM0013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760021;FRIPKEPPM0012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760011;FRIPKEPPM0011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803740101;FRIPKEPPM0010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803740091;FRIPKEPPM0009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803740081;FRIPKEPPM0008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803740061;FRIPKEPWA016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004395;FRIPKEPWA018;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803740051;FRIPKECTV12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803740041;FRTCBE006258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803740031;FRTCBE006269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803740021;FRTCBE006268;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803740011;FRTCBE006267;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0803730081;FRTCBE006266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760041;FRTCBE006265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760051;FRTCBE006264;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760061;FRTCBE006263;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760071;FRTCBE006262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760081;FRTCBE006261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760091;FRTCBE006260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760101;FRTCBE006259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760111;FRTCBE006257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760121;FRIPKEPWA019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760131;FRTCBE006256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760141;FRTCBE006255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760151;FRTCBE006254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760161;FRTCBE006253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760171;FRTCBE006252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760181;FRTCBE005646;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760191;FRTCBE005645;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0885760201;FRTCBE005644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800480081;FRTCBE005643;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800480071;FRTCBE005642;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800480061;FRTCBE005641;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589690061;FRIPKEPPM0007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589680081;FRIPKEPPM0006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589690011;FRIPKEPPM0005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589690021;FRIPKECTV5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589690031;FRIPKEGRI0007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589690041;FRIPKEGRI0006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589690051;FRIPKEGRI0005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589690071;FRIPKEGRI0004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590100051;FRIPKEGRI0003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589690081;FRIPKEGRI0002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590100011;FRIPKEGRI0001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590100013;FRIPKECTV9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590100021;FRIPKECTV8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590100023;FRIPKECTV7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590100031;FRIPKECTV6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589680071;FRIPKECTV4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589680061;FRIPKEPPM0004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589680051;FRIPKECTV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589680041;FRIPKECTV21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589680031;FRIPKECTV20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589680021;FRIPKECTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589680011;FRIPKECTV19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589670101;FRIPKECTV18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589670081;FRIPKECTV17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589670071;FRIPKECTV16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589670061;FRIPKECTV15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589670051;FRIPKECTV14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589670021;FRIPKECTV13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589670011;FRIPKEGRI0008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589310021;FRIPKEGRI0009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589310011;FRIPKEGRI0010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589110081;FRIPKEGRI0011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590100041;FRIPKEPPM0003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590100061;FRIPKEPPM0002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589110051;FRIPKEPPM0001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900101;FRIPKENEM0015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900041;FRIPKENEM0014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900051;FRIPKENEM0013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900061;FRIPKENEM0012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900071;FRIPKENEM0011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900081;FRIPKENEM0010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900091;FRIPKENEM0009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900111;FRIPKENEM0008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590100071;FRIPKENEM0007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900121;FRIPKENEM0006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900131;FRIPKENEM0005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900141;FRIPKENEM0004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900151;FRIPKENEM0003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900161;FRIPKENEM0002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591930011;FRIPKENEM0001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900031;FRIPKEGRI0016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900021;FRIPKEGRI0015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591900011;FRIPKEGRI0014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591890051;FRIPKEGRI0013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591890041;FRIPKEGRI0012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591890031;FRSAEEMAD3038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591890021;FRSAESTA5253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591890011;FRSAEEMAD3042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590510091;FRSAEEPDA4274;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590420081;FRSAEEPDA4263;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590420071;FRSAEEPDA4264;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590420061;FRSAEEPDA4265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590420051;FRSAEEPDA4266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590420041;FRSAEEPDA4267;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590420031;FRSAEEPDA4268;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590420021;FRSAEEPDA4269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0590420011;FRSAEEPDA4270;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589110061;FRSAEEPDA4271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589110041;FRSAEEPDA4272;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591930031;FRSAEEPDA4273;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0425890011;FRSAEEPDA4275;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0422360031;FRSAEEPDA4261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0422360041;FRSAEEPDA4276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0423310011;FRSAEEPDA4277;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0423310021;FRSAEEPDA4278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0423310031;FRSAEEPDA4279;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0423310041;FRSAEEPDA4280;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0425890021;FRSAEEPDA4281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0426770041;FRSAEEPDA4282;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0425950011;FRSAEEPDA4283;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0425950021;FRSAEEPDA4284;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0425950031;FRSAEEPDA4285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0425950041;FRSAEEPDA4286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0426770011;FRSAEEPDA4262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0426770021;FRSAEEPDA4260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0422360021;FRSAEEMADAVIS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0422360011;FRSAEEPDA4245;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0392950021;FRSAEEPDA4199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0392950011;FRSAEEPDA4200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0370720011;FRSAEEPDA4236;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0264120013;FRSAEEPDA4237;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0264120011;FRSAEEPDA4238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0115120023;FRSAEEPDA4239;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0115120021;FRSAEEPDA4240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0115120013;FRSAEEPDA4241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0115120011;FRSAEEPDA4242;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0102630041;FRSAEEPDA4243;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0102630033;FRSAEEPDA4244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0102630031;FRSAEEPDA4247;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0102630023;FRSAEEPDA4259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0102630021;FRSAEEPDA4248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0102630012;FRSAEEPDA4249;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0426770031;FRSAEEPDA4250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0502140011;FRSAEEPDA4251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589110031;FRSAEEPDA4252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0585000021;FRSAEEPDA4253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510460043;FRSAEEPDA4254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510460051;FRSAEEPDA4255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510460052;FRSAEEPDA4256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510460061;FRSAEEPDA4257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0580160011;FRSAEEPDA4258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0585000011;FRSAEEPDA4287;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0585000041;FRSAEEPDA4288;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0502140021;FRSAEEPDA4289;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0585000042;FRSAEEPDA4355;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0585430011;FRSAEEPDA4320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0585430021;FRSAEEPDA4345;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0587420011;FRSAEEPDA4346;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589110011;FRSAEEPDA4347;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0589110021;FRSAEEPDA4348;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510460041;FRSAEEPDA4349;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510460033;FRSAEEPDA4350;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510460031;FRSAEEPDA4351;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510460022;FRSAEEPDA4352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510460021;FRSAEEPDA4353;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510460011;FRSAEEPDA4354;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510240052;FRSAEEPDA4356;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510240051;FRSAEEPDA4290;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510240041;FRSAEEPDA4357;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510240031;FRSAEEPDA4358;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510240021;FRSAEEPDA4359;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510240013;FRSAEEPDA4360;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0510240011;FRSAEEPDA4361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0504990021;FRSAEEPDA4362;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0504990011;FRSAEEPDA4363;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0504620021;FRSAEEPDA4364;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0504620011;FRSAEEPDA4365;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591930021;FRSAEEPDA4366;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591930041;FRSAEEPDA4367;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800480051;FRSAEEPDA4319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750061;FRSAEEPDA4318;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597480081;FRSAEEPDA4317;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750011;FRSAEEPDA4316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750021;FRSAEEPDA4291;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750031;FRSAEEPDA4292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750041;FRSAEEPDA4293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750051;FRSAEEPDA4294;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750071;FRSAEEPDA4295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750151;FRSAEEPDA4296;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750081;FRSAEEPDA4297;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750091;FRSAEEPDA4298;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750101;FRSAEEPDA4299;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750111;FRSAEEPDA4300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750121;FRSAEEPDA4301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750131;FRSAEEPDA4302;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597480071;FRSAEEPDA4303;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597480061;FRSAEEPDA4304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597480051;FRSAEEPDA4305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597480041;FRSAEEPDA4307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597480031;FRSAEEPDA4308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597480021;FRSAEEPDA4309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597480011;FRSAEEPDA4311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597430041;FRSAEEPDA4312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597430031;FRSAEEPDA4313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597430021;FRSAEEPDA4314;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597430011;FRSAEEPDA4315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597360081;FRSAEEPDA4198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597360071;FRSAEEPDA4197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597360061;FRSAEEPDA4196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597360051;FRSAEEPDA4125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597360041;FRSAEEPDA4114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597360031;FRSAEEPDA4115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750141;FRSAEEPDA4116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597750161;FRSAEEPDA4117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597360011;FRSAEEPDA4118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599830022;FRSAEEPDA4119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF05991600121;FRSAEEPDA4120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599640011;FRSAEEPDA4121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599640021;FRSAEEPDA4122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599830011;FRSAEEPDA4123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599830012;FRSAEEPDA4124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599830021;FRSAEEPDA4126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599830031;FRSAEEPDA4140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597790011;FRSAEEPDA4127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599830032;FRSAEEPDA4128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599830041;FRSAEEPDA4129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599830051;FRSAEEPDA4130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599940011;FRSAEEPDA4132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599940021;FRSAEEPDA4133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599940031;FRSAEEPDA4134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599030041;FRSAEEPDA4135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599030031;FRSAEEPDA4136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599030021;FRSAEEPDA4137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599030011;FRSAEEPDA4138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599020081;FRSAEEPDA4113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599020051;FRSAEEPDA4112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599020041;FRSAEEPDA4111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599020031;FRSAEEPDA4110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599020021;FRSAEEMADAVIS4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599020011;FRSAEEMADAVIS5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597970011;FRSAEEPDA2024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597920011;FRSAEEPDA2258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597860021;FRSAEEPDA2259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597860011;FRSAEEPDA2260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597790023;FRSAEEPDA2261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597790021;FRSAEEPDA2262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597790013;FRSAEEPDA2263;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0597360021;FRSAEEPDA2264;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596940081;FRSAEEPDA2265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591930051;FRSAEEPDA2266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF05959900111;FRSAEEPDA2267;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0594990051;FRSAEEPDA4056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0594990061;FRSAEEPDA4057;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0594990071;FRSAEEPDA4058;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0594990081;FRSAEEPDA4059;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0595110011;FRSAEEPDA4060;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0595580011;FRSAEEPDA4061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0595990021;FRSAEEPDA4062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF059600003;FRSAEEPDA4107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0595990031;FRSAEEPDA4108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0595990041;FRSAEEPDA4109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0595990051;FRSAEEPDA4139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0595990061;FRSAEEPDA4141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0595990071;FRSAEEPDA4195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0595990081;FRSAEEPDA4182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0594990041;FRSAEEPDA4170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0594990031;FRSAEEPDA4171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0594990021;FRSAEEPDA4172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0594990011;FRSAEEPDA4173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0594720061;FRSAEEPDA4174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0594720051;FRSAEEPDA4175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0594720041;FRSAEEPDA4177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0594720031;FRSAEEPDA4178;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0594720021;FRSAEEPDA4179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0594720011;FRSAEEPDA4180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0593800033;FRSAEEPDA4181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0593800031;FRSAEEPDA4183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0593800021;FRSAEEPDA4142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0593800011;FRSAEEPDA4184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591930081;FRSAEEPDA4185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591930071;FRSAEEPDA4186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0591930061;FRSAEEPDA4187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF059600001;FRSAEEPDA4188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596000051;FRSAEEPDA4189;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596940071;FRSAEEPDA4190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596720061;FRSAEEPDA4191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596710081;FRSAEEPDA4192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596720011;FRSAEEPDA4193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596720021;FRSAEEPDA4194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596720031;FRSAEEPDA4169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596720041;FRSAEEPDA4168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596720051;FRSAEEPDA4167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596720071;FRSAEEPDA4166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596000061;FRSAEEPDA4143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596720081;FRSAEEPDA4144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596940011;FRSAEEPDA4145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596940021;FRSAEEPDA4146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596940031;FRSAEEPDA4147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596940051;FRSAEEPDA4148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596940061;FRSAEEPDA4149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596710071;FRSAEEPDA4150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596710061;FRSAEEPDA4151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596710041;FRSAEEPDA4152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596710031;FRSAEEPDA4153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596710021;FRSAEEPDA4154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596710011;FRSAEEPDA4155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596280042;FRSAEEPDA4156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596280041;FRSAEEPDA4157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596280032;FRSAEEPDA4158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596280031;FRSAEEPDA4159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596280023;FRSAEEPDA4160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596280021;FRSAEEPDA4161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596280013;FRSAEEPDA4162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596280011;FRSAEEPDA4163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596140021;FRSAEEPDA4164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596140011;FRSAEEPDA4165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0596020051;FRSAEEPDA4368;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0102630011;FRSAEEPDA4369;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0101320021;FRSAEEPDA4370;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0101320011;FRTCBE004207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782440061;FRTCBE003959;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783330041;FRTCBE003960;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783330031;FRTCBE003961;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783330021;FRTCBE003963;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783330011;FRTCBE003964;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782440081;FRTCBE003970;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782440071;FRTCBE003971;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782440051;FRTCBE003974;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782430051;FRTCBE004035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782440041;FRTCBE004037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782440031;FRTCBE004038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782440021;FRTCBE004208;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782440011;FRTCBE004513;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782430081;FRTCBE004260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782430071;FRTCBE004261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783330051;FRTCBE004416;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783330061;FRTCBE004417;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783330071;FRTCBE004418;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783860011;FRTCBE004419;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783860021;FRTCBE004509;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783860031;FRTCBE004510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783860041;FRTCBE004511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783870011;FRTCBE003958;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783870021;FRTCBE003955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783870031;FRTCBE003954;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783870041;FRTCBE003946;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783870051;FRTCBE003570;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783870061;FRTCBE003660;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783870071;FRTCBE003661;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0783870081;FRTCBE003662;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785310011;FRTCBE003663;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785310021;FRTCBE003899;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782430061;FRTCBE003902;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782430041;FRTCBE003903;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785460011;FRTCBP00694;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780750031;FRTCBE003907;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0781710041;FRTCBE003923;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0781710021;FRTCBE003924;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0781710011;FRTCBE003927;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0781180011;FRTCBE003928;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780750043;FRTCBE003929;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780750041;FRTCBE003930;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780750021;FRTCBE003933;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782430031;FRTCBE003934;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780750013;FRTCBE003937;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780750011;FRTCBE003938;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780690021;FRTCBE003941;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780690011;FRTCBE003942;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780620011;FRTCBE003945;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780610011;FRTCBE004512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0781830011;FRTCBE004514;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0781830021;FRTCBE003556;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0781830031;FRTCBE006411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0781830041;FRTCBE006363;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782180011;FRTCBE006364;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782180021;FRTCBE006365;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782180031;FRTCBE006366;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782180041;FRTCBE006404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782180051;FRTCBE006405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782180061;FRTCBE006406;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782180071;FRTCBE006407;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782180081;FRTCBE006408;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782300011;FRTCBE006409;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782380011;FRTCBE006410;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782380021;FRTCBE006412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782430011;FRTCBE005187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0782430021;FRTCBE006413;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785440011;FRTCBE006414;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785460031;FRTCBE006415;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF00750261;FRTCBE006416;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF07860171;FRTCBE006417;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800410011;FRTCBE003984;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0786110041;FRTCBE003985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0786110031;FRTCBE003978;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0786110021;FRTCBE003980;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0786110011;FRTCBE003982;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF07860181;FRTCBE003983;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF07860161;FRTCBE006362;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785690081;FRTCBE006359;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF07860151;FRTCBE006358;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF07860141;FRTCBE006357;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF07860131;FRTCBE005188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF07860121;FRTCBE005539;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF07860111;FRTCBE005540;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785690101;FRTCBE005541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800420011;FRTCBE005542;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800420021;FRTCBE005543;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800440011;FRTCBE005544;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800450011;FRTCBE005545;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800450021;FRTCBE005546;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800450031;FRTCBE005547;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800450041;FRTCBE005548;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800460011;FRTCBE005549;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800460013;FRTCBE005550;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800460021;FRTCBE005401;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800460023;FRTCBE005402;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800470011;FRTCBE005403;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800470021;FRTCBE005404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800480011;FRTCBE006331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800480021;FRTCBE006332;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800480031;FRTCBE006333;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0800480041;FRTCBE006334;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785690091;FRTCBE006355;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785690071;FRTCBE006356;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785460051;FRTCBE003557;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785560031;FRTCBE003504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640051;FRSAEEPDA4371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640041;FRTCBE002295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640031;FRTCBE000806;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640021;FRTCBE000807;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640011;FRTCBE000808;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785560041;FRTCBE000809;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785560021;FRTCBE000810;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785690061;FRTCBE000811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785560011;FRTCBE000812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785510061;FRTCBE002291;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785510051;FRTCBE002292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785510031;FRTCBE002293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785510011;FRTCBE002294;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785460061;FRTCBE002296;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640061;FRTCBE002456;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640071;FRTCBE002297;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640081;FRTCBE002384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640091;FRTCBE002385;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640101;FRTCBE002438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640111;FRTCBE002439;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640121;FRTCBE002443;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640131;FRTCBE002444;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640141;FRTCBE002451;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640151;FRTCBE002452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640161;FRTCBE002453;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640171;FRTCBE002454;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785640181;FRTCBE000805;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785690011;FRTCBE000796;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785690021;FRTCBE000795;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785690041;FRTCBE000794;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0785690051;FRSAEEPDA4372;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780370011;FRSAEEPDA4373;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780160081;FRSAEEPDA4374;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780160071;FRSAEEPDA4375;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0622090012;FRSAEEPDA4376;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0622280031;FRSAEEPDA4377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0622280023;FRSAEEPDA4378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0622280021;FRSAEEPDA4379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0622280013;FRSAEEPDA4380;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0622280011;FRSAEEPDA4381;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0622090021;FRSAEEPDA4382;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0622090011;FRSAEEPDA4383;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0010190021;FRSAEEPDA4384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0620850081;FRSAEEPDA4385;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0620850061;FRSAEEPDA4386;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0620850051;FRSAEEPDA4387;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0620850041;FRSAEEPDA4388;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0620850011;FRSAEEPDA4389;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0599940041;FRSAEEPDA4390;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0622280032;FRSAEEPDA4391;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0622280041;FRSAEEPDA4392;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0622280042;FRSAEEPDA4393;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040011;FRTCBE000793;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040021;FRTCBE002455;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040031;FRTCBE002445;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040041;FRTCBE003503;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040051;FRTCBE003278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040061;FRTCBE002985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040071;FRTCBE003893;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040081;FRTCBE003894;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040091;FRTCBE003110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040101;FRTCBE003111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040111;FRTCBE003112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040121;FRTCBE003113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040131;FRTCBE003274;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040141;FRTCBE003275;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0010190011;FRTCBE003276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0063690011;FRTCBE003277;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780160061;FRTCBE003279;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0074510051;FRTCBE002446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0073570041;FRTCBE003280;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0073570042;FRTCBE003281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0074510011;FRTCBE004825;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0074510021;FRTCBE004873;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0074510031;FRTCBE004874;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0074510041;FRTCBE003385;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0074510061;FRTCBE003386;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0063690021;FRTCBE003387;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0074510071;FRTCBE003388;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF00750211;FRTCBE003500;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF00750221;FRTCBE003501;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF00750231;FRTCBE002984;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF00750241;FRTCBE002613;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF00750251;FRTCBE002612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0073570023;FRTCBE002611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0073570021;FRTCBE003059;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0073570013;FRTCBE003060;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0073570011;FRTCBE002459;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0070600011;FRTCBE002460;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0070520051;FRTCBE002465;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0070520041;FRTCBE002466;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0070520031;FRTCBE002476;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0070520021;FRTCBE002477;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0070520011;FRTCBE002478;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0064670011;FRTCBE002553;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0063690081;FRTCBE002554;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0063690071;FRTCBE002555;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0063690061;FRTCBE002556;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0063690051;FRTCBE002601;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0063690041;FRTCBE002602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0063690031;FRTCBE002603;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040151;FRTCBE002604;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0627040161;FRTCBE002605;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0677050011;FRTCBE002606;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0723800014;FRTCBE002607;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0723800032;FRTCBE002608;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0723800031;FRTCBE002609;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0723800024;FRTCBE002610;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0723800023;FRSAEEMADAVIS3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0723800022;FRTCBE003975;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0723800021;FRSAEEMADAVIS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0723800011;FRSAEEMAD5051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0677050021;FRSAEEMAD5040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0706680061;FRSAEEMAD5041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0706680051;FRSAEEMAD5042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0706680031;FRSAEEMAD5043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0706680011;FRSAEEMAD5044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0706410081;FRSAEEMAD5045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0706410071;FRSAEEMAD5046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0745660011;FRSAEEMAD5047;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0745660012;FRSAEEMAD5048;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0745660021;FRSAEEMAD5049;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0745660031;FRSAEEMAD5050;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0745660041;FRSAEEMAD5052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0745660043;FRSAEEMAD5038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0745660051;FRSAEEMAD5053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0745660053;FRSAEEMAD5054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0765230011;FRSAEEMAD5055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0765230021;FRSAEEMAD5056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0772410011;FRSAEEMAD5057;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0772410021;FRSAEEMAD5058;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780160011;FRSAEEMAD5059;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780160021;FRSAEEMAD5060;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780160031;FRSAEEMAD5061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780160041;FRSAEEMAD5062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0780160051;FRSAEEMAD5063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0706410061;FRSAEEMAD5039;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0706410051;FRSAEEMAD5037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0706410041;FRSAEEMAD5119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700020031;FRSAEEMAD5023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0693030011;FRSAEEMAD5012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0693030021;FRSAEEMAD5013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0693030031;FRSAEEMAD5014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0693030041;FRSAEEMAD5015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0697030011;FRSAEEMAD5016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0697030021;FRSAEEMAD5017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0697030031;FRSAEEMAD5018;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0697030041;FRSAEEMAD5019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0697030051;FRSAEEMAD5020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0697030061;FRSAEEMAD5021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0697030071;FRSAEEMAD5022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0697030081;FRSAEEMAD5024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700020011;FRSAEEMAD5036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700020021;FRSAEEMAD5025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700020041;FRSAEEMAD5026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0706410031;FRSAEEMAD5027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700020051;FRSAEEMAD5028;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700020061;FRSAEEMAD5029;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700020071;FRSAEEMAD5030;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700020081;FRSAEEMAD5031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700030011;FRSAEEMAD5032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700030021;FRSAEEMAD5033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700030031;FRSAEEMAD5034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700030041;FRSAEEMAD5035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700030051;FRSAEEMAD5064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700030061;FRSAEEMAD5065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700030071;FRSAEEMAD5066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0700030081;FRSAEEMAD5106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0706410011;FRSAEEMAD5095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0706410021;FRSAEEMAD5096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015053;FRSAEEMAD5097;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRHPCENF0802610051;FRSAEEMAD5098;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015062;FRSAEEMAD5099;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11061;FRSAEEMAD5100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11071;FRSAEEMAD5101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11066;FRSAEEMAD5102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11065;FRSAEEMAD5103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11064;FRSAEEMAD5104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11063;FRSAEEMAD5105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11062;FRSAEEMAD5107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11054;FRSAEEMAD5067;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11041;FRSAEEMAD5108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11053;FRSAEEMAD5109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11052;FRSAEEMAD5110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11051;FRSAEEMAD5111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11045;FRSAEEMAD5112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11044;FRSAEEMAD5113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11043;FRSAEEMAD3044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11072;FRSAEEMAD5114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11073;FRSAEEMAD5115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11074;FRSAEEMAD5116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11081;FRSAEEMAD5117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11082;FRSAEEMAD5094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11083;FRSAEEMAD5093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11084;FRSAEEMAD5092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11092;FRSAEEMAD5091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11093;FRSAEEMAD5068;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11094;FRSAEEMAD5069;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11095;FRSAEEMAD5070;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11096;FRSAEEMAD5071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11097;FRSAEEMAD5072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11101;FRSAEEMAD5073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11102;FRSAEEMAD5074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11103;FRSAEEMAD5075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11104;FRSAEEMAD5076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11042;FRSAEEMAD5077;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11036;FRSAEEMAD5078;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11112;FRSAEEMAD5079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10141;FRSAEEMAD5080;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11011;FRSAEEMAD5081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10146;FRSAEEMAD5082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10145;FRSAEEMAD5083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10144;FRSAEEMAD5084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10143;FRSAEEMAD5085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10142;FRSAEEMAD5086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10134;FRSAEEMAD5087;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11035;FRSAEEMAD5088;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10133;FRSAEEMAD5089;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10132;FRSAEEMAD5090;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10131;FRSAEEMAD5011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10124;FRSAEEMAD5010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10123;FRSAEEMAD5009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10122;FRSAEEMAD3105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11012;FRSAEEMAD3093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11013;FRSAEEMAD3095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11014;FRSAEEMAD3096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11015;FRSAEEMAD3097;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11016;FRSAEEMAD3098;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11017;FRSAEEMAD3099;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11021;FRSAEEMAD3100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11022;FRSAEEMAD3101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11023;FRSAEEMAD3102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11024;FRSAEEMAD3103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11025;FRSAEEMAD3104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11026;FRSAEEMAD3106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11027;FRSAEEMAD3119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11031;FRSAEEMAD3107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11032;FRSAEEMAD3108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11033;FRSAEEMAD3109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11034;FRSAEEMAD3110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11111;FRSAEEMAD3111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11113;FRSAEEMAD3112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10114;FRSAEEMAD3113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12015;FRSAEEMAD3114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12026;FRSAEEMAD3115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12025;FRSAEEMAD3116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12024;FRSAEEMAD3117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12023;FRSAEEMAD3091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12022;FRSAEEMAD3089;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12021;FRSAEEMAD3087;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12014;FRSAEEMAD3086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11181;FRSAEEMAD6212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12013;FRSAEEMAD3048;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12012;FRSAEEMAD3050;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12011;FRSAEEMAD3052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11185;FRSAEEMAD3054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11184;FRSAEEMAD3056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11183;FRSAEEMAD3058;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12041;FRSAEEMAD3060;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12042;FRSAEEMAD3062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12043;FRSAEEMAD3066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12044;FRSAEEMAD3068;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12045;FRSAEEMAD3070;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12051;FRSAEEMAD3072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12052;FRSAEEMAD3074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12053;FRSAEEMAD3077;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12054;FRSAEEMAD3078;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12055;FRSAEEMAD3079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12061;FRSAEEMAD3080;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12062;FRSAEEMAD3081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12063;FRSAEEMAD3082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12064;FRSAEEMAD3083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12065;FRSAEEMAD3084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12066;FRSAEEMAD3085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12071;FRSAEEMAD3118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11182;FRSAEEMAD3120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11176;FRSAEEMAD5008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11114;FRSAEEMAD3186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11132;FRSAEEMAD3164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11144;FRSAEEMAD3166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11143;FRSAEEMAD3168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11142;FRSAEEMAD3170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11141;FRSAEEMAD3172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11134;FRSAEEMAD3174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11133;FRSAEEMAD3176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11131;FRSAEEMAD3178;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11175;FRSAEEMAD3180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11126;FRSAEEMAD3182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11124;FRSAEEMAD3184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11123;FRSAEEMAD3188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11122;FRSAEEMAD3121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11121;FRSAEEMAD3190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11115;FRSAEEMAD3192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11145;FRSAEEMAD3194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11146;FRSAEEMAD3196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11151;FRSAEEMAD3198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11152;FRSAEEMAD5001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11153;FRSAEEMAD5003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11154;FRSAEEMAD5004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11155;FRSAEEMAD5005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11161;FRSAEEMAD5006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11162;FRSAEEMAD5007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11163;FRSAEEMAD3162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11164;FRSAEEMAD3160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11165;FRSAEEMAD3156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11171;FRSAEEMAD3154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11172;FRSAEEMAD3122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11173;FRSAEEMAD3123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015063;FRSAEEMAD3124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11174;FRSAEEMAD3125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10121;FRSAEEMAD3126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10113;FRSAEEMAD3128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08176;FRSAEEMAD3129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09051;FRSAEEMAD3130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09062;FRSAEEMAD3131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09061;FRSAEEMAD3132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09055;FRSAEEMAD3133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09054;FRSAEEMAD3134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09053;FRSAEEMAD3135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09052;FRSAEEMAD3136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09045;FRSAEEMAD3138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09031;FRSAEEMAD3046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09044;FRSAEEMAD3140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09043;FRSAEEMAD3142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09042;FRSAEEMAD3144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09041;FRSAEEMAD3146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09034;FRSAEEMAD3148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09033;FRSAEEMAD3150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09063;FRSAEEMAD3152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09064;FRSAEEMAD5118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09065;FRSAEEMAD3127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09066;FRSAEEMAD5120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09071;FRSAEEMAD6136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09072;FRSAEEMAD6125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09073;FRSAEEMAD6126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09074;FRSAEEMAD6127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09081;FRSAEEMAD6128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09082;FRSAEEMAD6129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09083;FRSAEEMAD6130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09084;FRSAEEMAD6131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09085;FRSAEEMAD6132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09086;FRSAEEMAD6133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09087;FRSAEEMAD6134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09091;FRSAEEMAD6135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09092;FRSAEEMAD6137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09032;FRSAEEMAD6154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09023;FRSAEEMAD6138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09094;FRSAEEMAD6139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08193;FRSAEEMAD6140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08203;FRSAEEMAD6141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08202;FRSAEEMAD6142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08201;FRSAEEMAD6144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08196;FRSAEEMAD6146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08195;FRSAEEMAD6148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08194;FRSAEEMAD6150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08192;FRSAEEMAD6151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09022;FRSAEEMAD6152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08191;FRSAEEMAD6124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08186;FRSAEEMAD6123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08185;FRSAEEMAD6122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08184;FRSAEEMAD6121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08183;FRSAEEMAD6092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08182;FRSAEEMAD6094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08204;FRSAEEMAD6096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08205;FRSAEEMAD6098;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08206;FRSAEEMAD6100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08211;FRSAEEMAD6102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08212;FRSAEEMAD6104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08213;FRSAEEMAD6105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08214;FRSAEEMAD6106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08215;FRSAEEMAD6107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08216;FRSAEEMAD6108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09011;FRSAEEMAD6109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09012;FRSAEEMAD6110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09013;FRSAEEMAD6111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09014;FRSAEEMAD6112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09015;FRSAEEMAD6113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09016;FRSAEEMAD6114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09017;FRSAEEMAD6115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09021;FRSAEEMAD6116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09093;FRSAEEMAD6117;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09095;FRSAEEMAD6118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10112;FRSAEEMAD6119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10063;FRSAEEMAD6120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10074;FRSAEEMAD6153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10073;FRSAEEMAD6155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10072;FRSAEEMAD6063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10071;FRSAEEMAD6200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10065;FRSAEEMAD6188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10064;FRSAEEMAD6189;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10062;FRSAEEMAD6190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10037;FRSAEEMAD6191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10061;FRSAEEMAD6193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10056;FRSAEEMAD6194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10055;FRSAEEMAD6195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10054;FRSAEEMAD6196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10053;FRSAEEMAD6197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10052;FRSAEEMAD6198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10075;FRSAEEMAD6199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10081;FRSAEEMAD6201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10082;FRSAEEMAD6156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10083;FRSAEEMAD6202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10084;FRSAEEMAD6203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10091;FRSAEEMAD6204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10092;FRSAEEMAD6205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10093;FRSAEEMAD6206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10094;FRSAEEMAD6207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10095;FRSAEEMAD6208;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10101;FRSAEEMAD6209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10102;FRSAEEMAD6210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10103;FRSAEEMAD5121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10104;FRSAEEMAD6211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10105;FRSAEEMAD6187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10106;FRSAEEMAD6186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10111;FRSAEEMAD6185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10051;FRSAEEMAD6184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10036;FRSAEEMAD6157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09096;FRSAEEMAD6158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09113;FRSAEEMAD6159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09123;FRSAEEMAD6160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09122;FRSAEEMAD6161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09121;FRSAEEMAD6163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09116;FRSAEEMAD6165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09115;FRSAEEMAD6167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09114;FRSAEEMAD6169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09112;FRSAEEMAD6170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10035;FRSAEEMAD6171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09111;FRSAEEMAD6172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09105;FRSAEEMAD6173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09104;FRSAEEMAD6174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09103;FRSAEEMAD6175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09102;FRSAEEMAD6176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09101;FRSAEEMAD6177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09124;FRSAEEMAD6178;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09125;FRSAEEMAD6179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX09126;FRSAEEMAD6180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10011;FRSAEEMAD6181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10012;FRSAEEMAD6182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10013;FRSAEEMAD6183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10014;FRSAEEMAD6065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10021;FRSAEEMAD6192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10022;FRSAEEMAD6061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10023;FRSAEEMAD5163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10024;FRSAEEMAD5149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10025;FRSAEEMAD5150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10026;FRSAEEMAD5151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10031;FRSAEEMAD5152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10032;FRSAEEMAD5153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10033;FRSAEEMAD5154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX10034;FRSAEEMAD5155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12072;FRSAEEMAD5156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12073;FRSAEEMAD5157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12074;FRSAEEMAD5158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14023;FRSAEEMAD5159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14033;FRSAEEMAD5164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14032;FRSAEEMAD5177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14031;FRSAEEMAD5165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14026;FRSAEEMAD5166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14025;FRSAEEMAD5167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14024;FRSAEEMAD5168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14022;FRSAEEMAD5169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13215;FRSAEEMAD5170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14021;FRSAEEMAD5171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14016;FRSAEEMAD5172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14015;FRSAEEMAD5173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14014;FRSAEEMAD5174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14013;FRSAEEMAD5175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14012;FRSAEEMAD5148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14041;FRSAEEMAD5147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14042;FRSAEEMAD5146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14043;FRSAEEMAD5145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14044;FRSAEEMAD6059;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14045;FRSAEEMAD5124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14046;FRSAEEMAD5125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14047;FRSAEEMAD5126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14051;FRSAEEMAD5127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14052;FRSAEEMAD5128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14053;FRSAEEMAD5129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14054;FRSAEEMAD5130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14055;FRSAEEMAD5131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14056;FRSAEEMAD5132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14061;FRSAEEMAD5133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14062;FRSAEEMAD5134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14063;FRSAEEMAD5135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14064;FRSAEEMAD5136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14011;FRSAEEMAD5137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13214;FRSAEEMAD5138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14066;FRSAEEMAD5139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13165;FRSAEEMAD5140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13175;FRSAEEMAD5141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13174;FRSAEEMAD5123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13173;FRSAEEMAD5142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13172;FRSAEEMAD5143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13171;FRSAEEMAD5144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13166;FRSAEEMAD5176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13164;FRSAEEMAD5161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13213;FRSAEEMAD5178;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13163;FRSAEEMAD6033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13162;FRSAEEMAD6011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13161;FRSAEEMAD6013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13156;FRSAEEMAD6015;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13155;FRSAEEMAD6017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13154;FRSAEEMAD6019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13176;FRSAEEMAD6021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13181;FRSAEEMAD6023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13182;FRSAEEMAD6025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13183;FRSAEEMAD6027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13184;FRSAEEMAD6029;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13185;FRSAEEMAD6031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13186;FRSAEEMAD5179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13191;FRSAEEMAD6007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13192;FRSAEEMAD6037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13193;FRSAEEMAD6039;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13194;FRSAEEMAD6041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13201;FRSAEEMAD6043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13202;FRSAEEMAD6045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13203;FRSAEEMAD6047;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13204;FRSAEEMAD6049;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13211;FRSAEEMAD6051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13212;FRSAEEMAD6053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14065;FRSAEEMAD6055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14071;FRSAEEMAD6057;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12075;FRSAEEMAD6009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15012;FRSAEEMAD6035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15021;FRSAEEMAD5203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15017;FRSAEEMAD5191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15016;FRSAEEMAD5202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15015;FRSAEEMAD5181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15014;FRSAEEMAD5182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15013;FRSAEEMAD5183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15011;FRSAEEMAD5122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14136;FRSAEEMAD5184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14146;FRSAEEMAD5185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14145;FRSAEEMAD5186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14144;FRSAEEMAD5187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14143;FRSAEEMAD5188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14142;FRSAEEMAD5190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14141;FRSAEEMAD5189;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15022;FRSAEEMAD5180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15023;FRSAEEMAD5192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15024;FRSAEEMAD5193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15025;FRSAEEMAD5194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15026;FRSAEEMAD5195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15027;FRSAEEMAD5196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15031;FRSAEEMAD5197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15032;FRSAEEMAD5198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15033;FRSAEEMAD5199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15034;FRSAEEMAD5200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15044;FRSAEEMAD5201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15043;FRS28ESDE28CHATDUN2B1P1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15042;FRS28ESDE28CHATDUN1B1P1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15041;FRS28ESDE28CLOU1B1P1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15037;FRS28ESDE28TREON1B1P1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15036;FRS28ESDE28VER4B1P1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15035;FRS28ESDE28VOV3B1P1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14137;NL*EVB*ETK6GZ7FUPFXWKEDZLWVVA2FAWQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14135;NL*EVB*E2X4RFGIZJSBPMCYK7HLN3OPT3I;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14072;NL*EVB*EZABTZBBXJI7K6JPR2ZVZO7SRCY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14086;NL*EVB*ERU6C2GQILVW53QPLZM4FGPE7K4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14106;01FHDM6WJ5MKS65JRPYB48K6BD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14105;01FHFE4GDH2FH23D14SJJB8XKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14104;WFWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14103;VZGH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14102;WKVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14101;WKVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14085;VWWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14134;VWWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14084;WFWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14083;LSAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14082;WHFW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14081;WHFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14074;LSAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14073;WLWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14111;LURH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14112;LURH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14113;LNLF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14114;VZGH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14115;WRSC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14116;WLWD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14121;WNPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14122;WNPZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14123;WRSC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14124;MFUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14125;WQBB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14126;WQBB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14127;WUUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14131;WUUR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX15045;WWTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14132;WWTB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX14133;WYSR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13153;WYSR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13152;WSSG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13151;WSSG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12156;LNLF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12171;MKRD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12164;MFUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12163;AGAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12162;KDMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12161;JPPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12157;JPPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12155;HLFV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12144;HLFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12154;AGAJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12153;BJUL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12152;MGWV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12151;BJUL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12147;ARAN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12146;ARAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12172;AVDL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12173;AVDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12174;BWSB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12175;KDMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12176;MFSU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12181;MFSU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12182;MVHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12183;MVHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12184;LMMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12185;LMMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12186;LMPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12187;LMPS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13011;LMWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13012;LMWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13013;PCZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13014;PCZG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13015;MKRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12145;SHNZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12143;XAAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13144;MGWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12102;XAAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12111;XMMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12107;XNHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12106;QNZK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12105;RNAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12104;RKAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12103;RKAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12101;RBEK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12142;RBEK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12085;QNZK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12084;QQKG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12083;XNHQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12082;QQKG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12081;QJAR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12076;QJAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12112;QJVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12113;QJVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12114;QMKH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12115;RNAF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12116;RTHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12121;RTHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12122;SBEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12123;SBEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12124;RRPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12125;RRPN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12126;SAAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12127;SAAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12131;AYYY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12132;SHHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12133;SHHX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12134;SKFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX12141;SKFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13021;SQDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13022;SQDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13023;SHNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13102;QMKH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13114;YNMZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13113;YNMZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13112;XNCS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13111;XMXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13104;XMXQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13103;XMMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13101;XMMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13024;XMMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13096;XGSK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13095;XGSK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13094;XMAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13093;XMAG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13092;XFKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13091;XFKY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13115;XRCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13116;XRCB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13121;XNCS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13122;XWCL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13123;YSBT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13124;XWCL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13125;XWVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13126;XWVZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13131;XXCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13132;XXCF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13133;YGBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13134;YGBH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13135;YCVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13136;YCVY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13141;XYGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13142;XYGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13143;YTSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13084;YTSD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13083;YSBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13082;BWSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13051;DGAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13025;AYYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13026;EDES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13027;EMNK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13031;ETJB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13032;ETJB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13033;FFWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13034;FFWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13035;EDES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13036;EQFN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13041;GDHX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13042;EQFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13043;GELN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13044;GELN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13045;FMAN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13052;FMAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13081;EMQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13053;EMNK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13061;ELLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13062;ELLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13063;FAYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13064;FAYQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13065;GAVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13066;GAVF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13067;FKEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13071;FKEM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13072;EZSU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13073;EZSU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13074;DXUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13075;DXUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX13076;GPGK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08181;GPGK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX11125;GPLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08175;GPLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016071;EMQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01023;GDHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01024;AYYA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01031;DGAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01032;DJJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01033;DJJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01034;DGQE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01035;DGQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01036;DHPM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01041;DHPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01042;CYWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01043;FXTK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01044;CYWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01045;CXUB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01046;CXUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01051;CXCP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01022;CXCP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01021;SNUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01014;DKWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EHBSAGLOB021;DKWD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EHBSAEPDA021;DLYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EHBSAEPDA031;DLYS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EHBSAEPDA041;DTZY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EHBSAEPDA051;DTZY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EHBSAGLOB011;DUMZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05135;DUMZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EHBSAGLOB031;DSGP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01013;DSGP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EHBSAGLOB041;DMXN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EHBSAGLOB051;DMXN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EHBSAGLOB061;EUHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EHBSAGLOB071;EUHD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01011;EBAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01012;EBAR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01052;FXTK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01053;GPFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01054;GPFH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02064;GQYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02053;JZVH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02054;KUEP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02055;KUEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02061;KHNZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02062;KHNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02063;KBVY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08174;KBVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02051;JZVH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02065;GQYX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02071;JWYN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02072;JWYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02073;JPHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02074;JPHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02075;JPGU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02052;JPGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02034;KXAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01061;KXAJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02013;KUNH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01062;KUNH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01063;KRRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01064;KRRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX01065;KXWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02011;KXWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02012;KZKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02014;KZKD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02033;LFDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02021;LFDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02022;AXTY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02023;AXTY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02024;AYJU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02031;AYJU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02032;AYYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EHBSAEPDA011;JNHG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020053;JNHG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020052;JLQC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017062;HLLX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017042;HCYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017043;HCYJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017051;HAES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017052;HAES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017053;HAEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017061;HAEM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017063;HAYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017033;HAYT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9018021;HHQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9018022;HHQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9018023;HHZR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9018031;HHZR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9018032;HNJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9018033;HNJM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017041;HLLX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04054;JLQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9018042;HWMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016093;HWMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016073;JABP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016081;JABP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016082;JATV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016083;JATV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016091;QHXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016092;QHXW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017011;JFUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017032;JFUD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017012;JHBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017013;JHBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017021;JJAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017022;JJAB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017023;SNUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9017031;XRSG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9018041;SSEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9018043;VDXG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020051;MAGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020022;MAGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019062;MAFQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019063;MAFQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020011;VWMR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020012;VWMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020013;VDXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020021;YJWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020023;TWCD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019053;TWCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020031;TQPH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020032;TQPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020033;QMBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020041;QMBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020042;MDNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9020043;MDNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019061;MLEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019052;MLEV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9018051;MMMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019022;MMMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9018052;MVAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9018053;MVAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019011;MZQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019012;MZQT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019013;NKPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019021;NKPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019023;LLMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019051;LLMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019031;CATP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019032;CATP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019033;CBZW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019041;YJWM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019042;YLXX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9019043;AKMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02081;AMVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02082;AHPK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02083;AHPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05056;ATMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05065;ATMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05064;ANAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05063;ANAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05062;AMVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05061;YLXX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05057;AMGF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05055;AMGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05071;ALFA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05054;ALFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04053;AKZZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05053;AKZZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05052;LKLX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05051;LKLX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05045;MUQY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05066;MUQY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05072;MZUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05043;MZUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05092;WDNT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05103;WDNT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05102;WMGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05101;WMGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05095;WNQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05094;WNQL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05093;WSNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05091;WSNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05073;XRSG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05085;XTPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05084;XTPM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05083;CBZW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05082;JMDS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05081;JMDS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05074;AGMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05044;AQXK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05042;ALTT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05105;ALTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04072;AKYE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04084;AKYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04083;AGMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04082;ZSPB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04081;SSEV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04074;ZSPB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04073;ZQRN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04071;ZQRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04092;ZMRW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04066;ZMRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04065;ZGAX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04064;AQXK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04063;ATFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04062;ATFV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04061;AXXL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04091;AXXL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04093;FWME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05041;FWME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05023;EKLK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05033;EKLK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05032;FMWB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05031;FMWB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05026;ZXLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05025;ZXLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05024;GKFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05022;GKFW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04094;HXVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05021;HXVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05014;ZGAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05013;ZDNX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05012;ZDNX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05011;CRAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04095;LYQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05104;CCHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05111;CCHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02084;CFCV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03044;CFCV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03034;JHHH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03035;JHHH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03036;CNTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03041;CPZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03042;GKJZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03043;GMMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03045;ZPAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03032;ZRXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03046;CUPS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03061;CRAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03062;ZARJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03063;CSVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03064;CSVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03065;CSZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03033;CSZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03031;CUZW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04012;CUZW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02096;CTML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02085;CTML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02091;CNTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02092;CPZP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02093;CUPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02094;YTUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX02095;YTUJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03011;ZARJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03024;AKMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03012;LYQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03013;AGTH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03014;MNGU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03021;MQSX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03022;MQSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX03023;MNMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04011;MNMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04013;MQAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05112;MQAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05124;MNGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05133;NMQY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05132;YTUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05131;YTUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05127;MEEL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05126;MEEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05125;MDTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05123;MDTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04052;MQVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05122;MQVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05121;MSMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05116;MSMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05115;MVAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05114;MVAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05113;MVVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05134;MVVQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04051;MWMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04014;MWMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04032;NCNT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04015;NCNT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04021;NEKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04022;NEKY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04023;NLEZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04024;NLEZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04025;NLZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04033;MBNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04046;MBAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04034;MBAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04041;UMJH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04042;AGTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04043;SWHG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04044;SWHG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04045;TAWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016072;TAWS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX04055;TEHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016063;TEHW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07086;THGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07123;THGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07122;TLHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07121;TLHJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07116;UGHR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07115;UGHR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07114;UMJH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07113;TXYU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07112;MAGF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07111;TXYU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07106;VPLR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07105;VPLR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07104;UWBD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07103;UWBD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07102;UWAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07101;UWAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07095;VHYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07094;VHYA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07093;LZSR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07092;LZSR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07124;LWGN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07125;LWGN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07126;MAGF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07145;NLZA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07161;MBNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07156;NMQY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07155;CAKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07154;ADBZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07153;KLTL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07152;KLTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07151;BYYS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07146;BYYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07144;CAKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07131;BXNF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07143;PZCY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07142;BXNF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07141;HCZF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07136;HCZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07135;FMRT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07134;FMRT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07133;EZUC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07132;LDCG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07091;LDCG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07085;LGRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07163;LGRB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07084;ATVN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07045;ATVN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07044;BKVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07043;BKVY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07042;ADDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07041;ADDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07036;AWJN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07035;AWJN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07034;AXRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07033;AXRW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07032;AZNH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07031;NMRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07025;AZNH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016062;EZUC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07023;ADBZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07022;NNWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07021;NQES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07016;NVAG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07015;NSTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07014;NSTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07046;NNWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07051;NPRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07052;NPRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07071;NQES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07083;NWTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07082;NSKN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07081;NSKN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07076;NMWJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07075;PZCY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07074;NMWJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07073;NMRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07072;NWTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07065;NVAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07053;PMLP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07064;PKWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07063;PPZX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07062;PUZX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07061;PPZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07057;PMLP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07056;NYNB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07055;PKWS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07054;PFNB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07162;PFNB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07164;PDKZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07012;PDKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08095;NYNB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08125;PUZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08124;01FHQK32DYB4KYY5Z3B0C21JGH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08123;FRS28ESDE28LOU3B1P1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08122;36e16182-14cf-11ec-82a8-0242ac130003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08121;NL*EVB*EOQBTSFDOAGVUR2QAZGWIUPUJZA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08116;NL*EVB*EIGW4G32HVWTHPZLZSJRXOI4KRE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08115;NL*EVB*EVGEY6LUXA2JGJKUBJXPKVEV5NY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08114;NL*EVB*ECGQHADVA5Y6RVEQIVXZCSKSZAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08113;01FEG2Q7790MKZPGT58T8G1KD8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08112;01FEK79E4NNDZAPESGBYSYPZ7J;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08111;FR*LUM*ELAMONTAGNESA*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08107;FR*LUM*EAUCHEVALBLANCNIEDERSTEINBACH1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08106;FR*LUM*EJRIMMO1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08105;FR*LUM*EACACIAS1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08104;FR*LUM*ECAMPINGLAVANDES1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08103;FR*LUM*ERAMADES1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08102;FR*LUM*EMALIJAI44*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08101;FR*LUM*EPINARELLO1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08097;FR*LUM*EHOTELLECOLLIER1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08126;FRLUMGARAGEROUMANILLE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08131;FR*LUM*ELORIOL1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08132;01FENA6FWRWNN3X1EHFBAQ53ZG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08151;01FEXVKTTEMPX67SNSGRWXERZA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08173;01FF28B6WNPQGFRVWMT6FVVV9V;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08172;01FEJX4YZEHDSET14TRKNSJJ2C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08171;BYGX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08156;PJFU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08155;HRRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08154;AFME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08153;FWHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08152;CJAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08146;CNQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08133;XHPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08145;KBAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08144;XWFR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08143;XHBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08142;DMGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08141;YMPJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08136;VMLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08135;NAUV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08134;PMYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08096;EVMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08094;ZZBU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07171;MVVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08093;AADJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08035;BPUT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08034;ADPY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08033;UFRQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08032;GDPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08031;BZFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08026;TLAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08025;MTVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08024;CRYZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08023;KEKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08022;MVVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08021;BYGX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08014;AFYY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08013;SDLJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08012;AFYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08011;BPUT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07175;ZJLP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07174;XYNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07173;JSJY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07172;YNWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08036;MBMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08051;TWKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08052;YKMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08074;KZAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08092;KAHN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08091;YKMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08084;TWKK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08083;PRMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08082;KZAR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08081;KAHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08076;YMLJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08075;HKMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08073;HKMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08053;ETZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08072;ETZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08071;STAP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08065;STAP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08064;GPAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08063;MJJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08062;QQPJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08061;KHTZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX08054;GCQY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07013;PHFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07024;ENAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX07011;URZS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06044;RPTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06011;SMPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06012;HSKG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06013;AJWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06014;QVKT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06015;PVZP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06021;EMCZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06022;RHYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06023;NPSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06024;PTNN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06025;TVQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06026;BBPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06031;AVAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06032;UCLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06033;ZSJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06034;GTFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06041;GPXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06042;YDNU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX05136;FWBG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015071;VNZS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06117;RLPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016033;LTZZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016061;AZAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016053;SKTZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016052;UDVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016051;UDEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016043;SKTZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016042;VPCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016041;YZNJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016032;GPXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015073;UDVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016031;AZAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016023;KBFU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016022;VPCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016021;YMBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016013;MMQQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016012;MUYF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9016011;HXHX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06043;URKC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75E9015072;WRGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06045;MGBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06093;NAKY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06112;RSXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06111;ZJJU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06105;JVFV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06103;RLPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06102;MEDT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06101;TSNG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06094;XARR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06092;YZNJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06114;QYSR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06091;KBFU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06082;UDEC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06085;YMBT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06084;QYSR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06083;VXRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06086;HMGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06051;HXHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06113;VRYG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06104;VJMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06115;PSSZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06066;ABCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06061;HMGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06054;ZEZV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06081;VRTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06116;FVQA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06053;RZMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06063;RZMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06064;ZSJV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06065;ZEZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06071;VRTH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06072;YWTJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06073;DCNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06052;JCDY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06074;GRXK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06075;TSNG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06076;YDNU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRV75EPX06062;XARR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008763;TDBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008762;AERC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008759;ZZBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008764;HXEZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008765;MMSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008758;RBQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008760;FWBG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008761;RJBC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5058;LTZZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5062;JYHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5060;FKCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5061;QLAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5081;VNZS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5063;BAHD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5064;BFMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5065;GPAU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5067;ADPY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5069;FKCD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5071;XUAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5073;QLAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5074;TLAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5075;VBGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5076;GDPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5077;MTVB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5078;URZS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5079;HSKG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5080;SMPC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5056;ENAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5057;AJWD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5044;GCQY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5055;QVKT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5042;YNWA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5031;BZFN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5033;PJFU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5035;XHBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5036;FWHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5037;UFRQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5038;DCNY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5039;UCLV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5040;PVZP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5041;ZAQN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5043;ANNV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5054;MJJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5083;FFEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5046;ANNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5047;RHYJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5048;RPTQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5049;QQPJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5050;CSMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5051;NPSW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5052;PTNN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5053;TVQE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5082;BBPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5112;CSMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5084;FFEV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5012;AVAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4182;CJAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4177;XWFR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4175;KBAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4173;CXKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4172;DLBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4171;JCZJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4169;FBKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4167;JVHP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4165;UMUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4163;BHQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4161;PMYD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4158;DLBW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4156;KXPP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4154;KEKV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3022;SDLJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3024;AEBA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3026;UMUE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3028;JCZJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3030;KXPP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3032;VXRD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3034;AEBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3036;HJNT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4152;YWTJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4148;CRYZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4146;DMGG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4144;KHTZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4142;PHFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5010;EVMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5014;JSJY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5085;CNQE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5016;XHPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5086;YMPJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5087;BLLT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5088;CXKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5089;CYJM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5090;SEXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5091;YRYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5092;AAZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5093;SSTH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5095;VNMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5097;KYUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5099;LPGB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5101;PQAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5114;VWLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5116;EZCK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5118;NCRV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5120;LEVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5122;RNNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5123;RNNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5124;UJXB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5125;UJXB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5126;VWLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5127;NCRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5029;ZMML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5027;ZMML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5025;HKZA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5023;HKZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5021;NQUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5059;NQUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5203;ZRQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5128;DAHL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003992;KKWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMRO11;YDXF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMRO10;QEZZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMRO1;XUAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMHV1004;BAYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMHV1003;BAYG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMHV1002;WJYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMHV1001;WJYE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMG51024;MDSG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMG51023;UAEP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMBA0003;PRMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMBA0002;LEVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMBA0001;UAEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEARC2;MXME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEARC1;MDSG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEALH0004;QEZZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEALH0003;MXME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEALH0002;KKWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMRO2;EZCK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMRO3;ZRQT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMRO4;YDXF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR022;MWLD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR041;RTTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR040;PQAX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR039;HATQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR026;KYUR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR025;MWLD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR024;GCYW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR023;KLGY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR021;HATQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMRO5;NMSY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR020;WYDN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR019;ZVRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR018;DCEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMRO9;HVPU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMRO8;EYHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMRO7;LCTK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMRO6;ZAQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEALH0001;WYDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003991;EYHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR043;LPGB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005447;GQGH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004398;LCVB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004397;TNMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003952;KJBQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003951;DAHL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003950;TNMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003948;LCVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003947;GQGH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5308;KJBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5307;KLGY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5306;LCTK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5305;DCEN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5304;RTTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5303;GCYW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5302;ZVRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5301;VBGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5300;HVPU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5299;NMSY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004399;FVQA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004400;ENLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004401;JYHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004442;FGMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005446;WRDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005445;AGMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005444;AGMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005206;ZAEF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005205;VLGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005204;CKXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005203;ULSF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004441;TWAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004405;SQMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004440;MSWV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004439;GVWA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004410;MCRS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004409;NWNN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004408;RMDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004407;DHTS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004406;TUWY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR042;XFVE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR044;WRDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5297;MANA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0165;EPXE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2034;YZQV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2032;BEGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0181;EBYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0180;CLBL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0179;HTJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0178;EPMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0177;CLBL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0176;BUGE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0175;YZQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0174;CBDT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0173;TYTB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0172;TYTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0171;PSUF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0170;BEGE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0169;WSLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0168;WSLV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0167;YGRD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2036;XVKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2038;AGEZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2040;BGDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2090;TUEU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4139;YAAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3020;MFGK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3018;ZPFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3016;ZPFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3014;MFGK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3012;TWDU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3010;TUEU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2053;GCUC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2042;TJZN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2051;CCQD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2050;NWNN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2049;MCRS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2048;DKJC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2047;TJRB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2046;CFYY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD2044;ACSX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0166;TJZN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0164;RVJR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR045;YHAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0163;TJRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEELAG2053;JWMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEJBO2002;FGMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEJBO2001;BAYF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEJBO1155;BAYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEJBO1154;GCUC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEJBO1153;KUCE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEJBO1152;CFYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEJBO1151;RMDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEJBO1150;RMZJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEJBO1149;ACSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEJBO1148;GYBS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEJBO1147;CCQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEJBO1146;DKJC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS61E61497A16;ELZJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS61E61497A15;LVJT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR047;LVJT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENVR046;EPMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEELAG2054;EBYG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEELAG2055;VZHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEELAG2056;FRQA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0155;XUHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0162;XUHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0161;MGMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0160;MGMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0159;UUUZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0158;JRDR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0157;QCKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0156;JRDR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0154;ZGAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEELAG2057;RUMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0153;UUUZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD0152;QCKZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEELAG2062;RUMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEELAG2061;HDMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEELAG2060;RSYX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEELAG2059;GDNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEELAG2058;ZGAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5298;ZLTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5296;GDNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5129;DYYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5172;XYAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5190;VANY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5189;XLCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5188;VMMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5187;PXEJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5186;UANA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5185;UETH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5184;DYYN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5183;ZLTL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5182;GRRP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5181;GRRP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5180;SVFP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5179;SACU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5178;SACU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5177;SVFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5176;FRQA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5175;MYMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5174;HDMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5191;MVBK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5192;FBWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5193;NQXC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5204;NQXC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5211;FGRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5210;FKPH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5209;FGRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5208;MBMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5207;ATCT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5206;FBWY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5205;MFNK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5202;HMRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5194;KEEP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5201;MVBK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5200;HTJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5199;KEEP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5198;VZHD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5197;TRNQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5196;MLYV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5195;MFNK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5173;RSYX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5171;HMSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5213;FWTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5170;MYMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5149;FWTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5148;NAQG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5147;NAQG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5146;PJMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5145;HMSF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5144;PJMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5143;MLYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5142;PSUF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5141;TAFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5140;TAFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5139;FKPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5138;VXAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5137;VXAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5136;MBMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5134;GYBS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5132;SAGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5130;AERC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5150;SAGU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5151;KTBC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5152;MKHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5162;MRNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5169;NNXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5168;UQQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5167;LPPQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5166;WSBD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5165;CAWZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5164;FNTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5163;JBMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5161;BSBF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5153;ENLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5160;VSUF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5159;DMCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5158;DNSN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5157;PUYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5156;RMZJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5155;MMYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5154;MMYA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5212;EBUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5214;FMUC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5295;XVKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5256;DHTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5274;TUWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5273;XFVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5272;TBHS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5271;EGUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5270;FMUC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5269;PBMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5268;EBUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5267;PBMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5266;DXHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5265;DXHW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5264;UQQT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5263;LPPQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5262;CMEK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5261;CMEK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5260;AGEZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5259;YAAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5258;ELZJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5275;GRXK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5276;ABCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5277;VJMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5287;MMQQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5294;LZBN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5293;LZBN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5292;PSSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5291;BAHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5290;BFMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5289;RSXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5288;VRYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5286;RJBC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5278;MUYF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5285;RBQS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5284;TDBA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5283;MMSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5282;HXEZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5281;JVFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5280;MEDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5279;ULSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5257;TRNQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5255;MSWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5215;TWAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5254;SQMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5232;TWDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5231;BUGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5230;EPXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5229;RVJR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5228;YGRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5227;ZJJU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5226;MANA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5225;CBDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5224;URKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5223;JCDY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5222;MGBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5221;NAKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5220;WRGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5219;VLGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5218;ZAEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5217;GVWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5216;FSQC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5233;LVZK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5234;RQEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5235;AJRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5245;FALM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5252;WMTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5251;ZHEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5250;FCDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5249;AKAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5248;DMCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5247;XJXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5246;JJJP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5244;UYLP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5236;CWUN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5243;RWFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5242;BYQZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5241;FKDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5240;MRNY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5239;KTBC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5238;GLNZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5237;WSBD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4140;BGDG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0006;KUCE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4138;JWMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEHDV3;YHAG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMLJ5;CAWZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMLJ4;DXHC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMLJ3;MKHZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMLJ2;GLNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMLJ1;NNXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEHDV9;GMTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEHDV8;KQMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEHDV7;EFFB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEHDV6;PUYS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEHDV5;VSUF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEHDV4;JBMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEHDV2;DNSN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMLJ7;XAAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEHDV1;CFYP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECDM8;CKXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECDM7;AJRD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECDM6;FKDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECDM5;CWUN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECDM4;XJXQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECDM3;BYQZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECDM2;FALM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECDM1;LVZK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM021;RWFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM020;XSKC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMLJ6;ZHEL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEMLJ8;XSKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ027;UWUG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ014;UWUG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ025;RARM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ024;RARM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ023;KLPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ022;KLPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ021;BSBF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ020;FNTU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ019;CFYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ018;DXHC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ017;UYLP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ016;AKAB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ015;GMTL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ013;JJJP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ001;KQMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ012;EFFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ011;XAAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ010;ATCT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ009;EMCZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ008;HMRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ007;TBHS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ006;EGUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ005;FSQC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ004;WMTF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ003;RQEW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ002;FCDL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM019;XYNZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM018;JQVQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM017;GTFW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0005;VWJJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0017;GKQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0016;GKQR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0015;JHAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0014;ZXJS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0013;ZXJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0012;JYLH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0011;AFUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0010;AFUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0009;FABA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0008;MNNK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0007;LMGG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0004;AEVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM016;LDDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0003;HUZK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0002;RYQJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0001;JPVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007040;XPMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007039;ATYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007038;ZBDL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007037;ZBDL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006767;QMJK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006766;TFYY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006765;MWGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006764;MWGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0018;AAUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0019;YFYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0020;NBPG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0021;AAUX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM015;CMZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM014;VMPP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM013;JYLH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM012;AXPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM011;AEVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM010;BMAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM009;ZTLM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM008;AUGX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM007;BNTQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM006;ARFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM005;AMXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM004;PHBU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM003;WTSA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM002;GYFR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENRM001;LDDE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0029;FCTX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0028;GYFR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0027;WTSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0026;FABA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0025;DZMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0024;FCTX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0023;JPVQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGTH0022;CMZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ026;VCFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ028;TVKS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006863;QSCJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005665;QSCJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006102;VCFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006101;XGMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006100;EQFB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006099;XPMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005672;PHBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005671;MNNK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005670;CMGL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005669;FSUC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005668;VMPP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005667;FSUC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005666;RYQJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005664;AAWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006840;AAWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005663;DZMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005662;EQFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005661;SMRN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005660;SMRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005659;CMGL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005658;ATYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005657;AMXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005656;LMGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005655;JHAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005654;TFYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005653;YFYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006839;QMJK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006841;FLRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ029;TJFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007217;SVMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007222;GMGE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007223;GMGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008063;LJAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008064;ZVLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008065;FLRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE008066;MLVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEFRA001;RGXU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEFRA002;MLVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007221;ZVLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007220;LJAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007218;BULY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007215;TJFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006842;BULY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007214;KSMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007213;SVMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007212;RGXU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007211;WMEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE007210;WZTW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006848;KETK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006847;ECRN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006846;AYJE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006845;AYJE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006844;BCAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006843;ECPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005652;BCAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005651;YTXH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005650;VKXE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI002;YTXH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI013;NFTP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI012;NFTP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI011;WZTW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI010;MVAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI009;VKXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI008;MVAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI007;KSMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI006;LKXT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI005;NBPG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI004;NTCY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI003;CQKE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI001;BTFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005649;EACS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ040;ARFN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ039;WMEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ038;BUJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ037;BUJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ036;LHWT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ035;MGQX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ034;ZTLM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ033;KCRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ032;KCRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ031;CWSZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPAJ030;CWSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI014;NZDU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI015;NZDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI016;BMAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI017;AUGX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005648;LXER2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005647;AJQB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005640;BTFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005639;LKXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005638;LXER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005637;CQKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005636;AJQB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005635;HUZK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005634;DWJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005633;EACS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005632;BNTQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005631;MGQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005630;LHWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005629;NTCY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005628;NCRC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005627;AXPN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEVPM4;DWJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEVPM3;NCRC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEVPM2;ZAMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEVPM1;XGMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI020;ECPM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI019;VWJJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPSI018;VRWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006864;VRWS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006862;ATUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4137;QKYT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4002;WRNJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE006;WRNJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE007;ATUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE008;TRTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE009;SAUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE010;SAUX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE011;MSCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE012;MSCD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE013;TRTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE014;QKYT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE015;XMQD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4001;UUEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4003;UUEV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE004;JQGP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4004;LLRL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4006;ALHZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4008;GDBX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4010;VLLJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4012;MCFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4025;KTUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4027;LLEJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4029;KTUY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4031;BWPJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4033;BWPJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4035;AGYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE005;LMNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE003;AGYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV10;DLPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA009;VELU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3040;DLPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEFRA003;ALHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEFRA004;VXMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA001;GDBX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA002;PYAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA003;PYAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA004;XMQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA005;XZMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA006;BMMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA007;RDBT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA008;RDBT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA010;UEAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE002;NUBV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA011;NUBV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA012;YMAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA013;XZMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA014;KFRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA015;YMAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA016;UEAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA017;MNYG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA018;MNYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA019;WVAG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPRA020;WVAG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPTE001;RAWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4037;JQGP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4038;BMMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4039;MKZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4117;JDQZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4087;NVUZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4088;QBQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4089;QBQE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4090;LHWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4091;LHWA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4092;NVUZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4112;JDQZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4113;PTGP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4114;RKWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4115;AGSH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4116;HCTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4118;HCTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4040;AGSH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4119;PTGP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4121;RKWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4123;KFRW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4125;VLLJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4127;WBLQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4129;MCFJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4131;RCNU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4133;RCNU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4134;SKRH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4135;BAHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4136;SKRH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4086;VAPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4085;VAPS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4084;JYYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4083;MKZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4041;EZRH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4042;ZLCL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4043;ZDGB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4044;LMNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4045;HDBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4046;PWBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4047;PWBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4048;KDMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4049;BAHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4050;EZRH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4051;NENU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4069;XMAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4071;VEEM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4073;VEEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4074;ZAMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4075;ADHE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4076;TVKS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4077;TGLD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4078;TGLD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4079;XMAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4080;JYYD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4081;NJSW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA4082;ADHE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV1;QJJP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV11;NJSW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006861;LHRS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA004;LHRS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA015;QJJP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA014;ZDGB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA013;NEQH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA012;WBLQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA011;KUVW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA010;VELU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA009;VXMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA008;JKHL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA007;WJXK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA006;YMZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA005;KUVW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA003;MMTJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA017;CKAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA002;GZVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA001;CKAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0016;LLRL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0015;FAJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0014;YMZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0013;MMTJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0012;EJWZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0011;EJWZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0010;JKHL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0009;PLBQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0008;HDBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA016;FGTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA018;KGBW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV12;KGBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006258;KDMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006269;NEQH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006268;FGTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006267;LJQU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006266;LJQU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006265;ZLCL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006264;PLBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006263;NENU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006262;ZCVN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006261;ZCVN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006260;LLEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006259;FAJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006257;WJXK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPWA019;GZVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006256;ECRN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006255;KETK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006254;AFME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006253;ASLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006252;MWDE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005646;FKWC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005645;APWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005644;GFFB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005643;PQJZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005642;ZXJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005641;FCFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0007;FLBP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0006;NQZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0005;AFCM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV5;AFHJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0007;NFTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0006;TQHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0005;KLFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0004;ZCEN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0003;AJSY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0002;CBGR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0001;QRFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV9;ATZG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV8;VSVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV7;BBSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV6;CAWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV4;XJCL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0004;ZUMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV3;SVRY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV21;XJCL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV20;ZUMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV2;BBSF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV19;YHXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV18;SVRY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV17;YHXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV16;BEZS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV15;BEZS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV14;ELGP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKECTV13;ELGP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0008;ATZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0009;VSVE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0010;DAWA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0011;DAWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0003;TLUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0002;LSKG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEPPM0001;SLAV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0015;TZAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0014;QURM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0013;QKVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0012;GGFP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0011;GGFP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0010;XBUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0009;YTUD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0008;TZAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0007;BXXD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0006;XFMK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0005;AZEV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0004;TUQW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0003;QLWB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0002;FVNL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKENEM0001;CLEF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0016;XGQE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0015;XBUJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0014;JQHZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0013;QURM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIPKEGRI0012;JQHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3038;TLUD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAESTA5253;VATS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3042;VATS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4274;VKLV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4263;LSKG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4264;LKFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4265;QKVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4266;CLEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4267;FAQB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4268;MBFG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4269;HKSX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4270;GLYL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4271;FAQB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4272;FYAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4273;VAMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4275;AEMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4261;CJVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4276;GAUZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4277;AFCM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4278;NQML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4279;ANMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4280;EYSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4281;NQML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4282;WJVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4283;ANMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4284;AJSY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4285;FLBP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4286;EYSB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4262;JQVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4260;PQJZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMADAVIS2;MWDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4245;CBGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4199;FKWC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4200;FCFG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4236;ZXJV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4237;WJVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4238;BLLT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4239;NQZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4240;MBMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4241;HRRW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4242;ZJLP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4243;AADJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4244;BHQT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4247;VNMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4259;SSTH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4248;HJNT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4249;YMLJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4250;SEXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4251;VMLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4252;NAUV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4253;JVHP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4254;CYJM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4255;AAZG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4256;YRYT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4257;FBKU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4258;GFFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4287;KLFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4288;YVDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4289;CHRY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4355;CKFV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4320;QASC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4345;GQRS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4346;GQRS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4347;HFXK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4348;HFXK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4349;QASC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4350;TKNU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4351;XPUQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4352;HAKG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4353;YMQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4354;ZCEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4356;APWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4290;AFHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4357;VWHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4358;LCSL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4359;QRFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4360;CRQT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4361;TQHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4362;CHRY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4363;TKNU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4364;CJVB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4365;AEMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4366;YMQN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4367;VWHV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4319;HAKG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4318;CAWS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4317;CRQT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4316;CKFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4291;XPUQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4292;LCSL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4293;YVDG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4294;GAUZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4295;NFTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4296;CZMG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4297;CZMG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4298;ASLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4299;EDFU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4300;KMPZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4301;EDFU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4302;SWNY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4303;VSTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4304;HXSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4305;YGJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4307;LKFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4308;HKSX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4309;AAZH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4311;AKJZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4312;YUXX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4313;UZAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4314;RSPJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4315;APWC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4198;JVDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4197;NNNC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4196;UYQK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4125;GUDX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4114;ZNNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4115;WDVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4116;VUFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4117;TVXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4118;FGPM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4119;TZDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4120;MVCU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4121;NFRQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4122;HYNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4123;TZDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4124;GLYL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4126;ANLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4140;VGQG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4127;UYRJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4128;BQGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4129;ZRNC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4130;AVGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4132;RZXL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4133;MWAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4134;YNSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4135;SYFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4136;MWUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4137;ZFTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4138;JQVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4113;XZTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4112;FFGS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4111;FFGS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4110;ZFSY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMADAVIS4;BXXD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMADAVIS5;YTUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA2024;DMHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA2258;TLXN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA2259;NZPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA2260;FYAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA2261;NZPA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA2262;STXS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA2263;XFMK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA2264;TWKZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA2265;QDVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA2266;KMPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA2267;ZFSY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4056;KPYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4057;AZEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4058;UGGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4059;TXVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4060;SZWA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4061;TDRH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4062;DCAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4107;QDVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4108;ETHP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4109;RKYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4139;XPLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4141;RWZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4195;XMPF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4182;HRSK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4170;QLWB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4171;VKLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4172;WECE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4173;TUQW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4174;VAMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4175;XMPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4177;TAJN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4178;DEPV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4179;YEMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4180;TDRH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4181;SZWA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4183;QTPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4142;AVGR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4184;ZRNC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4185;KPYS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4186;VUXW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4187;PHKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4188;ETHP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4189;RZXL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4190;PHKE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4191;YRYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4192;YRYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4193;VUXW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4194;SGDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4169;SGDG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4168;TXVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4167;VGQG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4166;BQGS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4143;RKYN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4144;CRZG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4145;WECE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4146;CHMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4147;SLAV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4148;CRZG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4149;FVNL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4150;CHMR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4151;XGQE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4152;DMHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4153;FGPM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4154;XZTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4155;QTPK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4156;TLXN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4157;FEHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4158;STXS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4159;TWKZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4160;FEHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4161;XPLN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4162;DCAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4163;DYMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4164;NNNC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4165;TAJN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4368;DEPV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4369;TVXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4370;UYRJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004207;MWAJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003959;SYFA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003960;UYQK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003961;RSPJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003963;ANLN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003964;JVDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003970;HYNZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003971;YEMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003974;NFRQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004035;MVCU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004037;MBFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004038;DYMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004208;YNSD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004513;APWC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004260;HRSK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004261;ZFTF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004416;RWZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004417;MWUR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004418;ZNNE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004419;VSTU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004509;UZAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004510;JQVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004511;GUDX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003958;UGGG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003955;VUFL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003954;AKJZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003946;YGJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003570;AAZH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003660;YUXX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003661;SWNY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003662;HXSV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003663;WDVL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003899;PKMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003902;HNJS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003903;PAMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006496;CARM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003907;RPTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003923;YRDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003924;WALU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003927;RPTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003928;ALUF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003929;SAAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003930;YRDE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003933;ALUF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003934;NQFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003937;BCMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003938;BCMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003941;GMZS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003942;GMZS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003945;DYDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004512;DYDU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004514;JAPF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003556;JAPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006411;SAAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006363;KTBS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006364;KTBS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006365;UTDP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006366;NELG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006404;UTDP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006405;VQQV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006406;FGKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006407;RVVB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006408;VQQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006409;YESN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006410;FGKU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006412;FAPD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005187;YESN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006413;NECW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006414;JJGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006415;JJGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006416;LQXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006417;LQXT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003984;FAPD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003985;GJBD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003978;LTQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003980;ZUAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003982;WUMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003983;AYFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006362;KAMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006359;ZTUQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006358;SMWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006357;ZVER2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005188;ARGN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005539;SMWV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005540;SZSZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005541;ZUNB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005542;ZVER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005543;WUMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005544;ARGN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005545;TMPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005546;GMBF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005547;XYLL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005548;DTZC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005549;KMBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005550;SSTV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005401;NQFG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005402;KZUL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005403;LTQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE005404;UMMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006331;GJBD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006332;ZUAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006333;UMMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006334;FLBY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006355;GMBF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE006356;SZSZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003557;KAMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003504;TMPZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4371;KMBQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002295;AYFW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE000806;RTGV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE000807;ZTUQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE000808;XYLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE000809;ZUNB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE000810;NELG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE000811;ZRAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE000812;ZRAQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002291;HJVZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002292;ZWEW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002293;UEHT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002294;ALSQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002296;HTQD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002456;UPMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002297;PTCB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002384;RKMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002385;GLGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002438;XVRR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002439;KRFL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002443;APBW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002444;DLPC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002451;AVCZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002452;PEJL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002453;UQNS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002454;ADKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE000805;DPDE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE000796;JKAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE000795;QUUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE000794;PJQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4372;BGAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4373;VLEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4374;XEKS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4375;LQCN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4376;MKEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4377;RVKX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4378;ZQXK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4379;FMWE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4380;ZNNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4381;UEJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4382;PFBN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4383;PWCY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4384;JFBW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4385;MVFV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4386;UAKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4387;LHCJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4388;FQGB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4389;SECR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4390;ZWLS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4391;NFBE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4392;FNHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEPDA4393;MFFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE000793;MFFC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002455;UJWT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002445;NFBE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003503;NPHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003278;NECW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002985;GDTZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003893;AJDG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003894;UJWT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003110;NPHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003111;GDTZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003112;RVVB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003113;CZLX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003274;CZLX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003275;ZWLS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003276;FNHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003277;AJDG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003279;LNST2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002446;WELJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003280;RUJD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003281;URUY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004825;YRNE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004873;AXMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE004874;MBFT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003385;ZYSY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003386;ZPMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003387;UGEJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003388;JPEC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003500;WXGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003501;SGKT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002984;MPWC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002613;NQMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002612;HMXT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002611;ZUWD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003059;JPEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003060;CARM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002459;KZUL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002460;USDN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002465;RTGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002466;NJNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002476;UTFS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002477;LLAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002478;TBJH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002553;AFZC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002554;JDAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002555;ADAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002556;GESV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002601;FJYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002602;DKND1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002603;FBWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002604;XHKM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002605;BMPQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002606;GFMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002607;WBSP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002608;ECLY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002609;MZPN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE002610;JWUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMADAVIS3;VAEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRTCBE003975;KTQA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMADAVIS1;KXBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5051;VWXH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5040;MSGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5041;UBGK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5042;TYUZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5043;XKZU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5044;AVWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5045;TYUZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5046;MJAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5047;AAMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5048;RPPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5049;UPMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5050;UKQV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5052;AAMM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5038;JDAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5053;KTQA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5054;UKQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5055;LQKK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5056;LPCD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5057;WWXF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5058;MWSU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5059;VWXH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5060;MSGE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5061;UBGK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5062;ZMSV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5063;XKZU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5039;PZYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5037;HYRD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5119;XMZQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5023;TBJH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5012;RMEW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5013;UHWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5014;SJKN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5015;KMQZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5016;GNHN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5017;ZRYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5018;ZBHT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5019;PFTR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5020;AFZC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5021;VSJS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5022;VAEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5024;QSSK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5036;ADAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5025;VJYA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5026;VAVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5027;LULC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5028;NJNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5029;JWUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5030;DKND2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5031;UTFS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5032;FJYG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5033;XHKM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5034;FBWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5035;YFDF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5064;RMVQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5065;PQBF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5066;LLAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5106;SJKN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5095;UHWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5096;GNHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5097;GMWP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5098;KQZY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5099;GMWP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5100;JDEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5101;RAVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5102;MDJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5103;JDEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5104;MDJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5105;XNMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5107;BJWK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5067;ABRC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5108;HTTJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5109;ABRC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5110;RHNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5111;EAZN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5112;EAZN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5113;SMWP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3044;KQZY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5114;VUJK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5115;HTTJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5116;XDNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5117;SSTV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5094;DWTP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5093;TGND2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5092;TGND1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5091;CDJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5068;CDJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5069;DWTP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5070;FLBY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5071;VUJK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5072;WALU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5073;DTZC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5074;XDNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5075;USLU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5076;USLU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5077;RAVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5078;BJWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5079;SMWP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5080;SWCJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5081;KMQZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5082;YYJT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5083;UKNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5084;XMZQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5085;RMEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5086;MWSU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5087;SXLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5088;SXLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5089;AVWX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5090;VCVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5011;MLZW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5010;PZYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5009;HYRD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3105;ZMSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3093;VCVT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3095;XKND2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3096;UKNE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3097;YYJT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3098;XKND1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3099;GQFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3100;SWCJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3101;MKCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3102;MZNH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3103;MKCB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3104;RHNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3106;SDHZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3119;SDHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3107;GLBQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3108;GLBQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3109;MEAB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3110;MLZW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3111;MZNH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3112;YPZY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3113;YPZY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3114;DCEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3115;MEAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3116;DCEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3117;GQFD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3091;FMMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3089;ZWTP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3087;QVMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3086;UHNK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6212;ADSF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3048;NWMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3050;TGFM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3052;DSJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3054;BKNL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3056;ZSVU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3058;XVMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3060;BMUL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3062;FVWV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3066;YUVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3068;SAAR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3070;DUJR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3072;VJFY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3074;ANFT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3077;DXMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3078;VCAJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3079;ZUNE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3080;ZRCP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3081;AFMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3082;BQAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3083;AAMX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3084;DZBM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3085;YKQW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3118;DYZL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3120;GJEX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5008;NQBK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3186;FVNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3164;KVAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3166;SJBP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3168;QQPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3170;NWEY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3172;EQGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3174;RGFD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3176;FCGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3178;YQBJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3180;ATNZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3182;GSRQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3184;AAMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3188;SJBP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3121;GLGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3190;ZSVU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3192;RGDW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3194;VCAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3196;BHMS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3198;BMUL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5001;VJFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5003;YUVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5004;XVMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5005;ADSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5006;ZUNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5007;ZRCP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3162;BKNL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3160;DSJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3156;BHMS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3154;MSBR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3122;UGPK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3123;AZCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3124;EHLE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3125;NWMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3126;DLPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3128;MMWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3129;FVNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3130;DUJR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3131;FVWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3132;KVAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3133;SAAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3134;NHCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3135;MWNP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3136;MQLM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3138;TGFM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3046;CJVC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3140;APBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3142;HJVZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3144;SMHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3146;KRFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3148;DXMD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3150;ANFT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3152;DZBM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5118;VVYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD3127;CYFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5120;ASVL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6136;FSCZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6125;QSNP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6126;QSNP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6127;EMVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6128;FSCZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6129;CNXS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6130;CNXS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6131;ASVL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6132;ATTB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6133;EPWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6134;ECSU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6135;BQRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6137;ECSU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6154;BQRF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6138;EPWS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6139;EVEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6140;ATTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6141;NRHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6142;MXXD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6144;QAZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6146;TJUU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6148;EMVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6150;VLSF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6151;QAZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6152;VLSF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6124;YBTS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6123;YBTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6122;ZFPX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6121;USAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6092;XCEY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6094;XCEY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6096;CUVT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6098;CUVT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6100;ZFPX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6102;NRHJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6104;USAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6105;EVEL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6106;MXXD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6107;CYFH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6108;MLCQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6109;UCGZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6110;UCGZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6111;MVDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6112;CHYK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6113;CHYK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6114;FNTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6115;MLCQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6116;KZKS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6117;KXEC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6118;KZKS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6119;FNTT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6120;NVMC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6153;NVMC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6155;SEPE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6063;SEPE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6200;VVYB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6188;MVDU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6189;JAZX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6190;SAYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6191;VSMZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6193;VMHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6194;VMHJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6195;SAYN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6196;XQJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6197;XQJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6198;JSXH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6199;JSXH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6201;VSMZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6156;JAZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6202;AGZD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6203;FMTA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6204;FMTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6205;AGZD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6206;AMMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6207;KXEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6208;AMMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6209;AZCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6210;EPDU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5121;NSUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6211;FQGB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6187;MKEM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6186;LQCN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6185;BGAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6184;HTQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6157;UPMM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6158;PTCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6159;RKMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6160;ZPMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6161;XEKS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6163;WELJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6165;UGEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6167;WXGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6169;AVCZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6170;PEJL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6171;UQNS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6172;ADKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6173;VLEM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6174;JKAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6175;DPDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6176;PJQX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6177;VZWH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6178;TEUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6179;WXPB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6180;DAUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6181;MVFV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6182;RVKX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6183;ZQXK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6065;FMWE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6192;ZNNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6061;MMWK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5163;MWNP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5149;CJVC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5150;MQLM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5151;NHCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5152;UAKU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5153;LHCJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5154;ZWEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5155;ALSQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5156;ZWTP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5157;YARE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5158;SMHD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5159;DAUB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5164;VZWH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5177;XPMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5165;WXPB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5166;TEUJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5167;SRGA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5168;HRQL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5169;RUJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5170;ACQN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5171;WSEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5172;WYTL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5173;SRTR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5174;XLQD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5175;MEML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5148;QMHX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5147;QUUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5146;URUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5145;UEHT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6059;WYTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5124;XVRR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5125;SGKT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5126;YRNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5127;AXMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5128;MBFT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5129;ZYSY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5130;SRTR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5131;MEML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5132;SECR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5133;XLQD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5134;WSEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5135;MPWC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5136;NQMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5137;HMXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5138;ZUWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5139;LNST1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5140;XPMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5141;QVMX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5123;NWCM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5142;UWWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5143;TRPQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5144;TRPQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5176;HWPC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5161;TNLC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5178;ZZMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6033;JMUJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6011;EPDU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6013;MSBR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6015;JMUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6017;UGPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6019;QQPZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6021;NWEY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6023;AFMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6025;GSRQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6027;DYZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6029;CRKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6031;ZZMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5179;HWPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6007;YKQW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6037;HSAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6039;UWWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6041;FWZY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6043;ABVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6045;JQTL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6047;CFJB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6049;ABVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6051;JQTL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6053;HSAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6055;TNLC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6057;VCPZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6009;VCPZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD6035;RGAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5203;NWCM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5191;RGAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5202;FWZY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5181;NSUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5182;CRKF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5183;NQBK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5122;UHNK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5184;YARE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5185;PMSK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5186;NKGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5187;YJVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5188;YJVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5190;QQNX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5189;QQNX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5180;SRGA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5192;HRQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5193;NKGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5194;ACQN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5195;FMMF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5196;UEJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5197;PFBN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5198;PWCY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5199;JFBW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5200;QMHX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSAEEMAD5201;LDKV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS28ESDE28CHATDUN2B1P1;PMSK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS28ESDE28CHATDUN1B1P1;GJEX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS28ESDE28CLOU1B1P1;EQGE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS28ESDE28TREON1B1P1;BQAB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS28ESDE28VER4B1P1;EHLE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS28ESDE28VOV3B1P1;RGDW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSYSEFDPRAM1;ATNZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSYSEFDPCHECY1;FCGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M200301;YQBJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202301;RGFD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202302;LDKV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202303;VCAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202502;ADHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202402;ADHB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202403;BFES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202501;BFES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202401;WRQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202503;VCAK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202901;WRQR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202903;YXTS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202902;CFJB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202601;YPRF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202603;APSM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M202602;RKMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP1926010;SSMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWFWM1;RKMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EVZGH1;EVAF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWKVS2;RBLV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWKVS1;RBLV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EVWWU2;BTPF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EVWWU1;BTPF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWFWM2;MYUK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELSAM2;MYUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWHFW2;MWEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWHFW1;MWEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELSAM1;EVAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWLWD1;TVGE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELURH2;TVGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELURH1;TKGQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELNLF2;SPFY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EVZGH2;BSVR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWRSC2;UBQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWLWD2;PNKR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWNPZ1;PSEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWNPZ2;KTJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWRSC1;NTDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMFUM2;PHTF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWQBB1;PNKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWQBB2;NTDN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWUUR1;PHTF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWUUR2;TKZC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWWTB1;EDVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWWTB2;BSVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWYSR1;LNTR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWYSR2;KLTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWSSG1;ESVD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWSSG2;ESVD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELNLF1;MNLC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMKRD2;MNLC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMFUM1;PPHS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAGAJ1;RQUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKDMJ1;RXSS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJPPL2;WPVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJPPL1;VCRA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHLFV2;DMYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHLFV1;MXMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAGAJ2;ZQGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EBJUL2;KUKS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMGWV2;TKGQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EBJUL1;SPFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EARAN2;RXSS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EARAN1;VCRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAVDL2;MFJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAVDL1;RQUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EBWSB2;SHJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKDMJ2;TVRZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMFSU1;SDNV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMFSU2;SBVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMVHM1;TEXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMVHM2;CTMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELMMP1;MFVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELMMP2;AZSN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELMPS1;YDNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELMPS2;TEXG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELMWG1;CPHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELMWG2;ZVXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPCZG1;GHRM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPCZG2;KURH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMKRD1;RPRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESHNZ2;BCFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXAAK2;EMFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMGWV1;SBVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXAAK1;AALT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXMMA1;BAVD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXNHQ1;BMXY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EQNZK1;SDNV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ERNAF1;APSM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ERKAM2;AVPS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ERKAM1;BAJK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ERBEK2;MZWQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ERBEK1;KTJW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EQNZK2;UBQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EQQKG2;ELRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXNHQ2;MEHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EQQKG1;RMYY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EQJAR2;HNJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EQJAR1;AMPV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EQJVS2;AMPV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EQJVS1;JKUZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EQMKH2;JFTU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ERNAF2;MEHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ERTHY1;JFTU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ERTHY2;EBMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESBEE1;SZEJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESBEE2;CCYN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ERRPN1;JKUZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ERRPN2;AMTR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESAAE1;XUQR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESAAE2;KJDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAYYY2;DGMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESHHX1;RMYY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESHHX2;RMFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESKFM1;ZKFJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESKFM2;YTCL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESQDA1;FPQM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESQDA2;FTBJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESHNZ1;YTCL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EQMKH1;YLRH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYNMZ2;YLRH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYNMZ1;PLAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXNCS2;PLAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXMXQ1;GWMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXMXQ2;HZFA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXMMA2;ADAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXMMM1;ADAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXMMM2;EHBB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXGSK1;EHBB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXGSK2;GWMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXMAG1;EBMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXMAG2;HZFA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXFKY1;ZKFJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXFKY2;ZZHR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXRCB1;LGZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXRCB2;XUQR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXNCS1;DLLM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXWCL1;NEYB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYSBT2;QFKA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXWCL2;SZEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXWVZ1;CCYN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXWVZ2;CLMV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXXCF1;AMTR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXXCF2;KJDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYGBH1;ZEXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYGBH2;DGMN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYCVY1;AUAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYCVY2;AEGG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXYGC1;AEGG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXYGC2;AUAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYTSD1;CLMV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYTSD2;LGZF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYSBT1;NGUC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EBWSB1;GDGU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDGAY2;ZZYG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAYYY1;ZRYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEDES1;YQQW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEMNK1;ZZYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EETJB2;LAFK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EETJB1;CAHM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EFFWH2;CAHM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EFFWH1;LAFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEDES2;ZZHR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEQFN2;ZRYB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGDHX2;DHPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEQFN1;EWAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGELN2;EWAX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGELN1;WRJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EFMAN2;MRGZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EFMAN1;MRGZ4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEMQP2;MRGZ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEMNK2;MRGZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EELLW1;BAJK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EELLW2;AVPS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EFAYQ1;RMFC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EFAYQ2;KUKS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGAVF1;VKFH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGAVF2;ZAMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EFKEM1;ZGRB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EFKEM2;ZSNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEZSU1;XYAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEZSU2;VANY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EDXUN1;UETH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EDXUN2;XLCQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGPGK1;VMMD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGPGK2;WSUU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGPLW1;QLWK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGPLW2;JSAB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEMQP1;UANA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGDHX1;GANA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAYYA2;JAZF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDGAY1;ADLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDJJW2;FSJF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDJJW1;VKFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDGQE2;ZAMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDGQE1;PAAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDHPM2;KUKT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDHPM1;RHEW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAECYWN2;RHEW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EFXTK2;NKQA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAECYWN1;CQCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAECXUB2;DFAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAECXUB1;PEME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAECXCP2;KVDT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAECXCP1;KUHZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESNUH2;PAAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDKWD1;ZMCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDKWD2;PTDK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDLYS1;PTDK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDLYS2;NLZD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDTZY1;KUKT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDTZY2;NLZD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDUMZ1;ZMCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDUMZ2;BUYD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDSGP1;ACWV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDSGP2;TTVQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDMXN1;TTVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRABAEDMXN2;FSJF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEUHD1;WSUU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEUHD2;FTFZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEBAR1;JSAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEBAR2;MLNB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EFXTK1;GSQP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGPFH1;HQHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGPFH2;GWVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGQYX1;ZSNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJZVH2;MTTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKUEP2;NWYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKUEP1;ADLY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKHNZ2;TTQB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKHNZ1;PCLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKBVY2;JAZF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKBVY1;DKBG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJZVH1;ZGRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGQYX2;ACWV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJWYN2;NWYB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJWYN1;RAWQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJPHE2;GSQP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJPHE1;GWVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJPGU2;FTFZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJPGU1;MTTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKXAJ1;MLNB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKXAJ2;HQHW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKUNH1;SSMT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKUNH2;TTQB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKRRA1;BUYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKRRA2;TJUU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKXWM1;PXEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKXWM2;PAMN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKZKD1;PCLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKZKD2;PKMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELFDD1;QLWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELFDD2;GANA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAXTY1;QAWL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAXTY2;TANW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAYJU1;AMVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAYJU2;JEMU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAYYA1;ZASL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJNHG2;YDVY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJNHG1;ZFHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJLQC2;EHQV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHLLX1;CTMJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHCYJ1;WPVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHCYJ2;ZZCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHAES1;EAWZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHAES2;BAVD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHAEM1;SNVE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHAEM2;DZZN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHAYT1;GYXS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHAYT2;AXAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHHQP1;YDVY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHHQP2;ZFHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHHZR1;EHQV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHHZR2;CPHJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHNJM1;GHRM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHNJM2;TANW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHLLX2;ZQGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJLQC1;MZWQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHWMF1;AALT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHWMF2;DMYB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJABP1;MFJD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJABP2;MFVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJATV1;AZSN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJATV2;MXMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EQHXW1;KURH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EQHXW2;BMXY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJFUD1;ZVXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJFUD2;YDNE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJHBM1;EMFW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJHBM2;RPRV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJJAB1;BCFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJJAB2;TVRZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESNUH1;SHJG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXRSG1;KUHZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESSEV1;ZZCD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EVDXG2;AMVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMAGM2;PEME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMAGM1;MADM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMAFQ2;MADM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMAFQ1;DFAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EVWMR2;NKQA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EVWMR1;RFMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EVDXG1;RFMR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYJWM1;KVDT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ETWCD2;QAWL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ETWCD1;FLZV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ETQPH2;CQCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ETQPH1;JPEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EQMBM2;JPEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EQMBM1;UTSV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMDNA1;UTSV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMDNA2;MWMR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMLEV1;MWMR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMLEV2;FLZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMMMM1;UAEU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMMMM2;JEMU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMVAE1;MEAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMVAE2;EAWZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMZQT1;SNVE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMZQT2;DZZN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENKPR1;GYXS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENKPR2;AXAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELLMA1;ZASL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELLMA2;MEAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECATP1;EWPU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECATP2;UAEU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECBZW1;EWPU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYJWM2;RMYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYLXX2;RMYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAKMT1;ASSB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAMVA2;ASSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAHPK2;CAPJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAHPK1;CAPJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EATMK2;FPQM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EATMK1;YQQW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EANAC2;FTBJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EANAC1;CQLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAMVA1;MAYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYLXX1;UVWJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAMGF2;EWQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAMGF1;FQAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EALFA2;KYET1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EALFA1;UNJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAKZZ2;EDEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAKZZ1;FYZR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELKLX1;ZKLJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELKLX2;MKPJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMUQY1;LSCD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMUQY2;YLUT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMZUA1;GFMP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMZUA2;MAYA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWDNT1;GBMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWDNT2;YFAU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWMGV1;UJYB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWMGV2;YMAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWNQL1;UJYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWNQL2;LSCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWSNA1;CUGM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EWSNA2;VAQS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXRSG2;KQFK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXTPM1;WTRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EXTPM2;YLUT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECBZW2;DUGH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJMDS1;LGFL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJMDS2;RSZX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EAGMV1;UVWJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EAQXK1;GFMP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EALTT2;YBKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EALTT1;ZCBB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EAKYE2;LSHW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EAKYE1;VFRC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EAGMV2;FYZR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EZSPB2;ZKLJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESSEV2;MKPJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EZSPB1;BVZA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EZQRN2;LSHW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EZQRN1;KYET2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EZMRW2;UAWZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EZMRW1;YWLZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EZGAX2;DUGH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EAQXK2;DTBC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EATFV1;BNDV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EATFV2;LGFL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EAXXL1;WTRF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EAXXL2;CUGM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EFWME1;WVFG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EFWME2;KQFK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EEKLK1;HJAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EEKLK2;HVEJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EFMWB1;GMVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EFMWB2;ZPRB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EZXLT1;JADQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EZXLT2;TPDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EGKFW1;GLFN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EGKFW2;VYRC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EHXVK1;JMVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EKXVK2;VFRC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EZGAX1;NLDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EZDNX2;ZCBB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EZDNX1;YBKL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECRAA1;EWQL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELYQM2;YMAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECCHY1;UNJQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECCHY2;FQAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECFCV1;EDEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECFCV2;MZXX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJHHH1;MJAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EJHHH2;VRMB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECNTA1;BLQL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECPZP1;VAQS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGKJZ1;YFAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EGMMN1;YWLZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EZPAG1;RSZX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EZRXV1;MKBK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECUPS2;JMVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECRAA2;DTBC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EZARJ2;GBMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECSVS1;USDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECSVS2;ZRYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECSZM1;YXTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECSZM2;ZJHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECUZW1;HLGJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECUZW2;YPRF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECTML1;PFTR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECTML2;DKBG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECNTA2;ABWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECPZP2;QSSK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECUPS1;LQKK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EYTUJ1;YFDF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EYTUJ2;AMUL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS13EZARJ1;WBSP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAKMT2;MZPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELYQM1;PQBF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAGTH2;RMVQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMNGU2;ZBHT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMQSX2;GFMJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMQSX1;WKAP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMNMM2;GESV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMNMM1;ABWW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMQAE2;RPPX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMQAE1;UPMF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMNGU1;KXBA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENMQY1;MJAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYTUH2;HLGJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EYTUH1;ZJHB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMEEL2;LULC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMEEL1;VJYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMDTN2;VAVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMDTN1;AMUL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMQVS1;VSJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMQVS2;WWXF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMSMJ1;ECLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMSMJ2;LPCD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMVAC1;BMPQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMVAC2;MMSJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMVVQ1;WTET1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMVVQ2;VYRC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMWMF1;JYHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMWMF2;TUDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENCNT1;SZAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENCNT2;ASSL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENEKY1;WKAP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENEKY2;PFZQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENLEZ1;KEJE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENLEZ2;FYYQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENLZA1;YAVS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMBNM2;SWUK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMBAL2;YAVS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMBAL1;FYYQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EUMJH2;JYHJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAGTH1;BLQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESWHG1;ZUAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ESWHG2;KBML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ETAWS1;BNDV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ETAWS2;RTCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ETEHW1;SWUK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ETEHW2;UZMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ETHGA1;MMSJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ETHGA2;UZMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ETLHJ1;ASSL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ETLHJ2;HLDB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EUGHR1;PKDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EUGHR2;WTET2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EUMJH1;HLDB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ETXYU1;HMYM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMAGF2;PKDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ETXYU2;RTCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EVPLR1;HMYM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EVPLR2;AWPJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EUWBD1;AWPJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EUWBD2;KEJE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EUWAS1;PFZQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EUWAS2;SZAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EVHYA1;TUDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EVHYA2;CKNF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELZSR1;KBML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELZSR2;JGNS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELWGN1;DKJV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELWGN2;EZHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMAGF1;EZHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENLZA2;CZRC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EMBNM1;DKJV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENMQY2;DGLL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECAKM1;AUAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EADBZ1;AUAX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKLTL2;KLTS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EKLTL1;BDJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EBYYS2;TKZC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EBYYS1;PSEF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ECAKM2;DGLL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EBXNF2;EDVE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPZCY2;ELRF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EBXNF1;LNTR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHCZF2;ATAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EHCZF1;MDUJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EFMRT2;DAKB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EFMRT1;AQHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEZUC2;NFSY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELDCG1;DHJH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELDCG2;DHJH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELGRB1;BNME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ELGRB2;RZPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EATVN1;RZPT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EATVN2;XMRL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EBKVY1;BNME2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EBKVY2;NFSY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EADDB1;DAKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EADDB2;THPN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAWJN1;MPUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAWJN2;MPUD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAXRW1;WYGC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAXRW2;WYGC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAZNH1;THPN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENMRA1;MDUJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EAZNH2;ATAB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EEZUC1;CZRC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EADBZ2;BGZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENNWU1;MYZV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENQES2;DKGT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENVAG2;BRFX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENSTA2;BRFX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENSTA1;MYZV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENNWU2;ZEXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENPRA2;QUYV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENPRA1;QUYV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENQES1;QQKR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENWTA2;KJLQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENSKN2;FDNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENSKN1;FDNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENMWJ2;DELF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPZCY1;DELF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENMWJ1;QQKR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENMRA2;GNNG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENWTA1;BVZA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENVAG1;DKGT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPMLP1;GNNG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPKWS1;UAHY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPPZX2;NYHQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPUZX2;XVPL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPPZX1;AQHN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPMLP2;NYHQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENYNB1;NYHQ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPKWS2;NYHQ4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPFNB2;STYP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPFNB1;STYP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPDKZ2;CSMQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPDKZ1;QCUZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13ENYNB2;TRYJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM13EPUZX1;TRYJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113DB1DCCS;MWTN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113DB1DCHADEMO;MWTN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113DB1GT2;CSMQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113CB1DCCS;KJLQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113CB1GT2;QCUZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113CB1DCHADEMO;BDJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113EB1DCHADEMO;XVPL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113EB1DCCS;WWCX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63075AB1GT2;DHPT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113EB1GT2;ECRP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113FB1DCCS;GZXA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113FB1DCHADEMO;ZUAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113FB1GT2;FRST1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113GB1DCCS;HMUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113BB1DCHADEMO;RZVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113GB1DCHADEMO;DAML1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113BB1GT2;YHFH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63075AB2DCHADEMO;BAKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113BB1DCCS;QTSD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63099AB1DCCS;AXCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113HB1DCCS;YHFH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63075AB2DCCS;MJAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63075AB2GT2;MKBK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63080BB1DCCS;JXDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63080BB1DCHADEMO;FAHJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63080BB1GT2;HNZM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63099AB1DCHADEMO;UCEV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113AB1GT2;SZUZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63099AB1GT2;NEYB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63103AB1DCCS;SZUZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63103AB1DCHADEMO;JBWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63103AB1GT2;WWCX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113AB1DCCS;BJVV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113AB1DCHADEMO;AMMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113GB1GT2;HMVM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63164AB1GT2;ANRV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113HB1DCHADEMO;USDY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63141AB1DCCS;NYJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63124BB1DCCS;DLLM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63124BB1DCHADEMO;UCEV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63124BB1GT2;JGNS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63125AB1DCCS;UAHY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63125AB1DCHADEMO;JBWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63125AB1GT2;BJVV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63141AB1DCHADEMO;AMMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63124AB1DCHADEMO;HMVM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63141AB1GT2;MZXX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63164AB1DCCS;NYJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63164AB1DCHADEMO;UAWZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63165AB1DCCS;USDY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63165AB1DCHADEMO;GZXA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63075AB1DCCS;DAML2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63124AB1GT2;AXCW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63124AB1DCCS;RZVX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113HB1GT2;QTSD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113KB1DCCS;HJAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113IB1DCCS;GMVA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113IB1DCHADEMO;HVEJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113IB1GT2;TPDM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113JB1DCCS;WVFG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113JB1DCHADEMO;GLFN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113JB1GT2;JADQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113KB1DCHADEMO;CQLN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63116AB2GT2;CKNF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63113KB1GT2;ANRV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63116AB1DCCS;ZPRB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63116AB1DCHADEMO;FRST2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63116AB1GT2;BAKL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63116AB2DCCS;JXDD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63116AB2DCHADEMO;GDGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63075AB1DCHADEMO;VRMB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63006AB1D;ZVZT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63070BB1GT2;UFBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63070BB1DCHADEMO;FAHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63019AB1DCHADEMO;HMUA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63019AB1GT2;HNZM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63026AB1DCCS;UDHG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63026AB1DCHADEMO;UFBH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63026AB1GT2;ZVZT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63032AB1DCCS;UDHG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63032AB1DCHADEMO;QFKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63032AB1GT2;WRJD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63032BB1DCCS;NGUC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63032BB1DCHADEMO;ECRP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63032BB1GT2;NLDD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63038AB1DCCS;FRESEE42218BG12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63038AB1DCHADEMO;FRESEE42218BG11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63038AB1GT2;FRESEE42218AC11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63038BB1DCCS;FRESEE42218BI13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63019AB1DCCS;FRESEE42218AC12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63014AB1GT2;FRESEE42218BI11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63014AB1DCHADEMO;FRESEE42218BI12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63006BB1DCHADEMO;FRESEE42223AA12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63178CB1DCCS;FRESEE42223AA13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63001AB1DCCS;FRESEE42218BD11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63001AB1DCHADEMO;FRESEE42223AA11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63001AB1GT2;FRESEE42218AK12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63006AB1G;FRESEE42218AK11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63006BB1DCCS;FRESEE42218BB13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63006BB1GT2;FRESEE42218BB12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63014AB1DCCS;FRESEE42218BB11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63009BB1DCCS;FRESEE42218AH12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63009BB1DCHADEMO;FRESEE42218AH11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63009BB1GT2;FRESEE42095AA12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63010AB1DCCS;FRESEE42218AV12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63010AB1DCHADEMO;FRESEE42095AA11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63010AB1GT2;FRESEE42218BK12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63038BB1DCHADEMO;FRESEE42095AC11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63038BB1GT2;FRESEE42095AC12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63040AB1DCCS;FRESEE42218AJ12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63066AB1GT2;FRESEE42044AA12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63055AB1GT2;FRESEE42044AA11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63063AB1DCCS;FRESEE42218BK11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63063AB1DCHADEMO;FRESEE42207AD13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63063AB1GT2;FRESEE42207AD12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63066AB1DCCS;FRESEE42207AD11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63066AB1DCHADEMO;FRESEE42275AA12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63069BB1DCCS;FRESEE42275AA11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63055AB1DCCS;FRESEE42218AU12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63069BB1DCHADEMO;FRESEE42218AU11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63069BB1GT2;FRESEE42218AR12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63070AB1DCCS;FRESEE42218AR11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63070AB1DCHADEMO;FRESEE42186AB12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63070AB1GT2;FRESEE42186AB11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63070BB1DCCS;FRESEE42095AB12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63055AB1DCHADEMO;FRESEE42095AB11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63054BB1GT2;FRESEE42218AV11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63040AB1DCHADEMO;FRESEE42207AC13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63042AB1GT2;FRESEE42218AJ11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63040AB1GT2;FRESEE42218AO11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63040BB1DCCS;FRESEE42005AA13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63040BB1DCHADEMO;FRESEE42005AA12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63040BB1GT2;FRESEE42005AA11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63042AB1DCCS;FRESEE42005AC12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63042AB1DCHADEMO;FRESEE42005AC11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63046BB1DCCS;FRESEE42005AB12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63054BB1DCHADEMO;FRESEE42005AB11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63046BB1DCHADEMO;FRESEE42218AO12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63046BB1GT2;FRESEE42218AY12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63050BB1DCCS;FRESEE42218BQ12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63050BB1DCHADEMO;FRESEE42218AY11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63050BB1GT2;FRESEE42275AE12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63054BB1DCCS;FRESEE42275AE11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63165AB1GT2;FRESEE42207AC12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63300CB1GT2;FRESEE42207AC11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63178CB1DCHADEMO;FRESEE42186AC12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63319AB1DCHADEMO;FRESEE42186AC11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63352CB1DCCS;FRESEE42218BD13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63352CB1DCHADEMO;FRESEE42218BQ11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63352CB1GT2;FRESEE42218AZ11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63354AB1DCCS;FRESEE42218BS13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63354AB1DCHADEMO;FRESEE42218BL12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63354AB1GT2;FRESEE42218BS12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63370AB1DCCS;FRESEE42218BS11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63370AB1DCHADEMO;FRESEE42005AD12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63370AB1GT2;FRESEE42005AD11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63370AB2DCCS;FRESEE42218AD12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63370AB2DCHADEMO;FRESEE42218AD11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63370AB2GT2;FRESEE42275AC12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63381AB1DCCS;FRESEE42275AC11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63381AB1DCHADEMO;FRESEE42218BL11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63381AB1GT2;FRESEE42218AZ12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63470BB1GT2;FRESEE42218AA13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63352BB1G;FRESEE42218AA12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63352BB1D;FRESEE42218AA11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63342BB1DCCS;FRESEE42218AI12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63322AB1DCCS;FRESEE42218AI11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63322AB1DCHADEMO;FRESEE42218BN13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63322AB1GT2;FRESEE42218BN12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63338AB1DCCS;FRESEE42218BN11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63338AB1DCHADEMO;FRESEE42218BD12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63338AB1GT2;FRESEE42095AB13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63342BB1DCHADEMO;FRESEE42218BP11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63345BB1GT2;FRESEE42186AA12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63342BB1GT2;FRESEE42218AM12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63345AB1DCCS;FRESEE42218AM11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63345AB1DCHADEMO;FRESEE42218BM12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63345AB1GT2;FRESEE42218BM11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63345BB1DCCS;FRESEE42207AE12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63345BB1DCHADEMO;FRESEE42207AE11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63415BB1DCCS;FRESEE42186AD12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63415BB1DCHADEMO;FRESEE42186AD11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63415BB1GT2;FRESEE42218AX12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63457AB1GT2;FRESEE42218AX11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63439BB1GT2;FRESEE42218BE13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63448BB1DCCS;FRESEE42218BE12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63448BB1DCHADEMO;FRESEE42218BE11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63448BB1GT2;FRESEE42218BC13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63457AB1DCCS;FRESEE42218BC12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63457AB1DCHADEMO;FRESEE42218BC11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63458AB1D;FRESEE42218BJ13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63439BB1DCCS;FRESEE42218BJ12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63458AB1G;FRESEE42218BJ11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63458BB1DCCS;FRESEE42218AE11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63458BB1DCHADEMO;FRESEE42218AE12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63458BB1GT2;FRESEE42237AB11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63470BB1DCCS;FRESEE42218AW12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63470BB1DCHADEMO;FRESEE42218BP12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63439BB1DCHADEMO;FRESEE42218AG12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63439AB1G;FRESEE42218AG11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63426AB1DCCS;FRESEE42207AG12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63430AB2DCHADEMO;FRESEE42207AG11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63426AB1DCHADEMO;FRESEE42330AA13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63426AB1GT2;FRESEE42330AA12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63430AB1DCCS;FRESEE42330AA11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63430AB1DCHADEMO;FRESEE42218AW11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63430AB1GT2;FRESEE42237AB12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63430AB2DCCS;FRESEE42218AT12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63430AB2GT2;FRESEE42218AT11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63439AB1D;FRESEE42218BA12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63430BB1DCCS;FRESEE42218BA11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63430BB1DCHADEMO;FRESEE42218AF13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63430BB1GT2;FRESEE42218AF12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63430CB1DCCS;FRESEE42218AF11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63430CB1DCHADEMO;FRESEE42237AB13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63430CB1GT2;FRESEE42186AA13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63319AB1GT2;FRESEE42218AF14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63352BB1M;FRESEE42186AA11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63319AB1DCCS;FRESEE42218AP11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63247AB1DCCS;FRESEE42207AF11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63236BB1DCCS;FRESEE42237AA12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63236BB1DCHADEMO;FRESEE42237AA11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63236BB1GT2;FRESEE42218AQ13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63241BB1DCCS;FRESEE42218AQ12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63241BB1DCHADEMO;FRESEE42218AQ11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63241BB1GT2;FRESEE42218AP13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63247AB1DCHADEMO;FRESEE42218AP12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63236AB1DCHADEMO;FRESEE42207AH12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63247AB1GT2;FRESEE42207AF13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63254AB1DCCS;FRESEE42218BO12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63254AB1DCHADEMO;FRESEE42218BO11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63254AB1GT2;FRESEE42218AB12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63255BB1DCCS;FRESEE42218AB11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63255BB1DCHADEMO;FRESEE42275AD13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63236AB1GT2;FRESEE42275AD12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63236AB1DCCS;FRESEE42275AD11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63263AB1DCCS;FRESEE42237AC12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63193AB1DCCS;FRESEE42207AF12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63178DB1DCCS;FRESEE42207AH11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63178DB1DCHADEMO;FRESEE42275AB11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63178DB1GT2;FRESEE42218BR12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63192AB1DCCS;FRESEE42237AC11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63192AB1DCHADEMO;FRESEE42275AB12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63192AB1GT2;FRESEE42218AL12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63193AB1DCHADEMO;FRESEE42218AL11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63308AB1GT2;FRESEE42207AA12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63193AB1GT2;FRESEE42218AN12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63195AB1DCCS;FRESEE42218AN11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63195AB1DCHADEMO;FRESEE42218BF12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63195AB1GT2;FRESEE42218BF11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63231AB1DCCS;FRESEE42207AA11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63231AB1DCHADEMO;FRESEE42218BR11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63255BB1GT2;FRESEE42218BH13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63231AB1GT2;FRESEE42218BH12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63263AB1DCHADEMO;FRESEE42218BH11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63305AB1DCHADEMO;FRESEE42218AS13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63300BB1DCCS;FRESEE42218AS12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63300BB1DCHADEMO;FRESEE42275AB13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63300CB1DCCS;FRESEE42218AS11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63300CB1DCHADEMO;FRG10E42140A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63178CB1GT2;FRG10E42140A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63305AB1DCCS;FRG10E42140A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63305AB1GT2;FRG10E42140A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63300AB1DCHADEMO;FRG10E42140A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63307AB1DCCS;FRG10E42140A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63307AB1DCHADEMO;FRG10E42140A24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63307AB1GT2;FRG10E42140A23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63308AB1DCCS;FRG10E17028A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63308AB1DCHADEMO;FRG10E17028A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63263AB1GT2;FRG10E17028A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63300AB1GT2;FRG10E74118A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63300BB1GT2;FRG10E62898A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63300AB1DCCS;FRG10E62898A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63272AB1DCHADEMO;FRG10E94074A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63269BB1DCCS;FRG10E73179A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63269BB1DCHADEMO;FRG10E73179A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63269BB1GT2;FRG10E73179A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63291AB1GT2;FRG10E76150A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63270BB1DCHADEMO;FRG10E76150A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63270BB1GT2;FRG10E76150A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63272AB1DCCS;FRG10E76150A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63270BB1DCCS;FRG10E94074A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63272AB1GT2;FRG10E77132A15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63284AB1DCCS;FRG10E77132A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63284AB1DCHADEMO;FRG10E77132A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63284AB1GT2;FRG10E74118A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63291AB1DCCS;FRG10E77132A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS63E63291AB1DCHADEMO;FRG10E74118A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAEABS1DA9;FRG10E42059A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAEABS1DA1;FRG10E74118A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAEABS1DA2;FRG10E74118A31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAEABS1DA3;FRG10E83069A62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAEABS1DA4;FRG10E84087A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAEABS1DA5;FRG10E84087A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAEABS1DA6;FRG10E35021A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAEABS1DA7;FRG10E35021A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAEABS1DA8;FRG10E35021A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAECFD1DA3;FRG10E35021A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAEABS1DA10;FRG10E03107A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAEABS1DA11;FRG10E42059A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAEABS1DA12;FRG10E94073A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAEABS1AA1;FRG10E94073A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAECFD1DA1;FRG10E91235A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAECFD1DA2;FRG10E91235A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAECFD1DA4;FRG10E42094A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRCHAECFD1AA1;FRG10E42094A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS28ESDE28LOU3B1P1;FRG10E42094A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMELAMONTAGNESA1;FRG10E69027A24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEAUCHEVALBLANCNIEDERSTEINBACH1;FRG10E69027A23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEJRIMMO11;FRG10E69027A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEACACIAS11;FRG10E69027A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMECAMPINGLAVANDES11;FRG10E69027A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMERAMADES11;FRG10E69027A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEMALIJAI441;FRG10E69027A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEPINARELLO11;FRG10E43137A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEHOTELLECOLLIER11;FRG10E43137A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMGARAGEROUMANILLE1;FRG10E43137A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMELORIOL11;FRG10E74118A32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAEDSVA1;FRG10E77132A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40151;FRG10E45104A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40148;FRG10E83069A61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40149;FRG10E83069A52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40150;FRG10E45338A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40153;FRG10E45312A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40152;FRG10E45312A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40155;FRG10E45249A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E40154;FRG10E45249A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E108652;FRG10E45247A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M201801;FRG10E45247A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M201802;FRG10E45185A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1M201803;FRG10E45185A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAEVBP2005117;FRG10E45104A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBYGX1;FRG10E84087A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPJFU1;FRG10E45102A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHRRW1;FRG10E45102A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAFME1;FRG10E45092A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFWHV1;FRG10E45092A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECJAK1;FRG10E45061A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECNQE1;FRG10E45061A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXHPA1;FRG10E45004B12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKBAK1;FRG10E45004B11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXWFR1;FRG10E45004A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXHBM1;FRG10E45004A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDMGG1;FRG10E59343A16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYMPJ1;FRG10E59343A15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVMLS1;FRG10E59343A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENAUV1;FRG10E59343A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPMYD1;FRG10E59343A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEVMD1;FRG10E59343A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZZBU2;FRG10E45338A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMVVR2;FRG10E45345A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAADJ1;FRG10E45345A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBPUT2;FRG10E06088A34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADPY1;FRG10E83069A51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUFRQ1;FRG10E83069A41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGDPA1;FRG10E83069A32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBZFN1;FRG10E83069A31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETLAZ1;FRG10E83069A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMTVB1;FRG10E83069A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECRYZ1;FRG10E83069A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKEKV1;FRG10E83069A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMVVR1;FRG10E42149A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBYGX2;FRG10E42149A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAFYY2;FRG10E06088A36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESDLJ1;FRG10E06088A35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAFYY1;FRG10E06088A33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBPUT1;FRG10E50647A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZJLP1;FRG10E06088A32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXYNZ1;FRG10E06088A31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJSJY1;FRG10E06088A24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYNWA1;FRG10E06088A23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMBMJ1;FRG10E06088A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETWKK1;FRG10E06088A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYKMC2;FRG10E06088A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKZAR1;FRG10E06088A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKAHN2;FRG10E29236A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYKMC1;FRG10E29236A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETWKK2;FRG10E50647A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPRMT1;FRG10E50647A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKZAR2;FRG10E84087A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKAHN1;FRG10E83069A42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYMLJ1;FRG10E43268A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHKMX1;FRG10E42218AA67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHKMX2;FRG10E42218AA65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEETZH1;FRG10E42218AA64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEETZH2;FRG10E42218AA63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESTAP1;FRG10E42218AA62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESTAP2;FRG10E42218AA61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGPAU1;FRG10E42218AA56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMJJA1;FRG10E42218AA55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQQPJ1;FRG10E42218AA54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKHTZ1;FRG10E42218AA53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGCQY1;FRG10E42218AA52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPHFM1;FRG10E42218AA51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEENAV1;FRG10E42218AA48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEURZS1;FRG10E42218AA47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERPTQ1;FRG10E42218AA46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESMPC1;FRG10E42218AA45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHSKG1;FRG10E42218AA44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAJWD1;FRG10E42218AA43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQVKT1;FRG10E42218AA42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPVZP1;FRG10E42218AA41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEMCZ1;FRG10E42218AA36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERHYJ1;FRG10E42218AA35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENPSW1;FRG10E42218AA34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPTNN1;FRG10E42218AA33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETVQE1;FRG10E42218AA32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBBPL1;FRG10E42218AA31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAVAA1;FRG10E42218AA22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUCLV1;FRG10E42218AA21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZSJV1;FRG10E42218AA66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGTFW1;FRG10E42218AA68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGPXV2;FRG10E42218AA19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYDNU2;FRG10E42218AA71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFWBG2;FRG10E17300A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVNZS2;FRG10E43268A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERLPA1;FRG10E17300A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELTZZ2;FRG10E17300B12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAZAL1;FRG10E17300B11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESKTZ1;FRG10E17300D12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUDVX1;FRG10E17300D11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUDEC1;FRG10E17300C12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESKTZ2;FRG10E45122A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVPCX2;FRG10E45122A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYZNJ2;FRG10E85089A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGPXV1;FRG10E85089A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUDVX2;FRG10E85089A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAZAL2;FRG10E85089A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKBFU2;FRG10E66210A23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVPCX1;FRG10E66210A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYMBT1;FRG10E66210A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMMQQ2;FRG10E66210A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMUYF2;FRG10E66210A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHXHX2;FRG10E66210A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEURKC2;FRG10E42218AA78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWRGC2;FRG10E42218AA77;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMGBM2;FRG10E42218AA76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENAKY2;FRG10E42218AA75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERSXJ2;FRG10E42218AA74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZJJU2;FRG10E42218AA73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJVFV2;FRG10E42218AA72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERLPA2;FRG10E42218AA110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMEDT2;FRG10E17300C11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETSNG1;FRG10E42218AA18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXARR1;FRG10E42218AB13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYZNJ1;FRG10E42218AB11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQYSR1;FRG10E63258B12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKBFU1;FRG10E63258B11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUDEC2;FRG10E63454A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYMBT2;FRG10E63454A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQYSR2;FRG10E73182A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVXRD1;FRG10E73182A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHMGM1;FRG10E45145A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHXHX1;FRG10E45145A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVRYG2;FRG10E45028B32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVJMA2;FRG10E45028B31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPSSZ2;FRG10E45028B42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEABCX2;FRG10E45028B41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHMGM2;FRG10E45028B22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZEZV2;FRG10E45028B21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVRTH1;FRG10E45028B12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFVQA1;FRG10E45028B11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERZMT1;FRG10E42222A16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERZMT2;FRG10E42222A15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZSJV2;FRG10E42222A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZEZV1;FRG10E42222A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVRTH2;FRG10E42222A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYWTJ1;FRG10E42222A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDCNY1;FRG10E38563A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJCDY2;FRG10E38563A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGRXK2;FRG10E42218AA17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETSNG2;FRG10E38563A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYDNU1;FRG10E42218AB12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXARR2;FRG10E38563A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETDBA1;FRG10E42218AB14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAERC1;FRG10E42218AC31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZZBU1;FRG10E42218AA16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHXEZ1;FRG10E42279A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMMSA1;FRG10E42218AA15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERBQS1;FRG10E42218AA14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFWBG1;FRG10E42218AA13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERJBC2;FRG10E42218AA12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELTZZ1;FRG10E42218AA11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJYHE1;FRG10E63231A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFKCD1;FRG10E63231A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQLAH1;FRG10E42218AC42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVNZS1;FRG10E42218AC41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBAHD2;FRG10E42218AC32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBFMM2;FRG10E38563A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGPAU2;FRG10E42218AC24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADPY2;FRG10E42218AC16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFKCD2;FRG10E42218AC23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXUAV1;FRG10E42218AC13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQLAH2;FRG10E42218AC14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETLAZ2;FRG10E42218AC15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVBGC2;FRG10E42218AC12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGDPA2;FRG10E42279A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMTVB2;FRG10E42218AC21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEURZS2;FRG10E42218AC17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHSKG2;FRG10E42218AC22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESMPC2;FRG10E42218AC18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEENAV2;FRG10E42218AC11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAJWD2;01F855ZM0DK6KAMZJBR22DNS56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGCQY2;FR*55C*E84000*43*935617*4*820722*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQVKT2;FR*55C*E92280*48*852039*2*204544*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYNWA2;FR*55C*E84000*43*946211*4*843683*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBZFN2;FR*55C*E84000*43*946211*4*843682*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPJFU2;FR*55C*E84000*43*946211*4*843681*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXHBM2;FR*55C*E84000*43*946211*4*843684*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFWHV2;FR*55C*E84000*43*936094*4*805082*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUFRQ2;FR*55C*E84000*43*940161*4*876343*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDCNY2;FR*55C*E84000*43*936094*4*805081*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUCLV2;FR*55C*E84000*43*940161*4*876342*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPVZP2;FR*55C*E84000*43*940161*4*876341*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZAQN2;FR*55C*E84000*43*947206*4*828152*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEANNV2;FR*55C*E84000*43*940161*4*876344*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMJJA2;FR*55C*E84000*43*947206*4*828151*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFFEV1;FR*55C*E84000*43*952128*4*833251*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEANNV1;FR*55C*E84000*43*935617*4*820721*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERHYJ2;FR*55C*E84000*43*936482*4*809692*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERPTQ2;FR*55C*E84000*43*936482*4*809693*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQQPJ2;FR*55C*E93700*48*925679*2*440463*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECSMV2;FR*55C*E93700*48*925679*2*440462*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENPSW2;FR*55C*E84000*43*925813*4*876642*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPTNN2;FR*55C*E84000*43*925813*4*876641*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETVQE2;FR*55C*E84000*43*952128*4*833252*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBBPL2;FR*55C*E84000*43*929592*4*799191*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECSMV1;FR*55C*E92280*48*852039*2*204545*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFFEV2;FR*55C*E84000*43*929592*4*799193*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAVAA2;FR*55C*E84000*43*929592*4*799194*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECJAK2;FR*55C*E92280*48*852039*2*204546*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXWFR2;FR*55C*E92380*48*838861*2*170363*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKBAK2;FR*55C*E92280*48*852039*2*204543*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECXKA2;FR*55C*E92280*48*852039*2*204541*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDLBW1;FR*55C*EFR78140*17WAGNER*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJCZJ1;FR*55C*E84000*43*937354*4*798621*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFBKU1;FR*55C*EFR78140*17WAGNER*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJVHP1;FR*55C*E92380*48*838861*2*170365*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUMUE1;FR*55C*E92380*48*838861*2*170362*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBHQT1;FR*55C*E92380*48*838861*2*170366*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPMYD2;FR*55C*E92380*48*838861*2*170361*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDLBW2;FR*55C*E92380*48*838861*2*170364*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKXPP1;FR*55C*E78000*48*809898*2*120955*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKEKV2;FR*55C*E78000*48*809898*2*120951*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESDLJ2;FR*55C*E78000*48*801880*2*129935*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAEBA2;FR*55C*E78000*48*801880*2*129933*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUMUE2;FR*55C*EFR78000*AVDEPAR1S*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJCZJ2;FR*55C*EFR78000*AVDEPAR1S*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKXPP2;FR*55C*E94340*48*824446*2*473441*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVXRD2;FR*55C*E94340*48*824446*2*473442*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAEBA1;FR*55C*E94340*48*824446*2*473443*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHJNT1;FR*55C*E94340*48*824446*2*473444*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYWTJ2;FR*55C*E94340*48*824446*2*473445*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECRYZ2;FR*55C*E94340*48*824446*2*473446*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDMGG2;FR*55C*E94340*48*820182*2*473871*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKHTZ2;FR*55C*E94340*48*820182*2*473873*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPHFM2;FR*55C*E94340*48*820182*2*473876*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEVMD2;FR*55C*E94340*48*820182*2*473875*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJSJY2;FR*55C*E94340*48*820182*2*473872*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECNQE2;FR*55C*E94340*48*820182*2*473874*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXHPA2;FR*55C*E92280*48*852039*2*204542*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYMPJ2;FR*55C*E84000*43*929592*4*799192*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBLLT1;FR*55C*E92140*48*786899*2*255331*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECXKA1;FR*55C*E84000*43*937354*4*798622*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECYJM1;FR*55C*E06270*43*641297*7*130062*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESEXA1;FR*55C*E84000*43*943149*4*796951*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYRYT1;FR*55C*E84000*43*943149*4*796954*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAAZG1;FR*55C*E84000*43*943149*4*796952*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESSTH1;FR*55C*E84000*43*943149*4*796953*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVNMS1;FR*55C*E84000*43*939104*4*821431*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKYUR1;FR*55C*E84000*43*939104*4*821432*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELPGB1;FR*55C*E83580*43*230239*6*585712*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPQAX1;FR*55C*E83580*43*230239*6*585711*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVWLS2;FR*55C*E84000*43*927832*4*838551*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEZCK1;FR*55C*E84000*43*927832*4*838552*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENCRV2;FR*55C*E06270*43*641297*7*130061*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELEVR2;FR*55C*E06270*43*641297*7*130064*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERNNM2;FR*55C*E06270*43*641297*7*130063*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERNNM1;FR*55C*E84000*43*942905*4*825061*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUJXB2;FR*55C*E84000*43*930192*4*809382*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUJXB1;FR*55C*E84000*43*942905*4*825062*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVWLS1;FR*55C*E92140*48*786899*2*255336*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENCRV1;FR*55C*E92140*48*786899*2*255333*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZMML2;FR*55C*E92140*48*786899*2*255334*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZMML1;FR*55C*E92140*48*786899*2*255335*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHKZA2;FR*55C*E92140*48*786899*2*255332*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHKZA1;FR*55C*E92140*48*798984*2*262842*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENQUM2;FR*55C*E92140*48*798984*2*262841*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENQUM1;FR*55C*E92140*48*798984*2*262844*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZRQT1;FR*55C*E92140*48*798984*2*262845*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDAHL2;FR*55C*E92140*48*798984*2*262843*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKKWU2;FR*55C*EFR78140*17WAGNER*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYDXF2;FR*55C*E92140*48*798984*2*262846*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQEZZ1;FR*55C*E75015*GIRVATMX023887*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXUAV2;FR*55C*E75015*GIRVATMX023887*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBAYG1;FR*55C*E75015*GIRVATMX023887*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBAYG2;FR*55C*E57740*GIRVATMX023547*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWJYE1;FR*55C*E84000*43*930192*4*809381*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWJYE2;FR*55C*E84000*43*929502*4*821971*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMDSG2;FR*55C*E84000*43*929502*4*821972*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUAEP2;FR*55C*E84000*43*942256*4*816932*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPRMT2;FR*55C*E84000*43*942256*4*816931*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELEVR1;FR*55C*E84310*43*940189*4*899411*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUAEP1;FR*55C*E84310*43*940189*4*899412*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMXME2;FR*55C*E69800*GIRVATMX023915*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMDSG1;FR*55C*E69800*GIRVATMX023915*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQEZZ2;FR*55C*E69800*GIRVATMX023915*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMXME1;FR*55C*E28160*GIRVATMX02216F*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKKWU1;FR*55C*E28160*GIRVATMX02216F*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEZCK2;FR*55C*E28160*GIRVATMX02216F*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZRQT2;FR*55C*E49480*GIRVATMX01DDF5*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYDXF1;FR*55C*E49480*GIRVATMX01DDF5*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWLD1;FR*55C*E49480*GIRVATMX01DDF5*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERTTM1;FR*55C*E69800*GIRVATMX0234FA*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPQAX2;FR*55C*E69800*GIRVATMX0234FA*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHATQ2;FR*55C*E69800*GIRVATMX0234FA*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKYUR2;FR*55C*E51400*GIRVATMX02AA8A*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWLD2;FR*55C*E51400*GIRVATMX02AA8A*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGCYW1;FR*55C*E51400*GIRVATMX02AA8A*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKLGY1;FR*55C*E51400*GIRVATMX02A6A6*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHATQ1;FR*55C*E51400*GIRVATMX02A6B6*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENMSY1;FR*55C*E51400*GIRVATMX02A6B6*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWYDN2;FR*55C*E57740*GIRVATMX023547*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZVRU1;FR*55C*E57740*GIRVATMX023547*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDCEN1;FR*55C*EFR78140*17WAGNER*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHVPU1;FR*55C*P06380*SOS*PARKING;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEYHY1;FR*55C*EFR78140*17WAGNER*5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELCTK1;FR*55C*E83120*SMPC01*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZAQN1;FR*55C*E78000*48*799670*2*153570*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWYDN1;FR*55C*E78000*48*806742*2*151875*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEYHY2;FR*55C*E78000*48*806740*2*151950*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELPGB2;FR*55C*E78000*48*796610*2*136693*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGQGH1;FR*55C*E78000*48*796639*2*136630*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELCVB2;FR*55C*E83420*43*2072980*6*56872210*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETNMU1;FR*55C*E83420*43*2072980*6*56872200*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKJBQ2;FR*55C*E30150*44*024338*4*793616*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDAHL1;FR*55C*E30150*44*024338*4*793617*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETNMU2;FR*55C*E83420*CVGGR01*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELCVB1;FR*55C*E83420*CVGGR02*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGQGH2;FR*55C*E83120*SMPB01*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKJBQ1;FR*55C*E83120*SMPB02*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKLGY2;FR*55C*E83120*SMPC02*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELCTK2;FR*55C*EFR78140*17WAGNER*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDCEN2;FR*55C*E83120*SMPG01*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERTTM2;FR*55C*E83120*SMPG02*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGCYW2;FR*55C*E83120*SMPM01*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZVRU2;FR*55C*E83120*SMPM02*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVBGC1;FR*55C*E83120*PLT0001*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHVPU2;FR*55C*E83120*PLT0002*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENMSY2;FR*55C*E83850*GASS02*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFVQA2;FR*55C*E83850*GASS01*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEENLS2;FR*55C*E84400*svg*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJYHE2;FR*55C*E83310*43*251919*6*533656*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFGMB2;FR*55C*E83310*43*250659*6*534474*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWRDD1;FR*55C*E83310*43*251919*6*533655*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAGMC1;FR*55C*E83310*43*250659*6*534473*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAGMC2;FR*55C*E78000*48*799780*2*153560*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZAEF2;FR*55C*E83310*GIRVATMX029BAD*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVLGM2;FR*55C*E83310*GIRVATMX029BAD*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECKXA2;FR*55C*E83310*GIRVATMX029BAD*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEULSF2;FR*55C*E73800*EGEVBOX2*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETWAS2;FR*55C*E83240*PLU0001*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESQMH2;FR*55C*E83240*PLU0001*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMSWV2;FR*55C*E83990*PLU0002*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGVWA2;FR*55C*E83990*PLU0002*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMCRS2;FR*55C*E83480*PLU0003*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENWNN2;FR*55C*E83480*PLU0003*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERMDB2;FR*55C*E83480*PLU0004*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDHTS2;FR*55C*E83480*PLU0004*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETUWY2;FR*55C*E83310*PLU0005*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXFVE2;FR*55C*E83310*PLU0005*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWRDD2;FR*55C*E83310*PLU0007*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMANA2;FR*55C*E83310*PLU0007*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEPXE2;FR*55C*E83310*PLU0008*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYZQV2;FR*55C*E83310*PLU0008*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBEGE1;FR*55C*E83240*PLU0009*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEBYG1;FR*55C*E83990*FUL126*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECLBL2;FR*55C*E83990*FUL126*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHTJQ1;FR*55C*E84160*FUL132*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEPMC1;FR*55C*E84160*FUL132*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECLBL1;FR*55C*E83990*FUL133*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBUGE2;FR*55C*E83990*FUL133*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYZQV1;FR*55C*E83640*EVWB001*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECBDT2;FR*55C*E83640*EVWB002*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETYTB2;FR*55C*E83350*EVLINKCLUB55*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETYTB1;FR*55C*E83350*EVLINKCLUB55*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPSUF2;FR*55C*E94340*48*816812*2*466832*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBEGE2;FR*55C*E94340*48*816842*2*466812*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWSLV1;FR*55C*E94340*48*816935*2*466876*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWSLV2;FR*55C*E93700*48*921675*2*445813*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYGRD2;FR*55C*E84000*43*953885*4*823253*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXVKF2;FR*55C*E84000*43*953885*4*823255*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAGEZ2;FR*55C*E84000*43*953885*4*823254*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBGDG1;FR*55C*E84450*43*948856*4*933912*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETUEU2;FR*55C*E84450*43*948856*4*933911*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYAAZ2;FR*55C*E84000*43*949122*4*800713*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMFGK2;FR*55C*E84000*43*949122*4*800714*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZPFM1;FR*55C*E84000*43*949122*4*800715*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZPFM2;FR*55C*E84000*43*949122*4*800716*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMFGK1;FR*55C*E78140*48*780621*2*210095*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETWDU2;FR*55C*E78140*48*780621*2*210094*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETUEU1;FR*55C*E78140*48*780621*2*210091*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGCUC2;FR*55C*E78140*48*780621*2*210096*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETJZN2;FR*55C*E78140*48*780621*2*210092*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECCQD2;FR*55C*E78140*48*780621*2*210093*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENWNN1;FR*55C*E78140*48*782833*2*215456*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMCRS1;FR*55C*E78140*48*782833*2*215453*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDKJC2;FR*55C*E78140*48*782833*2*215451*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETJRB2;FR*55C*E78140*48*782833*2*215452*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECFYY2;FR*55C*E78140*48*782833*2*215454*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEACSX2;FR*55C*E78140*48*782833*2*215455*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETJZN1;FR*55C*E78140*48*785437*2*211933*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERVJR2;FR*55C*E78140*48*785437*2*211934*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYHAG1;FR*55C*E78140*48*785437*2*211932*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETJRB1;FR*55C*E78140*48*785437*2*211937*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJWMA1;FR*55C*E78140*48*785437*2*211935*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFGMB1;FR*55C*E78140*48*785437*2*211936*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBAYF2;FR*55C*E84000*43*953885*4*823256*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBAYF1;FR*55C*E93700*48*921681*2*445809*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGCUC1;FR*55C*E94340*48*816785*2*466818*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKUCE1;FR*55C*E92380*48*838644*2*187058*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECFYY1;FR*55C*E94340*48*816867*2*466860*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERMDB1;FR*55C*E94340*48*8168669*2*46686*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERMZJ2;FR*55C*E78000*48*800806*2*129053*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEACSX1;FR*55C*E78000*48*800833*2*129056*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGYBS1;FR*55C*E30133*43*958037*4*764347*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECCQD1;FR*55C*E30133*43*958037*4*764346*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDKJC1;FR*55C*E30133*43*962289*4*752516*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEELZJ2;FR*55C*E30133*43*962289*4*752517*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELVJT2;FR*55C*E30133*43*958425*4*768426*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELVJT1;FR*55C*E30133*43*958425*4*768425*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEPMC2;FR*55C*E92130*48*827423*2*267650*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEBYG2;FR*55C*E92130*48*827393*2*267488*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVZHD1;FR*55C*E92130*48*827510*2*267517*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFRQA2;FR*55C*E92130*48*827430*2*267646*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXUHM2;FR*55C*E92130*48*827433*2*267664*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXUHM1;FR*55C*E92130*48*827433*2*267662*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMGMG2;FR*55C*E92130*48*822630*2*249968*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMGMG1;FR*55C*E92130*48*822749*2*249493*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUUUZ2;FR*55C*E92130*48*822644*2*250074*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJRDR2;FR*55C*E92130*48*822613*2*250167*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQCKZ1;FR*55C*E92130*48*822748*2*249872*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJRDR1;FR*55C*E92130*48*822768*2*249937*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZGAW1;FR*55C*E92380*48*838740*2*187189*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERUMH2;FR*55C*E92380*48*838630*2*187012*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUUUZ1;FR*55C*E92380*48*838587*2*186960*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQCKZ2;FR*55C*E92380*48*838718*2*187280*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERUMH1;FR*55C*E92380*48*838697*2*187138*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHDMA2;FR*55C*E73800*EGEVBOX2*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERSYX2;FR*55C*EF192380*1GARE*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGDNA1;FR*55C*E73800*EGEVBOX2*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZGAW2;FR*55C*EFR92350*2L1BERAT10N*6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZLTL1;FR*55C*EFR92380*23RUE*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGDNA2;FR*55C*EFR92380*23RUE*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDYYN1;FR*55C*EFR92380*23RUE*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXYAW1;FR*55C*EFR92380*23RUE*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVANY1;FR*55C*EF192380*1GARE*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXLCQ1;FR*55C*EF192380*1GARE*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVMMD1;FR*55C*EF192380*1GARE*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPXEJ2;FR*55C*EFR92350*2L1BERAT10N*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUANA1;FR*55C*EFR92350*2L1BERAT10N*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUETH1;FR*55C*EFR92350*2L1BERAT10N*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDYYN2;FR*55C*EFR92350*2L1BERAT10N*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZLTL2;FR*55C*EFR92350*2L1BERAT10N*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGRRP1;FR*55C*EFR92350*2L1BERAT10N*5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGRRP2;FR*55C*EFR92350*31HERR10T*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESVFP2;FR*55C*EFR13100*1MA1R1E*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESACU1;FR*55C*EFR92350*31HERR10T*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESACU2;FR*55C*EFR92380*111JANV1ER*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESVFP1;FR*55C*EFR92380*111JANV1ER*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFRQA1;FR*55C*EFR92380*111JANV1ER*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMYMM2;FR*55C*EFR92380*111JANV1ER*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHDMA1;FR*55C*EFR84160*1GRANG1ER*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMVBK1;FR*55C*E84000*43*952673*4*796911*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFBWY1;FR*55C*EFR92350*4BLUM*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENQXC2;FR*55C*EFR92350*4BLUM*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENQXC1;FR*55C*EFR92350*4BLUM*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFGRM2;FR*55C*EFR92350*4BLUM*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFKPH2;FR*55C*EFR92350*4BLUM*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFGRM1;FR*55C*EFR92350*4BLUM*5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMBMU2;FR*55C*EFR83350*1320UMEDE*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEATCT2;FR*55C*EFR83350*1320UMEDE*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFBWY2;FR*55C*EFR92380*64DEBAT*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMFNK1;FR*55C*EFR92380*64DEBAT*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHMRU2;FR*55C*EFR33110*1LAF0NT*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKEEP1;FR*55C*EFR33110*1LAF0NT*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMVBK2;FR*55C*EFR33110*1LAF0NT*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHTJQ2;FR*55C*EFR33110*1LAF0NT*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKEEP2;FR*55C*EFR92380*71RUESURESNES*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVZHD2;FR*55C*EFR92380*71RUESURESNES*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETRNQ2;FR*55C*EFR92380*71RUESURESNES*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMLYV2;FR*55C*EFR92380*1DEV0S*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMFNK2;FR*55C*EFR92380*1DEV0S*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERSYX1;FR*55C*EFR92380*1DEV0S*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHMSF1;FR*55C*EFR92380*22PASTEUR*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFWTM2;FR*55C*EFR92380*22PASTEUR*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMYMM1;FR*55C*EFR92380*22PASTEUR*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFWTM1;FR*55C*EFR92380*61SURESNES*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENAQG1;FR*55C*EFR92380*61SURESNES*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENAQG2;FR*55C*EFR92380*61SURESNES*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPJMT1;FR*55C*EFR92380*159JAUNE*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHMSF2;FR*55C*EFR92380*159JAUNE*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPJMT2;FR*55C*EFR92380*159JAUNE*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMLYV1;FR*55C*EFR92380*3SU1SSES*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPSUF1;FR*55C*EFR92380*3SU1SSES*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETAFM1;FR*55C*EFR92380*3SU1SSES*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETAFM2;FR*55C*EFR84270*206P0NT*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFKPH1;FR*55C*EFR84270*206P0NT*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVXAV2;FR*55C*EFR84270*912EGU1LLES*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVXAV1;FR*55C*EFR84270*912EGU1LLES*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMBMU1;FR*55C*EFR92380*64DEBAT*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGYBS2;FR*55C*EFR13100*1MA1R1E*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESAGU1;FR*55C*EFR13100*1MA1R1E*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAERC2;FR*55C*EFR83820*2MAURES*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESAGU2;FR*55C*EFR78140*48EXELMANS*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKTBC1;FR*55C*EFR92350*8GAULLE*5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMKHZ1;FR*55C*EFR17880*PHARE*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMRNY1;FR*55C*EFR17880*PHARE*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENNXV1;FR*55C*EFR17880*PHARE*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUQQT1;FR*55C*EFR17880*PHARE*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELPPQ1;FR*55C*EFR84300*GAUTH1ER*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWSBD1;FR*55C*EFR84300*GAUTH1ER*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECAWZ1;FR*55C*E83240*PLU0009*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFNTU1;FR*55C*E06380*43*878408*7*448297*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJBMB1;FR*55C*E83990*43*256472*6*690518*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBSBF1;FR*55C*EFR78140*48EXELMANS*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEENLS1;FR*55C*EFR78140*48EXELMANS*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVSUF1;FR*55C*EFR78140*48EXELMANS*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDMCX1;FR*55C*EFR78140*62L0UV01S*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDNSN1;FR*55C*EFR13100*1MA1R1E*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPUYS1;FR*55C*EFR78140*62L0UV01S*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERMZJ1;FR*55C*EFR78140*62L0UV01S*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMMYA1;FR*55C*EFR78140*62L0UV01S*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMMYA2;FR*55C*EFR78140*1MA1L*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEBUA1;FR*55C*EFR78140*1MA1L*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFMUC1;FR*55C*EFR78140*1MA1L*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXVKF1;FR*55C*EFR78140*1MA1L*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDHTS1;FR*55C*EFR78140*1SAV01E*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETUWY1;FR*55C*EFR78140*1SAV01E*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXFVE1;FR*55C*EFR78140*1SAV01E*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETBHS2;FR*55C*EFR78140*1SAV01E*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEGUA2;FR*55C*EFR83310*1MER*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFMUC2;FR*55C*EFR83310*1MER*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPBMU1;FR*55C*EFR92350*8GAULLE*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEBUA2;FR*55C*EFR92350*8GAULLE*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPBMU2;FR*55C*EFR92350*8GAULLE*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDXHW1;FR*55C*EFR92350*8GAULLE*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDXHW2;FR*55C*EFR17800*BPA10*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUQQT2;FR*55C*EFR17800*BPA10*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELPPQ2;FR*55C*EFR17800*BPA10*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECMEK2;FR*55C*EFR48200*BPA75*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECMEK1;FR*55C*EFR48200*BPA75*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAGEZ1;FR*55C*EFR48200*BPA75*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYAAZ1;FR*55C*EFR92350*47BR1AND*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEELZJ1;FR*55C*EFR92350*47BR1AND*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGRXK1;FR*55C*EFR92350*47BR1AND*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEABCX1;FR*55C*EFR92350*47BR1AND*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVJMA1;FR*55C*EFR92350*47BR1AND*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMMQQ1;FR*55C*EFR92350*47BR1AND*5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELZBN2;FR*55C*EFR92350*1ETANG*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELZBN1;FR*55C*EFR92350*1ETANG*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPSSZ1;FR*55C*EFR92350*1ETANG*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBAHD1;FR*55C*EFR92350*1ETANG*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBFMM1;FR*55C*EFR92350*1ETANG*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERSXJ1;FR*55C*EFR78140*RAB0URD1N*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVRYG1;FR*55C*EFR78140*RAB0URD1N*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERJBC1;FR*55C*EFR78140*RAB0URD1N*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMUYF1;FR*55C*EFR78140*RAB0URD1N*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERBQS2;FR*55C*EFR84000*CHAMAND*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETDBA2;FR*55C*EFR84000*CHAMAND*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMMSA2;FR*55C*EFR84000*CHAMAND*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHXEZ2;FR*55C*EFR84000*CHAMAND*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJVFV1;FR*55C*EFR84000*CHAMAND*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMEDT1;FR*55C*EFR92350*8GAULLE*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEULSF1;FR*55C*EFR83820*2MAURES*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETRNQ1;FR*55C*EFR84160*1GRANG1ER*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMSWV1;FR*55C*EFR13122*PLATEAU*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETWAS1;FR*55C*EFR84140*29PAR01SS1ENS*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESQMH1;FR*55C*EFR83350*111PLAGES*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETWDU1;FR*55C*EFR83350*111PLAGES*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBUGE1;FR*55C*EFR83350*111PLAGES*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEPXE1;FR*55C*EFR84740*75V1LLAGE*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERVJR1;FR*55C*EFR84740*75V1LLAGE*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYGRD1;FR*55C*EFR84740*75V1LLAGE*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZJJU1;FR*55C*EFR84740*75V1LLAGE*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMANA1;FR*55C*EFR26140*S0LE1L*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECBDT1;FR*55C*EFR26140*S0LE1L*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEURKC1;FR*55C*EFR26140*S0LE1L*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJCDY1;FR*55C*EFR84140*29PAR01SS1ENS*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMGBM1;FR*55C*EFR84140*29PAR01SS1ENS*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENAKY1;FR*55C*EFR84140*29PAR01SS1ENS*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWRGC1;FR*55C*EFR35470*6LANSERVA*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVLGM1;FR*55C*EFR92320*31LECLERC*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZAEF1;FR*55C*EFR35470*6LANSERVA*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGVWA1;FR*55C*EFR41600*THAR0NNE*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFSQC1;FR*55C*EFR41600*THAR0NNE*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELVZK1;FR*55C*EFR41600*THAR0NNE*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERQEW1;FR*55C*EFR67170*0UEST*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAJRD1;FR*55C*EFR67170*0UEST*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFALM1;FR*55C*EFR67170*0UEST*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWMTF1;FR*55C*E78140*48*782599*2*190179*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZHEL1;FR*55C*EFR78140*NULL*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFCDL1;FR*55C*EFR78140*NULL*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAKAB1;FR*55C*EFR78140*NULL*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDMCX2;FR*55C*EFR92320*31LECLERC*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXJXQ1;FR*55C*EFR92320*31LECLERC*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJJJP1;FR*55C*EFR83350*111PLAGES*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUYLP1;FR*55C*EFR92140*137JAURES*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECWUN1;FR*55C*EFR92140*137JAURES*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERWFM1;FR*55C*EFR92140*137JAURES*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBYQZ1;FR*55C*E84000*43*952673*4*796912*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFKDA1;FR*55C*EFR35300*3C0MBATTANTS*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMRNY2;FR*55C*EFR35300*3C0MBATTANTS*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKTBC2;FR*55C*EFR92140*40HUG0*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGLNZ2;FR*55C*EFR92140*40HUG0*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWSBD2;FR*55C*EFR92140*40HUG0*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBGDG2;FR*55C*EFR13122*EC0LE*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKUCE2;FR*55C*EFR92140*40HUG0*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJWMA2;FR*55C*EFR92140*40HUG0*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYHAG2;FR*55C*EFR92140*201TR1VAUX*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECAWZ2;FR*55C*EFR92140*201TR1VAUX*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDXHC2;FR*55C*EFR92140*201TR1VAUX*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMKHZ2;FR*55C*EFR92140*201TR1VAUX*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGLNZ1;FR*55C*EFR92140*201TR1VAUX*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENNXV2;FR*55C*EFR92140*201TR1VAUX*5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGMTL1;FR*55C*EFR83310*1910L1TT0RAL*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKQMP2;FR*55C*EFR83310*1910L1TT0RAL*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEFFB2;FR*55C*EFR83310*1910L1TT0RAL*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPUYS2;FR*55C*EFR83310*1910L1TT0RAL*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVSUF2;FR*55C*EFR83310*335AVDELAMER*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJBMB2;FR*55C*EFR83310*335AVDELAMER*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDNSN2;FR*55C*EFR83310*335AVDELAMER*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXAAL2;FR*55C*EFR73190*43AB1S*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECFYP2;FR*55C*EFR73190*43AB1S*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECKXA1;FR*55C*EFR73190*43AB1S*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAJRD2;FR*55C*EFR92140*137JAURES*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFKDA2;FR*55C*EFR92140*137JAURES*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECWUN2;FR*55C*EFR92320*31LECLERC*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXJXQ2;FR*55C*EFR92140*40HUG0*5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBYQZ2;FR*55C*EFR92320*31LECLERC*5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFALM2;FR*55C*EFR73800*NULL*5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELVZK2;FR*55C*EFR73190*43AB1S*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERWFM2;FR*55C*EFR73190*43AB1S*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXSKC2;FR*55C*EFR73190*43AB1S*5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZHEL2;FR*55C*EFR73190*43AB1S*6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXSKC1;FR*55C*EFR73190*43AB1S*7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUWUG2;FR*55C*EFR73190*43AB1S*8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUWUG1;FR*55C*EFR73190*43AB1S*9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERARM2;FR*55C*EFR73190*43AB1S*A;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERARM1;FR*55C*EFR73800*NULL*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKLPL2;FR*55C*EFR73800*NULL*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKLPL1;FR*55C*EFR73800*NULL*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBSBF2;FR*55C*EFR73800*NULL*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFNTU2;FR*55C*EFR73800*NULL*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECFYP1;FR*55C*EFR73800*NULL*6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDXHC1;FR*55C*EFR83990*19RES1STANCE*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUYLP2;FR*55C*EFR73800*NULL*7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAKAB2;FR*55C*EFR83310*2721PREST1GE*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGMTL2;FR*55C*EFR83310*2721PLAGE*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJJJP2;FR*55C*EFR83350*1093EP1*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKQMP1;FR*55C*EFR83310*1910CL1ENTS*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEFFB1;FR*55C*EFR33240*ME1LLAC*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXAAL1;FR*55C*EFR33240*ME1LLAC*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEATCT1;FR*55C*EFR33240*ME1LLAC*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEMCZ2;FR*55C*EFR33240*ME1LLAC*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHMRU1;FR*55C*EFR33240*ME1LLAC*5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETBHS1;FR*55C*EFR13122*EC0LE*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEGUA1;FR*55C*EFR92320*31LECLERC*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFSQC2;FR*55C*EFR83990*19RES1STANCE*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWMTF2;FR*55C*EFR33240*ME1LLAC*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERQEW2;FR*55C*EFR83310*0F0UR*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFCDL2;FR*55C*EFR92260*72LANGEV1N*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXYNZ2;FR*55C*EFR83310*0F0UR*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJQVQ2;FR*55C*E84310*43*942662*4*904711*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGTFW2;FR*55C*EFR92260*5JAURES*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVWJJ2;FR*55C*EFR92260*5JAURES*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGKQR1;FR*55C*EFR92260*5JAURES*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGKQR2;FR*55C*EFR92260*29L0MBART*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJHAH2;FR*55C*EFR92260*29L0MBART*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZXJS2;FR*55C*EFR92260*29L0MBART*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZXJS1;FR*55C*EFR92260*29L0MBART*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJYLH2;FR*55C*EFR92260*29L0MBART*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAFUH2;FR*55C*EFR92260*29L0MBART*5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAFUH1;FR*55C*EFR92260*72LANGEV1N*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFABA1;FR*55C*EFR92260*5JAURES*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMNNK1;FR*55C*EFR92260*72LANGEV1N*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELMGG2;FR*55C*EFR83990*CAP1TA1NER1E*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAEVR1;FR*55C*EFR92260*72LANGEV1N*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELDDE1;FR*55C*EFR83350*300TAH1T1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHUZK1;FR*55C*EFR83350*300TAH1T1*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERYQJ1;FR*55C*E84310*43*942662*4*904712*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJPVQ1;FR*55C*EFR83990*CAP1TA1NER1E*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXPMC1;FR*55C*EFR84320*1GARE*0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEATYM2;FR*55C*EFR92260*72LANGEV1N*5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZBDL1;FR*55C*EFR92260*72LANGEV1N*4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZBDL2;FR*55C*EFR84320*1GARE*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQMJK1;GULE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETFYY2;GULE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWGM1;FZMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWGM2;FZMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAAUX1;DYLP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYFYM2;DYLP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENBPG1;CKXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAAUX2;CKXG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECMZH1;RZXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVMPP2;RZXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJYLH1;GRPK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAXPN1;GWUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAEVR2;GWUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBMAS1;GRPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZTLM2;NGCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAUGX1;DSUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBNTQ1;DSUY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEARFN1;GYLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAMXM1;AVRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPHBU2;AVRW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWTSA2;GYLN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGYFR2;DNWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELDDE2;GVRW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFCTX2;GVRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGYFR1;EVXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWTSA1;EVXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFABA2;DNWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDZMG2;DKWK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFCTX1;DKWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJPVQ2;GWRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECMZH2;QVLD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVCFM2;GWRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETVKS1;QWMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQSCJ1;GSTE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQSCJ2;ECHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVCFM1;ECHF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXGMJ2;NSTJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEQFB2;BHTG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXPMC2;GPGW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPHBU1;GPGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMNNK2;EJXK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECMGL1;EJXK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFSUC1;GSLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVMPP1;GSLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFSUC2;FDPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERYQJ2;FDPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAAWG2;GSTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAAWG1;FGMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDZMG1;FGMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEQFB1;ECXQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESMRN2;ECXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESMRN1;GUJX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECMGL2;GUJX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEATYM1;DRBU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAMXM2;DRBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELMGG1;EVPH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJHAH1;EVPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETFYY1;NSVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYFYM1;PLWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQMJK2;BHTG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFLRM1;QPRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETJFF1;GTPH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESVMA2;GTPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGMGE2;PHQK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGMGE1;FGTT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELJAZ1;FGTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZVLA2;FXAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFLRM2;FXAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMLVM2;GRYD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERGXU1;GRYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMLVM1;PWJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZVLA1;QYWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELJAZ2;GPKG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBULY1;QBVP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETJFF2;PCAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBULY2;PSDR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKSMF1;GSUB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESVMA1;GSUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERGXU2;EJXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWMEA1;EJXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWZTW2;RHLX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKETK1;RXCN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEECRN2;GXXE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAYJE2;QCHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAYJE1;QKHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBCAE1;EXNK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEECPM1;EXNK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBCAE2;GPKG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYTXH1;RAWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVKXE2;RTSY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYTXH2;GVNR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENFTP1;GVNR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENFTP2;FGWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWZTW1;FGWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMVAM1;NAYH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVKXE1;NNVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMVAM2;ELAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKSMF2;ELAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELKXT2;FAXF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENBPG2;FAXF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENTCY2;GTBU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECQKE2;GTBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBTFM2;GRTT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEACS2;GRTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEARFN2;PKLD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWMEA2;PTJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBUJF2;FBLN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBUJF1;FBLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELHWT2;GXXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMGQX2;NAFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZTLM1;LXDR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKCRM2;EURT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKCRM1;EXXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECWSZ2;FMKY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECWSZ1;FMKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENZDU2;EVAU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENZDU1;EVAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBMAS2;DQHB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAUGX2;DQHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELXER2;DVMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAJQB1;DVMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBTFM1;EURT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELKXT1;APFB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELXER1;FUUG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECQKE1;APFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAJQB2;FXDV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHUZK2;FXDV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDWJA1;EQDN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEACS1;EQDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBNTQ2;PYJX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMGQX1;PCVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELHWT1;BKVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENTCY1;BKVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENCRC1;PDJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAXPN2;EXXT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDWJA2;GQAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENCRC2;GQAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZAMD1;EAUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXGMJ1;LXDR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEECPM2;FANN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVWJJ1;FANN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVRWS1;CVGR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVRWS2;CVGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEATUM1;GRWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQKYT2;GRWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWRNJ1;GPHJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWRNJ2;GPHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEATUM2;EARX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETRTA2;EARX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESAUX1;NRPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESAUX2;NELJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMSCD1;FKHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMSCD2;FKHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETRTA1;FJWX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQKYT1;FJWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXMQD2;GUNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUUEV1;GUNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUUEV2;GSHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJQGP2;EAUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELLRL1;PUMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEALHZ2;GSHF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGDBX1;FUUG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVLLJ1;GQBH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMCFJ1;NFNJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKTUY1;PKFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELLEJ2;GRAQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKTUY2;GRAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBWPJ2;GQFW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBWPJ1;GQFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAGYM1;CWFC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELMNM2;CWFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAGYM2;BVQX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDLPR2;BVQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVELU2;EATW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDLPR1;GPWD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEALHZ1;EATW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVXMA1;QPYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGDBX2;QEQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPYAL1;GPGU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPYAL2;GPGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXMQD1;DTVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXZMG2;DTVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBMMQ2;DTQW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERDBT1;FYPK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERDBT2;DTQW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUEAE1;GPWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENUBV2;GQBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENUBV1;NGGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYMAT1;GVHD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXZMG1;GTEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKFRW1;NKCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYMAT2;GTEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUEAE2;FDUE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMNYG2;FDUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMNYG1;GVLB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWVAG2;DVAR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWVAG1;DVAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERAWQ1;DXJG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJQGP1;DXJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBMMQ1;GVLB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMKZM2;FYPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJDQZ2;GSXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENVUZ2;GSXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQBQE1;FETX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQBQE2;FETX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELHWA1;ELVF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELHWA2;ELVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENVUZ1;GVHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJDQZ1;HAJS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPTGP1;HAJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERKWG1;FR*SOD*E*WIIZ*130*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAGSH2;FR*SOD*E*WIIZ*130*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHCTN1;FR*SOD*E*WIIZ*130*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHCTN2;FR*SOD*E*WIIZ*130*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAGSH1;FR*SOD*E*WIIZ*130*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPTGP2;FR*SOD*E*WIIZ*130*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERKWG2;FR*SOD*E*WIIZ*130*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKFRW2;FR*SOD*E*WIIZ*130*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVLLJ2;FRIONE4026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWBLQ2;FRIONE4083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMCFJ2;FRIONE4156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERCNU2;FRIONE4315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERCNU1;FRIONE4138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESKRH1;FRIONE4324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBAHK1;FRIONE4149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESKRH2;FRIONE4124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVAPS1;FRIONE4037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVAPS2;FRIONE4102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJYYD1;FRIONE4018;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMKZM1;FRIONE4090;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEZRH2;FRIONE4042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZLCL2;FRIONE4340;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZDGB2;FRIONE4325;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELMNM1;FRIONE4326;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHDBM2;FRIONE4126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPWBM2;FRIONE4029;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPWBM1;FRIONE4052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKDMG1;FRIONE4027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBAHK2;FRIONE4028;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEZRH1;FRIONE4091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENENU2;FRIONE4092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXMAS1;FRIONE4125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVEEM2;FRIONE4103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVEEM1;FRIONE4216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZAMD2;FRIONE4538;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADHE1;FRIONE4022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETVKS2;FRIONE1013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETGLD2;FRIONE4123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETGLD1;FRIONE4081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXMAS2;FRIONE4147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJYYD2;FRIONE4378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENJSW1;FRIONE4327;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADHE2;FRIONE4099;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQJJP2;FRIONE4079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENJSW2;FRIONE4400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELHRS2;FRIONE4323;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELHRS1;FRIONE4078;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQJJP1;FRIONE4080;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZDGB1;FRIONE4024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENEQH2;FRIONE4020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWBLQ1;FRIONE4023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKUVW2;FRIONE4319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVELU1;FRIONE4127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVXMA2;FRIONE4387;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJKHL1;FRIONE4161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWJXK1;FRIONE4032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYMZM2;FRIONE4045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKUVW1;FRIONE4312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMMTJ2;FRIONE4101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECKAH2;FRIONE4318;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGZVA2;FRIONE4385;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECKAH1;FRIONE1265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELLRL2;FRIONE1264;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFAJF2;FRIONE4489;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYMZM1;FRIONE4140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMMTJ1;FRIONE4397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEJWZ1;FRIONE4148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEJWZ2;FRIONE4021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJKHL2;FRIONE4171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPLBQ2;FRIONE4084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHDBM1;FRIONE4377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFGTM2;FRIONE4017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKGBW2;FRIONE448300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKGBW1;FRIONE437700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKDMG2;FRIONE409800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENEQH1;FRIONE4401;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFGTM1;FRIONE4490;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELJQU1;FRIONE4483;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELJQU2;FRIONE4234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZLCL1;FRIONE4039;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPLBQ1;FRIONE4025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENENU1;FRIONE4053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZCVN1;FRIONE1012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZCVN2;FRIONE4100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELLEJ1;FRIONE4129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFAJF1;FRIONE4104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWJXK2;FRIONE4098;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGZVA1;FRIONE4097;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEECRN1;FRIONE4137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKETK2;FRIONE4176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAFME2;FRIONE4386;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEASLS2;FRIONE4169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWDE2;FRIONE4096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFKWC2;FRIONE4131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAPWN2;FRIONE4132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGFFB2;FRIONE4041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPQJZ2;FRIONE4389;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZXJV1;FRIONE4019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFCFG1;FRIONE440100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFLBP1;FRIONE449000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENQZH1;FRIONE4317;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAFCM1;FRIONE4086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAFHJ2;FRIONE4388;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENFTN2;FRIONE4407;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETQHA1;FRIONE4168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKLFM1;FRIONE4044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZCEN2;FRIONE4040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAJSY1;FRIONE4215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECBGR2;FRIONE4035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQRFM2;FRIONE4036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEATZG2;FRIONE4359;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVSVE1;FRIONE4085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBBSF1;FRIONE4404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECAWS1;FRIONE4402;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXJCL1;FRIONE4093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZUMY2;FRIONE4403;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESVRY1;FRIONE4335;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXJCL2;FRIONE1248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZUMY1;FRIONE4379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBBSF2;FRIONE4594;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYHXM2;FRIONE4089;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESVRY2;FRIONE4466;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYHXM1;FRIONE4038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBEZS2;FRIONE1014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBEZS1;FRIONE4094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEELGP2;FRIONE4043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEELGP1;FRIONE4391;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEATZG1;FRIONE4334;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVSVE2;FRIONE4087;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDAWA2;01F52RYWVEYVH1JDBFZB4GGQFZ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDAWA1;NL*EVB*EJJWAPVOMKPV6A25OTGB23XNFDQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETLUD1;NL*EVB*EPIQIS4RNU4YNTP24UNMQ32X3LU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELSKG1;NL*EVB*EOWO7DIOILFCVDMCTBLGRIWT2T4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESLAV2;FR*SLF*ESAP*MOUGINS*16*3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETZAC1;FR*SOD*E*CUGN*37*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQURM1;FR*SOD*E*CUGN*36*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQKVR1;FR*SOD*E*CUGN*36*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGGFP1;FR*SOD*E*CUGN*36*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGGFP2;FR*SOD*E*CUGN*37*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXBUJ1;FR*SOD*E*CUGN*38*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYTUD2;FR*SOD*E*CUGN*38*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETZAC2;FR*SOD*E*CUGN*39*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBXXD2;FR*SOD*E*CUGN*39*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXFMK2;FR*SOD*E*CUGN*40*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAZEV2;FR*SOD*E*CUGN*40*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETUQW2;FR*SOD*E*CUGN*36*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQLWB2;FR*SOD*E*CUGN*32*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFVNL2;FR*SOD*E*CUGN*35*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECLEF2;FR*SOD*E*CUGN*35*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXGQE2;FR*SOD*E*CUGN*34*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXBUJ2;FR*SOD*E*CUGN*34*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJQHZ2;FR*SOD*E*CUGN*32*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQURM2;FR*SOD*E*CUGN*31*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJQHZ1;FR*SOD*E*CUGN*31*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETLUD2;FR*SOD*E*CUGN*30*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVATS1;FR*SOD*E*CUGN*30*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVATS2;FR*SOD*E*CUGN*29*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVKLV2;FR*SOD*E*CUGN*29*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELSKG2;FR*SOD*E*CUGN*41*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELKFM2;FR*SOD*E*CUGN*28*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQKVR2;FR*SOD*E*CUGN*28*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECLEF1;FR*SOD*E*CUGN*41*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFAQB1;FR*SOD*E*CUGN*48*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMBFG2;FR*SOD*E*CUGN*42*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHKSX2;FR*SOD*E*CUGN*49*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGLYL2;FR*SOD*E*CUGN*54*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFAQB2;FR*SOD*E*CUGN*26*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFYAM2;FR*SOD*E*CUGN*54*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVAMA2;FR*SOD*E*CUGN*53*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAEMM1;FR*SOD*E*CUGN*53*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECJVB1;FR*SOD*E*CUGN*52*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGAUZ1;FR*SOD*E*CUGN*52*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAFCM2;FR*SOD*E*CUGN*51*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENQML2;FR*SOD*E*CUGN*51*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEANMM2;FR*SOD*E*CUGN*50*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEYSB1;FR*SOD*E*CUGN*50*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENQML1;FR*SOD*E*CUGN*49*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWJVV1;FR*SOD*E*CUGN*48*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEANMM1;FR*SOD*E*CUGN*42*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAJSY2;FR*SOD*E*CUGN*47*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFLBP2;FR*SOD*E*CUGN*47*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEYSB2;FR*SOD*E*CUGN*46*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJQVQ1;FR*SOD*E*CUGN*46*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPQJZ1;FR*SOD*E*CUGN*46*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWDE1;FR*SOD*E*CUGN*46*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECBGR1;FR*SOD*E*CUGN*44*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFKWC1;FR*SOD*E*CUGN*44*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFCFG2;FR*SOD*E*CUGN*43*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZXJV2;FR*SOD*E*CUGN*43*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWJVV2;FR*SOD*E*CUGN*43*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBLLT2;FR*SOD*E*CUGN*43*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENQZH2;FR*SOD*E*CUGN*27*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMBMJ2;FR*SOD*E*CUGN*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHRRW2;FR*SOD*E*CUGN*26*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZJLP2;FR*SOD*E*CUGN*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAADJ2;FR*SOD*E*CUGN*4*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBHQT2;FR*SOD*E*CUGN*3*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVNMS2;FR*SOD*E*CUGN*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESSTH2;FR*SOD*E*CUGN*3*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHJNT2;FR*SOD*E*CUGN*3*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYMLJ2;FR*SOD*E*CUGN*3*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESEXA2;FR*SOD*E*CUGN*3*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVMLS2;FR*SOD*E*CUGN*3*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENAUV2;FR*SOD*E*CUGN*3*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJVHP2;FR*SOD*E*CUGN*2*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECYJM2;FR*SOD*E*CUGN*2*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAAZG2;FR*SOD*E*CUGN*2*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYRYT2;FR*SOD*E*CUGN*2*4*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFBKU2;FR*SOD*E*CUGN*25*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGFFB1;FR*SOD*E*CUGN*2*5*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKLFM2;FR*SOD*E*CUGN*2*5*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYVDG1;FR*SOD*E*CUGN*2*4*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECHRY1;FR*SOD*E*CUGN*2*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECKFV2;FR*SOD*E*CUGN*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQASC2;FR*SOD*E*CUGN*1*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGQRS2;FR*SOD*E*CUGN*1*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGQRS1;FR*SOD*E*CUGN*1*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHFXK1;FR*SOD*E*CUGN*1*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHFXK2;FR*SOD*E*CUGN*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQASC1;FR*SOD*E*CUGN*1*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETKNU1;FR*SOD*E*CUGN*56*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXPUQ1;FR*SOD*E*CUGN*5*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHAKG1;FR*SOD*E*CUGN*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYMQN1;FR*SOD*E*CUGN*6*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZCEN1;FR*SOD*E*CUGN*6*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAPWN1;FR*SOD*E*CUGN*25*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAFHJ1;FR*SOD*E*CUGN*24*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVWHV1;FR*SOD*E*CUGN*24*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELCSL1;FR*SOD*E*CUGN*23*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQRFM1;FR*SOD*E*CUGN*23*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECRQT1;FR*SOD*E*CUGN*22*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETQHA2;FR*SOD*E*CUGN*22*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECHRY2;FR*SOD*E*CUGN*21*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETKNU2;FR*SOD*E*CUGN*21*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECJVB2;FR*SOD*E*CUGN*19*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAEMM2;FR*SOD*E*CUGN*19*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYMQN2;FR*SOD*E*CUGN*17*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVWHV2;FR*SOD*E*CUGN*17*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHAKG2;FR*SOD*E*CUGN*16*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECAWS2;FR*SOD*E*CUGN*16*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECRQT2;FR*SOD*E*CUGN*14*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECKFV1;FR*SOD*E*CUGN*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXPUQ2;FR*SOD*E*CUGN*13*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELCSL2;FR*SOD*E*CUGN*13*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYVDG2;FR*SOD*E*CUGN*10*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGAUZ2;FR*SOD*E*CUGN*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENFTN1;FR*SOD*E*CUGN*9*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECZMG1;FR*SOD*E*CUGN*9*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECZMG2;FR*SOD*E*CUGN*8*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEASLS1;FR*SOD*E*CUGN*8*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEDFU2;FR*SOD*E*CUGN*56*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKMPZ2;FR*SOD*E*CUGN*27*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEDFU1;FR*SOD*E*CUGN*57*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESWNY1;FR*SOD*E*CUGN*95*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVSTU1;FR*SOD*E*CUGN*101*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHXSV1;FR*SOD*E*CUGN*101*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYGJF1;FR*SOD*E*CUGN*100*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELKFM1;FR*SOD*E*CUGN*100*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHKSX1;FR*SOD*E*CUGN*99*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAAZH1;FR*SOD*E*CUGN*99*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAKJZ1;FR*SOD*E*CUGN*98*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYUXX1;FR*SOD*E*CUGN*98*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUZAH1;FR*SOD*E*CUGN*97*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERSPJ1;FR*SOD*E*CUGN*96*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAPWC1;FR*SOD*E*CUGN*96*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJVDM1;FR*SOD*E*CUGN*95*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENNNC1;FR*SOD*E*CUGN*94*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUYQK1;FR*SOD*E*CUGN*102*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGUDX1;FR*SOD*E*CUGN*94*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZNNE1;FR*SOD*E*CUGN*93*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWDVL1;FR*SOD*E*CUGN*93*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVUFL1;FR*SOD*E*CUGN*92*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETVXM1;FR*SOD*E*CUGN*92*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFGPM1;FR*SOD*E*CUGN*91*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETZDD1;FR*SOD*E*CUGN*91*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMVCU1;FR*SOD*E*CUGN*90*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENFRQ1;FR*SOD*E*CUGN*90*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHYNZ1;FR*SOD*E*CUGN*89*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETZDD2;FR*SOD*E*CUGN*89*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGLYL1;FR*SOD*E*CUGN*88*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEANLN1;FR*SOD*E*CUGN*102*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVGQG1;FR*SOD*E*CUGN*103*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUYRJ1;FR*SOD*E*CUGN*87*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBQGS1;FR*SOD*E*CUGN*111*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZRNC1;FR*SOD*E*CUGN*57*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAVGR1;FR*SOD*E*CUGN*119*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERZXL1;FR*SOD*E*CUGN*118*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWAJ1;FR*SOD*E*CUGN*118*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYNSD1;FR*SOD*E*CUGN*116*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESYFA1;FR*SOD*E*CUGN*116*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWUR1;FR*SOD*E*CUGN*114*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZFTF1;FR*SOD*E*CUGN*114*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJQVA1;FR*SOD*E*CUGN*113*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXZTN1;FR*SOD*E*CUGN*113*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFFGS1;FR*SOD*E*CUGN*112*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFFGS2;FR*SOD*E*CUGN*112*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZFSY2;FR*SOD*E*CUGN*111*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBXXD1;FR*SOD*E*CUGN*103*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYTUD1;FR*SOD*E*CUGN*111*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDMHM1;FR*SOD*E*CUGN*111*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETLXN1;FR*SOD*E*CUGN*109*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENZPA1;FR*SOD*E*CUGN*109*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFYAM1;FR*SOD*E*CUGN*108*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENZPA2;FR*SOD*E*CUGN*108*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESTXS1;FR*SOD*E*CUGN*106*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXFMK1;FR*SOD*E*CUGN*106*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETWKZ1;FR*SOD*E*CUGN*105*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQDVS2;FR*SOD*E*CUGN*105*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKMPZ1;FR*SOD*E*CUGN*104*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZFSY1;FR*SOD*E*CUGN*104*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKPYS1;FR*SOD*E*CUGN*88*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAZEV1;FR*SOD*E*CUGN*97*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUGGG1;FR*SOD*E*CUGN*87*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETXVV1;FR*SOD*E*CUGN*73*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESZWA1;FR*SOD*E*CUGN*72*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETDRH1;FR*SOD*E*CUGN*71*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDCAT1;FR*SOD*E*CUGN*71*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQDVS1;FR*SOD*E*CUGN*70*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEETHP1;FR*SOD*E*CUGN*70*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERKYN1;FR*SOD*E*CUGN*69*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXPLN1;FR*SOD*E*CUGN*69*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERWZM1;FR*SOD*E*CUGN*68*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXMPF2;FR*SOD*E*CUGN*68*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHRSK1;FR*SOD*E*CUGN*67*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQLWB1;FR*SOD*E*CUGN*67*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVKLV1;FR*SOD*E*CUGN*66*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWECE1;FR*SOD*E*CUGN*66*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETUQW1;FR*SOD*E*CUGN*65*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVAMA1;FR*SOD*E*CUGN*65*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXMPF1;FR*SOD*E*CUGN*64*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETAJN1;FR*SOD*E*CUGN*64*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDEPV1;FR*SOD*E*CUGN*63*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYEMV1;FR*SOD*E*CUGN*119*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETDRH2;FR*SOD*E*CUGN*62*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESZWA2;FR*SOD*E*CUGN*62*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQTPK1;FR*SOD*E*CUGN*61*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAVGR2;FR*SOD*E*CUGN*61*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZRNC2;FR*SOD*E*CUGN*60*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKPYS2;FR*SOD*E*CUGN*60*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVUXW1;FR*SOD*E*CUGN*59*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPHKE1;FR*SOD*E*CUGN*58*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEETHP2;FR*SOD*E*CUGN*72*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERZXL2;FR*SOD*E*CUGN*63*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPHKE2;FR*SOD*E*CUGN*73*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYRYM2;FR*SOD*E*CUGN*80*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYRYM1;FR*SOD*E*CUGN*86*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVUXW2;FR*SOD*E*CUGN*85*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESGDG1;FR*SOD*E*CUGN*85*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESGDG2;FR*SOD*E*CUGN*84*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETXVV2;FR*SOD*E*CUGN*84*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVGQG2;FR*SOD*E*CUGN*83*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBQGS2;FR*SOD*E*CUGN*83*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERKYN2;FR*SOD*E*CUGN*82*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECRZG1;FR*SOD*E*CUGN*82*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWECE2;FR*SOD*E*CUGN*74*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECHMR1;FR*SOD*E*CUGN*81*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESLAV1;FR*SOD*E*CUGN*80*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECRZG2;FR*SOD*E*CUGN*81*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFVNL1;FR*SOD*E*CUGN*79*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECHMR2;FR*SOD*E*CUGN*76*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXGQE1;FR*SOD*E*CUGN*74*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDMHM2;FR*SOD*E*CUGN*79*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFGPM2;FR*SOD*E*CUGN*75*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXZTN2;FR*SOD*E*CUGN*76*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQTPK2;FR*SOD*E*CUGN*75*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETLXN2;FR*SOD*E*CUGN*77*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFEHA2;FR*SOD*E*CUGN*77*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESTXS2;FR*SOD*E*CUGN*86*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETWKZ2;FR*SOD*E*CUGN*78*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFEHA1;FR*SOD*E*CUGN*78*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXPLN2;01F5DTP4DH384K9KWSRATR2QTW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDCAT2;01F53GRQPB2S0YH2JF6KNBGGBN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDYMY1;01F8YH73V8G9RJTD3QKSPN7EHH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENNNC2;01F8WSV27RK8ZG8QTW59R62GXJ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETAJN2;01F8T2FRWRBSCX49CB10H85MSR;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDEPV2;01F8T0KBM3GPF7YYKY73CFR6N1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETVXM2;01FA873DPW3HBC54ANS8JCAT9Q;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUYRJ2;01FA873DPWKN01H10WCMZQXXA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWAJ2;01FA873DPWYB12REJ5E6BJ3K6Q;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESYFA2;01FGHJH51VM77ZZ36YG5722J5Q;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUYQK2;01FADS6T5BWJHJX6MTZZEX3PNH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERSPJ2;01FNN865ZH6NWZEFNPDGNYE4HR;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEANLN2;06561794486915;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJVDM2;FR*SOD*S*MB23*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHYNZ2;FR*SOD*S*MB23*1*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYEMV2;01F8FTNQGRJK2983SWDZD7TTTS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENFRQ2;FRSUNE9C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMVCU2;FRSUNEE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMBFG1;FRSUNE5B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDYMY2;FRSUNE78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYNSD2;FRSUNE90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAPWC2;FRSUNEE7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHRSK2;FRSUNE49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZFTF2;FRSUNE9D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERWZM2;FRSUNEE8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWUR2;FRSUNEE9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZNNE2;FRSUNEA0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVSTU2;FRSUNE76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUZAH2;FRSUNEEC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJQVA2;FRSUNEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGUDX2;FRSUNEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUGGG2;FRSUNEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVUFL2;FRSUNEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAKJZ2;FRSUNEE5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYGJF2;FRSUNEE6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAAZH2;FRSUNEF0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYUXX2;FRSUNEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESWNY2;FRSUNEEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHXSV2;FRSUNEEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWDVL2;FRSUNEE4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPKMU2;01F8CP9QN8HM05X8Y3BEG13Q4Z;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHNJS2;NL*EVB*EBI4WCW6YCPXKXHRNRVEFBMOVJY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPAMN1;NL*EVB*EVCONV7JAPQ4RLEWI54OJJGZCOI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECARM1;NL*EVB*EGEKOKRLFJDGSFSHMN6VX5YXOGU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERPTM2;NL*EVB*EKR55H3FMTFIEB4XADNWPSJXOD4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYRDE1;NL*EVB*EJ6OW3ELZ753BU4KITLSIIVXVW4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWALU2;NL*EVB*EVWTNWDRPV5HHQQGKN2647IMM3M;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERPTM1;NL*EVB*E5DRXU6URYZOYRZHQO7PKPUUEAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEALUF2;01F6PA527A42J96ZD6BZ8JDJWB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESAAS1;01F6P8PN631M4XZA1ZVE30FWRT;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYRDE2;01F7QR3TPHP6V4813KFHN8778K;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEALUF1;01FHWQ8RECFE028717E5Y5123P;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENQFG1;FR*EZD*E20883, FR*EZD*E20884;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBCMA2;FR*EZD*E95818, FR*EZD*E95819;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBCMA1;FR*EZD*E20881, FR*EZD*E20882;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGMZS2;FR*EZD*E28314, FR*EZD*E28315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGMZS1;FR*EZD*E28312, FR*EZD*E28313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDYDU1;FR*EZD*E20771, FR*EZD*E20772;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDYDU2;FR*EZD*E66784, FR*EZD*E66785;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJAPF2;EVB-P1950759;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJAPF1;4b05a334-d486-4efa-8d17-53cc7bf6c802;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESAAS2;NL*EVB*EZNW4JPSKOJ4AAIEQGONOOUFCEI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKTBS2;NL*EVB*E4SALKELYUICVRKS7WJTDMKN6LI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKTBS1;NL*EVB*EUSJUP2XOCN334R5MYH2HB54YHU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUTDP1;NL*EVB*EIIOS2ATQEYA4EY6WIR5RN4EWOI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENELG1;FR*EZD*E63395, FR*EZD*E63396;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUTDP2;b89d9529-706b-493d-8905-be07608a0d47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVQQV2;FR*EZD*E38638,FR*EZD*E38639;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFGKU1;FR*EZD*E63049,FR*EZD*E63050,FR*EZD*E63057,FR*EZD*E63058;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERVVB2;FR*EZD*E63047,FR*EZD*E63048,FR*EZD*E93917,FR*EZD*E93918,FR*EZD*E63053,FR*EZD*E63054;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVQQV1;FR*EZD*E45697,FR*EZD*E45709;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYESN2;FR*EZD*E20869,FR*EZD*E20870;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFGKU2;FR*EZD*E63031, FR*EZD*E63032, FR*EZD*E112993, FR*EZD*E112994;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFAPD2;FR*EZD*E45695;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYESN1;FR*EZD*E38632,FR*EZD*E38633;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENECW1;FR*EZD*E28306,FR*EZD*E28307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJJGA1;FR*EZD*E28298,FR*EZD*E28299;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJJGA2;FR*EZD*E26669, FR*EZD*E26670;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELQXT1;FR*EZD*E20775,FR*EZD*E20776;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELQXT2;FR*EZD*E20873, FR*EZD*E20874,fr*ezd*e45685;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFAPD1;FR*EZD*E63135,FR*EZD*E63136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGJBD1;FR*EZD*E139858;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELTQM2;VRT_NB_1290;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZUAT2;FR*EZD*E38642, FR*EZD*E38643;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWUMB1;30de7846-e85b-419c-b0cf-66ac32882c76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAYFW1;7b3a15f4-b80c-42fc-ad0c-3573be69bcdf;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKAMB2;81738a0a-980f-4cf4-abff-62ca549d54db;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZTUQ1;FRFR1ETSEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESMWV1;FRFR1EDDVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZVER2;a4d3dd36-f16b-4b9c-98ed-f94a4167ee0d;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEARGN1;NL*EVB*EPC52DCLRHDDB2HGDEZV4PEE4FM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESMWV2;NL*EVB*EQLO52GDWMPFSHVQ3YNSDNSCYMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESZSZ2;bd7e3b48-e320-4bcf-bc15-fe4445eb4c79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZUNB2;8e2b8b94-f7e1-448c-a59d-b4892291f841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZVER1;c7496279-027a-404b-807e-cf5f96df4241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWUMB2;3e298fae-ca66-4a7c-90ea-17ad42757373;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEARGN2;1323dcbe-58b8-4150-877f-8df9576fc5d8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETMPZ1;c5dde61a-ba15-42a5-bd7d-938dcbe2efe8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGMBF1;b2c99b0d-0ca6-4ff0-a555-1d977e0db35c;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXYLL2;3ac50120-44a2-43b4-9bf8-1827e87ae861;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDTZC2;49fb63ee-2b4d-4c15-ad8a-fd1bcac19c31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKMBQ1;5d111086-0f3f-4e2c-97fc-a1d839c1fbda;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESSTV1;aa2be99e-e896-49b0-9948-4dca327dcc72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENQFG2;4634c2ea-9655-4f07-81b7-9a0c99b1aef5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKZUL2;d5830144-0281-49c6-afb7-e8bffed469c2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELTQM1;FR*LUM*EFLOREAL1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUMMY1;FR*LUM*EROUMANILLE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGJBD2;FRAU1E0022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZUAT1;FRAU1E0020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUMMY2;2859660;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFLBY2;562957;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGMBF2;FRECN0148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESZSZ1;FRECN0147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKAMB1;FR*EZD*E26743, FR*EZD*E8102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETMPZ2;FR*EZD*E28286, FR*EZD*E28287;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKMBQ2;FRECN0154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAYFW2;FRECN0153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERTGV2;FR*EZD*E20791,FR*EZD*E20792;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZTUQ2;fbed9315-1e2f-474f-acf7-2f7f09507125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXYLL1;FRECN0158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZUNB1;FRECN0157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENELG2;5b56e7c0-d20a-4531-a438-3d3db3abac61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZRAQ1;FRECN0155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZRAQ2;FRECN0156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHJVZ2;FR*LUM*EOASISBORNE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZWEW2;FRFR1EVFWM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUEHT2;FRFR1EVGKF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEALSQ2;32173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHTQD2;NL*EVB*EWUOE2QB5SCF55JRQTAE4A2CZSA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUPMM2;NL*EVB*EY64XMHCLLZLE6WDBATTNS2QH74;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPTCB2;NL*EVB*ERTYD5B4CZ2YIKF63ZVGJAQWBZE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERKMY2;FR*EZD*E20887,FR*EZD*E20888;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGLGA2;FR*EZD*E45643;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXVRR2;FR*EZD*E45632;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKRFL2;FR*EZD*E26679,FR*EZD*E26680;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAPBW2;FR*EZD*E45629;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDLPC2;FR*EZD*E65528, FR*EZD*E65529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAVCZ2;93ee95c1-0f57-472b-8dfc-88568b58fe14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPEJL2;662f53b3-4e71-4281-8b5b-979a06521abc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUQNS2;5897d2b1-12d6-4d32-aaaf-5bcaa294fd40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADKB2;35840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDPDE2;45135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJKAL1;45134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQUUA2;45107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPJQX1;45106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBGAS1;49430;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVLEM1;60973;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXEKS1;FR*EZD*E151165, FR*EZD*E151166, FR*EZD*E151167, FR*EZD*E151168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELQCN1;FR*EZD*E118262, FR*EZD*E118263;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMKEM1;FR*EZD*E54017, FR*EZD*E54018;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERVKX1;FR*EZD*E137853, FR*EZD*E137854;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZQXK1;FRFR1EAGUA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFMWE1;FRFR1ETHZL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZNNA1;FRFR1EZNAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUEJQ2;FRFR1EAMKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPFBN1;FR*LUM*ERAMIERES1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPWCY2;SMP_6201005535;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJFBW2;SMP_6101002018;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMVFV1;TACW2244221S3384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUAKU1;TACW2241521S0178;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELHCJ1;TACW2244221S3391;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFQGB2;a0d75558-9653-4501-8359-97f385a6066a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESECR2;f5d92b21-0272-49f8-9436-c1e8505f88b2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZWLS1;8c062b58-0e08-4b12-bf2b-3b3e4f670f72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENFBE1;3cb2f22b-7514-4d79-b8ab-327dad07489e;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFNHK2;8142b174-ad7a-42a1-891b-74ba8427f498;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMFFC1;FR*FR1*ESNPQ*1;FR*FR1*ESNPQ*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMFFC2;01FPGEPE8ZSXY6PCE05PVWNKV4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUJWT2;01FPCSTYZKBK0192R2CX5RQW5F;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENFBE2;01FP88MRJPE0EQGPCENVQPGF7P;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENPHY1;FROTHESENT113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENECW2;FRFR1EEZUX FRFR1EFKMT FRFR1ELWTM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGDTZ2;FRFR1EBYBZ FRFR1ECSZW FRFR1EFSVZ FRFR1EPCKC FRFR1EPRKX FRFR1EQCGT FRFR1ESCMD FRFR1ETUQM FRFR1EFYGB FRFR1EEBEA FRFR1EATVB FRFR1EBNMJ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAJDG2;FRFR1EBMYP;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUJWT1;FROTHEOTHR228;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENPHY2;NL*EVB*E4ESQ6MZXO2CIOPJHZV5FRGJJPI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGDTZ1;NL*EVB*EOGYTSJMGU4CAYUZFV2MTOEJZLA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERVVB1;01FNDTK7FW5XH86EAJYX4N0JGH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECZLX2;NL*EVB*EYYVWU3GVFDRMEMTUNR4CJRI2PA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECZLX1;NL*EVB*EFRA2RHPIPP2IMGSRRT6DI6M4AI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZWLS2;NL*EVB*EQIQA5HJEB6SLFWJ5H7M23LBJX4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFNHK1;NL*EVB*E2DWCHTGKR2IU2U2DQU4QFU2X3U;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAJDG1;NL*EVB*EPS722DZLV6DZHCMNKQFVH6VDIU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELNST2;NL*EVB*EKCT5CTWOBSIMONQDPBWI6COD7E;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWELJ2;NL*EVB*EYFNDEOO4ET6WORHV74UOLLDZLU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERUJD2;NL*EVB*EYTL67PN5NCH5UM5SZLR7DIHWOE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEURUY2;NL*EVB*EGNERASILFGVT5CV5AFEFOAXASY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYRNE2;NL*EVB*EPG2RKATPX6DQZY4QDBQ6YPBALE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAXMN2;01FPHH5W79V2W1P42QRWBWVR3K;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMBFT2;01FPWMSZ9E0N2KM23GSF4T39A6 ; 01FPWMSZ9E7CBY2GX7P03Z2ECN;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZYSY2;76094d99-773f-4c1b-b621-fab330202815;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZPMB2;5ae821f3-1473-49f6-a8b7-c85767286141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUGEJ2;d34039d7-35c4-42a2-b96b-64987ef87642; 80b829bc-66ad-434e-b006-8676e6662260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJPEC2;c934d398-e61d-468c-998b-22fbd4b238d4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWXGC2;01FPYKFCTMW3WRA563KCMN0S0P 01FPYKFCTMF1FK328W5EDK8JQJ 01FPYKFCTMYXNP3F0WEPZE5G97 01FPYKFCTMA9SB7EXNJ5EEA877;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESGKT2;78697e94-5e7d-11ec-bf63-0242ac130002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMPWC2;FR*FR1*EQTGP*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENQMA2;FR*FR1*EGMAM*2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHMXT2;FFAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZUWD2;FFAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJPEC1;01FMVR49DJC50TG0T85G94Y3VT;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECARM2;2aef6548-4884-11ec-81d3-0242ac130003;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKZUL1;NLEVBE3WLPUMM4CDNBGWMIRQ3PKPE6JU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUSDN2;FR*SOD*E*SDE2*57*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERTGV1;FR*SOD*E*SDE2*62*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENJNM1;FR*SOD*E*SDE2*58*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUTFS1;FR*SOD*E*SDE2*58*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELLAA1;FR*SOD*E*SDE2*59*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETBJH1;FR*SOD*E*SDE2*59*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAFZC1;FR*SOD*E*SDE2*61*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJDAD1;FR*SOD*E*SDE2*61*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADAK1;FR*SOD*E*SDE2*45*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGESV1;FR*SOD*E*SDE2*62*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFJYG1;FR*SOD*E*SDE2*63*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDKND1;FR*SOD*E*SDE2*67*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFBWG1;FR*SOD*E*SDE2*67*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXHKM1;FR*SOD*E*SDE2*90*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBMPQ2;FR*SOD*E*SDE2*68*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGFMJ2;FR*SOD*E*SDE2*68*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWBSP2;FR*SOD*E*SDE2*69*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEECLY2;FR*SOD*E*SDE2*56*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMZPN2;FR*SOD*E*SDE2*57*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJWUH1;FR*SOD*E*SDE2*48*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVAEA1;FR*SOD*E*SDE2*56*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKTQA1;FR*SOD*E*SDE2*50*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKXBA1;FR*SOD*E*SDE2*46*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVWXH1;FR*SOD*E*SDE2*47*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMSGE1;FR*SOD*E*SDE2*47*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUBGK1;FR*SOD*E*SDE2*70*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETYUZ2;FR*SOD*E*SDE2*48*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXKZU1;FR*SOD*E*SDE2*49*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAVWX1;FR*SOD*E*SDE2*49*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETYUZ1;FR*SOD*E*SDE2*50*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMJAD1;FR*SOD*E*SDE2*55*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAAMM1;FR*SOD*E*SDE2*51*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERPPX1;FR*SOD*E*SDE2*51*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUPMF1;FR*SOD*E*SDE2*53*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUKQV2;FR*SOD*E*SDE2*53*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAAMM2;FR*SOD*E*SDE2*54*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJDAD2;FR*SOD*E*SDE2*54*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKTQA2;FR*SOD*E*SDE2*55*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUKQV1;FR*SOD*E*SDE2*69*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELQKK2;FR*SOD*E*SDE2*79*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELPCD2;FR*SOD*E*SDE2*70*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWWXF2;FR*SOD*E*SDE2*86*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWSU2;FR*SOD*E*SDE2*82*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVWXH2;FR*SOD*E*SDE2*83*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMSGE2;FR*SOD*E*SDE2*83*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUBGK2;FR*SOD*E*SDE2*84*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZMSV2;FR*SOD*E*SDE2*84*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXKZU2;FR*SOD*E*SDE2*85*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPZYM2;FR*SOD*E*SDE2*85*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHYRD2;FR*SOD*E*SDE2*86*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXMZQ2;FR*SOD*E*SDE2*71*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETBJH2;FR*SOD*E*SDE2*87*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERMEW2;FR*SOD*E*SDE2*87*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUHWN2;FR*SOD*E*SDE2*88*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESJKN2;FR*SOD*E*SDE2*88*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKMQZ2;FR*SOD*E*SDE2*89*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGNHN2;FR*SOD*E*SDE2*89*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZRYM2;FR*SOD*E*SDE2*90*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZBHT2;FR*SOD*E*SDE2*82*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPFTR2;FR*SOD*E*SDE2*81*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAFZC2;FR*SOD*E*SDE2*81*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVSJS2;FR*SOD*E*SDE2*80*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVAEA2;FR*SOD*E*SDE2*71*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQSSK2;FR*SOD*E*SDE2*72*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADAK2;FR*SOD*E*SDE2*72*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVJYA2;FR*SOD*E*SDE2*73*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVAVS2;FR*SOD*E*SDE2*73*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELULC2;FR*SOD*E*SDE2*74*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENJNM2;FR*SOD*E*SDE2*74*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJWUH2;FR*SOD*E*SDE2*76*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDKND2;FR*SOD*E*SDE2*76*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUTFS2;FR*SOD*E*SDE2*77*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFJYG2;FR*SOD*E*SDE2*77*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXHKM2;FR*SOD*E*SDE2*78*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFBWG2;FR*SOD*E*SDE2*78*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYFDF2;FR*SOD*E*SDE2*79*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERMVQ2;FR*SOD*E*SDE2*80*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPQBF2;FR*SOD*E*SDE2*46*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELLAA2;FR*SOD*E*SDE2*6*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESJKN1;FR*SOD*E*SDE2*45*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUHWN1;FR*SOD*E*SDE2*17*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGNHN1;FR*SOD*E*SDE2*14*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGMWP2;FR*SOD*E*SDE2*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKQZY2;FR*SOD*E*SDE2*15*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGMWP1;FR*SOD*E*SDE2*15*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJDEG1;FR*SOD*E*SDE2*16*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERAVV2;FR*SOD*E*SDE2*16*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMDJA2;FR*SOD*E*SDE2*17*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJDEG2;FR*SOD*E*SDE2*18*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMDJA1;FR*SOD*E*SDE2*13*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXNMH1;FR*SOD*E*SDE2*18*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBJWK2;FR*SOD*E*SDE2*19*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEABRC1;FR*SOD*E*SDE2*19*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHTTJ1;FR*SOD*E*SDE2*20*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEABRC2;FR*SOD*E*SDE2*20*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERHNM1;FR*SOD*E*SDE2*21*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEAZN2;FR*SOD*E*SDE2*21*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEAZN1;FR*SOD*E*SDE2*13*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESMWP2;FR*SOD*E*SDE2*12*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKQZY1;FR*SOD*E*SDE2*22*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVUJK1;FR*SOD*E*SDE2*6*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHTTJ2;FR*SOD*E*SDE2*91*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXDNM1;FR*SOD*E*SDE2*1*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESSTV2;FR*SOD*E*SDE2*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDWTP1;FR*SOD*E*SDE2*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETGND2;FR*SOD*E*SDE2*3*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETGND1;FR*SOD*E*SDE2*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECDJA2;FR*SOD*E*SDE2*4*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECDJA1;FR*SOD*E*SDE2*7*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDWTP2;FR*SOD*E*SDE2*12*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFLBY1;FR*SOD*E*SDE2*7*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVUJK2;FR*SOD*E*SDE2*9*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWALU1;FR*SOD*E*SDE2*9*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDTZC1;FR*SOD*E*SDE2*10*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXDNM2;FR*SOD*E*SDE2*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUSLU1;FR*SOD*E*SDE2*11*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUSLU2;FR*SOD*E*SDE2*11*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERAVV1;FR*SOD*E*SDE2*22*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBJWK1;FR*SOD*E*SDE2*23*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESMWP1;FR*SOD*E*SDE2*44*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESWCJ2;FR*SOD*E*SDE2*38*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKMQZ1;FR*SOD*E*SDE2*34*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYYJT1;FR*SOD*E*SDE2*34*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUKNE1;FR*SOD*E*SDE2*35*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXMZQ1;FR*SOD*E*SDE2*35*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERMEW1;FR*SOD*E*SDE2*36*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWSU1;FR*SOD*E*SDE2*36*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESXLW2;FR*SOD*E*SDE2*37*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESXLW1;FR*SOD*E*SDE2*38*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAVWX2;FR*SOD*E*SDE2*33*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVCVT1;FR*SOD*E*SDE2*39*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMLZW1;FR*SOD*E*SDE2*39*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPZYM1;FR*SOD*E*SDE2*41*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHYRD1;FR*SOD*E*SDE2*41*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZMSV1;FR*SOD*E*SDE2*43*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVCVT2;FR*SOD*E*SDE2*43*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXKND2;FR*SOD*E*SDE2*44*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUKNE2;FR*SOD*E*SDE2*33*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYYJT2;FR*SOD*E*SDE2*32*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXKND1;FR*SOD*E*SDE2*23*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGQFD1;FR*SOD*E*SDE2*27*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESWCJ1;FR*SOD*E*SDE2*24*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMKCB1;FR*SOD*E*SDE2*24*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMZNH2;FR*SOD*E*SDE2*25*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMKCB2;FR*SOD*E*SDE2*25*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERHNM2;FR*SOD*E*SDE2*26*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESDHZ2;FR*SOD*E*SDE2*26*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESDHZ1;FR*SOD*E*SDE2*27*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGLBQ2;FR*SOD*E*SDE2*28*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGLBQ1;FR*SOD*E*SDE2*32*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMEAB2;FR*SOD*E*SDE2*28*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMLZW2;FR*SOD*E*SDE2*29*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMZNH1;FR*SOD*E*SDE2*29*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYPZY2;FR*SOD*E*SDE2*30*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYPZY1;FR*SOD*E*SDE2*30*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDCEG1;FR*SOD*E*SDE2*31*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMEAB1;FR*SOD*E*SDE2*31*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDCEG2;FR*SOD*E*SDE2*91*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGQFD2;FR*SOD*E*SDE2*117*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFMMF2;FR*SOD*E*SDE2*92*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZWTP2;FR*SOD*E*SDE2*155*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQVMX2;FR*SOD*E*SDE2*150*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUHNK2;FR*SOD*E*SDE2*152*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADSF2;FR*SOD*E*SDE2*152*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENWMD2;FR*SOD*E*SDE2*153*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETGFM2;FR*SOD*E*SDE2*153*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDSJA2;FR*SOD*E*SDE2*154*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBKNL2;FR*SOD*E*SDE2*154*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZSVU2;FR*SOD*E*SDE2*155*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXVMV2;FR*SOD*E*SDE2*149*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBMUL2;FR*SOD*E*SDE2*156*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFVWV2;FR*SOD*E*SDE2*156*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYUVX2;FR*SOD*E*SDE2*157*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESAAR2;FR*SOD*E*SDE2*157*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDUJR2;FR*SOD*E*SDE2*158*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVJFY2;FR*SOD*E*SDE2*158*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEANFT2;FR*SOD*E*SDE2*159*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDXMD2;FR*SOD*E*SDE2*150*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVCAJ2;FR*SOD*E*SDE2*149*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZUNE2;FR*SOD*E*SDE2*160*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZRCP2;FR*SOD*E*SDE2*143*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAFMV1;FR*SOD*E*SDE2*138*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBQAB1;FR*SOD*E*SDE2*139*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAAMX2;FR*SOD*E*SDE2*139*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDZBM2;FR*SOD*E*SDE2*141*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYKQW2;FR*SOD*E*SDE2*141*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDYZL2;FR*SOD*E*SDE2*142*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGJEX1;FR*SOD*E*SDE2*142*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENQBK2;FR*SOD*E*SDE2*143*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFVNM2;FR*SOD*E*SDE2*147*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKVAW2;FR*SOD*E*SDE2*144*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESJBP2;FR*SOD*E*SDE2*144*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQQPZ1;FR*SOD*E*SDE2*145*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENWEY1;FR*SOD*E*SDE2*145*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEQGE1;FR*SOD*E*SDE2*146*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERGFD1;FR*SOD*E*SDE2*146*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFCGM1;FR*SOD*E*SDE2*147*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYQBJ1;FR*SOD*E*SDE2*159*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEATNZ1;FR*SOD*E*SDE2*160*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGSRQ1;FR*SOD*E*SDE2*137*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAAMX1;FR*SOD*E*SDE2*183*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESJBP1;FR*SOD*E*SDE2*174*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGLGA1;FR*SOD*E*SDE2*176*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZSVU1;FR*SOD*E*SDE2*178*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERGDW1;FR*SOD*E*SDE2*179*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVCAJ1;FR*SOD*E*SDE2*180*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBHMS1;FR*SOD*E*SDE2*181*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBMUL1;FR*SOD*E*SDE2*182*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVJFY1;FR*SOD*E*SDE2*183*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYUVX1;FR*SOD*E*SDE2*173*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXVMV1;FR*SOD*E*SDE2*184*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADSF1;FR*SOD*E*SDE2*184*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZUNE1;FR*SOD*E*SDE2*185*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZRCP1;FR*SOD*E*SDE2*185*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBKNL1;FR*SOD*E*SDE2*189*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDSJA1;FR*SOD*E*SDE2*189*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBHMS2;FR*SOD*E*SDE2*92*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMSBR2;FR*SOD*E*SDE2*174*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUGPK2;FR*SOD*E*SDE2*172*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAZCW1;FR*SOD*E*SDE2*161*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEHLE1;FR*SOD*E*SDE2*165*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENWMD1;FR*SOD*E*SDE2*161*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDLPC1;FR*SOD*E*SDE2*162*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMMWK1;FR*SOD*E*SDE2*162*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFVNM1;FR*SOD*E*SDE2*163*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDUJR1;FR*SOD*E*SDE2*163*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFVWV1;FR*SOD*E*SDE2*164*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKVAW1;FR*SOD*E*SDE2*164*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESAAR1;FR*SOD*E*SDE2*165*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENHCX1;FR*SOD*E*SDE2*171*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWNP1;FR*SOD*E*SDE2*166*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMQLM1;FR*SOD*E*SDE2*166*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETGFM1;FR*SOD*E*SDE2*167*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECJVC1;FR*SOD*E*SDE2*168*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAPBW1;FR*SOD*E*SDE2*168*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHJVZ1;FR*SOD*E*SDE2*169*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESMHD1;FR*SOD*E*SDE2*171*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKRFL1;FR*SOD*E*SDE2*138*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDXMD1;FR*SOD*E*SDE2*167*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEANFT1;FR*SOD*E*SDE2*137*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDZBM1;FR*SOD*E*SDE2*108*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVVYB1;FR*SOD*E*SDE2*103*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECYFH1;FR*SOD*E*SDE2*103*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEASVL1;FR*SOD*E*SDE2*104*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFSCZ2;FR*SOD*E*SDE2*104*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQSNP2;FR*SOD*E*SDE2*107*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQSNP1;FR*SOD*E*SDE2*107*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEMVR2;FR*SOD*E*SDE2*108*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFSCZ1;FR*SOD*E*SDE2*109*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECNXS1;FR*SOD*E*SDE2*102*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECNXS2;FR*SOD*E*SDE2*109*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEASVL2;FR*SOD*E*SDE2*110*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEATTB2;FR*SOD*E*SDE2*110*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEPWS1;FR*SOD*E*SDE2*111*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEECSU1;FR*SOD*E*SDE2*111*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBQRF1;FR*SOD*E*SDE2*112*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEECSU2;FR*SOD*E*SDE2*112*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBQRF2;FR*SOD*E*SDE2*102*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEPWS2;FR*SOD*E*SDE2*101*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEVEL1;FR*SOD*E*SDE2*113*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEATTB1;FR*SOD*E*SDE2*96*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENRHJ1;FR*SOD*E*SDE2*136*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMXXD1;FR*SOD*E*SDE2*93*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQAZM1;FR*SOD*E*SDE2*93*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETJUU1;FR*SOD*E*SDE2*94*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEMVR1;FR*SOD*E*SDE2*94*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVLSF2;FR*SOD*E*SDE2*95*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQAZM2;FR*SOD*E*SDE2*95*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVLSF1;FR*SOD*E*SDE2*96*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYBTS2;FR*SOD*E*SDE2*101*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYBTS1;FR*SOD*E*SDE2*97*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZFPX1;FR*SOD*E*SDE2*97*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUSAY1;FR*SOD*E*SDE2*98*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXCEY2;FR*SOD*E*SDE2*98*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXCEY1;FR*SOD*E*SDE2*99*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECUVT2;FR*SOD*E*SDE2*100*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECUVT1;FR*SOD*E*SDE2*100*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZFPX2;FR*SOD*E*SDE2*113*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENRHJ2;FR*SOD*E*SDE2*99*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUSAY2;FR*SOD*E*SDE2*115*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEVEL2;FR*SOD*E*SDE2*132*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMXXD2;FR*SOD*E*SDE2*127*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECYFH2;FR*SOD*E*SDE2*128*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMLCQ2;FR*SOD*E*SDE2*129*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUCGZ2;FR*SOD*E*SDE2*130*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUCGZ1;FR*SOD*E*SDE2*130*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMVDU1;FR*SOD*E*SDE2*131*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECHYK2;FR*SOD*E*SDE2*131*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECHYK1;FR*SOD*E*SDE2*133*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFNTT1;FR*SOD*E*SDE2*126*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMLCQ1;FR*SOD*E*SDE2*133*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKZKS1;FR*SOD*E*SDE2*134*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKXEC2;FR*SOD*E*SDE2*134*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKZKS2;FR*SOD*E*SDE2*135*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFNTT2;FR*SOD*E*SDE2*135*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENVMC2;FR*SOD*E*SDE2*115*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENVMC1;FR*SOD*E*SDE2*136*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESEPE2;FR*SOD*E*SDE2*127*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESEPE1;FR*SOD*E*SDE2*132*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVVYB2;FR*SOD*E*SDE2*126*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMVDU2;FR*SOD*E*SDE2*120*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJAZX2;FR*SOD*E*SDE2*116*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESAYN1;FR*SOD*E*SDE2*116*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVSMZ2;FR*SOD*E*SDE2*125*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVMHJ1;FR*SOD*E*SDE2*117*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVMHJ2;FR*SOD*E*SDE2*118*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESAYN2;FR*SOD*E*SDE2*118*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXQJW1;FR*SOD*E*SDE2*119*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXQJW2;FR*SOD*E*SDE2*120*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJSXH2;FR*SOD*E*SDE2*119*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJSXH1;FR*SOD*E*SDE2*125*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVSMZ1;FR*SOD*E*SDE2*121*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJAZX1;FR*SOD*E*SDE2*122*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAGZD2;FR*SOD*E*SDE2*124*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFMTA2;FR*SOD*E*SDE2*121*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFMTA1;FR*SOD*E*SDE2*123*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAGZD1;FR*SOD*E*SD29*68*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAMMY1;FR*SOD*E*SD29*70*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKXEC1;FR*SOD*E*SD29*71*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAMMY2;FR*SOD*E*SD29*71*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAZCW2;FR*SOD*E*SD29*71*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEPDU2;FR*SOD*E*SD29*70*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENSUA2;FR*SOD*E*SD29*69*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFQGB1;FR*SOD*E*SD29*69*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMKEM2;FR*SOD*E*SD29*67*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELQCN2;FR*SOD*E*SD29*72*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBGAS2;FR*SOD*E*SD29*68*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHTQD1;FR*SOD*E*SD29*71*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUPMM1;FR*SOD*E*SD29*75*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPTCB1;FR*SOD*E*SD29*72*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERKMY1;FR*SOD*E*SD29*73*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZPMB1;FR*SOD*E*SD29*73*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXEKS2;FR*SOD*E*SD29*74*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWELJ1;FR*SOD*E*SD29*74*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUGEJ1;FR*SOD*E*SD29*75*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWXGC1;FR*SOD*E*SD29*76*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAVCZ1;FR*SOD*E*SD29*76*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPEJL1;FR*SOD*E*SD29*77*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUQNS1;FR*SOD*E*SD29*66*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADKB1;FR*SOD*E*SD29*78*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVLEM2;FR*SOD*E*SD29*77*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJKAL2;FR*SOD*E*SD29*67*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDPDE1;FR*SOD*E*SD29*58*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPJQX2;FR*SOD*E*SD29*66*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVZWH1;FR*SOD*E*SD29*65*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETEUJ1;FR*SOD*E*SD29*54*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWXPB1;FR*SOD*E*SD29*79*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDAUB1;FR*SOD*E*SD29*54*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMVFV2;FR*SOD*E*SD29*55*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERVKX2;FR*SOD*E*SD29*55*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZQXK2;FR*SOD*E*SD29*56*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFMWE2;FR*SOD*E*SD29*56*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZNNA2;FR*SOD*E*SD29*57*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMMWK2;FR*SOD*E*SD29*57*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWNP2;FR*SOD*E*SD29*58*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECJVC2;FR*SOD*E*SD29*59*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMQLM2;FR*SOD*E*SD29*59*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENHCX2;FR*SOD*E*SD29*60*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUAKU2;FR*SOD*E*SD29*60*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELHCJ2;FR*SOD*E*SD29*61*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZWEW1;FR*SOD*E*SD29*61*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEALSQ1;FR*SOD*E*SD29*62*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZWTP1;FR*SOD*E*SD29*62*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYARE2;FR*SOD*E*SD29*63*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESMHD2;FR*SOD*E*SD29*63*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDAUB2;FR*SOD*E*SD29*64*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVZWH2;FR*SOD*E*SD29*64*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXPMA2;FR*SOD*E*SD29*65*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWXPB2;FR*SOD*E*SD29*78*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETEUJ2;FR*SOD*E*SD29*98*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESRGA2;FR*SOD*E*SD29*79*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHRQL2;FR*SOD*E*SD29*93*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERUJD1;FR*SOD*E*SD29*94*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEACQN2;FR*SOD*E*SD29*94*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWSEA2;FR*SOD*E*SD29*95*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWYTL2;FR*SOD*E*SD29*95*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESRTR2;FR*SOD*E*SD29*96*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXLQD2;FR*SOD*E*SD29*96*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMEML2;FR*SOD*E*SD29*97*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQMHX2;FR*SOD*E*SD29*97*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQUUA1;FR*SOD*E*SD29*98*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEURUY1;FR*SOD*E*SD29*99*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUEHT1;FR*SOD*E*SD29*99*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWYTL1;FR*SOD*E*SD29*100*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXVRR1;FR*SOD*E*SD29*100*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESGKT1;FR*SOD*E*SD29*101*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYRNE1;FR*SOD*E*SD29*101*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAXMN1;FR*SOD*E*SD29*102*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMBFT1;FR*SOD*E*SD29*102*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZYSY1;FR*SOD*E*SD29*102*3*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESRTR1;FR*SOD*E*SD29*102*3*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMEML1;FR*SOD*E*SD29*102*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESECR1;FR*SOD*E*SD29*102*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXLQD1;FR*SOD*E*SD29*103*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWSEA1;FR*SOD*E*SD29*53*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMPWC1;FR*SOD*E*SD29*93*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENQMA1;FR*SOD*E*SD29*92*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHMXT1;FR*SOD*E*SD29*80*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZUWD1;FR*SOD*E*SD29*92*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELNST1;FR*SOD*E*SD29*80*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXPMA1;FR*SOD*E*SD29*81*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQVMX1;FR*SOD*E*SD29*81*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENWCM2;FR*SOD*E*SD29*82*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUWWN1;FR*SOD*E*SD29*82*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETRPQ1;FR*SOD*E*SD29*83*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETRPQ2;FR*SOD*E*SD29*83*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHWPC2;FR*SOD*E*SD29*84*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETNLC2;FR*SOD*E*SD29*84*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZZMQ2;FR*SOD*E*SD29*85*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJMUJ2;FR*SOD*E*SD29*85*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEPDU1;FR*SOD*E*SD29*86*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMSBR1;FR*SOD*E*SD29*86*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJMUJ1;FR*SOD*E*SD29*87*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUGPK1;FR*SOD*E*SD29*87*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQQPZ2;FR*SOD*E*SD29*88*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENWEY2;FR*SOD*E*SD29*88*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAFMV2;FR*SOD*E*SD29*89*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGSRQ2;FR*SOD*E*SD29*89*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDYZL1;FR*SOD*E*SD29*90*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECRKF1;FR*SOD*E*SD29*90*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZZMQ1;FR*SOD*E*SD29*91*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHWPC1;FR*SOD*E*SD29*91*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYKQW1;FR*SOD*E*SD29*53*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHSAA1;FR*SOD*E*SD29*15*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUWWN2;FR*SOD*E*SD29*52*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFWZY2;FR*SOD*E*SD29*13*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEABVK2;FR*SOD*E*SD29*14*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJQTL1;FR*SOD*E*SD29*104*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECFJB2;FR*SOD*E*SD29*15*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEABVK1;FR*SOD*E*SD29*16*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJQTL2;FR*SOD*E*SD29*16*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHSAA2;FR*SOD*E*SD29*17*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETNLC1;FR*SOD*E*SD29*17*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVCPZ1;FR*SOD*E*SD29*18*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVCPZ2;FR*SOD*E*SD29*18*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERGAW2;FR*SOD*E*SD29*19*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENWCM1;FR*SOD*E*SD29*19*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERGAW1;FR*SOD*E*SD29*20*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFWZY1;FR*SOD*E*SD29*20*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENSUA1;FR*SOD*E*SD29*21*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECRKF2;FR*SOD*E*SD29*21*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENQBK1;FR*SOD*E*SD29*21*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUHNK1;FR*SOD*E*SD29*21*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYARE1;FR*SOD*E*SD29*22*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPMSK1;FR*SOD*E*SD29*22*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENKGM2;FR*SOD*E*SD29*23*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYJVX1;FR*SOD*E*SD29*23*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYJVX2;FR*SOD*E*SD29*24*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQQNX1;FR*SOD*E*SD29*24*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQQNX2;FR*SOD*E*SD29*14*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESRGA1;FR*SOD*E*SD29*13*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHRQL1;FR*SOD*E*SD29*25*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENKGM1;FR*SOD*E*SD29*12*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEACQN1;FR*SOD*E*SD29*1*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFMMF1;FR*SOD*E*SD29*1*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUEJQ1;FR*SOD*E*SD29*2*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPFBN2;FR*SOD*E*SD29*2*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPWCY1;FR*SOD*E*SD29*3*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJFBW1;FR*SOD*E*SD29*3*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQMHX1;FR*SOD*E*SD29*4*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELDKV2;FR*SOD*E*SD29*4*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPMSK2;FR*SOD*E*SD29*5*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGJEX2;FR*SOD*E*SD29*5*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEQGE2;FR*SOD*E*SD29*6*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBQAB2;FR*SOD*E*SD29*6*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEHLE2;FR*SOD*E*SD29*7*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERGDW2;FR*SOD*E*SD29*7*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEATNZ2;FR*SOD*E*SD29*8*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFCGM2;FR*SOD*E*SD29*8*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYQBJ2;FR*SOD*E*SD29*9*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERGFD2;FR*SOD*E*SD29*9*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELDKV1;FR*SOD*E*SD29*10*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVCAK1;FR*SOD*E*SD29*10*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADHB1;FR*SOD*E*SD29*11*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADHB2;FR*SOD*E*SD29*11*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBFES1;FR*SOD*E*SD29*12*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBFES2;FR*SOD*E*SD29*25*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWRQR1;FR*SOD*E*SD29*26*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVCAK2;FR*SOD*E*SD29*52*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWRQR2;FR*SOD*E*SD29*39*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYXTS2;FR*SOD*E*SD29*40*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECFJB1;FR*SOD*E*SD29*41*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYPRF2;FR*SOD*E*SD29*41*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAPSM2;FR*SOD*E*SD29*42*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERKMA1;FR*SOD*E*SD29*42*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESSMT1;FR*SOD*E*SD29*43*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERKMA2;FR*SOD*E*SD29*43*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEVAF2;FR*SOD*E*SD29*44*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERBLV1;FR*SOD*E*SD29*44*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERBLV2;FR*SOD*E*SD29*45*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBTPF1;FR*SOD*E*SD29*45*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBTPF2;FR*SOD*E*SD29*46*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMYUK2;FR*SOD*E*SD29*46*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMYUK1;FR*SOD*E*SD29*47*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWEG2;FR*SOD*E*SD29*47*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWEG1;FR*SOD*E*SD29*48*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEVAF1;FR*SOD*E*SD29*48*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETVGE2;FR*SOD*E*SD29*49*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETVGE1;FR*SOD*E*SD29*49*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETKGQ2;FR*SOD*E*SD29*50*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESPFY2;FR*SOD*E*SD29*50*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBSVR2;FR*SOD*E*SD29*51*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUBQM2;FR*SOD*E*SD29*51*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPNKR2;FR*SOD*E*SD29*40*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPSEF1;FR*SOD*E*SD29*39*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKTJW1;FR*SOD*E*SD29*26*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENTDN1;FR*SOD*E*SD29*38*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPHTF2;FR*SOD*E*SD29*27*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPNKR1;FR*SOD*E*SD29*27*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENTDN2;FR*SOD*E*SD29*28*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPHTF1;FR*SOD*E*SD29*28*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETKZC1;FR*SOD*E*SD29*29*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEDVE1;FR*SOD*E*SD29*29*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBSVR1;FR*SOD*E*SD29*30*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELNTR1;FR*SOD*E*SD29*30*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKLTS1;FR*SOD*E*SD29*31*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEESVD2;FR*SOD*E*SD29*31*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEESVD1;FR*SOD*E*SD29*32*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMNLC2;FR*SOD*E*SD29*32*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMNLC1;FR*SOD*E*SD29*33*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPPHS1;FR*SOD*E*SD29*33*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERQUM2;FR*SOD*E*SD29*34*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERXSS2;FR*SOD*E*SD29*34*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWPVA1;FR*SOD*E*SD29*35*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVCRA2;FR*SOD*E*SD29*35*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDMYB1;FR*SOD*E*SD29*36*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMXMP1;FR*SOD*E*SD29*36*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZQGM1;FR*SOD*E*SD29*37*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKUKS1;FR*SOD*E*SD29*37*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETKGQ1;FR*SOD*E*SD29*38*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESPFY1;FR*SOD*E*SD29*103*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERXSS1;FR*SOD*E*SD29*139*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVCRA1;FR*SOD*E*SD29*104*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMFJD1;FR*SOD*E*SD29*174*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERQUM1;FR*SOD*E*SD29*175*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESHJG1;FR*SOD*E*SD29*175*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETVRZ1;FR*SOD*E*SD29*176*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESDNV1;FR*SOD*E*SD29*176*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESBVM1;FR*SOD*E*SD29*177*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETEXG1;FR*SOD*E*SD29*177*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECTMJ1;FR*SOD*E*SD29*178*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMFVK1;FR*SOD*E*SD29*178*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAZSN1;FR*SOD*E*SD29*179*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYDNE1;FR*SOD*E*SD29*179*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETEXG2;FR*SOD*E*SD29*180*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECPHJ1;FR*SOD*E*SD29*180*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZVXM1;FR*SOD*E*SD29*181*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGHRM1;FR*SOD*E*SD29*181*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKURH1;FR*SOD*E*SD29*182*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERPRV1;FR*SOD*E*SD29*182*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBCFF1;FR*SOD*E*SD29*183*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEMFW1;FR*SOD*E*SD29*183*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESBVM2;FR*SOD*E*SD29*184*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAALT1;FR*SOD*E*SD29*184*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBAVD1;FR*SOD*E*SD29*185*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBMXY1;FR*SOD*E*SD29*185*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESDNV2;FR*SOD*E*SD29*186*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAPSM1;FR*SOD*E*SD29*174*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAVPS1;FR*SOD*E*SD29*173*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBAJK1;FR*SOD*E*SD29*187*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMZWQ1;FR*SOD*E*SD29*173*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKTJW2;FR*SOD*E*SD29*160*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUBQM1;FR*SOD*E*SD29*161*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEELRF1;FR*SOD*E*SD29*161*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMEHK2;FR*SOD*E*SD29*164*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERMYY2;FR*SOD*E*SD29*164*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHNJS1;FR*SOD*E*SD29*164*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAMPV1;FR*SOD*E*SD29*164*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAMPV2;FR*SOD*E*SD29*165*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJKUZ2;FR*SOD*E*SD29*165*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJFTU2;FR*SOD*E*SD29*166*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMEHK1;FR*SOD*E*SD29*166*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJFTU1;FR*SOD*E*SD29*167*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEBMA2;FR*SOD*E*SD29*167*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESZEJ2;FR*SOD*E*SD29*168*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECCYN2;FR*SOD*E*SD29*168*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJKUZ1;FR*SOD*E*SD29*169*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAMTR2;FR*SOD*E*SD29*169*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXUQR2;FR*SOD*E*SD29*170*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKJDM2;FR*SOD*E*SD29*170*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDGMN2;FR*SOD*E*SD29*171*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERMYY1;FR*SOD*E*SD29*171*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERMFC1;FR*SOD*E*SD29*172*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZKFJ2;FR*SOD*E*SD29*172*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYTCL1;FR*SOD*E*SD29*186*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFPQM2;FR*SOD*E*SD29*187*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFTBJ2;FR*SOD*E*SD29*159*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYTCL2;FR*SOD*E*SD29*201*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYLRH1;FR*SOD*E*SD29*202*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYLRH2;FR*SOD*E*SD29*202*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPLAM1;FR*SOD*E*SD29*203*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPLAM2;FR*SOD*E*SD29*203*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGWMV2;FR*SOD*E*SD29*204*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHZFA2;FR*SOD*E*SD29*204*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADAM1;FR*SOD*E*SD29*205*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADAM2;FR*SOD*E*SD29*205*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEHBB1;FR*SOD*E*SD29*206*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEHBB2;FR*SOD*E*SD29*206*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGWMV1;FR*SOD*E*SD29*208*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEBMA1;FR*SOD*E*SD29*208*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHZFA1;FR*SOD*E*SD29*209*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZKFJ1;FR*SOD*E*SD29*209*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZZHR1;FR*SOD*E*SD29*210*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELGZF1;FR*SOD*E*SD29*210*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXUQR1;FR*SOD*E*SD29*211*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDLLM2;FR*SOD*E*SD29*211*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENEYB2;FR*SOD*E*SD29*211*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQFKA2;FR*SOD*E*SD29*211*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESZEJ1;FR*SOD*E*SD29*212*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECCYN1;FR*SOD*E*SD29*212*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECLMV1;FR*SOD*E*SD29*213*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAMTR1;FR*SOD*E*SD29*201*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKJDM1;FR*SOD*E*SD29*200*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZEXJ2;FR*SOD*E*SD29*188*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDGMN1;FR*SOD*E*SD29*200*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAUAC2;FR*SOD*E*SD29*188*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAEGG1;FR*SOD*E*SD29*189*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAEGG2;FR*SOD*E*SD29*189*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAUAC1;FR*SOD*E*SD29*190*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECLMV2;FR*SOD*E*SD29*190*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELGZF2;FR*SOD*E*SD29*191*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENGUC2;FR*SOD*E*SD29*191*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGDGU2;FR*SOD*E*SD29*192*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZZYG2;FR*SOD*E*SD29*192*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZRYB1;FR*SOD*E*SD29*193*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYQQW2;FR*SOD*E*SD29*193*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZZYG1;FR*SOD*E*SD29*194*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELAFK2;FR*SOD*E*SD29*194*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECAHM1;FR*SOD*E*SD29*195*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECAHM2;FR*SOD*E*SD29*195*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELAFK1;FR*SOD*E*SD29*196*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZZHR2;FR*SOD*E*SD29*196*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZRYB2;FR*SOD*E*SD29*197*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDHPT2;FR*SOD*E*SD29*197*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEWAX1;FR*SOD*E*SD29*198*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEWAX2;FR*SOD*E*SD29*198*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWRJD1;FR*SOD*E*SD29*213*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMRGZ1;FR*SOD*E*SD29*199*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMRGZ4;FR*SOD*E*SD29*160*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMRGZ3;FR*SOD*E*SD29*199*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMRGZ2;FR*SOD*E*SD29*159*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBAJK2;FR*SOD*E*SD29*118*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAVPS2;FR*SOD*E*SD29*119*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERMFC2;FR*SOD*E*SD29*119*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKUKS2;FR*SOD*E*SD29*120*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVKFH2;FR*SOD*E*SD29*120*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZAMT1;FR*SOD*E*SD29*121*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZGRB2;FR*SOD*E*SD29*121*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZSNA2;FR*SOD*E*SD29*122*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXYAW2;FR*SOD*E*SD29*122*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVANY2;FR*SOD*E*SD29*123*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUETH2;FR*SOD*E*SD29*123*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXLCQ2;FR*SOD*E*SD29*124*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVMMD2;FR*SOD*E*SD29*124*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWSUU2;FR*SOD*E*SD29*125*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQLWK2;FR*SOD*E*SD29*157*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJSAB2;FR*SOD*E*SD29*126*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUANA2;FR*SOD*E*SD29*126*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGANA2;FR*SOD*E*SD29*127*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJAZF1;FR*SOD*E*SD29*127*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADLY1;FR*SOD*E*SD29*128*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFSJF2;FR*SOD*E*SD29*128*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVKFH1;FR*SOD*E*SD29*129*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZAMT2;FR*SOD*E*SD29*129*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPAAA1;FR*SOD*E*SD29*130*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKUKT2;FR*SOD*E*SD29*118*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERHEW1;FR*SOD*E*SD29*117*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERHEW2;FR*SOD*E*SD29*131*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENKQA1;FR*SOD*E*SD29*117*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECQCW1;FR*SOD*E*SD29*105*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDFAW1;FR*SOD*E*SD29*106*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPEME1;FR*SOD*E*SD29*106*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKVDT1;FR*SOD*E*SD29*107*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKUHZ1;FR*SOD*E*SD29*107*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPAAA2;FR*SOD*E*SD29*108*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZMCW1;FR*SOD*E*SD29*108*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPTDK1;FR*SOD*E*SD29*109*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPTDK2;FR*SOD*E*SD29*109*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENLZD2;FR*SOD*E*SD29*110*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKUKT1;FR*SOD*E*SD29*110*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENLZD1;FR*SOD*E*SD29*111*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZMCW2;FR*SOD*E*SD29*111*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBUYD2;FR*SOD*E*SD29*112*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEACWV2;FR*SOD*E*SD29*112*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETTVQ2;FR*SOD*E*SD29*113*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETTVQ1;FR*SOD*E*SD29*113*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFSJF1;FR*SOD*E*SD29*114*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWSUU1;FR*SOD*E*SD29*114*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFTFZ1;FR*SOD*E*SD29*115*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJSAB1;FR*SOD*E*SD29*115*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMLNB1;FR*SOD*E*SD29*116*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGSQP1;FR*SOD*E*SD29*116*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHQHW1;FR*SOD*E*SD29*130*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGWVK1;FR*SOD*E*SD29*125*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZSNA1;FR*SOD*E*SD29*131*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMTTN1;FR*SOD*E*SD29*145*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENWYB1;FR*SOD*E*SD29*146*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEADLY2;FR*SOD*E*SD29*146*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETTQB1;FR*SOD*E*SD29*147*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPCLA2;FR*SOD*E*SD29*147*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJAZF2;FR*SOD*E*SD29*148*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDKBG2;FR*SOD*E*SD29*148*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZGRB1;FR*SOD*E*SD29*149*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEACWV1;FR*SOD*E*SD29*149*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENWYB2;FR*SOD*E*SD29*150*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERAWQ2;FR*SOD*E*SD29*132*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGSQP2;FR*SOD*E*SD29*151*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGWVK2;FR*SOD*E*SD29*151*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFTFZ2;FR*SOD*E*SD29*152*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMTTN2;FR*SOD*E*SD29*152*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMLNB2;FR*SOD*E*SD29*153*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHQHW2;FR*SOD*E*SD29*153*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESSMT2;FR*SOD*E*SD29*154*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETTQB2;FR*SOD*E*SD29*154*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBUYD1;FR*SOD*E*SD29*155*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETJUU2;FR*SOD*E*SD29*155*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPXEJ1;FR*SOD*E*SD29*156*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPAMN2;FR*SOD*E*SD29*156*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPCLA1;FR*SOD*E*SD29*157*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPKMU1;FR*SOD*E*SD29*145*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQLWK1;FR*SOD*E*SD29*150*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGANA1;FR*SOD*E*SD29*144*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQAWL1;FR*SOD*E*SD29*138*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETANW1;FR*SOD*E*SD29*144*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAMVM2;FR*SOD*E*SD29*132*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJEMU1;FR*SOD*E*SD29*133*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZASL2;FR*SOD*E*SD29*133*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYDVY1;FR*SOD*E*SD29*134*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZFHY1;FR*SOD*E*SD29*134*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEHQV1;FR*SOD*E*SD29*135*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECTMJ2;FR*SOD*E*SD29*135*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWPVA2;FR*SOD*E*SD29*136*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZZCD1;FR*SOD*E*SD29*136*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEAWZ1;FR*SOD*E*SD29*137*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBAVD2;FR*SOD*E*SD29*137*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESNVE1;FR*SOD*E*SD29*138*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDZZN1;FR*SOD*E*SD29*105*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGYXS1;FR*SOD*E*SD29*139*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAXAZ1;FR*SOD*E*SD29*140*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYDVY2;FR*SOD*E*SD29*140*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZFHY2;FR*SOD*E*SD29*141*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEHQV2;FR*SOD*E*SD29*141*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECPHJ2;FR*SOD*E*SD29*142*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGHRM2;FR*SOD*E*SD29*142*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETANW2;FR*SOD*E*SD29*143*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZQGM2;FR*SOD*E*SD29*143*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMZWQ2;FR*SOD*E*OTHR*25*1*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAALT2;FR*SOD*E*OTHR*25*1*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDMYB2;FR*SOD*E*OTHR*25*2*2*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMFJD2;FR*SOD*E*OTHR*25*2*1*_;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMFVK2;NL*EVB*EOB2MYCKRELE7PLWZMWUU6SYROU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAZSN2;NL*EVB*EJFGGL56BLIFSXY5XUEQQYLDBL4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMXMP2;NL*EVB*E3HKIXSQV7LTCIGBS2ZALHJU5BY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKURH2;NL*EVB*EA2AXUYIOTQ4GFABUPEAMAMGIEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBMXY2;01FMQAER19NXCXX01V4RXNQ0GM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZVXM2;NL*EVB*EP6XVKPHR4IIYT5W23IGVVCGOBQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYDNE2;NL*EVB*EBP7OCKH3I4TGNGRKJ5VPBEHTKA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEMFW2;NL*EVB*EDZYHHJBOU2V5KSR5P4S3LGEN24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERPRV2;2f0a5d72-0b1b-46dd-9e06-023b889cc1c6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBCFF2;01FKFZJTECRJP0Q9KQNK5XQVNZ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETVRZ2;FR*LUM*ECASSAGNE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESHJG2;01FM50FFQNTVYYGG2XQ204QY9P;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKUHZ2;01FM5610WAG9Q6AJNYMFE4M8MT;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZZCD2;01FM50GFVBTBH0BZN9YWKN8QEM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAMVM1;01FM9M4GTK9ASH1XE898YWDPHX;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPEME2;01FMA7H8R6CNN0BVN1QN3KKJ8Y;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMADM2;NL*EVB*EBCS2KEXOMGNNVPVBDNFPEX6XQE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMADM1;NL*EVB*E3TQCXZWAXRI7EV5MSQSE3WS2VA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDFAW2;NL*EVB*EOGK6PAR74I4VY4SIIAVNH7F2H4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENKQA2;NL*EVB*EIGGBG5KVNEU3CHEVBVFCZRY3I4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERFMR1;NL*EVB*ERVIXCPG33BVFBNRADF2DTF7JIQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERFMR2;NL*EVB*EXNZLD4MQY5NADXYF24B3YEIJPQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKVDT2;NL*EVB*EFGOO6H6UIZVQ5JYZCZZVYQLKFA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQAWL2;NL*EVB*E6GHW46FKQYMJONKFL47TCGTIDA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFLZV2;NL*EVB*E3TLTBI6HFK2E3L2JBJDSH3S3AQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECQCW2;NL*EVB*ESXP5HDDCQVVWRNV7RTH7MXOOCA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJPEA2;f7afa075-04c0-4e79-82a9-592b7877202c;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJPEA1;8e06769b-b022-446f-97c4-c70e3d433afd;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUTSV2;1856a6d5-164b-474d-9da6-d7edcf45609e;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUTSV1;f7285ca4-7d3f-4d31-88bb-fee99d8e17a3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWMR1;9243d9d5-34d8-401e-95b8-2a4a0eac060a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWMR2;2019544;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFLZV1;2019546;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUAEU1;3294444f-c134-4e46-afda-c5f7fa6f8900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJEMU2;d1b6baef-7528-48f8-908f-926cd80e3e2a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMEAY1;35dbd4e3142bd77c;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEAWZ2;7dcae273-0c90-433c-b299-47c0cfae2349;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESNVE2;2e0e3191-363c-47b3-b3b4-975a51ad1fa9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDZZN2;1d87eb9f-a06c-42a7-9370-4eacd903360c;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGYXS2;FRFR1ELKDM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAXAZ2;FRSUAE38315A23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZASL1;FRSUAE14201A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMEAY2;FRSUAE14201A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEWPU2;FRSUAE14201A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUAEU2;FRSUAE14201A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEWPU1;FRSUAE33165A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERMYM2;FRSUAE33165A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERMYM1;FRSUAE33165A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEASSB2;FRSUAE07129A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEASSB1;FRSUAE33165A15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECAPJ2;FRSUAE33165A16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECAPJ1;FRSUAE34111A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFPQM1;FRSUAE34111A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYQQW1;FRSUAE34111A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFTBJ1;FRSUAE42312A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECQLN1;FRSUAE42312A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMAYA1;FRSUAE42312A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUVWJ1;FRSUAE33165A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEWQL1;FRSUAE38315A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFQAD1;FRSUAE38315A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKYET1;FRSUAE38315A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUNJQ1;FRSUAE85003A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEDEE1;FRSUAE85003A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFYZR2;FRSUAE85003A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZKLJ2;FRSUAE85003A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMKPJ2;FRSUAE85003A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELSCD2;FRSUAE85003A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYLUT2;FRSUAE85003A23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGFMP2;FRSUAE85003A24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMAYA2;FRSUAE44015A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGBMQ2;FRSUAE44015A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYFAU2;FRSUAE44015A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUJYB2;FRSUAE44015A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYMAY1;FRSUAE44015A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUJYB1;FRSUAE44015A23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELSCD1;FRSUAE38315A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECUGM1;FRSUAE42312A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVAQS1;FRSUAE42299A41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKQFK1;FRSUAE07129A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWTRF1;FRSUAE79264A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYLUT1;FRSUAE09306A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDUGH1;FRSUAE09306A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELGFL1;FRSUAE09306A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERSZX1;FRSUAE09306A15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUVWJ2;FRSUAE09306A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGFMP1;FRSUAE07064A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYBKL1;FRSUAE67320A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZCBB1;FRSUAE67320A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELSHW1;FRSUAE67320A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVFRC1;FRSUAE86293A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFYZR1;FRSUAE86293A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZKLJ1;FRSUAE86293A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMKPJ1;FRSUAE86293A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBVZA2;FRSUAE69260A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELSHW2;FRSUAE69260A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKYET2;FRSUAE09306A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUAWZ1;FRSUAE67320A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYWLZ2;FRSUAE79264A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDUGH2;FRSUAE42299A31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDTBC2;FRSUAE07064A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBNDV2;FRSUAE07064A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELGFL2;FRSUAE42299A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWTRF2;FRSUAE42299A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECUGM2;FRSUAE42299A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWVFG1;FRSUAE42299A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKQFK2;FRSUAE42299A32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHJAC1;FRSUAE79264A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHVEJ1;FRSUAE42299A42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGMVA1;FRSUAE71394A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZPRB1;FRSUAE71394A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJADQ1;FRSUAE71394A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETPDM1;FRSUAE71394A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGLFN1;FRSUAE79264A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVYRC2;FRSUAE07064A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJMVA2;d8915330-5a4d-4e11-839e-545f2792de32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVFRC2;NL*EVB*EMAUVYKDXYCLEH64VWPP46UO7ME;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENLDD1;NL*EVB*EIOJZPTOIQFMKRK56PQMAPVU25Y;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZCBB2;9d4c809a-9eb4-11ec-b909-0242ac120002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYBKL2;Securecharge-PONCAR-HBS-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEWQL2;mxax1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYMAY2;b902fcd2-647f-4e69-9afa-87704712effe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUNJQ2;FRFR1ENDBC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFQAD2;868b9791-607e-4ba5-be0a-612b37168a56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEDEE2;eb597b1b-f705-421a-9ca9-7d6d1c3ed183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMZXX1;FR*LUM*E3RIVIERES1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMJAY1;5a829e2f-cc8b-4ed5-bbda-ca0394262655;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVRMB1;99a40261-6b4d-4517-a515-2abd7044fa9e;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBLQL2;FRECN0138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVAQS2;FRECN0137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYFAU1;940f76bc-5ef3-467f-89a7-d51cdbe812ee;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYWLZ1;01FS52D1GD2WTVPBZXB19J19XD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERSZX2;6cfd8704-7150-40f5-8417-1078cf58ac78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMKBK1;ca4db2bd-f751-40f4-9f86-eec4e54ce232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJMVA1;FRFR1EUVMW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDTBC1;FRLE2EDGSS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGBMQ1;5dbb4e48-fcb9-4afe-a793-7cc3c7ecbbb5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUSDN1;Non Concerné;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZRYM1;NL*EVB*EF23MIWAMHWZ3F6PYUMFKC35DBU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYXTS1;NL*EVB*EJ7XNCWBBYAGR7U2XURRTA7FASE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZJHB1;NL*EVB*ECGESUMUQNQJQTIQD6T2J65JZOI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHLGJ1;NL*EVB*EZRI3BHK3YMX4QV2CTMKWC6A7MA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYPRF1;NL*EVB*EWJHTPEA45Q5I2VMLHUFJUNDT3Q;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPFTR1;NL*EVB*E4RT4IPFOLR7BPL2ATLPRJJJ7NA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDKBG1;securecharge-grhomar-cc-1b;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEABWW1;securecharge-grhomar-cc-1a;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQSSK1;FR*LUM*EBASTIDEVENCE1*1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELQKK1;b8dcf3f9-7e8f-40fb-9d76-095f880982fd;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYFDF1;FR073EKYRIADBEZONS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAMUL2;FR073ECAMAIEUFR8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWBSP1;FR073E77700221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMZPN1;FR073E77700222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPQBF1;FR073ECAMAIEUFR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERMVQ1;FR073ECAMAIEUFR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZBHT1;FR073EKYRIADBEZONS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGFMJ1;FR073ECAMAIEUFR4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWKAP2;FR073ECAMAIEUFR5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGESV2;FR073ECAMAIEUFR6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEABWW2;FR073ECAMAIEUFR3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERPPX2;FR073ECAMAIEUFR7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUPMF2;FR073ECAMAIEUFR9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKXBA2;FR073ECAMAIEUFR10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMJAD2;FR073ECAMAIEUFR11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHLGJ2;FR073ECAMAIEUFR12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZJHB2;FR073ECAMAIEUFR13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELULC1;FR073ECAMAIEUFR14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVJYA1;FR073ECAMAIEUFR15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVAVS1;FR073ECAMAIEUFR16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAMUL1;3b6d5b9c-4bc8-4daa-aeb8-ba09fdddb6d1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVSJS1;FRLE2EDWKL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWWXF1;FRFR1EVSFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEECLY1;FRECN0134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELPCD1;FRECN0133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBMPQ1;FRECN0136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMMSJ1;FRECN0135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWTET1;01FHZ21M0QHTBS6RQ3WHBJWT2S;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVYRC1;FRECN0128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJYHJ1;FRECN0127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETUDM2;2231409;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESZAZ2;2006970;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEASSL2;1943352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWKAP1;1943349;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPFZQ2;1686941;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKEJE2;1686935;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFYYQ2;1686947;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYAVS2;1686944;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESWUK2;1686938;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYAVS1;2054412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFYYQ1;2006973;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJYHJ2;2006982;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBLQL1;1982280;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZUAL2;2006976;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKBML1;2006979;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBNDV1;2006967;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERTCX2;2054421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESWUK1;2054424;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUZMW1;2054418;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMMSJ2;2054427;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUZMW2;1839534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEASSL1;1839537;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHLDB1;2054301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPKDM2;1982286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWTET2;1686965;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHLDB2;1724138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHMYM1;2012868;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPKDM1;2054541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERTCX1;2054544;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHMYM2;2012877;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAWPJ1;2012874;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAWPJ2;1982382;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKEJE1;1788522;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPFZQ1;1788525;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESZAZ1;2084445;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETUDM1;1724156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECKNF1;1982277;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKBML2;1724153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJGNS2;2006904;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDKJV1;1724144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEZHA1;1724150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEZHA2;1724147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECZRC1;1724135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDKJV2;1724141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDGLL2;1724132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAUAX1;1982283;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAUAX2;1686962;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKLTS2;2054430;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBDJA1;2054490;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETKZC2;2054517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEPSEF2;2054493;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDGLL1;2054496;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEEDVE2;2054520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEELRF2;2054511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNELNTR2;2054508;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEATAB1;2054502;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMDUJ2;2054505;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDAKB2;2054514;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAQHN1;2054523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENFSY1;2054499;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDHJH1;2054481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDHJH2;2012766;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBNME1;2054586;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERZPT1;2054592;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERZPT2;2054589;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXMRL1;1788519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBNME2;1788516;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENFSY2;2271741;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDAKB1;2271744;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETHPN2;2271747;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMPUD1;2054478;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMPUD2;2054487;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWYGC1;1788462;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWYGC2;1788489;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETHPN1;1788465;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMDUJ1;1788474;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEATAB2;1788483;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECZRC2;1788486;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBGZL1;1788480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMYZV2;1788492;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDKGT2;1788495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBRFX2;1788501;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBRFX1;1788498;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMYZV1;1788477;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZEXJ1;2054484;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQUYV2;1788504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQUYV1;1686968;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQQKR2;1686971;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKJLQ2;1788510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFDNA1;1788507;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFDNA2;2012865;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDELF1;2271903;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDELF2;2271900;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQQKR1;2054475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGNNG2;2012871;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBVZA1;1982352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDKGT1;2271753;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGNNG1;2276346;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUAHY2;2044539;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENYHQ1;2082501;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXVPL2;2082516;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAQHN2;2082534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENYHQ2;2082531;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENYHQ3;2082507;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENYHQ4;2082510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESTYP1;2082540;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESTYP2;2082519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECSMQ2;2082513;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQCUZ2;2188995;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETRYJ1;2082504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETRYJ2;2082522;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWTN1;2082525;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMWTN2;2082537;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECSMQ1;2052759;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEKJLQ1;2082543;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQCUZ1;2082549;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBDJA2;2082552;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEXVPL1;2082546;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWWCX2;2188998;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDHPT1;2276343;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEECRP1;2082558;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGZXA1;2011821;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZUAL1;1814736;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFRST1;1943601;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHMUA1;1943634;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERZVX1;1943637;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDAML1;1943640;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYHFH1;1943643;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBAKL1;2011809;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQTSD1;2011812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAXCW1;1984257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEYHFH2;2011815;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMJAY2;2012157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMKBK2;2011818;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJXDD2;2011824;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFAHJ2;2011827;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHNZM2;2082498;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUCEV1;2011830;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESZUZ1;2012148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENEYB1;2012160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNESZUZ2;2012154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJBWU2;2012151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWWCX1;2082555;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBJVV2;2082561;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAMMW2;2012406;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHMVM2;1725068;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEANRV1;2006964;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUSDY1;2006961;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENYJA2;2006955;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDLLM1;2006958;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUCEV2;1199112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJGNS1;1199115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUAHY1;2012841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJBWU1;2012844;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBJVV1;1725077;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAMMW1;1725062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHMVM1;2012745;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEMZXX2;1725071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENYJA1;2006910;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUAWZ2;1725065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUSDY2;1725080;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGZXA2;1725083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEDAML2;2012847;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEAXCW2;1982328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNERZVX2;1788471;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQTSD2;1788468;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHJAC2;1788450;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGMVA2;2012883;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHVEJ2;2276349;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNETPDM2;2012835;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWVFG2;2276355;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGLFN2;2276352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJADQ2;2276364;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECQLN2;2276367;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNECKNF2;2276361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEANRV2;2276358;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZPRB2;2276373;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFRST2;2276370;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEBAKL2;2035191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEJXDD1;2012838;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEGDGU1;1943370;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEVRMB2;2012829;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZVZT1;2012832;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUFBH1;2054295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEFAHJ1;2054286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHMUA2;2054289;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEHNZM1;2054292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUDHG1;1844718;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUFBH2;1844721;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEZVZT2;1943367;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEUDHG2;2271750;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEQFKA1;2271756;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEWRJD2;2084529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENGUC1;2084490;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNEECRP2;1823088;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREBNENLDD2;1823082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BG12;2084478;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BG11;2084475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AC11;1823094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BI13;1823100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AC12;1823097;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BI11;1823103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BI12;2084481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42223AA12;2084484;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42223AA13;1823085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BD11;2084487;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42223AA11;2084499;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AK12;2084502;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AK11;2084496;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BB13;2084493;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BB12;2006937;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BB11;2006934;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AH12;2006928;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AH11;1856946;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42095AA12;1823091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AV12;2054328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42095AA11;1856937;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BK12;1982298;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42095AC11;2054313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42095AC12;2054310;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AJ12;2084472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42044AA12;1823073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42044AA11;1823076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BK11;1823079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AD13;1823070;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AD12;1982295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AD11;1982301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42275AA12;1943316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42275AA11;2054331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AU12;1943322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AU11;1943313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AR12;1943319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AR11;1845174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42186AB12;1845171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42186AB11;2054322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42095AB12;2054316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42095AB11;2054325;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AV11;2054319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AC13;1856943;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AJ11;1856940;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AO11;2054304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42005AA13;2153103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42005AA12;2054361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42005AA11;2054358;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42005AC12;1807887;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42005AC11;1807893;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42005AB12;1807896;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42005AB11;1807890;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AO12;2153106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AY12;2153109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BQ12;2153100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AY11;2054367;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42275AE12;2153094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42275AE11;2054364;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AC12;2084520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AC11;2084517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42186AC12;2153112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42186AC11;2012751;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BD13;2012757;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BQ11;2012754;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AZ11;2012748;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BS13;2084526;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BL12;2054355;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BS12;2153088;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BS11;2153082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42005AD12;1839489;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42005AD11;2153079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AD12;2153085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AD11;2054340;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42275AC12;2054337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42275AC11;2054334;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BL11;2084505;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AZ12;2084514;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AA13;2084508;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AA12;2084511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AA11;1839492;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AI12;2153091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AI11;2006940;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BN13;2006946;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BN12;2006943;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BN11;2006949;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BD12;2054352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42095AB13;2054346;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BP11;2054343;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42186AA12;2054349;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AM12;2153097;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AM11;2054307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BM12;2153076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BM11;2271759;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AE12;1696937;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AE11;1704743;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42186AD12;1807479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42186AD11;1704737;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AX12;1704758;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AX11;1704734;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BE13;1704746;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BE12;2012856;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BE11;2012862;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BC13;2012859;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BC12;1733375;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BC11;1704728;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BJ13;1982289;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BJ12;1982292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BJ11;2084451;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AE11;2084454;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AE12;2084448;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42237AB11;2084460;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AW12;2084457;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BP12;2271822;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AG12;2271816;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AG11;1704749;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AG12;1704731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AG11;2271813;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42330AA13;2271789;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42330AA12;2271762;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42330AA11;2271765;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AW11;2271768;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42237AB12;2271771;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AT12;2271774;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AT11;2271777;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BA12;2271780;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BA11;2271783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AF13;2271786;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AF12;2271792;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AF11;1704740;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42237AB13;2271795;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42186AA13;2271798;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AF14;2271801;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42186AA11;2271804;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AP11;2271807;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AF11;2271810;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42237AA12;2012853;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42237AA11;2012850;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AQ13;1704755;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AQ12;2271819;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AQ11;2271825;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AP13;2153067;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AP12;1807851;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AH12;2054469;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AF13;2054472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BO12;2054532;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BO11;2054535;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AB12;2054538;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AB11;1807848;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42275AD13;1807845;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42275AD12;1807854;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42275AD11;1807857;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42237AC12;1807860;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AF12;2054439;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AH11;1807866;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42275AB11;1807863;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BR12;1807872;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42237AC11;1807881;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42275AB12;1807878;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AL12;1807875;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AL11;1807884;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AA12;2153070;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AN12;2153073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AN11;2271897;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BF12;2054442;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BF11;2084469;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42207AA11;2054373;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BR11;2084466;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BH13;2084463;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BH12;2271834;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218BH11;2271828;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AS13;2271831;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AS12;2209935;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42275AB13;2209932;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRESEE42218AS11;2054376;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42140A22;2054379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42140A11;2054370;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42140A12;2054445;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42140A13;2054385;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42140A14;2054388;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42140A21;2054391;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42140A24;2054382;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42140A23;2054394;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E17028A13;2054397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E17028A11;2054415;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E17028A12;2054436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E74118A11;2054433;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E62898A11;1943631;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E62898A12;1943628;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E94074A11;1943625;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E73179A13;2259501;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E73179A12;1734140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E73179A11;1734149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E76150A14;1622525;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E76150A13;1622531;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E76150A12;1622528;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E76150A11;1514431;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E94074A12;1514425;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E77132A15;1514428;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E77132A14;2259507;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E77132A13;2259504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E74118A21;1734152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E77132A12;1822158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E74118A12;1822164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42059A11;1822161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E74118A22;1439456;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E74118A31;1439453;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E83069A62;1439450;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E84087A12;1822173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E84087A11;1822167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E35021A22;1822170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E35021A21;1734155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E35021A12;1734143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E35021A11;1639115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E03107A11;2207823;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42059A12;1822149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E94073A12;1822155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E94073A11;1822152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E91235A12;1734131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E91235A11;1734137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42094A13;1734134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42094A12;2207829;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42094A11;2207817;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E69027A24;2207826;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E69027A23;2207820;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E69027A22;1734146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E69027A21;1699301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E69027A13;1699304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E69027A12;1699298;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E69027A11;1699313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E43137A13;1699310;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E43137A12;1699307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E43137A11;1544594;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E74118A32;1544588;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E77132A11;1544591;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45104A11;1639106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E83069A61;1639109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E83069A52;1837320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45338A11;1710140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45312A12;1710131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45312A11;1710152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45249A12;1710173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45249A11;1710146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45247A12;1710149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45247A11;1710158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45185A12;1710137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45185A11;1710128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45104A12;1710164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E84087A14;1710143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45102A12;1710167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45102A11;2015886;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45092A12;2015895;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45092A11;2015892;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45061A12;2015889;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45061A11;1822179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45004B12;1822176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45004B11;1822182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45004A12;2015907;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45004A11;2015910;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E59343A16;1710119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E59343A15;1710125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E59343A14;1639112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E59343A13;1622540;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E59343A12;1639103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E59343A11;1639100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45338A12;1805169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45345A11;1805175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45345A12;1805172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E06088A34;1975908;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E83069A51;1975905;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E83069A41;1975902;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E83069A32;1622537;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E83069A31;1622534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E83069A22;1710122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E83069A21;1622546;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E83069A12;1622543;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E83069A11;1622549;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42149A12;1710170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42149A11;1710134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E06088A36;1710116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E06088A35;1710113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E06088A33;1710155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E50647A11;1710161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E06088A32;1837314;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E06088A31;1837317;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E06088A24;1943622;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E06088A23;1622735;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E06088A22;1544336;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E06088A21;1544339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E06088A12;1653440;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E06088A11;1653443;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E29236A12;1653446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E29236A11;1653449;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E50647A13;1621817;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E50647A12;1621820;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E84087A13;1622738;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E83069A42;1439135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E43268A11;1653437;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA67;1439126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA65;1439129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA64;1439132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA63;1446803;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA62;1446800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA61;1446806;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA56;1446809;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA55;1653452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA54;1653455;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA53;1653434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA52;1446797;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA51;1622723;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA48;2014962;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA47;1960488;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA46;1960491;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA45;2014956;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA44;2014953;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA43;2014950;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA42;1307984;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA41;1307981;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA36;2014959;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA35;2014965;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA34;2174349;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA33;1446794;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA32;2174352;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA31;2174355;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA22;2069679;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA21;2069682;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA66;2069685;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA68;925946;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA19;899373;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA71;899379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E17300A12;925940;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E43268A12;1622726;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E17300A11;899346;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E17300B12;1699292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E17300B11;1512925;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E17300D12;1446848;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E17300D11;1446851;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E17300C12;1622690;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45122A12;1622687;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45122A11;899547;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E85089A14;899544;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E85089A13;1622669;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E85089A12;1622672;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E85089A11;1512922;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E66210A23;2206224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E66210A22;899268;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E66210A21;2206227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E66210A13;2072001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E66210A12;2071998;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E66210A11;2072004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA78;2072013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA77;2072010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA76;2072007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA75;1699289;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA74;1699295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA73;899262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA72;1446836;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA110;899349;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E17300C11;1653464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA18;1458909;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AB13;1458906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AB11;1446821;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E63258B12;1446818;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E63258B11;1622699;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E63454A12;1622702;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E63454A11;1653458;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E73182A12;1653461;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E73182A11;1653467;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45145A12;1622693;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45145A11;1446839;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45028B32;1622696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45028B31;899394;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45028B42;1468752;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45028B41;899478;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45028B22;899487;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45028B21;1446833;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45028B12;1446830;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E45028B11;1512919;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42222A16;1512916;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42222A15;2015898;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42222A14;2015901;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42222A13;2015904;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42222A12;2068404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42222A11;1985667;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E38563A21;2068383;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E38563A13;2216709;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA17;2068380;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E38563A12;2068377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AB12;2068386;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E38563A22;2068407;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AB14;2068389;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC31;2216718;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA16;2068410;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42279A11;1985658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA15;2216712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA14;2216715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA13;2068401;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA12;2068395;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AA11;2068413;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E63231A12;2068419;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E63231A11;2068416;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC42;2216721;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC41;2068422;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC32;1985673;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E38563A11;1985676;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC24;2072940;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC16;1638488;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC23;2174277;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC13;1514140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC14;1514143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC15;2174283;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC12;2174289;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42279A12;2174286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC21;2174304;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC17;2174301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC22;1638485;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC18;1514146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRG10E42218AC11;1985679;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063KB1P6;1514149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063IB1P4;1985649;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063KB1P5;1985646;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063KB1P4;1985652;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063KB1P3;1985655;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063KB1P2;2216703;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063KB1P1;1985670;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063JB1P4;1985661;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063JB1P3;1985664;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063JB1P2;2072937;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063JB1P1;2072934;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063HB1P4;1805178;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063IB1P3;1728575;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063IB1P2;1432445;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063IB1P1;1432451;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063HB1P5;1432439;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063MB1P2;1432448;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063HB1P3;1623146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063HB1P2;1623143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063HB1P1;1623152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063GB1P7;1623149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063SB1P1;1728578;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063GB1P6;1710392;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063GB1P5;1426442;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063GB1P4;1710395;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063MB1P1;1843872;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063NB1P3;1943604;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063MB1P3;1943607;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063MB1P4;1943613;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063RB1P6;1943616;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063GB1P3;1943619;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063RB1P5;1943610;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063RB1P4;1432442;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063RB1P3;2216706;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063RB1P2;2216724;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063RB1P1;2273475;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063QB1P4;2072943;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063QB1P3;2273466;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063QB1P2;2273463;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063QB1P1;2273457;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063PB1P4;2273472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063PB1P3;2273469;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063PB1P2;2273460;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063OB1P6;2273484;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063OB1P5;2273478;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063OB1P4;2273481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063OB1P3;2068371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063OB1P2;1941204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063OB1P1;1941201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063NB1P4;2032746;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063NB1P2;2068374;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063NB1P1;2032740;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063PB1P1;2032737;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063CB1P3;2032734;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063GB1P2;2032731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063AB1P1;2032743;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063BB1P5;2174280;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063BB1P4;1514134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063BB1P3;1514137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063BB1P2;1439465;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063BB1P1;1837326;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063AB1P7;1837329;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063AB1P6;1837323;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063AB1P5;1439492;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063AB1P4;1439468;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063AB1P3;1439489;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063AB1P2;1439483;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051WB1P2;1439474;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063GB1P1;1439480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051WB1P1;1439459;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051VB1P4;1788048;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051VB1P3;1439477;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051VB1P2;1439471;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051VB1P1;1439462;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051UB1P6;1439486;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051UB1P5;1514026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051UB1P4;1514029;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051UB1P3;1514032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063SB1P3;1514035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051UB1P2;1514038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063CB1P1;1788042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063CB1P2;1788045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063CB1P4;1638479;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063CB1P5;2072016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063FB1P7;1805184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063FB1P6;1805181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063FB1P5;1822188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063FB1P4;1822197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063FB1P3;1822191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063FB1P2;1822185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063FB1P1;1822194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063EB1P7;2072019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063EB1P6;2072022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063EB1P5;1514437;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063EB1P4;1822209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063EB1P3;1514446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063EB1P2;1514440;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063EB1P1;1514443;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063DB1P7;1514434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063DB1P6;1822200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063DB1P5;1822203;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063DB1P4;1822206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063DB1P3;1822215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063DB1P2;1822212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063DB1P1;1514041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063CB1P7;1514047;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063CB1P6;1514044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063SB1P2;1514110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005FB1P4;1514095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063SB1P4;1514101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93006CB1P1;1514098;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93007BB1P3;1514107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93007BB1P2;1514104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93007BB1P1;2174259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93007AB1P5;2174256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93007AB1P4;2174253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93007AB1P3;1514113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93007AB1P2;1514116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93007AB1P1;1514050;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93006CB1P4;1514119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93006CB1P3;1514125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93006CB1P2;1514122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93006BB1P4;1514128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063TB1P1;1514131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93006BB1P3;2174271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93006BB1P2;2174274;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93006BB1P1;2174268;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93006AB1P5;1638482;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93006AB1P4;1514092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93006AB1P3;2174250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93006AB1P2;2174247;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93006AB1P1;1514086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005FB1P5;1514053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005FB1P3;2089266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005FB1P2;2089263;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93007BB1P4;1514059;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93013AB1P1;1514056;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93013AB1P2;1514062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93013AB1P3;1514065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051TB1P5;1514071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93015AB1P5;1514068;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93015AB1P4;2174238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93015AB1P3;2174244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93015AB1P2;2174241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93015AB1P1;1638473;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93014BB1P5;1638476;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93014BB1P4;1514077;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93014BB1P3;1514074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93014BB1P2;1514080;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93014BB1P1;1514083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93014AB1P4;1514089;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93014AB1P3;2084523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93014AB1P2;1807902;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93014AB1P1;2231412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93013BB1P6;2054565;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93013BB1P5;1823265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93013BB1P4;2209593;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93013BB1P3;2209596;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93013BB1P2;1724417;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93013BB1P1;1724420;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93013AB1P5;2054577;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93013AB1P4;2054571;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005FB1P1;2054574;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005EB1P5;2054580;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005EB1P4;2054583;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005AB1P2;1724414;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001DB1P5;2054568;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001DB1P4;1724426;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001DB1P3;1724423;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001DB1P2;1724429;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001DB1P1;1724432;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001CB1P5;1982370;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001CB1P4;1402469;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001CB1P3;1614182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001CB1P2;1614185;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001CB1P1;1672193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001BB1P5;1724411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001BB1P4;1225856;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001BB1P3;1823250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001BB1P2;1823199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001BB1P1;1823247;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001AB1P5;1823244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001AB1P4;1823226;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001AB1P3;1823175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001AB1P2;1823202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93001AB1P1;1823223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063TB1P4;1823235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063TB1P3;1823151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92063TB1P2;1823241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005AB1P1;1823163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005AB1P3;1823160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005EB1P3;1823154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005AB1P4;1823190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005EB1P2;1823181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005EB1P1;1823208;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005DB1P6;1823211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005DB1P5;1823220;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005DB1P4;1823148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005DB1P3;1823196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005DB1P2;1225850;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005DB1P1;1225853;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005CB1P5;1823262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005CB1P4;2271915;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005CB1P3;1672196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005CB1P2;991667;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005CB1P1;2006907;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005BB1P7;1724435;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005BB1P6;1724438;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005BB1P5;2053452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005BB1P4;2012769;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005BB1P3;1839249;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005BB1P2;1823271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005BB1P1;1222886;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005AB1P7;1845183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005AB1P6;1984254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93005AB1P5;1843887;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051UB1P1;1843902;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014DB1P1;1843884;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051TB1P4;1843893;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019BB1P5;1843896;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019EB1P1;1843890;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019DB1P4;1843881;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019DB1P3;1843899;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019DB1P2;1845180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019DB1P1;1982376;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019CB1P6;1225859;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019CB1P5;2054637;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019CB1P4;2054598;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019CB1P3;2054631;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019CB1P2;2054613;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019CB1P1;2054604;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019BB1P4;2054619;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040EB1P7;2054610;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019BB1P3;2054640;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019BB1P2;2054625;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019BB1P1;2054595;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019AB1P7;2054634;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019AB1P6;1982379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019AB1P5;2054628;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019AB1P4;2054607;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019AB1P3;2054616;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019AB1P2;2054601;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019AB1P1;2054622;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014DB1P4;1293134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019EB1P2;1293131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019EB1P3;2271912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019EB1P4;2271909;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92019EB1P5;1823178;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040EB1P4;1823166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040EB1P3;2276403;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040EB1P2;1432907;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040EB1P1;2271906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040DB1P4;1514872;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040DB1P3;1514875;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040DB1P2;1402454;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040DB1P1;1293128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040CB1P4;1293125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040CB1P3;1724375;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040CB1P2;1724378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040CB1P1;1432910;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040BB1P5;1439555;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040BB1P4;1982367;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040BB1P3;1439558;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040BB1P2;2046315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040BB1P1;2054529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040AB1P6;2054526;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040AB1P5;1724384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040AB1P4;1724381;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040AB1P3;1845195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040AB1P2;1845189;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040AB1P1;1845198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014DB1P3;1724372;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014DB1P2;1982364;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014CB1P5;1845201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002DB1P2;1672190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002CB1P5;1256813;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002CB1P4;1248131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002CB1P3;1256810;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002CB1P2;1248134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002CB1P1;1402418;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002BB1P7;1402421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002BB1P6;991664;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002BB1P5;1402424;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002BB1P4;1402427;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002BB1P3;1724357;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002BB1P2;1823136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002BB1P1;1724360;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE91432AB1P5;1268798;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE91432AB1P4;2209965;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE91432AB1P3;2209968;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE91432AB1P2;1307837;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE91432AB1P1;1307840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE91326AB1P5;1724366;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE91326AB1P4;1724363;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE91326AB1P3;1724369;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE91326AB1P2;1845204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE91326AB1P1;1845192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93030AB1P2;1823145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002DB1P1;1823169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002DB1P3;2153142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014CB1P4;2054559;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002DB1P4;2084091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014CB1P3;2054562;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014CB1P2;1823238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014CB1P1;1823172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014BB1P5;1823184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014BB1P4;1823232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014BB1P3;1823157;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014BB1P2;1823256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014BB1P1;2054553;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014AB1P6;1823214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014AB1P5;1823253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014AB1P4;1823142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014AB1P3;1823205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014AB1P2;1823229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92014AB1P1;1823217;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002EB1P6;1823187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002EB1P5;1823193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002EB1P4;1823259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002EB1P3;2153145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002EB1P2;2054556;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002EB1P1;1237772;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002DB1P7;1402463;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002DB1P6;1237778;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92002DB1P5;1237775;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040EB1P5;1237769;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040FB1P1;1715402;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051TB1P3;1715399;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051BB1P2;1943376;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051FB2P1;1943379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051FB1P2;1724390;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051FB1P1;1724387;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051EB2P2CCS;1402466;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051EB2P1;1724408;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051EB1P2;2084550;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051EB1P1;2084544;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051DB1P2;2084547;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051DB1P1;1813593;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051CB1P2;1724393;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051CB1P1;1724396;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051BB1P1;1724399;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040FB1P2;1724402;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051AB1P2;1724405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051AB1P1;2276400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049FB1P5;2276397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049FB1P4;1807908;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049FB1P3;2086029;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049FB1P2;2086008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049FB1P1;2085984;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049EB1P5;2085975;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049EB1P4;2086011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049EB1P3;2085987;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049EB1P2;2183164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051FB2P2CCS;2086023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051HB1P1;2086032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051HB1P2;2086038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051IB1P1;2086017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051TB1P2;2086002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051TB1P1;2086035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051SB1P2;2086026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051SB1P1;2086020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051RB1P2;2183188;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051RB1P1;2183190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051QB1P2;2183194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051QB1P1;2183174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051PB1P2;2183170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051PB1P1;2183176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051OB1P2;2085972;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051OB1P1;2085990;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051NB1P2;2183168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051NB1P1;2183138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051MB1P2;2183124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051MB1P1;2183144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051LB1P2;2183150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051LB1P1;2183154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051KB1P2;2183158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051KB1P1;2183142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051JB1P2;2183148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051JB1P1;2183156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92051IB1P2;2183152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049EB1P1;2183146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049DB1P7;2086005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049DB1P6;2183162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040JB1P5;2183140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040JB1P3;2183160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040JB1P2;2085999;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040JB1P1;2086014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040IB1P6;2085996;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040IB1P5;2085978;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040IB1P4;2085981;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040IB1P3;2085993;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040IB1P2;2183196;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040IB1P1;2183166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040HB1P6;2183126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040HB1P5;2183250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040HB1P4;2183228;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040HB1P3;2183238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040HB1P2;2183240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040HB1P1;2183232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040GB1P5;2183234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040GB1P4;2183244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040GB1P3;2183230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040GB1P2;2183252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040GB1P1;2183262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040FB1P5;2183248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040FB1P4;2183246;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040FB1P3;2183258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040JB1P4;2183256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049AB1P1;2183254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049DB1P5;2183260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049AB1P2;1732355;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049DB1P4;2083734;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049DB1P3;2083731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049DB1P2;2231418;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049DB1P1;2231415;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049CB1P7;2183236;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049CB1P6;2183226;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049CB1P5;2183172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049CB1P4;2183214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049CB1P3;2183180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049CB1P2;2183186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049CB1P1;2183192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049BB1P7;2183182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049BB1P6;2183184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049BB1P5;2183178;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049BB1P4;2183218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049BB1P3;2183216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049BB1P2;2183202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049BB1P1;2183204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049AB1P7;2183242;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049AB1P6;2183220;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049AB1P5;2183212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049AB1P4;2183224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92049AB1P3;2183198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93030AB1P1;2183208;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE92040EB1P6;2183206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93030AB1P3;2183210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93079AB1P2;2183222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94001AB1P3;2183200;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94001AB1P2;2183134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94001AB1P1;2183128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93079BB1P5;2276394;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93079BB1P4;1053405;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93079BB1P3;1053399;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93079BB1P2;1053396;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93079BB1P1;1053390;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93079AB1P5;1053387;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93079AB1P4;1053402;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93079AB1P3;1053381;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93079AB1P1;1053408;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078AB1P3;1053393;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078CB1P5;1053384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078CB1P4;1225439;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078CB1P3;961928;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078CB1P2;1225436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078CB1P1;1225445;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078BB1P5;1225442;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078BB1P4;1225451;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078BB1P3;1225448;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078BB1P2;1853730;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078BB1P1;1853733;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078AB1P5;1853727;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94001AB1P4;1943070;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94001AB1P5;961925;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94015AB1P1;961934;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94015AB1P2;1943076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94054AB1P1;879263;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94022CB1P4;689177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94022CB1P3;689180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94022CB1P2;689174;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94022CB1P1;1717868;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94022BB1P5;1717871;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94022BB1P4;1717865;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94022BB1P3;2050545;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94022BB1P2;879260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94022BB1P1;2050542;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94022AB1P5;879266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94022AB1P4;961931;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94022AB1P3;879269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94022AB1P2;879272;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94022AB1P1;879257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94015BB1P5;2255388;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94015BB1P4;1717886;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94015BB1P3;1717874;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94015BB1P2;1717883;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94015BB1P1;1717889;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94015AB1P5;1717877;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94015AB1P4;1943082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94015AB1P3;1943073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078AB1P4;2183136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078AB1P2;2183106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070CB1P3;2183082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071AB1P1;2183084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071BB1P5;2183086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071BB1P4;2183098;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071BB1P3;2183100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071BB1P2;2183096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071BB1P1;2183090;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071AB1P7;2183116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071AB1P6;2183108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071AB1P5;2183114;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071AB1P4;2183094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071AB1P3;2183102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071AB1P2;2183110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070EB1P5;2183112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93078AB1P1;2183104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070EB1P4;2183132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070EB1P3;2183122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070EB1P2;2183118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070EB1P1;2183130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070DB1P5;2183120;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070DB1P4;2183092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070DB1P3;2183088;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070DB1P2;1943088;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070DB1P1;1945692;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070CB1P6;1943085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070CB1P5;1943064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071BB1P6;1943067;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071BB1P7;1943079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071CB1P1;1945695;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071CB1P2;1945698;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93077BB1P5;1945689;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93077BB1P4;1945683;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93077BB1P3;1945686;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93077BB1P2;2090886;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93077BB1P1;2183070;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93077AB1P5;2090883;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93077AB1P4;2090880;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93077AB1P3;2092149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93077AB1P2;2092146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93077AB1P1;2183076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93072BB1P5;2183074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93072BB1P4;2183078;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93072BB1P3;2183072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93072BB1P2;2183080;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93072BB1P1;1248128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93072AB1P5;1248125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93072AB1P4;1724354;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93072AB1P3;2210007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93072AB1P2;1731866;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93072AB1P1;1731872;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071CB1P5;1731869;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071CB1P4;1731881;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93071CB1P3;1731884;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94054AB1P2;1725092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94054AB1P3;1725098;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93030AB1P4;1725095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079CB1P5;2210043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080FB1P1;2210040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080EB1P2;1823112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080EB1P1;2209992;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080DB1P2;2210010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080DB1P1;2210013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080CB1P2;2210103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080CB1P1;2210049;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080BB1P2;2210022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080BB1P1;2210004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080AB1P2;2210037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080AB1P1;2210001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079CB1P4;1731863;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94054AB1P4;1823115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079CB1P3;2210091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079CB1P2;2271849;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079CB1P1;1731836;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079BB1P5;1731815;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079BB1P4;1731821;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079BB1P3;1731824;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079BB1P2;1731833;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079BB1P1;1731830;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079AB1P5;1731827;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079AB1P4;2271837;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079AB1P3;2271840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080FB1P2;2271846;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080GB1P1;1731854;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080GB1P2;2271843;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080HB1P1;2271852;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080NB1P5;1731851;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080NB1P4;1731860;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080NB1P3;1731857;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080NB1P2;1731842;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080NB1P1;1731839;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080MB1P4;1731845;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080MB1P3;1731848;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080MB1P2;2210031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080MB1P1;2210106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080LB1P5;1731809;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080LB1P4;2210016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080LB1P3;2209998;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080LB1P2;2210100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080LB1P1;2210046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080KB1P4;2210058;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080KB1P3;2209983;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080KB1P2;2210073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080KB1P1;2209995;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080JB1P2;2210052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080JB1P1;2210097;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080IB1P2;2209974;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080IB1P1;2210028;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94080HB1P2;2210082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079AB1P2;2012775;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94079AB1P1;2012796;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94075AB1P5;2012781;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94068CB1P1;2012817;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94068BB1P4;2012799;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94068BB1P3;2012811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94068BB1P2;2012826;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94068BB1P1;2012820;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94068AB1P4;2209980;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94068AB1P3;2210079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94068AB1P2;2210070;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94068AB1P1;2210094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94060AB1P5;2210064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94060AB1P4;2210061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94060AB1P2;2210019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94060AB1P1;2209986;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94055AB1P5;2210115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94055AB1P4;2210055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94055AB1P3;2210085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94055AB1P2;2210076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94055AB1P1;2209971;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94054BB1P5;2210109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94054BB1P4;2210121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94054BB1P3;2210067;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94054BB1P2;2210112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94054BB1P1;2210124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94054AB1P5;2210118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94068BB1P5;2210025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94068CB1P2;2209989;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94075AB1P4;2210088;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94068CB1P3;2210034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94075AB1P3;2209977;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94075AB1P2;1731818;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94075AB1P1;1731812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94070AB1P5;1724351;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94070AB1P4;1807989;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94070AB1P3;1807959;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94070AB1P2;1807965;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94070AB1P1;1807968;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94069BB1P7;1807971;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94069BB1P6;1807962;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94069BB1P5;1807977;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94069BB1P4;1807980;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94069BB1P3;1807974;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94069BB1P2;1807986;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94069BB1P1;1807992;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94069AB1P6;1807956;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94069AB1P5;1807995;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94069AB1P4;1807998;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94069AB1P3;1808001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94069AB1P2;2053431;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94069AB1P1;2053428;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94068CB1P5;2006994;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94068CB1P4;2006997;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070CB1P4;1808007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE94060AB1P3;1808010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070CB1P2;1807950;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048FB1P1;1807953;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048HB1P2;1808016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048HB1P1;1807914;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048GB1P5;1807905;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048GB1P4;1807899;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048GB1P3;2084535;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048GB1P2;2084532;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048GB1P1;2153118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048FB1P5;2153115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048FB1P4;2084538;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048FB1P3;2084541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048FB1P2;1807911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048EB1P5;1807917;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049AB1P7;1807938;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048EB1P4;1807926;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048EB1P3;1807929;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048EB1P2;1807920;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048EB1P1;1807923;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048DB1P4;1807932;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048DB1P3;1807935;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048DB1P2;1807947;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048DB1P1;1807944;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048CB1P4;1807941;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048CB1P3;1808004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048CB1P2;1808013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048HB1P3;1731803;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048HB1P4;1960275;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048HB1P5;1808097;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048IB1P1;1808091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049AB1P5;1960290;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049AB1P4;1960296;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049AB1P3;1960293;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049AB1P2;1960287;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049AB1P1;1960284;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048LB1P4;1960299;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048LB1P3;1960281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048LB1P2;1960272;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048LB1P1;1808088;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048KB1P4;1960278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048KB1P3;2152689;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048KB1P2;2054298;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048KB1P1;2209605;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048JB1P7;1731791;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048JB1P6;1731794;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048JB1P5;1731800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048JB1P4;1731797;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048JB1P3;1731806;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048JB1P2;1808094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048JB1P1;1808085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048IB1P4;1808022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048IB1P3;1808046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048IB1P2;1808025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048CB1P1;1808019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048BB1P6;1808028;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048BB1P5;1808034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031DB1P4;1808031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031DB1P2;1808037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031DB1P1;1808040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031CB1P6;1808043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031CB1P5;1808052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031CB1P4;1808049;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031CB1P3;1808082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031CB1P2;1808055;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031CB1P1;1808064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031BB1P6;1808058;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031BB1P5;1808061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031BB1P4;1808070;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031BB1P3;1808067;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031BB1P2;1808073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031BB1P1;1808079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031AB1P5;1808076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031AB1P4;2012790;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031AB1P3;2012787;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031AB1P2;2012805;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031AB1P1;875914;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93030AB1P7;1697801;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93030AB1P6;1697804;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93030AB1P5;1724273;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070CB1P1;2271879;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031DB1P3;2271882;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93031DB1P5;1724276;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048BB1P4;875905;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93033AB1P1;875908;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048BB1P3;875911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048BB1P2;2271888;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048BB1P1;1724264;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048AB1P7;2271885;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048AB1P5;1402406;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048AB1P4;875920;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048AB1P3;875917;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048AB1P2;1626386;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048AB1P1;1626374;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93046AB1P5;1626368;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93046AB1P4;1697549;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93046AB1P3;1626371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93046AB1P2;1724261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93046AB1P1;2012763;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93039AB1P5;1626365;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93039AB1P4;1724252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93039AB1P3;1724249;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93039AB1P2;1704725;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93039AB1P1;1268789;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93033AB1P5;1268786;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93033AB1P4;991652;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93033AB1P3;1823118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93033AB1P2;2209950;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049AB1P6;2209953;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93048AB1P6;1724255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049BB1P1;2271870;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066BB1P4;2012760;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066DB1P5;2006985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066DB1P4;1724258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066DB1P3;1432898;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066DB1P2;1432901;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066DB1P1;1733510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066CB1P5;1307810;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066CB1P4;1307813;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066CB1P3;2271876;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066CB1P2;2271873;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066CB1P1;1626383;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066BB1P5;1626380;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066BB1P3;2012802;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93063BB1P5;1724309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066BB1P2;1293092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066BB1P1;1293080;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066AB1P5;1293086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066AB1P4;1724306;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066AB1P3;1724303;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066AB1P2;1156736;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066AB1P1;1156739;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93063CB1P5;2054463;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93063CB1P4;2054466;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93063CB1P3;1724312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93063CB1P2;1293089;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066EB1P1;1724318;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066EB1P2;1724315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066EB1P3;1724327;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066EB1P5;1724330;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070BB1P7;991661;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049BB1P2;1724339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070BB1P6;1724348;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070BB1P5;1724342;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070BB1P4;1724345;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070BB1P3;1293083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070BB1P2;1724297;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070BB1P1;1724282;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070AB1P5;1724285;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070AB1P4;1724279;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070AB1P3;1242347;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070AB1P2;1626389;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93070AB1P1;1626404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066GB1P5;1626398;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066GB1P4;1626401;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066GB1P3;1626392;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066GB1P2;1626395;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066GB1P1;1724288;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066FB1P5;1256975;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066FB1P4;1724300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066FB1P3;1982331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066FB1P2;1982334;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066FB1P1;1293071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93063CB1P1;1982340;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93066EB1P4;1982337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93063BB1P4;1293077;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049DB1P1;1293074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93050AB1P7;2271894;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93050AB1P6;2271891;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93050AB1P5;1724246;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93050AB1P4;1724243;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93050AB1P3;1724240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93050AB1P2;1650863;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93050AB1P1;1514848;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049DB1P6;1514851;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049DB1P5;1514854;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049DB1P4;2271861;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049DB1P3;2271858;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049CB1P7;1724204;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93050BB1P2;1823106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049CB1P6;1823109;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049CB1P5;2012400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049CB1P4;1614149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049CB1P3;1293035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049CB1P2;1982349;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049CB1P1;1839513;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049BB1P6;1839507;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049BB1P5;1839495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93063BB1P3;1839516;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049BB1P4;1839504;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049BB1P3;1839510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93050BB1P1;1839519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93049DB1P2;1839501;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93050BB1P3;991646;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059BB1P5;2006952;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93063BB1P1;1724237;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93063AB1P4;875878;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93050BB1P4;2012772;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93063AB1P3;2012778;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93063AB1P2;2012808;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93063AB1P1;2012784;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059CB1P4;2012814;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059CB1P3;2012793;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059CB1P2;2012823;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059CB1P1;1724192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059CB1P5;1724195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059AB1P2;875881;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059AB1P5;1544186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93050BB1P5;1724198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059AB1P1;1672139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059AB1P3;1672142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059AB1P4;2054406;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93063BB1P2;2054403;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059BB1P2;2054409;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059BB1P3;2054400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059BB1P4;2271855;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMGPE93059BB1P1;1544183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004393561748207221;1839498;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE922804885203922045441;1839522;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394621148436831;1293062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394621148436821;1724231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394621148436811;1232618;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394621148436841;1724222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004393609448050821;1724225;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394016148763431;2271867;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004393609448050811;1148244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394016148763421;1148247;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394016148763411;1402397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394720648281521;1232624;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394016148763441;1232627;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394720648281511;1724228;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004395212848332511;1293065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004393561748207211;1147758;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004393648248096921;2153139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004393648248096931;2153130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE937004892567924404631;2153136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE937004892567924404621;2153133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004392581348766421;1402400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004392581348766411;1402403;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004395212848332521;1982322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004392959247991911;1982325;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE922804885203922045451;1232621;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004392959247991931;991649;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004392959247991941;2271864;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE922804885203922045461;1724219;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE923804883886121703631;1845186;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE922804885203922045431;2209941;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE922804885203922045411;2209947;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7814017WAGNER4;2209944;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004393735447986211;2209938;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7814017WAGNER3;1697798;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE923804883886121703651;1697795;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE923804883886121703621;1724213;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE923804883886121703661;1225841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE923804883886121703611;1225823;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE923804883886121703641;1225835;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE780004880989821209551;1225844;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE780004880989821209511;1225838;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE780004880188021299351;1225829;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE780004880188021299331;1225826;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR78000AVDEPAR1S0;1225832;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR78000AVDEPAR1S1;1187463;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404882444624734411;1187460;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404882444624734421;1724216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404882444624734431;2006931;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404882444624734441;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404882444624734451;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404882444624734461;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404882018224738711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404882018224738731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404882018224738761;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404882018224738751;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404882018224738721;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404882018224738741;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE922804885203922045421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004392959247991921;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921404878689922553311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004393735447986221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE062704364129771300621;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394314947969511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394314947969541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394314947969521;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394314947969531;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004393910448214311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004393910448214321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE835804323023965857121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE835804323023965857111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004392783248385511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004392783248385521;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE062704364129771300611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE062704364129771300641;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE062704364129771300631;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394290548250611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004393019248093821;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394290548250621;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921404878689922553361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921404878689922553331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921404878689922553341;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921404878689922553351;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921404878689922553321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921404879898422628421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921404879898422628411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921404879898422628441;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921404879898422628451;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921404879898422628431;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7814017WAGNER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921404879898422628461;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE75015GIRVATMX0238873;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE75015GIRVATMX0238872;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE75015GIRVATMX0238871;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE57740GIRVATMX0235473;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004393019248093811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004392950248219711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004392950248219721;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394225648169321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394225648169311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE843104394018948994111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE843104394018948994121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE69800GIRVATMX0239151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE69800GIRVATMX0239152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE69800GIRVATMX0239153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE28160GIRVATMX02216F1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE28160GIRVATMX02216F2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE28160GIRVATMX02216F3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE49480GIRVATMX01DDF51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE49480GIRVATMX01DDF52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE49480GIRVATMX01DDF53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE69800GIRVATMX0234FA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE69800GIRVATMX0234FA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE69800GIRVATMX0234FA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE51400GIRVATMX02AA8A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE51400GIRVATMX02AA8A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE51400GIRVATMX02AA8A3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE51400GIRVATMX02A6A61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE51400GIRVATMX02A6B62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE51400GIRVATMX02A6B63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE57740GIRVATMX0235471;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE57740GIRVATMX0235472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7814017WAGNER2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CP06380SOSPARKING;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7814017WAGNER5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83120SMPC011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE780004879967021535701;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE780004880674221518751;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE780004880674021519501;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE780004879661021366931;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE780004879663921366301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE834204320729806568722101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE834204320729806568722001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE301504402433847936161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE301504402433847936171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83420CVGGR011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83420CVGGR021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83120SMPB011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83120SMPB021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83120SMPC021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7814017WAGNER0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83120SMPG011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83120SMPG021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83120SMPM011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83120SMPM021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83120PLT00011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83120PLT00021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83850GASS021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83850GASS011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE84400SVG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE833104325191965336561;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE833104325065965344741;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE833104325191965336551;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE833104325065965344731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE780004879978021535601;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83310GIRVATMX029BAD3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83310GIRVATMX029BAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83310GIRVATMX029BAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE73800EGEVBOX22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83240PLU00011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83240PLU00012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83990PLU00021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83990PLU00022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83480PLU00031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83480PLU00032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83480PLU00041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83480PLU00042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83310PLU00051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83310PLU00052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83310PLU00071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83310PLU00072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83310PLU00081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83310PLU00082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83240PLU00091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83990FUL1261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83990FUL1262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE84160FUL1321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE84160FUL1322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83990FUL1331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83990FUL1332;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83640EVWB0011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83640EVWB0021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83350EVLINKCLUB551;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83350EVLINKCLUB552;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404881681224668321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404881684224668121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404881693524668761;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE937004892167524458131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004395388548232531;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004395388548232551;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004395388548232541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE844504394885649339121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE844504394885649339111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394912248007131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394912248007141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394912248007151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004394912248007161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878062122100951;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878062122100941;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878062122100911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878062122100961;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878062122100921;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878062122100931;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878283322154561;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878283322154531;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878283322154511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878283322154521;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878283322154541;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878283322154551;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878543722119331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878543722119341;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878543722119321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878543722119371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878543722119351;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878543722119361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004395388548232561;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE937004892168124458091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404881678524668181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE923804883864421870581;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404881686724668601;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE943404881686692466861;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE780004880080621290531;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE780004880083321290561;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE301334395803747643471;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE301334395803747643461;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE301334396228947525161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE301334396228947525171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE301334395842547684261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE301334395842547684251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921304882742322676501;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921304882739322674881;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921304882751022675171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921304882743022676461;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921304882743322676641;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921304882743322676621;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921304882263022499681;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921304882274922494931;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921304882264422500741;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921304882261322501671;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921304882274822498721;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE921304882276822499371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE923804883874021871891;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE923804883863021870121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE923804883858721869601;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE923804883871821872801;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE923804883869721871381;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE73800EGEVBOX21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEF1923801GARE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE73800EGEVBOX23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923502L1BERAT10N6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238023RUE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238023RUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238023RUE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238023RUE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEF1923801GARE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEF1923801GARE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEF1923801GARE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923502L1BERAT10N0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923502L1BERAT10N1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923502L1BERAT10N2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923502L1BERAT10N3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923502L1BERAT10N4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923502L1BERAT10N5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9235031HERR10T0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR131001MA1R1E1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9235031HERR10T1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92380111JANV1ER0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92380111JANV1ER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92380111JANV1ER2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92380111JANV1ER3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR841601GRANG1ER0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004395267347969111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923504BLUM0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923504BLUM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923504BLUM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923504BLUM3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923504BLUM4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923504BLUM5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR833501320UMEDE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR833501320UMEDE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238064DEBAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238064DEBAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR331101LAF0NT0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR331101LAF0NT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR331101LAF0NT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR331101LAF0NT3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238071RUESURESNES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238071RUESURESNES0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238071RUESURESNES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923801DEV0S0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923801DEV0S1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923801DEV0S2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238022PASTEUR0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238022PASTEUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238022PASTEUR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238061SURESNES0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238061SURESNES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238061SURESNES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92380159JAUNE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92380159JAUNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92380159JAUNE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923803SU1SSES0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923803SU1SSES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923803SU1SSES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR84270206P0NT0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR84270206P0NT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR84270912EGU1LLES0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR84270912EGU1LLES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9238064DEBAT0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR131001MA1R1E0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR131001MA1R1E2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR838202MAURES0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7814048EXELMANS3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923508GAULLE5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR17880PHARE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR17880PHARE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR17880PHARE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR17880PHARE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR84300GAUTH1ER0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR84300GAUTH1ER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE83240PLU00092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE063804387840874482971;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE839904325647266905181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7814048EXELMANS0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7814048EXELMANS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7814048EXELMANS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7814062L0UV01S0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR131001MA1R1E3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7814062L0UV01S1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7814062L0UV01S2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7814062L0UV01S3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR781401MA1L0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR781401MA1L1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR781401MA1L2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR781401MA1L3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR781401SAV01E0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR781401SAV01E1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR781401SAV01E2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR781401SAV01E3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR833101MER0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR833101MER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923508GAULLE4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923508GAULLE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923508GAULLE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923508GAULLE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR17800BPA100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR17800BPA101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR17800BPA102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR48200BPA750;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR48200BPA751;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR48200BPA752;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9235047BR1AND0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9235047BR1AND1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9235047BR1AND2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9235047BR1AND3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9235047BR1AND4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9235047BR1AND5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923501ETANG0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923501ETANG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923501ETANG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923501ETANG3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923501ETANG4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR78140RAB0URD1N0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR78140RAB0URD1N1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR78140RAB0URD1N2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR78140RAB0URD1N3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR84000CHAMAND0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR84000CHAMAND1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR84000CHAMAND2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR84000CHAMAND3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR84000CHAMAND4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR923508GAULLE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR838202MAURES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR841601GRANG1ER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR13122PLATEAU0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR8414029PAR01SS1ENS3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR83350111PLAGES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR83350111PLAGES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR83350111PLAGES3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR8474075V1LLAGE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR8474075V1LLAGE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR8474075V1LLAGE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR8474075V1LLAGE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR26140S0LE1L0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR26140S0LE1L1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR26140S0LE1L2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR8414029PAR01SS1ENS0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR8414029PAR01SS1ENS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR8414029PAR01SS1ENS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR354706LANSERVA0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9232031LECLERC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR354706LANSERVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR41600THAR0NNE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR41600THAR0NNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR41600THAR0NNE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR671700UEST0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR671700UEST1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR671700UEST2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE781404878259921901791;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR78140NULL0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR78140NULL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR78140NULL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9232031LECLERC0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9232031LECLERC3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR83350111PLAGES0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92140137JAURES4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92140137JAURES3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92140137JAURES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE840004395267347969121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR353003C0MBATTANTS0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR353003C0MBATTANTS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9214040HUG00;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9214040HUG03;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9214040HUG04;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR13122EC0LE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9214040HUG01;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9214040HUG02;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92140201TR1VAUX0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92140201TR1VAUX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92140201TR1VAUX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92140201TR1VAUX3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92140201TR1VAUX4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92140201TR1VAUX5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR833101910L1TT0RAL0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR833101910L1TT0RAL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR833101910L1TT0RAL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR833101910L1TT0RAL3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR83310335AVDELAMER0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR83310335AVDELAMER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR83310335AVDELAMER2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7319043AB1S0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7319043AB1S1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7319043AB1S2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92140137JAURES0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR92140137JAURES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9232031LECLERC4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9214040HUG05;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9232031LECLERC5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR73800NULL5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7319043AB1S3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7319043AB1S4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7319043AB1S5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7319043AB1S6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7319043AB1S7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7319043AB1S8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7319043AB1S9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR7319043AB1SA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR73800NULL0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR73800NULL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR73800NULL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR73800NULL3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR73800NULL4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR73800NULL6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR8399019RES1STANCE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR73800NULL7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR833102721PREST1GE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR833102721PLAGE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR833501093EP10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR833101910CL1ENTS0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR33240ME1LLAC0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR33240ME1LLAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR33240ME1LLAC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR33240ME1LLAC4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR33240ME1LLAC5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR13122EC0LE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9232031LECLERC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR8399019RES1STANCE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR33240ME1LLAC3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR833100F0UR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9226072LANGEV1N1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR833100F0UR0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE843104394266249047111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR922605JAURES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR922605JAURES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR922605JAURES3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9226029L0MBART0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9226029L0MBART1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9226029L0MBART2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9226029L0MBART3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9226029L0MBART4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9226029L0MBART5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9226072LANGEV1N0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR922605JAURES0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9226072LANGEV1N2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR83990CAP1TA1NER1E1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9226072LANGEV1N3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR83350300TAH1T11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR83350300TAH1T10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CE843104394266249047121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR83990CAP1TA1NER1E0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR843201GARE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9226072LANGEV1N5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR9226072LANGEV1N4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR55CEFR843201GARE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851090043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851090042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851060011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851090041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850960011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850960012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850920031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851090012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850920032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850920041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850920042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851060012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850920023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850920022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850920021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850920011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850920012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850890012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850840011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850840012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850840021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850840022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850810011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851090011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850700011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850810012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850890011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851280022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851090022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851350012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851520012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850600021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851510021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851510022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851510011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851510012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851500011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851500012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851460011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851460012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851350011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851280012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851090021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851280021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851270011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851270012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851140011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851140012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851130021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851130022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851130011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851130012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851090031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851090032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850700012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850290012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850600022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850600011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850270011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850270013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850200011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850200012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850180011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850180012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850140011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850140012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850120011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850120012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850120021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850120023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850120022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850110011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850110012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850080011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850080012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850040011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850040013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850040012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850030011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850030012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850030021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850030022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851550012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850270012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850290011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850340012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850470012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850600012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850590011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850590012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850590021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850590023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850590022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850510021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850510022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850510011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850510012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E85047DB1T2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850470013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850340011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850470011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850470031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850470032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850470021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850470022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850460011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850460012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850420011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850420012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850350011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E850350012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851520011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851280011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851550011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852170011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852160012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852160011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852160013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852150011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852150012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852150021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852150022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852120012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852120011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852120013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851970011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851970012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E85194FB2T2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E85194FB2CHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E85194FB2CCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E85194FB1T2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E85194FB1CHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E85194FB1CCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E85194EB1G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E85194EB1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851940011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851940012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851940041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851940042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851940031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852170012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852220012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851940021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852230012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851560012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E853070012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E853000011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E853000012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852940011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852940012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852880011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852880012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E85285AB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E85285AB1DT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852430011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852430012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852340011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852340012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852340021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852340022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852260031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852260032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852260011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852260012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852260021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852260022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852240011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852240012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852230011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851940032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E852220011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851940022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851820021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851820011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851820012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851780011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851780012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851780021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851780022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851720011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851720012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851660021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851660022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851660012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851660013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E853070011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851660041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851660042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851660031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851660032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851640011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851640012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851630011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851630012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851600011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851600012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E85191MB1CCS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851560011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851820022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851660011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851900012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E85191MB1CCS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851900011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS85E851910122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS14EGULE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS14EGULE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS14EFZMH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS14EFZMH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS14EDYLP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS14EDYLP2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS14ECKXG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS14ECKXG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS14ERZXJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS14ERZXJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGRPK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGWUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGWUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGRPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ENGCF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDSUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDSUY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGYLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EAVRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EAVRW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGYLN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDNWU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGVRW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGVRW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEVXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEVXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDNWU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDKWK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDKWK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGWRU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EQVLD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGWRU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EQWMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGSTE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EECHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EECHF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ENSTJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EBHTG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGPGW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGPGW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEJXK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEJXK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGSLW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGSLW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFDPR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFDPR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGSTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFGMY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFGMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EECXQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EECXQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGUJX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGUJX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDRBU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDRBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEVPH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEVPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ENSVX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EPLWY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EBHTG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EQPRG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGTPH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGTPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EPHQK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFGTT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFGTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFXAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFXAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGRYD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGRYD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EPWJW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EQYWW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGPKG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EQBVP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EPCAJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EPSDR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGSUB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGSUB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEJXM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEJXM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ERHLX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ERXCN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGXXE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EQCHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EQKHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEXNK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEXNK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGPKG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ERAWS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ERTSY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGVNR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGVNR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFGWG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFGWG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ENAYH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ENNVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EELAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EELAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFAXF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFAXF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGTBU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGTBU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGRTT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGRTT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EPKLD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EPTJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFBLN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFBLN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGXXE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ENAFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ELXDR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEURT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEXXT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFMKY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFMKY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEVAU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEVAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDQHB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDQHB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDVMW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDVMW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEURT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EAPFB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFUUG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EAPFB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFXDV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFXDV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEQDN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEQDN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EPYJX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EPCVR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EBKVK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EBKVK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EPDJD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEXXT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGQAW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGQAW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEAUH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ELXDR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFANN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFANN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ECVGR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ECVGR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGRWN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGRWN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGPHJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGPHJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEARX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEARX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ENRPH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ENELJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFKHK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFKHK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFJWX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFJWX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGUNM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGUNM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGSHF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEAUH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EPUMT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGSHF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFUUG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGQBH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ENFNJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EPKFY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGRAQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGRAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGQFW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGQFW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ECWFC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ECWFC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EBVQX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EBVQX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEATW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGPWD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EEATW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EQPYG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EQEQL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGPGU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGPGU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDTVJ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDTVJ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDTQW2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFYPK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDTQW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGPWD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGQBH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ENGGV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGVHD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGTEG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31ENKCW1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGTEG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFDUE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFDUE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGVLB2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDVAR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDVAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDXJG2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EDXJG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGVLB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFYPK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGSXV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGSXV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFETX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EFETX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EELVF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EELVF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EGVHD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EHAJS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS31EHAJS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRA16EWIIZ13011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRA16EWIIZ13012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRA16EWIIZ13021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRA16EWIIZ13022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRA16EWIIZ13031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRA16EWIIZ13032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRA16EWIIZ13041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRA16EWIIZ13042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4026;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4018;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4090;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4340;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4325;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4326;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4029;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4027;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4028;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4538;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE1013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4123;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4327;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4099;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4323;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4078;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4080;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4387;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4045;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4318;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4385;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE1265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE1264;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4489;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4017;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE448300;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE437700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE409800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4401;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4490;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4483;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4234;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4039;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4025;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE1012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4098;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4097;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4386;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4096;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4389;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4019;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE440100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE449000;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4317;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4388;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4407;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4359;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4404;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4402;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4403;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4335;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE1248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4594;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4089;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4466;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4038;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE1014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4094;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4391;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4334;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIONE4087;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSLFESAPMOUGINS163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EPTARCHEABRIANDD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTMARCELDEGAULLED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EPHILBERTRISLEINTERD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNEUILGAREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNEUILGARED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNONPHAUGUSTEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNONPHAUGUSTED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGIVERNYTOURISTIQUE2G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGIVERNYTOURISTIQUE2D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGIVERNYTOURISTIQUE1G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGIVERNYTOURISTIQUE1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVALREUILSAULESG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVALREUILSAULESD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EPITRESFRENIFRENEAUXG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EPITRESFRENIFRENEAUXD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ELIEUREYECOLEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ELIEUREYECOLED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EFLEURYANDREPUBLIQUEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EFLEURYANDREPUBLIQUED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ERUGLESLIBERTEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ERUGLESLIBERTED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTGEORGESVIEVREMAIRIEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTGEORGESVIEVREMAIRIED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBRETUEILLAFITTEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBRETUEILLAFITTED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNONBARETTEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNONBARETTED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EDOUAINSMAREAJOUYG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EDOUAINSMAREAJOUYD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EPTAUDEMERGAREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EPTAUDEMERGARED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EPHILBERTRISLEINTERG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECARSIXMALBROUCKD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PSTOUENTILLEULMAIRIEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTMARCELDEGAULLEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PSTOUENTILLEULMAIRIED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESERQUIGNYCENTREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESERQUIGNYCENTRED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVAUDREUILPAPAVOINEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVAUDREUILPAPAVOINED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGISORSINTERMARCHEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGISORSINTERMARCHED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBERNAYTRIBUNALG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBERNAYTRIBUNALD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTANDREEUREECOLEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTANDREEUREECOLED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTAUBINGAILLONCOVOI1G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTAUBINGAILLONCOVOI1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGAILLONCOVOITURAGE2G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGAILLONCOVOITURAGE2D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PIVRYBATAILLEBDGAREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PIVRYBATAILLEBDGARED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXGAMBETTAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXGAMBETTAD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXSTLOUISG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXSTLOUISD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EECOSSALLESPORTSG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EECOSSALLESPORTSD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNONREPUBLIQUEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNONREPUBLIQUED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EDOUAINSCOVOITURAGEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EDOUAINSCOVOITURAGED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGASNYSALLEDESFETESG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGASNYSALLEDESFETESD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EPTARCHEABRIANDG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EFLEURYFORETCENTRED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVALRUEILSTADEOWENSG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBRIONNEGAREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVASCOEUILGAREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVASCOEUILGARED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EPTAUDEMERANNEXEHOPG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EPTAUDEMERANNEXEHOPD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBERNAYMARKETG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBERNAYMARKETD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EHEUDEBOUVILLECOPARC1G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EHEUDEBOUVILLECOPARC1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EPTAUDEMERMEDIATHEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EPTAUDEMERMEDIATHED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ETHIBERVILLEMARKETG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ETHIBERVILLEMARKETD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ETHIBERVILLEECOLESG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ETHIBERVILLEECOLESD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBRIONNEGARED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVALRUEILSTADEOWENSD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EDAMVILLEMARKETG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EDAMVILLEMARKETD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBRIONNESFETESG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBRIONNESFETESD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGAILLONMAISONMEDICG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGAILLONMAISONMEDICD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECORMEILLESDEGAULLEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECORMEILLESDEGAULLED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECONDEITONMAIRIEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECONDEITONMAIRIED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EPTAUDEMERTHEATREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EPTAUDEMERTHEATRED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBRETEUILHOUDOUARDD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBERNAYDUBUSD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNONVELODROMED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNONVELODROMEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EFLEURYFORETCENTREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ELYONSFOURACHAUXD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EHAYEMALHERBEEGLISEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EHAYEMALHERBEEGLISED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EHEUDEBOUVILLECOPARC2G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EHEUDEBOUVILLECOPARC2D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ENEUVELYRECENTREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ENEUVELYRECENTRED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBEUZEVILLECOQG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBEUZEVILLECOQD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECONTEVILLEPRESBYTERED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBERNAYLAPOSTEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBERNAYLAPOSTED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EROMILLYINTERMARCHEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EROMILLYINTERMARCHED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PIGOVILLEPARISG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PIGOVILLEPARISD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEZYEUREMAIRIEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEZYEUREMAIRIED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEPAIGNESMAIRIEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEPAIGNESMAIRIED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ELOUVIERSREPUBLIQUEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ELOUVIERSREPUBLIQUED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ELOUVIERSCHAMPVILLEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ELOUVIERSCHAMPVILLED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ELOUVIERSOFFTOURISMEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ELOUVIERSOFFTOURISMED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EDAMVILLESERVPUBG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EDAMVILLESERVPUBD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ELYONSFOURACHAUXG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECARSIXMALBROUCKG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBRETEUILHOUDOUARDG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBERNAYDUBUSG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EETREPAGNYCOMCOMG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EANDELYSNPOUSSING;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EANDELYSNPOUSSIND;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ETILLIERESAVREMAIRIEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ETILLIERESAVREMAIRIED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNEUILAVRETOURISMEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNEUILAVRETOURISMED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNEUILAVREFOCH2G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNEUILAVREFOCH2D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNEUILAVREFOCH1G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVERNEUILAVREFOCH1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBOURTHSALLEFETESG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBOURTHSALLEFETESD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGISORSMAIRIEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGISORSMAIRIED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EETREPAGNYCOMCOMD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EANDELYSPTANDELYSG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ETOURNYCENTREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ETOURNYCENTRED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVALREUILGAREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVALREUILGARED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECONCHESLECYGNEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECONCHESLECYGNED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECONCHESDEGAULLEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECONCHESDEGAULLED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECONCHESPDOUMERG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECONCHESPDOUMERD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PLERYBOURGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PLERYBOURGD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBONNEVILLELORRAINEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBONNEVILLELORRAINED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EANDELYSPTANDELYSD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVREUXCOMCOMD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTPIERREFLEURSINTERD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTECOLOMBECOMCENTREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PANDELYSGENGAULLEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PANDELYSGENGAULLED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBEAUMONTROGECARNOTD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PEVREUXCOLLEGEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PEVREUXCOLLEGED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PNONANCOURTFRANPRIXG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PNONANCOURTFRANPRIXD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECONCHESGARE2G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECONCHESGARE1G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECONCHESGARE1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGAILLONCOVOITURAGE1G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGAILLONCOVOITURAGE1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ENEUBOURGTOURISMEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ENEUBOURGTOURISMED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTECOLOMBECOMCENTRED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVREUXCOMCOMG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBROGLIEPOSTEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBROGLIEPOSTED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EMONTREUILMAISONMEDIG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EMONTREUILMAISONMEDID;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PBUEILGAREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PBUEILGARED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXBPOUGETG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXBPOUGETD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGAILLONAQUAVALG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGAILLONAQUAVALD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGAILLONPDOUMERG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGAILLONPDOUMERD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBARREOUCHEMOMORTG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBARREOUCHEMOMORTD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTPIERREFLEURSINTERG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECONCHESGARE2D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ENONANCOURTALSACELORG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EMADELEINONANCECOLESD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVAUDREUILPHARMAPARCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXROCHETTEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXROCHETTED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EAUBEVOYEGAREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EAUBEVOYEGARED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGRAVIGNYMAIRIEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EGRAVIGNYMAIRIED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXREPUBLIQUEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXREPUBLIQUED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXPIPOTSG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXPIPOTSD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXVIOLETTESG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXVIOLETTESD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EMADELEINONANCECOLESG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PAJOUBARREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECHESNEMARESD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PAJOUBARRED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBEAUMESNILMAIRIEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBEAUMESNILMAIRIED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PSTGERMAINCAMPEGLISEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PSTGERMAINCAMPEGLISED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PPACYSUREUREGAREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PPACYSUREUREGARED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EAUTHEVERNESDERLYG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EAUTHEVERNESDERLYD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PTHUITANGERCOVOITUREG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PTHUITANGERCOVOITURED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBEAUMONTROGECARNOTG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ENONANCOURTALSACELORD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVAUDREUILPHARMAPARCG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ECHESNEMARESG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PBOISEMONTROUENG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ETHUITSIGNOLSUPERETTEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTAUBINGAILLONCOVOI2D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ETHUITSIGNOLSUPERETTED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBOURNEVILLETOURISMEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBOURGACHARDMAIRIEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBOURGACHARDMAIRIED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PHONDOUVILLEMOULING;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PHONDOUVILLEMOULIND;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PSTPIERREVAUVRAYBOURGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PSTPIERREVAUVRAYBOURGD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVALREUIL4SAISONSG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EVALREUIL4SAISONSD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PBECHELLOUINANSELMEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PBECHELLOUINANSELMED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBOURNEVILLETOURISMED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27PBOISEMONTROUEND;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBOURTHEROULDEMAIRIEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBOSCROGERROUMOISCENG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXJBOUING;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EEVREUXJBOUIND;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTSEBASTIENMAIRIEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBOURTHEROULDEMAIRIED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTSEBASTIENMAIRIED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EQUILLEBEUFCOMCOMD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EQUILLEBEUFCOMCOMG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EROUTOTMAIRIED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EROUTOTMAIRIEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27EBOSCROGERROUMOISCEND;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS27ESTAUBINGAILLONCOVOI2G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3622;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3621;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN3011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4621;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4622;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN4321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN342;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN332;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN331;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN341;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN242;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN1912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN1911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN1712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN1711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN1612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN1611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN1412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN1411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN1312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN1311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN1012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN1011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN822;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN821;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN2712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11422;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN10411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN9712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN11912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN5811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN6312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN8611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRM54ECUGN7811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ECMXH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59416001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59309002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59309001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59338001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59535001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59416002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59431001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59497001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59499001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59282001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59307001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59089001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59135001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59130001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59119001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59110001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59087001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59087002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59084001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59578001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14E59043002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14E59043001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59018001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59546001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59082001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59580001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH08E59295004;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59581001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14E59664001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14E59590001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14E59453001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14E59423001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH08P59295011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH08E59295010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH08E59295009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH08E592950081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH08E59295007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH08P59295006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH08P59295005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH08E59295002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH08E59295001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14E59189001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14E59086001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14E59054001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59663001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59663002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59647001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRH14P59647002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1D200701;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1D200601;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1D200602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1D200603;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1D200803;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1D200702;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1D200801;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1D200802;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSGAE1D200703;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231650101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230450102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231760101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231760102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230760101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230760102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230750101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230750102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230210101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231650102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230210102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230250101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230250102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P232470102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230080101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230080102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230450101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P232470101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230960302;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230700102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230300102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230960201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230960202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230960301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230960401;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231930202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230960402;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P232450101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P232450102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231930101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231930102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231930201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230700101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230300101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231140101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231760201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230950101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230950102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231550101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231550102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P232570102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230130101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230130102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230310101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230310102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231000101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231000102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230300301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230960501;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230960502;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231140102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231760202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P232570101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230930102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230760202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230200101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230930101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230300201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230300202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230690101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230690102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230760201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230200102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230790101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231920101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P231920102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230890101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230890102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS23P230790102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNE9C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEE0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNE5B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNE78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNE90;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEE7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNE49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNE9D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEE8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEE9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEA0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNE76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEEC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEE5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEE6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEF0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEEF;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEEA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUNEE4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP21102012127452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP21102012127461;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051392007740;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051392009336;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944502;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944317;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944306;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944505;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944687;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391943149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944343;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944508;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944507;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391944161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20051391943124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP2012399;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP1928044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP1924110;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP2020551;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP19360031943430;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP19360031943253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP19360031943271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP19360031943402;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP19360031944482;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP19360031943447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP19360031944305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP1936003194413;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20228412021084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP20228412020143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2EFHJQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESTTM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLE2ESTTM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP22110732127431;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP22110732127427;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP22110732127130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP22110732127153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP22110732126443;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP22110732127419;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP22110732225694;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP22110732127447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP22110732126449;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP22110732127100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP22110732227211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVBP22110732127267;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIENE35353A31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIENE35353A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIENE35353A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIENE35353A41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRIENE35353A51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEFLOREAL11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEROUMANILLE11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAU1E0022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAU1E0020;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAU1E001701;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAU1E0023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEOASISBORNE11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZIME22AC32173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC35840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC45135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC45134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC45107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZPEE22AC45106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC49430;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRZMAE22AC60973;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10026282;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10080607;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10077637;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10073809;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10067756;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10022586;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10017771;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10000460;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10094215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10045832;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10067608;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10062327;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10026838;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10037483;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10008907;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10062651;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10062691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10031802;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10084195;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10033467;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10089507;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10083410;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10092837;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10031788;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10087320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10041681;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10098565;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10036289;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10063376;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10063985;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10046901;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10021422;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10026273;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10083012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10016292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10072670;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10001446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10077154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10027011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10052886;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10011169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10066971;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10014387;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10022941;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10006653;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10056169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10081403;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10033822;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10084296;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10021897;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10077840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10080379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10074850;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10055327;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10017910;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10005079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMERAMIERES11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001784;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001751;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001748;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001747;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001746;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001745;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001744;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001743;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001742;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001741;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001786;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001785;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001771;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001782;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001781;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001780;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001779;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001778;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001777;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001753;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001775;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001774;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001773;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001772;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001752;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001776;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001754;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001766;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001718;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001716;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001713;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001770;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001769;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001768;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001767;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001717;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001765;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001750;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001764;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001756;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001757;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001758;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001749;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001755;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001759;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001761;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001762;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001763;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLDLE00001760;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY2INGET7AC41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPMAUFFREYACADEMY1CAHORS25DC11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPMAUFFREYACADEMY1CAHORS25DC12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPMAUFFREYACADEMY1CAHORS25DC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY1INGET22AC11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY1INGET22AC12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY1INGET7AC21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY1INGET7AC22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY1INGET7AC31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY1INGET7AC32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY2INGET7AC51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY2INGET7AC42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY2INGET7AC52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY2INGET7AC61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY2INGET7AC62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY2INGET7AC72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY2INGET7AC81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY2INGET7AC82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY2INGET7AC91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY2INGET7AC92;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEMAUFFREYACADEMY2INGET7AC71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEF3CBAUMECAHORS25DC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEF3CBAUMECAHORS25DC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEF3CBAUMELAFON22AC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEF3CBAUMELAFON22AC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRECPEF3CBAUMELAFON22AC3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPHIESMP6201005535;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPHIESMP6101002018;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10093725;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10008605;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10062883;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10051877;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10099083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10091710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10043836;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10093672;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10005259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10055581;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10002785;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10022618;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS62E10048506;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS62E10019890;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS62E10009735;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10008344;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10084920;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10000730;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10052768;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10033245;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10092892;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10064682;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10085447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10084198;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10088046;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10065917;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10012220;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10020602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10003816;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10058267;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10028783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10045663;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10039441;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10038190;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10058363;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10043767;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10057997;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10094490;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10087808;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10070842;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10047826;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10053447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10009607;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10090010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10064662;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10017845;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10058428;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10056568;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10091696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10072897;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10095826;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10072145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10079601;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10079395;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10077325;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10076984;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10076688;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10068375;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10069696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10068896;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10066063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10064245;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10082153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10080710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10095460;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10087437;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10075551;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10088336;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10099360;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10062826;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10076241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10062738;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10074232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10074197;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10074163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10073129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRUBIE10090451;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1ESNPQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FROTHESENT113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBYBZ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EKHV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EBMYP;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FROTHEOTHR228;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBECE69027AB1T2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBECE69027AB1CHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBECE69027AB1CCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBECE40217AB2G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBECE40217AB2D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBECE40217AB1T2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBECE40217AB1CCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFFAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EFFAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE26212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE26111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE26112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE26211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE26311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE26711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE26712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE26812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE26811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE26911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE25512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE26912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE27912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE28011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE2612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE2611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE2112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE2111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE2311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE2312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE2411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE2412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE2711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE2712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE2911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE2912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE21112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE24411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE22912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE23111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE214712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE215912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE218311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE217411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE217611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE217811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE217911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE218011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE218111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE218211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE218312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE217311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE218411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE218412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE218512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE218511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE218912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE218911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE217412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE217211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE217112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE217111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE216712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE210011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE29912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE213211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE211912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS22ESDE212311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD296511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD297912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD298912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD299111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD29912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD291212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD295112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD294011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD292912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD293811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916422;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2917212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2921011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2921012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2921121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2921111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2921112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2921122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2921211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2921212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2921312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2920011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2918911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2921311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2916012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2919911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2911611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2912512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914911;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2915011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913611;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913612;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913712;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2910511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2913912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914212;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS29ESD2914311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FROTHEOTHR2512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FROTHEOTHR2511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FROTHEOTHR2522;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FROTHEOTHR2521;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMECASSAGNE11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGFRA71D022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGFRA71D011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGFRA71D012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGFRA71D013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGFRA71D021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGFRA71D023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGFRA71AD031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGFRA71AD032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGFRA71AD033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGFRA71AD034;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E92183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE10E92184;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE38315A23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE14201A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE14201A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE14201A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE14201A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE33165A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE33165A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE33165A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE07129A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE33165A15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE33165A16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE34111A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE34111A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE34111A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE42312A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE42312A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE42312A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE33165A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE38315A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE38315A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE38315A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE85003A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE85003A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE85003A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE85003A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE85003A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE85003A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE85003A23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE85003A24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE44015A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE44015A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE44015A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE44015A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE44015A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE44015A23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE38315A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE42312A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE42299A41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE07129A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE79264A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE09306A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE09306A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE09306A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE09306A15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE09306A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE07064A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE67320A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE67320A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE67320A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE86293A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE86293A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE86293A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE86293A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE69260A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE69260A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE09306A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE67320A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE79264A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE42299A31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE07064A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE07064A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE42299A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE42299A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE42299A21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE42299A22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE42299A32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE79264A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE42299A42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE71394A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE71394A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE71394A13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE71394A14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE79264A11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSUAE07064A12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRMAPE000000006659;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUME3RIVIERES11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530960011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530970012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530970021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530970022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530960021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530960023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530960022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530840013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530960012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530840011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531000012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530840012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530770011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530770012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530620021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530970011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531030012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531000011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530620011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531030011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531070012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531070011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531100012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531100011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531210012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531210011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531220012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531220011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531230012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531230011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531270012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531270011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530620022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530540011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530620012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530170012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530010012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530010011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530030012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530030011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530070012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530070011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530140022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530140023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530140021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530140012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530140011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530150011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530160012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530160011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530170011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531300053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530180012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530180011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530250012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530250011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530340012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530340011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530370012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530370011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53054AB2DT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53054AB2GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53054AB3DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53054AB3DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53054AB3GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530540012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531300052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E530150012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531300051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531810012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532100012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531880011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531880012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531850011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531850012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531810011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531610011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531470011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531610012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531540011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531540012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531520011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531520012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531470021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532100011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532110012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532110011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532430012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532430011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532460012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532460011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532550012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532550011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532570012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532570011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532670011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532710012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532710011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532730012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531300022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532730011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531470022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E532670012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531470012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53130HB1DT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531300042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531470031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531300021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531300043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531300012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531300011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531300032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531300031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53130FB1DT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53130FB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53130GB1DT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53130GB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53130GB2DT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53130GB2GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531300041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53130HB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531370012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531460011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53130HB2DT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531470033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531400011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531400012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531370011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531460012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531360011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53130HB3DT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53130HB2GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531470032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E53130HB3GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS53E531360012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRE000009336824;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990093;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491030012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491030011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491060012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491060011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490940011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49109AB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49109AB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490990052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490690011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490940012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490920011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49054BB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491100022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49054BB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49054BB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490550012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490550011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490630012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490630011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490650012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490650011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490680012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490680011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490690012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49069BB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49069BB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49069BB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490720012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490720011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490800012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490800011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490830012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490830011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490920022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490920021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490920012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49109AB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491350011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491100023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49132AB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49132AB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491350012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491370012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491370011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491400012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491400011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491450012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491450011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491490012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491490011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491510012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491510011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491530012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491530011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49155AB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49155AB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49155AB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491600012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490020012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491600011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491620012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491620011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491630012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491630011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490540012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49132AB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491300011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491100021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491300012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491100012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491100011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491170012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491170011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491230012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491230011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491250032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491250033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491250031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491250012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491250011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491250022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491250021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491260012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491260011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491270012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491270011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49127BB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49127BB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49127BB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491290022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491290023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491290021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491290012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491290011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490540011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49050BB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491670011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070202;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070201;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070141;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070062;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070302;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070222;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49050BB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490020011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490040012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490040011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490060012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490060011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070272;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070282;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070281;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070112;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070111;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070122;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070291;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070242;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49022AB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49022AB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49022AB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490230022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490230021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490230012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490230011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49023CB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49023CB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49023CB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490260012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490260011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490270012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490270011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490350012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490350011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490350022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490350021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490410012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490410011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490480012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490480011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490500012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490500011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49050BB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490210011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490210012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490210021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490150021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070102;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070092;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490070091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490120012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490120011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490150042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490150043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490150041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490150022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490150032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490210022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490150031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490150012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490150011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490180012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490180011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490180022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490180021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490200022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490200021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490200012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E490200011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491670012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49178AB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491720012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493130012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493230012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493230011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493270012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493270011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493280042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493280041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493280032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493280031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493280052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493280053;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493280051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493280012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493280011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493280022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493280021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493290012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493290011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493310012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493310011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493310032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493310033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493310031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493310022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493310021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493320012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493130011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493080021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493330012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493080023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492920011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492940012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492940011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492950012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492950011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492960012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492960011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492980012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492980011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492990012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492990011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493010012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493010011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493010022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493010021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49301CB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49301CB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49301CB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493060012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493060011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493070012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493070011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493080012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493080011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493080022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493320011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493330011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492900011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493610012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49362AB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49362AB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49362AB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493630012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493630011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49364AB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49364AB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49364AB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493670012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493670011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493680012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493680011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493730012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493730011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493750012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493750011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493760012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493760011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493770012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493770011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493780012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493780011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493810012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493810011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491720011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493610011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493600011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493370012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493600012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493370011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493380012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493380011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493390012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493390011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493430012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493430011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493450012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493450011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493470012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493470011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493490012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493490011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493500012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493500011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493530032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493530031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493530012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493530022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493530021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49353DB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49353DB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49353DB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493550012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493550011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492920012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E493530011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492900012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492010011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492060011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492120012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492120011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492140012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492140011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492140022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492140021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492150012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492150011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492200012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492200011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49220BB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49220BB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49220BB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492210012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492210011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492220012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492220011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492230022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492230021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492230024;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492230023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492280012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492280011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49228BB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492060012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492010012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49228BB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492000011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491760012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492890011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491770012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491770011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49178AB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49178AB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491790012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491790011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491800022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491800021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491800012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491800011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491830012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491830011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491910012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491910011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491920012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491920011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491930012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491930011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491940012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491940011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491960012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491960011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492000012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49228BB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E491760011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492290012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492710011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49260BB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49260BB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49260BB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492610012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492610011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492640012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492640011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492670012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492670011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492690012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492710012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492760012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492600012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492760011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492780012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492780011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492830012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492830011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492840012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492840013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492840011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492870012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492890012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492870011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492600011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492690011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49259AB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492460031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492380012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492380011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49259AB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492410012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492410011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492420012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492420011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492440012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492440011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492460022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492460021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492460032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492290011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492460012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49248BB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492460011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492490011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49248BB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49248BB1DCHADEMO;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492490012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492480011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492480012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492470011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E492470012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS49E49259AB1DCCS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44071A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44073A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44071B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44071B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44072A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44072A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44072B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44072B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44073C1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44075A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44073A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44073B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44073B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44075A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44077A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44077A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44079A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44079A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44081B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44081A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44071A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44057A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44070A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44070A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44057A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44082A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44061A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44061A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44062A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44062A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44063A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44063A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44064A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44064A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44066A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44066A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44067A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44067A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44067B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44067B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44068A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44068C1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44069C1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44069B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44069B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44069A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44069A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44081A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44099A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44082A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44110A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44103A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44106A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44106A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44107A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44107A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44108A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44108A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44110B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44110A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44111A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44103B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44111A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44113B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44113A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44113A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44115A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44115A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44116A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44116A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44056A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44103A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44103B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44083A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44089A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44083A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44084A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44084A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44087C1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44087B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44087B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44088A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44088A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44089A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44091A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44102A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44091A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44096A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44096A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44097A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44097A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44098A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44098A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44098B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44098B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44099A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44102A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44056A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44031A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44055DB1G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44030A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44015A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44015A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44015B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44015B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44015C1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44021A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44021A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44022A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44022A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44023A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44023A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44025A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44025A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44026AB1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44026AB1G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44027A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44027A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44028A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44028A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44029A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44029A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44029B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44029B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44014A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44014A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44013A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44003A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44001A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44001A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44002B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44002A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44002A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44003B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44003A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44005A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44013A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44005A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44005B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44005B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44006A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44006A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44007A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44007A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44010A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44010A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44012A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44012A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44030A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44031A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44055DB1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44117A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44045BB1P2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44046A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44046A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44048A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44048A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44049AB1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44049AB1G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44050A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44050A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44051A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44051A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44052B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44052B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44052A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44052A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44053A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44053A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44054A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44054A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44055A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44055A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44055B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44055B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44055C2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44055C1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44045BB1P1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44045A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44045A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44036C2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44032A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44032A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44033A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44033A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44036D1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44036B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44036B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44036A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44036A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44036C1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44043B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44037A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44037A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44038A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44038A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44041A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44041A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44041B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44041B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44043A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44043A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44043B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44117A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44131B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44119A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44169AB1G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44186B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44186A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44186A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44187A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44187A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44188A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44188A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44188B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44188B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44189A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44189A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44192A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44192A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44193A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44193A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44194A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44194A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44195B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44195A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44195A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44196A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44196A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44197A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44186B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44185A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44185A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44178A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44169BB1G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44172A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44172A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44173A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44173A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44174A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44174A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44175A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44175A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44176A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44176A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44178A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44184A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44179A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44179A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44180A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44180A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44182A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44182A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44183A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44183A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44184B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44184B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44119A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44197A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44199A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44199A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44216A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44212B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44212A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44212A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44213B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44213B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44213BB1DT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44213BB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44214A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44214A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44216A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44211BB1P1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44217C1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44217A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44217A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44217B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44217B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44223A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44223A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44224A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44224A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44211BB1P2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44211A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44201B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44206A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44201B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44201A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44201A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44202A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44202A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44203A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44203A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44204AB1DT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44204AB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44205A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44205A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44206A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44211A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44209C1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44209A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44209A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44209B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44209B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44210B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44210B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44210A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44210A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44169BB1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44184A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44169AB1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44132DB2D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44131A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44168A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44132C1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44132A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44132A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44132B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44132B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44132DB1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44132DB1G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44132DB2G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44131C1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44133B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44133A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44133A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44135A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44135A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44135B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44135B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44136A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44136A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44131A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44137A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44128A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44120A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44120A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44122A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44122A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44125A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44125A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44126A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44126A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44127A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44127A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44128A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44129C1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44129A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44129A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44130C1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44130A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44130A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44130B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44130B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44137A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44131B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44140A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44160A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44154DB1D;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44154DB1G;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44155A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44156A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44156A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44157A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44157A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44158B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44158B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44158A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44158A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44160A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44154B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44161A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44161A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44163B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44163B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44163A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44163A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44164A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44164A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44165A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44140A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44168A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44154B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44165A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44154A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44150AB1DT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44154A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44142A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44142A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44144A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44144A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44145A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44146A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44146A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44149A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44149A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44155A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44150AB1GT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44153A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44151A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44154C1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44153A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44152A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44152A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44151B1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44151B2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRS44E44151A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRFR1EUVMW;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRLUMEBASTIDEVENCE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073ERR6V51366;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073EYLF65474;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073ERJ5G5279;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073ESWBG5941;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073EREUO5946;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073EQ1GI51176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073EJJYD51230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073EO0AV51091;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073EK0BJ522;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073E0HKH51125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073ECC1C5530;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073E8OV45243;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073ETCIX5105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073EP7QU5233;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073EU6RQ5270;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073EBEQA5957;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073EMZLV5283;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073EUHNJ5886;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073EP9LD51287;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FR073EXINB5826;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAUTEAE0022H1GN9C0018711;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E162347;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E66607;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E66581;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E125052;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E124993;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E126061;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E125657;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E125005;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E121843;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E162374;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E162380;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E161172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E162377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E162379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E162346;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E112229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E112232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E112228;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E112233;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E112267;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E112268;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E112946;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E161181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E87552;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E164130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E35142;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E139894;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E139895;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E187582;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E187581;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E69528;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E92841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E92842;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E137888;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E164169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E161171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E164168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E164128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E164136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E164153;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E164152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E164129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E164135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E146286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E161180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E87551;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E112947;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E139887;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E128705;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E117582;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E117622;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E128769;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E128699;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E128689;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E128673;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E128684;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E128701;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E128780;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E128666;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3EFV043;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E93913;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E112360;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E112231;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E112230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E139982;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E139981;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144071;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3EFV044;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3EFV041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E139929;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E121478;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E139930;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E107010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E112699;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E121477;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E112698;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E121505;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E121506;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E127490;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E127489;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E107011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3EFV042;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E140652;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E141868;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E141873;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E137394;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E137393;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E88288;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E196930;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E196929;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA3E121844;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E36617;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E69525;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEGAREL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTQUENTIN191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOMHOA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOMHOC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOMHOD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOMHOB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOSYCAMPG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECAMPINGLESMYRTILLESA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEREVEUGEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEBORNEELEPHANTBRIONNE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMESAINTFARGEAU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEHOTELKARAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEHOTELKARAB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEHOTELKARAC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEHOTELKARAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEIMPRIMERIEB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEIMPRIMERIEC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEIMPRIMERIEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEREVEUGEA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOSYCAMPD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEREVEUGEB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOFAESTA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOFAESTB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECHAMPSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECHAMPSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOSYCAMPA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOSYCAMPE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOSYCAMPC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOSYCAMPB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEMCCB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECAMPINGLESMYRTILLESB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E197181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E161878;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E142354;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E142353;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E141898;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E141906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E128208;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E128209;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E134103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E134105;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E162433;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E161876;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E201066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E161880;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E199998;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E161877;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1EFV039;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1EFV040;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E36626;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E69527;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E92834;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E92800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E92808;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA1E92833;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEPEUGEOTGUERINETAUTOS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRW11E125068;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEDUCREUXSENSB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEDUCREUXSENSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMELEVPARKC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMELEVPARKD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMELEVPARKB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMELEVPARKA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEDUCREUXBARB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEDUCREUXBARA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRW10E35135;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRW11E125069;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRW11E140626;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRW11E125058;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRW11E125064;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRW11E117680;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRW11E117661;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRW11E117662;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRW11E117679;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRW11E135278;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRW11E135279;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRW11E140625;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144087;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205378;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205591;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E178161;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E178159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205336;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E182286;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E182927;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E182924;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E182930;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205588;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205589;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E178160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205590;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205465;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205466;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205463;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E200095;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E200088;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E200084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E143933;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E178162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E202815;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E143481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E199865;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E202816;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E183974;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E183975;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E183978;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E183973;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E199864;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E199866;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E196415;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E196417;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E180058;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E196416;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E187010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E187011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203317;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203318;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E143932;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E143482;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E202465;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E209063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E202391;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E202390;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171737;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171740;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171741;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171739;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E209069;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E209136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E209036;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203745;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E208648;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203744;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205587;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205583;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E206469;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E202381;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E202384;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E202382;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E202379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203743;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E208646;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E207169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E127506;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E207168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E207172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203181;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203180;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203179;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205510;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205527;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205512;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E127515;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E208647;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E201412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E201414;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E201413;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E201415;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203663;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203659;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203658;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203662;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E208714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E202466;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E206309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144068;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E163868;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E70129;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E178995;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E70127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E70134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E70126;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E70130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E165598;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E165601;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E165599;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E177002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E70124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5EFV047;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5EFV048;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E205683;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E205684;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E205682;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E205699;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E205698;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E209913;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E209902;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E70131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E70125;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E209899;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144083;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144072;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144086;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144067;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144069;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144065;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144078;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E70128;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144075;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144070;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144077;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144066;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144073;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E144080;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E121445;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E118395;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA4E70133;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E209903;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E179739;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E206305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E177239;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E188031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E188058;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E188319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E188320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E188321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E176172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E176171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E177240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E177241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E177242;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E179902;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E175960;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E175959;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E176035;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E176370;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E176369;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E176368;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E176371;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E206306;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E206308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E202736;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E179913;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E205755;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E188238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E205752;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E205751;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E179845;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E179690;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E179748;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E187016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E187013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E188325;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E188426;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E188237;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E188322;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E196468;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E196469;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E196470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E179905;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E184400;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E184462;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E188326;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E164440;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA5E164439;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEANQI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEARIQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBANI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDIDI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEKEMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDIDI2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMALI2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZELIOU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMALI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEANUP1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEANQI2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBANI2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEARZO1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEARZO3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEARZO2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAMON1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEABOU2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEABOU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEARAS3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEARAS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEARAS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBANI3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEARIQ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEALEE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEHIBA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEKATH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZELIEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEKATH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEABLE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEANAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEABLE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZENILS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEFERN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZENILS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEFERN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEARIQ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMASI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMASI2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEGAYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEENMA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEENMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBERG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAZIL3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAZIL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAZIL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEABID3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEALEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEKEAN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEHODA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMIRO1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEKEVN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEHODA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEEDIE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEEDIE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEKYSA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMOIR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMOIR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEARIV3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEALEE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAZUR3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEABID2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEABID1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAMIE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAMIE3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAMIE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAZIE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBOBB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAZIE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAZUR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAZUR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZENANA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZELUKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZENANA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEARIV2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEARIV1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAWAD5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDERI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEKEAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEKDEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDAVD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEEXER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDJEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDREY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEEDIL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEEHUD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZETYAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZETYME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEKIOR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZETMIA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEZENO1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZETABB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZETEDI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZETHEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEISAQ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEGEMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEEIMI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEEIMY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEOBED1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEOBRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEYUZE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBRIK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEABEL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEINDA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEHAYS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEHAYS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZETORI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEHELA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEHELA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEGRAM2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEGRAM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEINDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEVYAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEKYYA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBREI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEORIA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEORIA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEIJAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEIJAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZETOME1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEASLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAMSI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEALAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEARMA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEABEM1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMIRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEADNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMALE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZELORE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZELYTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZETREG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZETREA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEREID1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEODIS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZELOID1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZELOIG1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMALA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEADEN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEYAIN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEADIN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEENOC2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEENOC1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEKERN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEANNA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEANNA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEANNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEADNA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEADNA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEYAPI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEATAF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMILY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEEVAR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDIVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDITA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZECRAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZECOTE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZENYDA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEUTKU1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEJENS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEJOCE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEEVVA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZELANZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZECYRE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZELENA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBABE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBELL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEELMI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEENAK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZENORB1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZENATE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZESERY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZESALY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEELRA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEHUGO1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEHUGO2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0985A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0977A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0989A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLE000103;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0991A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0991A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0989A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0985A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0981A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0974A3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0975A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0979A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0974A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0974A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0981A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0975A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ3254A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ3253A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ3254A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLE000063;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ3253A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0977A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0996A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0995A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAYLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEENZY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBOAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBOAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEASMI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEASMI3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEASMI2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZECAPE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZECAPE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAYLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEELIN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0986A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEELIN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0971A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0971A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0982A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0982A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEEHYC15022BZ0982A3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0996A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0979A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0986A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0976A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0976A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEERBY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEHOTELLECOLISEE21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEFASHIONCENTERBIS3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEFASHIONCENTERBIS5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEFASHIONCENTERBIS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEFASHIONCENTERBIS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEBZSERVICES2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEBZSERVICES1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOMTELIGIERBELAIR2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMECOMTELIGIERBELAIR1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEHOTELLECOLISEE22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEBUBBLETREE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMELEMARTAGON1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEBUBBLETREE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEPARKINGSULLY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEPARKINGSULLY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMELAPOSTEDONNEMARIE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMELAPOSTEDONNEMARIE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRBHMEFASHIONCENTERBIS4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLE000533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0976A3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEES30000191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0995A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLE000572;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLE000552;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLE000561;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLE000551;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLE000562;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLE000571;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEES30000192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEES30000194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEES30000193;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0917A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0992A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0992A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0994A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0917A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0990A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0990A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0978A1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0978A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRATLEHYC15022BZ0994A2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEENZY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBETH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBETH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEERAY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZENUHA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZENUHA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEHOAI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEERAY9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEERAY10;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEERAY8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEERAY6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEERAY3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEERAY5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAADI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAVIS3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEERAY4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEERAY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAADI2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEERAY7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBRAX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBRAX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAMMI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAMMI2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBOBO1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAVIS1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAVIS2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEANKE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAFIA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEGIRL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEERBY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBREX2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEIAHN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDOVI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBREX1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEIAHN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAFIA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAFIA3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEHAYK2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAKAN1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMAKO2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMAEE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMAKO1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEHAYK1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEADER1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEADER2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEADER3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAKAN3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAKAN2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBOBO2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDARL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDARL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAXYL1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEABEY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAISA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAISA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBAJA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBAJA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEANAT3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEANAT2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEANAT1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAXYL2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDUFF1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEADAI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDUFF2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBREY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEBREY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEELDI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEELDI2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEREAD2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEREAD3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEREAD1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEANKE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEABEY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDEWI2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDEWI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDIYE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEADAI2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAYAA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAYAA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEEGLA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEEGLA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEEDIA1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEEDIA2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAJAH2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAJAH1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMUAZ1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMUAZ3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEMUAZ2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEASAE1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEASAE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZECAUY2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZECAUY1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAHRI1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEAHRI2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FREVZEDIYE2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205376;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAUTEAE0022H1GN9C0016801;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE181144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE182321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE199868;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE200223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE127517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE87724;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE87722;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE87723;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE92205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE92206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE139586;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE87431;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE134299;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE134292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140784;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140800;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE184467;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE165480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE165481;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE170951;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE139516;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE95833;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104761;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104744;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104760;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104759;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104753;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104736;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104745;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104752;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104756;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104728;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104758;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104732;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104731;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104729;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104741;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104738;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104747;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104748;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104751;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104727;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104743;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE95825;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE95827;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE95841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE213771;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE170758;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE41232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140461;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140462;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE112205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE202787;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE202451;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE144781;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE184037;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSMIE625EBD7D7FBD54C1B3121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE180564;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSMIEMYCOMPANY1011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSMIEEVBP210115191;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSMIEEVBP210115652;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSMIEEVBP210115132;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSMIEEVBP2101155521021823;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSMIEEVBP2101155521111638;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSMIEEVBP210115192;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSMIEEVBP210115131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSMIEEVBP210115651;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE180412;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE148791;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE95834;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151866;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151839;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151850;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151844;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151846;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151843;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151867;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151848;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151838;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151851;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE148792;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151849;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151842;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151845;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151847;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE141194;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE179758;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE179752;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104737;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104733;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSMIEEVBP212618882;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE147486;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE209406;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE161320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE161330;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE137370;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE141163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE141162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE118059;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE146756;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE153387;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151413;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE199960;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151414;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE129669;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE203183;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE203182;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140573;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140571;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE159793;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE66915;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE159637;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE112208;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE199959;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE159636;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE170756;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE137964;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE137960;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE137963;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE137961;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE144138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE144139;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE66458;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE144136;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE144137;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE142081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE182124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE142084;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE112946;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE209826;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE209937;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE141867;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE142695;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140272;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140271;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE112162;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE159635;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE66917;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104726;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104734;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE206732;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE204031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE203959;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE202734;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104757;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104735;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104739;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104755;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104730;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104763;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE202693;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104749;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104762;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104725;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104746;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104754;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104750;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104740;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104742;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE109676;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE206733;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE202694;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATEFV009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE144147;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATEFV007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATEFV006;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATEFV008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE175245;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE175244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE188671;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE188678;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE134032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE134031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE144148;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140424;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE203967;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE203960;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE203966;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE178471;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE144149;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE144150;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE139385;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE139386;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSMIEEVBP212618881;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSMIEEVBP212516242;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171813;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7079;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4325;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4316;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4313;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4326;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4317;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4704;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7077;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7080;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7074;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4323;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7078;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7076;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4725;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4726;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4728;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4718;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4719;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4312;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4318;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4252;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4255;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4257;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4259;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4254;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4253;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4324;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4250;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4327;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4320;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4314;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4315;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4729;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4713;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME8420;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME6877;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME6882;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME6883;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME6879;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME6880;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME6885;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME6878;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME8421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME8426;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME8418;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME6886;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME8424;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME8423;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME8422;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME8425;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAUTEAE0022H1GN5C00802M1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAUTEDE0120B1GNAC00061K1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAUTEDE0120B1GNAC00061K2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAUTEDE0240B1GP2C00058M2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRAUTEDE0240B1GP2C00058M1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME6881;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME6875;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4716;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4721;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4724;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4727;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4722;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4723;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME4720;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7246;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7245;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7239;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME6884;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7247;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7243;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7249;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7240;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7242;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME7237;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRSMIEEVBP212516241;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGANN74D011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGMAN04AD014;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGANN74D012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGANN74D013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGANN74D021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGANN74D022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGANN74D023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEZECLM13AD012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEZECLM13AD013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEZECLM13AD011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGBEB01AD013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGMAN04AD011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGMAN04AD013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGBEB01AD022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGPDO13D013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGPSA83D012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGPSA83D013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGPSA83D011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGSMC13D012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGSMC13D013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGSMC13D011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGPDO13A031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGPDO13D012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGPDO13A032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGPDO13D021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGMAN04AD012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGPDO13D022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGPDO13D023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGPDO13D011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGDGS62AD023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGDGS62D012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGDGS62AD021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGDGS62D011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGDGS62D013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGDGS62AD022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGBEB01AD031;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGBEB01AD021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME3663;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME2920;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME2921;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME2922;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME2929;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME2930;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME2927;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME2924;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME3669;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME3664;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME3668;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME2926;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME3661;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME3666;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME3667;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME3662;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1171;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1166;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1163;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME2925;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME2923;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGBEB01AD033;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGNAR11AD021;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGBEB01AD032;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGBEB01AD011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGBEB01AD012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGBEB01AD023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGNAR11AD022;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGNAR11AD023;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGNAR11AD013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGNAR11AD011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEVGNAR11AD012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEZEVAL06AD013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1211;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEZEVAL06AD012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRPVDEZEVAL06AD011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME8494;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME8377;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1233;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME1224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRGYME8401;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE137942;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE137941;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE139431;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146864;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E40770;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E40841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E39361;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E40751;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E41646;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E122840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E171990;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E122841;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146877;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146876;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E166564;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146859;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146865;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146866;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E151010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146879;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146869;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146863;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146874;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146862;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E35730;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E166565;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146894;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146875;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E137927;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E137327;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E137339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E137340;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E137926;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E137347;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E137346;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E139374;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E139375;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E139422;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E143236;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E139421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146883;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E143235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E143263;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E143262;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E143221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E143220;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E143229;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E143230;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146872;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E151011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E35721;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146867;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146861;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E151009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146878;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146882;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146856;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146888;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146860;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146880;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E151008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146853;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146871;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146891;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124869;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124876;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124871;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124885;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124877;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124883;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124888;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124886;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146855;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146890;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146887;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146895;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146885;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146884;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146868;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146857;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E157830;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146881;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146892;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146889;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146852;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E151012;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E157832;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146886;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E151029;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E157833;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E157831;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146870;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146858;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146893;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146873;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E146854;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E137328;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E39334;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE139430;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E93423;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171666;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E164978;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E165002;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E165008;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E164977;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E169343;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E169344;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E169342;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E93422;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E64677;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171665;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E64678;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E142810;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E142848;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E203811;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E182295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E182296;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170206;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171663;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171664;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E65943;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E174879;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171810;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205013;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205011;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E206473;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E206472;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205701;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E205702;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E174877;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E174880;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171422;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170270;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170223;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E153553;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E153566;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171424;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E171423;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170205;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E65942;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E35715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA8E187694;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E164868;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E164864;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA8E187701;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA8E196914;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA8E187702;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA8E187700;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA8E187697;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA8E196915;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA8E187696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA8E187693;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E164488;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA8E187695;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E161175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E161170;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E161177;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E35725;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E39307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E36847;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E35720;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA9E36786;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E164865;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E169341;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170158;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170306;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E167769;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E167768;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E167770;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E167771;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170305;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170310;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E170309;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E169340;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E166468;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E166471;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E166469;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E166470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E166740;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E166739;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E142767;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E169339;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E169338;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124874;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124873;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124881;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE39334;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151921;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151922;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE112168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE213563;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE213564;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE112210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE35720;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE36847;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE35721;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE211051;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE118041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE209587;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE145633;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE39307;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE35725;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE153827;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE153782;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE153777;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE171710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE153778;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE118039;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE201389;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE145734;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE118009;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE165342;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE170757;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140049;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140041;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE41235;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE182297;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE187447;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE187448;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE118010;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE186082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE201388;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE184303;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE112173;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE146697;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE150421;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124672;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE141862;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE142684;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE213659;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE179812;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE153821;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE153820;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124878;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140143;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140912;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140889;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140906;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE142104;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE142101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE112436;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE112437;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE203260;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE203261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140908;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140663;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140662;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE144145;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE144146;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE40886;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE112219;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE159238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE153007;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE158568;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140891;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE159268;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE121618;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE159263;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATEFV047;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE153779;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE165837;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE153824;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE153828;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE153780;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE153783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE121623;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATEFV048;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140261;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE199589;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE199610;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE141367;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE199668;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE199823;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE126688;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE126684;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE211048;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE209590;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE165341;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE140159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE168851;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE159265;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE159874;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE159875;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE179761;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE179737;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE112216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE143266;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE143348;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE168840;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE165001;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE141393;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE197176;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE186379;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE186368;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE186364;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE186380;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE186367;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE186369;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE186423;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE186366;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE40885;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE180319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE141807;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE35715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124868;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124870;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124882;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124872;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124884;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124875;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE124887;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE112207;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE104623;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE36786;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE164217;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE112167;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE170850;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE170851;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE159571;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE159570;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE186632;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE159568;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE179802;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE164216;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE186365;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE186424;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE139657;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE175156;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE121626;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE164283;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE164284;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE202452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE118398;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE118397;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE146016;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE117480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE117511;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE175155;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE139756;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE40895;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE207957;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE207939;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE207944;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE207941;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE144337;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE144338;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE197380;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE197381;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE121627;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE66446;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE202411;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE113082;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE181118;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE209528;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE209531;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE209530;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE209524;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151925;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE151924;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE141199;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE95835;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE95826;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE95831;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE95836;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE95832;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE95829;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE95828;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE95830;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE121853;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE121851;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWATE113081;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;;;;;;;;;;;;;;;FRWA6E200085;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; \ No newline at end of file diff --git a/mapping_geojson_to_osm_tags/package.json b/mapping_geojson_to_osm_tags/package.json index 36c065de..7a83eb9e 100644 --- a/mapping_geojson_to_osm_tags/package.json +++ b/mapping_geojson_to_osm_tags/package.json @@ -11,7 +11,8 @@ }, "scripts": { "start": "ts-node convert_to_osm_tags.ts --engine", - "build:departments": "ts-node build_departments.ts", + "departments": "ts-node build_departments.ts", + "variance": "ts-node make_variance_from_csv.ts", "example": "ts-node convert_to_osm_tags.ts --engine=true --department=974 --source=\"./etalab_data/all.json\"", "simple": "ts-node convert_to_osm_tags.ts", "chargemap": "ts-node chargemap.ts",